From d254519d21eab455347c9863b9f27d801d17ad2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs?= Date: Wed, 20 Jul 2022 19:34:16 +0200 Subject: [PATCH] Reduce the size of the data requested to avoid large fixtures. Also sets the default of list_subscribers to 5000. Close #719 --- NEWS.md | 6 + R/direct_messages.R | 2 +- R/followers.R | 2 +- R/lists_members.R | 2 +- R/lists_memberships.R | 2 +- R/lists_subscribers.R | 4 +- R/lists_subscriptions.R | 2 +- man/lists_subscribers.Rd | 2 +- tests/fixtures/direct_messages.yml | 38 +- tests/fixtures/lists_memberships.yml | 24 +- tests/fixtures/lists_subscribers.yml | 42524 +--------------------- tests/fixtures/lists_subscriptions1.yml | 33 +- tests/testthat/test-lists_subscribers.R | 4 +- 13 files changed, 251 insertions(+), 42394 deletions(-) diff --git a/NEWS.md b/NEWS.md index 5f72a0da..21bf1653 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ # rtweet 1.0.1 +- Fixed issue with .Rbuilignore and vignettes + +- Reduced fixtures sizes by limiting the page size to the number of requests if + it is smaller than the default page size. + +# rtweet 1.0.0 ## Breaking changes diff --git a/R/direct_messages.R b/R/direct_messages.R index 284dccb9..9eb84718 100644 --- a/R/direct_messages.R +++ b/R/direct_messages.R @@ -41,7 +41,7 @@ direct_messages <- function(n = 50, cursor = cursor, retryonratelimit = retryonratelimit, verbose = verbose, - page_size = 50, + page_size = if (n >= 50) 50 else n, get_id = function(x) x$events$id ) } diff --git a/R/followers.R b/R/followers.R index 898f856a..69c56bc7 100644 --- a/R/followers.R +++ b/R/followers.R @@ -38,7 +38,7 @@ get_followers <- function(user, n = 5000, params[[user_type(user)]] <- user results <- TWIT_paginate_cursor(token, "/1.1/followers/ids", params, - page_size = 5000, + page_size = if(n >= 5000) 5000 else n, n = n, cursor = cursor, retryonratelimit = retryonratelimit, diff --git a/R/lists_members.R b/R/lists_members.R index 8cbe90e2..4a0481a9 100644 --- a/R/lists_members.R +++ b/R/lists_members.R @@ -44,7 +44,7 @@ lists_members <- function(list_id = NULL, cursor = cursor, retryonratelimit = retryonratelimit, verbose = verbose, - page_size = 5000, + page_size = if (n >= 5000) 5000 else n, get_id = function(x) x$users$id_str ) diff --git a/R/lists_memberships.R b/R/lists_memberships.R index 87933028..c878abfe 100644 --- a/R/lists_memberships.R +++ b/R/lists_memberships.R @@ -45,7 +45,7 @@ lists_memberships <- function(user = NULL, cursor = cursor, retryonratelimit = retryonratelimit, verbose = verbose, - page_size = 1000, + page_size = if (n >= 1000) 1000 else n, get_id = function(x) x$lists$id_str ) diff --git a/R/lists_subscribers.R b/R/lists_subscribers.R index dc4b011e..97a19724 100644 --- a/R/lists_subscribers.R +++ b/R/lists_subscribers.R @@ -16,7 +16,7 @@ lists_subscribers <- function(list_id = NULL, slug = NULL, owner_user = NULL, - n = 20, + n = 5000, cursor = "-1", parse = TRUE, retryonratelimit = NULL, @@ -34,7 +34,7 @@ lists_subscribers <- function(list_id = NULL, cursor = cursor, retryonratelimit = retryonratelimit, verbose = verbose, - page_size = 5000, + page_size = if (n >= 5000) 5000 else n, get_id = function(x) x$users$id_str ) diff --git a/R/lists_subscriptions.R b/R/lists_subscriptions.R index 71159a1c..e5a14c65 100644 --- a/R/lists_subscriptions.R +++ b/R/lists_subscriptions.R @@ -30,7 +30,7 @@ lists_subscriptions <- function(user, cursor = cursor, retryonratelimit = retryonratelimit, verbose = verbose, - page_size = 1000, + page_size = if (n >= 1000) 1000 else n, get_id = function(x) x$user_id ) diff --git a/man/lists_subscribers.Rd b/man/lists_subscribers.Rd index 2ce03cb9..100900ad 100644 --- a/man/lists_subscribers.Rd +++ b/man/lists_subscribers.Rd @@ -8,7 +8,7 @@ lists_subscribers( list_id = NULL, slug = NULL, owner_user = NULL, - n = 20, + n = 5000, cursor = "-1", parse = TRUE, retryonratelimit = NULL, diff --git a/tests/fixtures/direct_messages.yml b/tests/fixtures/direct_messages.yml index ceea3ea4..83f17d5f 100644 --- a/tests/fixtures/direct_messages.yml +++ b/tests/fixtures/direct_messages.yml @@ -1,7 +1,7 @@ http_interactions: - request: method: get - uri: https://api.twitter.com/1.1/direct_messages/events/list.json?count=50 + uri: https://api.twitter.com/1.1/direct_messages/events/list.json?count=1 body: encoding: '' string: '' @@ -15,36 +15,32 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - content-disposition: attachment; filename=json.json - content-encoding: gzip - content-length: '39' - content-type: application/json;charset=utf-8 - date: Wed, 09 Mar 2022 00:05:39 GMT - expires: Tue, 31 Mar 1981 05:00:00 GMT - last-modified: Wed, 09 Mar 2022 00:05:39 GMT + date: Wed, 20 Jul 2022 16:11:41 GMT pragma: no-cache server: tsa_f - set-cookie: - - lang=en; Path=/ - - guest_id=v1%3A164678433928566239; Max-Age=34214400; Expires=Sun, 09 Apr 2023 - 00:05:39 GMT; Path=/; Domain=.twitter.com; Secure; SameSite=None status: 200 OK - strict-transport-security: max-age=631138519 + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Wed, 20 Jul 2022 16:11:41 GMT + x-transaction: 0459d9ed27d0ef62 + content-length: '39' x-access-level: read-write-directmessages - x-connection-hash: aa46e8cfc40bc5e118339b12a8935c140825c6923c956b9d38ba9d63e30b584a - x-content-type-options: nosniff x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' x-rate-limit-limit: '15' + x-rate-limit-reset: '1658334401' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff x-rate-limit-remaining: '14' - x-rate-limit-reset: '1646785239' - x-response-time: '114' - x-transaction: 8e30fa7fa2230ba2 x-twitter-response-tags: BouncerCompliant - x-xss-protection: '0' + strict-transport-security: max-age=631138519 + x-response-time: '116' + x-connection-hash: ccfb34807bdcd0d758d735abe84ced3ffae3ce919302a587df991c730124e514 body: encoding: UTF-8 file: no string: '{"events":[]}' - recorded_at: 2022-03-09 00:05:39 GMT + recorded_at: 2022-07-20 16:11:41 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/lists_memberships.yml b/tests/fixtures/lists_memberships.yml index cd205f7c..83b4771c 100644 --- a/tests/fixtures/lists_memberships.yml +++ b/tests/fixtures/lists_memberships.yml @@ -1,7 +1,7 @@ http_interactions: - request: method: get - uri: https://api.twitter.com/1.1/lists/memberships.json?screen_name=kearneymw&filter_to_owned_lists=TRUE&count=1000&cursor=-1 + uri: https://api.twitter.com/1.1/lists/memberships.json?screen_name=kearneymw&filter_to_owned_lists=TRUE&count=200&cursor=-1 body: encoding: '' string: '' @@ -15,35 +15,35 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - date: Sat, 26 Mar 2022 10:48:24 GMT + date: Wed, 20 Jul 2022 16:12:05 GMT pragma: no-cache server: tsa_f status: 200 OK expires: Tue, 31 Mar 1981 05:00:00 GMT content-type: application/json;charset=utf-8 cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - last-modified: Sat, 26 Mar 2022 10:48:24 GMT - x-transaction: 91d550cf964fa9b6 - content-length: '698' + last-modified: Wed, 20 Jul 2022 16:12:05 GMT + x-transaction: e8ca28f2e8d77c8c + content-length: '701' x-access-level: read-write-directmessages x-frame-options: SAMEORIGIN content-encoding: gzip x-xss-protection: '0' x-rate-limit-limit: '75' - x-rate-limit-reset: '1648292604' + x-rate-limit-reset: '1658334197' content-disposition: attachment; filename=json.json x-content-type-options: nosniff - x-rate-limit-remaining: '74' + x-rate-limit-remaining: '73' x-twitter-response-tags: BouncerCompliant strict-transport-security: max-age=631138519 - x-response-time: '150' - x-connection-hash: f78ec2a2178dc79626e48785e0852503b1d3ca9f90337a5063bc44ca8d60d211 + x-response-time: '154' + x-connection-hash: ccfb34807bdcd0d758d735abe84ced3ffae3ce919302a587df991c730124e514 body: encoding: UTF-8 file: no string: '{"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":1365679109435752448,"id_str":"1365679109435752448","name":"test-memberships","uri":"\/rtweet_test\/lists\/test-memberships-66661","subscriber_count":0,"member_count":1,"mode":"public","description":"","slug":"test-memberships-66661","full_name":"@rtweet_test\/test-memberships-66661","created_at":"Sat Feb 27 15:04:07 +0000 2021","following":true,"user":{"id":1365671359137873920,"id_str":"1365671359137873920","name":"rtweet-test","screen_name":"rtweet_test","location":"","description":"Testing - bot for rtweet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":1,"listed_count":0,"created_at":"Sat - Feb 27 14:33:58 +0000 2021","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":923,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}}]}' - recorded_at: 2022-03-26 10:48:25 GMT + bot for rtweet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":2,"listed_count":0,"created_at":"Sat + Feb 27 14:33:58 +0000 2021","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":997,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}}]}' + recorded_at: 2022-07-20 16:12:05 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/lists_subscribers.yml b/tests/fixtures/lists_subscribers.yml index 08130473..0843f93c 100644 --- a/tests/fixtures/lists_subscribers.yml +++ b/tests/fixtures/lists_subscribers.yml @@ -1,7 +1,7 @@ http_interactions: - request: method: get - uri: https://api.twitter.com/1.1/lists/subscribers.json?slug=new-york-times-politics&owner_screen_name=nytpolitics&count=5000&cursor=-1 + uri: https://api.twitter.com/1.1/lists/subscribers.json?slug=new-york-times-politics&owner_screen_name=nytpolitics&count=20&cursor=-1 body: encoding: '' string: '' @@ -15,42357 +15,213 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - date: Sat, 26 Mar 2022 10:48:36 GMT + date: Wed, 20 Jul 2022 16:12:12 GMT pragma: no-cache server: tsa_f status: 200 OK expires: Tue, 31 Mar 1981 05:00:00 GMT content-type: application/json;charset=utf-8 cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - last-modified: Sat, 26 Mar 2022 10:48:36 GMT - x-transaction: 4d745a1d1389ddbb - content-length: '1783328' + last-modified: Wed, 20 Jul 2022 16:12:12 GMT + x-transaction: b5f6c3ea7c2aebf6 + content-length: '9178' x-access-level: read-write-directmessages x-frame-options: SAMEORIGIN content-encoding: gzip x-xss-protection: '0' x-rate-limit-limit: '180' - x-rate-limit-reset: '1648292614' + x-rate-limit-reset: '1658334432' content-disposition: attachment; filename=json.json x-content-type-options: nosniff x-rate-limit-remaining: '179' x-twitter-response-tags: BouncerCompliant strict-transport-security: max-age=631138519 - x-response-time: '3165' - x-connection-hash: f78ec2a2178dc79626e48785e0852503b1d3ca9f90337a5063bc44ca8d60d211 + x-response-time: '740' + x-connection-hash: ccfb34807bdcd0d758d735abe84ced3ffae3ce919302a587df991c730124e514 body: encoding: UTF-8 file: no - string: '{"users":[{"id":821522125,"id_str":"821522125","name":"Magdalini Varoucha","screen_name":"Magdaliniva","location":"","description":"@grecehebdo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":1028,"listed_count":0,"created_at":"Thu - Sep 13 13:29:46 +0000 2012","favourites_count":75,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu - Mar 03 18:42:41 +0000 2022","id":1499455234510360577,"id_str":"1499455234510360577","text":"#Expo - | Le g\u00e9nie tourment\u00e9 de Yanoulis Halepas (1851-1938): Hommage au - plus grand sculpteur grec\n\ud83d\udccd D\u00e9chirement int\u2026 https:\/\/t.co\/Hyely06wuk","truncated":true,"entities":{"hashtags":[{"text":"Expo","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hyely06wuk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499455234510360577","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/985976458375024641\/U0LoCAKS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985976458375024641\/U0LoCAKS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":739385979082047488,"id_str":"739385979082047488","name":"Dormammu.","screen_name":"khannnjpg","location":"scrotum - ","description":"19 || \ud83c\uddf5\ud83c\uddf0 || part time sex therapy || - cricket","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2542,"friends_count":561,"listed_count":0,"created_at":"Sun - Jun 05 09:18:49 +0000 2016","favourites_count":26570,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31232,"lang":null,"status":{"created_at":"Sat - Mar 26 09:37:31 +0000 2022","id":1507652963480780803,"id_str":"1507652963480780803","text":"@Omarittoss - @deviIbabie Tol topic de rana heer ko pade comment \ud83d\ude0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Omarittoss","name":"\u00dazgaar\ud83c\uddf5\ud83c\uddf0","id":1402163033678528516,"id_str":"1402163033678528516","indices":[0,11]},{"screen_name":"deviIbabie","name":"dev","id":1452271211657011205,"id_str":"1452271211657011205","indices":[12,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507635695648657418,"in_reply_to_status_id_str":"1507635695648657418","in_reply_to_user_id":1402163033678528516,"in_reply_to_user_id_str":"1402163033678528516","in_reply_to_screen_name":"Omarittoss","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505812470346231808\/o8Zt9cU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505812470346231808\/o8Zt9cU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/739385979082047488\/1648212167","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172341936553771008,"id_str":"1172341936553771008","name":"Sarah - in MN","screen_name":"SarahLo70385269","location":"Eden Prairie, MN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":495,"listed_count":0,"created_at":"Fri - Sep 13 02:51:30 +0000 2019","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Wed - Mar 09 17:22:28 +0000 2022","id":1501609376922095617,"id_str":"1501609376922095617","text":"@tedcruz - I wish you would stop dividing us, misleading us and lying to us. I don''t - trust anything you say because y\u2026 https:\/\/t.co\/I74jpv5cUv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/I74jpv5cUv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501609376922095617","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501602471348744196,"in_reply_to_status_id_str":"1501602471348744196","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33310100,"id_str":"33310100","name":"Winter - Snow Fall","screen_name":"daisiesz","location":"","description":"''''Repetition - does not transform a lie into a truth.'''' -Franklin D. Roosevelt-","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":395,"listed_count":0,"created_at":"Sun - Apr 19 20:55:14 +0000 2009","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D9C0A7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1337158032887668736\/3q4s_jlc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1337158032887668736\/3q4s_jlc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33310100\/1607638293","profile_link_color":"439623","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C7E1E8","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2515573934,"id_str":"2515573934","name":"Alex - McEvoy","screen_name":"sleazemane","location":"Cleveland","description":"Ohio - enjoyer | newsletter reader | anti jfk conspiracist | complement evader","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":851,"listed_count":0,"created_at":"Thu - May 22 14:32:49 +0000 2014","favourites_count":2603,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Fri - Mar 25 19:15:35 +0000 2022","id":1507436049898819588,"id_str":"1507436049898819588","text":"@AkronJackson - Doesn''t say much.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AkronJackson","name":"Zac - Jackson","id":121506472,"id_str":"121506472","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507433368492908546,"in_reply_to_status_id_str":"1507433368492908546","in_reply_to_user_id":121506472,"in_reply_to_user_id_str":"121506472","in_reply_to_screen_name":"AkronJackson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506312993746960391\/BUfaccnH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506312993746960391\/BUfaccnH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2515573934\/1591303257","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35416465,"id_str":"35416465","name":"J.P. - Dorta \ud83c\uddfa\ud83c\udde6","screen_name":"jeanpiz","location":"Buckhead","description":"Venezuelan - American. Masters in Philosophy, Politics and Economics | University of Cape - Town.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1244,"friends_count":543,"listed_count":14,"created_at":"Sun - Apr 26 06:04:24 +0000 2009","favourites_count":125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32202,"lang":null,"status":{"created_at":"Sat - Mar 26 10:11:30 +0000 2022","id":1507661515616403463,"id_str":"1507661515616403463","text":"@SamRamani2 - Whatever type of cocaine these idiots are sniffing in Moscow m, they need - to either stop doing it or st\u2026 https:\/\/t.co\/yEyEVtyOwq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamRamani2","name":"Samuel - Ramani","id":1957610664,"id_str":"1957610664","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/yEyEVtyOwq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507661515616403463","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507660260399583233,"in_reply_to_status_id_str":"1507660260399583233","in_reply_to_user_id":1957610664,"in_reply_to_user_id_str":"1957610664","in_reply_to_screen_name":"SamRamani2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502740577577746435\/elRL5QWB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502740577577746435\/elRL5QWB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35416465\/1645920909","profile_link_color":"669999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22291404,"id_str":"22291404","name":"BiYonYon","screen_name":"BiYonYon","location":"","description":"War - is a product of despotism. Those who want to fight war must only fight despotism.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":840,"listed_count":11,"created_at":"Sat - Feb 28 20:20:42 +0000 2009","favourites_count":649,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Sat - Mar 26 05:28:20 +0000 2022","id":1507590254383009793,"id_str":"1507590254383009793","text":"@igorsushko - Technically, we have just woken up \ud83d\udc4d\ud83c\udffc \ud83c\udde8\ud83c\udded\ud83c\uddea\ud83c\uddfa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"igorsushko","name":"Igor - Sushko","id":19536434,"id_str":"19536434","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507589793672142850,"in_reply_to_status_id_str":"1507589793672142850","in_reply_to_user_id":19536434,"in_reply_to_user_id_str":"19536434","in_reply_to_screen_name":"igorsushko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59A2C6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497715670057947140\/nDctRaFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497715670057947140\/nDctRaFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22291404\/1647907403","profile_link_color":"59A2C6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D4D4D4","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":71734174,"id_str":"71734174","name":"Daisuke - Watanabe","screen_name":"dafuren39","location":"Nagoya","description":"\u306f\u3058\u3081\u307e\u3057\u3066!!\u3000Watanabe - Daisuke\u3068\u7533\u3057\u307e\u3059\u3002\u3000\r\n\u5b9c\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059!!","url":"https:\/\/t.co\/fdTt3BetPx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fdTt3BetPx","expanded_url":"https:\/\/www.facebook.com\/daisuke.watanabe2","display_url":"facebook.com\/daisuke.watana\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":334,"friends_count":4999,"listed_count":4,"created_at":"Sat - Sep 05 05:17:45 +0000 2009","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":644,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601458991\/___080_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601458991\/___080_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":944155392,"id_str":"944155392","name":"Deyan - M. Petroff","screen_name":"dmpetroff","location":"Sofia, Bulgaria","description":"\u0414\u0440\u043e\u0438\u0434 - \u043e\u0442 \u0414\u043e\u0431\u0440\u0443\u0434\u0436\u0430","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":977,"listed_count":0,"created_at":"Mon - Nov 12 17:45:30 +0000 2012","favourites_count":1345,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Tue - Mar 22 15:02:15 +0000 2022","id":1506285130712862734,"id_str":"1506285130712862734","text":"\u0422\u043e\u0432\u0430 - \u0441 \u043a\u0430\u0441\u043a\u0438\u0442\u0435 \u0441\u0430\u043c\u043e - \u0437\u0430 \u0446\u0438\u0432\u0438\u043b\u043d\u0438 \u0435 \u0445\u0438\u0442\u0440\u043e. - \u041d\u0435\u043a\u0430 \u0434\u0430 \u0438\u0437\u043f\u0440\u0430\u0442\u0438\u043c - \u0438 \u041f\u0412\u041e \u0441\u0430\u043c\u043e \u0437\u0430 \u0446\u0438\u0432\u0438\u043b\u043d\u0438?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"bg"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/779677210282225665\/yiiwlO7I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779677210282225665\/yiiwlO7I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/944155392\/1474724408","profile_link_color":"013CA6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":237356500,"id_str":"237356500","name":"Brini - Sc","screen_name":"Brini_Sc","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":309,"listed_count":0,"created_at":"Wed - Jan 12 17:17:34 +0000 2011","favourites_count":331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Tue - Mar 15 10:04:27 +0000 2022","id":1503673472639447043,"id_str":"1503673472639447043","text":"@GustavTheile - \ud83e\udd14 https:\/\/t.co\/2HMmoTmTzM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GustavTheile","name":"Gustav - Theile","id":537114854,"id_str":"537114854","indices":[0,13]}],"urls":[],"media":[{"id":1503673467165630468,"id_str":"1503673467165630468","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FN4fDTSWYAQBiZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN4fDTSWYAQBiZt.jpg","url":"https:\/\/t.co\/2HMmoTmTzM","display_url":"pic.twitter.com\/2HMmoTmTzM","expanded_url":"https:\/\/twitter.com\/Brini_Sc\/status\/1503673472639447043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":331,"h":500,"resize":"fit"},"medium":{"w":331,"h":500,"resize":"fit"},"small":{"w":331,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503673467165630468,"id_str":"1503673467165630468","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FN4fDTSWYAQBiZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN4fDTSWYAQBiZt.jpg","url":"https:\/\/t.co\/2HMmoTmTzM","display_url":"pic.twitter.com\/2HMmoTmTzM","expanded_url":"https:\/\/twitter.com\/Brini_Sc\/status\/1503673472639447043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":331,"h":500,"resize":"fit"},"medium":{"w":331,"h":500,"resize":"fit"},"small":{"w":331,"h":500,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503621127654064128,"in_reply_to_status_id_str":"1503621127654064128","in_reply_to_user_id":537114854,"in_reply_to_user_id_str":"537114854","in_reply_to_screen_name":"GustavTheile","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218134522283331591\/nCxkQBnP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218134522283331591\/nCxkQBnP_normal.jpg","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1498969346202288129,"id_str":"1498969346202288129","name":"HS - SPORTS UPDATED","screen_name":"updatedhs1","location":"","description":"CHAMPS","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":0,"listed_count":0,"created_at":"Wed - Mar 02 10:32:12 +0000 2022","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9023,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498969548443328515\/WmKamDXB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498969548443328515\/WmKamDXB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1498969346202288129\/1646288444","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":441233042,"id_str":"441233042","name":"Louise - \ud83c\uddea\ud83c\uddfa \ud83d\udc99\ud83c\udf3f","screen_name":"Loulabelleruns","location":"Devon","description":"Everyone - has to have an escape plan. Photographing the wild on my doorstep. Swim, run, - cycle. \nPaediatric nurse via a career in archaeology. \nPlant based","url":"https:\/\/t.co\/UiPTRdZtvJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UiPTRdZtvJ","expanded_url":"https:\/\/louisekear.squarespace.com\/","display_url":"louisekear.squarespace.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":810,"friends_count":1887,"listed_count":15,"created_at":"Mon - Dec 19 21:50:20 +0000 2011","favourites_count":26034,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26478,"lang":null,"status":{"created_at":"Thu - Mar 24 15:19:28 +0000 2022","id":1507014241387114508,"id_str":"1507014241387114508","text":"RT - @mikegalsworthy: This is brutal. And strangely the most low energy takedown - I\u2019ve seen. https:\/\/t.co\/9pBCTjBcDv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mikegalsworthy","name":"Mike - Galsworthy \ud83c\uddfa\ud83c\udde6","id":34247411,"id_str":"34247411","indices":[3,18]}],"urls":[],"media":[{"id":1506896768633651200,"id_str":"1506896768633651200","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","url":"https:\/\/t.co\/9pBCTjBcDv","display_url":"pic.twitter.com\/9pBCTjBcDv","expanded_url":"https:\/\/twitter.com\/Haggis_UK\/status\/1506896861096992775\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":720,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1152,"h":720,"resize":"fit"}},"source_status_id":1506896861096992775,"source_status_id_str":"1506896861096992775","source_user_id":351784239,"source_user_id_str":"351784239"}]},"extended_entities":{"media":[{"id":1506896768633651200,"id_str":"1506896768633651200","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","url":"https:\/\/t.co\/9pBCTjBcDv","display_url":"pic.twitter.com\/9pBCTjBcDv","expanded_url":"https:\/\/twitter.com\/Haggis_UK\/status\/1506896861096992775\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":720,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1152,"h":720,"resize":"fit"}},"source_status_id":1506896861096992775,"source_status_id_str":"1506896861096992775","source_user_id":351784239,"source_user_id_str":"351784239","video_info":{"aspect_ratio":[8,5],"duration_millis":76949,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/432x270\/J5v5kwITbuA7ag6R.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/pl\/XhNt-1TfVQnM81WI.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/576x360\/3d1jR2GNMQ2MxRF1.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/1152x720\/NXydEpilaZvzxmBd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 08:37:10 +0000 2022","id":1506912997578526728,"id_str":"1506912997578526728","text":"This - is brutal. And strangely the most low energy takedown I\u2019ve seen. https:\/\/t.co\/9pBCTjBcDv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506896768633651200,"id_str":"1506896768633651200","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","url":"https:\/\/t.co\/9pBCTjBcDv","display_url":"pic.twitter.com\/9pBCTjBcDv","expanded_url":"https:\/\/twitter.com\/Haggis_UK\/status\/1506896861096992775\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":720,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1152,"h":720,"resize":"fit"}},"source_status_id":1506896861096992775,"source_status_id_str":"1506896861096992775","source_user_id":351784239,"source_user_id_str":"351784239"}]},"extended_entities":{"media":[{"id":1506896768633651200,"id_str":"1506896768633651200","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506896768633651200\/pu\/img\/-ZU_kljOTEaLgMu8.jpg","url":"https:\/\/t.co\/9pBCTjBcDv","display_url":"pic.twitter.com\/9pBCTjBcDv","expanded_url":"https:\/\/twitter.com\/Haggis_UK\/status\/1506896861096992775\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":720,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1152,"h":720,"resize":"fit"}},"source_status_id":1506896861096992775,"source_status_id_str":"1506896861096992775","source_user_id":351784239,"source_user_id_str":"351784239","video_info":{"aspect_ratio":[8,5],"duration_millis":76949,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/432x270\/J5v5kwITbuA7ag6R.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/pl\/XhNt-1TfVQnM81WI.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/576x360\/3d1jR2GNMQ2MxRF1.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506896768633651200\/pu\/vid\/1152x720\/NXydEpilaZvzxmBd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12759,"favorite_count":53413,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12759,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077197891029135360\/LJrimn03_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077197891029135360\/LJrimn03_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441233042\/1577907897","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1322232495543214080,"id_str":"1322232495543214080","name":"vaibhav - Gupta","screen_name":"vaisa_99","location":"New delhi","description":"MA pol. - Sci. @JNU_official_50|\nMiddle East studies @AUB_Lebanon|\nBipartisan|\nAthiest|\nFrancophile|\nCinephile|\nSyncretic|\nForeign - policy & government|","url":"https:\/\/t.co\/OnkNVwtOvQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OnkNVwtOvQ","expanded_url":"https:\/\/www.instagram.com\/iamvaibhavguptaa\/","display_url":"instagram.com\/iamvaibhavgupt\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":2023,"listed_count":0,"created_at":"Fri - Oct 30 17:43:06 +0000 2020","favourites_count":1985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"status":{"created_at":"Sat - Mar 26 09:05:26 +0000 2022","id":1507644889441644546,"id_str":"1507644889441644546","text":"RT - @NoteToCare: \"Any person capable of angering you becomes your master.\" \n\n- - Epictetus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoteToCare","name":"Britta - Wetteskind","id":1504175073556533249,"id_str":"1504175073556533249","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:00:29 +0000 2022","id":1507643640159641600,"id_str":"1507643640159641600","text":"\"Any - person capable of angering you becomes your master.\" \n\n- Epictetus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/app.strikeearly.com\" rel=\"nofollow\"\u003eStrikeEarly\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":522,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":109,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505129614116487169\/QCkvdzFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505129614116487169\/QCkvdzFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1322232495543214080\/1647686114","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235140290610069504,"id_str":"1235140290610069504","name":"olivia","screen_name":"olivia28734637","location":"","description":"International - relations \ud83c\udf0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":150,"listed_count":0,"created_at":"Wed - Mar 04 09:49:38 +0000 2020","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sat - Mar 14 22:19:11 +0000 2020","id":1238952842783842304,"id_str":"1238952842783842304","text":"#palpitaoDoBronx - finaliza\u00e7\u00e3o na certa!!!!","truncated":false,"entities":{"hashtags":[{"text":"palpitaoDoBronx","indices":[0,16]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235140802550075392\/gYyg5jK-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235140802550075392\/gYyg5jK-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":144302828,"id_str":"144302828","name":"Gordon - M","screen_name":"gordon_mack","location":"Dundee","description":"Type 1 Diabetic, - if in doubt give me a jelly baby. Dad to 2 girls and an autistic son. Dundee - FC fan with a dislike of nationalism\nRT \u2260 endorsement or agreement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":2739,"listed_count":26,"created_at":"Sat - May 15 22:31:31 +0000 2010","favourites_count":6419,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21158,"lang":null,"status":{"created_at":"Sat - Mar 26 07:38:38 +0000 2022","id":1507623042914082819,"id_str":"1507623042914082819","text":"RIP - Taylor https:\/\/t.co\/KM5foVPZU4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KM5foVPZU4","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234","display_url":"twitter.com\/foofighters\/st\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507552958988255234,"quoted_status_id_str":"1507552958988255234","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CC5F43","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207799225049763840\/W8csOCRw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207799225049763840\/W8csOCRw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144302828\/1458421255","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":270942251,"id_str":"270942251","name":"Netra - Paudel","screen_name":"npaudel95","location":"Nepal Kathmandu","description":"Journalist - \ud83e\udd42\ud83e\udd63\ud83e\udd63\ud83e\udd63\u26bd\ufe0f\u26bd\ufe0f\ud83c\udfc0\ud83c\udfc0\ud83c\udfc8\ud83c\udfc8","url":"https:\/\/t.co\/Sq5qMKgbUN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Sq5qMKgbUN","expanded_url":"http:\/\/netrapaudelblog.blogspot.com","display_url":"netrapaudelblog.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":418,"friends_count":742,"listed_count":0,"created_at":"Wed - Mar 23 15:02:23 +0000 2011","favourites_count":1140,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1249,"lang":null,"status":{"created_at":"Wed - Mar 23 04:42:13 +0000 2022","id":1506491483158810629,"id_str":"1506491483158810629","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary https:\/\/t.co\/c7R8e2Fyf2","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506491479581097985,"id_str":"1506491479581097985","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FOgiBNmVgAEayuJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOgiBNmVgAEayuJ.jpg","url":"https:\/\/t.co\/c7R8e2Fyf2","display_url":"pic.twitter.com\/c7R8e2Fyf2","expanded_url":"https:\/\/twitter.com\/npaudel95\/status\/1506491483158810629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506491479581097985,"id_str":"1506491479581097985","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FOgiBNmVgAEayuJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOgiBNmVgAEayuJ.jpg","url":"https:\/\/t.co\/c7R8e2Fyf2","display_url":"pic.twitter.com\/c7R8e2Fyf2","expanded_url":"https:\/\/twitter.com\/npaudel95\/status\/1506491483158810629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307015098267922432\/5dlJsLM6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307015098267922432\/5dlJsLM6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270942251\/1574481897","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42368993,"id_str":"42368993","name":"mrs - mieze","screen_name":"paperpetkitty","location":"Bremen","description":"Kann - n\u00e4hen, backen, kochen und die Welt retten. \nMama von Kr\u00fcmel und - P\u00fcnktchen.\nLehrerin.\nPrivat hier.","url":"https:\/\/t.co\/feKZjIHxLT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/feKZjIHxLT","expanded_url":"http:\/\/www.instagram.com\/paperpetkitty","display_url":"instagram.com\/paperpetkitty","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":379,"friends_count":62,"listed_count":19,"created_at":"Mon - May 25 07:29:58 +0000 2009","favourites_count":2952,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2713,"lang":null,"status":{"created_at":"Sun - Mar 20 19:25:15 +0000 2022","id":1505626543913062410,"id_str":"1505626543913062410","text":"@fo0bar - cleveres Kind :D kenn ich. \u201emal eben\u201c den Drachen Kokosnuss vorlesen - zum Einschlafen. Hat ja auch nur 50 Seiten\u2026 xD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fo0bar","name":"@fo0bar","id":14057100,"id_str":"14057100","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/onloft.com\/tweetlogix\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","in_reply_to_status_id":1505601933259776009,"in_reply_to_status_id_str":"1505601933259776009","in_reply_to_user_id":14057100,"in_reply_to_user_id_str":"14057100","in_reply_to_screen_name":"fo0bar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214597581545918470\/OU2wChfX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214597581545918470\/OU2wChfX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42368993\/1575562369","profile_link_color":"009AB9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":911998221567787008,"id_str":"911998221567787008","name":"Tony - Zimmerman","screen_name":"Zimmerman_Photo","location":"Cameron, Wi","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":293,"listed_count":0,"created_at":"Sun - Sep 24 16:58:14 +0000 2017","favourites_count":3484,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":249,"lang":null,"status":{"created_at":"Mon - Mar 07 17:25:36 +0000 2022","id":1500885387941720068,"id_str":"1500885387941720068","text":"RT - @NelsonforWI: \u201cThe collaboration is an important step in responding to - the unique needs in our community,\u201d said Outagamie County Executi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NelsonforWI","name":"Tom - Nelson","id":1187144042,"id_str":"1187144042","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 07 17:19:43 +0000 2022","id":1500883907536994307,"id_str":"1500883907536994307","text":"\u201cThe - collaboration is an important step in responding to the unique needs in our - community,\u201d said Outagamie County\u2026 https:\/\/t.co\/7tY7sygj4x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7tY7sygj4x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500883907536994307","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912434103206711297\/Wff98GFV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912434103206711297\/Wff98GFV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/911998221567787008\/1506376250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1356432976222031872,"id_str":"1356432976222031872","name":"emily - yeh \ud83d\udc18","screen_name":"hey_emilyyeh","location":"","description":"hi! - i\u2019m an android developer @twitter and a genshin content creator \/ drawing - hobbyist \ud83c\udfa8 please credit me when using my work! thank you!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1209,"friends_count":470,"listed_count":9,"created_at":"Tue - Feb 02 02:43:27 +0000 2021","favourites_count":1394,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":301,"lang":null,"status":{"created_at":"Wed - Mar 23 02:12:49 +0000 2022","id":1506453885648482305,"id_str":"1506453885648482305","text":"@SUPERC0NDUCT - thank you so much rivele!! i''m really glad you like the colors! \ud83e\udd70\ud83d\udc99\u2764\ufe0f - she is my sweet darling angel to\u2026 https:\/\/t.co\/9aXl6i6b5E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SUPERC0NDUCT","name":"\u2608 - | \ud83d\udccc\u203c\ufe0f","id":1384580771063615492,"id_str":"1384580771063615492","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/9aXl6i6b5E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506453885648482305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506410995631083520,"in_reply_to_status_id_str":"1506410995631083520","in_reply_to_user_id":1384580771063615492,"in_reply_to_user_id_str":"1384580771063615492","in_reply_to_screen_name":"SUPERC0NDUCT","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487978555346538505\/ckBCSv0q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487978555346538505\/ckBCSv0q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1356432976222031872\/1643596504","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":232006040,"id_str":"232006040","name":"M''oFw","screen_name":"leeland_ml","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":135,"listed_count":1,"created_at":"Thu - Dec 30 01:45:34 +0000 2010","favourites_count":1634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259844915405750280\/6Ei09ObY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259844915405750280\/6Ei09ObY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232006040\/1501333665","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1326141358894178304,"id_str":"1326141358894178304","name":"John","screen_name":"J0hncov","location":"Los - Angeles, CA","description":"Opinions mine. likes + retweets not endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":86,"listed_count":0,"created_at":"Tue - Nov 10 12:35:25 +0000 2020","favourites_count":751,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":865,"lang":null,"status":{"created_at":"Mon - Feb 28 03:52:24 +0000 2022","id":1498144023424512003,"id_str":"1498144023424512003","text":"RT - @FoxNews: British ambassador to US says Putin''s ''destabilizing'' behavior - is strengthening NATO alliance https:\/\/t.co\/STkCAi4LbU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/STkCAi4LbU","expanded_url":"https:\/\/www.foxnews.com\/media\/putin-ukraine-strengthening-nato-allies-british-ambassador","display_url":"foxnews.com\/media\/putin-uk\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 03:40:40 +0000 2022","id":1498141073247461381,"id_str":"1498141073247461381","text":"British - ambassador to US says Putin''s ''destabilizing'' behavior is strengthening - NATO alliance https:\/\/t.co\/STkCAi4LbU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/STkCAi4LbU","expanded_url":"https:\/\/www.foxnews.com\/media\/putin-ukraine-strengthening-nato-allies-british-ambassador","display_url":"foxnews.com\/media\/putin-uk\u2026","indices":[94,117]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":362,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":62,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347842801359314946\/tGXfalup_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347842801359314946\/tGXfalup_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1326141358894178304\/1622326241","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":853455096,"id_str":"853455096","name":"Salvo - R.","screen_name":"SalvoRp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":4623,"listed_count":5,"created_at":"Sat - Sep 29 19:25:16 +0000 2012","favourites_count":75199,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Apr 30 16:02:58 +0000 2021","id":1388161969128099840,"id_str":"1388161969128099840","text":"@aborruso - Grazie, gentilissimo!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aborruso","name":"Andrea - Borruso","id":1317611,"id_str":"1317611","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1388160612593815558,"in_reply_to_status_id_str":"1388160612593815558","in_reply_to_user_id":1317611,"in_reply_to_user_id_str":"1317611","in_reply_to_screen_name":"aborruso","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/970024054722875394\/OYneW3Gb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/970024054722875394\/OYneW3Gb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853455096\/1520106716","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267208214485049352,"id_str":"1267208214485049352","name":"Nicola - Petrucco","screen_name":"PetruccoNicola","location":"Udine, Friuli-Venezia - Giulia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":941,"listed_count":0,"created_at":"Sun - May 31 21:36:08 +0000 2020","favourites_count":1828,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181548555540013057,"id_str":"1181548555540013057","name":"gianma","screen_name":"gianmarco_riolo","location":"","description":"arb\u00ebresh\u00eb, - Palermo - Trento \/\nStudi Internazionali \ud83c\uddea\ud83c\uddfa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":460,"listed_count":0,"created_at":"Tue - Oct 08 12:35:15 +0000 2019","favourites_count":2498,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":87,"lang":null,"status":{"created_at":"Sat - Mar 19 06:55:08 +0000 2022","id":1505075381384138756,"id_str":"1505075381384138756","text":"RT - @ZiaLulli1: Double standard #Ukraine https:\/\/t.co\/OdjBaaMSQt","truncated":false,"entities":{"hashtags":[{"text":"Ukraine","indices":[31,39]}],"symbols":[],"user_mentions":[{"screen_name":"ZiaLulli1","name":"@LuciaGoracci","id":1181312294313250816,"id_str":"1181312294313250816","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/OdjBaaMSQt","expanded_url":"https:\/\/www.nytimes.com\/2022\/03\/14\/world\/europe\/ukraine-refugees-poland-belarus.html?smid=tw-share","display_url":"nytimes.com\/2022\/03\/14\/wor\u2026","indices":[40,63]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 06:47:42 +0000 2022","id":1505073508740747265,"id_str":"1505073508740747265","text":"Double - standard #Ukraine https:\/\/t.co\/OdjBaaMSQt","truncated":false,"entities":{"hashtags":[{"text":"Ukraine","indices":[16,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OdjBaaMSQt","expanded_url":"https:\/\/www.nytimes.com\/2022\/03\/14\/world\/europe\/ukraine-refugees-poland-belarus.html?smid=tw-share","display_url":"nytimes.com\/2022\/03\/14\/wor\u2026","indices":[25,48]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":141,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":44,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382050291265191938\/ILhFazL7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382050291265191938\/ILhFazL7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1181548555540013057\/1592938839","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1133632325286322176,"id_str":"1133632325286322176","name":"elena - potit\u00f2","screen_name":"elena35570404","location":"","description":"\ud83d\udcdaGlobal - Governance, Torvergata \u2712\ufe0f@leggiscomodo \ud83d\udcf8 @potzph \ud83d\udc69\ud83c\udffd\u200d\ud83d\udcbb - intern at MAECI","url":"https:\/\/t.co\/WWWCZASL6d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WWWCZASL6d","expanded_url":"https:\/\/www.instagram.com\/potzph\/","display_url":"instagram.com\/potzph\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":419,"listed_count":0,"created_at":"Wed - May 29 07:13:02 +0000 2019","favourites_count":533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Wed - Mar 23 22:17:18 +0000 2022","id":1506757003498115072,"id_str":"1506757003498115072","text":"RT - @anders_aslund: Curiously, there is no military commander but Putin for Russia''s - war against Ukraine. Shoigu and Gerasimov have disappea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anders_aslund","name":"Anders - \u00c5slund","id":2932460195,"id_str":"2932460195","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 15:10:36 +0000 2022","id":1506649620256071681,"id_str":"1506649620256071681","text":"Curiously, - there is no military commander but Putin for Russia''s war against Ukraine. - Shoigu and Gerasimov have dis\u2026 https:\/\/t.co\/RZ4MoBwm3N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RZ4MoBwm3N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506649620256071681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1149,"favorite_count":6650,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1149,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427029162787803142\/HEeH1by5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427029162787803142\/HEeH1by5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1133632325286322176\/1629065584","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2397845366,"id_str":"2397845366","name":"Giuseppe - Russo","screen_name":"pepp_ru","location":"Napoli, Campania","description":"twenty-something - y\/o -\nmathematical engineer in Turin, feeling in Naples","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":245,"listed_count":0,"created_at":"Wed - Mar 19 13:13:44 +0000 2014","favourites_count":2436,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":518,"lang":null,"status":{"created_at":"Thu - Mar 24 15:49:14 +0000 2022","id":1507021729931046921,"id_str":"1507021729931046921","text":"RT - @anneapplebaum: Emails and documents show just how closely Italian, French, - German and Austrian politicians coordinate with Moscow. An i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anneapplebaum","name":"Anne - Applebaum","id":297100174,"id_str":"297100174","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:33:08 +0000 2022","id":1507017680959664130,"id_str":"1507017680959664130","text":"Emails - and documents show just how closely Italian, French, German and Austrian politicians - coordinate with Moscow.\u2026 https:\/\/t.co\/FVpPyFfrP0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FVpPyFfrP0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507017680959664130","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2268,"favorite_count":4477,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2268,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130497150004224000\/ED7K5Dn7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130497150004224000\/ED7K5Dn7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2397845366\/1611245326","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15311566,"id_str":"15311566","name":"Kurt - K.","screen_name":"kakaylor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":2,"listed_count":1,"created_at":"Thu - Jul 03 19:20:12 +0000 2008","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869716341263015936\/TalHS-t0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869716341263015936\/TalHS-t0_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1495703106973319174,"id_str":"1495703106973319174","name":"MJ","screen_name":"MjMEATP","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":20,"listed_count":0,"created_at":"Mon - Feb 21 10:13:17 +0000 2022","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1055908069673222145,"id_str":"1055908069673222145","name":"&$!#%","screen_name":"drugfag","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":1432,"listed_count":0,"created_at":"Fri - Oct 26 19:44:36 +0000 2018","favourites_count":15294,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4181,"lang":null,"status":{"created_at":"Fri - Mar 25 21:42:46 +0000 2022","id":1507473090439225349,"id_str":"1507473090439225349","text":"@coldxman - you\u2019re a vegetarian? well so was hitler","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"coldxman","name":"Coleman - Hughes","id":88315048,"id_str":"88315048","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507471040049463298,"in_reply_to_status_id_str":"1507471040049463298","in_reply_to_user_id":88315048,"in_reply_to_user_id_str":"88315048","in_reply_to_screen_name":"coldxman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1438879982923784195\/ATHyFvpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1438879982923784195\/ATHyFvpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1055908069673222145\/1636130556","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1448609033082966017,"id_str":"1448609033082966017","name":"\ud835\udd95\ud835\udd86\ud835\udd86\ud835\udd97\ud835\udd99\ud835\udd8d","screen_name":"paarth_0","location":"","description":"\u2764\ufe0f - \ud835\ude2c\ud835\ude33\ud835\ude2a\ud835\ude34\ud835\ude29\ud835\ude2f\ud835\ude22. - \nI am not responsible for what people that I follow here do\/say.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":783,"listed_count":0,"created_at":"Thu - Oct 14 11:18:24 +0000 2021","favourites_count":2266,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":553,"lang":null,"status":{"created_at":"Fri - Mar 25 08:11:15 +0000 2022","id":1507268863485902852,"id_str":"1507268863485902852","text":"RT - @akshayalladi: China is an enemy. India should always look to ensure that - the enmity doesn\u2019t escalate to the level of a military conflic\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"akshayalladi","name":"Akshay - Alladi","id":15464830,"id_str":"15464830","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:46:33 +0000 2022","id":1507262648123277323,"id_str":"1507262648123277323","text":"China - is an enemy. India should always look to ensure that the enmity doesn\u2019t - escalate to the level of a military c\u2026 https:\/\/t.co\/c7s2EpVlAO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c7s2EpVlAO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507262648123277323","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":403,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":56,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500816087952535554\/kSy2-BOE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500816087952535554\/kSy2-BOE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1448609033082966017\/1640969803","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":753559542059982848,"id_str":"753559542059982848","name":"Vivien - Latour","screen_name":"VivienLatour","location":"France","description":"\u00c9tudiant - journaliste \u00e0 @IjbaOfficiel et @SudOuest \/\nAfrique, Am\u00e9rique et - M-O \/ street photography \/ folk & rock am\u00e9ricain \/ Wenders & Malick.","url":"https:\/\/t.co\/Aw7q7Ek1Hh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Aw7q7Ek1Hh","expanded_url":"https:\/\/www.instagram.com\/vivien.latour\/","display_url":"instagram.com\/vivien.latour\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":836,"listed_count":2,"created_at":"Thu - Jul 14 11:59:30 +0000 2016","favourites_count":1003,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":197,"lang":null,"status":{"created_at":"Sat - Mar 26 10:23:59 +0000 2022","id":1507664654805393409,"id_str":"1507664654805393409","text":"RT - @arnaudmontagard: A thread about \u201cLa Travers\u00e9e\u201d (The Crossing) - and why it changed my photography career \ud83e\uddf5 https:\/\/t.co\/aoDdKZdZ2Y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arnaudmontagard","name":"Arnaud - Montagard","id":130281415,"id_str":"130281415","indices":[3,19]}],"urls":[],"media":[{"id":1507409569059856384,"id_str":"1507409569059856384","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","url":"https:\/\/t.co\/aoDdKZdZ2Y","display_url":"pic.twitter.com\/aoDdKZdZ2Y","expanded_url":"https:\/\/twitter.com\/arnaudmontagard\/status\/1507421766062325796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}},"source_status_id":1507421766062325796,"source_status_id_str":"1507421766062325796","source_user_id":130281415,"source_user_id_str":"130281415"}]},"extended_entities":{"media":[{"id":1507409569059856384,"id_str":"1507409569059856384","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","url":"https:\/\/t.co\/aoDdKZdZ2Y","display_url":"pic.twitter.com\/aoDdKZdZ2Y","expanded_url":"https:\/\/twitter.com\/arnaudmontagard\/status\/1507421766062325796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}},"source_status_id":1507421766062325796,"source_status_id_str":"1507421766062325796","source_user_id":130281415,"source_user_id_str":"130281415"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:18:50 +0000 2022","id":1507421766062325796,"id_str":"1507421766062325796","text":"A - thread about \u201cLa Travers\u00e9e\u201d (The Crossing) and why it changed - my photography career \ud83e\uddf5 https:\/\/t.co\/aoDdKZdZ2Y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507409569059856384,"id_str":"1507409569059856384","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","url":"https:\/\/t.co\/aoDdKZdZ2Y","display_url":"pic.twitter.com\/aoDdKZdZ2Y","expanded_url":"https:\/\/twitter.com\/arnaudmontagard\/status\/1507421766062325796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507409569059856384,"id_str":"1507409569059856384","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtlBDbWYAAx1Le.jpg","url":"https:\/\/t.co\/aoDdKZdZ2Y","display_url":"pic.twitter.com\/aoDdKZdZ2Y","expanded_url":"https:\/\/twitter.com\/arnaudmontagard\/status\/1507421766062325796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1365,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":257,"favorite_count":2621,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":257,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1440031482173526018\/G1H1GGhZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1440031482173526018\/G1H1GGhZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/753559542059982848\/1646676192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2914950562,"id_str":"2914950562","name":"Jason - Lalljee \ud83c\uddec\ud83c\uddfe","screen_name":"jasonlall9","location":"Queens, - NY","description":"Junior economy reporter @businessinsider, you can send - tips to jlalljee@insider.com. Frank Ocean can reach me anywhere else | he\/him","url":"https:\/\/t.co\/TBOBDFU9OU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TBOBDFU9OU","expanded_url":"https:\/\/bit.ly\/3szrGiE","display_url":"bit.ly\/3szrGiE","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":593,"friends_count":1583,"listed_count":14,"created_at":"Thu - Dec 11 02:56:04 +0000 2014","favourites_count":16995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":166,"lang":null,"status":{"created_at":"Sun - Mar 13 14:27:09 +0000 2022","id":1503014808949596172,"id_str":"1503014808949596172","text":"@CECabrera_ - Congrats, Claudio!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CECabrera_","name":"Claudio - Eduardo Cabrera","id":1079487785856311297,"id_str":"1079487785856311297","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503013440549539844,"in_reply_to_status_id_str":"1503013440549539844","in_reply_to_user_id":1079487785856311297,"in_reply_to_user_id_str":"1079487785856311297","in_reply_to_screen_name":"CECabrera_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1018977223997644801\/xtb5PRe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1018977223997644801\/xtb5PRe5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914950562\/1543544909","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1367385837038542850,"id_str":"1367385837038542850","name":"Follow - News","screen_name":"variantdaily","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":815,"listed_count":7,"created_at":"Thu - Mar 04 08:10:29 +0000 2021","favourites_count":136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Mar 17 07:18:08 +0000 2022","id":1504356394182451204,"id_str":"1504356394182451204","text":"RT - @AlanRMacLeod: The Economist has finally found a war it doesn''t like. https:\/\/t.co\/Lmh3sQAycS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlanRMacLeod","name":"Alan - MacLeod","id":2365896248,"id_str":"2365896248","indices":[3,16]}],"urls":[],"media":[{"id":1501510837894270977,"id_str":"1501510837894270977","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","url":"https:\/\/t.co\/Lmh3sQAycS","display_url":"pic.twitter.com\/Lmh3sQAycS","expanded_url":"https:\/\/twitter.com\/AlanRMacLeod\/status\/1504093879661912071\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":1010,"resize":"fit"},"medium":{"w":1200,"h":710,"resize":"fit"},"small":{"w":680,"h":403,"resize":"fit"}},"source_status_id":1504093879661912071,"source_status_id_str":"1504093879661912071","source_user_id":2365896248,"source_user_id_str":"2365896248"}]},"extended_entities":{"media":[{"id":1501510837894270977,"id_str":"1501510837894270977","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","url":"https:\/\/t.co\/Lmh3sQAycS","display_url":"pic.twitter.com\/Lmh3sQAycS","expanded_url":"https:\/\/twitter.com\/AlanRMacLeod\/status\/1504093879661912071\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":1010,"resize":"fit"},"medium":{"w":1200,"h":710,"resize":"fit"},"small":{"w":680,"h":403,"resize":"fit"}},"source_status_id":1504093879661912071,"source_status_id_str":"1504093879661912071","source_user_id":2365896248,"source_user_id_str":"2365896248"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 13:55:00 +0000 2022","id":1504093879661912071,"id_str":"1504093879661912071","text":"The - Economist has finally found a war it doesn''t like. https:\/\/t.co\/Lmh3sQAycS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501510837894270977,"id_str":"1501510837894270977","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","url":"https:\/\/t.co\/Lmh3sQAycS","display_url":"pic.twitter.com\/Lmh3sQAycS","expanded_url":"https:\/\/twitter.com\/AlanRMacLeod\/status\/1504093879661912071\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":1010,"resize":"fit"},"medium":{"w":1200,"h":710,"resize":"fit"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501510837894270977,"id_str":"1501510837894270977","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNZwJtcWUAEcthD.jpg","url":"https:\/\/t.co\/Lmh3sQAycS","display_url":"pic.twitter.com\/Lmh3sQAycS","expanded_url":"https:\/\/twitter.com\/AlanRMacLeod\/status\/1504093879661912071\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1706,"h":1010,"resize":"fit"},"medium":{"w":1200,"h":710,"resize":"fit"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28140,"favorite_count":96807,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28140,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499395726169677826\/ryPokdKc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499395726169677826\/ryPokdKc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1367385837038542850\/1646318852","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19205793,"id_str":"19205793","name":"massimo - rispetto","screen_name":"_isadora","location":"","description":"vim para a - vida a passeio e levo isso muito a s\u00e9rio.\nit''s useful being top banana - at the shock department etc","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":169,"friends_count":1457,"listed_count":5,"created_at":"Mon - Jan 19 22:26:33 +0000 2009","favourites_count":47823,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8994,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500961457210544139\/VoSBL9Kq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500961457210544139\/VoSBL9Kq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19205793\/1623893811","profile_link_color":"FF2F00","profile_sidebar_border_color":"131616","profile_sidebar_fill_color":"4A444F","profile_text_color":"121414","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":404237460,"id_str":"404237460","name":"Dario - Viezzer","screen_name":"DarioViezzer","location":"","description":"Va Ben - Dai","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":134,"listed_count":0,"created_at":"Thu - Nov 03 16:51:27 +0000 2011","favourites_count":1335,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Thu - Dec 16 19:57:03 +0000 2021","id":1471570085533868039,"id_str":"1471570085533868039","text":"RT - @BuffaloBills: \ud835\udc0b\ud835\udc00\ud835\udc12\ud835\udc13 \ud835\udc03\ud835\udc00\ud835\udc18 - \ud835\udc13\ud835\udc0e \ud835\udc15\ud835\udc0e\ud835\udc13\ud835\udc04!!\n\n1 - retweet = 2 votes\n\n#ProBowlVote | @JoshAllenQB\n#ProBowlVote | @StefonDiggs\n#ProBowlVote - | @Dawson_K\u2026","truncated":false,"entities":{"hashtags":[{"text":"ProBowlVote","indices":[59,71]},{"text":"ProBowlVote","indices":[87,99]},{"text":"ProBowlVote","indices":[115,127]}],"symbols":[],"user_mentions":[{"screen_name":"BuffaloBills","name":"Buffalo - Bills","id":25084916,"id_str":"25084916","indices":[3,16]},{"screen_name":"JoshAllenQB","name":"Josh - Allen","id":197974180,"id_str":"197974180","indices":[74,86]},{"screen_name":"stefondiggs","name":"DIGGS","id":2545680959,"id_str":"2545680959","indices":[102,114]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 16 17:03:56 +0000 2021","id":1471526517301780485,"id_str":"1471526517301780485","text":"\ud835\udc0b\ud835\udc00\ud835\udc12\ud835\udc13 - \ud835\udc03\ud835\udc00\ud835\udc18 \ud835\udc13\ud835\udc0e \ud835\udc15\ud835\udc0e\ud835\udc13\ud835\udc04!!\n\n1 - retweet = 2 votes\n\n#ProBowlVote | @JoshAllenQB\n#ProBowlVote | @StefonDiggs\n#ProBowlVote - |\u2026 https:\/\/t.co\/z5D2qlQAi8","truncated":true,"entities":{"hashtags":[{"text":"ProBowlVote","indices":[41,53]},{"text":"ProBowlVote","indices":[69,81]},{"text":"ProBowlVote","indices":[97,109]}],"symbols":[],"user_mentions":[{"screen_name":"JoshAllenQB","name":"Josh - Allen","id":197974180,"id_str":"197974180","indices":[56,68]},{"screen_name":"stefondiggs","name":"DIGGS","id":2545680959,"id_str":"2545680959","indices":[84,96]}],"urls":[{"url":"https:\/\/t.co\/z5D2qlQAi8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471526517301780485","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4043,"favorite_count":1057,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4043,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585472539247386624\/3k2lLAqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585472539247386624\/3k2lLAqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404237460\/1409063362","profile_link_color":"2DB300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":169767998,"id_str":"169767998","name":"Darnell","screen_name":"DJLinks617","location":"Boston, - MA","description":"I\u2019m only here to read tweets","url":"https:\/\/t.co\/rX9djz0zug","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rX9djz0zug","expanded_url":"http:\/\/www.facebook.com\/people\/Darnell-Jamal-Links-Benoit\/1113660570","display_url":"facebook.com\/people\/Darnell\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":779,"friends_count":3602,"listed_count":23,"created_at":"Fri - Jul 23 03:25:53 +0000 2010","favourites_count":5349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":53742,"lang":null,"status":{"created_at":"Tue - Mar 22 19:30:23 +0000 2022","id":1506352608562356230,"id_str":"1506352608562356230","text":"LMFAO - FACTS https:\/\/t.co\/KcVTPzAg9l","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KcVTPzAg9l","expanded_url":"https:\/\/twitter.com\/exact__lee\/status\/1506041691844890629","display_url":"twitter.com\/exact__lee\/sta\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506041691844890629,"quoted_status_id_str":"1506041691844890629","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491577960293355520\/odf_u4Rb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491577960293355520\/odf_u4Rb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169767998\/1361335337","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1044124069,"id_str":"1044124069","name":"Katy - Green","screen_name":"katygreencali15","location":"Washington, D.C.","description":"International - Relations major, Saint Joseph\u2019s University, Class of 2021","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":153,"listed_count":0,"created_at":"Sat - Dec 29 07:33:28 +0000 2012","favourites_count":1685,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":738,"lang":null,"status":{"created_at":"Wed - Mar 23 22:42:23 +0000 2022","id":1506763317074960389,"id_str":"1506763317074960389","text":"RT - @kylegriffin1: Just watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086"}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086","video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 21:55:21 +0000 2022","id":1506751479054577675,"id_str":"1506751479054577675","text":"Just - watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43374,"favorite_count":218823,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":43374,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377728253872443393\/JGxyR3eo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377728253872443393\/JGxyR3eo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1044124069\/1617311158","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1450814312675790849,"id_str":"1450814312675790849","name":"Mohammed - Yasir Malititi","screen_name":"MalititiYasir","location":"Home\ud83c\udf89","description":"CABEESA - Chief of Staff,\nKATANGEE,\nCONSTRUCTION \ud83d\udea7 ECONOMIST","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":332,"listed_count":0,"created_at":"Wed - Oct 20 13:21:57 +0000 2021","favourites_count":4449,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1193,"lang":null,"status":{"created_at":"Mon - Mar 21 23:03:02 +0000 2022","id":1506043736001851403,"id_str":"1506043736001851403","text":"RT - @BongoIdeas: Credit: Nii Moi Thompson\n\nRead More. \n\nhttps:\/\/t.co\/VmahN7eIq7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BongoIdeas","name":"Albert - Nat Hyde","id":3407203995,"id_str":"3407203995","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/VmahN7eIq7","expanded_url":"https:\/\/citinewsroom.com\/2022\/03\/nii-moi-thompson-writes-the-cedi-what-happened-and-where-do-we-go-from-here\/","display_url":"citinewsroom.com\/2022\/03\/nii-mo\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 09:14:58 +0000 2022","id":1505835348265521157,"id_str":"1505835348265521157","text":"Credit: - Nii Moi Thompson\n\nRead More. \n\nhttps:\/\/t.co\/VmahN7eIq7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VmahN7eIq7","expanded_url":"https:\/\/citinewsroom.com\/2022\/03\/nii-moi-thompson-writes-the-cedi-what-happened-and-where-do-we-go-from-here\/","display_url":"citinewsroom.com\/2022\/03\/nii-mo\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505835346180952065,"in_reply_to_status_id_str":"1505835346180952065","in_reply_to_user_id":3407203995,"in_reply_to_user_id_str":"3407203995","in_reply_to_screen_name":"BongoIdeas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":143,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490760277197004806\/zykqVcvw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490760277197004806\/zykqVcvw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450814312675790849\/1644950597","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1483427276498874368,"id_str":"1483427276498874368","name":"Johanna - Ala-Nissil\u00e4","screen_name":"johannac3cilia","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":28,"listed_count":0,"created_at":"Tue - Jan 18 13:14:16 +0000 2022","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483427522905788417\/eaIi0Jcs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483427522905788417\/eaIi0Jcs_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1437811750628384783,"id_str":"1437811750628384783","name":"Zoe - Redfern-Hall","screen_name":"ZoeRedfernHall2","location":"Minneapolis, MN","description":"PR - comms intern. Clark PSCI grad. Hidden talents include making gnocchi and DDR - \ud83d\udc69\u200d\ud83c\udfa8, \ud83d\udcda, \ud83d\udc69\u200d\ud83c\udf73","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":109,"listed_count":0,"created_at":"Tue - Sep 14 16:13:37 +0000 2021","favourites_count":121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Tue - Mar 22 01:57:26 +0000 2022","id":1506087626536890369,"id_str":"1506087626536890369","text":"\u201cHe\u2019s - lithe at the very least\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437811971378790403\/62CvB44Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437811971378790403\/62CvB44Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":943100474772873216,"id_str":"943100474772873216","name":"Paloma - Haller","screen_name":"nonzerosumm","location":"Out of my language","description":"What, - you egg? (neither smart nor interesting)(undecided about identities)(Parentheses - lover)(she\/her)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":423,"listed_count":0,"created_at":"Tue - Dec 19 12:47:29 +0000 2017","favourites_count":3784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Sun - Mar 13 15:46:54 +0000 2022","id":1503034878559936513,"id_str":"1503034878559936513","text":"Guess - who\u2019s so drunk they just spilled half a glass of Nebbiolo down the sink - https:\/\/t.co\/ITghdFOXTx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1503034874596372487,"id_str":"1503034874596372487","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FNvaQUlXMAcMbr0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNvaQUlXMAcMbr0.jpg","url":"https:\/\/t.co\/ITghdFOXTx","display_url":"pic.twitter.com\/ITghdFOXTx","expanded_url":"https:\/\/twitter.com\/nonzerosumm\/status\/1503034878559936513\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503034874596372487,"id_str":"1503034874596372487","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FNvaQUlXMAcMbr0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNvaQUlXMAcMbr0.jpg","url":"https:\/\/t.co\/ITghdFOXTx","display_url":"pic.twitter.com\/ITghdFOXTx","expanded_url":"https:\/\/twitter.com\/nonzerosumm\/status\/1503034878559936513\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502455291107024896\/kk4FOFFD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502455291107024896\/kk4FOFFD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/943100474772873216\/1515078977","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":761249571146170368,"id_str":"761249571146170368","name":"Hailey - Kroll","screen_name":"haileyykroll","location":"Boston, MA","description":"She\/They. - Journalist. Writer. Graphic Designer. Editor. Photographer.","url":"https:\/\/t.co\/bFoATFfnya","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bFoATFfnya","expanded_url":"https:\/\/linktr.ee\/haileyyk","display_url":"linktr.ee\/haileyyk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":340,"listed_count":0,"created_at":"Thu - Aug 04 17:16:55 +0000 2016","favourites_count":5823,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":313,"lang":null,"status":{"created_at":"Wed - Mar 09 19:27:39 +0000 2022","id":1501640878972194819,"id_str":"1501640878972194819","text":"RT - @ShimpySmurf: gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay - gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay g\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShimpySmurf","name":"Ashley - Nicole","id":32032212,"id_str":"32032212","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 15:50:11 +0000 2022","id":1501586153945939973,"id_str":"1501586153945939973","text":"gay - gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay gay - gay gay gay gay gay gay gay ga\u2026 https:\/\/t.co\/q7uPnF0ou4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/q7uPnF0ou4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501586153945939973","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ht"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447201243730952199\/K1B8B1rX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447201243730952199\/K1B8B1rX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761249571146170368\/1594623554","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1457922098739900416,"id_str":"1457922098739900416","name":"Threaded_Hopes","screen_name":"ThreadedHopes","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":1,"listed_count":0,"created_at":"Tue - Nov 09 04:05:38 +0000 2021","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":620337696,"id_str":"620337696","name":"Matteo - Baldi","screen_name":"matteo_baldi","location":"Arezzo","description":"Appassionato - di musica, tecnologia e politica.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":3773,"listed_count":0,"created_at":"Wed - Jun 27 19:06:37 +0000 2012","favourites_count":7231,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1306,"lang":null,"status":{"created_at":"Mon - Mar 21 22:11:39 +0000 2022","id":1506030805117714441,"id_str":"1506030805117714441","text":"Quando - covid e guerra in #Ucraina magicamente si incontrano\ud83e\udd26\ud83c\udffb\n@GiovaQuez - https:\/\/t.co\/s95udCs101","truncated":false,"entities":{"hashtags":[{"text":"Ucraina","indices":[25,33]}],"symbols":[],"user_mentions":[{"screen_name":"GiovaQuez","name":"Giovanni - Rodriquez","id":1216857073,"id_str":"1216857073","indices":[62,72]}],"urls":[{"url":"https:\/\/t.co\/s95udCs101","expanded_url":"https:\/\/twitter.com\/NicolaPorro\/status\/1505898914284806146","display_url":"twitter.com\/NicolaPorro\/st\u2026","indices":[73,96]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505898914284806146,"quoted_status_id_str":"1505898914284806146","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1355570778998255617\/YDBcRB4Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1355570778998255617\/YDBcRB4Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620337696\/1468618726","profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6D7BA4","profile_text_color":"3CB1E8","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1391284880093310976,"id_str":"1391284880093310976","name":"j","screen_name":"knifeshoeballet","location":"he\/him, - 19","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":320,"listed_count":0,"created_at":"Sun - May 09 06:52:38 +0000 2021","favourites_count":16334,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2320,"lang":null,"status":{"created_at":"Sat - Mar 26 10:21:28 +0000 2022","id":1507664021083754497,"id_str":"1507664021083754497","text":"no - bc some of us need to get off our asses and work \ud83d\udc80 https:\/\/t.co\/0YPMdNKy2N","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0YPMdNKy2N","expanded_url":"https:\/\/twitter.com\/krisjenner\/status\/1506050564966256646","display_url":"twitter.com\/krisjenner\/sta\u2026","indices":[54,77]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506050564966256646,"quoted_status_id_str":"1506050564966256646","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471039581210349568\/DZVW-mjJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471039581210349568\/DZVW-mjJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1391284880093310976\/1631504341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1451840128486309888,"id_str":"1451840128486309888","name":"Balu","screen_name":"Balu832829","location":"India","description":"....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":2317,"listed_count":0,"created_at":"Sat - Oct 23 09:17:36 +0000 2021","favourites_count":203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":510,"lang":null,"status":{"created_at":"Sun - Feb 20 10:47:16 +0000 2022","id":1495349325177794561,"id_str":"1495349325177794561","text":"RT - @YogiTweetz: On point !! Matha kula prastavana leni desale epudaina bagupadatai - ....asal problems odilesi veetini manasu ki mind ki ekki\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YogiTweetz","name":"Y\u0418","id":945650138,"id_str":"945650138","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 20 10:32:48 +0000 2022","id":1495345687206121475,"id_str":"1495345687206121475","text":"On - point !! Matha kula prastavana leni desale epudaina bagupadatai ....asal problems - odilesi veetini manasu ki mind\u2026 https:\/\/t.co\/lNYYnefspe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lNYYnefspe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495345687206121475","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1495293569216618499,"quoted_status_id_str":"1495293569216618499","retweet_count":30,"favorite_count":128,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":true,"quoted_status_id":1495293569216618499,"quoted_status_id_str":"1495293569216618499","retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480578350582173696\/-sBn8YYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480578350582173696\/-sBn8YYH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3250102350,"id_str":"3250102350","name":"Jim - Mize","screen_name":"big_mize","location":"Mableton Georgia","description":"independent - thinker!\n\nI seldom respond to private messages so either ask me here or, - #bigjimmize","url":"https:\/\/t.co\/glAncjRTsM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/glAncjRTsM","expanded_url":"http:\/\/Facebook.com\/Jim.mize","display_url":"Facebook.com\/Jim.mize","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3790,"friends_count":3319,"listed_count":24,"created_at":"Sat - Jun 20 00:43:10 +0000 2015","favourites_count":195,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25332,"lang":null,"status":{"created_at":"Fri - Mar 25 18:01:23 +0000 2022","id":1507417376559886337,"id_str":"1507417376559886337","text":"#jimmizeshow - \n\nBig Jim smells #Pot !!!!!\n\n#midtownatl \n\n#piedmontpark \n\n#marijuananews - \n\n#marijuana \n\n#joint\u2026 https:\/\/t.co\/vcm8CW8l9M","truncated":true,"entities":{"hashtags":[{"text":"jimmizeshow","indices":[0,12]},{"text":"Pot","indices":[30,34]},{"text":"midtownatl","indices":[42,53]},{"text":"piedmontpark","indices":[56,69]},{"text":"marijuananews","indices":[72,86]},{"text":"marijuana","indices":[89,99]},{"text":"joint","indices":[102,108]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vcm8CW8l9M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507417376559886337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459564620440612867\/KVhvcEwl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459564620440612867\/KVhvcEwl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3250102350\/1605361942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201802396,"id_str":"1201802396","name":"Paolo - Rolla","screen_name":"paolo_Rolla86","location":"Milano","description":"Nice - dude. #music #movies #books #philosopy #socialmedia #digital #marketing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":369,"friends_count":308,"listed_count":7,"created_at":"Wed - Feb 20 18:23:28 +0000 2013","favourites_count":8139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1617,"lang":null,"status":{"created_at":"Fri - Mar 25 19:41:45 +0000 2022","id":1507442632280182786,"id_str":"1507442632280182786","text":"RT - @martaottaviani: Oggi a @OmnibusLa7 a una domanda diretta, ho avuto modo di - dire, spero definitivamente, cosa pensi del Prof #Orsini e d\u2026","truncated":false,"entities":{"hashtags":[{"text":"Orsini","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"martaottaviani","name":"Marta - Ottaviani","id":61567461,"id_str":"61567461","indices":[3,18]},{"screen_name":"OmnibusLa7","name":"Omnibus - La7","id":546791475,"id_str":"546791475","indices":[27,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:28:56 +0000 2022","id":1507318611014213636,"id_str":"1507318611014213636","text":"Oggi - a @OmnibusLa7 a una domanda diretta, ho avuto modo di dire, spero definitivamente, - cosa pensi del Prof #Orsini\u2026 https:\/\/t.co\/lQlTuEFLxl","truncated":true,"entities":{"hashtags":[{"text":"Orsini","indices":[108,115]}],"symbols":[],"user_mentions":[{"screen_name":"OmnibusLa7","name":"Omnibus - La7","id":546791475,"id_str":"546791475","indices":[7,18]}],"urls":[{"url":"https:\/\/t.co\/lQlTuEFLxl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507318611014213636","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":797,"favorite_count":4125,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":797,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832916262766395392\/0pW1o5gX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832916262766395392\/0pW1o5gX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201802396\/1445332765","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1466536991739236365,"id_str":"1466536991739236365","name":"Conor","screen_name":"fanaticalconzo","location":"","description":"make - like the french. take to the streets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":61,"listed_count":0,"created_at":"Thu - Dec 02 22:37:40 +0000 2021","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466537147834503175\/4k1B7vRw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466537147834503175\/4k1B7vRw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466536991739236365\/1638562610","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":244652856,"id_str":"244652856","name":"WASHINGTON","screen_name":"waslaursen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":360,"listed_count":4,"created_at":"Sat - Jan 29 20:27:25 +0000 2011","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Wed - Jun 05 12:56:02 +0000 2019","id":1136255356148097024,"id_str":"1136255356148097024","text":"RT - @PGuaglianoni: \"O que eu peguei para gerir, eu devolvi em dobro, triplo. - Essa \u00e9 a minha experi\u00eancia. N\u00e3o sei qual \u00e9 a sua experi\u00eancia - e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PGuaglianoni","name":"Patrick - Guaglianoni","id":824107251703119873,"id_str":"824107251703119873","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 04 22:36:36 +0000 2019","id":1136039074505142273,"id_str":"1136039074505142273","text":"\"O - que eu peguei para gerir, eu devolvi em dobro, triplo. Essa \u00e9 a minha - experi\u00eancia. N\u00e3o sei qual \u00e9 a sua experi\u00ean\u2026 https:\/\/t.co\/MK5CUOXVPk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MK5CUOXVPk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1136039074505142273","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":197,"favorite_count":1203,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":197,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000025316465\/7c5c931b64bc5409f12fabd390e57e46_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000025316465\/7c5c931b64bc5409f12fabd390e57e46_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1388518454232297473,"id_str":"1388518454232297473","name":"Tobias - Behrensmeyer","screen_name":"TBehrensmeyer","location":"Rheinland-Pfalz, Deutschland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":919,"listed_count":0,"created_at":"Sat - May 01 15:39:51 +0000 2021","favourites_count":596,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":481,"lang":null,"status":{"created_at":"Wed - Oct 27 12:05:18 +0000 2021","id":1453331974530162696,"id_str":"1453331974530162696","text":"RT - @CDUNRW_Fraktion: F\u00fcr die #NRWKoalition von CDU und der @FDPFraktionNRW - schl\u00e4gt @bodoloettgen im #ltnrw offiziell @HendrikWuest zur Wahl\u2026","truncated":false,"entities":{"hashtags":[{"text":"NRWKoalition","indices":[29,42]},{"text":"ltnrw","indices":[100,106]}],"symbols":[],"user_mentions":[{"screen_name":"CDUNRW_Fraktion","name":"CDU-Fraktion - NRW","id":539988898,"id_str":"539988898","indices":[3,19]},{"screen_name":"FDPFraktionNRW","name":"FDP-Fraktion - NRW","id":97421021,"id_str":"97421021","indices":[59,74]},{"screen_name":"bodoloettgen","name":"Bodo - L\u00f6ttgen \ud83c\uddfa\ud83c\udde6","id":24670422,"id_str":"24670422","indices":[83,96]},{"screen_name":"HendrikWuest","name":"Hendrik - W\u00fcst","id":724509927952277504,"id_str":"724509927952277504","indices":[117,130]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 27 11:42:26 +0000 2021","id":1453326218837823498,"id_str":"1453326218837823498","text":"F\u00fcr - die #NRWKoalition von CDU und der @FDPFraktionNRW schl\u00e4gt @bodoloettgen - im #ltnrw offiziell @HendrikWuest zur W\u2026 https:\/\/t.co\/kEgBoWzFIU","truncated":true,"entities":{"hashtags":[{"text":"NRWKoalition","indices":[8,21]},{"text":"ltnrw","indices":[79,85]}],"symbols":[],"user_mentions":[{"screen_name":"FDPFraktionNRW","name":"FDP-Fraktion - NRW","id":97421021,"id_str":"97421021","indices":[38,53]},{"screen_name":"bodoloettgen","name":"Bodo - L\u00f6ttgen \ud83c\uddfa\ud83c\udde6","id":24670422,"id_str":"24670422","indices":[62,75]},{"screen_name":"HendrikWuest","name":"Hendrik - W\u00fcst","id":724509927952277504,"id_str":"724509927952277504","indices":[96,109]}],"urls":[{"url":"https:\/\/t.co\/kEgBoWzFIU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1453326218837823498","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":28,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507362428518113284\/075xFZee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507362428518113284\/075xFZee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1388518454232297473\/1647772825","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":69017389,"id_str":"69017389","name":"\u4e2d\u6751\u3000\u592e\u3000\uff08\u6280\u8853\u58eb\u3001ea\uff12\uff11\u5be9\u67fb\u54e1\uff09","screen_name":"ea21nakamura","location":"Hamamatsu,Shizuoka,Japan\/\u6d5c\u677e\u5e02\u4e2d\u533a","description":"\u65e5\u672c\u6280\u8853\u58eb\u4f1a\u30d5\u30a7\u30ed\u30fc\uff08\u7dcf\u5408\u6280\u8853\u76e3\u7406\u3001\u751f\u7269\u5de5\u5b66\uff09 - | \u30a8\u30b3\u30a2\u30af\u30b7\u30e7\u30f3\uff12\uff11\u5be9\u67fb\u54e1 - | \u5316\u5b66\u7269\u8cea\u30a2\u30c9\u30d0\u30a4\u30b6\u30fc | \u30a8\u30cd\u30eb\u30ae\u30fc\u4f7f\u7528\u5408\u7406\u5316\u5c02\u9580\u54e1 - | \u74b0\u5883\u8a08\u91cf\u58eb | \u96fb\u6c17\u4e3b\u4efb\u6280\u8853\u8005 - | \u96fb\u6c17\u901a\u4fe1\u4e3b\u4efb\u6280\u8853\u8005 | \u30ac\u30b9\u4e3b\u4efb\u6280\u8853\u8005 - | \u9759\u5ca1\u770c\u74b0\u5883\u30ab\u30a6\u30f3\u30bb\u30e9\u30fc\u5354\u4f1a\u4e8b\u52d9\u5c40\u9577 - | \u4e2d\u90e8\u5927\u5b66\u5de5\u5b66\u90e8\u975e\u5e38\u52e4\u8b1b\u5e2b\u300c\u74b0\u5883\u5de5\u5b66\u300d","url":"https:\/\/t.co\/7HtgAiM5Bf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7HtgAiM5Bf","expanded_url":"https:\/\/www.facebook.com\/ea21nakamura","display_url":"facebook.com\/ea21nakamura","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601,"friends_count":360,"listed_count":164,"created_at":"Wed - Aug 26 15:54:52 +0000 2009","favourites_count":26312,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7764,"lang":null,"status":{"created_at":"Sat - Jan 08 16:10:38 +0000 2022","id":1479848027191873537,"id_str":"1479848027191873537","text":"https:\/\/t.co\/7bVR3SLe4i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7bVR3SLe4i","expanded_url":"https:\/\/lnkd.in\/gSpa8eqv","display_url":"lnkd.in\/gSpa8eqv","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/751156348\/hiroshi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/751156348\/hiroshi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69017389\/1398339057","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1427007191370932225,"id_str":"1427007191370932225","name":"Maria - Federica Zanagnolo","screen_name":"MariaZanagnolo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":70,"listed_count":0,"created_at":"Sun - Aug 15 20:40:20 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427007726924800008\/4vcowyiB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427007726924800008\/4vcowyiB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835958022207864838,"id_str":"835958022207864838","name":"Steve","screen_name":"Flip1787","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":95,"listed_count":0,"created_at":"Sun - Feb 26 21:01:38 +0000 2017","favourites_count":2163,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sat - Mar 19 02:59:42 +0000 2022","id":1505016133799358469,"id_str":"1505016133799358469","text":"@PeppBaseball - Awesome video!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeppBaseball","name":"Pepperdine - Baseball","id":814384206,"id_str":"814384206","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505015744404230147,"in_reply_to_status_id_str":"1505015744404230147","in_reply_to_user_id":814384206,"in_reply_to_user_id_str":"814384206","in_reply_to_screen_name":"PeppBaseball","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492504947459567616\/RYFg2Cc5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492504947459567616\/RYFg2Cc5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86237898,"id_str":"86237898","name":"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f - MAO MAO SAYS TRANS RIGHTS \ud83c\udff3\ufe0f\u200d\u26a7\ufe0f - 616 days","screen_name":"BadgercIops","location":"","description":"he\/him - \u3008\u2e0c\u058a\u25be\u3009 just some weird mustelid cyborg that lives - with a cat and a bat \u3008\u2e0c\u058a\u25be\u3009 no RP \u3008\u2e0c\u058a\u25be\u3009 - \u2728 Multifandom \u2728 \u3008\u2e0c\u058a\u25be\u3009 observes a lot of - world events","url":"https:\/\/t.co\/A2Asw1LbYZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A2Asw1LbYZ","expanded_url":"https:\/\/letterboxd.com\/BadgercIops\/","display_url":"letterboxd.com\/BadgercIops\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":305,"friends_count":480,"listed_count":0,"created_at":"Fri - Oct 30 04:15:02 +0000 2009","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5413,"lang":null,"status":{"created_at":"Sat - Mar 26 08:51:05 +0000 2022","id":1507641274509119489,"id_str":"1507641274509119489","text":"If - you grew up with this cartoon I\u2019m in, you had a DAMN good childhood!! - \ud83d\udd25 https:\/\/t.co\/Ocp1PfqXOh https:\/\/t.co\/6j3O2fAORN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ocp1PfqXOh","expanded_url":"https:\/\/twitter.com\/aidenrs139\/status\/1507446180363526147","display_url":"twitter.com\/aidenrs139\/sta\u2026","indices":[75,98]}],"media":[{"id":1507641268976816128,"id_str":"1507641268976816128","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw3vw4VEAAlVNz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw3vw4VEAAlVNz.jpg","url":"https:\/\/t.co\/6j3O2fAORN","display_url":"pic.twitter.com\/6j3O2fAORN","expanded_url":"https:\/\/twitter.com\/BadgercIops\/status\/1507641274509119489\/photo\/1","type":"photo","sizes":{"small":{"w":609,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1075,"h":1200,"resize":"fit"},"large":{"w":1834,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507641268976816128,"id_str":"1507641268976816128","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw3vw4VEAAlVNz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw3vw4VEAAlVNz.jpg","url":"https:\/\/t.co\/6j3O2fAORN","display_url":"pic.twitter.com\/6j3O2fAORN","expanded_url":"https:\/\/twitter.com\/BadgercIops\/status\/1507641274509119489\/photo\/1","type":"photo","sizes":{"small":{"w":609,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1075,"h":1200,"resize":"fit"},"large":{"w":1834,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507446180363526147,"quoted_status_id_str":"1507446180363526147","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"703E00","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504984750083088391\/3iDsZbt-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504984750083088391\/3iDsZbt-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86237898\/1638889617","profile_link_color":"000000","profile_sidebar_border_color":"FFA012","profile_sidebar_fill_color":"A85C00","profile_text_color":"663500","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":220263968,"id_str":"220263968","name":"\u56de\u5230\u8fc7\u53bb","screen_name":"8i9i","location":"Guangdong","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":430,"listed_count":2,"created_at":"Sat - Nov 27 07:28:12 +0000 2010","favourites_count":44,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1265,"lang":null,"status":{"created_at":"Fri - Mar 25 06:17:07 +0000 2022","id":1507240139562655746,"id_str":"1507240139562655746","text":"\u6700\u7ec8\uff0c\u53ea\u8981\u8c03\u67e5\u7ed3\u679c\u4e0d\u7b26\u5408\u5404\u79cd\u7fa4\u4f53\u9884\u8bbe\uff0c\u9634\u8c0b\u8bba\u4f1a\u663e\u5f97\u66f4\u4f73\u5408\u7406 - https:\/\/t.co\/ItDdNBfOS7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507240082478186496,"id_str":"1507240082478186496","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrK3otXwAAFoYx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrK3otXwAAFoYx.jpg","url":"https:\/\/t.co\/ItDdNBfOS7","display_url":"pic.twitter.com\/ItDdNBfOS7","expanded_url":"https:\/\/twitter.com\/8i9i\/status\/1507240139562655746\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":562,"resize":"fit"},"large":{"w":959,"h":793,"resize":"fit"},"medium":{"w":959,"h":793,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507240082478186496,"id_str":"1507240082478186496","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrK3otXwAAFoYx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrK3otXwAAFoYx.jpg","url":"https:\/\/t.co\/ItDdNBfOS7","display_url":"pic.twitter.com\/ItDdNBfOS7","expanded_url":"https:\/\/twitter.com\/8i9i\/status\/1507240139562655746\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":562,"resize":"fit"},"large":{"w":959,"h":793,"resize":"fit"},"medium":{"w":959,"h":793,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553598759\/avatar_normal.JPEG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553598759\/avatar_normal.JPEG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220263968\/1545157610","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1105343531411955712,"id_str":"1105343531411955712","name":"Alec - Palm","screen_name":"alec_palm","location":"Oregon, USA","description":"former - oregon youth governor | @uoregon","url":"https:\/\/t.co\/ix5B37gRm3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ix5B37gRm3","expanded_url":"http:\/\/alecpalm.com","display_url":"alecpalm.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":156,"friends_count":1871,"listed_count":7,"created_at":"Tue - Mar 12 05:43:28 +0000 2019","favourites_count":14886,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1887,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503798158022696960\/Ac5es7Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503798158022696960\/Ac5es7Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105343531411955712\/1643181778","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2655766861,"id_str":"2655766861","name":"Xiaotian - Zhang","screen_name":"thexiaotianz","location":"New York, NY","description":"senior - supervising producer of news and specials @wsj | formerly @abc news digital - | reading, not tweeting | tips: xiaotian.zhang@wsj.com","url":"https:\/\/t.co\/rtOag78I5t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rtOag78I5t","expanded_url":"https:\/\/www.wsj.com\/news\/author\/xiaotian-zhang","display_url":"wsj.com\/news\/author\/xi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":513,"listed_count":4,"created_at":"Fri - Jul 18 05:04:14 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639465855953321984\/A0zd4jFp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639465855953321984\/A0zd4jFp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2655766861\/1632794361","profile_link_color":"2E5EAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1149731796,"id_str":"1149731796","name":"Samantha - Dancy","screen_name":"SamMegDancy","location":"Northern Virginia","description":"SHRM-CP - | Typical Millennial | Cyclist | #HR #HRTribe | The sass is strong with this - one","url":"https:\/\/t.co\/Ed9GxRHZN8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ed9GxRHZN8","expanded_url":"http:\/\/www.linkedin.com\/in\/samanthadancyva","display_url":"linkedin.com\/in\/samanthadan\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1269,"friends_count":778,"listed_count":36,"created_at":"Tue - Feb 05 02:52:12 +0000 2013","favourites_count":3090,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2082,"lang":null,"status":{"created_at":"Sat - Mar 05 22:02:21 +0000 2022","id":1500230259605651463,"id_str":"1500230259605651463","text":"RT - @PhilosophyDose_: \"A mistake repeated more than once is a decision\"\n\n- - Paulo Coelho","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhilosophyDose_","name":"Daily - Dose of Philosophy","id":1434674691264942083,"id_str":"1434674691264942083","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 08:32:59 +0000 2022","id":1500026574497800197,"id_str":"1500026574497800197","text":"\"A - mistake repeated more than once is a decision\"\n\n- Paulo Coelho","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4198,"favorite_count":18606,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4198,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262726648681631745\/hmLGSaYy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262726648681631745\/hmLGSaYy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149731796\/1569433318","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":254917971,"id_str":"254917971","name":"Pepe - Garc\u00eda","screen_name":"GoseconG","location":"Alcal\u00e1 de Guada\u00edra, - Espa\u00f1a","description":"Heterodoxo y pol\u00edmata. Docto, lo que es docto, - no mucho. @edperiodismo\nEnglish - Fluent.\nSpanish - Mother Tonge.\nAndalusian - - Mother Tonge.\nPortu\u00f1ol - Some.","url":"https:\/\/t.co\/p2CtTFDdbH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p2CtTFDdbH","expanded_url":"https:\/\/medium.com\/@PPGarcia","display_url":"medium.com\/@PPGarcia","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":1036,"listed_count":5,"created_at":"Sun - Feb 20 08:15:37 +0000 2011","favourites_count":4886,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15715,"lang":null,"status":{"created_at":"Thu - Mar 24 21:49:18 +0000 2022","id":1507112345369296904,"id_str":"1507112345369296904","text":"RT - @olaizo: Enc\u00edas https:\/\/t.co\/I1wGpAKthM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"olaizo","name":"Beatriz - Olaizola","id":49368920,"id_str":"49368920","indices":[3,10]}],"urls":[{"url":"https:\/\/t.co\/I1wGpAKthM","expanded_url":"https:\/\/link.medium.com\/GyX0jgmoFob","display_url":"link.medium.com\/GyX0jgmoFob","indices":[19,42]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:22:44 +0000 2022","id":1507090558644281344,"id_str":"1507090558644281344","text":"Enc\u00edas - https:\/\/t.co\/I1wGpAKthM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I1wGpAKthM","expanded_url":"https:\/\/link.medium.com\/GyX0jgmoFob","display_url":"link.medium.com\/GyX0jgmoFob","indices":[7,30]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1093220061651877888\/NFWDG0vS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1093220061651877888\/NFWDG0vS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254917971\/1550856873","profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":405940933,"id_str":"405940933","name":"Jesse - Bartsoff","screen_name":"JesseBartsoff","location":"Ottawa, Ontario","description":"comms. - liberal. @mcgillu alum. british columbian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":617,"friends_count":1020,"listed_count":8,"created_at":"Sun - Nov 06 01:16:01 +0000 2011","favourites_count":11652,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2205,"lang":null,"status":{"created_at":"Tue - Mar 01 02:41:18 +0000 2022","id":1498488519886442498,"id_str":"1498488519886442498","text":"RT - @cafreeland: The people of Ukraine are today showing the incredible strength - of a free people fighting for their democracy.\n\nThis is one\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cafreeland","name":"Chrystia - Freeland","id":203132018,"id_str":"203132018","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 02:06:33 +0000 2022","id":1498479774221717507,"id_str":"1498479774221717507","text":"The - people of Ukraine are today showing the incredible strength of a free people - fighting for their democracy.\n\nThi\u2026 https:\/\/t.co\/mAIZn7nUV1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mAIZn7nUV1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498479774221717507","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1132,"favorite_count":5523,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1132,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1093364875257098240\/r45kq6PO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1093364875257098240\/r45kq6PO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405940933\/1466603636","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2912968913,"id_str":"2912968913","name":"Luca - D''Andrea","screen_name":"lucaworf","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":330,"friends_count":902,"listed_count":0,"created_at":"Tue - Dec 09 16:51:12 +0000 2014","favourites_count":4923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1563,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247223140993949696\/FK0kiUR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247223140993949696\/FK0kiUR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2912968913\/1511611032","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":974322697038569473,"id_str":"974322697038569473","name":"Austin - Martinez","screen_name":"austinmxrtinez","location":"ATX \/ 210 ","description":"she\/her - | editorial fellow @linkedin | proud UT Latina | founder + co-eic @txfamilia - | prev. audience @latimes | @stephencurry30 stan","url":"https:\/\/t.co\/keqHb2RWbb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/keqHb2RWbb","expanded_url":"https:\/\/www.linkedin.com\/in\/austinmxrtinez","display_url":"linkedin.com\/in\/austinmxrti\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3228,"friends_count":2673,"listed_count":0,"created_at":"Thu - Mar 15 16:33:27 +0000 2018","favourites_count":36731,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":6230,"lang":null,"status":{"created_at":"Fri - Mar 25 13:50:36 +0000 2022","id":1507354263026085903,"id_str":"1507354263026085903","text":"@LauraG_ECE - @SAISD @rhodes4rocks Love you, t\u00eda \ud83d\udc9e\ud83d\udc9e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LauraG_ECE","name":"Laura - Gonz\u00e1lez","id":1239765238242848769,"id_str":"1239765238242848769","indices":[0,11]},{"screen_name":"SAISD","name":"SAISD","id":50641709,"id_str":"50641709","indices":[12,18]},{"screen_name":"rhodes4rocks","name":"Debbie - Martinez","id":722156708793987073,"id_str":"722156708793987073","indices":[19,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502002359412699143,"in_reply_to_status_id_str":"1502002359412699143","in_reply_to_user_id":1239765238242848769,"in_reply_to_user_id_str":"1239765238242848769","in_reply_to_screen_name":"LauraG_ECE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1365143482688495620\/oxFNebIp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1365143482688495620\/oxFNebIp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/974322697038569473\/1633657124","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1044492275005489152,"id_str":"1044492275005489152","name":"Art\u016brs - Pud\u0101ns","screen_name":"ArtursPudans","location":"Riga, Latvia","description":"Youth - political and environmental activist | MSc in Economics | Masters student - of Philosophy |","url":"https:\/\/t.co\/zbgX0eYhA3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zbgX0eYhA3","expanded_url":"http:\/\/instagram.com\/arturspudans","display_url":"instagram.com\/arturspudans","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":696,"friends_count":803,"listed_count":5,"created_at":"Tue - Sep 25 07:42:18 +0000 2018","favourites_count":15684,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2211,"lang":null,"status":{"created_at":"Fri - Mar 25 15:34:41 +0000 2022","id":1507380456425201683,"id_str":"1507380456425201683","text":"RT - @MStakis: Atbildes uz \u017eurn\u0101listu jaut\u0101jumiem. \u0160eit pilns - preses br\u012bfinga ieraksts. \nhttps:\/\/t.co\/EclYUmC7FL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MStakis","name":"M\u0101rti\u0146\u0161 - Sta\u0137is","id":75225631,"id_str":"75225631","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/EclYUmC7FL","expanded_url":"https:\/\/xtv.lv\/rigatv24\/video\/oQGEExxyGX8-25_03_2022_rigas_mera_martina_staka_preses_brifings","display_url":"xtv.lv\/rigatv24\/video\u2026","indices":[87,110]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:28:07 +0000 2022","id":1507348605992116225,"id_str":"1507348605992116225","text":"Atbildes - uz \u017eurn\u0101listu jaut\u0101jumiem. \u0160eit pilns preses br\u012bfinga - ieraksts. \nhttps:\/\/t.co\/EclYUmC7FL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EclYUmC7FL","expanded_url":"https:\/\/xtv.lv\/rigatv24\/video\/oQGEExxyGX8-25_03_2022_rigas_mera_martina_staka_preses_brifings","display_url":"xtv.lv\/rigatv24\/video\u2026","indices":[74,97]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":45,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459713627049676800\/T83sZDdY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459713627049676800\/T83sZDdY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1044492275005489152\/1598875323","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":881950848636551169,"id_str":"881950848636551169","name":"Isabela","screen_name":"IsabelaOcre","location":"Texas, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":103,"listed_count":0,"created_at":"Mon - Jul 03 19:00:43 +0000 2017","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Thu - Jan 03 21:34:21 +0000 2019","id":1080940451564343296,"id_str":"1080940451564343296","text":"@CesarAOcampoR - @Colciencias Je suis d\u2019accord","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Colciencias","name":"Tobillo - Gomez","id":1167483704937254912,"id_str":"1167483704937254912","indices":[15,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927379422981828608\/3MbQPk-A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927379422981828608\/3MbQPk-A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881950848636551169\/1509939462","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174571553230655488,"id_str":"1174571553230655488","name":"Chlo\u00e9 - Sundermeier","screen_name":"chlosundermeier","location":"Lille, France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":74,"listed_count":0,"created_at":"Thu - Sep 19 06:31:04 +0000 2019","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Feb 24 14:45:50 +0000 2022","id":1496858914402484226,"id_str":"1496858914402484226","text":"RT - @McFaul: Stay strong @ZelenskyyUa.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"McFaul","name":"Michael - McFaul","id":454099919,"id_str":"454099919","indices":[3,10]},{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[24,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 24 04:27:30 +0000 2022","id":1496703307204595713,"id_str":"1496703307204595713","text":"Stay - strong @ZelenskyyUa.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[12,24]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1842,"favorite_count":14647,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1842,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446430150166564882\/zg80jJhl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446430150166564882\/zg80jJhl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1174571553230655488\/1633690747","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1029175969075015680,"id_str":"1029175969075015680","name":"Conservative - Bay","screen_name":"cons_bay","location":"","description":"There is God. Tru\u271eh - & Justice = (real) Freedom. Democracy is tyranny in the end\u2026 Once you - understand this, everything else will begin to make more sense.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":1141,"listed_count":5,"created_at":"Tue - Aug 14 01:20:46 +0000 2018","favourites_count":2844,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1711,"lang":null,"status":{"created_at":"Sat - Mar 26 06:50:04 +0000 2022","id":1507610820493996033,"id_str":"1507610820493996033","text":"@juliaioffe - \u0425\u0432\u0430\u0442\u0438\u0442 \u0431\u043e\u0433\u043e\u0431\u043e\u0440\u0447\u0435\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"juliaioffe","name":"Julia - Ioffe","id":71048726,"id_str":"71048726","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507458663996293124,"in_reply_to_status_id_str":"1507458663996293124","in_reply_to_user_id":71048726,"in_reply_to_user_id_str":"71048726","in_reply_to_screen_name":"juliaioffe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ru"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501061752707960838\/szUc_6cT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501061752707960838\/szUc_6cT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029175969075015680\/1646731231","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1445112737453858819,"id_str":"1445112737453858819","name":"\u694a\u5c0f\u6db5","screen_name":"g_merq","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":11,"listed_count":0,"created_at":"Mon - Oct 04 19:45:10 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445112839828508676\/z4oUOjDE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445112839828508676\/z4oUOjDE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1421872271510196225,"id_str":"1421872271510196225","name":"i''m - going to hell on a full scholarship","screen_name":"lisap331","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":1306,"listed_count":0,"created_at":"Sun - Aug 01 16:36:13 +0000 2021","favourites_count":13830,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21746,"lang":null,"status":{"created_at":"Sat - Mar 26 04:17:03 +0000 2022","id":1507572311725154304,"id_str":"1507572311725154304","text":"RT - @RoobNBCS: #15 seeds have won a total of 14 NCAA Tournament games since the - tournament expanded to 64 teams in 1985.\n\nTHREE of those 14\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoobNBCS","name":"Reuben - Frank","id":200599938,"id_str":"200599938","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:31:35 +0000 2022","id":1507530671870427146,"id_str":"1507530671870427146","text":"#15 - seeds have won a total of 14 NCAA Tournament games since the tournament expanded - to 64 teams in 1985.\n\nTHREE of\u2026 https:\/\/t.co\/S4h1WeOCQm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S4h1WeOCQm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507530671870427146","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":91,"favorite_count":667,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":91,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471571694842175497\/tTFSqPGk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471571694842175497\/tTFSqPGk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1421872271510196225\/1632920646","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":272088326,"id_str":"272088326","name":"Obviously, - I am not Sam Neill \ud83e\udd96\ud83c\uddea\ud83c\uddfa","screen_name":"Cantaloupe022","location":"New - York, USA","description":"What else?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":1058,"listed_count":2,"created_at":"Fri - Mar 25 20:17:39 +0000 2011","favourites_count":5665,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5364,"lang":null,"status":{"created_at":"Fri - Mar 25 14:38:33 +0000 2022","id":1507366329803812896,"id_str":"1507366329803812896","text":"Que - bien est\u00e1 llevando el programa @BebeCaster #ESPM1462","truncated":false,"entities":{"hashtags":[{"text":"ESPM1462","indices":[47,56]}],"symbols":[],"user_mentions":[{"screen_name":"BebeCaster","name":"Beb\u00e9 - \"Beb\u00e9 ''Bebe Caster'' Caster\" Caster","id":397238798,"id_str":"397238798","indices":[35,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1C130E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1438089965276176391\/5fwTdQpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1438089965276176391\/5fwTdQpx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272088326\/1580891604","profile_link_color":"229EA7","profile_sidebar_border_color":"9DB98C","profile_sidebar_fill_color":"140E0A","profile_text_color":"838978","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":66586356,"id_str":"66586356","name":"Abe - Stauber","screen_name":"abe_stauber","location":"Nashville, TN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":388,"friends_count":4389,"listed_count":0,"created_at":"Tue - Aug 18 03:43:48 +0000 2009","favourites_count":4761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4457,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445220293400801283\/k4nL26AE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445220293400801283\/k4nL26AE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66586356\/1633490867","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1387083779341234178,"id_str":"1387083779341234178","name":"Simon - Burr","screen_name":"SimonBurr19","location":"Monrovia, CA","description":"I - follow where my mind goes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1895,"listed_count":3,"created_at":"Tue - Apr 27 16:39:16 +0000 2021","favourites_count":479,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4546,"lang":null,"status":{"created_at":"Mon - Jan 10 15:39:56 +0000 2022","id":1480565074939068418,"id_str":"1480565074939068418","text":"@allthingswolfs - Love Arby''s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1479277982627864576,"in_reply_to_status_id_str":"1479277982627864576","in_reply_to_user_id":1344890432858292229,"in_reply_to_user_id_str":"1344890432858292229","in_reply_to_screen_name":"AIIThingsWolves","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480405070189498371\/AaFIZYMP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480405070189498371\/AaFIZYMP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1387083779341234178\/1641939030","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258769510825373697,"id_str":"1258769510825373697","name":"Beachgal","screen_name":"beach20gal","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":13,"listed_count":0,"created_at":"Fri - May 08 14:45:01 +0000 2020","favourites_count":125186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505326004788674567\/cbyu2v61_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505326004788674567\/cbyu2v61_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23350577,"id_str":"23350577","name":"Radio - F\u0646ll Gospel \ud83d\udc89\ud83d\ude37","screen_name":"FullGospel","location":"Sweden, - Europe.","description":"Radio Full Gospel is a non-profit association that - broadcast radio. = Radio Full Gospel \u00e4r en ekumenisk ideell f\u00f6rening - som s\u00e4nder radio i Sverige.","url":"https:\/\/t.co\/01sVVeJiN8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/01sVVeJiN8","expanded_url":"http:\/\/RadioFullGospel.se","display_url":"RadioFullGospel.se","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5250,"friends_count":5769,"listed_count":256,"created_at":"Sun - Mar 08 20:33:01 +0000 2009","favourites_count":129206,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":195521,"lang":null,"status":{"created_at":"Sat - Mar 26 03:46:32 +0000 2022","id":1507564635356119044,"id_str":"1507564635356119044","text":"\u201c\u2018Later - the others also came. \u201cLord, Lord,\u201d they said, \u201copen the door - for us!\u201d\n\u2018But he replied, \u201cTruly I tell you,\u2026 https:\/\/t.co\/FrpNbldbsY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FrpNbldbsY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507564635356119044","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8F1917","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/90552173\/Radio_Full_Gospel-logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/90552173\/Radio_Full_Gospel-logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23350577\/1411871417","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1435178375593676801,"id_str":"1435178375593676801","name":"Certified - Flubber Boy","screen_name":"domeandgloam","location":"?\u00bf","description":"pfp - by Mads Horwath","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":1325,"listed_count":0,"created_at":"Tue - Sep 07 09:50:03 +0000 2021","favourites_count":1033,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":805,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502891746916651011\/9QGSfhNr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502891746916651011\/9QGSfhNr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1435178375593676801\/1647152064","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":958229882013589504,"id_str":"958229882013589504","name":"\u2728\uc81c\ube44\uaf43\ud55c\uc1a1\uc774\ud83d\udc9c\u2728","screen_name":"yejimog","location":"","description":"\ud3ec\ud3ec\ub85c - \uc6a9\uc11c \uc808\ub300 \uc0ac\ub791\ud574 \uc544\uc774\uc720\ud83d\udc9c\ud83d\udc9c\ud83d\udc9c\ud83d\udc9c\ud83d\udde8\ud83d\udc9c\ud83c\udf0a\ud83d\udcab","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":327,"listed_count":0,"created_at":"Tue - Jan 30 06:46:21 +0000 2018","favourites_count":4653,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2639,"lang":null,"status":{"created_at":"Thu - Sep 23 16:56:36 +0000 2021","id":1441084095052718083,"id_str":"1441084095052718083","text":"RT - @nytpolitics: The E.P.A. is expected to issue a final regulation on Thursday - morning that will slash the use of hydrofluorocarbons, wide\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytpolitics","name":"NYT - Politics","id":14434063,"id_str":"14434063","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 23 16:56:05 +0000 2021","id":1441083963930406917,"id_str":"1441083963930406917","text":"The - E.P.A. is expected to issue a final regulation on Thursday morning that will - slash the use of hydrofluorocarbon\u2026 https:\/\/t.co\/VOh8eKMgF8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VOh8eKMgF8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1441083963930406917","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327823636074356736\/tLQ5RL9A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327823636074356736\/tLQ5RL9A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/958229882013589504\/1589025451","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":912293162,"id_str":"912293162","name":"Mayu - Godoy","screen_name":"mayugodoy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":363,"listed_count":0,"created_at":"Mon - Oct 29 12:03:37 +0000 2012","favourites_count":1512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1316,"lang":null,"status":{"created_at":"Sat - Mar 26 00:31:57 +0000 2022","id":1507515665556594695,"id_str":"1507515665556594695","text":"@PalmerReport - \ud83d\udc4d\ud83d\ude09\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PalmerReport","name":"Palmer - Report","id":15115280,"id_str":"15115280","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506822364465713153,"in_reply_to_status_id_str":"1506822364465713153","in_reply_to_user_id":15115280,"in_reply_to_user_id_str":"15115280","in_reply_to_screen_name":"PalmerReport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917317362361057280\/n00Du8h9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917317362361057280\/n00Du8h9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":956554077034504192,"id_str":"956554077034504192","name":"SConnor","screen_name":"SConnor15","location":"","description":"HUN - undergrad, MidEast Area Studies @UCL.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":1128,"listed_count":0,"created_at":"Thu - Jan 25 15:47:18 +0000 2018","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176817449494306817\/BSzywEQP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176817449494306817\/BSzywEQP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/956554077034504192\/1566808260","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1428383958643924998,"id_str":"1428383958643924998","name":"Buddah - of Death","screen_name":"buddahofdeath","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":30,"listed_count":0,"created_at":"Thu - Aug 19 15:50:58 +0000 2021","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Sep 09 21:01:47 +0000 2021","id":1436072365201530887,"id_str":"1436072365201530887","text":"@Popehat - @PETEKEELEY @jbarro Yikes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Popehat","name":"NOHat","id":18839937,"id_str":"18839937","indices":[0,8]},{"screen_name":"PETEKEELEY","name":"Google - \u201c1999 Moscow Apartment Bombings\u201d","id":54619500,"id_str":"54619500","indices":[9,20]},{"screen_name":"jbarro","name":"Josh - Barro","id":16244449,"id_str":"16244449","indices":[21,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1436072283483754509,"in_reply_to_status_id_str":"1436072283483754509","in_reply_to_user_id":18839937,"in_reply_to_user_id_str":"18839937","in_reply_to_screen_name":"Popehat","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428384117591322646\/TANq07JW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428384117591322646\/TANq07JW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1356996817548963842,"id_str":"1356996817548963842","name":"Aaron - Scrivener Haunted Winged Wolf Tao Wesens","screen_name":"AaronWesens","location":"0201 - East W HWY APM 409 Silver","description":"I''m Gay to Only Non-Human-Beings-Species-Persons - But Asexual to Only Terrans Humans Normies","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":3120,"listed_count":0,"created_at":"Wed - Feb 03 16:04:00 +0000 2021","favourites_count":6354,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6308,"lang":null,"status":{"created_at":"Tue - Mar 22 20:26:12 +0000 2022","id":1506366654942437378,"id_str":"1506366654942437378","text":"RT - @DarkNaigArt: The night it''s going to be long \ud83d\udc40 https:\/\/t.co\/niJb8l6gjR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DarkNaigArt","name":"Dark - Naig","id":1028799985754750977,"id_str":"1028799985754750977","indices":[3,15]}],"urls":[],"media":[{"id":1505719930351726597,"id_str":"1505719930351726597","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","url":"https:\/\/t.co\/niJb8l6gjR","display_url":"pic.twitter.com\/niJb8l6gjR","expanded_url":"https:\/\/twitter.com\/DarkNaigArt\/status\/1505719960626249731\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":1200,"resize":"fit"},"large":{"w":1229,"h":2048,"resize":"fit"},"small":{"w":408,"h":680,"resize":"fit"}},"source_status_id":1505719960626249731,"source_status_id_str":"1505719960626249731","source_user_id":1028799985754750977,"source_user_id_str":"1028799985754750977"}]},"extended_entities":{"media":[{"id":1505719930351726597,"id_str":"1505719930351726597","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","url":"https:\/\/t.co\/niJb8l6gjR","display_url":"pic.twitter.com\/niJb8l6gjR","expanded_url":"https:\/\/twitter.com\/DarkNaigArt\/status\/1505719960626249731\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":1200,"resize":"fit"},"large":{"w":1229,"h":2048,"resize":"fit"},"small":{"w":408,"h":680,"resize":"fit"}},"source_status_id":1505719960626249731,"source_status_id_str":"1505719960626249731","source_user_id":1028799985754750977,"source_user_id_str":"1028799985754750977"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 01:36:28 +0000 2022","id":1505719960626249731,"id_str":"1505719960626249731","text":"The - night it''s going to be long \ud83d\udc40 https:\/\/t.co\/niJb8l6gjR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505719930351726597,"id_str":"1505719930351726597","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","url":"https:\/\/t.co\/niJb8l6gjR","display_url":"pic.twitter.com\/niJb8l6gjR","expanded_url":"https:\/\/twitter.com\/DarkNaigArt\/status\/1505719960626249731\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":1200,"resize":"fit"},"large":{"w":1229,"h":2048,"resize":"fit"},"small":{"w":408,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505719930351726597,"id_str":"1505719930351726597","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOVkTIvXMAUcCnY.jpg","url":"https:\/\/t.co\/niJb8l6gjR","display_url":"pic.twitter.com\/niJb8l6gjR","expanded_url":"https:\/\/twitter.com\/DarkNaigArt\/status\/1505719960626249731\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":1200,"resize":"fit"},"large":{"w":1229,"h":2048,"resize":"fit"},"small":{"w":408,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":403,"favorite_count":3495,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":403,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357003913476648960\/yPTPFJLy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357003913476648960\/yPTPFJLy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1356996817548963842\/1612369919","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1077666696134082562,"id_str":"1077666696134082562","name":"Trison - Braithwaite","screen_name":"Trison_B","location":"","description":"comms @ - new deal strategies; I make videos sometimes","url":"https:\/\/t.co\/FQkXcwoCVW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FQkXcwoCVW","expanded_url":"https:\/\/youtu.be\/k63Aektb6eI","display_url":"youtu.be\/k63Aektb6eI","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":401,"friends_count":799,"listed_count":0,"created_at":"Tue - Dec 25 20:45:37 +0000 2018","favourites_count":43495,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7122,"lang":null,"status":{"created_at":"Sun - Mar 20 03:35:04 +0000 2022","id":1505387421994782722,"id_str":"1505387421994782722","text":"RT - @ClimateBen: BREAKING: simultaneous freakish heat in the Arctic and Antarctic - described as ''impossible'' and ''unthinkable'' by scientists\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClimateBen","name":"Ben - See","id":956250134786002944,"id_str":"956250134786002944","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 13:30:52 +0000 2022","id":1505174972121165833,"id_str":"1505174972121165833","text":"BREAKING: - simultaneous freakish heat in the Arctic and Antarctic described as ''impossible'' - and ''unthinkable'' by sci\u2026 https:\/\/t.co\/2pcTqdJtE7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2pcTqdJtE7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505174972121165833","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24459,"favorite_count":60291,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24459,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077669971939991553\/4PxHGJ7l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077669971939991553\/4PxHGJ7l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1077666696134082562\/1585932595","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":862688978813812737,"id_str":"862688978813812737","name":"Elena - Falomo","screen_name":"elena_flm","location":"London, England","description":"Student - @imperialcollege and @RCA, space cats & digital culture","url":"https:\/\/t.co\/Bk4QE1H2Zq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bk4QE1H2Zq","expanded_url":"http:\/\/elenafalomo.com","display_url":"elenafalomo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":252,"listed_count":0,"created_at":"Thu - May 11 15:20:55 +0000 2017","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Thu - Aug 05 22:00:16 +0000 2021","id":1423403507856650240,"id_str":"1423403507856650240","text":"@irinimalliaraki - @literElly @NicNoctem Oh wow... Hahahaha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"irinimalliaraki","name":"Eirini - Malliaraki","id":947834276959215618,"id_str":"947834276959215618","indices":[0,16]},{"screen_name":"literElly","name":"Elly - Belle \ud83d\udd2e (famously not a woman)","id":3288705094,"id_str":"3288705094","indices":[17,27]},{"screen_name":"NicNoctem","name":"me","id":1166908211095621632,"id_str":"1166908211095621632","indices":[28,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1423394228466552833,"in_reply_to_status_id_str":"1423394228466552833","in_reply_to_user_id":947834276959215618,"in_reply_to_user_id_str":"947834276959215618","in_reply_to_screen_name":"irinimalliaraki","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976043297818009600\/V6JvUw-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976043297818009600\/V6JvUw-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862688978813812737\/1521541849","profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176181636838371335,"id_str":"1176181636838371335","name":"Lorenzo - Farrugio","screen_name":"ghinodatacco","location":"","description":"Congiura - dei camici bianchi @unicatt\nCollegio di merito Lamaro - Pozzani @cavalieridellavoro\nAlfiere - del Lavoro\nFellow @thinktankagenda","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":1726,"listed_count":0,"created_at":"Mon - Sep 23 17:09:00 +0000 2019","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Wed - Nov 10 13:13:34 +0000 2021","id":1458422584085725185,"id_str":"1458422584085725185","text":"In - un tempo attraversato da sovranismi, reshoring e minilateralismo, in cui la - globalizzazione pare si faccia slowb\u2026 https:\/\/t.co\/6ODym5GATq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6ODym5GATq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1458422584085725185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1458401030106877956,"quoted_status_id_str":"1458401030106877956","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390437228162306051\/RNN68bbr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390437228162306051\/RNN68bbr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176181636838371335\/1569259473","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":931460725784109057,"id_str":"931460725784109057","name":"Iamgc","screen_name":"Iamgcok","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":661,"listed_count":0,"created_at":"Fri - Nov 17 09:55:17 +0000 2017","favourites_count":813,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - Mar 23 15:56:52 +0000 2022","id":1506661265279754246,"id_str":"1506661265279754246","text":"RT - @mubiitalia: PETITE MAMAN \u00e8 sempre disponibile su MUBI, e per voi abbiamo - 10 poster autografati da C\u00e9line Sciamma! Basta seguirci e retw\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mubiitalia","name":"MUBI - Italia","id":363124704,"id_str":"363124704","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 14:09:57 +0000 2022","id":1506634359515799565,"id_str":"1506634359515799565","text":"PETITE - MAMAN \u00e8 sempre disponibile su MUBI, e per voi abbiamo 10 poster autografati - da C\u00e9line Sciamma! Basta seguirc\u2026 https:\/\/t.co\/noSfs1obE9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/noSfs1obE9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506634359515799565","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":274,"favorite_count":231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":274,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931470668197187584\/KWXKmSMp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931470668197187584\/KWXKmSMp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931460725784109057\/1510914999","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083073091327143942,"id_str":"1083073091327143942","name":"LolloBrax","screen_name":"BraxLollo","location":"Italia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":1756,"listed_count":0,"created_at":"Wed - Jan 09 18:48:42 +0000 2019","favourites_count":44909,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9767,"lang":null,"status":{"created_at":"Sat - Mar 26 10:02:53 +0000 2022","id":1507659343696736256,"id_str":"1507659343696736256","text":"RT - @EnricoLetta: Da quindici anni non \u00e8 pi\u00f9 con noi. Una mancanza che - pesa, oggi come non mai. Per le sue idee, sempre due passi oltre l\u2019or\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EnricoLetta","name":"Enrico - Letta","id":419622371,"id_str":"419622371","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:53:56 +0000 2022","id":1507641991261212679,"id_str":"1507641991261212679","text":"Da - quindici anni non \u00e8 pi\u00f9 con noi. Una mancanza che pesa, oggi come - non mai. Per le sue idee, sempre due passi olt\u2026 https:\/\/t.co\/wbVdAFxt2C","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wbVdAFxt2C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507641991261212679","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":127,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218929846618939393\/qANAppCq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218929846618939393\/qANAppCq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083073091327143942\/1579450498","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":386059687,"id_str":"386059687","name":"\u592a\u9633\u9ad8\u9ad8\u6302\u8d77","screen_name":"soul11201","location":"beijng","description":"","url":"https:\/\/t.co\/5begXVOG6P","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5begXVOG6P","expanded_url":"http:\/\/blog.soul11201.com","display_url":"blog.soul11201.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":1205,"listed_count":0,"created_at":"Thu - Oct 06 16:07:27 +0000 2011","favourites_count":601,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":299,"lang":null,"status":{"created_at":"Sat - Jan 22 07:16:32 +0000 2022","id":1484787047739326467,"id_str":"1484787047739326467","text":"RT - @hu_lalalalala: 1920\u5e74\u4ee3\uff0c\u6570\u767e\u540d\u5728\u949f\u8868\u5382\u5de5\u4f5c\u7684\u5e74\u8f7b\u5973\u6027\u63a5\u89e6\u4e86\u5927\u91cf\u7684\u956d\uff0c\u4ee5\u81f3\u4e8e\u5979\u4eec\u56de\u5bb6\u65f6\u5728\u9ed1\u6697\u4e2d\u90fd\u4f1a\u53d1\u5149\u3002\u7136\u540e\u5979\u4eec\u53d1\u73b0\uff0c\u66b4\u9732\u5728\u8fd9\u79cd\u73af\u5883\u4e0b\uff0c\u5bfc\u81f4\u4ed6\u4eec\u7684\u690e\u9aa8\u5012\u584c\uff0c\u4e0b\u5df4\u8131\u843d\uff0c\u5f00\u59cb\u4e0e\u764c\u75c7\u7684\u75db\u82e6\u6597\u4e89\uff0c\u76f4\u81f3\u5979\u4eec\u7684\u751f\u547d\u6162\u6162\u7ed3\u675f\u3002 - https:\/\/t.co\/IHRnNY\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hu_lalalalala","name":"\u51fa\u57c3\u53ca\u8bb0","id":48261647,"id_str":"48261647","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 21 15:48:36 +0000 2022","id":1484553524964827139,"id_str":"1484553524964827139","text":"1920\u5e74\u4ee3\uff0c\u6570\u767e\u540d\u5728\u949f\u8868\u5382\u5de5\u4f5c\u7684\u5e74\u8f7b\u5973\u6027\u63a5\u89e6\u4e86\u5927\u91cf\u7684\u956d\uff0c\u4ee5\u81f3\u4e8e\u5979\u4eec\u56de\u5bb6\u65f6\u5728\u9ed1\u6697\u4e2d\u90fd\u4f1a\u53d1\u5149\u3002\u7136\u540e\u5979\u4eec\u53d1\u73b0\uff0c\u66b4\u9732\u5728\u8fd9\u79cd\u73af\u5883\u4e0b\uff0c\u5bfc\u81f4\u4ed6\u4eec\u7684\u690e\u9aa8\u5012\u584c\uff0c\u4e0b\u5df4\u8131\u843d\uff0c\u5f00\u59cb\u4e0e\u764c\u75c7\u7684\u75db\u82e6\u6597\u4e89\uff0c\u76f4\u81f3\u5979\u4eec\u7684\u751f\u547d\u6162\u6162\u7ed3\u675f\u3002 - https:\/\/t.co\/IHRnNYsuUJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1484553249793675265,"id_str":"1484553249793675265","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FJoxULAakAEJeyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJoxULAakAEJeyE.jpg","url":"https:\/\/t.co\/IHRnNYsuUJ","display_url":"pic.twitter.com\/IHRnNYsuUJ","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1484553524964827139\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":704,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":508,"h":680,"resize":"fit"},"large":{"w":526,"h":704,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1484553249793675265,"id_str":"1484553249793675265","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FJoxULAakAEJeyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJoxULAakAEJeyE.jpg","url":"https:\/\/t.co\/IHRnNYsuUJ","display_url":"pic.twitter.com\/IHRnNYsuUJ","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1484553524964827139\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":704,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":508,"h":680,"resize":"fit"},"large":{"w":526,"h":704,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":144,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"is_quote_status":false,"retweet_count":41,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437449346606190593\/yvblg8jM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437449346606190593\/yvblg8jM_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1425473778222514179,"id_str":"1425473778222514179","name":"LP - Monitor","screen_name":"LpMonitor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Wed - Aug 11 15:06:58 +0000 2021","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":762044497,"id_str":"762044497","name":"Jake - Caccavaro","screen_name":"jCacc44","location":"Raleigh, NC","description":"Manager - of Political Engagement @NCNA | NC State alum \ud83d\udc3a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":879,"friends_count":344,"listed_count":7,"created_at":"Thu - Aug 16 18:11:12 +0000 2012","favourites_count":44888,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41537,"lang":null,"status":{"created_at":"Sat - Mar 26 09:14:00 +0000 2022","id":1507647042868453380,"id_str":"1507647042868453380","text":"@ClassicJpow - Teams are shooting about 3% better from 3 against them this year. If you subscribe - to the idea that 3-\u2026 https:\/\/t.co\/YD6TawMR63","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClassicJpow","name":"Jackie - Powell (she\/her)","id":2757538940,"id_str":"2757538940","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/YD6TawMR63","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507647042868453380","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507543992703066116,"in_reply_to_status_id_str":"1507543992703066116","in_reply_to_user_id":2757538940,"in_reply_to_user_id_str":"2757538940","in_reply_to_screen_name":"ClassicJpow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494884374893973510\/EvDF-OKk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494884374893973510\/EvDF-OKk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/762044497\/1642528612","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1664698009,"id_str":"1664698009","name":"Riley - \ud83c\udf80\ud83c\udf38\ud83c\uddf5\ud83c\udded\ud83c\uddfa\ud83c\udde6\ud83c\udde6\ud83c\uddeb\ud83c\uddf5\ud83c\uddf8\ud83c\udded\ud83c\uddf0\ud83c\uddf9\ud83c\uddfc","screen_name":"_CYchology","location":"Manila, - Philippines","description":"Catholic, Filipino, bisexual, progressive, YIMBY - (not always in that order). Likes a lot of stuff. | @UPDPsychSoc | he\/they - | 23 \ud83c\uddfb\ud83c\udde6\ud83c\uddf5\ud83c\udded\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udc97\ud83d\udc9c\ud83d\udc99\u2199\ufe0f\u2199\ufe0f\u2199\ufe0f","url":"https:\/\/t.co\/bNlz1gTyyV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bNlz1gTyyV","expanded_url":"http:\/\/instagram.com\/rileyfrommanila","display_url":"instagram.com\/rileyfrommanila","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1169,"friends_count":997,"listed_count":5,"created_at":"Mon - Aug 12 09:51:36 +0000 2013","favourites_count":785063,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":157022,"lang":null,"status":{"created_at":"Sat - Mar 26 08:51:14 +0000 2022","id":1507641313034137600,"id_str":"1507641313034137600","text":"RT - @ricci_richy: UPDATE: Remember the \u201cSinira ng mga Pinklawan ang mga halaman\u201d - incident after the PasigLaban? Looks like issue resolved na\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ricci_richy","name":"ricci - for (10) LENI (7) KIKO","id":990025288900751360,"id_str":"990025288900751360","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:06:48 +0000 2022","id":1507630133087465472,"id_str":"1507630133087465472","text":"UPDATE: - Remember the \u201cSinira ng mga Pinklawan ang mga halaman\u201d incident - after the PasigLaban? Looks like issue reso\u2026 https:\/\/t.co\/h6hSLw4FYC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h6hSLw4FYC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507630133087465472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505737832073408517,"quoted_status_id_str":"1505737832073408517","retweet_count":42,"favorite_count":139,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":true,"quoted_status_id":1505737832073408517,"quoted_status_id_str":"1505737832073408517","retweet_count":42,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491019853460688896\/Z-7M78PR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491019853460688896\/Z-7M78PR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1664698009\/1646102808","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21173843,"id_str":"21173843","name":"Jerad - Speigel - jerad.com","screen_name":"JTSpeigel","location":"Washington, D.C.","description":"anything - interesting","url":"https:\/\/t.co\/TIpwKjgAv8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TIpwKjgAv8","expanded_url":"http:\/\/jerad.com","display_url":"jerad.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":757,"friends_count":156,"listed_count":58,"created_at":"Wed - Feb 18 06:05:48 +0000 2009","favourites_count":13992,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":282,"lang":null,"status":{"created_at":"Sat - Mar 26 05:13:20 +0000 2022","id":1507586476414013441,"id_str":"1507586476414013441","text":"No - way\u2026 amazing for this word \n\nWordle 280 2\/6\n\n\ud83d\udfe8\u2b1b\ud83d\udfe8\u2b1b\u2b1b\n\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"878787","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496686789255479297\/WKrf6SXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496686789255479297\/WKrf6SXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21173843\/1646491212","profile_link_color":"000000","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":532065438,"id_str":"532065438","name":"Paschal - Madukwa","screen_name":"DrMadukwa","location":"Nairobi, Kenya","description":"\ud83d\udd0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":649,"friends_count":1505,"listed_count":0,"created_at":"Wed - Mar 21 06:37:29 +0000 2012","favourites_count":718,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":194,"lang":null,"status":{"created_at":"Fri - Mar 18 06:45:23 +0000 2022","id":1504710537761939467,"id_str":"1504710537761939467","text":"@GIVENALITY - @samwel_ek Ndio","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GIVENALITY","name":"Given - Edward","id":65606085,"id_str":"65606085","indices":[0,11]},{"screen_name":"samwel_ek","name":"Gxabhashe - wa Uzalo","id":1032340322205032450,"id_str":"1032340322205032450","indices":[12,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504710341778890757,"in_reply_to_status_id_str":"1504710341778890757","in_reply_to_user_id":65606085,"in_reply_to_user_id_str":"65606085","in_reply_to_screen_name":"GIVENALITY","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473377130717323266\/2qaIfD9j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473377130717323266\/2qaIfD9j_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1412446179414007812,"id_str":"1412446179414007812","name":"Harmeet - Singh","screen_name":"H_7412_J","location":"Pune","description":"News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":408,"listed_count":0,"created_at":"Tue - Jul 06 16:20:04 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1412446812208721921\/6RRLZAWx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1412446812208721921\/6RRLZAWx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1412446179414007812\/1625589592","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24529330,"id_str":"24529330","name":"Terrel - Champion \ud83d\udd4a","screen_name":"TerrelDreamer","location":"Washington, - D.C. | Home \ud83d\ude37","description":"Team @SenSanders + @SenateBudget - | #BlackLivesMatter | He\/Him | Views are my own.","url":"https:\/\/t.co\/blZV4EdiDi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/blZV4EdiDi","expanded_url":"http:\/\/giving.morehouse.edu","display_url":"giving.morehouse.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3347,"friends_count":3894,"listed_count":28,"created_at":"Sun - Mar 15 14:25:07 +0000 2009","favourites_count":86521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7184,"lang":null,"status":{"created_at":"Fri - Mar 25 23:11:25 +0000 2022","id":1507495398998478851,"id_str":"1507495398998478851","text":"RT - @BernieSanders: Jeff Bezos is worth about $180 billion. If he wants to go - to the moon or to Mars, hey, that''s his business \u2014 knock yours\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:25:00 +0000 2022","id":1507468616534528010,"id_str":"1507468616534528010","text":"Jeff - Bezos is worth about $180 billion. If he wants to go to the moon or to Mars, - hey, that''s his business \u2014 knock\u2026 https:\/\/t.co\/JM0bCOlzdk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JM0bCOlzdk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507468616534528010","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4066,"favorite_count":33922,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4066,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217499548651851777\/wSZC8VGM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217499548651851777\/wSZC8VGM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24529330\/1579109489","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1378153323795202052,"id_str":"1378153323795202052","name":"Spengler\u2019s - Specter","screen_name":"SpenglerSpecter","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":588,"listed_count":10,"created_at":"Sat - Apr 03 01:12:27 +0000 2021","favourites_count":4524,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1857,"lang":null,"status":{"created_at":"Thu - Feb 24 15:46:20 +0000 2022","id":1496874142829797376,"id_str":"1496874142829797376","text":"RT - @libsoftiktok: Bruh https:\/\/t.co\/g7oNzzy69z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"libsoftiktok","name":"Libs - of Tik Tok","id":1326229737551912960,"id_str":"1326229737551912960","indices":[3,16]}],"urls":[],"media":[{"id":1496742207604232192,"id_str":"1496742207604232192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","url":"https:\/\/t.co\/g7oNzzy69z","display_url":"pic.twitter.com\/g7oNzzy69z","expanded_url":"https:\/\/twitter.com\/libsoftiktok\/status\/1496742210485710851\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":861,"resize":"fit"},"small":{"w":680,"h":500,"resize":"fit"},"medium":{"w":1170,"h":861,"resize":"fit"}},"source_status_id":1496742210485710851,"source_status_id_str":"1496742210485710851","source_user_id":1326229737551912960,"source_user_id_str":"1326229737551912960"}]},"extended_entities":{"media":[{"id":1496742207604232192,"id_str":"1496742207604232192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","url":"https:\/\/t.co\/g7oNzzy69z","display_url":"pic.twitter.com\/g7oNzzy69z","expanded_url":"https:\/\/twitter.com\/libsoftiktok\/status\/1496742210485710851\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":861,"resize":"fit"},"small":{"w":680,"h":500,"resize":"fit"},"medium":{"w":1170,"h":861,"resize":"fit"}},"source_status_id":1496742210485710851,"source_status_id_str":"1496742210485710851","source_user_id":1326229737551912960,"source_user_id_str":"1326229737551912960"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 24 07:02:05 +0000 2022","id":1496742210485710851,"id_str":"1496742210485710851","text":"Bruh - https:\/\/t.co\/g7oNzzy69z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1496742207604232192,"id_str":"1496742207604232192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","url":"https:\/\/t.co\/g7oNzzy69z","display_url":"pic.twitter.com\/g7oNzzy69z","expanded_url":"https:\/\/twitter.com\/libsoftiktok\/status\/1496742210485710851\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":861,"resize":"fit"},"small":{"w":680,"h":500,"resize":"fit"},"medium":{"w":1170,"h":861,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1496742207604232192,"id_str":"1496742207604232192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMV_G5SVkAAhvF4.jpg","url":"https:\/\/t.co\/g7oNzzy69z","display_url":"pic.twitter.com\/g7oNzzy69z","expanded_url":"https:\/\/twitter.com\/libsoftiktok\/status\/1496742210485710851\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":861,"resize":"fit"},"small":{"w":680,"h":500,"resize":"fit"},"medium":{"w":1170,"h":861,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":922,"favorite_count":9697,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":922,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378203829896933377\/WXdv3-dO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378203829896933377\/WXdv3-dO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1378153323795202052\/1621978524","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2433556405,"id_str":"2433556405","name":"Emilie - LHote","screen_name":"EmLHote","location":"Washington, DC","description":"Sr - Experience Researcher @ Twitter. Forever passionate about framing and comms - for good. Yogi & tango dancer. Retweets & likes aren\u2019t endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":612,"listed_count":8,"created_at":"Tue - Apr 08 12:34:41 +0000 2014","favourites_count":1766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":235,"lang":null,"status":{"created_at":"Thu - Mar 17 23:05:55 +0000 2022","id":1504594911819190282,"id_str":"1504594911819190282","text":"RT - @SenWarren: Black students borrow 35% more money to attend college than non-Black - students. \n\nWith a stroke of a pen, President Biden ca\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenWarren","name":"Elizabeth - Warren","id":970207298,"id_str":"970207298","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 00:19:23 +0000 2022","id":1504251012667768837,"id_str":"1504251012667768837","text":"Black - students borrow 35% more money to attend college than non-Black students. - \n\nWith a stroke of a pen, President\u2026 https:\/\/t.co\/5xWmj40HLC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5xWmj40HLC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504251012667768837","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1304,"favorite_count":7966,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1304,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460712195197743105\/O7rQZye5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460712195197743105\/O7rQZye5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2433556405\/1625067468","profile_link_color":"6E1C0D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4279804465,"id_str":"4279804465","name":"Prabuddha - Sharma","screen_name":"prabuddha_sh","location":"Jaipur, Rajasthan","description":"Foodie - and music lover. Also a lawyer:D","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":85,"listed_count":0,"created_at":"Wed - Nov 18 14:46:18 +0000 2015","favourites_count":18032,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1586,"lang":null,"status":{"created_at":"Sat - Mar 26 06:28:30 +0000 2022","id":1507605395858067456,"id_str":"1507605395858067456","text":"Cherry - Cherry lady\ud83d\udc9c https:\/\/t.co\/bc9oQO98aR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507605153867702273,"id_str":"1507605153867702273","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507605153867702273\/pu\/img\/4eRCsFGllUINfHAy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507605153867702273\/pu\/img\/4eRCsFGllUINfHAy.jpg","url":"https:\/\/t.co\/bc9oQO98aR","display_url":"pic.twitter.com\/bc9oQO98aR","expanded_url":"https:\/\/twitter.com\/prabuddha_sh\/status\/1507605395858067456\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507605153867702273,"id_str":"1507605153867702273","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507605153867702273\/pu\/img\/4eRCsFGllUINfHAy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507605153867702273\/pu\/img\/4eRCsFGllUINfHAy.jpg","url":"https:\/\/t.co\/bc9oQO98aR","display_url":"pic.twitter.com\/bc9oQO98aR","expanded_url":"https:\/\/twitter.com\/prabuddha_sh\/status\/1507605395858067456\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":40402,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507605153867702273\/pu\/vid\/360x270\/eU2xNvHtpulkd0eI.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507605153867702273\/pu\/pl\/gS3a5fse3yfHhpY7.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507605153867702273\/pu\/vid\/640x480\/XIXZ29ALvq7Qm1Qh.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507605153867702273\/pu\/vid\/480x360\/iQNHtZnGlOl4dWnR.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1404039416323010570\/oq2GMHXO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1404039416323010570\/oq2GMHXO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4279804465\/1612345937","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26756955,"id_str":"26756955","name":"Luke - Broadwater\u2600\ufe0f","screen_name":"lukebroadwater","location":"Baltimore - & D.C. ","description":"@nytimes congressional correspondent. @baltimoresun - alum","url":"https:\/\/t.co\/jtcLn42qjZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jtcLn42qjZ","expanded_url":"https:\/\/muckrack.com\/lukebroadwater","display_url":"muckrack.com\/lukebroadwater","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":27742,"friends_count":6350,"listed_count":708,"created_at":"Thu - Mar 26 14:11:56 +0000 2009","favourites_count":14659,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":36214,"lang":null,"status":{"created_at":"Sat - Mar 26 01:26:23 +0000 2022","id":1507529362169647111,"id_str":"1507529362169647111","text":"Although - a debate has broken out inside the committee about summoning Ms. Thomas, the - panel at this point has no pl\u2026 https:\/\/t.co\/DmkGpvu0BP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DmkGpvu0BP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529362169647111","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":182,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253432726134222851\/jKgpUyxn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253432726134222851\/jKgpUyxn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26756955\/1600954993","profile_link_color":"ABB8C2","profile_sidebar_border_color":"1F5FDE","profile_sidebar_fill_color":"252429","profile_text_color":"FAF5FA","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1403655688442634248,"id_str":"1403655688442634248","name":"Samarveer","screen_name":"Samarve39896573","location":"","description":"Education - is most powerful weapon in the world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":76,"listed_count":0,"created_at":"Sat - Jun 12 10:09:52 +0000 2021","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sun - Aug 15 11:37:02 +0000 2021","id":1426870545811861506,"id_str":"1426870545811861506","text":"@DRMBRCWR - @WesternRly Nice","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DRMBRCWR","name":"DRM - Vadodara","id":3302273730,"id_str":"3302273730","indices":[0,9]},{"screen_name":"WesternRly","name":"Western - Railway","id":3188629370,"id_str":"3188629370","indices":[10,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1426575036761051141,"in_reply_to_status_id_str":"1426575036761051141","in_reply_to_user_id":3302273730,"in_reply_to_user_id_str":"3302273730","in_reply_to_screen_name":"DRMBRCWR","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403656248285822977\/mJM85JGj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403656248285822977\/mJM85JGj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1400429898154450944,"id_str":"1400429898154450944","name":"Zulfikar - Haidar","screen_name":"ZulfikarHaidar7","location":"","description":"employee","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":70,"listed_count":0,"created_at":"Thu - Jun 03 12:33:41 +0000 2021","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Tue - Jul 06 15:37:05 +0000 2021","id":1412435438665486338,"id_str":"1412435438665486338","text":"U.S. - Department of State | https:\/\/t.co\/su9WOSSaPN https:\/\/t.co\/TtQyEZxKwB - By seeing this Pdf chart how could i und\u2026 https:\/\/t.co\/x97qJ9E52u","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/su9WOSSaPN","expanded_url":"http:\/\/Travel.State.gov","display_url":"Travel.State.gov","indices":[27,50]},{"url":"https:\/\/t.co\/TtQyEZxKwB","expanded_url":"https:\/\/travel.state.gov\/content\/travel\/en\/legal\/visa-law0\/visa-statistics\/immigrant-visa-statistics\/monthly-immigrant-visa-issuances.html#.YOR4j-mw9Kw.twitter","display_url":"travel.state.gov\/content\/travel\u2026","indices":[51,74]},{"url":"https:\/\/t.co\/x97qJ9E52u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1412435438665486338","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400526366651555842\/nusDCwaM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400526366651555842\/nusDCwaM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1400429898154450944\/1622746484","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":771349721000574977,"id_str":"771349721000574977","name":"Veki","screen_name":"fiiijuuu","location":"\ud83c\udf69","description":"i - love games and palms \ud83e\udd8a","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":165,"friends_count":2523,"listed_count":0,"created_at":"Thu - Sep 01 14:11:19 +0000 2016","favourites_count":28060,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7515,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452755406103760904\/GoyNxWao_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452755406103760904\/GoyNxWao_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771349721000574977\/1556238545","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1398207478664466432,"id_str":"1398207478664466432","name":"Lit_Reading","screen_name":"lit_reading","location":"","description":"News - lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":195,"listed_count":1,"created_at":"Fri - May 28 09:47:24 +0000 2021","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398215063836758016\/o5kuumqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398215063836758016\/o5kuumqt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2841747221,"id_str":"2841747221","name":"Nicole - Merchut","screen_name":"nicolemerchut","location":"Madison, WI","description":"digital - director @sarahforwi prev: @authentic_hq @tammybaldwin @obamafoundation @hillaryclinton - @ofa. she\/her. \ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":"https:\/\/t.co\/XYYTAhA8uK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XYYTAhA8uK","expanded_url":"http:\/\/www.sarahforwisconsin.com","display_url":"sarahforwisconsin.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7467,"friends_count":1107,"listed_count":0,"created_at":"Thu - Oct 23 07:06:15 +0000 2014","favourites_count":23721,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5605,"lang":null,"status":{"created_at":"Mon - Mar 21 15:42:26 +0000 2022","id":1505932857851748352,"id_str":"1505932857851748352","text":"RT - @SarahforWI: For years, Democrats and Republicans have promised to lower prescription - drug costs\u2014but every time they get close, pharmace\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SarahforWI","name":"Sarah - Godlewski","id":4018919237,"id_str":"4018919237","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:41:30 +0000 2022","id":1505932620810661888,"id_str":"1505932620810661888","text":"For - years, Democrats and Republicans have promised to lower prescription drug - costs\u2014but every time they get close,\u2026 https:\/\/t.co\/svIoyF4J5U","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/svIoyF4J5U","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505932620810661888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":215,"favorite_count":649,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":215,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470243788895444996\/EycBMzSG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470243788895444996\/EycBMzSG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841747221\/1638069078","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241325469628354561,"id_str":"1241325469628354561","name":"Michael - Stefan","screen_name":"michael_stefan_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":225,"listed_count":0,"created_at":"Sat - Mar 21 11:28:02 +0000 2020","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241326066712686593\/AH_u8H_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241326066712686593\/AH_u8H_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241325469628354561\/1591390192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3420418114,"id_str":"3420418114","name":"Michael - Calabro","screen_name":"ItStinksCalabro","location":"Los Angeles, CA","description":"Executive - Producer @attn","url":"https:\/\/t.co\/ERXQoaXLn0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ERXQoaXLn0","expanded_url":"https:\/\/www.attn.com\/","display_url":"attn.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":178,"listed_count":10,"created_at":"Thu - Aug 13 15:44:35 +0000 2015","favourites_count":56,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":77,"lang":null,"status":{"created_at":"Fri - Mar 13 21:10:03 +0000 2020","id":1238573060975775749,"id_str":"1238573060975775749","text":"Hi - @BethCameron_DC, I''m a producer at @attn. We make short videos about social - issues. Would you be available to do\u2026 https:\/\/t.co\/W1Xfr0hgjo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BethCameron_DC","name":"Beth - Cameron","id":96359415,"id_str":"96359415","indices":[3,18]},{"screen_name":"attn","name":"attn","id":214112621,"id_str":"214112621","indices":[38,43]}],"urls":[{"url":"https:\/\/t.co\/W1Xfr0hgjo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238573060975775749","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646700661736873985\/qDZUkstW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646700661736873985\/qDZUkstW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420418114\/1494284026","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2796793695,"id_str":"2796793695","name":"Jacob - Meschke","screen_name":"jacobmeschke","location":"Brooklyn, New York","description":"editor - @nytimes for audience\/data\/digital skills\u4e28used to be @RunnersWorld, - @MichiganRadio, @nbn_tweets\u4e28unofficial @PureMichigan spokesperson","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":735,"friends_count":2063,"listed_count":11,"created_at":"Wed - Oct 01 00:42:21 +0000 2014","favourites_count":13312,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1409,"lang":null,"status":{"created_at":"Tue - Mar 08 11:59:35 +0000 2022","id":1501165731312029698,"id_str":"1501165731312029698","text":"RT - @ElianPeltier: While Europe is offering a warm welcome to Ukrainian refugees, - it is quietly trying to get rid of others. Last month, I t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElianPeltier","name":"Elian - Peltier","id":176478023,"id_str":"176478023","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 10:47:52 +0000 2022","id":1501147682320134147,"id_str":"1501147682320134147","text":"While - Europe is offering a warm welcome to Ukrainian refugees, it is quietly trying - to get rid of others. Last mont\u2026 https:\/\/t.co\/ZiNukHeEcX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZiNukHeEcX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501147682320134147","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":738,"favorite_count":1521,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":738,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223285354096201728\/5lb-d6zX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223285354096201728\/5lb-d6zX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2796793695\/1560462833","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":62356851,"id_str":"62356851","name":"HughLaurious","screen_name":"HughLaurious","location":"New - York, N.Y.","description":"The World of Hugh Laurie -Gentleman & Renaissance - Man","url":"https:\/\/t.co\/OjsuROyzIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OjsuROyzIk","expanded_url":"http:\/\/www.Hughlaurious.com\/","display_url":"Hughlaurious.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3680,"friends_count":968,"listed_count":89,"created_at":"Sun - Aug 02 21:39:12 +0000 2009","favourites_count":1973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20674,"lang":null,"status":{"created_at":"Tue - Mar 22 19:56:43 +0000 2022","id":1506359235520704512,"id_str":"1506359235520704512","text":"RT - @MauriceFilm: Will he come for you\u2026\u2620\ufe0f \n\nYou\u2019d better - beware as we introduce the character designs for DEATH (and the Death of Rats), - voi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MauriceFilm","name":"AmazingMauriceFilm","id":1211734898366533632,"id_str":"1211734898366533632","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 17:59:15 +0000 2022","id":1503792959094984710,"id_str":"1503792959094984710","text":"Will - he come for you\u2026\u2620\ufe0f \n\nYou\u2019d better beware as we introduce - the character designs for DEATH (and the Death of Rat\u2026 https:\/\/t.co\/kN4ke4MI5m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kN4ke4MI5m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503792959094984710","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":1506,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":254,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D8D8D8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223642412783980546\/DZ7oMRlz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223642412783980546\/DZ7oMRlz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62356851\/1641479523","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"009999","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1390424211026497536,"id_str":"1390424211026497536","name":"\u0422\u0438\u043c\u043e\u0444\u0435\u0439","screen_name":"3rqEXVXB50abGew","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":1,"listed_count":0,"created_at":"Thu - May 06 21:52:34 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1035001383915642885,"id_str":"1035001383915642885","name":"unborn","screen_name":"unborn_again","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":54,"listed_count":0,"created_at":"Thu - Aug 30 03:08:54 +0000 2018","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":128,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447039808518299650\/7kIOQ6St_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447039808518299650\/7kIOQ6St_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":951496488730980353,"id_str":"951496488730980353","name":"Felix - Lanver","screen_name":"f_lanver","location":"Bremen","description":"@UniBremen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":1298,"listed_count":0,"created_at":"Thu - Jan 11 16:50:15 +0000 2018","favourites_count":1252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Tue - Mar 22 15:01:06 +0000 2022","id":1506284842790625286,"id_str":"1506284842790625286","text":"Der - T\u00dcV darf nicht fehlen! https:\/\/t.co\/ti4SW74bCs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ti4SW74bCs","expanded_url":"https:\/\/twitter.com\/tilojung\/status\/1506246547939409924","display_url":"twitter.com\/tilojung\/statu\u2026","indices":[27,50]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506246547939409924,"quoted_status_id_str":"1506246547939409924","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352676074686197762\/nfxGqUlC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352676074686197762\/nfxGqUlC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951496488730980353\/1611338247","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1384487097298522114,"id_str":"1384487097298522114","name":"Jorge - dimitri dourado viana","screen_name":"dourado_dimitri","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":47,"listed_count":0,"created_at":"Tue - Apr 20 12:45:37 +0000 2021","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2479,"lang":null,"status":{"created_at":"Sun - Mar 13 18:58:05 +0000 2022","id":1503082992259977221,"id_str":"1503082992259977221","text":"https:\/\/t.co\/ESUMlVQXBW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ESUMlVQXBW","expanded_url":"https:\/\/m.facebook.com\/story.php?story_fbid=4759317557514324&id=100003083814871","display_url":"m.facebook.com\/story.php?stor\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384530783902343172\/Rw8VRJvi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384530783902343172\/Rw8VRJvi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86498654,"id_str":"86498654","name":"Maithili - Shah","screen_name":"MaithiliShah","location":"","description":"I do what - I love and love what I do. A caffeine dependent life form.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":60,"listed_count":2,"created_at":"Sat - Oct 31 09:58:56 +0000 2009","favourites_count":963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10836,"lang":null,"status":{"created_at":"Sat - Mar 26 02:14:31 +0000 2022","id":1507541476896518146,"id_str":"1507541476896518146","text":"Sometimes - pain and hurt are good things because it means you strived for something in - your life.\n- Kathryn Vance-Perez","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6DBE6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476999370104971269\/xfZ-Pliv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476999370104971269\/xfZ-Pliv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86498654\/1640979083","profile_link_color":"1FB1FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1386092041751482372,"id_str":"1386092041751482372","name":"Planiiu","screen_name":"planiiu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Sat - Apr 24 22:59:26 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":529149600,"id_str":"529149600","name":"Rory","screen_name":"Rory_Moe","location":"New - York, USA","description":"Human Rights Advocate & fmr. U.S. Delegate to G20 - Youth Summit (2021). Views are my own (RT =\/= endorsement). #LocalIsGlobal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":778,"friends_count":3886,"listed_count":26,"created_at":"Mon - Mar 19 06:14:56 +0000 2012","favourites_count":4464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7974,"lang":null,"status":{"created_at":"Fri - Mar 25 20:23:54 +0000 2022","id":1507453240610377728,"id_str":"1507453240610377728","text":"#Selling; - #BrandNew @edgedesk for $350. \n\nSee here: https:\/\/t.co\/oiTIqQICol https:\/\/t.co\/Zlpegx7sFX","truncated":false,"entities":{"hashtags":[{"text":"Selling","indices":[0,8]},{"text":"BrandNew","indices":[10,19]}],"symbols":[],"user_mentions":[{"screen_name":"EdgeDesk","name":"The - Edge Desk System","id":3835764735,"id_str":"3835764735","indices":[20,29]}],"urls":[{"url":"https:\/\/t.co\/oiTIqQICol","expanded_url":"https:\/\/newyork.craigslist.org\/mnh\/fuo\/d\/new-york-brand-new-edge-desk-no\/7462905892.html","display_url":"newyork.craigslist.org\/mnh\/fuo\/d\/new-\u2026","indices":[52,75]}],"media":[{"id":1507453238085304324,"id_str":"1507453238085304324","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuMu7OWQAQhSEI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuMu7OWQAQhSEI.jpg","url":"https:\/\/t.co\/Zlpegx7sFX","display_url":"pic.twitter.com\/Zlpegx7sFX","expanded_url":"https:\/\/twitter.com\/Rory_Moe\/status\/1507453240610377728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507453238085304324,"id_str":"1507453238085304324","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuMu7OWQAQhSEI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuMu7OWQAQhSEI.jpg","url":"https:\/\/t.co\/Zlpegx7sFX","display_url":"pic.twitter.com\/Zlpegx7sFX","expanded_url":"https:\/\/twitter.com\/Rory_Moe\/status\/1507453240610377728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497364155044618242\/t3DO-X6C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497364155044618242\/t3DO-X6C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/529149600\/1515520458","profile_link_color":"85337B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":851794136223055872,"id_str":"851794136223055872","name":"Salvatore - De Luca \ud83c\udf31\ud83c\uddea\ud83c\uddfa\ud83d\udcda\ud83c\udfe5","screen_name":"Salvo_delu","location":"","description":"Scienza, - clima e ambiente al centro dei miei pensieri;\ud83c\udf31\ud83c\udf0d\namo - i dati e il confronto;\ud83d\udcc8\nlibero da dogmi e pregiudizi.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":276,"listed_count":0,"created_at":"Tue - Apr 11 13:48:42 +0000 2017","favourites_count":11436,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1270,"lang":null,"status":{"created_at":"Sat - Mar 26 08:13:11 +0000 2022","id":1507631739551854594,"id_str":"1507631739551854594","text":"@TCommodity - Puntare tutto sulle rinnovabili, non considerando altre tecnologie che aiutano - a decarbonizzare, signif\u2026 https:\/\/t.co\/HbOrU9hpsQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TCommodity","name":"Gianclaudio - Torlizzi","id":304899193,"id_str":"304899193","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/HbOrU9hpsQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507631739551854594","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507612447934398466,"in_reply_to_status_id_str":"1507612447934398466","in_reply_to_user_id":304899193,"in_reply_to_user_id_str":"304899193","in_reply_to_screen_name":"TCommodity","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360523306940719105\/Ldt526qo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360523306940719105\/Ldt526qo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2153327894,"id_str":"2153327894","name":"Teddy - Roosevelt''s roughest ride \u270d","screen_name":"TheGreatHouseCo","location":"","description":"40+ - year plan conceived by a dark cult of the obscenely wealthy to ensnare seekers - of liberty in a web of tyranny. #StopMonopolies #CNP #ALEC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3684,"friends_count":3652,"listed_count":2,"created_at":"Thu - Oct 24 17:07:08 +0000 2013","favourites_count":12467,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3720,"lang":null,"status":{"created_at":"Sat - Mar 19 14:13:50 +0000 2022","id":1505185784785080320,"id_str":"1505185784785080320","text":"@ClassicalTink - @donwinslow @DrEricDing @RollingStone TY @ClassicalTink!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ClassicalTink","name":"\ud83e\uddda\ud83c\udffd\u200d\u2640\ufe0fTink\ud83e\uddda\ud83c\udffe\u200d\u2642\ufe0f","id":1005798154179108865,"id_str":"1005798154179108865","indices":[0,14]},{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[15,26]},{"screen_name":"DrEricDing","name":"Eric - Feigl-Ding","id":18831926,"id_str":"18831926","indices":[27,38]},{"screen_name":"RollingStone","name":"Rolling - Stone","id":14780915,"id_str":"14780915","indices":[39,52]},{"screen_name":"ClassicalTink","name":"\ud83e\uddda\ud83c\udffd\u200d\u2640\ufe0fTink\ud83e\uddda\ud83c\udffe\u200d\u2642\ufe0f","id":1005798154179108865,"id_str":"1005798154179108865","indices":[56,70]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505032423846916101,"in_reply_to_status_id_str":"1505032423846916101","in_reply_to_user_id":1005798154179108865,"in_reply_to_user_id_str":"1005798154179108865","in_reply_to_screen_name":"ClassicalTink","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357742889007255553\/QIfbpwau_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357742889007255553\/QIfbpwau_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2153327894\/1596903049","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1376822063298674688,"id_str":"1376822063298674688","name":"TheObserver","screen_name":"TheBsrvr","location":"","description":"Osservo - quando non so. Osservo quando so. Prima rifletto, poi parlo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":375,"listed_count":4,"created_at":"Tue - Mar 30 09:02:23 +0000 2021","favourites_count":1055,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":456,"lang":null,"status":{"created_at":"Wed - Mar 23 15:04:22 +0000 2022","id":1506648053230542849,"id_str":"1506648053230542849","text":"RT - @lucianoghelfi: Replica di #Draghi alla #Camera: per fare la pace bisogna - essere in due, non intervenire \u00e8 come difendere l''aggressore.\u2026","truncated":false,"entities":{"hashtags":[{"text":"Draghi","indices":[30,37]},{"text":"Camera","indices":[43,50]}],"symbols":[],"user_mentions":[{"screen_name":"lucianoghelfi","name":"luciano - ghelfi","id":452343838,"id_str":"452343838","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 10:51:08 +0000 2022","id":1506584323536961536,"id_str":"1506584323536961536","text":"Replica - di #Draghi alla #Camera: per fare la pace bisogna essere in due, non intervenire - \u00e8 come difendere l''aggress\u2026 https:\/\/t.co\/rvCz4k0DdZ","truncated":true,"entities":{"hashtags":[{"text":"Draghi","indices":[11,18]},{"text":"Camera","indices":[24,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rvCz4k0DdZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506584323536961536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":113,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376822227140771843\/oF1_21hG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376822227140771843\/oF1_21hG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1376822063298674688\/1617095098","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":915637159326920705,"id_str":"915637159326920705","name":"Charlotte - G","screen_name":"hicharl0tte","location":"","description":"@bellingcat investigator - & trainer, https:\/\/t.co\/gBee5lnBkM | formerly Investigations Lab at @hrcberkeley","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/gBee5lnBkM","expanded_url":"http:\/\/www.bellingcat.com","display_url":"bellingcat.com","indices":[36,59]}]}},"protected":false,"followers_count":1636,"friends_count":292,"listed_count":63,"created_at":"Wed - Oct 04 17:58:05 +0000 2017","favourites_count":776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":397,"lang":null,"status":{"created_at":"Wed - May 12 22:57:20 +0000 2021","id":1392614900036292612,"id_str":"1392614900036292612","text":"RT - @rafsanchez: Netanyahu''s spokesman posted this video yesterday claiming it - shows rockets fired by Hamas from Gaza.\n\nThe video is actuall\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rafsanchez","name":"Raf - Sanchez","id":18426419,"id_str":"18426419","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - May 12 09:59:33 +0000 2021","id":1392419164648873987,"id_str":"1392419164648873987","text":"Netanyahu''s - spokesman posted this video yesterday claiming it shows rockets fired by Hamas - from Gaza.\n\nThe video is\u2026 https:\/\/t.co\/50M74qBSLh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/50M74qBSLh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1392419164648873987","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1392029908851957760,"quoted_status_id_str":"1392029908851957760","retweet_count":3026,"favorite_count":4227,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1392029908851957760,"quoted_status_id_str":"1392029908851957760","retweet_count":3026,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296573869617119232\/xcevaFpR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296573869617119232\/xcevaFpR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/915637159326920705\/1541017449","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1340844045971705863,"id_str":"1340844045971705863","name":"Cathy","screen_name":"Cathy23301317","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":109,"listed_count":0,"created_at":"Mon - Dec 21 02:18:36 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340845139686797313\/SzsSd3cG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340845139686797313\/SzsSd3cG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265036808968196099,"id_str":"1265036808968196099","name":"Boyana","screen_name":"Boyana43327290","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":24,"listed_count":0,"created_at":"Mon - May 25 21:47:46 +0000 2020","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372614660571213837\/faZzPgcd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372614660571213837\/faZzPgcd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1089455993556295685,"id_str":"1089455993556295685","name":"bahaddin - tuncer","screen_name":"bahaddintuncer","location":"\u0130stanbul, T\u00fcrkiye","description":"\u015eiir. - Klasik M\u00fczik. Ko\u015fu\u015fturman. Bibliyomani. \u2603\ufe0f\u2744","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":741,"friends_count":519,"listed_count":8,"created_at":"Sun - Jan 27 09:32:04 +0000 2019","favourites_count":65736,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9025,"lang":null,"status":{"created_at":"Sat - Mar 26 10:48:06 +0000 2022","id":1507670722692456451,"id_str":"1507670722692456451","text":"G\u00fcnayd\u0131n. - Evet, bu saatte, ve evet, g\u00fcnayd\u0131n.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439977780926689286\/_9fFIr3R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439977780926689286\/_9fFIr3R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1089455993556295685\/1621822346","profile_link_color":"E30A17","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":997280529576800256,"id_str":"997280529576800256","name":"Hisham - B. Bashraheel","screen_name":"_Hisham_B_","location":"","description":"| \ud83d\udc68\u200d\ud83d\udcbbThere - is a constant need for new systems and new software\u2328\ufe0f\ud83d\udda5\ufe0f\ud83d\uddb1\ufe0f - | Lover of all things STEM\ud83e\uddec\ud83d\udd2c\ud83d\udc68\u200d\ud83d\udd2c\ud83e\uddf2 - | Main focus is A.I. \ud83e\udde0\ud83e\udd16 | Green Tea Addict\ud83c\udf75 - |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":249,"friends_count":3721,"listed_count":10,"created_at":"Fri - May 18 00:59:41 +0000 2018","favourites_count":820,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1634,"lang":null,"status":{"created_at":"Sun - Feb 13 11:03:54 +0000 2022","id":1492816798722543617,"id_str":"1492816798722543617","text":"RT - @Jeande_d: Most deep learning models sell performance accuracy, parameter - counts, and floating points operations but one of the most imp\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jeande_d","name":"Jean - de Nyandwi","id":836904555728289793,"id_str":"836904555728289793","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 15:43:29 +0000 2022","id":1491799995099475977,"id_str":"1491799995099475977","text":"Most - deep learning models sell performance accuracy, parameter counts, and floating - points operations but one of th\u2026 https:\/\/t.co\/76ugGFq4Uk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/76ugGFq4Uk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491799995099475977","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/typefully.com\/\" rel=\"nofollow\"\u003eTypefully\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":72,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469612637034004485\/neAZ_Q2C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469612637034004485\/neAZ_Q2C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/997280529576800256\/1639218804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284865407086727171,"id_str":"1284865407086727171","name":"Jeffrey - Lewis","screen_name":"Jeffrey91020841","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Sun - Jul 19 15:01:56 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284866437144772608\/TgcJAf0C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284866437144772608\/TgcJAf0C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":529825725,"id_str":"529825725","name":"Breeana - Mulligan","screen_name":"BreeanaMulligan","location":"New York City","description":"Press - Secretary, @NYCCouncil @NYCSpeakerAdams. District Leader AD 36A, @Queens_Dems. - Music Nerd. Queens forever. Views are mine & RTs\/likes = nothing. She\/her","url":"https:\/\/t.co\/f69CO0MZSk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/f69CO0MZSk","expanded_url":"https:\/\/linktr.ee\/breeanaforqueens","display_url":"linktr.ee\/breeanaforquee\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2306,"friends_count":1596,"listed_count":23,"created_at":"Mon - Mar 19 23:04:44 +0000 2012","favourites_count":14287,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3741,"lang":null,"status":{"created_at":"Fri - Mar 25 03:08:19 +0000 2022","id":1507192626977677316,"id_str":"1507192626977677316","text":"@StephCW_ - @CatalinaCruzNY Babes united. \ud83d\udc99\ud83d\udc99 I was so honored to - witness this babe moment. \ud83d\udc99\ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephCW_","name":"Steph - Campanha Wheaton \u2728","id":28794525,"id_str":"28794525","indices":[0,9]},{"screen_name":"CatalinaCruzNY","name":"Catalina - Cruz, Esq.","id":2792794113,"id_str":"2792794113","indices":[10,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507138676031205378,"in_reply_to_status_id_str":"1507138676031205378","in_reply_to_user_id":28794525,"in_reply_to_user_id_str":"28794525","in_reply_to_screen_name":"StephCW_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231780781749657600\/CYGlqlGQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231780781749657600\/CYGlqlGQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/529825725\/1601165727","profile_link_color":"080838","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":925114806251802624,"id_str":"925114806251802624","name":"Claire - \ud83c\udf0a\ud83c\uddea\ud83c\uddfa\ud83c\uddeb\ud83c\uddf7\ud83c\udf0d","screen_name":"ClBear31","location":"","description":"Contre - l''extr\u00e9misme de toute sorte. Militing for freedom of every sort. If - I was from the USA, I''d be a #Dem. #Prochoice #mentalhealth #education #psychologie","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1760,"friends_count":4966,"listed_count":3,"created_at":"Mon - Oct 30 21:38:52 +0000 2017","favourites_count":196526,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":175627,"lang":null,"status":{"created_at":"Sat - Mar 26 08:57:13 +0000 2022","id":1507642821527941120,"id_str":"1507642821527941120","text":"RT - @BagneresO: Je suis convaincu que @gerard_larcher et sa bande #LR au s\u00e9nat - sont pr\u00eats \u00e0 se vendre aux #Extr\u00eames pour sauver leur peau - et\u2026","truncated":false,"entities":{"hashtags":[{"text":"LR","indices":[65,68]},{"text":"Extr\u00eames","indices":[105,114]}],"symbols":[],"user_mentions":[{"screen_name":"BagneresO","name":"Olivier - JSO \ud83c\uddeb\ud83c\uddf7 \ud83c\uddea\ud83c\uddfa","id":1259971321389334534,"id_str":"1259971321389334534","indices":[3,13]},{"screen_name":"gerard_larcher","name":"G\u00e9rard - Larcher","id":1134643441,"id_str":"1134643441","indices":[37,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:03:05 +0000 2022","id":1507629197065347073,"id_str":"1507629197065347073","text":"Je - suis convaincu que @gerard_larcher et sa bande #LR au s\u00e9nat sont pr\u00eats - \u00e0 se vendre aux #Extr\u00eames pour sauver leu\u2026 https:\/\/t.co\/WPhfZqCnDY","truncated":true,"entities":{"hashtags":[{"text":"LR","indices":[50,53]},{"text":"Extr\u00eames","indices":[90,99]}],"symbols":[],"user_mentions":[{"screen_name":"gerard_larcher","name":"G\u00e9rard - Larcher","id":1134643441,"id_str":"1134643441","indices":[22,37]}],"urls":[{"url":"https:\/\/t.co\/WPhfZqCnDY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507629197065347073","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":211,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":69,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316404276772601862\/rbhwTCgj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316404276772601862\/rbhwTCgj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925114806251802624\/1646119453","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1371639467144929282,"id_str":"1371639467144929282","name":"Louisiana - Padilla","screen_name":"LouisianaPadil1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":32,"listed_count":0,"created_at":"Tue - Mar 16 01:48:38 +0000 2021","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":941938813,"id_str":"941938813","name":"NII - \u2020 ODOI","screen_name":"niiodoi_2131","location":"Earth","description":"\u0f3aODOI\u0f3b - I''m a different Vibe","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":118,"listed_count":0,"created_at":"Sun - Nov 11 18:40:34 +0000 2012","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":285,"lang":null,"status":{"created_at":"Wed - Feb 16 00:31:07 +0000 2022","id":1493744717342855174,"id_str":"1493744717342855174","text":"RT - @Asantewaa3433: in as much as I''d very much like my lecturers to be back - in class, I want them to come having met their demands or come\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Asantewaa3433","name":"YAA - ASANTEWAA","id":1423604112684371968,"id_str":"1423604112684371968","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 16 00:14:27 +0000 2022","id":1493740521902297091,"id_str":"1493740521902297091","text":"in - as much as I''d very much like my lecturers to be back in class, I want them - to come having met their demands or\u2026 https:\/\/t.co\/FRjnCxWBKS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FRjnCxWBKS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493740521902297091","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345323203061829632\/WDcv4CjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345323203061829632\/WDcv4CjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941938813\/1609585019","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1366854502935068681,"id_str":"1366854502935068681","name":"J\u00falia - Souza","screen_name":"SouzaJulia_pp","location":"","description":"@unb_oficial - and @ColumbiaSIPA Alumna\n\nShe\/Her | Ela\/Dela","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":106,"listed_count":0,"created_at":"Tue - Mar 02 20:55:58 +0000 2021","favourites_count":155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Tue - Feb 01 19:32:04 +0000 2022","id":1488596028576178179,"id_str":"1488596028576178179","text":"Retweet - if you cried (no but like literally) https:\/\/t.co\/hwrJ96JtVI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1488596020334313476,"id_str":"1488596020334313476","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FKiOMY4WQAQyRae.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKiOMY4WQAQyRae.jpg","url":"https:\/\/t.co\/hwrJ96JtVI","display_url":"pic.twitter.com\/hwrJ96JtVI","expanded_url":"https:\/\/twitter.com\/SouzaJulia_pp\/status\/1488596028576178179\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1488596020334313476,"id_str":"1488596020334313476","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FKiOMY4WQAQyRae.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKiOMY4WQAQyRae.jpg","url":"https:\/\/t.co\/hwrJ96JtVI","display_url":"pic.twitter.com\/hwrJ96JtVI","expanded_url":"https:\/\/twitter.com\/SouzaJulia_pp\/status\/1488596028576178179\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366856680164765699\/8mm_Z0zc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366856680164765699\/8mm_Z0zc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1366854502935068681\/1614884940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36435278,"id_str":"36435278","name":"Visions - of Halcyon","screen_name":"schoonerz","location":"Bay Area","description":"i - am coping","url":"https:\/\/t.co\/HuQVpdkxam","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HuQVpdkxam","expanded_url":"https:\/\/mobile.twitter.com\/search?q=from%3A%40schoonerz%20exclude%3Areplies&f=live","display_url":"mobile.twitter.com\/search?q=from%\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4700,"friends_count":4806,"listed_count":25,"created_at":"Wed - Apr 29 18:32:42 +0000 2009","favourites_count":142612,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42998,"lang":null,"status":{"created_at":"Sat - Mar 26 02:54:55 +0000 2022","id":1507551644287860746,"id_str":"1507551644287860746","text":"An - ICBM is short for \u201cicky boom\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"78B87A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1475883643256008704\/OFR99qXh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1475883643256008704\/OFR99qXh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36435278\/1574288942","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34641922,"id_str":"34641922","name":"Renate - Grimming","screen_name":"RGrimming","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":693,"listed_count":21,"created_at":"Thu - Apr 23 15:32:54 +0000 2009","favourites_count":437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Sun - Jan 02 23:28:01 +0000 2022","id":1477783770048704514,"id_str":"1477783770048704514","text":"@tim29403 - Wie viele Menschen sind noch mal wegen Hindenburgs Zeppelin gestorben?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tim29403","name":"Tim","id":1327591361302982662,"id_str":"1327591361302982662","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1477331546042478592,"in_reply_to_status_id_str":"1477331546042478592","in_reply_to_user_id":1327591361302982662,"in_reply_to_user_id_str":"1327591361302982662","in_reply_to_screen_name":"tim29403","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2647711739\/3b5775712660d0c1ea333085796d4b6e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2647711739\/3b5775712660d0c1ea333085796d4b6e_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1357009901504069634,"id_str":"1357009901504069634","name":"Angela","screen_name":"Angela54027237","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Wed - Feb 03 16:55:59 +0000 2021","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1053297114686648320,"id_str":"1053297114686648320","name":"Veerbhim","screen_name":"Veerbhim1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1234,"listed_count":0,"created_at":"Fri - Oct 19 14:49:36 +0000 2018","favourites_count":4605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7559,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136779218153562112\/LwHjvpKb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136779218153562112\/LwHjvpKb_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":870792513719865345,"id_str":"870792513719865345","name":"Qun - Wang, Ph.D.","screen_name":"qqunwang","location":"","description":"Once a - journalist, always a journalist \u270d\ufe0f. Asst. Professor, Fordham - University. Journalism, technology, media.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":311,"listed_count":6,"created_at":"Sat - Jun 03 00:01:28 +0000 2017","favourites_count":535,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":329,"lang":null,"status":{"created_at":"Tue - Jan 04 21:46:10 +0000 2022","id":1478482914367131649,"id_str":"1478482914367131649","text":"RT - @MichelleLiTV: The response to #VeryAsian has been AMAZING...\n\nA lot of - you asked for ways to support. Well, @Gia_Vang + I heard you: ht\u2026","truncated":false,"entities":{"hashtags":[{"text":"VeryAsian","indices":[34,44]}],"symbols":[],"user_mentions":[{"screen_name":"MichelleLiTV","name":"#VeryAsian - Michelle","id":226319809,"id_str":"226319809","indices":[3,16]},{"screen_name":"Gia_Vang","name":"Gia - Vang","id":34216233,"id_str":"34216233","indices":[112,121]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 04 18:01:05 +0000 2022","id":1478426272565010437,"id_str":"1478426272565010437","text":"The - response to #VeryAsian has been AMAZING...\n\nA lot of you asked for ways - to support. Well, @Gia_Vang + I heard y\u2026 https:\/\/t.co\/eLQ5ZKWa7y","truncated":true,"entities":{"hashtags":[{"text":"VeryAsian","indices":[16,26]}],"symbols":[],"user_mentions":[{"screen_name":"Gia_Vang","name":"Gia - Vang","id":34216233,"id_str":"34216233","indices":[94,103]}],"urls":[{"url":"https:\/\/t.co\/eLQ5ZKWa7y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1478426272565010437","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":428,"favorite_count":1785,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":428,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/872878352469774336\/mmkTeov3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/872878352469774336\/mmkTeov3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/870792513719865345\/1630965494","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262933615161176064,"id_str":"1262933615161176064","name":"jp\ud83c\udf33\ud83c\udf0a\ud83c\udf0e","screen_name":"josh_padilla05","location":"Riverside, - CA","description":"\ud83c\udf0a\ud83c\udf0d be who you are:)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":473,"listed_count":1,"created_at":"Wed - May 20 02:30:46 +0000 2020","favourites_count":18386,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1180,"lang":null,"status":{"created_at":"Fri - Mar 25 23:10:13 +0000 2022","id":1507495097264267272,"id_str":"1507495097264267272","text":"RT - @tylerthecreator: where the fuck you at!?!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tylerthecreator","name":"T","id":166747718,"id_str":"166747718","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:21:09 +0000 2022","id":1507452550819487744,"id_str":"1507452550819487744","text":"where - the fuck you at!?!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7550,"favorite_count":68879,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7550,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270142523353100288\/PZTJn_OR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270142523353100288\/PZTJn_OR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1262933615161176064\/1623634405","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1337126264747028486,"id_str":"1337126264747028486","name":"TradewithDavid","screen_name":"David_fx_trader","location":"Bristol, - England","description":"\ud83c\udfc6Coaching 1500+ Elite Clients \ud83e\udde0Mentor - for Investing & Business \ud83c\udf10Built 4 7 Figure Companies \ud83d\udcb5Start - Your Own Business \ud83d\udcf2DM \u201cGet Started.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":1543,"listed_count":1,"created_at":"Thu - Dec 10 20:05:32 +0000 2020","favourites_count":793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1210,"lang":null,"status":{"created_at":"Sat - Mar 26 10:26:31 +0000 2022","id":1507665294591934472,"id_str":"1507665294591934472","text":"RT - @PSG_English: Help support people affected by the crisis in #Ukraine at https:\/\/t.co\/aWaShDRsvp\n\nAll - donations go to the Red Cross Red C\u2026","truncated":false,"entities":{"hashtags":[{"text":"Ukraine","indices":[63,71]}],"symbols":[],"user_mentions":[{"screen_name":"PSG_English","name":"Paris - Saint-Germain","id":3001704118,"id_str":"3001704118","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/aWaShDRsvp","expanded_url":"http:\/\/crypto.com\/donate","display_url":"crypto.com\/donate","indices":[75,98]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:43:32 +0000 2022","id":1507367585217667072,"id_str":"1507367585217667072","text":"Help - support people affected by the crisis in #Ukraine at https:\/\/t.co\/aWaShDRsvp\n\nAll - donations go to the Red Cros\u2026 https:\/\/t.co\/KeqFJnYA8C","truncated":true,"entities":{"hashtags":[{"text":"Ukraine","indices":[46,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aWaShDRsvp","expanded_url":"http:\/\/crypto.com\/donate","display_url":"crypto.com\/donate","indices":[58,81]},{"url":"https:\/\/t.co\/KeqFJnYA8C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507367585217667072","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":321,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":51,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478630333721554946\/LlkemhgD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478630333721554946\/LlkemhgD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1337126264747028486\/1613932206","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":63324461,"id_str":"63324461","name":"Shabbir","screen_name":"ShabbirBokhari","location":"London, - England","description":"Son, brother, avid reader, writer. British-Pakistani.\n#lufc - \nFollow, Like, RT is not an endorsement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":405,"friends_count":321,"listed_count":5,"created_at":"Thu - Aug 06 01:25:17 +0000 2009","favourites_count":431,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":79,"lang":null,"status":{"created_at":"Thu - Mar 24 04:39:30 +0000 2022","id":1506853189013979138,"id_str":"1506853189013979138","text":"RT - @BBCYaldaHakim: Every evening Ukraine''s President #Zelenskyy addresses his - nation. Tonight for the first time, he did it in English. Cal\u2026","truncated":false,"entities":{"hashtags":[{"text":"Zelenskyy","indices":[53,63]}],"symbols":[],"user_mentions":[{"screen_name":"BBCYaldaHakim","name":"Yalda - Hakim","id":27831488,"id_str":"27831488","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:04:26 +0000 2022","id":1506753765994647556,"id_str":"1506753765994647556","text":"Every - evening Ukraine''s President #Zelenskyy addresses his nation. Tonight for - the first time, he did it in English\u2026 https:\/\/t.co\/DcjfJfvRZd","truncated":true,"entities":{"hashtags":[{"text":"Zelenskyy","indices":[34,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DcjfJfvRZd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506753765994647556","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15499,"favorite_count":55665,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15499,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/985547580955340800\/Uro-puRM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985547580955340800\/Uro-puRM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1362063065613754371,"id_str":"1362063065613754371","name":"MexUnidos","screen_name":"MexUnidos2","location":"","description":"Mexicanos - Unidos por la Reforma Migratoria. Mexicans United for Immigration Reform. - #MexUnidosXlaReforma","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":238,"listed_count":0,"created_at":"Wed - Feb 17 15:36:05 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Mon - Feb 22 23:28:22 +0000 2021","id":1363994067756085250,"id_str":"1363994067756085250","text":"Los - n\u00fameros no mienten. Estas cifras del @MigrationPolicy \ud83d\udc47reafirman - que la minor\u00eda + numerosa en EEUU es la mexica\u2026 https:\/\/t.co\/HGKHcLhn5b","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MigrationPolicy","name":"MigrationPolicy - Inst","id":45421005,"id_str":"45421005","indices":[41,57]}],"urls":[{"url":"https:\/\/t.co\/HGKHcLhn5b","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1363994067756085250","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1363841471129006082,"quoted_status_id_str":"1363841471129006082","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362453790633435141\/tRipEDv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362453790633435141\/tRipEDv3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206531381146374145,"id_str":"1206531381146374145","name":"amy - carey","screen_name":"amycare47350787","location":"McLean, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":16,"listed_count":0,"created_at":"Mon - Dec 16 11:08:01 +0000 2019","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Feb 24 17:30:17 +0000 2022","id":1496900302737395713,"id_str":"1496900302737395713","text":"@chris_qwest - \ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chris_qwest","name":"Chris - Carey","id":152468001,"id_str":"152468001","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1496277376426254341,"in_reply_to_status_id_str":"1496277376426254341","in_reply_to_user_id":152468001,"in_reply_to_user_id_str":"152468001","in_reply_to_screen_name":"chris_qwest","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362795967746109444\/O_EIqR9j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362795967746109444\/O_EIqR9j_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1022664607196954625,"id_str":"1022664607196954625","name":"Rychie - dapper","screen_name":"RychieDapper","location":"Kumasi, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":272,"listed_count":0,"created_at":"Fri - Jul 27 02:06:57 +0000 2018","favourites_count":1137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Fri - Mar 05 13:29:16 +0000 2021","id":1367829566736265216,"id_str":"1367829566736265216","text":"@StonebwoyUpdts - @stonebwoyb Happy birthday @stonebwoyb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StonebwoyUpdts","name":"StonebwoyUpdates","id":1092037858314125312,"id_str":"1092037858314125312","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1367746562403753984,"in_reply_to_status_id_str":"1367746562403753984","in_reply_to_user_id":1092037858314125312,"in_reply_to_user_id_str":"1092037858314125312","in_reply_to_screen_name":"StonebwoyUpdts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022668180064485377\/n6C0mirE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022668180064485377\/n6C0mirE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247459576393478145,"id_str":"1247459576393478145","name":"nens - \ud83c\udf08","screen_name":"sleepybeannena","location":"","description":"politics - student \/\/ dog mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":401,"listed_count":0,"created_at":"Tue - Apr 07 09:42:05 +0000 2020","favourites_count":1473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":214,"lang":null,"status":{"created_at":"Mon - Mar 21 21:47:30 +0000 2022","id":1506024728091414537,"id_str":"1506024728091414537","text":"RT - @Staroxvia: btw lia thomas ended up placing 8th on saturday in the 100 meter - freestyle, but nobody''s talking about it cuz people only gi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Staroxvia","name":"Rox - \ud83c\udf38","id":1333304673076273152,"id_str":"1333304673076273152","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 03:30:38 +0000 2022","id":1505748694708105223,"id_str":"1505748694708105223","text":"btw - lia thomas ended up placing 8th on saturday in the 100 meter freestyle, but - nobody''s talking about it cuz peopl\u2026 https:\/\/t.co\/IQiqfITtWD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IQiqfITtWD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505748694708105223","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5888,"favorite_count":43289,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5888,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362080045276266502\/JZAwkHyS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362080045276266502\/JZAwkHyS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1247459576393478145\/1591189478","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":746340188,"id_str":"746340188","name":"Trenton","screen_name":"TrentKnauer","location":"Pacific - Northwest","description":"Student | Science and philosophy of mind","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1023,"friends_count":1747,"listed_count":10,"created_at":"Thu - Aug 09 02:01:30 +0000 2012","favourites_count":64364,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42378,"lang":null,"status":{"created_at":"Thu - Mar 24 02:09:04 +0000 2022","id":1506815330995240963,"id_str":"1506815330995240963","text":"\u201cOfficials - believe the chances that Mr. Putin will resort to detonating a nuclear weapon - are small. But Russia\u2019s re\u2026 https:\/\/t.co\/MlqFnQLgvB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MlqFnQLgvB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506815330995240963","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506799769905078273,"in_reply_to_status_id_str":"1506799769905078273","in_reply_to_user_id":746340188,"in_reply_to_user_id_str":"746340188","in_reply_to_screen_name":"TrentKnauer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457330510208782347\/YKKhW8BH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457330510208782347\/YKKhW8BH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/746340188\/1636116395","profile_link_color":"000000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1358213576075444230,"id_str":"1358213576075444230","name":"LibGeek","screen_name":"lib_geek","location":"","description":"I - run.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":14,"listed_count":0,"created_at":"Sun - Feb 07 00:42:29 +0000 2021","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Feb 20 01:18:09 +0000 2021","id":1362934533688025094,"id_str":"1362934533688025094","text":"Re-viz - of \"Which States Produce the Most Wind Energy\". It provides some stats and - vizzes that weren''t in the origin\u2026 https:\/\/t.co\/TlGbAr6bYz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TlGbAr6bYz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1362934533688025094","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360365834401636352\/BXVTneOS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360365834401636352\/BXVTneOS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1356981306714968064,"id_str":"1356981306714968064","name":"Afghan - Diplomacy","screen_name":"DiplomacyAfghan","location":"Kabul Afghanistan","description":"Mostly - Write and comment on Afghan\ud83c\udde6\ud83c\uddeb & Global Diplomacy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":692,"listed_count":0,"created_at":"Wed - Feb 03 15:02:31 +0000 2021","favourites_count":425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":196,"lang":null,"status":{"created_at":"Fri - Mar 18 10:34:15 +0000 2022","id":1504768136016396288,"id_str":"1504768136016396288","text":"RT - @FMamundzay: Happy Holi India. May you all celebrate the day with joy, laughter - and peace. #HappyHoli2022 #Holi https:\/\/t.co\/KoHXd81TDm","truncated":false,"entities":{"hashtags":[{"text":"HappyHoli2022","indices":[94,108]},{"text":"Holi","indices":[109,114]}],"symbols":[],"user_mentions":[{"screen_name":"FMamundzay","name":"Farid - Mamundzay \u092b\u0930\u0940\u0926 \u092e\u093e\u092e\u0941\u0928\u094d\u0926\u091c\u0908 - \u0641\u0631\u06cc\u062f \u0645\u0627\u0645\u0648\u0646\u062f\u0632\u06cc","id":847493724,"id_str":"847493724","indices":[3,14]}],"urls":[],"media":[{"id":1504709082430717952,"id_str":"1504709082430717952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","url":"https:\/\/t.co\/KoHXd81TDm","display_url":"pic.twitter.com\/KoHXd81TDm","expanded_url":"https:\/\/twitter.com\/FMamundzay\/status\/1504709086931214387\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1613,"resize":"fit"},"small":{"w":474,"h":680,"resize":"fit"},"medium":{"w":837,"h":1200,"resize":"fit"}},"source_status_id":1504709086931214387,"source_status_id_str":"1504709086931214387","source_user_id":847493724,"source_user_id_str":"847493724"}]},"extended_entities":{"media":[{"id":1504709082430717952,"id_str":"1504709082430717952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","url":"https:\/\/t.co\/KoHXd81TDm","display_url":"pic.twitter.com\/KoHXd81TDm","expanded_url":"https:\/\/twitter.com\/FMamundzay\/status\/1504709086931214387\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1613,"resize":"fit"},"small":{"w":474,"h":680,"resize":"fit"},"medium":{"w":837,"h":1200,"resize":"fit"}},"source_status_id":1504709086931214387,"source_status_id_str":"1504709086931214387","source_user_id":847493724,"source_user_id_str":"847493724"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 06:39:37 +0000 2022","id":1504709086931214387,"id_str":"1504709086931214387","text":"Happy - Holi India. May you all celebrate the day with joy, laughter and peace. #HappyHoli2022 - #Holi https:\/\/t.co\/KoHXd81TDm","truncated":false,"entities":{"hashtags":[{"text":"HappyHoli2022","indices":[78,92]},{"text":"Holi","indices":[93,98]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504709082430717952,"id_str":"1504709082430717952","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","url":"https:\/\/t.co\/KoHXd81TDm","display_url":"pic.twitter.com\/KoHXd81TDm","expanded_url":"https:\/\/twitter.com\/FMamundzay\/status\/1504709086931214387\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1613,"resize":"fit"},"small":{"w":474,"h":680,"resize":"fit"},"medium":{"w":837,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504709082430717952,"id_str":"1504709082430717952","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHM8CyWQAA0fZR.jpg","url":"https:\/\/t.co\/KoHXd81TDm","display_url":"pic.twitter.com\/KoHXd81TDm","expanded_url":"https:\/\/twitter.com\/FMamundzay\/status\/1504709086931214387\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1613,"resize":"fit"},"small":{"w":474,"h":680,"resize":"fit"},"medium":{"w":837,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":1161,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403948046912688130\/vvlSQcOo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403948046912688130\/vvlSQcOo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1356981306714968064\/1612364803","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263554862933032960,"id_str":"1263554862933032960","name":"Fredrick - Mulinge","screen_name":"FredrickMuling9","location":"","description":"Blessed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":60,"listed_count":0,"created_at":"Thu - May 21 19:39:02 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263555243721265152\/wubAlVWb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263555243721265152\/wubAlVWb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1358995169312452608,"id_str":"1358995169312452608","name":"Tommy - Shaw","screen_name":"TomEShawNY","location":"","description":"Lifelong NYer. - Bibliophile. News junky. Work in publishing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":166,"listed_count":0,"created_at":"Tue - Feb 09 04:24:42 +0000 2021","favourites_count":168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Mon - Feb 14 01:26:04 +0000 2022","id":1493033771389657093,"id_str":"1493033771389657093","text":"RT - @KathyHochul: When we invest in education, we invest in our future.\n \nI''m - proud that we''re increasing funding for @SUNY and @CUNY by $1.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KathyHochul","name":"Kathy - Hochul","id":128290790,"id_str":"128290790","indices":[3,15]},{"screen_name":"SUNY","name":"SUNY - - The State University of New York","id":71048920,"id_str":"71048920","indices":[117,122]},{"screen_name":"CUNY","name":"The - City University of New York","id":122059354,"id_str":"122059354","indices":[127,132]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 07 18:36:26 +0000 2022","id":1490756356407709704,"id_str":"1490756356407709704","text":"When - we invest in education, we invest in our future.\n \nI''m proud that we''re - increasing funding for @SUNY and @CUNY\u2026 https:\/\/t.co\/j4VuA8Xyhp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SUNY","name":"SUNY - - The State University of New York","id":71048920,"id_str":"71048920","indices":[100,105]},{"screen_name":"CUNY","name":"The - City University of New York","id":122059354,"id_str":"122059354","indices":[110,115]}],"urls":[{"url":"https:\/\/t.co\/j4VuA8Xyhp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490756356407709704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":246,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":45,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358996537683116033\/J4uSMlzi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358996537683116033\/J4uSMlzi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1357476998860406786,"id_str":"1357476998860406786","name":"Beth - Jane Ross","screen_name":"beth_julianna","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":133,"listed_count":0,"created_at":"Thu - Feb 04 23:52:08 +0000 2021","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Feb 09 03:39:42 +0000 2021","id":1358983890468294658,"id_str":"1358983890468294658","text":"My - Wet pussy will make you Cum #cumshot #cumtribute\u0650s #SexChat #hookup - #sexonfirstdate #SexTribute https:\/\/t.co\/XKwd3cFSMo","truncated":false,"entities":{"hashtags":[{"text":"cumshot","indices":[31,39]},{"text":"cumtribute\u0650s","indices":[40,53]},{"text":"SexChat","indices":[55,63]},{"text":"hookup","indices":[64,71]},{"text":"sexonfirstdate","indices":[72,87]},{"text":"SexTribute","indices":[88,99]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1358983043604750341,"id_str":"1358983043604750341","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EtwT4MHXIAUEkKo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtwT4MHXIAUEkKo.jpg","url":"https:\/\/t.co\/XKwd3cFSMo","display_url":"pic.twitter.com\/XKwd3cFSMo","expanded_url":"https:\/\/twitter.com\/beth_julianna\/status\/1358983890468294658\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1271,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1358983043604750341,"id_str":"1358983043604750341","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EtwT4MHXIAUEkKo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtwT4MHXIAUEkKo.jpg","url":"https:\/\/t.co\/XKwd3cFSMo","display_url":"pic.twitter.com\/XKwd3cFSMo","expanded_url":"https:\/\/twitter.com\/beth_julianna\/status\/1358983890468294658\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1271,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358934839458684932\/S_NqX6nW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358934839458684932\/S_NqX6nW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1357476998860406786\/1612830292","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":318094339,"id_str":"318094339","name":"Jonathan - Richter","screen_name":"jonsrichter","location":"Hartford","description":"MPA - candidate, @UConn. @Yankees fan. Views are mine. \u05d7\u05d9","url":"https:\/\/t.co\/UKC4bYUWnr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UKC4bYUWnr","expanded_url":"https:\/\/www.linkedin.com\/in\/jonathansrichter\/","display_url":"linkedin.com\/in\/jonathansri\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":394,"friends_count":1273,"listed_count":4,"created_at":"Wed - Jun 15 23:34:53 +0000 2011","favourites_count":7188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4793,"lang":null,"status":{"created_at":"Fri - Mar 25 21:02:26 +0000 2022","id":1507462940236165120,"id_str":"1507462940236165120","text":"@CostanzTrade - @desegregateCT This is the same mindset Yonkers residents had in the late - 1980s\u2026.until the city was s\u2026 https:\/\/t.co\/TgHrU57VnC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CostanzTrade","name":"CostanzTrade","id":792069367211196416,"id_str":"792069367211196416","indices":[0,13]},{"screen_name":"desegregateCT","name":"DesegregateCT","id":1270774751632424964,"id_str":"1270774751632424964","indices":[14,28]}],"urls":[{"url":"https:\/\/t.co\/TgHrU57VnC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507462940236165120","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507456749754011648,"in_reply_to_status_id_str":"1507456749754011648","in_reply_to_user_id":792069367211196416,"in_reply_to_user_id_str":"792069367211196416","in_reply_to_screen_name":"CostanzTrade","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463604674486022155\/Aw2gvdQV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463604674486022155\/Aw2gvdQV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318094339\/1643761343","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":134527394,"id_str":"134527394","name":"Lucy - Plint","screen_name":"lucyplint","location":"Washington DC","description":"US - News Editor @SkyNews, previously in Westminster | lucy.plint@sky.uk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1721,"friends_count":1245,"listed_count":68,"created_at":"Sun - Apr 18 17:43:08 +0000 2010","favourites_count":109,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1534,"lang":null,"status":{"created_at":"Tue - Feb 15 16:07:14 +0000 2022","id":1493617909733765120,"id_str":"1493617909733765120","text":"RT - @KlasfeldReports: BREAKING:\n\nPrince Andrew and Virginia Giuffre reach an - out of court settlement. @LawCrimeNews https:\/\/t.co\/VA50cYf5io","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KlasfeldReports","name":"Adam - Klasfeld","id":60506242,"id_str":"60506242","indices":[3,19]},{"screen_name":"lawcrimenews","name":"Law - & Crime","id":4068337756,"id_str":"4068337756","indices":[101,114]}],"urls":[],"media":[{"id":1493617689834795009,"id_str":"1493617689834795009","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","url":"https:\/\/t.co\/VA50cYf5io","display_url":"pic.twitter.com\/VA50cYf5io","expanded_url":"https:\/\/twitter.com\/KlasfeldReports\/status\/1493617740292276232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":571,"resize":"fit"},"medium":{"w":1110,"h":932,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1110,"h":932,"resize":"fit"}},"source_status_id":1493617740292276232,"source_status_id_str":"1493617740292276232","source_user_id":60506242,"source_user_id_str":"60506242"}]},"extended_entities":{"media":[{"id":1493617689834795009,"id_str":"1493617689834795009","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","url":"https:\/\/t.co\/VA50cYf5io","display_url":"pic.twitter.com\/VA50cYf5io","expanded_url":"https:\/\/twitter.com\/KlasfeldReports\/status\/1493617740292276232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":571,"resize":"fit"},"medium":{"w":1110,"h":932,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1110,"h":932,"resize":"fit"}},"source_status_id":1493617740292276232,"source_status_id_str":"1493617740292276232","source_user_id":60506242,"source_user_id_str":"60506242"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 15 16:06:34 +0000 2022","id":1493617740292276232,"id_str":"1493617740292276232","text":"BREAKING:\n\nPrince - Andrew and Virginia Giuffre reach an out of court settlement. @LawCrimeNews - https:\/\/t.co\/VA50cYf5io","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lawcrimenews","name":"Law - & Crime","id":4068337756,"id_str":"4068337756","indices":[80,93]}],"urls":[],"media":[{"id":1493617689834795009,"id_str":"1493617689834795009","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","url":"https:\/\/t.co\/VA50cYf5io","display_url":"pic.twitter.com\/VA50cYf5io","expanded_url":"https:\/\/twitter.com\/KlasfeldReports\/status\/1493617740292276232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":571,"resize":"fit"},"medium":{"w":1110,"h":932,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1110,"h":932,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1493617689834795009,"id_str":"1493617689834795009","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLplYBjXsAEnH-_.png","url":"https:\/\/t.co\/VA50cYf5io","display_url":"pic.twitter.com\/VA50cYf5io","expanded_url":"https:\/\/twitter.com\/KlasfeldReports\/status\/1493617740292276232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":571,"resize":"fit"},"medium":{"w":1110,"h":932,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1110,"h":932,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1434,"favorite_count":3181,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1434,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1096773962871332865\/yG2cj1E0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1096773962871332865\/yG2cj1E0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134527394\/1619620672","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1357664103117029380,"id_str":"1357664103117029380","name":"Jahanzab","screen_name":"Jahanza08591442","location":"Pakista","description":"dr","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":99,"listed_count":0,"created_at":"Fri - Feb 05 12:16:11 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260622538926813184,"id_str":"1260622538926813184","name":"Black - Die","screen_name":"blackdie77","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":136,"listed_count":0,"created_at":"Wed - May 13 17:27:05 +0000 2020","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Sat - Feb 20 15:43:18 +0000 2021","id":1363152256980418564,"id_str":"1363152256980418564","text":"Please - Help Myanmar #savemandalay https:\/\/t.co\/Q7GlXq754L","truncated":false,"entities":{"hashtags":[{"text":"savemandalay","indices":[20,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1363108107912503299,"id_str":"1363108107912503299","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/Euq7miKUYAME6cx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Euq7miKUYAME6cx.jpg","url":"https:\/\/t.co\/Q7GlXq754L","display_url":"pic.twitter.com\/Q7GlXq754L","expanded_url":"https:\/\/twitter.com\/blackdie77\/status\/1363152256980418564\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":451,"resize":"fit"},"medium":{"w":720,"h":478,"resize":"fit"},"large":{"w":720,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1363108107912503299,"id_str":"1363108107912503299","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/Euq7miKUYAME6cx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Euq7miKUYAME6cx.jpg","url":"https:\/\/t.co\/Q7GlXq754L","display_url":"pic.twitter.com\/Q7GlXq754L","expanded_url":"https:\/\/twitter.com\/blackdie77\/status\/1363152256980418564\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":451,"resize":"fit"},"medium":{"w":720,"h":478,"resize":"fit"},"large":{"w":720,"h":478,"resize":"fit"}}},{"id":1363108107904147466,"id_str":"1363108107904147466","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/Euq7miIU4AoxJbu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Euq7miIU4AoxJbu.jpg","url":"https:\/\/t.co\/Q7GlXq754L","display_url":"pic.twitter.com\/Q7GlXq754L","expanded_url":"https:\/\/twitter.com\/blackdie77\/status\/1363152256980418564\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357183237886418944\/Mr9FDcDM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357183237886418944\/Mr9FDcDM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260622538926813184\/1612409576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2999271,"id_str":"2999271","name":"\ud83d\udca5 - Joe Castagna \ud83d\udca5","screen_name":"JoeCastagna","location":"FLA \u27a1\ufe0f RVA - \u27a1\ufe0f NYC","description":"\u2764\ufe0fs \ud83c\udf55 \ud83c\udf69\ud83c\udf7a - \u26be\ufe0f\ud83c\uddfa\ud83c\uddf8 Strategic Planner, @VCU_Brandcenter alumni, - Techie, Trekkie, Vinyl Collector, @RaysBaseball & @Mets fan. let\u2019s go - ride bikes or something","url":"https:\/\/t.co\/TzgZvh86tw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TzgZvh86tw","expanded_url":"http:\/\/joecastagna.me","display_url":"joecastagna.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1161,"listed_count":27,"created_at":"Fri - Mar 30 18:16:58 +0000 2007","favourites_count":2069,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8255,"lang":null,"status":{"created_at":"Sun - Mar 20 02:57:21 +0000 2022","id":1505377930574278664,"id_str":"1505377930574278664","text":"Same - https:\/\/t.co\/7KErDQeEYA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7KErDQeEYA","expanded_url":"https:\/\/twitter.com\/nymag\/status\/1505376214726418436","display_url":"twitter.com\/nymag\/status\/1\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505376214726418436,"quoted_status_id_str":"1505376214726418436","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1001852368126914565\/XjKF1WSs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001852368126914565\/XjKF1WSs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2999271\/1598501014","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2759868733,"id_str":"2759868733","name":"Mamitu - Mekonnen","screen_name":"ethiopiam2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":56,"listed_count":0,"created_at":"Sat - Aug 23 18:45:59 +0000 2014","favourites_count":314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Fri - Jan 14 06:15:19 +0000 2022","id":1481872539412537347,"id_str":"1481872539412537347","text":"@USEmbassyAddis - @CDCgov @EPHIEthiopia Is this part of \" The Containment \" policy by America - in the horn??","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"USEmbassyAddis","name":"U.S. - Embassy Addis","id":2438067822,"id_str":"2438067822","indices":[0,15]},{"screen_name":"CDCgov","name":"CDC","id":146569971,"id_str":"146569971","indices":[16,23]},{"screen_name":"EPHIEthiopia","name":"Ethiopian - Public Health Institute","id":4104211157,"id_str":"4104211157","indices":[24,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1481500839311286274,"in_reply_to_status_id_str":"1481500839311286274","in_reply_to_user_id":2438067822,"in_reply_to_user_id_str":"2438067822","in_reply_to_screen_name":"USEmbassyAddis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1334332440865804302,"id_str":"1334332440865804302","name":"They - The People Podcast","screen_name":"TheyThePod","location":"","description":"A - Scot''s infrequent exploration of the culture, politics, laws and people of - the United States.","url":"https:\/\/t.co\/6N4IqdV4rR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6N4IqdV4rR","expanded_url":"https:\/\/open.spotify.com\/show\/0JiDvn1PCPhTu7jrbT9h7X?si=PhsSXiiVS_GIuH1vACV1TA","display_url":"open.spotify.com\/show\/0JiDvn1PC\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":110,"listed_count":0,"created_at":"Thu - Dec 03 03:03:50 +0000 2020","favourites_count":198,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":545,"lang":null,"status":{"created_at":"Sat - May 29 12:56:47 +0000 2021","id":1398624360202739716,"id_str":"1398624360202739716","text":"So... - 54-35... and the 35 won. \n\nIt''s a very strange system, isn''t it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349187332642111490\/H1wKgrPa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349187332642111490\/H1wKgrPa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1334332440865804302\/1607201010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":930184025917898753,"id_str":"930184025917898753","name":"\ubc14\ub78c\uacfc\uad6c\ub984\ucc98\ub7fc - Jinchil Kwon","screen_name":"JinchilKwon","location":"\ub300\ud55c\ubbfc\uad6d - \uc6b8\uc0b0","description":"\ubc14\ub78c\uacfc \uad6c\ub984\ucc98\ub7fc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":114,"listed_count":0,"created_at":"Mon - Nov 13 21:22:08 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sun - Mar 13 08:50:58 +0000 2022","id":1502930203760553987,"id_str":"1502930203760553987","text":"@wonheeryong - \uc9c0\uae08\uc758 \ub9c8\uc74c\uc774 \ub300\uc120 \ucd9c\ub9c8\ud560 \ub54c\uae4c\uc9c0 - \uc720\uc9c0\ud558\uba74 \uafc8\uc744 \uc774\ub8f0\uc218 \uc788\uc744 \uac81\ub2c8\ub2e4.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wonheeryong","name":"\uc6d0\ud76c\ub8e1","id":109419315,"id_str":"109419315","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502223081984884741,"in_reply_to_status_id_str":"1502223081984884741","in_reply_to_user_id":109419315,"in_reply_to_user_id_str":"109419315","in_reply_to_screen_name":"wonheeryong","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221791394127200256\/SKrOCsnr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221791394127200256\/SKrOCsnr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1354517231737204743,"id_str":"1354517231737204743","name":"Brenna - Nye","screen_name":"Brenna_Nye_","location":"","description":"ou ''23 @ohiou - | e.w. scripps school of journalism @scrippsjschool | avid cactus enthusiast - | ~professional account~","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":40,"listed_count":0,"created_at":"Wed - Jan 27 19:51:01 +0000 2021","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Mon - Feb 14 06:28:37 +0000 2022","id":1493109908841054208,"id_str":"1493109908841054208","text":"RT - @tayrhodes19: we got a quarterback in the super bowl who has eaten at miller\u2019s - chicken","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tayrhodes19","name":"Taylor - Rhodes","id":543618816,"id_str":"543618816","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 13 19:25:26 +0000 2022","id":1492943014754455557,"id_str":"1492943014754455557","text":"we - got a quarterback in the super bowl who has eaten at miller\u2019s chicken","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":1071,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":118,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492582732391665665\/AUof6iut_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492582732391665665\/AUof6iut_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1354517231737204743\/1644694393","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2273933415,"id_str":"2273933415","name":"Laha","screen_name":"labase64","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":21,"friends_count":89,"listed_count":0,"created_at":"Sat - Jan 11 01:06:02 +0000 2014","favourites_count":570,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349491233727647745\/PIijkKAh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349491233727647745\/PIijkKAh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2273933415\/1610578758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1336638744129130498,"id_str":"1336638744129130498","name":"Aziz - Kjiri","screen_name":"AzizKjiri","location":"Fairfax, VA","description":"Life - is too short!!! Live it up!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":106,"listed_count":0,"created_at":"Wed - Dec 09 11:48:18 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Wed - Jul 21 01:39:12 +0000 2021","id":1417660398833131527,"id_str":"1417660398833131527","text":"#NewProfilePic - https:\/\/t.co\/Z9MoPR6ZKe","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1417660395985248257,"id_str":"1417660395985248257","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E6yKnnrXIAEaNWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E6yKnnrXIAEaNWc.jpg","url":"https:\/\/t.co\/Z9MoPR6ZKe","display_url":"pic.twitter.com\/Z9MoPR6ZKe","expanded_url":"https:\/\/twitter.com\/AzizKjiri\/status\/1417660398833131527\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1417660395985248257,"id_str":"1417660395985248257","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E6yKnnrXIAEaNWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E6yKnnrXIAEaNWc.jpg","url":"https:\/\/t.co\/Z9MoPR6ZKe","display_url":"pic.twitter.com\/Z9MoPR6ZKe","expanded_url":"https:\/\/twitter.com\/AzizKjiri\/status\/1417660398833131527\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439477055524114432\/N3giFAyJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439477055524114432\/N3giFAyJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1336638744129130498\/1626831549","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":351627255,"id_str":"351627255","name":"Scott - \ud83c\udf39\ud83e\udd1d","screen_name":"soy_soy_boy","location":"Aisle 6","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":73,"listed_count":0,"created_at":"Tue - Aug 09 14:33:16 +0000 2011","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454487510378328072\/-9EdN5en_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454487510378328072\/-9EdN5en_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351627255\/1609437122","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167202374751965184,"id_str":"1167202374751965184","name":"tesi","screen_name":"tesikuru","location":"Elk - Grove, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":29,"listed_count":0,"created_at":"Thu - Aug 29 22:28:37 +0000 2019","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - Mar 04 00:43:44 +0000 2022","id":1499546095621345282,"id_str":"1499546095621345282","text":"RT - @notchristalle: I have once again boarded last and just sat in an open first - class seat","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"notchristalle","name":"Tobias","id":2159635621,"id_str":"2159635621","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 13:35:51 +0000 2022","id":1499378020573982720,"id_str":"1499378020573982720","text":"I - have once again boarded last and just sat in an open first class seat","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":125,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353952757820973058\/cRVY_CB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353952757820973058\/cRVY_CB3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311428979878887425,"id_str":"1311428979878887425","name":"Winkster","screen_name":"winksterworld","location":"","description":"\"Follow - the money\" - Deep Throat","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":12,"friends_count":95,"listed_count":0,"created_at":"Wed - Sep 30 22:13:34 +0000 2020","favourites_count":276,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4964,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311431615675916288\/2fwgyXbg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311431615675916288\/2fwgyXbg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311428979878887425\/1601506637","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":903223052686823424,"id_str":"903223052686823424","name":"Monica - Ann Lee","screen_name":"MonicaAnnLee13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":16,"listed_count":0,"created_at":"Thu - Aug 31 11:48:51 +0000 2017","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Jan 23 08:30:37 +0000 2021","id":1352896506496507905,"id_str":"1352896506496507905","text":"@BBCBreaking - He\u2019s lucky! He wouldn\u2019t have been considerate if he was in power. - \ud83d\ude24","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCBreaking","name":"BBC - Breaking News","id":5402612,"id_str":"5402612","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1352765661278306306,"in_reply_to_status_id_str":"1352765661278306306","in_reply_to_user_id":5402612,"in_reply_to_user_id_str":"5402612","in_reply_to_screen_name":"BBCBreaking","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1076202506,"id_str":"1076202506","name":"Mu","screen_name":"Mu_Sh_97","location":"Earth","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":783,"listed_count":0,"created_at":"Thu - Jan 10 10:02:38 +0000 2013","favourites_count":2618,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1297,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1178754181580120064\/GCqE33KX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1178754181580120064\/GCqE33KX_normal.png","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":299854850,"id_str":"299854850","name":"Marta - Escol\u00e0 M\u00e9ndez","screen_name":"laMartu30","location":"M\u00f3ra d''Ebre","description":"Bi\u00f2loga - multidisciplinar (UAB). S\u00f3c d''all\u00e0 baix. Si veus que se t''ofega - la vida, fes-li el boca a boca. Educadora ambiental a @tortosa \u267b\ufe0f\n\ud83d\udcf8 - a @LaNovaEscena","url":"https:\/\/t.co\/kICfwsAFeG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kICfwsAFeG","expanded_url":"http:\/\/www.linkedin.com\/in\/marta-escola-mendez","display_url":"linkedin.com\/in\/marta-escol\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1299,"friends_count":2521,"listed_count":13,"created_at":"Mon - May 16 19:52:34 +0000 2011","favourites_count":43871,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8575,"lang":null,"status":{"created_at":"Thu - Mar 24 19:45:23 +0000 2022","id":1507081161226571779,"id_str":"1507081161226571779","text":"RT - @bassa1903: Si \u00e9s que al nostre aparador passa de tot!!\npop up radio - @RadioMoradEbre amb L i @borjada descobrint el seu parad\u00eds de @sald\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bassa1903","name":"Bassa, - La Papereria","id":837517604,"id_str":"837517604","indices":[3,13]},{"screen_name":"RadioMoradEbre","name":"R\u00e0dio - M\u00f3ra d''Ebre","id":915287969845694465,"id_str":"915287969845694465","indices":[72,87]},{"screen_name":"borjada","name":"Borja - Du\u00f1\u00f3","id":180114416,"id_str":"180114416","indices":[96,104]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:07:11 +0000 2022","id":1507071545142829068,"id_str":"1507071545142829068","text":"Si - \u00e9s que al nostre aparador passa de tot!!\npop up radio @RadioMoradEbre - amb L i @borjada descobrint el seu parad\u00eds\u2026 https:\/\/t.co\/TKo8ssB73R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioMoradEbre","name":"R\u00e0dio - M\u00f3ra d''Ebre","id":915287969845694465,"id_str":"915287969845694465","indices":[57,72]},{"screen_name":"borjada","name":"Borja - Du\u00f1\u00f3","id":180114416,"id_str":"180114416","indices":[81,89]}],"urls":[{"url":"https:\/\/t.co\/TKo8ssB73R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507071545142829068","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506974161197015042,"quoted_status_id_str":"1506974161197015042","retweet_count":4,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"is_quote_status":true,"quoted_status_id":1506974161197015042,"quoted_status_id_str":"1506974161197015042","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1049385683956195329\/8fRc-A_p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1049385683956195329\/8fRc-A_p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299854850\/1443538935","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":308281620,"id_str":"308281620","name":"stas","screen_name":"AstasiaWill","location":"in - my bag","description":"views are mine. made a career from tweeting. marketing - @ nike","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23987,"friends_count":2327,"listed_count":178,"created_at":"Tue - May 31 04:08:57 +0000 2011","favourites_count":120983,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":159947,"lang":null,"status":{"created_at":"Sat - Mar 26 05:21:39 +0000 2022","id":1507588569606598656,"id_str":"1507588569606598656","text":"Mariah - Carey really that girl https:\/\/t.co\/OU1k7dcdHw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OU1k7dcdHw","expanded_url":"https:\/\/twitter.com\/latto\/status\/1507493254102609921","display_url":"twitter.com\/latto\/status\/1\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507493254102609921,"quoted_status_id_str":"1507493254102609921","retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507032995106115600\/tJ_Jr1Or_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507032995106115600\/tJ_Jr1Or_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308281620\/1644687391","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E016C8","profile_text_color":"12E6B1","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":793340144690556929,"id_str":"793340144690556929","name":"Jiaxi - (Jake) Zhao","screen_name":"jzhao111","location":"Berkeley, CA","description":"PhD - in Physics @ University of California, Berkeley","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":263,"listed_count":0,"created_at":"Tue - Nov 01 06:33:24 +0000 2016","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sun - Mar 06 23:53:13 +0000 2022","id":1500620550078562304,"id_str":"1500620550078562304","text":"RT - @andreivkozyrev: Lots of discussions about the threat of nuclear war from - the Kremlin and whether Putin is rational. I share my thoughts\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andreivkozyrev","name":"Andrei - V Kozyrev","id":855954907433766912,"id_str":"855954907433766912","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 23:14:00 +0000 2022","id":1500610676926005251,"id_str":"1500610676926005251","text":"Lots - of discussions about the threat of nuclear war from the Kremlin and whether - Putin is rational. I share my thou\u2026 https:\/\/t.co\/HpTTv8sMwc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HpTTv8sMwc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500610676926005251","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9379,"favorite_count":30632,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9379,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2330351,"id_str":"2330351","name":"Michel - van Helden","screen_name":"Bakkel","location":"Dordrecht, Zuid-Holland","description":"\ud83c\uddf3\ud83c\uddf1 - Dutchie | \ud83c\udfbc Creator | \u2615\ufe0f Addict | \ud83e\udd43 Lover","url":"https:\/\/t.co\/9MQCltLbn1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9MQCltLbn1","expanded_url":"https:\/\/linktr.ee\/bakkel","display_url":"linktr.ee\/bakkel","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":860,"friends_count":642,"listed_count":30,"created_at":"Mon - Mar 26 17:55:21 +0000 2007","favourites_count":138,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10438,"lang":null,"status":{"created_at":"Wed - Mar 23 10:05:20 +0000 2022","id":1506572799128838146,"id_str":"1506572799128838146","text":"dus - dat... https:\/\/t.co\/8mYRTzR3wb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8mYRTzR3wb","expanded_url":"https:\/\/twitter.com\/locuta\/status\/1506571586165522442","display_url":"twitter.com\/locuta\/status\/\u2026","indices":[11,34]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506571586165522442,"quoted_status_id_str":"1506571586165522442","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/956050355611107329\/oFwBkv6M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/956050355611107329\/oFwBkv6M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2330351\/1646857420","profile_link_color":"FF691F","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3504492675,"id_str":"3504492675","name":"Julian - Fr\u00f6hlich","screen_name":"haepphaepp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":159,"listed_count":1,"created_at":"Mon - Aug 31 18:47:44 +0000 2015","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":395,"lang":null,"status":{"created_at":"Sat - Feb 19 18:51:58 +0000 2022","id":1495108919504609294,"id_str":"1495108919504609294","text":"@oliverdasgupta - @georg_renner Es hei\u00dft f\u00fcr alle am selben Tag dasselbe. Also vielleicht - lieber nicht spoilern \ud83d\ude09","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oliverdasgupta","name":"Oliver - Das Gupta","id":247222032,"id_str":"247222032","indices":[0,15]},{"screen_name":"georg_renner","name":"Georg - Renner","id":769690082,"id_str":"769690082","indices":[16,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1495108545804603392,"in_reply_to_status_id_str":"1495108545804603392","in_reply_to_user_id":247222032,"in_reply_to_user_id_str":"247222032","in_reply_to_screen_name":"oliverdasgupta","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1005136782999113728\/9TsS0dOb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1005136782999113728\/9TsS0dOb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3504492675\/1528478259","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":299615822,"id_str":"299615822","name":"Prof. - Stanley J. Krammerhead III Jr.","screen_name":"onewaymule87","location":"Newcastle, - New South Wales","description":"Sometimes, I guess there just aren''t enough - rocks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":2840,"listed_count":6,"created_at":"Mon - May 16 12:07:19 +0000 2011","favourites_count":44923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2757,"lang":null,"status":{"created_at":"Tue - Mar 22 09:23:40 +0000 2022","id":1506199923553075204,"id_str":"1506199923553075204","text":"Finished - the QAnon and On audiobook. Fantastic. Absolutely love @vanbadham\u2019s voice - acting when she quotes Q nuts fr\u2026 https:\/\/t.co\/UO26tJ89pn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vanbadham","name":"Van - Badham","id":33216799,"id_str":"33216799","indices":[64,74]}],"urls":[{"url":"https:\/\/t.co\/UO26tJ89pn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506199923553075204","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832732425503379456\/TbrBf59S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832732425503379456\/TbrBf59S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":881476963810115584,"id_str":"881476963810115584","name":"Caroline - \ud83c\uddfa\ud83c\udde6\ud83c\uddf8\ud83c\uddea\ud83c\udf0e\ud83c\udf0a","screen_name":"SweResistance","location":"Space - (Ok, it''s Swedish space)","description":"Swedish. Mother. Wife. Aspie. Despises - Trump. (In that order) Gun control & health care for all. Vaccinated. Wear - a mask. #StandWithUkraine #FBR \ud83c\udf08","url":"https:\/\/t.co\/2B2b0Pkkvd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2B2b0Pkkvd","expanded_url":"http:\/\/spaceforce.se\/noitdoesn''texist","display_url":"spaceforce.se\/noitdoesn''texi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":12029,"friends_count":13228,"listed_count":27,"created_at":"Sun - Jul 02 11:37:40 +0000 2017","favourites_count":195845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57360,"lang":null,"status":{"created_at":"Sat - Mar 26 09:47:57 +0000 2022","id":1507655585172541440,"id_str":"1507655585172541440","text":"RT - @nycsouthpaw: New Ginni Thomas news from NBC https:\/\/t.co\/5x6BNLkNGP https:\/\/t.co\/d7dcSKbTES","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nycsouthpaw","name":"southpaw","id":22429979,"id_str":"22429979","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/5x6BNLkNGP","expanded_url":"https:\/\/www.nbcnews.com\/politics\/congress\/ginni-thomas-pressed-gop-lawmakers-protest-2020-election-results-rcna21644","display_url":"nbcnews.com\/politics\/congr\u2026","indices":[48,71]}],"media":[{"id":1507467984268414976,"id_str":"1507467984268414976","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","url":"https:\/\/t.co\/d7dcSKbTES","display_url":"pic.twitter.com\/d7dcSKbTES","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1507467987686621187\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":629,"h":680,"resize":"fit"},"medium":{"w":1110,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1265,"resize":"fit"}},"source_status_id":1507467987686621187,"source_status_id_str":"1507467987686621187","source_user_id":22429979,"source_user_id_str":"22429979"}]},"extended_entities":{"media":[{"id":1507467984268414976,"id_str":"1507467984268414976","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","url":"https:\/\/t.co\/d7dcSKbTES","display_url":"pic.twitter.com\/d7dcSKbTES","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1507467987686621187\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":629,"h":680,"resize":"fit"},"medium":{"w":1110,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1265,"resize":"fit"}},"source_status_id":1507467987686621187,"source_status_id_str":"1507467987686621187","source_user_id":22429979,"source_user_id_str":"22429979"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:22:30 +0000 2022","id":1507467987686621187,"id_str":"1507467987686621187","text":"New - Ginni Thomas news from NBC https:\/\/t.co\/5x6BNLkNGP https:\/\/t.co\/d7dcSKbTES","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5x6BNLkNGP","expanded_url":"https:\/\/www.nbcnews.com\/politics\/congress\/ginni-thomas-pressed-gop-lawmakers-protest-2020-election-results-rcna21644","display_url":"nbcnews.com\/politics\/congr\u2026","indices":[31,54]}],"media":[{"id":1507467984268414976,"id_str":"1507467984268414976","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","url":"https:\/\/t.co\/d7dcSKbTES","display_url":"pic.twitter.com\/d7dcSKbTES","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1507467987686621187\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":629,"h":680,"resize":"fit"},"medium":{"w":1110,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1265,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507467984268414976,"id_str":"1507467984268414976","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuaJRCX0AAmG5s.jpg","url":"https:\/\/t.co\/d7dcSKbTES","display_url":"pic.twitter.com\/d7dcSKbTES","expanded_url":"https:\/\/twitter.com\/nycsouthpaw\/status\/1507467987686621187\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":629,"h":680,"resize":"fit"},"medium":{"w":1110,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1265,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":252,"favorite_count":568,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":252,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211983897887686657\/igPWEtUA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211983897887686657\/igPWEtUA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881476963810115584\/1647326890","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":275227815,"id_str":"275227815","name":"Kimberly - Ann COllins","screen_name":"Kimberlyanncol2","location":"Georgia","description":"in - the now!","url":"https:\/\/t.co\/8hqibfqPRZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8hqibfqPRZ","expanded_url":"https:\/\/mobile.Twitter.com","display_url":"mobile.Twitter.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":356,"friends_count":2722,"listed_count":14,"created_at":"Thu - Mar 31 21:43:43 +0000 2011","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":480,"lang":null,"status":{"created_at":"Thu - Mar 24 02:21:14 +0000 2022","id":1506818390001963018,"id_str":"1506818390001963018","text":"Twitter''s - ''Brand Bracket 2022'' Competition is Now Underway https:\/\/t.co\/TXhq8mxfoL - via @socialmedia2day","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"socialmedia2day","name":"Social - Media Today","id":15441074,"id_str":"15441074","indices":[87,103]}],"urls":[{"url":"https:\/\/t.co\/TXhq8mxfoL","expanded_url":"https:\/\/www.socialmediatoday.com\/news\/twitters-brand-bracket-2022-competition-is-now-underway\/620753\/","display_url":"socialmediatoday.com\/news\/twitters-\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/893844982309801985\/lUUar3Aw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/893844982309801985\/lUUar3Aw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275227815\/1644166015","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818510721264865281,"id_str":"818510721264865281","name":"alexander - campbell (\ud83c\uddee\ud83c\uddea\/\ud83c\uddfa\ud83c\uddf8)","screen_name":"alexanderjcamp","location":"Rural - VA","description":"Fighting ableist lobbyists since 9. Works w\/ @endseclusion, - @disAbilityLawVA, & @VCU. Pass the Keeping All Students Safe Act - call your - reps! Opinions = mine.","url":"https:\/\/t.co\/FryA9s53Hv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FryA9s53Hv","expanded_url":"http:\/\/endseclusion.org","display_url":"endseclusion.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":564,"friends_count":1436,"listed_count":4,"created_at":"Mon - Jan 09 17:32:17 +0000 2017","favourites_count":24493,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417630449933983751\/ZCzU2j1d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417630449933983751\/ZCzU2j1d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818510721264865281\/1554166291","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1333485507024617472,"id_str":"1333485507024617472","name":"SEA - Em \ud83c\udf39","screen_name":"SeaEmGo","location":"Seattle","description":"Yet - another Seattle socialist. Sometimes organizer, in need of inspiration and - agitation at all times.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":429,"listed_count":1,"created_at":"Mon - Nov 30 18:59:35 +0000 2020","favourites_count":491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Fri - Mar 25 19:38:03 +0000 2022","id":1507441703547940866,"id_str":"1507441703547940866","text":"RT - @CODE_CWA: BREAKING: @googlefiber contract workers in Kansas City just won - their NLRB election, making them the FIRST official bargainin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CODE_CWA","name":"CODE-CWA - @ GDC","id":1213599570682232832,"id_str":"1213599570682232832","indices":[3,12]},{"screen_name":"googlefiber","name":"Google - Fiber","id":300378623,"id_str":"300378623","indices":[24,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:34:30 +0000 2022","id":1507440808118661121,"id_str":"1507440808118661121","text":"BREAKING: - @googlefiber contract workers in Kansas City just won their NLRB election, - making them the FIRST official\u2026 https:\/\/t.co\/BwhVu4mniK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"googlefiber","name":"Google - Fiber","id":300378623,"id_str":"300378623","indices":[10,22]}],"urls":[{"url":"https:\/\/t.co\/BwhVu4mniK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507440808118661121","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":125,"favorite_count":373,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":125,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333514166561165313\/WvTGejds_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333514166561165313\/WvTGejds_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1333485507024617472\/1606763354","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1348659293411799041,"id_str":"1348659293411799041","name":"Christian - Thaler","screen_name":"ChristianThale9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":27,"listed_count":0,"created_at":"Mon - Jan 11 15:53:46 +0000 2021","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":119,"lang":null,"status":{"created_at":"Fri - Mar 18 06:49:17 +0000 2022","id":1504711523054276611,"id_str":"1504711523054276611","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348674531230154752\/qGCe-mjK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348674531230154752\/qGCe-mjK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1350317408943300610,"id_str":"1350317408943300610","name":"Sabrina - Griffin","screen_name":"Sabrina102062","location":"","description":"wife, - mother, nana, Correction officer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":85,"listed_count":0,"created_at":"Sat - Jan 16 05:42:28 +0000 2021","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Jan 16 09:36:00 +0000 2021","id":1350376245637357568,"id_str":"1350376245637357568","text":"https:\/\/t.co\/QvzFUqSOWa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QvzFUqSOWa","expanded_url":"https:\/\/newstarget.com\/2021-01-14-situation-update-jan-14th-2021-an-astonishing-theory-fema-and-the-us-military-will-save-america-at-its-final-hour.html","display_url":"newstarget.com\/2021-01-14-sit\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350323037896380416\/Rch_wopR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350323037896380416\/Rch_wopR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17838059,"id_str":"17838059","name":"Sean - Lilley","screen_name":"slilley","location":"Austin, TX","description":"Data, - analytics, healthcare. Runner. \nFounder of @MastAnalytics, @ActiveHubCo & - @PBIUsers.","url":"https:\/\/t.co\/kTnVxuVcPF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kTnVxuVcPF","expanded_url":"http:\/\/www.masthealth.com","display_url":"masthealth.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":634,"friends_count":629,"listed_count":43,"created_at":"Wed - Dec 03 15:01:16 +0000 2008","favourites_count":1472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5117,"lang":null,"status":{"created_at":"Fri - Mar 25 11:41:33 +0000 2022","id":1507321789046796292,"id_str":"1507321789046796292","text":"@data_zeal - @PowerBITips @tommypuglia @Seth_C_Bauer @Mike_R_Carlo Nice hoodie!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"data_zeal","name":"Mike - Ford","id":1089293138986971136,"id_str":"1089293138986971136","indices":[0,10]},{"screen_name":"PowerBITips","name":"PowerBI.Tips","id":777007441707925504,"id_str":"777007441707925504","indices":[11,23]},{"screen_name":"tommypuglia","name":"Tommy - Puglia","id":353715134,"id_str":"353715134","indices":[24,36]},{"screen_name":"Seth_C_Bauer","name":"Seth - Bauer","id":61598916,"id_str":"61598916","indices":[37,50]},{"screen_name":"Mike_R_Carlo","name":"Mike - Carlo","id":712750686031769600,"id_str":"712750686031769600","indices":[51,64]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507184249308434434,"in_reply_to_status_id_str":"1507184249308434434","in_reply_to_user_id":1089293138986971136,"in_reply_to_user_id_str":"1089293138986971136","in_reply_to_screen_name":"data_zeal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359484370495696896\/yirZFOng_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359484370495696896\/yirZFOng_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17838059\/1578576012","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1067376627150131200,"id_str":"1067376627150131200","name":"Francesca - Colaci","screen_name":"f_colaci","location":"Brussels \/\/ Genova","description":"another - italian in brussels | EU public affairs | tech policy & geopolitics enthusiast","url":"https:\/\/t.co\/j2gOcoJ7Uu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j2gOcoJ7Uu","expanded_url":"https:\/\/www.linkedin.com\/in\/francescacolaci\/?locale=it_IT","display_url":"linkedin.com\/in\/francescaco\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":919,"listed_count":0,"created_at":"Tue - Nov 27 11:16:33 +0000 2018","favourites_count":2065,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":306,"lang":null,"status":{"created_at":"Thu - Mar 24 16:05:00 +0000 2022","id":1507025698954919944,"id_str":"1507025698954919944","text":"Naming - and shaming. Leghisti & co penosi https:\/\/t.co\/1eC4Zl71Nj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1eC4Zl71Nj","expanded_url":"https:\/\/twitter.com\/davcarretta\/status\/1507024717982670853","display_url":"twitter.com\/davcarretta\/st\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507024717982670853,"quoted_status_id_str":"1507024717982670853","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374720123743911939\/4alNjXtT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374720123743911939\/4alNjXtT_normal.jpg","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1349837927560470528,"id_str":"1349837927560470528","name":"Astrid - Price","screen_name":"astrprice","location":"","description":"Program Manager - @CSIS @CSIS_ISP | MA @AmericanU | BA @NAU | National Security | Cybersecurity - | International Relations | she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":174,"listed_count":0,"created_at":"Thu - Jan 14 21:57:19 +0000 2021","favourites_count":113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Tue - Mar 01 01:57:39 +0000 2022","id":1498477535025315845,"id_str":"1498477535025315845","text":"RT - @KofmanMichael: Long thread about how I think the first 96 hours have gone, - still very early\/incomplete impressions. The initial Russian\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KofmanMichael","name":"Michael - Kofman","id":1262845575147458560,"id_str":"1262845575147458560","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 19:37:56 +0000 2022","id":1498381975022940167,"id_str":"1498381975022940167","text":"Long - thread about how I think the first 96 hours have gone, still very early\/incomplete - impressions. The initial Ru\u2026 https:\/\/t.co\/Qh9a6GHBzd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Qh9a6GHBzd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498381975022940167","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10890,"favorite_count":39752,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10890,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349838124738899968\/oAxfT8fB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349838124738899968\/oAxfT8fB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4791556272,"id_str":"4791556272","name":"Al - Vyssotsky","screen_name":"alvyssotsky","location":"Columbia County, NY","description":"libtard - from Queens via South Carolina and New Jersey; now in Columbia County, NY","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":1085,"listed_count":1,"created_at":"Thu - Jan 21 04:09:11 +0000 2016","favourites_count":56344,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10627,"lang":null,"status":{"created_at":"Fri - Mar 25 23:37:42 +0000 2022","id":1507502010790297601,"id_str":"1507502010790297601","text":"@VABVOX - Heck yeah. But the Senate will never convict.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VABVOX","name":"Victoria - Brownworth","id":138168339,"id_str":"138168339","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507480068116914176,"in_reply_to_status_id_str":"1507480068116914176","in_reply_to_user_id":138168339,"in_reply_to_user_id_str":"138168339","in_reply_to_screen_name":"VABVOX","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497634466231115779\/3DXFZ94u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497634466231115779\/3DXFZ94u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4791556272\/1610986720","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3353571554,"id_str":"3353571554","name":"Ayelet - Sheffey","screen_name":"arsheffey","location":"Washington, DC","description":"name - pronounced i-yell-et. opinions my own. | economic policy reporter @businessinsider\/ - @thisisinsider | @americanu alum","url":"https:\/\/t.co\/OlcxBoRqRS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OlcxBoRqRS","expanded_url":"https:\/\/www.businessinsider.com\/author\/ayelet-sheffey","display_url":"businessinsider.com\/author\/ayelet-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3146,"friends_count":556,"listed_count":18,"created_at":"Wed - Aug 26 23:50:15 +0000 2015","favourites_count":970,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":595,"lang":null,"status":{"created_at":"Fri - Mar 25 14:52:23 +0000 2022","id":1507369813546606593,"id_str":"1507369813546606593","text":"RT - @SenWarren: Corinthian College defrauded hundreds of thousands of students, - but seven years later, many students are still buried in deb\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenWarren","name":"Elizabeth - Warren","id":970207298,"id_str":"970207298","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:51:19 +0000 2022","id":1507369545610285064,"id_str":"1507369545610285064","text":"Corinthian - College defrauded hundreds of thousands of students, but seven years later, - many students are still buri\u2026 https:\/\/t.co\/wcC6QT2OMR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wcC6QT2OMR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507369545610285064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507006031703863300,"quoted_status_id_str":"1507006031703863300","retweet_count":166,"favorite_count":757,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507006031703863300,"quoted_status_id_str":"1507006031703863300","retweet_count":166,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474584182596767744\/kR3D-gc6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474584182596767744\/kR3D-gc6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3353571554\/1633798954","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3406708972,"id_str":"3406708972","name":"Gray - Forrester","screen_name":"GrayForrester3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":202,"listed_count":0,"created_at":"Fri - Aug 07 04:20:09 +0000 2015","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Aug 07 04:25:22 +0000 2015","id":629508607726493696,"id_str":"629508607726493696","text":"@mymorningjacket - @jimjames @carlbroemel @patrickhallahan @sometomguy @sometomguy Guys.Amazing - show!We''re outside and would love to meet you!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mymorningjacket","name":"my - morning jacket","id":123337390,"id_str":"123337390","indices":[0,16]},{"screen_name":"jimjames","name":"jim - james","id":326260097,"id_str":"326260097","indices":[17,26]},{"screen_name":"carlbroemel","name":"Carl - Broemel","id":136372846,"id_str":"136372846","indices":[27,39]},{"screen_name":"patrickhallahan","name":"Patrick - Hallahan","id":328188695,"id_str":"328188695","indices":[40,56]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":123337390,"in_reply_to_user_id_str":"123337390","in_reply_to_screen_name":"mymorningjacket","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":17,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629507816840146944\/6Um76uks_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629507816840146944\/6Um76uks_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":619286607,"id_str":"619286607","name":"Rosario - Di Stefano","screen_name":"rosdi70","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":131,"listed_count":0,"created_at":"Tue - Jun 26 16:09:49 +0000 2012","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - Aug 16 21:33:25 +0000 2021","id":1427383015559270400,"id_str":"1427383015559270400","text":"RT - @disinformatico: Questo \u00e8 cosplay da intenditori.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"disinformatico","name":"Paolo - Attivissimo","id":7111232,"id_str":"7111232","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Aug 16 18:51:07 +0000 2021","id":1427342174459420681,"id_str":"1427342174459420681","text":"Questo - \u00e8 cosplay da intenditori. https:\/\/t.co\/w7ZIYf8Yjq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/w7ZIYf8Yjq","expanded_url":"https:\/\/twitter.com\/TrekCore\/status\/1426607224391012353","display_url":"twitter.com\/TrekCore\/statu\u2026","indices":[33,56]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1426607224391012353,"quoted_status_id_str":"1426607224391012353","retweet_count":5,"favorite_count":107,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":true,"quoted_status_id":1426607224391012353,"quoted_status_id_str":"1426607224391012353","retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294473446341013504,"id_str":"1294473446341013504","name":"ree - ree","screen_name":"kyriestyle","location":"Salt Lake City, UT","description":"\ud83c\udf08\u26a1\ufe0f\ud83c\udf3c\u2728 - *nothing to see here* \ud83d\udc96\ud83c\udf38\ud83e\uddda\ud83c\udf1f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":20,"listed_count":0,"created_at":"Sat - Aug 15 03:19:25 +0000 2020","favourites_count":117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Fri - Dec 31 23:21:22 +0000 2021","id":1477057323155832833,"id_str":"1477057323155832833","text":"RT - @feraljokes: it''s cool that instead of class consciousness we have this thing - where we get mad at years","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"feraljokes","name":"Jake - Flores","id":18194194,"id_str":"18194194","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 28 00:20:53 +0000 2021","id":1475622748038782979,"id_str":"1475622748038782979","text":"it''s - cool that instead of class consciousness we have this thing where we get mad - at years","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5081,"favorite_count":33866,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5081,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296579613380886528\/BS0kfNLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296579613380886528\/BS0kfNLC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785138352,"id_str":"785138352","name":"anthony - aloisi","screen_name":"anthaloisi","location":"New York, NY","description":"transportation - engineer \ud83d\ude87 \/\/ Penn State alum \/\/ Tech Enthusiast","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":320,"friends_count":1067,"listed_count":1,"created_at":"Mon - Aug 27 17:41:55 +0000 2012","favourites_count":1662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":587,"lang":null,"status":{"created_at":"Fri - Mar 04 19:28:44 +0000 2022","id":1499829214555643907,"id_str":"1499829214555643907","text":"@backlon - Fridays won\u2019t be the same! Good luck \ud83d\udc4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"backlon","name":"Dieter - Bohn","id":1090141,"id_str":"1090141","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499827918641401860,"in_reply_to_status_id_str":"1499827918641401860","in_reply_to_user_id":1090141,"in_reply_to_user_id_str":"1090141","in_reply_to_screen_name":"backlon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348010675524816904\/ERmvsbgf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348010675524816904\/ERmvsbgf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785138352\/1643052466","profile_link_color":"0085FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18615985,"id_str":"18615985","name":"Chris - Ford","screen_name":"chrisgford","location":"Dallas, TX","description":"QA - and Product in DeFi. Tennis, programming, Baylor sports.","url":"https:\/\/t.co\/8tAVaDmT4i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8tAVaDmT4i","expanded_url":"http:\/\/cgfsystems.com","display_url":"cgfsystems.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1050,"friends_count":4945,"listed_count":19,"created_at":"Sun - Jan 04 23:25:57 +0000 2009","favourites_count":16133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5469,"lang":null,"status":{"created_at":"Sat - Mar 26 04:45:56 +0000 2022","id":1507579580621762563,"id_str":"1507579580621762563","text":"@DanWolken - Baylor are the champs for 3 more rounds!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanWolken","name":"Dan - Wolken","id":23973831,"id_str":"23973831","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507579270486495235,"in_reply_to_status_id_str":"1507579270486495235","in_reply_to_user_id":23973831,"in_reply_to_user_id_str":"23973831","in_reply_to_screen_name":"DanWolken","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383417571584610307\/d_GQAZIc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383417571584610307\/d_GQAZIc_normal.jpg","profile_link_color":"006399","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":261976550,"id_str":"261976550","name":"Gwen - Barcelona","screen_name":"GwenBarcelona","location":"","description":"news - junkie","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":89,"listed_count":0,"created_at":"Mon - Mar 07 02:50:58 +0000 2011","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Thu - Mar 03 04:29:28 +0000 2022","id":1499240516717666307,"id_str":"1499240516717666307","text":"RT - @yamphoto: Standing on top of a bridge that was destroyed, an elderly couple - stay close together (he''s embracing her) as they gaze at th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yamphoto","name":"Marcus - Yam \u6587\u706b","id":387170537,"id_str":"387170537","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 15:18:21 +0000 2022","id":1498679036784037888,"id_str":"1498679036784037888","text":"Standing - on top of a bridge that was destroyed, an elderly couple stay close together - (he''s embracing her) as they\u2026 https:\/\/t.co\/7o6qH1N9aV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7o6qH1N9aV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498679036784037888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":227,"favorite_count":732,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":227,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588934840474411008\/TrsBCoOc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588934840474411008\/TrsBCoOc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/261976550\/1424453490","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14641111,"id_str":"14641111","name":"Dianne - Bengtson","screen_name":"dianneb","location":"Olympic Peninsula","description":"Lover - of wild birds & wild horses. Crusader for Mentally Ill, Unhoused, Environment, - Educational Equity. #breastcancer #BLM No DMs Policy geek #ResistanceGoesOn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2310,"friends_count":2692,"listed_count":63,"created_at":"Sat - May 03 20:13:54 +0000 2008","favourites_count":24000,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7320,"lang":null,"status":{"created_at":"Fri - Mar 25 21:35:49 +0000 2022","id":1507471339963121666,"id_str":"1507471339963121666","text":"@jesflres - I am triple vaxxed. I think I got COVID-19 after spending a week in Kirkland, - WA in Feb 2020 just before\u2026 https:\/\/t.co\/Vds0JzOoXV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/Vds0JzOoXV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507471339963121666","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478180067142369280\/W6WctUQO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478180067142369280\/W6WctUQO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14641111\/1609710321","profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":175736280,"id_str":"175736280","name":"Pat - Kane","screen_name":"thoughtland","location":"Glasgow \/ London","description":"Prog-Green - #indy. Board, @Common_Weal. Writer, @scotnational. Co-initiator, @alteruk21. - Singer, @hueandcry. \u201cEmulate Then Federate\u201d https:\/\/t.co\/b6o2TWe5OL","url":"https:\/\/t.co\/TqbLjO11OW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TqbLjO11OW","expanded_url":"http:\/\/www.patkane.global","display_url":"patkane.global","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/b6o2TWe5OL","expanded_url":"http:\/\/www.thoughtland.earth","display_url":"thoughtland.earth","indices":[132,155]}]}},"protected":false,"followers_count":30502,"friends_count":2720,"listed_count":269,"created_at":"Sat - Aug 07 13:11:50 +0000 2010","favourites_count":26617,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62454,"lang":null,"status":{"created_at":"Fri - Mar 25 19:24:21 +0000 2022","id":1507438253682663426,"id_str":"1507438253682663426","text":"RT - @acidcommunist_: IS YOUR CHILD TEXTING ABOUT DELEUZE?\nDTF = Deterritorialize - the flows\nBRB = Bring rhizomes back\nLMFAO = Lost my face, a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"acidcommunist_","name":"acid - communist","id":1311121262505320451,"id_str":"1311121262505320451","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:19:24 +0000 2022","id":1507437009358536712,"id_str":"1507437009358536712","text":"IS - YOUR CHILD TEXTING ABOUT DELEUZE?\nDTF = Deterritorialize the flows\nBRB = - Bring rhizomes back\nLMFAO = Lost my fac\u2026 https:\/\/t.co\/wkT8ySCxiy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wkT8ySCxiy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507437009358536712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1365208646305603584\/MVyVTHAW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1365208646305603584\/MVyVTHAW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175736280\/1643635908","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3054773439,"id_str":"3054773439","name":"Jessica - Arp","screen_name":"arp_jessica","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":12,"listed_count":0,"created_at":"Mon - Feb 23 04:20:19 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1347480129476440064,"id_str":"1347480129476440064","name":"Camilla - Trionfo","screen_name":"yellow3elephant","location":"Milano, Lombardia","description":"Graduated - at Unimib\ud83d\udcda Milan \ud83c\udf55\ud83c\udf7b \ud83c\udf3b \ud83d\udc18 - Yellow\ud83d\udc9b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":233,"listed_count":0,"created_at":"Fri - Jan 08 09:48:44 +0000 2021","favourites_count":487,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Fri - Dec 17 13:26:55 +0000 2021","id":1471834294087831556,"id_str":"1471834294087831556","text":"@Andrea99Serio - Mmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Andrea99Serio","name":"andrea","id":1020653125823270912,"id_str":"1020653125823270912","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1471833948405870597,"in_reply_to_status_id_str":"1471833948405870597","in_reply_to_user_id":1020653125823270912,"in_reply_to_user_id_str":"1020653125823270912","in_reply_to_screen_name":"Andrea99Serio","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347589238792052736\/XwxA6viC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347589238792052736\/XwxA6viC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1347480129476440064\/1610125337","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1346933744599506949,"id_str":"1346933744599506949","name":"navazzo","screen_name":"navazzo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":0,"listed_count":0,"created_at":"Wed - Jan 06 21:36:53 +0000 2021","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3291629081,"id_str":"3291629081","name":"Vieilles - Annonces","screen_name":"Vieille_Annonce","location":"Upper Midwest","description":"@vieilles_annonces - on instagram","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":494,"friends_count":1070,"listed_count":5,"created_at":"Wed - May 20 17:24:18 +0000 2015","favourites_count":191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1653,"lang":null,"status":{"created_at":"Tue - Jul 20 14:30:18 +0000 2021","id":1417492062371463177,"id_str":"1417492062371463177","text":"RT - @_classicxo: wendy and all her degrees seem real pressed by Ms. Mia \ud83d\ude2d\ud83e\udd74 - #rhop","truncated":false,"entities":{"hashtags":[{"text":"rhop","indices":[74,79]}],"symbols":[],"user_mentions":[{"screen_name":"_classicxo","name":"\u270a\ud83c\udfff\ud83d\udda4","id":3350152246,"id_str":"3350152246","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jul 20 12:19:34 +0000 2021","id":1417459165614727170,"id_str":"1417459165614727170","text":"wendy - and all her degrees seem real pressed by Ms. Mia \ud83d\ude2d\ud83e\udd74 - #rhop","truncated":false,"entities":{"hashtags":[{"text":"rhop","indices":[58,63]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601086161415741444\/mB7h-nR-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601086161415741444\/mB7h-nR-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291629081\/1432492222","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":8734352,"id_str":"8734352","name":"Eric - Deering","screen_name":"zencyl","location":"Huntsville, TX","description":"Ham - radio operator KE5YOT, computer and sci\/fi geek, love working on anything - with a motor.","url":"http:\/\/t.co\/SaOHHNVJPl","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/SaOHHNVJPl","expanded_url":"http:\/\/ericdeering.com","display_url":"ericdeering.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":656,"listed_count":20,"created_at":"Fri - Sep 07 21:30:28 +0000 2007","favourites_count":216,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3687,"lang":null,"status":{"created_at":"Tue - Dec 21 12:17:54 +0000 2021","id":1473266474630406150,"id_str":"1473266474630406150","text":"@stormewarren - woke up this morning and chose violence. We''re out here listening to you! - @SXMTheHighway","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stormewarren","name":"storme - warren","id":20837404,"id_str":"20837404","indices":[0,13]},{"screen_name":"SXMTheHighway","name":"SiriusXM - The Highway","id":69188130,"id_str":"69188130","indices":[88,102]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":20837404,"in_reply_to_user_id_str":"20837404","in_reply_to_screen_name":"stormewarren","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2349023336\/7dzr0uedtlkowjwqcpr3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2349023336\/7dzr0uedtlkowjwqcpr3_normal.png","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048204220,"id_str":"1048204220","name":"Flavio","screen_name":"flpa98","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":579,"listed_count":5,"created_at":"Sun - Dec 30 15:52:22 +0000 2012","favourites_count":5634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3762,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485431194120564737\/kGYDXx6g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485431194120564737\/kGYDXx6g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048204220\/1642989685","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1003570806901956608,"id_str":"1003570806901956608","name":"gioscolozzi","screen_name":"gioscolozzi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":28,"listed_count":0,"created_at":"Mon - Jun 04 09:35:00 +0000 2018","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3027596433,"id_str":"3027596433","name":"Shealyn","screen_name":"shealyn_k","location":"","description":"she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":426,"listed_count":0,"created_at":"Tue - Feb 10 04:08:23 +0000 2015","favourites_count":544,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Wed - May 12 19:48:27 +0000 2021","id":1392567364839899138,"id_str":"1392567364839899138","text":"RT - @vcc4ss: \ud83d\udde3BE THE CHANGE, #VenturaCounty ! Please fill out the #VUSD - #LCAP Survey TODAY if you reside, work, play, attend school in #Vent\u2026","truncated":false,"entities":{"hashtags":[{"text":"VenturaCounty","indices":[28,42]},{"text":"VUSD","indices":[65,70]},{"text":"LCAP","indices":[71,76]}],"symbols":[],"user_mentions":[{"screen_name":"vcc4ss","name":"vccoalitionforstudentsuccess","id":1340366296689479680,"id_str":"1340366296689479680","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - May 12 16:58:33 +0000 2021","id":1392524610621513733,"id_str":"1392524610621513733","text":"\ud83d\udde3BE - THE CHANGE, #VenturaCounty ! Please fill out the #VUSD #LCAP Survey TODAY - if you reside, work, play, attend sch\u2026 https:\/\/t.co\/INcJOPOam1","truncated":true,"entities":{"hashtags":[{"text":"VenturaCounty","indices":[16,30]},{"text":"VUSD","indices":[53,58]},{"text":"LCAP","indices":[59,64]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/INcJOPOam1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1392524610621513733","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268968316569174016\/sjcyg_9a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268968316569174016\/sjcyg_9a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3027596433\/1568960716","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16493084,"id_str":"16493084","name":"liona","screen_name":"liona","location":"ca","description":"ll - fool j","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":63,"friends_count":200,"listed_count":2,"created_at":"Sun - Sep 28 00:32:24 +0000 2008","favourites_count":4667,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6032,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314392086091755522\/D-OvUM2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314392086091755522\/D-OvUM2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16493084\/1414775754","profile_link_color":"FFB8D8","profile_sidebar_border_color":"0ED8A8","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"9E9E9E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1023538915871842306,"id_str":"1023538915871842306","name":"taka@web\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0","screen_name":"tason78201402","location":"\u65e5\u672c - \u6771\u4eac","description":"\u5546\u793e\u2192web\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u4f1a\u793e\u306b\u8ee2\u8077\u3002web\u30de\u30fc\u30b1\u3092\u4f7f\u3063\u305f\u5b9f\u5e97\u8217\u306e\u96c6\u5ba2\u30b5\u30dd\u30fc\u30c8\u3084\u3001\u30a2\u30c9\u30a2\u30d5\u30a3\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u904b\u7528\u6b742\u5e74\u304f\u3089\u3044\u3002\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u6b748\u5e74\u3002\u5148\u65e5\u8a8d\u5b9a\u30e9\u30f3\u30b5\u30fc\u306b\u306a\u308a\u307e\u3057\u305f\u3002web\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0\u306e\u30c4\u30a4\u30fc\u30c8\u591a\u3081\u3002\u6848\u4ef6\u306e\u76f8\u8ac7\u306fDM\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":967,"friends_count":1001,"listed_count":5,"created_at":"Sun - Jul 29 12:01:08 +0000 2018","favourites_count":947,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":323,"lang":null,"status":{"created_at":"Fri - Mar 25 02:38:06 +0000 2022","id":1507185023220600832,"id_str":"1507185023220600832","text":"RT - @daichisakaguchi: \u3010SEM\u904b\u7528\u8005\u5fc5\u898b\u3011\nGoogle\u30ea\u30b9\u30c6\u30a3\u30f3\u30b0\u306eCPA\u3092\u7121\u6599\u3067\u6539\u5584\u3067\u304d\u308b\u65b9\u6cd5\u3092\u767a\u898b\u3057\u307e\u3057\u305f\uff01\n\u8a2d\u5b9a\u306b\u591a\u5c11\u6642\u9593\u306f\u304b\u304b\u308a\u307e\u3059\u304c\u300115\uff05\u304f\u3089\u3044CPA\u6539\u5584\u3057\u305f\u6848\u4ef6\u3082\u3042\u308a\u307e\u3059\u3002\n\u8a73\u7d30\u77e5\u308a\u305f\u3044\u65b9\u306f\u3001\u30d5\u30a9\u30ed\u30fc\u3001RT\u3044\u305f\u3060\u3044\u305f\u5f8cDM\u9802\u3051\u308c\u3070\u30e1\u30c3\u30bb\u30fc\u30b8\u3057\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"daichisakaguchi","name":"\u5742\u53e3\u5927\u5730@20\u4ee3\u4e0a\u5834\u4f01\u696d\u5b50\u4f1a\u793e\u5f79\u54e1","id":1468189463730069512,"id_str":"1468189463730069512","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 18 10:47:37 +0000 2022","id":1483390614515625988,"id_str":"1483390614515625988","text":"\u3010SEM\u904b\u7528\u8005\u5fc5\u898b\u3011\nGoogle\u30ea\u30b9\u30c6\u30a3\u30f3\u30b0\u306eCPA\u3092\u7121\u6599\u3067\u6539\u5584\u3067\u304d\u308b\u65b9\u6cd5\u3092\u767a\u898b\u3057\u307e\u3057\u305f\uff01\n\u8a2d\u5b9a\u306b\u591a\u5c11\u6642\u9593\u306f\u304b\u304b\u308a\u307e\u3059\u304c\u300115\uff05\u304f\u3089\u3044CPA\u6539\u5584\u3057\u305f\u6848\u4ef6\u3082\u3042\u308a\u307e\u3059\u3002\n\u8a73\u7d30\u77e5\u308a\u305f\u3044\u65b9\u306f\u3001\u30d5\u30a9\u30ed\u30fc\u3001RT\u3044\u305f\u3060\u3044\u305f\u5f8cDM\u9802\u3051\u308c\u3070\u30e1\u30c3\u30bb\u30fc\u30b8\u3057\u307e\u3059\uff01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":176,"favorite_count":174,"favorited":false,"retweeted":false,"lang":"ja"},"is_quote_status":false,"retweet_count":176,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368228090200002563\/3TqF-Vjw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368228090200002563\/3TqF-Vjw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1023538915871842306\/1556109171","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3432624256,"id_str":"3432624256","name":"Vittorio - Atlantico Caielli","screen_name":"caiefrost98","location":"","description":"Sono - di Milano, studio all\u2019 @unibocconi (CLEAM e GIO), tifo @acmilan e ho - un B&B Ca dal Cicin","url":"https:\/\/t.co\/WZjL4OwKWc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WZjL4OwKWc","expanded_url":"https:\/\/cadalcicin.wordpress.com","display_url":"cadalcicin.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":926,"listed_count":1,"created_at":"Thu - Aug 20 08:56:13 +0000 2015","favourites_count":12703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"status":{"created_at":"Sat - Mar 19 06:46:41 +0000 2022","id":1505073254024810496,"id_str":"1505073254024810496","text":"@AFP - @AvvocatoAtomico","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFP","name":"AFP - News Agency","id":380648579,"id_str":"380648579","indices":[0,4]},{"screen_name":"AvvocatoAtomico","name":"L''Avvocato - dell''Atomo\/The Atomic Advocate","id":611168477,"id_str":"611168477","indices":[5,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504964113692123138,"in_reply_to_status_id_str":"1504964113692123138","in_reply_to_user_id":380648579,"in_reply_to_user_id_str":"380648579","in_reply_to_screen_name":"AFP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347487183083610113\/r6rpI_pP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347487183083610113\/r6rpI_pP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":166482296,"id_str":"166482296","name":"Himanshu","screen_name":"hemanv2","location":"New - Delhi","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":37,"friends_count":680,"listed_count":2,"created_at":"Wed - Jul 14 07:34:24 +0000 2010","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/834698112232980480\/xz7Ah308_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/834698112232980480\/xz7Ah308_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166482296\/1396958643","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":586907640,"id_str":"586907640","name":"Matt - Crossman","screen_name":"MattCrossmanUK","location":"Bristol","description":"Sustainability - and Governance analyst. ESG themed investment specialist. Coffee snob. All - views my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":964,"friends_count":489,"listed_count":47,"created_at":"Mon - May 21 19:55:04 +0000 2012","favourites_count":3350,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6008,"lang":null,"status":{"created_at":"Tue - Mar 22 09:33:44 +0000 2022","id":1506202456241455110,"id_str":"1506202456241455110","text":"https:\/\/t.co\/LihvJYP9Al","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LihvJYP9Al","expanded_url":"https:\/\/lnkd.in\/dvJvSB7h","display_url":"lnkd.in\/dvJvSB7h","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354313717509455873\/ZJYPpICy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354313717509455873\/ZJYPpICy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/586907640\/1462911233","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36470025,"id_str":"36470025","name":"Matthew - Zinader","screen_name":"mzinader","location":"New Jersey","description":"Boxing - fan, political junkie, aspiring bald man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":666,"listed_count":2,"created_at":"Wed - Apr 29 20:28:27 +0000 2009","favourites_count":171,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46,"lang":null,"status":{"created_at":"Tue - Dec 28 14:37:36 +0000 2021","id":1475838347868360706,"id_str":"1475838347868360706","text":"Could - 2 followers please copy & re-post this tweet? I''m trying to demonstrate - that someone is always there, especia\u2026 https:\/\/t.co\/4EA8jbEeAC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4EA8jbEeAC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1475838347868360706","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452010764412260359\/h7L9PpTs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452010764412260359\/h7L9PpTs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36470025\/1635024995","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87298226,"id_str":"87298226","name":"Britt","screen_name":"brittlynn018","location":"Cincinnati, - OH","description":"Reds. Colts. Lightning. LeBron.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":496,"friends_count":841,"listed_count":10,"created_at":"Tue - Nov 03 22:20:33 +0000 2009","favourites_count":31727,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7208,"lang":null,"status":{"created_at":"Thu - Mar 24 22:46:15 +0000 2022","id":1507126677591273472,"id_str":"1507126677591273472","text":"RT - @ColtsEvents: Happy birthday to a legend! \n\nRT for a chance to win a Peyton - Manning Hall of Fame Bobblehead https:\/\/t.co\/t76Jso4tj0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ColtsEvents","name":"Colts - Events","id":231582973,"id_str":"231582973","indices":[3,15]}],"urls":[],"media":[{"id":1507123341345361928,"id_str":"1507123341345361928","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","url":"https:\/\/t.co\/t76Jso4tj0","display_url":"pic.twitter.com\/t76Jso4tj0","expanded_url":"https:\/\/twitter.com\/ColtsEvents\/status\/1507123362841210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}},"source_status_id":1507123362841210880,"source_status_id_str":"1507123362841210880","source_user_id":231582973,"source_user_id_str":"231582973"}]},"extended_entities":{"media":[{"id":1507123341345361928,"id_str":"1507123341345361928","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","url":"https:\/\/t.co\/t76Jso4tj0","display_url":"pic.twitter.com\/t76Jso4tj0","expanded_url":"https:\/\/twitter.com\/ColtsEvents\/status\/1507123362841210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}},"source_status_id":1507123362841210880,"source_status_id_str":"1507123362841210880","source_user_id":231582973,"source_user_id_str":"231582973"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:33:05 +0000 2022","id":1507123362841210880,"id_str":"1507123362841210880","text":"Happy - birthday to a legend! \n\nRT for a chance to win a Peyton Manning Hall of - Fame Bobblehead https:\/\/t.co\/t76Jso4tj0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507123341345361928,"id_str":"1507123341345361928","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","url":"https:\/\/t.co\/t76Jso4tj0","display_url":"pic.twitter.com\/t76Jso4tj0","expanded_url":"https:\/\/twitter.com\/ColtsEvents\/status\/1507123362841210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507123341345361928,"id_str":"1507123341345361928","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpgsaGXEAgjGCy.jpg","url":"https:\/\/t.co\/t76Jso4tj0","display_url":"pic.twitter.com\/t76Jso4tj0","expanded_url":"https:\/\/twitter.com\/ColtsEvents\/status\/1507123362841210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1043,"favorite_count":963,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1043,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481393209142087682\/-DRcFljF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481393209142087682\/-DRcFljF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87298226\/1423175933","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"303030","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":234067180,"id_str":"234067180","name":"Mar\u00eda - Gil","screen_name":"MGil_Iborra","location":"Sax, Espa\u00f1a","description":"Comunicaci\u00f3n - en @eqkernpharma","url":"https:\/\/t.co\/p6sdbFfgOF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p6sdbFfgOF","expanded_url":"https:\/\/es.linkedin.com\/in\/mar%C3%ADa-gil-iborra-a73689150","display_url":"es.linkedin.com\/in\/mar%C3%ADa-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":600,"friends_count":176,"listed_count":5,"created_at":"Tue - Jan 04 19:34:59 +0000 2011","favourites_count":4372,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15341,"lang":null,"status":{"created_at":"Mon - Mar 14 11:27:57 +0000 2022","id":1503332098555486211,"id_str":"1503332098555486211","text":"RT - @lavuelta: \ud83d\udcc2 \ud835\udddf\ud835\uddee \ud835\udde9\ud835\ude02\ud835\uddf2\ud835\uddf9\ud835\ude01\ud835\uddee - \ud835\udfee\ud835\udfee\n \u2514\ud83d\udcc1 \ud835\uddd8\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\uddfd\ud835\uddfc\ud835\ude00 - - \ud835\udde7\ud835\uddf2\ud835\uddee\ud835\uddfa\ud835\ude00\n \u2514\ud83d\udcc1 - \ud835\udddc\ud835\uddfb\ud835\ude03\ud835\uddf6\ud835\ude01\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude00 - - \ud835\uddea\ud835\uddf6\ud835\uddf9\ud835\uddf1\ud835\uddf0\ud835\uddee\ud835\uddff\ud835\uddf1\ud835\ude00\n \u2514\ud83d\udc9c - @BurgosBH\n \u2514\ud83d\udc9a @EqKernPharma\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lavuelta","name":"La - Vuelta","id":280414653,"id_str":"280414653","indices":[3,12]},{"screen_name":"BurgosBH","name":"Burgos - BH","id":524682246,"id_str":"524682246","indices":[92,101]},{"screen_name":"EqKernPharma","name":"Equipo - Kern Pharma","id":1170393782774390784,"id_str":"1170393782774390784","indices":[115,128]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 11:00:01 +0000 2022","id":1503325068792795140,"id_str":"1503325068792795140","text":"\ud83d\udcc2 - \ud835\udddf\ud835\uddee \ud835\udde9\ud835\ude02\ud835\uddf2\ud835\uddf9\ud835\ude01\ud835\uddee - \ud835\udfee\ud835\udfee\n \u2514\ud83d\udcc1 \ud835\uddd8\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\uddfd\ud835\uddfc\ud835\ude00 - - \ud835\udde7\ud835\uddf2\ud835\uddee\ud835\uddfa\ud835\ude00\n \u2514\ud83d\udcc1 - \ud835\udddc\ud835\uddfb\ud835\ude03\ud835\uddf6\ud835\ude01\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude00 - - \ud835\uddea\ud835\uddf6\ud835\uddf9\ud835\uddf1\ud835\uddf0\ud835\uddee\ud835\uddff\ud835\uddf1\ud835\ude00\n \u2514\ud83d\udc9c - @BurgosBH\n \u2514\ud83d\udc9a @EqKernPharma\u2026 https:\/\/t.co\/woCBad76o0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BurgosBH","name":"Burgos - BH","id":524682246,"id_str":"524682246","indices":[78,87]},{"screen_name":"EqKernPharma","name":"Equipo - Kern Pharma","id":1170393782774390784,"id_str":"1170393782774390784","indices":[101,114]}],"urls":[{"url":"https:\/\/t.co\/woCBad76o0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503325068792795140","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":165,"favorite_count":511,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":165,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453411146615099393\/datJi2hm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453411146615099393\/datJi2hm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234067180\/1635355265","profile_link_color":"ED76ED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3079987858,"id_str":"3079987858","name":"Jos\u00e9 - Andr\u00e9s Mart\u00ednez V.","screen_name":"Joseandres32_","location":"Venezuela","description":"Licenciado - en Estudios Internacionales UCV. \nAn\u00e1lisis pol\u00edtico y electoral. - Escribir es mi pasi\u00f3n.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":401,"friends_count":1019,"listed_count":0,"created_at":"Sun - Mar 08 18:30:45 +0000 2015","favourites_count":11906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3910,"lang":null,"status":{"created_at":"Fri - Mar 25 21:56:31 +0000 2022","id":1507476548932231170,"id_str":"1507476548932231170","text":"@Vaaaldlc - ???? No puede ser, dios m\u00edo. Voy a buscar los tweets","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Vaaaldlc","name":"Val","id":187610847,"id_str":"187610847","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507473148467367942,"in_reply_to_status_id_str":"1507473148467367942","in_reply_to_user_id":187610847,"in_reply_to_user_id_str":"187610847","in_reply_to_screen_name":"Vaaaldlc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7FDBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435039493258686465\/d1sDz3vj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435039493258686465\/d1sDz3vj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3079987858\/1489782253","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3220871683,"id_str":"3220871683","name":"Cody - Houdek","screen_name":"codyhoudek","location":"Minnesota","description":"HS - English Teacher; Podcasts and Player Scouting for Thinking Basketball;@PremiumHoopsNBA - and Sense and Scalability forever!; @Bucks fan\n\nBlack Lives Matter","url":"https:\/\/t.co\/UbBXw7OTDc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UbBXw7OTDc","expanded_url":"https:\/\/www.patreon.com\/codyhoudek","display_url":"patreon.com\/codyhoudek","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1694,"friends_count":829,"listed_count":47,"created_at":"Tue - May 19 23:37:41 +0000 2015","favourites_count":8105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15459,"lang":null,"status":{"created_at":"Fri - Mar 25 04:33:54 +0000 2022","id":1507214167282958337,"id_str":"1507214167282958337","text":"RT - @The_BBall_Index: NBA leaders in our Playmaking Talent metric among Point - Guards:\n\n1. Trae\n2. Luka\n3. Garland\n4. CP3\n5. LaMelo\n\nThis met\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"The_BBall_Index","name":"BBall - Index","id":855896453381849089,"id_str":"855896453381849089","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:00:01 +0000 2022","id":1507145241815515156,"id_str":"1507145241815515156","text":"NBA - leaders in our Playmaking Talent metric among Point Guards:\n\n1. Trae\n2. - Luka\n3. Garland\n4. CP3\n5. LaMelo\n\nThis\u2026 https:\/\/t.co\/AeEOWgyvOt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AeEOWgyvOt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507145241815515156","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279273359344390144\/Jy1Dz8e3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279273359344390144\/Jy1Dz8e3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220871683\/1432080156","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213446929050267651,"id_str":"1213446929050267651","name":"Giulia - Fiorentino","screen_name":"giuliafiorent19","location":"val di susa","description":"Turin, - 20 Scienze Internazionali, dello Sviluppo e della Cooperazione","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":715,"listed_count":2,"created_at":"Sat - Jan 04 13:08:29 +0000 2020","favourites_count":1055,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":249,"lang":null,"status":{"created_at":"Sat - Feb 26 11:00:04 +0000 2022","id":1497526875320684545,"id_str":"1497526875320684545","text":"This - article from 2015. In 2022","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1497525890011607041,"in_reply_to_status_id_str":"1497525890011607041","in_reply_to_user_id":1213446929050267651,"in_reply_to_user_id_str":"1213446929050267651","in_reply_to_screen_name":"giuliafiorent19","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487750580609196041\/bSJsEP2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487750580609196041\/bSJsEP2j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213446929050267651\/1578145603","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1345563778457460736,"id_str":"1345563778457460736","name":"@ian_c_watlington","screen_name":"IanWatlington","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":32,"listed_count":0,"created_at":"Sun - Jan 03 02:53:39 +0000 2021","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Jul 23 23:56:09 +0000 2021","id":1418721628146515971,"id_str":"1418721628146515971","text":"Test","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345564246315331596\/qRhx8Rdu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345564246315331596\/qRhx8Rdu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24974091,"id_str":"24974091","name":"Chris - Jr Williams","screen_name":"ChrisJr4Eva87","location":"Sheffield, Yorkshire, - S2 3LR","description":"Chris Jr Williams\naka\nChrisJr4Eva87\n\u2653\ufe0f - \nhttps:\/\/t.co\/OIALkzMjAF\nhttps:\/\/t.co\/yD7FBeAgEx\nhttps:\/\/t.co\/Gfxg2BEBcr\n\ud83d\udc9c - \ud83d\udc99 \ud83d\udc9c C x \ud83d\udc9c \ud83d\udc99 \ud83d\udc9c","url":"https:\/\/t.co\/Gfxg2BEBcr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gfxg2BEBcr","expanded_url":"http:\/\/about.me\/chrisjr4eva87","display_url":"about.me\/chrisjr4eva87","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/OIALkzMjAF","expanded_url":"http:\/\/Facebook.com\/ChrisJr4Eva87","display_url":"Facebook.com\/ChrisJr4Eva87","indices":[40,63]},{"url":"https:\/\/t.co\/yD7FBeAgEx","expanded_url":"https:\/\/Twitter.com\/chrisjr4eva87","display_url":"Twitter.com\/chrisjr4eva87","indices":[64,87]},{"url":"https:\/\/t.co\/Gfxg2BEBcr","expanded_url":"http:\/\/about.me\/chrisjr4eva87","display_url":"about.me\/chrisjr4eva87","indices":[88,111]}]}},"protected":true,"followers_count":882,"friends_count":4916,"listed_count":8,"created_at":"Tue - Mar 17 22:53:28 +0000 2009","favourites_count":26441,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":85743,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1467435993808654336\/6W_fqmKV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1467435993808654336\/6W_fqmKV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24974091\/1605971644","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1228781807442780166,"id_str":"1228781807442780166","name":"2-0 - most dangerous lead in sports","screen_name":"crankedcorgi","location":"DC - and WV ","description":"Bundesliga fan | supporter of small-to-midsize podcasts - | outraged american","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":1026,"listed_count":0,"created_at":"Sat - Feb 15 20:43:15 +0000 2020","favourites_count":66423,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1525,"lang":null,"status":{"created_at":"Fri - Mar 18 15:19:25 +0000 2022","id":1504839901711319051,"id_str":"1504839901711319051","text":"@EdwardRyder - Love this! Best wishes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdwardRyder","name":"Edward - Stillwell Ryder","id":44801505,"id_str":"44801505","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504773889452355585,"in_reply_to_status_id_str":"1504773889452355585","in_reply_to_user_id":44801505,"in_reply_to_user_id_str":"44801505","in_reply_to_screen_name":"EdwardRyder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507420764542316558\/eI3spxgr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507420764542316558\/eI3spxgr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228781807442780166\/1582604900","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1343169995199549441,"id_str":"1343169995199549441","name":"Nitin - Meshram","screen_name":"nitinsdmeshram","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2856,"friends_count":14,"listed_count":3,"created_at":"Sun - Dec 27 12:21:32 +0000 2020","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Wed - Mar 23 09:48:22 +0000 2022","id":1506568529327235076,"id_str":"1506568529327235076","text":"RT - @MollyJongFast: It\u2019s 2022 and senator Lindsey Graham asked this question - during a senate supreme court hearing. \n\n https:\/\/t.co\/epTgVkKH\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:54:20 +0000 2022","id":1506283139022438422,"id_str":"1506283139022438422","text":"It\u2019s - 2022 and senator Lindsey Graham asked this question during a senate supreme - court hearing. \n\n https:\/\/t.co\/epTgVkKHJa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506281581383720960,"id_str":"1506281581383720960","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfEyB-WUAEZ8VX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfEyB-WUAEZ8VX.jpg","url":"https:\/\/t.co\/epTgVkKHJa","display_url":"pic.twitter.com\/epTgVkKHJa","expanded_url":"https:\/\/twitter.com\/therecount\/status\/1506282250492596232\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506282250492596232,"source_status_id_str":"1506282250492596232","source_user_id":1087380412089987077,"source_user_id_str":"1087380412089987077"}]},"extended_entities":{"media":[{"id":1506281581383720960,"id_str":"1506281581383720960","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfEyB-WUAEZ8VX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfEyB-WUAEZ8VX.jpg","url":"https:\/\/t.co\/epTgVkKHJa","display_url":"pic.twitter.com\/epTgVkKHJa","expanded_url":"https:\/\/twitter.com\/therecount\/status\/1506282250492596232\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506282250492596232,"source_status_id_str":"1506282250492596232","source_user_id":1087380412089987077,"source_user_id_str":"1087380412089987077","video_info":{"aspect_ratio":[16,9],"duration_millis":41575,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1506281581383720960\/pl\/WBOolKs0pBUx7bgx.m3u8?tag=14&container=fmp4&v=1e2"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506281581383720960\/vid\/640x360\/JkTtRbNW5PhaSFGj.mp4?tag=14"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506281581383720960\/vid\/1280x720\/0SgRVKgukJhEzFYB.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506281581383720960\/vid\/480x270\/cVr2q76-pNPywwk5.mp4?tag=14"}]},"additional_media_info":{"title":"Graham - Questions Judge Jackson''s Faith","description":"","embeddable":true,"monetizable":true}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6098,"favorite_count":50709,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6098,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503588730317451265\/xVYMoo_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503588730317451265\/xVYMoo_1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1331417218027032576,"id_str":"1331417218027032576","name":"Gavin - Krooks","screen_name":"GKrooks","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":39,"listed_count":0,"created_at":"Wed - Nov 25 01:59:49 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331417485158047744\/RSRyJVVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331417485158047744\/RSRyJVVt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1339124565889454080,"id_str":"1339124565889454080","name":"((Int. - Zionist Clown)) \ud83c\udf10\u2721\ufe0f\ud83e\udd21","screen_name":"JewishBagels48","location":"Austin, - TX","description":"22 \ud83d\udcab\u2721\ufe0f\ud83e\udd6f Centrist Dem \ud83d\udcaa - Zionists, Gays, Jews, dumb Investors welcomed here \ud83d\udc85\u26a0\ufe0f\ud83d\ude4a\ud83e\udd84 - #SaveAMC #bitcoin $DOGE #LittleEmailer \ud83d\udce7\u2764\ufe0f\ud83c\udf10","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":117,"friends_count":862,"listed_count":2,"created_at":"Wed - Dec 16 08:26:10 +0000 2020","favourites_count":5396,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4711,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504457260076089349\/ComHyO20_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504457260076089349\/ComHyO20_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1339124565889454080\/1614047692","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1343001550055211008,"id_str":"1343001550055211008","name":"Sally","screen_name":"Sally38904823","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":7,"listed_count":0,"created_at":"Sun - Dec 27 01:11:47 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1339767421796831232,"id_str":"1339767421796831232","name":"Martin","screen_name":"Martin78049896","location":"New - Orleans, LA","description":"Married, father of six, 10 grandkids. Currently - Director of Loss Prevention\\HR . Air Force veteran of 21 years. Prior New - Orleans Police detective.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":24,"listed_count":0,"created_at":"Fri - Dec 18 03:00:37 +0000 2020","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Aug 21 11:28:44 +0000 2021","id":1429042781683654665,"id_str":"1429042781683654665","text":"@thePiggsBoson - K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thePiggsBoson","name":"sunny","id":2928030234,"id_str":"2928030234","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1428985403097239555,"in_reply_to_status_id_str":"1428985403097239555","in_reply_to_user_id":2928030234,"in_reply_to_user_id_str":"2928030234","in_reply_to_screen_name":"thePiggsBoson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339768151316123648\/25WWziQh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339768151316123648\/25WWziQh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797815877982887936,"id_str":"797815877982887936","name":"Thor43","screen_name":"drtruss1","location":"Nordrhein-Westfalen, - Deutschla","description":"36 years experience in banking, thereof 12 years - in IB Ops and Op Risk Management. Politically interested citizen and Film - Music aficionado.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":127,"listed_count":0,"created_at":"Sun - Nov 13 14:58:22 +0000 2016","favourites_count":119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Fri - Jul 23 14:19:40 +0000 2021","id":1418576550941896707,"id_str":"1418576550941896707","text":"RT - @feiduoli: Mobiles Impfangebot f\u00fcr Studierende - Universit\u00e4t W\u00fcrzburg - https:\/\/t.co\/hLLyHhvgSM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"feiduoli","name":"Doris - Fischer","id":797825524982812673,"id_str":"797825524982812673","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/hLLyHhvgSM","expanded_url":"https:\/\/www.uni-wuerzburg.de\/aktuelles\/pressemitteilungen\/single\/news\/mobiles-impfangebot-fuer-studierende\/","display_url":"uni-wuerzburg.de\/aktuelles\/pres\u2026","indices":[73,96]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jul 23 04:50:10 +0000 2021","id":1418433232555626497,"id_str":"1418433232555626497","text":"Mobiles - Impfangebot f\u00fcr Studierende - Universit\u00e4t W\u00fcrzburg https:\/\/t.co\/hLLyHhvgSM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hLLyHhvgSM","expanded_url":"https:\/\/www.uni-wuerzburg.de\/aktuelles\/pressemitteilungen\/single\/news\/mobiles-impfangebot-fuer-studierende\/","display_url":"uni-wuerzburg.de\/aktuelles\/pres\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116824195383297\/BG631rQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116824195383297\/BG631rQz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":317758755,"id_str":"317758755","name":"Dave - Green","screen_name":"DavidGreen32","location":"Orlando, FL","description":"Foodie. - Humanitarian. Baseball Nerd. https:\/\/t.co\/hUznAsWnbs","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/hUznAsWnbs","expanded_url":"http:\/\/davegreenfoodie.com","display_url":"davegreenfoodie.com","indices":[37,60]}]}},"protected":false,"followers_count":1223,"friends_count":570,"listed_count":18,"created_at":"Wed - Jun 15 12:45:14 +0000 2011","favourites_count":8042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1699,"lang":null,"status":{"created_at":"Sat - Mar 26 00:43:57 +0000 2022","id":1507518685820432389,"id_str":"1507518685820432389","text":"@SRuhle - @IvanTheK \ud83d\udc40","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SRuhle","name":"Stephanie - Ruhle","id":382685028,"id_str":"382685028","indices":[0,7]},{"screen_name":"IvanTheK","name":"Ivan - the K\u2122","id":197869772,"id_str":"197869772","indices":[8,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507518071434526730,"in_reply_to_status_id_str":"1507518071434526730","in_reply_to_user_id":382685028,"in_reply_to_user_id_str":"382685028","in_reply_to_screen_name":"SRuhle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327593847636041728\/y1uOefx-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327593847636041728\/y1uOefx-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317758755\/1605358014","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1150779590,"id_str":"1150779590","name":"Stuti","screen_name":"StutiNMishra","location":"Delhi-Mumbai","description":"Journalist - | Reporting for @Independent on everything Asia | She\/Her | Climate, Economy, - Rights | Send tips and cat pics at Stuti.mishra@independent.co.uk","url":"https:\/\/t.co\/IxVVSlJkNh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IxVVSlJkNh","expanded_url":"https:\/\/www.independent.co.uk\/author\/stuti-mishra","display_url":"independent.co.uk\/author\/stuti-m\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45354,"friends_count":3059,"listed_count":174,"created_at":"Tue - Feb 05 12:08:34 +0000 2013","favourites_count":36558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":61620,"lang":null,"status":{"created_at":"Sat - Mar 26 05:53:17 +0000 2022","id":1507596530706182146,"id_str":"1507596530706182146","text":"RT - @Kum_Sambhav: This is a thread on how Facebook''s ad platform undercut political - competition in the world''s largest democracy. By giving\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kum_Sambhav","name":"Kumar - Sambhav","id":258681034,"id_str":"258681034","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:39:31 +0000 2022","id":1507577966250799111,"id_str":"1507577966250799111","text":"This - is a thread on how Facebook''s ad platform undercut political competition - in the world''s largest democracy. By\u2026 https:\/\/t.co\/OJmxTbowZj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OJmxTbowZj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507577966250799111","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1719,"favorite_count":4285,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1719,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500872471427579905\/YdEttlUE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500872471427579905\/YdEttlUE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1150779590\/1646244453","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1047646859500670977,"id_str":"1047646859500670977","name":"Garrett","screen_name":"gpow_","location":"Saginaw - County, MI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":359,"listed_count":0,"created_at":"Thu - Oct 04 00:37:30 +0000 2018","favourites_count":3107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"lang":null,"status":{"created_at":"Thu - Dec 30 03:34:13 +0000 2021","id":1476396177339867141,"id_str":"1476396177339867141","text":"RT - @frankiemacd: The Guy Acting Like a Moose https:\/\/t.co\/1dxBPEvvMT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"frankiemacd","name":"Frankie - MacDonald","id":72783659,"id_str":"72783659","indices":[3,15]}],"urls":[],"media":[{"id":1476267834200133637,"id_str":"1476267834200133637","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","url":"https:\/\/t.co\/1dxBPEvvMT","display_url":"pic.twitter.com\/1dxBPEvvMT","expanded_url":"https:\/\/twitter.com\/frankiemacd\/status\/1476268026639097860\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1476268026639097860,"source_status_id_str":"1476268026639097860","source_user_id":72783659,"source_user_id_str":"72783659"}]},"extended_entities":{"media":[{"id":1476267834200133637,"id_str":"1476267834200133637","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","url":"https:\/\/t.co\/1dxBPEvvMT","display_url":"pic.twitter.com\/1dxBPEvvMT","expanded_url":"https:\/\/twitter.com\/frankiemacd\/status\/1476268026639097860\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1476268026639097860,"source_status_id_str":"1476268026639097860","source_user_id":72783659,"source_user_id_str":"72783659","video_info":{"aspect_ratio":[16,9],"duration_millis":47588,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/480x270\/-9ns1VriL9yKTLjV.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/pl\/o0_GmitnHBvEtQXc.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/640x360\/UZreg9DrVuS-Mr_I.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/1280x720\/Q6fjfRovSCOyovdM.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 29 19:04:59 +0000 2021","id":1476268026639097860,"id_str":"1476268026639097860","text":"The - Guy Acting Like a Moose https:\/\/t.co\/1dxBPEvvMT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1476267834200133637,"id_str":"1476267834200133637","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","url":"https:\/\/t.co\/1dxBPEvvMT","display_url":"pic.twitter.com\/1dxBPEvvMT","expanded_url":"https:\/\/twitter.com\/frankiemacd\/status\/1476268026639097860\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1476267834200133637,"id_str":"1476267834200133637","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1476267834200133637\/pu\/img\/SOqqzcGvGNlVax_3.jpg","url":"https:\/\/t.co\/1dxBPEvvMT","display_url":"pic.twitter.com\/1dxBPEvvMT","expanded_url":"https:\/\/twitter.com\/frankiemacd\/status\/1476268026639097860\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":47588,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/480x270\/-9ns1VriL9yKTLjV.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/pl\/o0_GmitnHBvEtQXc.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/640x360\/UZreg9DrVuS-Mr_I.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1476267834200133637\/pu\/vid\/1280x720\/Q6fjfRovSCOyovdM.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"07d9ccd0bf084002","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ccd0bf084002.json","place_type":"poi","name":"Whitney - Pier","full_name":"Whitney Pier","country_code":"CA","country":"Canada","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-60.17877465624299,46.15792033874294],[-60.17877465624299,46.15792033874294],[-60.17877465624299,46.15792033874294],[-60.17877465624299,46.15792033874294]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":967,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":102,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1355038869654278147\/H8Ce1ny9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1355038869654278147\/H8Ce1ny9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1047646859500670977\/1644347138","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3729351314,"id_str":"3729351314","name":"Rachel - Gertz","screen_name":"rachelelianna","location":"Los Angeles, CA","description":"strategist - + producer \/\/ fmr. social everything @kcrw + @nhmla + more \/\/ I don\u2019t - tweet enough","url":"https:\/\/t.co\/Gi4pRERlxr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gi4pRERlxr","expanded_url":"http:\/\/rachelgertz.work","display_url":"rachelgertz.work","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":336,"friends_count":906,"listed_count":12,"created_at":"Tue - Sep 29 20:23:39 +0000 2015","favourites_count":2467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":857,"lang":null,"status":{"created_at":"Fri - Mar 04 00:30:04 +0000 2022","id":1499542656309166080,"id_str":"1499542656309166080","text":"@morgancohn - \u270a congrats!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"morgancohn","name":"Morgan - Cohn","id":31484979,"id_str":"31484979","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499506098327412738,"in_reply_to_status_id_str":"1499506098327412738","in_reply_to_user_id":31484979,"in_reply_to_user_id_str":"31484979","in_reply_to_screen_name":"morgancohn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149114638744707072\/KiEymfLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149114638744707072\/KiEymfLt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3729351314\/1452037427","profile_link_color":"CB4D34","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1264541091845386240,"id_str":"1264541091845386240","name":"\ufe0e - \ufe0e","screen_name":"tanmaiarora","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Sun - May 24 12:58:14 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488797217683275777\/97HGaQ9R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488797217683275777\/97HGaQ9R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1264541091845386240\/1643791875","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1063213322,"id_str":"1063213322","name":"Tulampa","screen_name":"chiralworld","location":"Nerdville, - baby!","description":"Geriatric millennial. Former MD. This is the counterfactual. - Stay happy and \u1e63e j\u1eb9j\u1eb9. Made in \ud83c\uddf3\ud83c\uddec. Worldwide - product l\u2019\u1ecdm\u1ecd. Child of Thanksgiving.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":553,"friends_count":382,"listed_count":3,"created_at":"Sat - Jan 05 15:12:52 +0000 2013","favourites_count":10970,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15835,"lang":null,"status":{"created_at":"Fri - Mar 25 14:35:47 +0000 2022","id":1507365635826855940,"id_str":"1507365635826855940","text":"Mitch - didn''t get to him https:\/\/t.co\/QpVZx7YbIN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QpVZx7YbIN","expanded_url":"https:\/\/share.newsbreak.com\/qiggz0b7","display_url":"share.newsbreak.com\/qiggz0b7","indices":[24,47]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302088495062814720\/L8dxgTiB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302088495062814720\/L8dxgTiB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1063213322\/1358110914","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252405753178136576,"id_str":"1252405753178136576","name":"earle","screen_name":"ilovemymom_1","location":"","description":"now - online!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":562,"listed_count":0,"created_at":"Tue - Apr 21 01:16:24 +0000 2020","favourites_count":23150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":339,"lang":null,"status":{"created_at":"Sat - Mar 26 03:34:51 +0000 2022","id":1507561695279034377,"id_str":"1507561695279034377","text":"@JoJoFromJerz - he aint reading this bro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoJoFromJerz","name":"Jo - \ud83c\udf3b","id":818893114979061761,"id_str":"818893114979061761","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507509890322939908,"in_reply_to_status_id_str":"1507509890322939908","in_reply_to_user_id":818893114979061761,"in_reply_to_user_id_str":"818893114979061761","in_reply_to_screen_name":"JoJoFromJerz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429829633265049614\/9hkN4w58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429829633265049614\/9hkN4w58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1252405753178136576\/1598625839","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1327424887925874688,"id_str":"1327424887925874688","name":"Jame - Worth","screen_name":"WorthJame","location":"","description":"be a smart boy","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":4456,"listed_count":0,"created_at":"Sat - Nov 14 01:35:48 +0000 2020","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4516272028,"id_str":"4516272028","name":"\u0647\u0645\u0648\u0633 - \u0627\u0644\u0634\u0631\u064a\u0641\u060c","screen_name":"hkaram6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":35,"listed_count":0,"created_at":"Thu - Dec 17 17:53:12 +0000 2015","favourites_count":207,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":834626444,"id_str":"834626444","name":"Anna - Moneymaker","screen_name":"AnnaMoneymaker","location":"","description":"Getty - Images staff photographer in Washington DC","url":"https:\/\/t.co\/072X2NRpw3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/072X2NRpw3","expanded_url":"https:\/\/instagram.com\/anna.money?utm_medium=copy_link","display_url":"instagram.com\/anna.money?utm\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3127,"friends_count":790,"listed_count":88,"created_at":"Thu - Sep 20 02:53:13 +0000 2012","favourites_count":19349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1119,"lang":null,"status":{"created_at":"Fri - Mar 25 15:50:49 +0000 2022","id":1507384518726103042,"id_str":"1507384518726103042","text":"RT - @GettyImagesNews: People walk along the Tidal Basin as they visit the blooming - cherry blossoms in the early morning in Washington, DC \ud83d\udcf7:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GettyImagesNews","name":"Getty - Images News","id":22127274,"id_str":"22127274","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:50:03 +0000 2022","id":1507384323678347294,"id_str":"1507384323678347294","text":"People - walk along the Tidal Basin as they visit the blooming cherry blossoms in the - early morning in Washington, DC\u2026 https:\/\/t.co\/Kgu4Dhrxtc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kgu4Dhrxtc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507384323678347294","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436322206242459650\/C4VfKeJa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436322206242459650\/C4VfKeJa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834626444\/1631280875","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":241983890,"id_str":"241983890","name":"Mike - Walker","screen_name":"New_Narrative","location":"On the road","description":"Former - acting SecArmy & deputy FEMA director narrative on analyzing threats, managing - hazards, countering radicalization & developing leaders","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13186,"friends_count":11,"listed_count":565,"created_at":"Sun - Jan 23 17:07:48 +0000 2011","favourites_count":2862,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":705749,"lang":null,"status":{"created_at":"Sat - Mar 26 10:46:53 +0000 2022","id":1507670416260747268,"id_str":"1507670416260747268","text":"RT - @JamWaterhouse: Russian troops have entered the city of Slavutych - where - many workers of the Chernobyl nuclear power plant live - loca\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamWaterhouse","name":"James - Waterhouse","id":259662060,"id_str":"259662060","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:25:40 +0000 2022","id":1507649979158077441,"id_str":"1507649979158077441","text":"Russian - troops have entered the city of Slavutych - where many workers of the Chernobyl - nuclear power plant live -\u2026 https:\/\/t.co\/OYTFiPTbT8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OYTFiPTbT8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507649979158077441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"084d0d0155787e9d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/084d0d0155787e9d.json","place_type":"country","name":"Ukraine","full_name":"Ukraine","country_code":"UA","country":"Ukraine","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[22.1357201,44.386383],[40.227172,44.386383],[40.227172,52.379475],[22.1357201,52.379475]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":23,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1548673665\/megaphone-kid-cropped_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1548673665\/megaphone-kid-cropped_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241983890\/1499189166","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198893702753771520,"id_str":"1198893702753771520","name":"HustleNeverDieStore4Life","screen_name":"AmaniEliasNgowi","location":"HustleNeverDieStore.","description":"Businessman,Email:Amanieliasngowi@gmail.Com,No - Body Can Fullfill Your Dreams Except You Have Yourself,Keep God Above All - Things.","url":"https:\/\/t.co\/IgqbeqFdJ3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IgqbeqFdJ3","expanded_url":"https:\/\/www.instagram.com\/amanieliasngowi\/","display_url":"instagram.com\/amanieliasngow\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":739,"friends_count":3201,"listed_count":1,"created_at":"Mon - Nov 25 09:19:25 +0000 2019","favourites_count":1941,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2594,"lang":null,"status":{"created_at":"Thu - Mar 24 05:09:56 +0000 2022","id":1506860847842398215,"id_str":"1506860847842398215","text":"@vee__victoria - Ni viganja na mitama lazima vihusike","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vee__victoria","name":"Vee\ud83c\udf39","id":1382277088510500872,"id_str":"1382277088510500872","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506604705014861828,"in_reply_to_status_id_str":"1506604705014861828","in_reply_to_user_id":1382277088510500872,"in_reply_to_user_id_str":"1382277088510500872","in_reply_to_screen_name":"vee__victoria","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504391541330259973\/zWTsEanH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504391541330259973\/zWTsEanH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198893702753771520\/1601317855","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":313865446,"id_str":"313865446","name":"R\u00e9amonn - Smith","screen_name":"RaySmithLaw","location":"Dublin, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":409,"friends_count":689,"listed_count":0,"created_at":"Thu - Jun 09 10:23:20 +0000 2011","favourites_count":1491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1553,"lang":null,"status":{"created_at":"Mon - Mar 21 18:00:52 +0000 2022","id":1505967694432161792,"id_str":"1505967694432161792","text":"RT - @CNN: \"I remember how the Germans attacked us. They didn''t mess with us - like this.\"\n\nInternational security editor @npwcnn speaks to two\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]},{"screen_name":"npwcnn","name":"Nick - Paton Walsh","id":367086404,"id_str":"367086404","indices":[118,125]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 11:35:38 +0000 2022","id":1505870745934741504,"id_str":"1505870745934741504","text":"\"I - remember how the Germans attacked us. They didn''t mess with us like this.\"\n\nInternational - security editor\u2026 https:\/\/t.co\/zJ7LiqYtMe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zJ7LiqYtMe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505870745934741504","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/www.snapstream.com\" rel=\"nofollow\"\u003eSnapStream TV Search\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1202,"favorite_count":2289,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1202,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/696644726523568128\/IogyHtnI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/696644726523568128\/IogyHtnI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":853904439362674688,"id_str":"853904439362674688","name":"Michele - Simone","screen_name":"MICHELESIMONEit","location":"","description":"24 anni, - di #Bologna, due lauree in #Storia (ora al master). Blogger, SMM, musicista, - runner, ciclista. Amo i viaggi, fare foto e lo sport. Anche su @MicSimBlog","url":"https:\/\/t.co\/LpfDTetCdr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LpfDTetCdr","expanded_url":"https:\/\/linktr.ee\/michelesimone","display_url":"linktr.ee\/michelesimone","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3311,"friends_count":4218,"listed_count":5,"created_at":"Mon - Apr 17 09:34:17 +0000 2017","favourites_count":27743,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4194,"lang":null,"status":{"created_at":"Thu - Mar 24 22:10:38 +0000 2022","id":1507117713910603783,"id_str":"1507117713910603783","text":"Senza - parole. L''Italia ancora una volta non si qualifica ai Mondiali. Tante, tantissime - occasioni, ma tutte sprecat\u2026 https:\/\/t.co\/3CQ7ehfKX3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3CQ7ehfKX3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507117713910603783","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290197897917718528\/277L0tMH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290197897917718528\/277L0tMH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853904439362674688\/1634244685","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4551285255,"id_str":"4551285255","name":"Danny - Tsoi","screen_name":"danny_tsoi","location":"","description":"\u201cTo maintain - the state of doubt and to carry on systematic and protracted inquiry\u2014these - are the essentials of thinking.\u201d - John Dewey","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":5003,"listed_count":9,"created_at":"Mon - Dec 21 00:06:01 +0000 2015","favourites_count":6850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":335,"lang":null,"status":{"created_at":"Wed - Mar 02 01:38:19 +0000 2022","id":1498835056860745733,"id_str":"1498835056860745733","text":"https:\/\/t.co\/LsYrN2RJvc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LsYrN2RJvc","expanded_url":"https:\/\/www.whitehouse.gov\/briefing-room\/statements-releases\/2022\/03\/01\/fact-sheet-president-biden-to-announce-strategy-to-address-our-national-mental-health-crisis-as-part-of-unity-agenda-in-his-first-state-of-the-union","display_url":"whitehouse.gov\/briefing-room\/\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332534806048104449\/G9zwEaOG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332534806048104449\/G9zwEaOG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":820507214,"id_str":"820507214","name":"Grin","screen_name":"grin_edu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":525,"listed_count":0,"created_at":"Wed - Sep 12 23:12:52 +0000 2012","favourites_count":119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Sat - Mar 26 10:29:28 +0000 2022","id":1507666035801001984,"id_str":"1507666035801001984","text":"@jesflres - Me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498061854379286535\/nSnFNbqa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498061854379286535\/nSnFNbqa_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33669095,"id_str":"33669095","name":"Zach - Krupp","screen_name":"ZachKrupp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":39,"friends_count":166,"listed_count":0,"created_at":"Mon - Apr 20 21:23:03 +0000 2009","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356138436110004225\/LlfhOSIz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356138436110004225\/LlfhOSIz_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1328695308021186560,"id_str":"1328695308021186560","name":"semel - emissum volat irrevocabile verbum","screen_name":"dagasokogaii","location":"","description":"memos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":1559,"listed_count":0,"created_at":"Tue - Nov 17 13:43:55 +0000 2020","favourites_count":506,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":664,"lang":null,"status":{"created_at":"Wed - Mar 09 15:32:46 +0000 2022","id":1501581770134749188,"id_str":"1501581770134749188","text":"https:\/\/t.co\/91iSRbE9D0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/91iSRbE9D0","expanded_url":"https:\/\/m.youtube.com\/watch?v=qRKNw477onU","display_url":"m.youtube.com\/watch?v=qRKNw4\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1414979783021056000\/x0SgZHfu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1414979783021056000\/x0SgZHfu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":5210461,"id_str":"5210461","name":"potamus","screen_name":"potamus","location":"","description":"Mangalorean - NRI. Love posting reddit comment puns.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":107,"listed_count":6,"created_at":"Thu - Apr 19 10:09:59 +0000 2007","favourites_count":983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4191,"lang":null,"status":{"created_at":"Sat - Mar 26 06:54:15 +0000 2022","id":1507611872790388737,"id_str":"1507611872790388737","text":"RT - @Reuters: A huge plume of black smoke could be seen rising over the Red Sea - city after Yemen''s Houthis launched attacks on Saudi energy\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:25:00 +0000 2022","id":1507544113809219588,"id_str":"1507544113809219588","text":"A - huge plume of black smoke could be seen rising over the Red Sea city after - Yemen''s Houthis launched attacks on Sa\u2026 https:\/\/t.co\/aa1ncN8HWQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aa1ncN8HWQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507544113809219588","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":741,"favorite_count":1392,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":741,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080904176\/soutparkme_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080904176\/soutparkme_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5210461\/1518408429","profile_link_color":"1B95E0","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":377686490,"id_str":"377686490","name":"Kate - Gordon","screen_name":"tembrina","location":"Washington DC","description":"Mumble - Grumble Complain Wallow Hope Despair Worry Vote. Engaging with the world with - humor and hope. Opinions my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":267,"listed_count":2,"created_at":"Wed - Sep 21 23:36:06 +0000 2011","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":195,"lang":null,"status":{"created_at":"Mon - Mar 21 15:40:26 +0000 2022","id":1505932352626864128,"id_str":"1505932352626864128","text":"@LukeClippinger @Willcsmithjr - @SenBillFerg I am a Montgomery County resident and I believe all Marylanders - have th\u2026 https:\/\/t.co\/c1ta5qLW8W","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LukeClippinger","name":"Luke - Clippinger","id":48179956,"id_str":"48179956","indices":[0,15]},{"screen_name":"Willcsmithjr","name":"Senator - Will Smith (District 20)","id":18081053,"id_str":"18081053","indices":[17,30]},{"screen_name":"SenBillFerg","name":"Bill - Ferguson","id":12343872,"id_str":"12343872","indices":[31,43]}],"urls":[{"url":"https:\/\/t.co\/c1ta5qLW8W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505932352626864128","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":48179956,"in_reply_to_user_id_str":"48179956","in_reply_to_screen_name":"LukeClippinger","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2546763667\/e8rqd5tyfow2k99ax3nq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2546763667\/e8rqd5tyfow2k99ax3nq_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1318474597147250690,"id_str":"1318474597147250690","name":"Regina","screen_name":"MariaReginaDMU","location":"Leicester, - England","description":"Journalism student at DMU","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Tue - Oct 20 08:50:27 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1330183978222051340\/XnZoGnM6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1330183978222051340\/XnZoGnM6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318474597147250690\/1603364546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":217056503,"id_str":"217056503","name":"YeahWellThatsJustLikeYourOpinionMan","screen_name":"ataylor3133","location":"San - Clemente, CA & Las Vegas","description":"Retired: Dad, Surfer & Poker Player, - BS CompSci, 25 yrs Engineering Software Sales & MGMT\n#VGK #goKNIGHTSgo #LAChargers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":1405,"listed_count":6,"created_at":"Thu - Nov 18 13:25:05 +0000 2010","favourites_count":13177,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16992,"lang":null,"status":{"created_at":"Fri - Mar 25 17:42:51 +0000 2022","id":1507412710912249856,"id_str":"1507412710912249856","text":"@RepRonnyJackson - @HASCRepublicans Lies as usual. Biden did not propose a cut, much to many\u2019s - disapproval","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepRonnyJackson","name":"Ronny - Jackson","id":1341903465610686464,"id_str":"1341903465610686464","indices":[0,16]},{"screen_name":"HASCRepublicans","name":"Armed - Services GOP","id":20192403,"id_str":"20192403","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507098634449522693,"in_reply_to_status_id_str":"1507098634449522693","in_reply_to_user_id":1341903465610686464,"in_reply_to_user_id_str":"1341903465610686464","in_reply_to_screen_name":"RepRonnyJackson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826126993053798401\/MWfwFcB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826126993053798401\/MWfwFcB3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217056503\/1402323877","profile_link_color":"1B95E0","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1329635913815658499,"id_str":"1329635913815658499","name":"US - Reader","screen_name":"UsReader","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":36,"listed_count":0,"created_at":"Fri - Nov 20 04:02:06 +0000 2020","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":77,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329636407183196160\/NyJG1O00_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329636407183196160\/NyJG1O00_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1329635913815658499\/1607736429","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":995777212740751360,"id_str":"995777212740751360","name":"Chris - Chance \ud83c\uddfa\ud83c\udde6","screen_name":"RudHayes1876","location":"","description":"Politics - mostly. I\u2019m obnoxiously newsy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3073,"friends_count":4984,"listed_count":0,"created_at":"Sun - May 13 21:26:02 +0000 2018","favourites_count":27864,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17556,"lang":null,"status":{"created_at":"Fri - Mar 25 19:38:40 +0000 2022","id":1507441856224940045,"id_str":"1507441856224940045","text":"RT - @evanvucci: President Joe Biden talks with members of the 82nd Airborne Division - in Jasionka, Poland. https:\/\/t.co\/xeA8lbQ8sq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"evanvucci","name":"Evan - Vucci","id":17092916,"id_str":"17092916","indices":[3,13]}],"urls":[],"media":[{"id":1507371046130929672,"id_str":"1507371046130929672","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","url":"https:\/\/t.co\/xeA8lbQ8sq","display_url":"pic.twitter.com\/xeA8lbQ8sq","expanded_url":"https:\/\/twitter.com\/evanvucci\/status\/1507371059808460805\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507371059808460805,"source_status_id_str":"1507371059808460805","source_user_id":17092916,"source_user_id_str":"17092916"}]},"extended_entities":{"media":[{"id":1507371046130929672,"id_str":"1507371046130929672","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","url":"https:\/\/t.co\/xeA8lbQ8sq","display_url":"pic.twitter.com\/xeA8lbQ8sq","expanded_url":"https:\/\/twitter.com\/evanvucci\/status\/1507371059808460805\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507371059808460805,"source_status_id_str":"1507371059808460805","source_user_id":17092916,"source_user_id_str":"17092916"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:57:20 +0000 2022","id":1507371059808460805,"id_str":"1507371059808460805","text":"President - Joe Biden talks with members of the 82nd Airborne Division in Jasionka, Poland. - https:\/\/t.co\/xeA8lbQ8sq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507371046130929672,"id_str":"1507371046130929672","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","url":"https:\/\/t.co\/xeA8lbQ8sq","display_url":"pic.twitter.com\/xeA8lbQ8sq","expanded_url":"https:\/\/twitter.com\/evanvucci\/status\/1507371059808460805\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507371046130929672,"id_str":"1507371046130929672","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtB-uVX0AgKWef.jpg","url":"https:\/\/t.co\/xeA8lbQ8sq","display_url":"pic.twitter.com\/xeA8lbQ8sq","expanded_url":"https:\/\/twitter.com\/evanvucci\/status\/1507371059808460805\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3747,"favorite_count":26440,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3747,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486247119040176135\/YDK3u8x5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486247119040176135\/YDK3u8x5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995777212740751360\/1645755073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":996186403984752641,"id_str":"996186403984752641","name":"San - Francisco","screen_name":"T1003xy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":3,"listed_count":0,"created_at":"Tue - May 15 00:32:01 +0000 2018","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":null,"status":{"created_at":"Wed - Nov 03 20:45:54 +0000 2021","id":1455999702625779714,"id_str":"1455999702625779714","text":"new - reply reply","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1455999701212270592,"in_reply_to_status_id_str":"1455999701212270592","in_reply_to_user_id":996186403984752641,"in_reply_to_user_id_str":"996186403984752641","in_reply_to_screen_name":"T1003xy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284310531168333825\/mlW0UPvN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284310531168333825\/mlW0UPvN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2614336364,"id_str":"2614336364","name":"Mike - Ekholm","screen_name":"ThisIsNalez","location":"Richfield, MN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":123,"listed_count":0,"created_at":"Wed - Jul 09 22:31:37 +0000 2014","favourites_count":101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":517,"lang":null,"status":{"created_at":"Sun - Feb 27 16:08:08 +0000 2022","id":1497966792613974018,"id_str":"1497966792613974018","text":"@JetTipNet - https:\/\/t.co\/QU634CMza2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JetTipNet","name":"JetTip","id":845005322720817154,"id_str":"845005322720817154","indices":[0,10]}],"urls":[],"media":[{"id":1497966782837141516,"id_str":"1497966782837141516","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FMnY2jhXsAweKTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FMnY2jhXsAweKTi.jpg","url":"https:\/\/t.co\/QU634CMza2","display_url":"pic.twitter.com\/QU634CMza2","expanded_url":"https:\/\/twitter.com\/ThisIsNalez\/status\/1497966792613974018\/photo\/1","type":"photo","sizes":{"medium":{"w":292,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":292,"h":164,"resize":"fit"},"small":{"w":292,"h":164,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1497966782837141516,"id_str":"1497966782837141516","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FMnY2jhXsAweKTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FMnY2jhXsAweKTi.jpg","url":"https:\/\/t.co\/QU634CMza2","display_url":"pic.twitter.com\/QU634CMza2","expanded_url":"https:\/\/twitter.com\/ThisIsNalez\/status\/1497966792613974018\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":292,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":292,"h":164,"resize":"fit"},"small":{"w":292,"h":164,"resize":"fit"}},"video_info":{"aspect_ratio":[73,41],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FMnY2jhXsAweKTi.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497960174841221120,"in_reply_to_status_id_str":"1497960174841221120","in_reply_to_user_id":845005322720817154,"in_reply_to_user_id_str":"845005322720817154","in_reply_to_screen_name":"JetTipNet","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130652216304590848\/VJy95mq5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130652216304590848\/VJy95mq5_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15261151,"id_str":"15261151","name":"Richard - Hofer","screen_name":"rhofer","location":"Monrovia, California","description":"I''m - a husband, a father (twice), a JPLer, and a Wolverine. I make rockets for - a living.","url":"http:\/\/t.co\/I0iWB6DAR0","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/I0iWB6DAR0","expanded_url":"http:\/\/richard.hofer.com","display_url":"richard.hofer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":182,"listed_count":2,"created_at":"Sat - Jun 28 06:05:09 +0000 2008","favourites_count":1145,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":458,"lang":null,"status":{"created_at":"Sun - Feb 06 03:38:55 +0000 2022","id":1490168097981960200,"id_str":"1490168097981960200","text":"This - is pretty awesome art https:\/\/t.co\/IcAg3aJupS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IcAg3aJupS","expanded_url":"https:\/\/twitter.com\/EuropaClipper\/status\/1489736347254280193","display_url":"twitter.com\/EuropaClipper\/\u2026","indices":[27,50]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1489736347254280193,"quoted_status_id_str":"1489736347254280193","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/81838036\/20080108_Richard_04__Large__normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/81838036\/20080108_Richard_04__Large__normal.JPG","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305004987739779072,"id_str":"1305004987739779072","name":"Muhammad - Waqas","screen_name":"Muhamma18632811","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":165,"listed_count":0,"created_at":"Sun - Sep 13 04:49:08 +0000 2020","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":275,"lang":null,"status":{"created_at":"Fri - Mar 18 05:45:43 +0000 2022","id":1504695524770955305,"id_str":"1504695524770955305","text":"https:\/\/t.co\/DmqJH0RZCQ - https:\/\/t.co\/20GrzDj0jH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DmqJH0RZCQ","expanded_url":"https:\/\/share.pubgameshowtime.com\/showimage.php?cdn=2&gameid=1320","display_url":"share.pubgameshowtime.com\/showimage.php?\u2026","indices":[0,23]}],"media":[{"id":1504695501647757325,"id_str":"1504695501647757325","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHAlibXwA0ySxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHAlibXwA0ySxD.jpg","url":"https:\/\/t.co\/20GrzDj0jH","display_url":"pic.twitter.com\/20GrzDj0jH","expanded_url":"https:\/\/twitter.com\/Muhamma18632811\/status\/1504695524770955305\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":540,"resize":"fit"},"large":{"w":1309,"h":589,"resize":"fit"},"small":{"w":680,"h":306,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504695501647757325,"id_str":"1504695501647757325","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FOHAlibXwA0ySxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOHAlibXwA0ySxD.jpg","url":"https:\/\/t.co\/20GrzDj0jH","display_url":"pic.twitter.com\/20GrzDj0jH","expanded_url":"https:\/\/twitter.com\/Muhamma18632811\/status\/1504695524770955305\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":540,"resize":"fit"},"large":{"w":1309,"h":589,"resize":"fit"},"small":{"w":680,"h":306,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1305005977603842048\/K1ea77ZO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1305005977603842048\/K1ea77ZO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875714363029688320,"id_str":"875714363029688320","name":"\u0926\u093f\u0935\u093e\u0915\u0930 - \u092e\u0939\u0924\u094b","screen_name":"DiwakarMahto6","location":"Gola, - India","description":"\u0926\u093f\u0935\u093e\u0915\u0930 \u091c\u0940","url":"https:\/\/t.co\/XatlTC381k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XatlTC381k","expanded_url":"http:\/\/www.diwakar.com","display_url":"diwakar.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2036,"friends_count":4633,"listed_count":0,"created_at":"Fri - Jun 16 13:59:08 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Fri - Jan 07 08:15:45 +0000 2022","id":1479366129109721088,"id_str":"1479366129109721088","text":"@kajal_pandit_ - Jay Shree ram","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kajal_pandit_","name":"Dr - kajal pandit \u0950","id":1142435401900052480,"id_str":"1142435401900052480","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478899378613997569,"in_reply_to_status_id_str":"1478899378613997569","in_reply_to_user_id":1142435401900052480,"in_reply_to_user_id_str":"1142435401900052480","in_reply_to_screen_name":"kajal_pandit_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458795705229721603\/GfwZYHGk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458795705229721603\/GfwZYHGk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875714363029688320\/1531362311","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2667497358,"id_str":"2667497358","name":"Debra - Samahon","screen_name":"DebraSmhon","location":"NWI","description":"Your average, - everyday antifascist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":80,"listed_count":0,"created_at":"Mon - Jul 21 23:40:29 +0000 2014","favourites_count":584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Tue - Jan 05 11:43:09 +0000 2021","id":1346421977158967296,"id_str":"1346421977158967296","text":"@twitrathon - @JPayne588 @mehdirhasan @IlhanMN I\u2019m sure she walks to work every day - in those heels with that glock, haha!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"twitrathon","name":"The - Pandemic Times","id":251699718,"id_str":"251699718","indices":[0,11]},{"screen_name":"JPayne588","name":"Payne588","id":1022633334923571200,"id_str":"1022633334923571200","indices":[12,22]},{"screen_name":"mehdirhasan","name":"Mehdi - Hasan","id":130557513,"id_str":"130557513","indices":[23,35]},{"screen_name":"IlhanMN","name":"Ilhan - Omar","id":783792992,"id_str":"783792992","indices":[36,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1346193623914844164,"in_reply_to_status_id_str":"1346193623914844164","in_reply_to_user_id":251699718,"in_reply_to_user_id_str":"251699718","in_reply_to_screen_name":"twitrathon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329840323841961985\/gKho0PKo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329840323841961985\/gKho0PKo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":67946122,"id_str":"67946122","name":"Atharvaz","screen_name":"Sanatanai07","location":"","description":"Law - & Advocacy, Political Analyst, Consultancy,Geopolitics, Regional & International - Affairs,ClimateAction, Sustainable Environment ;Tea Addict, Photography.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4017,"friends_count":4888,"listed_count":225,"created_at":"Sat - Aug 22 18:10:31 +0000 2009","favourites_count":77408,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33251,"lang":null,"status":{"created_at":"Sat - Mar 26 10:09:08 +0000 2022","id":1507660917328457729,"id_str":"1507660917328457729","text":"RT - @RajivMessage: National Sanskrit University wants to translate THE BATTLE - FOR SANSKRIT into Sanskrit. I got a letter asking for permissi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RajivMessage","name":"Rajiv - Malhotra","id":298625735,"id_str":"298625735","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:52:47 +0000 2022","id":1507641702877642755,"id_str":"1507641702877642755","text":"National - Sanskrit University wants to translate THE BATTLE FOR SANSKRIT into Sanskrit. - I got a letter asking for pe\u2026 https:\/\/t.co\/BZKWSi2Vc9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BZKWSi2Vc9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507641702877642755","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":373,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":94,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484117410252996608\/4KxMwP4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484117410252996608\/4KxMwP4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67946122\/1395466358","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":62688255,"id_str":"62688255","name":"Mr. - X","screen_name":"gasparMoor","location":"Washington, DC","description":"The - unknown.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":86,"listed_count":0,"created_at":"Tue - Aug 04 02:05:35 +0000 2009","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":221,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250070661084708870\/ne_tDlNn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250070661084708870\/ne_tDlNn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1257743120717971460,"id_str":"1257743120717971460","name":"\u2728Alicia - Kitchens\ud83d\udc99\ud83c\udf0a","screen_name":"sunflowersoulxx","location":"Fruit - Cove, FL","description":"\u2609\u2649\ufe0e\u263e\u264e\ufe0e^\u2650\ufe0e - #BLM #LGBTQ #RESIST #RESISTER","url":"https:\/\/t.co\/ydmABXlrwb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ydmABXlrwb","expanded_url":"https:\/\/www.redbubble.com\/people\/SunflowerSoulx\/explore?asc=u&page=1&sortOrder=recent","display_url":"redbubble.com\/people\/Sunflow\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":323,"friends_count":835,"listed_count":0,"created_at":"Tue - May 05 18:45:11 +0000 2020","favourites_count":7008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1899,"lang":null,"status":{"created_at":"Sat - Mar 12 22:05:11 +0000 2022","id":1502767687088410628,"id_str":"1502767687088410628","text":"@JaxPlantSwap - Bringing by some jade & purple passion today!! Gorgeous set up.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JaxPlantSwap","name":"DUVAL - PLANT SWAP STANDS","id":1291929474624356352,"id_str":"1291929474624356352","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1304874051513573382,"in_reply_to_status_id_str":"1304874051513573382","in_reply_to_user_id":1291929474624356352,"in_reply_to_user_id_str":"1291929474624356352","in_reply_to_screen_name":"JaxPlantSwap","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1394510761347649538\/6QhzeVpO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1394510761347649538\/6QhzeVpO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257743120717971460\/1593706682","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312463636,"id_str":"1312463636","name":"Juvanie - (she\/her)","screen_name":"juvaniepiquant","location":"Brooklyn, NY","description":"a - fan of coffee & the empowerment of women. formerly: @cuny trustee, @usscuny - , @21in21, & @nypirg (perspectives \/ hot takes are my own views)","url":"https:\/\/t.co\/YcQh8iyjlV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YcQh8iyjlV","expanded_url":"https:\/\/www.linkedin.com\/in\/juvanie-piquant-8658b8189","display_url":"linkedin.com\/in\/juvanie-piq\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2145,"friends_count":1894,"listed_count":11,"created_at":"Fri - Mar 29 03:32:16 +0000 2013","favourites_count":40039,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43548,"lang":null,"status":{"created_at":"Fri - Mar 25 21:24:38 +0000 2022","id":1507468523290955780,"id_str":"1507468523290955780","text":"Sending - love to everyone who will be spending the next two days petitioning\ud83e\udd72","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501696278480273410\/k9puoyAq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501696278480273410\/k9puoyAq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312463636\/1644960940","profile_link_color":"860F9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223017428277440512,"id_str":"1223017428277440512","name":"matene","screen_name":"itsmatene","location":"New - York, NY","description":"she\/her \u2022 \u270a\ud83c\udfff\u2022 writer\/abolitionist - \u2022 MA candidate @TheNewSchool \u2022 Fordham alum","url":"https:\/\/t.co\/prWzdQbQvZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/prWzdQbQvZ","expanded_url":"https:\/\/linktr.ee\/letstalkpalestine","display_url":"linktr.ee\/letstalkpalest\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":229,"listed_count":0,"created_at":"Thu - Jan 30 22:58:32 +0000 2020","favourites_count":22440,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":639,"lang":null,"status":{"created_at":"Tue - Mar 22 04:15:06 +0000 2022","id":1506122270980427778,"id_str":"1506122270980427778","text":"RT - @SocialistMMA: Joe Biden is starving 3.5 MILLION CHILDREN in Afghanistan but - go ahead and tell me more about the evils of Putin shitlibs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SocialistMMA","name":"Revolutionary - Blackout Network\ud83e\udd4b","id":419849905,"id_str":"419849905","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 17:14:10 +0000 2022","id":1505955942432657413,"id_str":"1505955942432657413","text":"Joe - Biden is starving 3.5 MILLION CHILDREN in Afghanistan but go ahead and tell - me more about the evils of Putin shitlibs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":463,"favorite_count":1907,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":463,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492584026745540608\/EXR-P15b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492584026745540608\/EXR-P15b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1223017428277440512\/1646108469","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2393508282,"id_str":"2393508282","name":"Rudy - Kuhn","screen_name":"kuhn_rhk421","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":102,"listed_count":0,"created_at":"Mon - Mar 17 01:03:52 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1184908413328867328,"id_str":"1184908413328867328","name":"Hussamalddin - Gilly \u062d\u0633\u0627\u0645 \u0627\u0644\u062f\u064a\u0646 \u0627\u0644\u06af\u0644\u064a","screen_name":"HussamalddinG","location":"Kurdistan - Region_Iraq","description":"Asst. Professor, PH. D. in Poltical Science, College - of Political Science @ Salahaddin University_Erbil","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":217,"listed_count":0,"created_at":"Thu - Oct 17 19:07:44 +0000 2019","favourites_count":457,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72,"lang":null,"status":{"created_at":"Tue - Sep 28 06:02:49 +0000 2021","id":1442731502849175552,"id_str":"1442731502849175552","text":"@Mohali_Aliraqi - \u062e\u064a\u0631\u064f \u062e\u0644\u0641\u064d \u0644\u0650\u062e\u064a\u0631 - \u0633\u0644\u0641. \u062d\u062a\u0649 \u0623\u0646\u0647 \u0623\u0648\u062a\u064a - \u0646\u0635\u064a\u0628\u0627\u064b \u0648\u0627\u0641\u0631\u0627\u064b - \u0645\u0646 \u0628\u0635\u064a\u0631\u0629 \u0627\u0644\u0631\u0627\u062d\u0644 - \u0633\u0639\u0648\u062f \u0627\u0644\u0641\u064a\u0635\u0644 (\u0631\u062d\u0645\u0647 - \u0627\u0644\u0644\u0647)\u060c \u0641\u0642\u062f \u0643\u0627\u0646 \u0623\u0633\u2026 - https:\/\/t.co\/lBhs7DiBY9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mohali_Aliraqi","name":"\ud835\udd10\ud835\udd2c\ud835\udd25\ud835\udd1e\ud835\udd2a\ud835\udd2a\ud835\udd22\ud835\udd21 - \ud835\udd04\ud835\udd29\ud835\udd26 \ud835\udd04\ud835\udd29\ud835\udd26\ud835\udd2f\ud835\udd1e\ud835\udd2e\ud835\udd26 - \ud83c\udde9\ud83c\uddea","id":1110301898177949696,"id_str":"1110301898177949696","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/lBhs7DiBY9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1442731502849175552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1442236702723133442,"in_reply_to_status_id_str":"1442236702723133442","in_reply_to_user_id":1110301898177949696,"in_reply_to_user_id_str":"1110301898177949696","in_reply_to_screen_name":"Mohali_Aliraqi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184909092139220992\/LkzDPmca_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184909092139220992\/LkzDPmca_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":8064472,"id_str":"8064472","name":"Shelton - Man","screen_name":"fksouthwest","location":"Santa Fe, NM and Shelton, WA","description":"Voting - rights advocate, NeverTrump, proud Teamster, retired teacher, fully vaccinated","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":457,"listed_count":0,"created_at":"Wed - Aug 08 20:58:29 +0000 2007","favourites_count":4152,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":530,"lang":null,"status":{"created_at":"Tue - Mar 15 19:06:34 +0000 2022","id":1503809901147004929,"id_str":"1503809901147004929","text":"RT - @StephenAtHome: Tom Brady got one taste of what it''s like to help kids with - math homework and decided to return to being tackled by the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenAtHome","name":"Stephen - Colbert","id":16303106,"id_str":"16303106","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 00:41:36 +0000 2022","id":1503531827654541318,"id_str":"1503531827654541318","text":"Tom - Brady got one taste of what it''s like to help kids with math homework and - decided to return to being tackled by\u2026 https:\/\/t.co\/tvJ3CNRFGR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tvJ3CNRFGR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503531827654541318","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5812,"favorite_count":77758,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5812,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338215092299579392\/8z72GCyU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338215092299579392\/8z72GCyU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8064472\/1567983043","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261305318434365440,"id_str":"1261305318434365440","name":"Mark - Scheepers","screen_name":"MarkCharmed1","location":"","description":"I Work! - Come from a family of grafters!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":422,"listed_count":0,"created_at":"Fri - May 15 14:40:08 +0000 2020","favourites_count":1058,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":622,"lang":null,"status":{"created_at":"Tue - Mar 22 13:49:04 +0000 2022","id":1506266714400563201,"id_str":"1506266714400563201","text":"Is - it just me or SHOULD @LASHANALYNCH BE THE NEXT #007 #JamesBond","truncated":false,"entities":{"hashtags":[{"text":"JamesBond","indices":[55,65]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261306865989926913\/jHBCHstk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261306865989926913\/jHBCHstk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261305318434365440\/1589554486","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305528368713076738,"id_str":"1305528368713076738","name":"Whatnow2020","screen_name":"Whatnow2022","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":176,"listed_count":1,"created_at":"Mon - Sep 14 15:26:47 +0000 2020","favourites_count":636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2879,"lang":null,"status":{"created_at":"Fri - Mar 25 23:43:01 +0000 2022","id":1507503350157357057,"id_str":"1507503350157357057","text":"@natsechobbyist - She\"s just like trump, talking just to hear herself making noise.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"natsechobbyist","name":"Rachel - Vindman \ud83c\udf3b","id":1192160073897988096,"id_str":"1192160073897988096","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506821422827646976,"in_reply_to_status_id_str":"1506821422827646976","in_reply_to_user_id":1192160073897988096,"in_reply_to_user_id_str":"1192160073897988096","in_reply_to_screen_name":"natsechobbyist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":466695362,"id_str":"466695362","name":"Jim - McAuley","screen_name":"jim_mcauley","location":"Huddersfield","description":"Professor - of Political Sociology and Irish Studies University of Huddersfield. Views - close up and personal. Retweets not necessarily endorsements, etc.","url":"http:\/\/t.co\/zU7hAL90yU","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/zU7hAL90yU","expanded_url":"http:\/\/www.hud.ac.uk","display_url":"hud.ac.uk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":988,"friends_count":3789,"listed_count":13,"created_at":"Tue - Jan 17 17:55:25 +0000 2012","favourites_count":412,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1009,"lang":null,"status":{"created_at":"Tue - Mar 08 21:29:12 +0000 2022","id":1501309081323286539,"id_str":"1501309081323286539","text":"RT - @bmay: What a surprise. https:\/\/t.co\/focTpSkxRk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bmay","name":"Brendan - May \ud83c\uddfa\ud83c\udde6","id":12321952,"id_str":"12321952","indices":[3,8]}],"urls":[],"media":[{"id":1501261742227210245,"id_str":"1501261742227210245","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","url":"https:\/\/t.co\/focTpSkxRk","display_url":"pic.twitter.com\/focTpSkxRk","expanded_url":"https:\/\/twitter.com\/bmay\/status\/1501261748493557766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1111,"h":1200,"resize":"fit"},"large":{"w":1396,"h":1508,"resize":"fit"},"small":{"w":629,"h":680,"resize":"fit"}},"source_status_id":1501261748493557766,"source_status_id_str":"1501261748493557766","source_user_id":12321952,"source_user_id_str":"12321952"}]},"extended_entities":{"media":[{"id":1501261742227210245,"id_str":"1501261742227210245","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","url":"https:\/\/t.co\/focTpSkxRk","display_url":"pic.twitter.com\/focTpSkxRk","expanded_url":"https:\/\/twitter.com\/bmay\/status\/1501261748493557766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1111,"h":1200,"resize":"fit"},"large":{"w":1396,"h":1508,"resize":"fit"},"small":{"w":629,"h":680,"resize":"fit"}},"source_status_id":1501261748493557766,"source_status_id_str":"1501261748493557766","source_user_id":12321952,"source_user_id_str":"12321952"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 18:21:07 +0000 2022","id":1501261748493557766,"id_str":"1501261748493557766","text":"What - a surprise. https:\/\/t.co\/focTpSkxRk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501261742227210245,"id_str":"1501261742227210245","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","url":"https:\/\/t.co\/focTpSkxRk","display_url":"pic.twitter.com\/focTpSkxRk","expanded_url":"https:\/\/twitter.com\/bmay\/status\/1501261748493557766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1111,"h":1200,"resize":"fit"},"large":{"w":1396,"h":1508,"resize":"fit"},"small":{"w":629,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501261742227210245,"id_str":"1501261742227210245","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNWNmbxWQAULUCZ.jpg","url":"https:\/\/t.co\/focTpSkxRk","display_url":"pic.twitter.com\/focTpSkxRk","expanded_url":"https:\/\/twitter.com\/bmay\/status\/1501261748493557766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1111,"h":1200,"resize":"fit"},"large":{"w":1396,"h":1508,"resize":"fit"},"small":{"w":629,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4834,"favorite_count":16068,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4834,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481097650993774593\/cqxmHBP4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481097650993774593\/cqxmHBP4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466695362\/1403538780","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":798785510789394432,"id_str":"798785510789394432","name":"AFIF - BEN MAHMOUD","screen_name":"afif_benmahmoud","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":85,"listed_count":0,"created_at":"Wed - Nov 16 07:11:21 +0000 2016","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sat - Jul 06 21:16:23 +0000 2019","id":1147615297433718786,"id_str":"1147615297433718786","text":"@Victor_SMH - @PlantTeaching @PlantoPhagy @gmivienna Right","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Victor_SMH","name":"V\u00edctor - S\u00e1nchez de Medina","id":1092006496920055809,"id_str":"1092006496920055809","indices":[0,11]},{"screen_name":"PlantTeaching","name":"mary - williams","id":416105754,"id_str":"416105754","indices":[12,26]},{"screen_name":"PlantoPhagy","name":"Yasin - Dagdas","id":50242168,"id_str":"50242168","indices":[27,39]},{"screen_name":"gmivienna","name":"GMI - Vienna","id":267185764,"id_str":"267185764","indices":[40,50]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1147226947468038145,"in_reply_to_status_id_str":"1147226947468038145","in_reply_to_user_id":1092006496920055809,"in_reply_to_user_id_str":"1092006496920055809","in_reply_to_screen_name":"Victor_SMH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161170512908865541\/R7fFflph_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161170512908865541\/R7fFflph_normal.jpg","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":355717799,"id_str":"355717799","name":"Paul - Rodger \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"PaulRodger74","location":"Scotland","description":"Dyslexic - husband and father. Pie loving Collie owner. Check out my website https:\/\/t.co\/g2ItzN3W6t. - Lives in the country.","url":"https:\/\/t.co\/Z3lLH4Uxti","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z3lLH4Uxti","expanded_url":"http:\/\/www.handrolled.co.uk","display_url":"handrolled.co.uk","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/g2ItzN3W6t","expanded_url":"http:\/\/handrolled.co.uk","display_url":"handrolled.co.uk","indices":[75,98]}]}},"protected":false,"followers_count":192,"friends_count":702,"listed_count":6,"created_at":"Mon - Aug 15 19:47:09 +0000 2011","favourites_count":16039,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8272,"lang":null,"status":{"created_at":"Wed - Mar 23 17:02:40 +0000 2022","id":1506677823028740099,"id_str":"1506677823028740099","text":"@MikeyMookMurray - @rain_goblin Maybe but\u2026..this is so exciting having Hill and Waddle \ud83d\udca8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikeyMookMurray","name":"Mikey - Murray","id":1418470291,"id_str":"1418470291","indices":[0,16]},{"screen_name":"rain_goblin","name":"robin - laing","id":198160737,"id_str":"198160737","indices":[17,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506677121489514498,"in_reply_to_status_id_str":"1506677121489514498","in_reply_to_user_id":1418470291,"in_reply_to_user_id_str":"1418470291","in_reply_to_screen_name":"MikeyMookMurray","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/994175177037623296\/jthRAvoA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/994175177037623296\/jthRAvoA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355717799\/1414008028","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":225554182,"id_str":"225554182","name":"Sander - Bruens","screen_name":"SanderBruens","location":"New York, NY","description":"Political - scientist turned software engineer, though still hovering somewhere in between. - Currently fighting disinformation @Jigsaw (@Google). He\/him.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":819,"listed_count":0,"created_at":"Sat - Dec 11 21:39:56 +0000 2010","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Thu - Dec 16 23:59:03 +0000 2021","id":1471630985699672065,"id_str":"1471630985699672065","text":"RT - @Jigsaw: Can reminding people to consider accuracy while browsing online reduce - the spread of misinformation? We teamed up with research\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jigsaw","name":"Jigsaw","id":296979153,"id_str":"296979153","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 16 15:28:11 +0000 2021","id":1471502421440430088,"id_str":"1471502421440430088","text":"Can - reminding people to consider accuracy while browsing online reduce the spread - of misinformation? We teamed up w\u2026 https:\/\/t.co\/CUMrLL5A47","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CUMrLL5A47","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471502421440430088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369126622587142144\/e_KtaHbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369126622587142144\/e_KtaHbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225554182\/1392926864","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":964516755719774209,"id_str":"964516755719774209","name":"Vesel - Memedi","screen_name":"MemediVesel","location":"North Macedonia","description":"Ambassador - of North Macedonia in Rome, Italy. Fulbright Visiting Scholar - Columbia, - NY.","url":"https:\/\/t.co\/mG71R5bPcA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mG71R5bPcA","expanded_url":"http:\/\/rome.mfa.gov.mk","display_url":"rome.mfa.gov.mk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":198,"friends_count":886,"listed_count":2,"created_at":"Fri - Feb 16 15:08:09 +0000 2018","favourites_count":7849,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"status":{"created_at":"Sat - Mar 26 07:03:24 +0000 2022","id":1507614176755306501,"id_str":"1507614176755306501","text":"RT - @neiltyson: Last I checked, the rest of the Universe was in good shape. It\u2019s - Earth that\u2019s got all the problems.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"neiltyson","name":"Neil - deGrasse Tyson","id":19725644,"id_str":"19725644","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:27:40 +0000 2022","id":1507514587041746944,"id_str":"1507514587041746944","text":"Last - I checked, the rest of the Universe was in good shape. It\u2019s Earth that\u2019s - got all the problems.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2779,"favorite_count":24630,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2779,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502006696255778819\/3mWxjHAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502006696255778819\/3mWxjHAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/964516755719774209\/1646942057","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1185470613219106816,"id_str":"1185470613219106816","name":"K_BAR","screen_name":"KBARRetribution","location":"England, - United Kingdom","description":"BIG @SpursOfficial fan Instagram_ https:\/\/t.co\/kZGvEZdKU2 - #COYS #WWERAW #LEVYOUT #ENICOUT @TBARRetribution @MACEtheWRESTLER \nFYE","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/kZGvEZdKU2","expanded_url":"http:\/\/instagram.com\/kbarretributionkylevinyard","display_url":"instagram.com\/kbarretributio\u2026","indices":[34,57]}]}},"protected":false,"followers_count":745,"friends_count":5001,"listed_count":5,"created_at":"Sat - Oct 19 08:20:08 +0000 2019","favourites_count":156967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":156068,"lang":null,"status":{"created_at":"Sat - Mar 26 09:25:56 +0000 2022","id":1507650044509364226,"id_str":"1507650044509364226","text":"RT - @Fightful: Hulk Hogan On Jinder Mahal: \"With The Right Push He Could Be The - New Generation Hulk Hogan\" https:\/\/t.co\/N4WyvKRr0I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fightful","name":"Fightful - Wrestling","id":812058121531179008,"id_str":"812058121531179008","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/N4WyvKRr0I","expanded_url":"http:\/\/dlvr.it\/SMP3cd","display_url":"dlvr.it\/SMP3cd","indices":[106,129]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:40:04 +0000 2022","id":1507563005336166400,"id_str":"1507563005336166400","text":"Hulk - Hogan On Jinder Mahal: \"With The Right Push He Could Be The New Generation - Hulk Hogan\" https:\/\/t.co\/N4WyvKRr0I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N4WyvKRr0I","expanded_url":"http:\/\/dlvr.it\/SMP3cd","display_url":"dlvr.it\/SMP3cd","indices":[92,115]}]},"source":"\u003ca - href=\"https:\/\/dlvrit.com\/\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":243,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466569707755089921\/jfCpIWGw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466569707755089921\/jfCpIWGw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1185470613219106816\/1638492389","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2203571503,"id_str":"2203571503","name":"Michael - Bordy","screen_name":"MJBordy","location":"Los Angeles, CA","description":"Practicing - attorney, specializing in real estate and business transactions, Ph.D. in - cell biology (U. of Kansas), J.D. (USC)","url":"https:\/\/t.co\/KoPxYS7H1q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KoPxYS7H1q","expanded_url":"http:\/\/www.bordylaw.com","display_url":"bordylaw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":889,"listed_count":6,"created_at":"Tue - Nov 19 18:41:40 +0000 2013","favourites_count":20837,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1141,"lang":null,"status":{"created_at":"Mon - Mar 07 04:12:12 +0000 2022","id":1500685723648729089,"id_str":"1500685723648729089","text":"RT - @Retrievals1: See this simple message Democrats? Use it. https:\/\/t.co\/UITJuSnJNW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Retrievals1","name":"\ud83c\udf0aRetrievals - resists\ud83c\udf0a \ud83c\uddfa\ud83c\udde6\ud83c\uddf5\ud83c\uddf7","id":624814961,"id_str":"624814961","indices":[3,15]}],"urls":[],"media":[{"id":1500459938363150337,"id_str":"1500459938363150337","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","url":"https:\/\/t.co\/UITJuSnJNW","display_url":"pic.twitter.com\/UITJuSnJNW","expanded_url":"https:\/\/twitter.com\/Retrievals1\/status\/1500459940477034501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":670,"resize":"fit"},"medium":{"w":1200,"h":670,"resize":"fit"},"small":{"w":680,"h":380,"resize":"fit"}},"source_status_id":1500459940477034501,"source_status_id_str":"1500459940477034501","source_user_id":624814961,"source_user_id_str":"624814961"}]},"extended_entities":{"media":[{"id":1500459938363150337,"id_str":"1500459938363150337","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","url":"https:\/\/t.co\/UITJuSnJNW","display_url":"pic.twitter.com\/UITJuSnJNW","expanded_url":"https:\/\/twitter.com\/Retrievals1\/status\/1500459940477034501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":670,"resize":"fit"},"medium":{"w":1200,"h":670,"resize":"fit"},"small":{"w":680,"h":380,"resize":"fit"}},"source_status_id":1500459940477034501,"source_status_id_str":"1500459940477034501","source_user_id":624814961,"source_user_id_str":"624814961"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 13:15:01 +0000 2022","id":1500459940477034501,"id_str":"1500459940477034501","text":"See - this simple message Democrats? Use it. https:\/\/t.co\/UITJuSnJNW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500459938363150337,"id_str":"1500459938363150337","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","url":"https:\/\/t.co\/UITJuSnJNW","display_url":"pic.twitter.com\/UITJuSnJNW","expanded_url":"https:\/\/twitter.com\/Retrievals1\/status\/1500459940477034501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":670,"resize":"fit"},"medium":{"w":1200,"h":670,"resize":"fit"},"small":{"w":680,"h":380,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500459938363150337,"id_str":"1500459938363150337","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNK0XTnXEAEfEev.jpg","url":"https:\/\/t.co\/UITJuSnJNW","display_url":"pic.twitter.com\/UITJuSnJNW","expanded_url":"https:\/\/twitter.com\/Retrievals1\/status\/1500459940477034501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":670,"resize":"fit"},"medium":{"w":1200,"h":670,"resize":"fit"},"small":{"w":680,"h":380,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5112,"favorite_count":17479,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5112,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992533903842787328\/ObSviDCj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992533903842787328\/ObSviDCj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203571503\/1525473322","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2242506584,"id_str":"2242506584","name":"Friendy - Trendly Net","screen_name":"CCordellcrump","location":"","description":"Studied - communication at The National Business school in The DMV...musician, like - to play the Harp...Izest Project, White Chocolate city reinvented Mo''s Alley.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1322,"friends_count":3016,"listed_count":2,"created_at":"Thu - Dec 12 15:12:03 +0000 2013","favourites_count":5843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6429,"lang":null,"status":{"created_at":"Sun - May 09 04:38:42 +0000 2021","id":1391251254995824640,"id_str":"1391251254995824640","text":"Ghosting - and divorcing Twitter for, non-support!\n\nPhilanthropist, send your contributions, - 4 the next_ izest Projec\u2026 https:\/\/t.co\/hVxHMkw1lz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hVxHMkw1lz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1391251254995824640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1124786418876915714\/AeSmylG1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1124786418876915714\/AeSmylG1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87729749,"id_str":"87729749","name":"mia","screen_name":"miajanco","location":"","description":"Nonsense - Enthusiast.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":471,"friends_count":3662,"listed_count":9,"created_at":"Thu - Nov 05 16:51:55 +0000 2009","favourites_count":51931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20409,"lang":null,"status":{"created_at":"Fri - Mar 25 23:48:23 +0000 2022","id":1507504702832979971,"id_str":"1507504702832979971","text":"RT - @Anadisgoi: Cherokee Nation breaks ground on estimated $10M state-of-the-art - community center in Kenwood https:\/\/t.co\/syLXmslvuP @Cherok\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Anadisgoi","name":"Anadisgoi","id":1553316588,"id_str":"1553316588","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/syLXmslvuP","expanded_url":"https:\/\/anadisgoi.com\/index.php\/government-stories\/858-cherokee-nation-breaks-ground-on-estimated-10m-state-of-the-art-community-center-in-kenwood","display_url":"anadisgoi.com\/index.php\/gove\u2026","indices":[108,131]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:48:45 +0000 2022","id":1507489692949831688,"id_str":"1507489692949831688","text":"Cherokee - Nation breaks ground on estimated $10M state-of-the-art community center in - Kenwood\u2026 https:\/\/t.co\/b1G8CXb3wT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b1G8CXb3wT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507489692949831688","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[94,117]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":101,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496233426323755013\/UvYl9n9C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496233426323755013\/UvYl9n9C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87729749\/1645564823","profile_link_color":"000203","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":851160880033271810,"id_str":"851160880033271810","name":"Taylor - Parnell \ud83c\uddec\ud83c\udde7","screen_name":"TaylorParnell15","location":"Basingstoke, - England","description":"University of Winchester - Politics & International - Relations. Policy analyst @blue_beyond_, tmparnell01@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":70,"friends_count":562,"listed_count":0,"created_at":"Sun - Apr 09 19:52:22 +0000 2017","favourites_count":4280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":241,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196398298774605825\/sGHvQwqD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196398298774605825\/sGHvQwqD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851160880033271810\/1511904419","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":955300665986834432,"id_str":"955300665986834432","name":"\u0130smail - Erol","screen_name":"ierol1968","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":3258,"listed_count":0,"created_at":"Mon - Jan 22 04:46:42 +0000 2018","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Feb 22 10:45:14 +0000 2020","id":1231168061757173760,"id_str":"1231168061757173760","text":"@gulsinonay - G\u00fclsin Han\u0131m m\u00fckemmel bir konserdi. \u00c7ok te\u015fekk\u00fcr - ederiz.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gulsinonay","name":"Gulsin - Onay","id":326169064,"id_str":"326169064","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1231166749678166016,"in_reply_to_status_id_str":"1231166749678166016","in_reply_to_user_id":326169064,"in_reply_to_user_id_str":"326169064","in_reply_to_screen_name":"gulsinonay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454424633080430594\/_tqLdIrH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454424633080430594\/_tqLdIrH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2465457108,"id_str":"2465457108","name":"Jana - Smith","screen_name":"janasmith731","location":"Omaha, NE","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":537,"listed_count":0,"created_at":"Sun - Apr 27 03:17:23 +0000 2014","favourites_count":14119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1761,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276875204593987586\/WgUH6sn8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276875204593987586\/WgUH6sn8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465457108\/1594822188","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1003653901957189632,"id_str":"1003653901957189632","name":"Megumi - Rierson","screen_name":"megumirierson","location":"Minneapolis, MN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":1373,"listed_count":0,"created_at":"Mon - Jun 04 15:05:11 +0000 2018","favourites_count":11398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287880496853266432\/o49tJuqw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287880496853266432\/o49tJuqw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41266121,"id_str":"41266121","name":"Lori - H","screen_name":"Bbcoll55","location":"Rochester, New York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":1383,"listed_count":0,"created_at":"Wed - May 20 01:39:30 +0000 2009","favourites_count":3803,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4073,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/799286515239190528\/ds1_C2ic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/799286515239190528\/ds1_C2ic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41266121\/1459746593","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296632167414607872,"id_str":"1296632167414607872","name":"Jennifer - Baker","screen_name":"Jennife37557548","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":36,"listed_count":0,"created_at":"Fri - Aug 21 02:16:31 +0000 2020","favourites_count":161,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Nov 10 11:58:37 +0000 2020","id":1326132151134412806,"id_str":"1326132151134412806","text":"RT - @johnlegend: I don''t know who needs to hear this, but \"irregardless\" should - not be a part of your vocabulary","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnlegend","name":"John - Legend","id":18228898,"id_str":"18228898","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 07 04:46:51 +0000 2020","id":1324936327586934785,"id_str":"1324936327586934785","text":"I - don''t know who needs to hear this, but \"irregardless\" should not be a part - of your vocabulary","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6768,"favorite_count":110675,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6768,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294481467431682055,"id_str":"1294481467431682055","name":"Zaki - Arrache","screen_name":"ZakiArrache","location":"Isser , Boumerdes, Algria - ","description":"\u200f\u200f\u0628\u0633\u0645 \u0627\u0644\u0644\u0647 \u0627\u0644\u0631\u062d\u0645\u0646 - \u0627\u0644\u0631\u062d\u064a\u0645 \n\u0627\u0644\u0633\u0644\u0627\u0645 - \u0639\u0644\u064a\u0643\u0645 \u0648\u0631\u062d\u0645\u0629 \u0627\u0644\u0644\u0647 - \u0648\u0628\u0631\u0643\u0627\u062a\u0647","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":954,"listed_count":0,"created_at":"Sat - Aug 15 03:50:44 +0000 2020","favourites_count":496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Jun 03 20:51:11 +0000 2021","id":1400555686224928771,"id_str":"1400555686224928771","text":"In - the big Sahara of algeria ..\nI really enjoyed the trip with my friends ..the - trip was full of excitement and joy\u2026 https:\/\/t.co\/0FFdSxcBSi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0FFdSxcBSi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1400555686224928771","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294485284252524544\/MR5rQWdi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294485284252524544\/MR5rQWdi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294481467431682055\/1614639617","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14876882,"id_str":"14876882","name":"Brian - Mehnert","screen_name":"brianmehnert","location":"Arlington, VA","description":"Trust, - but verify...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":443,"listed_count":7,"created_at":"Fri - May 23 03:23:33 +0000 2008","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":406,"lang":null,"status":{"created_at":"Fri - Mar 18 01:08:10 +0000 2022","id":1504625676007186435,"id_str":"1504625676007186435","text":"There - is so#much that is happening all at once, but at least this time it feels - like it is headed some where.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341199844740882433\/8vNFaiF9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341199844740882433\/8vNFaiF9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14876882\/1593016692","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":931215742820896768,"id_str":"931215742820896768","name":"city - survival \ud83e\uddf2\u2764\ufe0f\ud83d\udd2b","screen_name":"bhaffoe","location":"Ghana","description":"Am - a super \u2b50\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":331,"friends_count":5011,"listed_count":0,"created_at":"Thu - Nov 16 17:41:49 +0000 2017","favourites_count":25267,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":310,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410145766409129989\/-YlCw-76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410145766409129989\/-YlCw-76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931215742820896768\/1596009030","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312098480790224897,"id_str":"1312098480790224897","name":"newoaktree505","screen_name":"newoaktree505","location":"","description":"Please, - just take the vaccine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":336,"listed_count":0,"created_at":"Fri - Oct 02 18:34:02 +0000 2020","favourites_count":5403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":737,"lang":null,"status":{"created_at":"Mon - Mar 21 23:37:56 +0000 2022","id":1506052521487310849,"id_str":"1506052521487310849","text":"RT - @AdamKinzinger: https:\/\/t.co\/c306yqnfnC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamKinzinger","name":"Adam - Kinzinger","id":18004222,"id_str":"18004222","indices":[3,17]}],"urls":[],"media":[{"id":1505947792858038279,"id_str":"1505947792858038279","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","url":"https:\/\/t.co\/c306yqnfnC","display_url":"pic.twitter.com\/c306yqnfnC","expanded_url":"https:\/\/twitter.com\/AdamKinzinger\/status\/1505947799363502088\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1505947799363502088,"source_status_id_str":"1505947799363502088","source_user_id":18004222,"source_user_id_str":"18004222"}]},"extended_entities":{"media":[{"id":1505947792858038279,"id_str":"1505947792858038279","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","url":"https:\/\/t.co\/c306yqnfnC","display_url":"pic.twitter.com\/c306yqnfnC","expanded_url":"https:\/\/twitter.com\/AdamKinzinger\/status\/1505947799363502088\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1505947799363502088,"source_status_id_str":"1505947799363502088","source_user_id":18004222,"source_user_id_str":"18004222"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 16:41:49 +0000 2022","id":1505947799363502088,"id_str":"1505947799363502088","text":"https:\/\/t.co\/c306yqnfnC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505947792858038279,"id_str":"1505947792858038279","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","url":"https:\/\/t.co\/c306yqnfnC","display_url":"pic.twitter.com\/c306yqnfnC","expanded_url":"https:\/\/twitter.com\/AdamKinzinger\/status\/1505947799363502088\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505947792858038279,"id_str":"1505947792858038279","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYzieuWQAc6gd_.jpg","url":"https:\/\/t.co\/c306yqnfnC","display_url":"pic.twitter.com\/c306yqnfnC","expanded_url":"https:\/\/twitter.com\/AdamKinzinger\/status\/1505947799363502088\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16000,"favorite_count":64021,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":16000,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312099358851035136\/wAbiBrQp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312099358851035136\/wAbiBrQp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261461771031846912,"id_str":"1261461771031846912","name":"Upkirk","screen_name":"Upkirk1","location":"","description":"hardworking","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":225,"listed_count":0,"created_at":"Sat - May 16 01:02:43 +0000 2020","favourites_count":138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Nov 12 22:13:42 +0000 2020","id":1327011715259764738,"id_str":"1327011715259764738","text":"@jamaicastar - My fren from from way bax sip bro \ud83d\ude14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jamaicastar","name":"Jamaica - Star","id":22678140,"id_str":"22678140","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1326912637414731776,"in_reply_to_status_id_str":"1326912637414731776","in_reply_to_user_id":22678140,"in_reply_to_user_id_str":"22678140","in_reply_to_screen_name":"jamaicastar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312260267166892032\/i_Ghi9sp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312260267166892032\/i_Ghi9sp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1316184975033741312,"id_str":"1316184975033741312","name":"Stephanie - Moore","screen_name":"Stephan41174902","location":"Atlanta, GA","description":"Chef - and Business owner, from the North East living in Atlanta, Embraces diversity - of cultures, music , fashion, art, and food! Yes, I am a progressive liberal!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":1021,"listed_count":0,"created_at":"Wed - Oct 14 01:12:29 +0000 2020","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":342,"lang":null,"status":{"created_at":"Sat - Mar 26 06:42:04 +0000 2022","id":1507608808167718915,"id_str":"1507608808167718915","text":"@joncoopertweets - 347....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507502441717280772,"in_reply_to_status_id_str":"1507502441717280772","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316185603386548226\/heDGDy-O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316185603386548226\/heDGDy-O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1316184975033741312\/1620300148","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":928381497610039296,"id_str":"928381497610039296","name":"eams76","screen_name":"eams2017","location":"Melbourne, - FL","description":"Dance\/Electronic Entertainment Fun General News Movies - Humor Music News R&B\/Soul Technology US News World News Health Government - & Politics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":459,"listed_count":0,"created_at":"Wed - Nov 08 21:59:32 +0000 2017","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Tue - Jan 25 00:34:35 +0000 2022","id":1485773056576532482,"id_str":"1485773056576532482","text":"Justice - for Chapter 61 Combat Injured Retiree''s - Sign the Petition! https:\/\/t.co\/nakZhfdk0e - via @Change","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Change","name":"Change.org","id":15947602,"id_str":"15947602","indices":[97,104]}],"urls":[{"url":"https:\/\/t.co\/nakZhfdk0e","expanded_url":"https:\/\/chng.it\/fCv8cvWZ","display_url":"chng.it\/fCv8cvWZ","indices":[69,92]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1001905311375118336\/tmYrEYYy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001905311375118336\/tmYrEYYy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/928381497610039296\/1512004291","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":136225381,"id_str":"136225381","name":"a - super furry animal","screen_name":"spoonermullet","location":"Melbourne, Victoria","description":"Able - to move left ear independently. Opinions influenced by unconcious bias so - not my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":1970,"listed_count":0,"created_at":"Fri - Apr 23 10:25:13 +0000 2010","favourites_count":13143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2856,"lang":null,"status":{"created_at":"Sat - Mar 26 09:37:28 +0000 2022","id":1507652948129890308,"id_str":"1507652948129890308","text":"RT - @wonderofscience: Amazing octopus stretching its tentacles to form a huge - balloon filmed by EVNautilus at a depth of around 1,600 meters\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wonderofscience","name":"Wonder - of Science","id":3101588527,"id_str":"3101588527","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 12:25:06 +0000 2022","id":1506970360519962633,"id_str":"1506970360519962633","text":"Amazing - octopus stretching its tentacles to form a huge balloon filmed by EVNautilus - at a depth of around 1,600 met\u2026 https:\/\/t.co\/oFhYmaUNqK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oFhYmaUNqK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506970360519962633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22468,"favorite_count":115297,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":22468,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484848134341935105\/KN4TiE9j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484848134341935105\/KN4TiE9j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136225381\/1642850357","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818587076643799042,"id_str":"818587076643799042","name":"Thelma - Cockrell","screen_name":"thlmcoc","location":"Memphis, TN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":589,"listed_count":0,"created_at":"Mon - Jan 09 22:35:42 +0000 2017","favourites_count":42479,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4933,"lang":null,"status":{"created_at":"Fri - Mar 25 17:30:40 +0000 2022","id":1507409644171321352,"id_str":"1507409644171321352","text":"RT - @OccupyDemocrats: BREAKING: In a HUGE loss for Republican Senators Tom Cotton, - Ted Cruz, Lindsay Graham, and Josh Hawley, officials from\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:49:24 +0000 2022","id":1507097272030482436,"id_str":"1507097272030482436","text":"BREAKING: - In a HUGE loss for Republican Senators Tom Cotton, Ted Cruz, Lindsay Graham, - and Josh Hawley, officials f\u2026 https:\/\/t.co\/ANbLqubnPk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ANbLqubnPk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507097272030482436","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23497,"favorite_count":64984,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23497,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1079204288402993157\/3Czwh8Ds_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1079204288402993157\/3Czwh8Ds_normal.jpg","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":5569132,"id_str":"5569132","name":"Wears - a Mask","screen_name":"sketer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":268,"friends_count":2278,"listed_count":6,"created_at":"Fri - Apr 27 22:32:28 +0000 2007","favourites_count":15176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1314,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347769520971280385\/KGbp97p2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347769520971280385\/KGbp97p2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5569132\/1438019841","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":311098375,"id_str":"311098375","name":"Robyn - Stalf","screen_name":"rstalf","location":"Royal Oaks, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":191,"listed_count":0,"created_at":"Sat - Jun 04 22:04:30 +0000 2011","favourites_count":3904,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000512762520\/88a03a50a8236db95c1a9ef9dfc76308_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000512762520\/88a03a50a8236db95c1a9ef9dfc76308_normal.jpeg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2245842801,"id_str":"2245842801","name":"Anne - Marie Rose","screen_name":"AmrRose2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":81,"listed_count":0,"created_at":"Fri - Dec 27 05:13:03 +0000 2013","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1207658906589257729,"id_str":"1207658906589257729","name":"boltonjohn11","screen_name":"boltonjohn11","location":"","description":"All - is good","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":612,"listed_count":0,"created_at":"Thu - Dec 19 13:48:24 +0000 2019","favourites_count":1231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368735246397673472\/Wj_GrTHy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368735246397673472\/Wj_GrTHy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":38751971,"id_str":"38751971","name":"Izzy - Kuller","screen_name":"ikuller000","location":"","description":"Clinical MSW - student loving every second of #gradschool and being a lifelong #student\n\nThey\/them","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":563,"listed_count":1,"created_at":"Sat - May 09 00:04:52 +0000 2009","favourites_count":6307,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1661,"lang":null,"status":{"created_at":"Mon - Mar 14 19:16:48 +0000 2022","id":1503450087455830016,"id_str":"1503450087455830016","text":"@MatthewRaccoon - https:\/\/t.co\/M4ynUw0q0r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MatthewRaccoon","name":"Dapper - Raccoon \ud83d\udd1cAnthrocon2022","id":964697996343500800,"id_str":"964697996343500800","indices":[0,15]}],"urls":[],"media":[{"id":1503450080682123269,"id_str":"1503450080682123269","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1T4fyXIAU_FYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1T4fyXIAU_FYY.jpg","url":"https:\/\/t.co\/M4ynUw0q0r","display_url":"pic.twitter.com\/M4ynUw0q0r","expanded_url":"https:\/\/twitter.com\/ikuller000\/status\/1503450087455830016\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":272,"resize":"fit"},"small":{"w":498,"h":272,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503450080682123269,"id_str":"1503450080682123269","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1T4fyXIAU_FYY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1T4fyXIAU_FYY.jpg","url":"https:\/\/t.co\/M4ynUw0q0r","display_url":"pic.twitter.com\/M4ynUw0q0r","expanded_url":"https:\/\/twitter.com\/ikuller000\/status\/1503450087455830016\/photo\/1","type":"animated_gif","sizes":{"large":{"w":498,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":272,"resize":"fit"},"small":{"w":498,"h":272,"resize":"fit"}},"video_info":{"aspect_ratio":[249,136],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FN1T4fyXIAU_FYY.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503438644840910855,"in_reply_to_status_id_str":"1503438644840910855","in_reply_to_user_id":964697996343500800,"in_reply_to_user_id_str":"964697996343500800","in_reply_to_screen_name":"MatthewRaccoon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1373320437011251212\/1pL60EMs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1373320437011251212\/1pL60EMs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38751971\/1590852829","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1598605735,"id_str":"1598605735","name":"Jaimy - Emmanuel","screen_name":"emmanueljaimy","location":"Bengaluru, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":2465,"listed_count":6,"created_at":"Tue - Jul 16 14:51:29 +0000 2013","favourites_count":1767,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":265,"lang":null,"status":{"created_at":"Sat - Mar 19 08:51:48 +0000 2022","id":1505104741327839235,"id_str":"1505104741327839235","text":"RT - @elonmusk: The limbic instinct for vengeance is incredibly strong, which is - why turn the other cheek is such a powerful idea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 03:24:17 +0000 2022","id":1505022319915421696,"id_str":"1505022319915421696","text":"The - limbic instinct for vengeance is incredibly strong, which is why turn the - other cheek is such a powerful idea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14501,"favorite_count":159155,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14501,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880444921676779521\/UlTNtVzM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880444921676779521\/UlTNtVzM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":239390453,"id_str":"239390453","name":"Harold - Muganda","screen_name":"hmuganda","location":"Nairobi","description":"Son. - Brother. Uncle. Cousin. Friend. Broken but unbowed.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":3823,"listed_count":8,"created_at":"Mon - Jan 17 14:24:46 +0000 2011","favourites_count":4903,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1823,"lang":null,"status":{"created_at":"Fri - Feb 18 13:27:28 +0000 2022","id":1494664865478324231,"id_str":"1494664865478324231","text":"@KRACare - I have replied to your DM. Kindly look into it and revert?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KRACare","name":"KRA - Care","id":2327093641,"id_str":"2327093641","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2327093641,"in_reply_to_user_id_str":"2327093641","in_reply_to_screen_name":"KRACare","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBE9C3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293190461960552448\/iM0Sg2DH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293190461960552448\/iM0Sg2DH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239390453\/1597155610","profile_link_color":"B30033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":804633496052436992,"id_str":"804633496052436992","name":"navee","screen_name":"oddnavee","location":"Malawi","description":"nodejs - developer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1450,"friends_count":755,"listed_count":5,"created_at":"Fri - Dec 02 10:29:09 +0000 2016","favourites_count":11941,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12761,"lang":null,"status":{"created_at":"Sat - Mar 26 10:36:51 +0000 2022","id":1507667893437222918,"id_str":"1507667893437222918","text":"@AlipoAndrewsII - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlipoAndrewsII","name":"A - N D R E W S\ud83d\udc51\ud83c\uddf2\ud83c\uddfc","id":1106147425381769216,"id_str":"1106147425381769216","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507667570836529154,"in_reply_to_status_id_str":"1507667570836529154","in_reply_to_user_id":1106147425381769216,"in_reply_to_user_id_str":"1106147425381769216","in_reply_to_screen_name":"AlipoAndrewsII","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1412332960729141248\/Su7iIIdE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1412332960729141248\/Su7iIIdE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804633496052436992\/1640719463","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299170484907470849,"id_str":"1299170484907470849","name":"Daphi","screen_name":"Daphi27402763","location":"Singapore","description":"Imma - introvert\ud83c\udf4d","url":"https:\/\/t.co\/0RWQWTGt31","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0RWQWTGt31","expanded_url":"https:\/\/youtu.be\/7rbdX4ROe-Y","display_url":"youtu.be\/7rbdX4ROe-Y","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":98,"listed_count":0,"created_at":"Fri - Aug 28 02:22:50 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Thu - Jul 08 02:51:51 +0000 2021","id":1412967637970214914,"id_str":"1412967637970214914","text":"Life - grants nothing to us Mortals without hardwork\u270a\ud83c\udffb!!!!\n\n#snapper - \n#todays_blue_collection \n#police \n#sg\u2026 https:\/\/t.co\/YY4rpvh26W","truncated":true,"entities":{"hashtags":[{"text":"snapper","indices":[58,66]},{"text":"todays_blue_collection","indices":[68,91]},{"text":"police","indices":[93,100]},{"text":"sg","indices":[102,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YY4rpvh26W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1412967637970214914","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326101430030102530\/OyfF9W4N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326101430030102530\/OyfF9W4N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299170484907470849\/1604997942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":994564482272722946,"id_str":"994564482272722946","name":"Atuhura - Nickson\ud83c\uddfa\ud83c\uddec","screen_name":"NicksonAtuhura","location":"\ud83c\udf05","description":"God, - we lay our future in Your hands. Give us courage, love, hope","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":1350,"listed_count":0,"created_at":"Thu - May 10 13:07:05 +0000 2018","favourites_count":17119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":265,"lang":null,"status":{"created_at":"Sun - Jan 30 04:42:06 +0000 2022","id":1487647283919433728,"id_str":"1487647283919433728","text":"RT - @BBCAfrica: \"We don''t wear Rolex, we eat them.\" \u231a\ufe0f\ud83c\udf73 - \n\n\ud83c\uddfa\ud83c\uddec Uganda\u2019s popular Rolex (rolled eggs) has - set a new Guinness World Record as the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCAfrica","name":"BBC - News Africa","id":36670025,"id_str":"36670025","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 29 17:15:44 +0000 2022","id":1487474555228672000,"id_str":"1487474555228672000","text":"\"We - don''t wear Rolex, we eat them.\" \u231a\ufe0f\ud83c\udf73 \n\n\ud83c\uddfa\ud83c\uddec - Uganda\u2019s popular Rolex (rolled eggs) has set a new Guinness World Reco\u2026 - https:\/\/t.co\/rBtUkHfrku","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rBtUkHfrku","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1487474555228672000","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":557,"favorite_count":1488,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":557,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405050407861239810\/kPHkISI2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405050407861239810\/kPHkISI2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/994564482272722946\/1568727958","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":544600078,"id_str":"544600078","name":"Antonios - Vlachoss","screen_name":"agvlachos","location":"newcastle","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":2598,"listed_count":0,"created_at":"Tue - Apr 03 21:17:30 +0000 2012","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Sat - Jul 18 16:29:46 +0000 2020","id":1284525782883201024,"id_str":"1284525782883201024","text":"RT - @MarcusRashford: You ready bro? Let\u2019s get them \ud83d\udc4a\ud83c\udffe - https:\/\/t.co\/3PjeRZEg10","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcusRashford","name":"Marcus - Rashford MBE","id":734492654755577858,"id_str":"734492654755577858","indices":[3,18]}],"urls":[],"media":[{"id":1284525094514176001,"id_str":"1284525094514176001","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","url":"https:\/\/t.co\/3PjeRZEg10","display_url":"pic.twitter.com\/3PjeRZEg10","expanded_url":"https:\/\/twitter.com\/MarcusRashford\/status\/1284525102374227968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1465,"h":1600,"resize":"fit"},"medium":{"w":1099,"h":1200,"resize":"fit"},"small":{"w":623,"h":680,"resize":"fit"}},"source_status_id":1284525102374227968,"source_status_id_str":"1284525102374227968","source_user_id":734492654755577858,"source_user_id_str":"734492654755577858"}]},"extended_entities":{"media":[{"id":1284525094514176001,"id_str":"1284525094514176001","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","url":"https:\/\/t.co\/3PjeRZEg10","display_url":"pic.twitter.com\/3PjeRZEg10","expanded_url":"https:\/\/twitter.com\/MarcusRashford\/status\/1284525102374227968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1465,"h":1600,"resize":"fit"},"medium":{"w":1099,"h":1200,"resize":"fit"},"small":{"w":623,"h":680,"resize":"fit"}},"source_status_id":1284525102374227968,"source_status_id_str":"1284525102374227968","source_user_id":734492654755577858,"source_user_id_str":"734492654755577858"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jul 18 16:27:04 +0000 2020","id":1284525102374227968,"id_str":"1284525102374227968","text":"You - ready bro? Let\u2019s get them \ud83d\udc4a\ud83c\udffe https:\/\/t.co\/3PjeRZEg10","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1284525094514176001,"id_str":"1284525094514176001","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","url":"https:\/\/t.co\/3PjeRZEg10","display_url":"pic.twitter.com\/3PjeRZEg10","expanded_url":"https:\/\/twitter.com\/MarcusRashford\/status\/1284525102374227968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1465,"h":1600,"resize":"fit"},"medium":{"w":1099,"h":1200,"resize":"fit"},"small":{"w":623,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1284525094514176001,"id_str":"1284525094514176001","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EdOMxIuXsAE8P7r.jpg","url":"https:\/\/t.co\/3PjeRZEg10","display_url":"pic.twitter.com\/3PjeRZEg10","expanded_url":"https:\/\/twitter.com\/MarcusRashford\/status\/1284525102374227968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1465,"h":1600,"resize":"fit"},"medium":{"w":1099,"h":1200,"resize":"fit"},"small":{"w":623,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7887,"favorite_count":83689,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7887,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/731068927913132032\/se7DzMaP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/731068927913132032\/se7DzMaP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1194277414496587776,"id_str":"1194277414496587776","name":"Metnejad","screen_name":"metnejad","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":410,"listed_count":0,"created_at":"Tue - Nov 12 15:35:08 +0000 2019","favourites_count":10735,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Tue - Feb 01 12:48:45 +0000 2022","id":1488494530097729537,"id_str":"1488494530097729537","text":"RT - @Fhamiltontimes: The Met apologises again. This time its really disturbing\u00a0behaviour - of officers at Charing Cross station where apparent\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fhamiltontimes","name":"Fiona - Hamilton","id":237240870,"id_str":"237240870","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 01 11:33:02 +0000 2022","id":1488475474628120579,"id_str":"1488475474628120579","text":"The - Met apologises again. This time its really disturbing\u00a0behaviour of officers - at Charing Cross station where appa\u2026 https:\/\/t.co\/TEllrS5BLb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TEllrS5BLb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1488475474628120579","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10705,"favorite_count":22427,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10705,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194278068371820544\/q9zgSngH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194278068371820544\/q9zgSngH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194277414496587776\/1573772428","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3029095761,"id_str":"3029095761","name":"christina","screen_name":"christinaa_9","location":"Cincinnati, - OH","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":219,"listed_count":0,"created_at":"Wed - Feb 11 00:39:01 +0000 2015","favourites_count":3086,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":305,"lang":null,"status":{"created_at":"Mon - Nov 08 15:06:23 +0000 2021","id":1457726196691738630,"id_str":"1457726196691738630","text":"RT - @OSUCrush: Cameron fucking varney \ud83d\ude2d\ud83d\ude2b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OSUCrush","name":"OSU - Crush","id":554667765,"id_str":"554667765","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 07 15:01:01 +0000 2021","id":1457362460248248330,"id_str":"1457362460248248330","text":"Cameron - fucking varney \ud83d\ude2d\ud83d\ude2b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":23,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473856510145048579\/WRwvDLMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473856510145048579\/WRwvDLMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3029095761\/1640229571","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304622849135652865,"id_str":"1304622849135652865","name":"Mayanja","screen_name":"Mayanja73582246","location":"","description":"Be - just ever","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":90,"listed_count":0,"created_at":"Sat - Sep 12 03:29:44 +0000 2020","favourites_count":111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62,"lang":null,"status":{"created_at":"Thu - Jan 28 19:57:15 +0000 2021","id":1354881242093789186,"id_str":"1354881242093789186","text":"@JoyFlair85854 - Daily \ud83d\udebf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1354796701333278720,"in_reply_to_status_id_str":"1354796701333278720","in_reply_to_user_id":1179445713756987392,"in_reply_to_user_id_str":"1179445713756987392","in_reply_to_screen_name":"bae_manchester","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340229449455951872\/7SdQ1OPw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340229449455951872\/7SdQ1OPw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1653611262,"id_str":"1653611262","name":"@Lenny - C Mutai","screen_name":"LeonardMutai10","location":"Nairobi,Kenya","description":"Me - and My Family we exist to serve God and humanity.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":1963,"listed_count":0,"created_at":"Wed - Aug 07 18:56:23 +0000 2013","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500898229857550336\/8bUEM-IA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500898229857550336\/8bUEM-IA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1653611262\/1586194927","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1010967240,"id_str":"1010967240","name":"alexis - stephens","screen_name":"alexis_step","location":"","description":"Communication - and media specialist, consultant, educator, aspiring writer, social justice - advocate and lifelong learner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":791,"listed_count":0,"created_at":"Fri - Dec 14 11:44:18 +0000 2012","favourites_count":6384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":377,"lang":null,"status":{"created_at":"Thu - Mar 24 12:44:26 +0000 2022","id":1506975225849782274,"id_str":"1506975225849782274","text":"@likaluca - That would be giving these infantile men what they want...a black woman who - cracks under pressure. He com\u2026 https:\/\/t.co\/oKVdVb9dfU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"likaluca","name":"Lisa - Lucas","id":16548412,"id_str":"16548412","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/oKVdVb9dfU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506975225849782274","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506963878357393415,"in_reply_to_status_id_str":"1506963878357393415","in_reply_to_user_id":16548412,"in_reply_to_user_id_str":"16548412","in_reply_to_screen_name":"likaluca","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3354005807\/1812fe584b5e5cf43ab29c4193a3dc24_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3354005807\/1812fe584b5e5cf43ab29c4193a3dc24_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":8975212,"id_str":"8975212","name":"Marcus - Carson","screen_name":"marcuscarson","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":228,"friends_count":145,"listed_count":5,"created_at":"Wed - Sep 19 14:29:48 +0000 2007","favourites_count":1176,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1809,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292431277598150656\/_a_U1xiW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292431277598150656\/_a_U1xiW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":204879494,"id_str":"204879494","name":"Craig - Paley \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f","screen_name":"craigpaley","location":"Cowbridge","description":"Director - at Morris Paley Wealth Management. Married to Carol with three great kids. - United supporter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":214,"friends_count":2048,"listed_count":1,"created_at":"Tue - Oct 19 17:23:57 +0000 2010","favourites_count":3524,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1065,"lang":null,"status":{"created_at":"Thu - Mar 24 22:32:54 +0000 2022","id":1507123317508956161,"id_str":"1507123317508956161","text":"RT - @itsJeffTiedrich: @mkraju @HC_Richardson hard to believe that this guy won''t - be voting for a black woman https:\/\/t.co\/obhx3CPeSB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itsJeffTiedrich","name":"Jeff - Tiedrich","id":1009577803304656896,"id_str":"1009577803304656896","indices":[3,19]},{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[21,28]},{"screen_name":"HC_Richardson","name":"Heather - Cox Richardson (TDPR)","id":1323214644,"id_str":"1323214644","indices":[29,43]}],"urls":[],"media":[{"id":1507088925340454922,"id_str":"1507088925340454922","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","url":"https:\/\/t.co\/obhx3CPeSB","display_url":"pic.twitter.com\/obhx3CPeSB","expanded_url":"https:\/\/twitter.com\/itsJeffTiedrich\/status\/1507088966666883089\/photo\/1","type":"photo","sizes":{"medium":{"w":567,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":567,"h":425,"resize":"fit"},"large":{"w":567,"h":425,"resize":"fit"}},"source_status_id":1507088966666883089,"source_status_id_str":"1507088966666883089","source_user_id":1009577803304656896,"source_user_id_str":"1009577803304656896"}]},"extended_entities":{"media":[{"id":1507088925340454922,"id_str":"1507088925340454922","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","url":"https:\/\/t.co\/obhx3CPeSB","display_url":"pic.twitter.com\/obhx3CPeSB","expanded_url":"https:\/\/twitter.com\/itsJeffTiedrich\/status\/1507088966666883089\/photo\/1","type":"photo","sizes":{"medium":{"w":567,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":567,"h":425,"resize":"fit"},"large":{"w":567,"h":425,"resize":"fit"}},"source_status_id":1507088966666883089,"source_status_id_str":"1507088966666883089","source_user_id":1009577803304656896,"source_user_id_str":"1009577803304656896"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:16:24 +0000 2022","id":1507088966666883089,"id_str":"1507088966666883089","text":"@mkraju - @HC_Richardson hard to believe that this guy won''t be voting for a black - woman https:\/\/t.co\/obhx3CPeSB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[0,7]},{"screen_name":"HC_Richardson","name":"Heather - Cox Richardson (TDPR)","id":1323214644,"id_str":"1323214644","indices":[8,22]}],"urls":[],"media":[{"id":1507088925340454922,"id_str":"1507088925340454922","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","url":"https:\/\/t.co\/obhx3CPeSB","display_url":"pic.twitter.com\/obhx3CPeSB","expanded_url":"https:\/\/twitter.com\/itsJeffTiedrich\/status\/1507088966666883089\/photo\/1","type":"photo","sizes":{"medium":{"w":567,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":567,"h":425,"resize":"fit"},"large":{"w":567,"h":425,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507088925340454922,"id_str":"1507088925340454922","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBZIfX0AojQsg.jpg","url":"https:\/\/t.co\/obhx3CPeSB","display_url":"pic.twitter.com\/obhx3CPeSB","expanded_url":"https:\/\/twitter.com\/itsJeffTiedrich\/status\/1507088966666883089\/photo\/1","type":"photo","sizes":{"medium":{"w":567,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":567,"h":425,"resize":"fit"},"large":{"w":567,"h":425,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507083163889188865,"in_reply_to_status_id_str":"1507083163889188865","in_reply_to_user_id":39155029,"in_reply_to_user_id_str":"39155029","in_reply_to_screen_name":"mkraju","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4306,"favorite_count":19728,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4306,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287123903270223873\/9fk-LGU1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287123903270223873\/9fk-LGU1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204879494\/1631771051","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":445002513,"id_str":"445002513","name":"elizabeth - j.\ud83c\udf3b","screen_name":"lizzziejohnston","location":"Los Angeles, CA","description":"im - Lizzie and I enjoy helping others, critical thinking, & people who aspire - to make the world a better place.\u2728\ud83c\udf0e\u270c\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":439,"listed_count":0,"created_at":"Fri - Dec 23 22:11:37 +0000 2011","favourites_count":12802,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1051,"lang":null,"status":{"created_at":"Fri - Feb 25 17:36:55 +0000 2022","id":1497264360099487744,"id_str":"1497264360099487744","text":"RT - @POTUS: Russia alone is responsible for the death and destruction this attack - will bring, and the United States and its Allies and partn\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 24 03:56:43 +0000 2022","id":1496695560849473536,"id_str":"1496695560849473536","text":"Russia - alone is responsible for the death and destruction this attack will bring, - and the United States and its All\u2026 https:\/\/t.co\/L7OQoekJk5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L7OQoekJk5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496695560849473536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56151,"favorite_count":303613,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":56151,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485665126720045060\/61_gtaUR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485665126720045060\/61_gtaUR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445002513\/1645811295","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":123693165,"id_str":"123693165","name":"Ella - Portia","screen_name":"EllaPortia","location":"Brevard, NC","description":"Saving - The World Before Bedtime! Looking for: Shan Thayer. I\u2019m a GA girl in - an NC world. Traded city life for mountain life- never looking back! \u2728\u2728\u2728\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":91,"friends_count":851,"listed_count":1,"created_at":"Tue - Mar 16 23:14:03 +0000 2010","favourites_count":2819,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":459,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352116400085725190\/E-0MTMpy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352116400085725190\/E-0MTMpy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123693165\/1539784905","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":225000140,"id_str":"225000140","name":"\u0645\u0640\u062d\u0640\u0645\u0640\u062f - \u0628\u0646 \u0645\u0640\u0627\u062c\u0640\u062f","screen_name":"mmajedm","location":"","description":"\u007b\u0644\u064e\u0627 - \u0625\u0650\u0644\u064e\u0647\u064e \u0625\u0650\u0644\u0651\u064e\u0627 - \u0623\u064e\u0646\u0652\u062a\u064e \u0633\u064f\u0628\u0652\u062d\u064e\u0627\u0646\u064e\u0643\u064e - \u0625\u0650\u0646\u0651\u0650\u064a \u0643\u064f\u0646\u0652\u062a\u064f - \u0645\u0650\u0646\u064e \u0627\u0644\u0638\u0651\u064e\u0627\u0644\u0650\u0645\u0650\u064a\u0646\u064e\u007d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1624,"friends_count":408,"listed_count":3,"created_at":"Fri - Dec 10 11:55:29 +0000 2010","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7688,"lang":null,"status":{"created_at":"Thu - Mar 24 21:59:49 +0000 2022","id":1507114991110995970,"id_str":"1507114991110995970","text":"@S3d_78 - \u0646\u0633\u062e\u062a\u064a\u0646 \u0639\u0627\u0644\u062a\u0648\u0627\u0644\u064a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"S3d_78","name":"\u0633\u0639\u062f - \u0627\u0644\u0645\u0647\u0646\u062f\u064a","id":283884888,"id_str":"283884888","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507111547168079876,"in_reply_to_status_id_str":"1507111547168079876","in_reply_to_user_id":283884888,"in_reply_to_user_id_str":"283884888","in_reply_to_screen_name":"S3d_78","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291489109559607301\/mcPU6HFB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291489109559607301\/mcPU6HFB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225000140\/1564211095","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1081591226342825985,"id_str":"1081591226342825985","name":"Ken","screen_name":"Ken20378266","location":"Myrtle - Beach, SC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":219,"listed_count":0,"created_at":"Sat - Jan 05 16:40:18 +0000 2019","favourites_count":9793,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Sat - Nov 13 23:55:48 +0000 2021","id":1459671370154061826,"id_str":"1459671370154061826","text":"@chipfranklin - Many Insurance Companies already charge the person and or spouse who smoke - higher premiums.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1459628644079439874,"in_reply_to_status_id_str":"1459628644079439874","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1084273757777211392\/WylPZhJ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084273757777211392\/WylPZhJ5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":164870081,"id_str":"164870081","name":"Albert - Lacle","screen_name":"AlbertLacle","location":"Soest, Nederland","description":"Hotel - Management Company. Corporate Offices in Hilversum Holland with Hotels in - Spain, Aruba, Curacao and Surinam.","url":"https:\/\/t.co\/dm1uVW2KyZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dm1uVW2KyZ","expanded_url":"http:\/\/www.albertlacle.com","display_url":"albertlacle.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":678,"friends_count":2460,"listed_count":7,"created_at":"Sat - Jul 10 00:03:13 +0000 2010","favourites_count":1558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5769,"lang":null,"status":{"created_at":"Thu - Mar 24 01:10:54 +0000 2022","id":1506800690034888707,"id_str":"1506800690034888707","text":"RT - @TravelLeisure: The Netherlands Just Dropped Pre-arrival Testing \u2014 What - to Know If You''re Going https:\/\/t.co\/u366vMNj0o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TravelLeisure","name":"Travel - + Leisure","id":16211434,"id_str":"16211434","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/u366vMNj0o","expanded_url":"https:\/\/www.travelandleisure.com\/travel-news\/netherlands-to-drop-pre-arrival-test?utm_campaign=travelandleisure_travelleisure&utm_content=manual&utm_medium=social&utm_source=twitter.com&utm_term=623b86d64d7bbc0001f94c61","display_url":"travelandleisure.com\/travel-news\/ne\u2026","indices":[100,123]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 01:04:09 +0000 2022","id":1506798994164490240,"id_str":"1506798994164490240","text":"The - Netherlands Just Dropped Pre-arrival Testing \u2014 What to Know If You''re - Going https:\/\/t.co\/u366vMNj0o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u366vMNj0o","expanded_url":"https:\/\/www.travelandleisure.com\/travel-news\/netherlands-to-drop-pre-arrival-test?utm_campaign=travelandleisure_travelleisure&utm_content=manual&utm_medium=social&utm_source=twitter.com&utm_term=623b86d64d7bbc0001f94c61","display_url":"travelandleisure.com\/travel-news\/ne\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"https:\/\/trueanthem.com\/\" rel=\"nofollow\"\u003eTrue Anthem\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":34,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033231383504805888\/oo80AdwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033231383504805888\/oo80AdwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164870081\/1490351117","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1728702415,"id_str":"1728702415","name":"Brybethka","screen_name":"Brybethka","location":"","description":"My - name is Bryan Bethka, besides being a borderline obsessive Giants, Yankees, - and Knicks fan, I have a deep knowledge of anything pop culture.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":1485,"listed_count":3,"created_at":"Wed - Sep 04 12:51:30 +0000 2013","favourites_count":3876,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7139,"lang":null,"status":{"created_at":"Fri - Mar 25 18:07:16 +0000 2022","id":1507418855987159051,"id_str":"1507418855987159051","text":"@BeckyBond007 - We could just judge after he actually is the main villain in the next film. - Or not rank them and enjo\u2026 https:\/\/t.co\/Kvpmg3TW5t","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeckyBond007","name":"Becky - is #Zacktivated\u26a1 and excited for #TheBatman","id":943427665410887687,"id_str":"943427665410887687","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/Kvpmg3TW5t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507418855987159051","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507058861089374210,"in_reply_to_status_id_str":"1507058861089374210","in_reply_to_user_id":943427665410887687,"in_reply_to_user_id_str":"943427665410887687","in_reply_to_screen_name":"BeckyBond007","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/452927246093664256\/rF5TMpLV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/452927246093664256\/rF5TMpLV_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":994152586977595392,"id_str":"994152586977595392","name":"L","screen_name":"abrahameleanor2","location":"Malaysia","description":"stay - gold \u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":113,"listed_count":0,"created_at":"Wed - May 09 09:50:22 +0000 2018","favourites_count":2111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":300,"lang":null,"status":{"created_at":"Fri - Mar 25 00:46:58 +0000 2022","id":1507157058180821002,"id_str":"1507157058180821002","text":"one - person followed me \/\/ automatically checked by https:\/\/t.co\/x0GwPvd7ZN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/x0GwPvd7ZN","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424390982699683850\/GVD7WdMe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424390982699683850\/GVD7WdMe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/994152586977595392\/1605060108","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":341117654,"id_str":"341117654","name":"Kristen - Slovak Nichols","screen_name":"ksnsln","location":"Massachusetts","description":"Mom, - wife, Title 1 4th grade MLL teacher RI, Masters in ESL Education & Cross cultural - studies from Brown University, ECET2RI educator, life long learner","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":545,"friends_count":1685,"listed_count":1,"created_at":"Sat - Jul 23 20:51:25 +0000 2011","favourites_count":24891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2664,"lang":null,"status":{"created_at":"Wed - Mar 23 19:21:23 +0000 2022","id":1506712734699859978,"id_str":"1506712734699859978","text":"@mr_Alsheimer - My Kindergarten teacher, Miss Thomas, aka Mrs. Reitman \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mr_Alsheimer","name":"Jonathan - Alsheimer","id":909106325979910144,"id_str":"909106325979910144","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506428710345482246,"in_reply_to_status_id_str":"1506428710345482246","in_reply_to_user_id":909106325979910144,"in_reply_to_user_id_str":"909106325979910144","in_reply_to_screen_name":"mr_Alsheimer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317472663548448769\/coZ4B_Qd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317472663548448769\/coZ4B_Qd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/341117654\/1501627225","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":725635141138321408,"id_str":"725635141138321408","name":"\uea00T\u039eSL\u0394\u2122\ud83c\uddec\ud83c\udded","screen_name":"realKwameOT","location":"Just - Crossed the Rubicon \ud83c\udf0a ","description":"''''When Man a plan, God - a wipe!''''\ud83d\udccc\n\u02b8\u1d52\u1d58\u2019\u02b3\u1d49 \u1d47\u1d49\u1d43\u1d58\u1d57\u2071\u1da0\u1d58\u02e1!\n\uf8ff\uea00","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1926,"friends_count":991,"listed_count":5,"created_at":"Thu - Apr 28 10:37:54 +0000 2016","favourites_count":147956,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100580,"lang":null,"status":{"created_at":"Sat - Mar 26 09:36:57 +0000 2022","id":1507652818328559623,"id_str":"1507652818328559623","text":"RT - @FutDope: Messi is a creator who is in a team to score supplementary goals. - \n\nHis primary role is to orchestrate the attack.\nHe is not a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FutDope","name":"DopeFutImage","id":1183045355929292800,"id_str":"1183045355929292800","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:41:06 +0000 2022","id":1507533067224764427,"id_str":"1507533067224764427","text":"Messi - is a creator who is in a team to score supplementary goals. \n\nHis primary - role is to orchestrate the attack.\u2026 https:\/\/t.co\/hTpwL1uJEt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hTpwL1uJEt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507533067224764427","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":412,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1425195145608278021\/R7LrfiTq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1425195145608278021\/R7LrfiTq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/725635141138321408\/1577952476","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17301831,"id_str":"17301831","name":"\ud83c\udf3bPARoni - \ud83d\udc99\ud83d\udc9b\ud83d\udc99","screen_name":"PARoni68","location":"PA","description":"\ud83c\udf3b - Mom, activist, writer #BLM #adoptee #secondaryrejection #resister #getvaxxed - #bluewave2022\nNo DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1280,"friends_count":3865,"listed_count":20,"created_at":"Tue - Nov 11 03:19:53 +0000 2008","favourites_count":88461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8735,"lang":null,"status":{"created_at":"Sun - Mar 20 13:25:28 +0000 2022","id":1505536000642228232,"id_str":"1505536000642228232","text":"RT - @Daltmann10: I\u2019m confused to be in a country with 3.2 million active - cases of a debilitating viral infection, with currently unknown fut\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Daltmann10","name":"Danny - Altmann","id":243144742,"id_str":"243144742","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 12:53:30 +0000 2022","id":1505527953710534665,"id_str":"1505527953710534665","text":"I\u2019m - confused to be in a country with 3.2 million active cases of a debilitating - viral infection, with currently unk\u2026 https:\/\/t.co\/HlZYxaXcja","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HlZYxaXcja","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505527953710534665","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3493,"favorite_count":14039,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3493,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500928020080701443\/AEzxn_hJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500928020080701443\/AEzxn_hJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17301831\/1646683720","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293643612610342913,"id_str":"1293643612610342913","name":"Gyanna","screen_name":"Gyanna23907690","location":"","description":"True - to self","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":308,"listed_count":0,"created_at":"Wed - Aug 12 20:21:18 +0000 2020","favourites_count":783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"status":{"created_at":"Sat - Jan 01 12:04:20 +0000 2022","id":1477249327869448194,"id_str":"1477249327869448194","text":"@SabineVdL - @SCHM7DT Share the skills.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SabineVdL","name":"Sabine - VanderLinden","id":25868334,"id_str":"25868334","indices":[0,10]},{"screen_name":"SCHM7DT","name":"Nate - Schmidt","id":875753766225629185,"id_str":"875753766225629185","indices":[11,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1477248019573747716,"in_reply_to_status_id_str":"1477248019573747716","in_reply_to_user_id":25868334,"in_reply_to_user_id_str":"25868334","in_reply_to_screen_name":"SabineVdL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17656270,"id_str":"17656270","name":"diegovanegas","screen_name":"diegovanegas","location":"4.66991,-74.058765","description":"","url":"https:\/\/t.co\/17x0BiMqTR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/17x0BiMqTR","expanded_url":"http:\/\/www.groupps.co\/","display_url":"groupps.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":360,"friends_count":4987,"listed_count":6,"created_at":"Wed - Nov 26 18:44:07 +0000 2008","favourites_count":4572,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":395,"lang":null,"status":{"created_at":"Fri - Mar 11 16:52:10 +0000 2022","id":1502326525672239117,"id_str":"1502326525672239117","text":"@Julianitra - @JuanseRios87 carne en polvo, arroz, tajadas.... y pur\u00e9 de papas!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Julianitra","name":"Juliana - Fitzgerald","id":60247069,"id_str":"60247069","indices":[0,11]},{"screen_name":"JuanseRios87","name":"R\u00cdOS - M.","id":273162579,"id_str":"273162579","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1502323331722272768,"in_reply_to_status_id_str":"1502323331722272768","in_reply_to_user_id":60247069,"in_reply_to_user_id_str":"60247069","in_reply_to_screen_name":"Julianitra","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/313497866\/logo_vizuell_01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/313497866\/logo_vizuell_01_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"C0D2D3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292153972023754755,"id_str":"1292153972023754755","name":"Connor - McGilvray","screen_name":"ConnorMcgil","location":"","description":"SMC 25 - CO #COYS He\/Him","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":618,"listed_count":0,"created_at":"Sat - Aug 08 17:41:37 +0000 2020","favourites_count":24300,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":620,"lang":null,"status":{"created_at":"Tue - Mar 22 22:42:28 +0000 2022","id":1506400949681631235,"id_str":"1506400949681631235","text":"@mooseperc - @tropicanapussy This is what every white Dad says when he\u2019s just done - with something\/someone","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mooseperc","name":"hillbilly - eilish","id":1434315338938781698,"id_str":"1434315338938781698","indices":[0,10]},{"screen_name":"tropicanapussy","name":"abs","id":195503724,"id_str":"195503724","indices":[11,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506371562303229952,"in_reply_to_status_id_str":"1506371562303229952","in_reply_to_user_id":1434315338938781698,"in_reply_to_user_id_str":"1434315338938781698","in_reply_to_screen_name":"mooseperc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369128272664092672\/m-8nqHF0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369128272664092672\/m-8nqHF0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1292153972023754755\/1596909709","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145047923740332035,"id_str":"1145047923740332035","name":"Ronnie - Mcgee","screen_name":"RonnieM63670505","location":"","description":"I''m a - very witty and fun person to be around.I love to read and write in my spear - time","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":253,"listed_count":0,"created_at":"Sat - Jun 29 19:14:33 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Jun 04 05:32:32 +0000 2020","id":1268415319896395778,"id_str":"1268415319896395778","text":"To - the great president of this US I am beseeching you to reconsider in giving - out the second stimulus check under t\u2026 https:\/\/t.co\/jc5thS6EMe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jc5thS6EMe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1268415319896395778","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"ed1736d76c1e007c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ed1736d76c1e007c.json","place_type":"city","name":"Starkville","full_name":"Starkville, - MS","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-88.866974,33.406706],[-88.776403,33.406706],[-88.776403,33.506302],[-88.866974,33.506302]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152614392573366274\/rsgeClNY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152614392573366274\/rsgeClNY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1212950893991092230,"id_str":"1212950893991092230","name":"michele - smithwick","screen_name":"michelesmithwi3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":243,"listed_count":0,"created_at":"Fri - Jan 03 04:16:51 +0000 2020","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Tue - Jan 04 04:41:13 +0000 2022","id":1478224977283350532,"id_str":"1478224977283350532","text":"@cqkane - I can relate","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cqkane","name":"cqk","id":1280595775978799104,"id_str":"1280595775978799104","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478099549432418304,"in_reply_to_status_id_str":"1478099549432418304","in_reply_to_user_id":1280595775978799104,"in_reply_to_user_id_str":"1280595775978799104","in_reply_to_screen_name":"cqkane","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212951056532955141\/dkjq0LJE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212951056532955141\/dkjq0LJE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1054525226162274305,"id_str":"1054525226162274305","name":"Azz\ud83d\udc69\ud83c\udffb\u200d\ud83d\ude92","screen_name":"922azz","location":"Ile-de-France, - France","description":"\ud83c\uddf2\ud83c\udde6. \u00ab A Allah appartient - tout ce qui est dans les cieux et sur la terre. Et c\u2019est vers Allah que - toute chose sera ramen\u00e9e. \u00bb \u007bs.3; v.109\u007d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":455,"listed_count":0,"created_at":"Tue - Oct 23 00:09:40 +0000 2018","favourites_count":18211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3555,"lang":null,"status":{"created_at":"Thu - Mar 24 21:06:26 +0000 2022","id":1507101559087378439,"id_str":"1507101559087378439","text":"RT - @YassineTwittos: En vrai les 10\/10 rousses elles broient toute les meufs - de ce monde objectivement","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YassineTwittos","name":"YASSINE - \u2604\ufe0f","id":1215390478264303622,"id_str":"1215390478264303622","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 10:50:24 +0000 2022","id":1506584138308014083,"id_str":"1506584138308014083","text":"En - vrai les 10\/10 rousses elles broient toute les meufs de ce monde objectivement","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2801,"favorite_count":26963,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":2801,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1423431201709301762\/1-NMf6u9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1423431201709301762\/1-NMf6u9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1054525226162274305\/1574591060","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":812117497,"id_str":"812117497","name":"Karen - Klaich","screen_name":"KarenKlaich","location":"NC","description":"\"The only - thing necessary for the triumph of evil is for good men to do nothing.\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":1009,"listed_count":5,"created_at":"Sun - Sep 09 02:06:01 +0000 2012","favourites_count":23372,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12109,"lang":null,"status":{"created_at":"Fri - Mar 25 10:56:10 +0000 2022","id":1507310367449534465,"id_str":"1507310367449534465","text":"Lloyd - Blankfein Defends Hitler, Falsely Saying He Didn\u2019t Use Chemical Weapons - on the Battlefield\u2026 https:\/\/t.co\/OP56pk7E62","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OP56pk7E62","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507310367449534465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222362657845587968\/RHcgRr0f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222362657845587968\/RHcgRr0f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812117497\/1608470512","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1239217471988645895,"id_str":"1239217471988645895","name":"Mauro - GM Capelari","screen_name":"MauroCapelari","location":"Bras\u00edlia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":813,"listed_count":0,"created_at":"Sun - Mar 15 15:50:55 +0000 2020","favourites_count":1242,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":246,"lang":null,"status":{"created_at":"Mon - Mar 21 10:30:55 +0000 2022","id":1505854460521848835,"id_str":"1505854460521848835","text":"RT - @P_Peri: Quer votar no @partidonovo30? V\u00e1 em frente, mas nunca ouse dizer - que se importa com o meio ambiente. https:\/\/t.co\/XZCWBgssLK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"P_Peri","name":"Lorenzo - Ald\u00e9 \ud83c\udff4","id":87709892,"id_str":"87709892","indices":[3,10]},{"screen_name":"partidonovo30","name":"NOVO - 30","id":2734700584,"id_str":"2734700584","indices":[26,40]}],"urls":[],"media":[{"id":1505521771235135492,"id_str":"1505521771235135492","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","url":"https:\/\/t.co\/XZCWBgssLK","display_url":"pic.twitter.com\/XZCWBgssLK","expanded_url":"https:\/\/twitter.com\/P_Peri\/status\/1505521774011813891\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1942,"h":1412,"resize":"fit"},"medium":{"w":1200,"h":873,"resize":"fit"}},"source_status_id":1505521774011813891,"source_status_id_str":"1505521774011813891","source_user_id":87709892,"source_user_id_str":"87709892"}]},"extended_entities":{"media":[{"id":1505521771235135492,"id_str":"1505521771235135492","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","url":"https:\/\/t.co\/XZCWBgssLK","display_url":"pic.twitter.com\/XZCWBgssLK","expanded_url":"https:\/\/twitter.com\/P_Peri\/status\/1505521774011813891\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1942,"h":1412,"resize":"fit"},"medium":{"w":1200,"h":873,"resize":"fit"}},"source_status_id":1505521774011813891,"source_status_id_str":"1505521774011813891","source_user_id":87709892,"source_user_id_str":"87709892"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 12:28:56 +0000 2022","id":1505521774011813891,"id_str":"1505521774011813891","text":"Quer - votar no @partidonovo30? V\u00e1 em frente, mas nunca ouse dizer que se importa - com o meio ambiente. https:\/\/t.co\/XZCWBgssLK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"partidonovo30","name":"NOVO - 30","id":2734700584,"id_str":"2734700584","indices":[14,28]}],"urls":[],"media":[{"id":1505521771235135492,"id_str":"1505521771235135492","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","url":"https:\/\/t.co\/XZCWBgssLK","display_url":"pic.twitter.com\/XZCWBgssLK","expanded_url":"https:\/\/twitter.com\/P_Peri\/status\/1505521774011813891\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1942,"h":1412,"resize":"fit"},"medium":{"w":1200,"h":873,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505521771235135492,"id_str":"1505521771235135492","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOSwEwgWUAQ9wBi.jpg","url":"https:\/\/t.co\/XZCWBgssLK","display_url":"pic.twitter.com\/XZCWBgssLK","expanded_url":"https:\/\/twitter.com\/P_Peri\/status\/1505521774011813891\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1942,"h":1412,"resize":"fit"},"medium":{"w":1200,"h":873,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":72,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241366539066060802\/4MjGwFLP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241366539066060802\/4MjGwFLP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1239217471988645895\/1603410351","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275793946380247040,"id_str":"1275793946380247040","name":"\u0645\u0632\u0646\u0629 - \u062d\u0633\u0646\u0627\u0648\u064a","screen_name":"grace_peace80","location":"","description":"London\nMA - Eng. Lang. & Lit. \nSenior Translator\nAr. Lang. lecturer for non-native speakers.\nIslamic - Philosophy.Cultural Criticism. Sociology.Political Philosophy","url":"https:\/\/t.co\/3uAr4tG2rF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3uAr4tG2rF","expanded_url":"https:\/\/www.thenation.com\/article\/archive\/protests-iraq-syria-egypt\/","display_url":"thenation.com\/article\/archiv\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":882,"listed_count":0,"created_at":"Wed - Jun 24 14:12:44 +0000 2020","favourites_count":5913,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1231,"lang":null,"status":{"created_at":"Tue - Mar 22 20:21:48 +0000 2022","id":1506365548044730373,"id_str":"1506365548044730373","text":"RT - @DrHajjiri: \u0648\u0627\u0636\u062d \u0627\u0646\u0647 \u0647\u062f\u064a\u0644 - \u0631\u0641\u0639\u062a \u0631\u0627\u0633\u064a \u0647\u0646\u0627\u0643 - \u0648 \u0639\u0645\u0644\u062a \u0645\u0646\u064a\u062d \u0644\u0627\u0646\u0647\u0627 - \u0627\u0648\u0644 \u0645\u0628\u0627\u0631\u062d \u0628\u0639\u062b\u062a\u0644\u064a - \u0627\u0646\u0647\u0627 \u0627\u0646\u0642\u0628\u0644\u062a \u0641\u064a - #\u0643\u0644\u064a\u0641\u0644\u0627\u0646\u062f_\u0643\u0644\u064a\u0646\u064a\u0643 \u0628\u0639\u062f - \u0645\u0627 \u0639\u0645\u0644\u062a \u0645\u0642\u0627\u0628\u0644\u0627\u062a - \u0641\u064a \u0627\u0641\u0636\u0644\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u0643\u0644\u064a\u0641\u0644\u0627\u0646\u062f_\u0643\u0644\u064a\u0646\u064a\u0643","indices":[94,110]}],"symbols":[],"user_mentions":[{"screen_name":"DrHajjiri","name":"Mohammad - Hajjiri MD \u0627\u0644\u062f\u0643\u062a\u0648\u0631 \u0645\u062d\u0645\u062f - \u0627\u0644\u062d\u062c\u064a\u0631\u064a","id":1252641447809081346,"id_str":"1252641447809081346","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 10:17:41 +0000 2022","id":1506213516444844036,"id_str":"1506213516444844036","text":"\u0648\u0627\u0636\u062d - \u0627\u0646\u0647 \u0647\u062f\u064a\u0644 \u0631\u0641\u0639\u062a \u0631\u0627\u0633\u064a - \u0647\u0646\u0627\u0643 \u0648 \u0639\u0645\u0644\u062a \u0645\u0646\u064a\u062d - \u0644\u0627\u0646\u0647\u0627 \u0627\u0648\u0644 \u0645\u0628\u0627\u0631\u062d - \u0628\u0639\u062b\u062a\u0644\u064a \u0627\u0646\u0647\u0627 \u0627\u0646\u0642\u0628\u0644\u062a - \u0641\u064a #\u0643\u0644\u064a\u0641\u0644\u0627\u0646\u062f_\u0643\u0644\u064a\u0646\u064a\u0643 \u0628\u0639\u062f - \u0645\u0627 \u0639\u0645\u0644\u062a \u0645\u0642\u0627\u0628\u0644\u0627\u2026 - https:\/\/t.co\/4cp65yhHVf","truncated":true,"entities":{"hashtags":[{"text":"\u0643\u0644\u064a\u0641\u0644\u0627\u0646\u062f_\u0643\u0644\u064a\u0646\u064a\u0643","indices":[79,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4cp65yhHVf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506213516444844036","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506213515220197377,"in_reply_to_status_id_str":"1506213515220197377","in_reply_to_user_id":1252641447809081346,"in_reply_to_user_id_str":"1252641447809081346","in_reply_to_screen_name":"DrHajjiri","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":1046,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307793423441817600\/JpMiZ6YE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307793423441817600\/JpMiZ6YE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275793946380247040\/1600637107","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250471892,"id_str":"1250471892","name":"fakhan4777","screen_name":"fakhan4777","location":"Srinagar","description":"no - politics 9419008300","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":744,"friends_count":947,"listed_count":2,"created_at":"Fri - Mar 08 01:59:29 +0000 2013","favourites_count":15531,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25008,"lang":null,"status":{"created_at":"Sat - Mar 26 08:35:47 +0000 2022","id":1507637427724165127,"id_str":"1507637427724165127","text":"@AvivaKlompas - Resistance shows weakness of Putin and time consuming is winning sign of Ukraine","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AvivaKlompas","name":"Aviva - Klompas","id":2161051908,"id_str":"2161051908","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507634336497029120,"in_reply_to_status_id_str":"1507634336497029120","in_reply_to_user_id":2161051908,"in_reply_to_user_id_str":"2161051908","in_reply_to_screen_name":"AvivaKlompas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290868005685956610\/s_J4UHxb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290868005685956610\/s_J4UHxb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250471892\/1592150192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15607545,"id_str":"15607545","name":"tedmico","screen_name":"tedmico","location":"Venice, - CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":297,"listed_count":8,"created_at":"Sat - Jul 26 04:09:11 +0000 2008","favourites_count":182,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":532,"lang":null,"status":{"created_at":"Fri - Jan 28 23:00:18 +0000 2022","id":1487198881196560387,"id_str":"1487198881196560387","text":"@perryfarrell - @EttyLauFarrell Congrats you two!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"perryfarrell","name":"Perry - Farrell","id":21271656,"id_str":"21271656","indices":[0,13]},{"screen_name":"EttyLauFarrell","name":"Etty - Lau Farrell","id":21271938,"id_str":"21271938","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487187684099604480,"in_reply_to_status_id_str":"1487187684099604480","in_reply_to_user_id":21271656,"in_reply_to_user_id_str":"21271656","in_reply_to_screen_name":"perryfarrell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248751927\/41385_502416040_9625_q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248751927\/41385_502416040_9625_q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312427879217745923,"id_str":"1312427879217745923","name":"alejandro","screen_name":"aluengocm","location":"","description":"cocreta","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":2251,"listed_count":0,"created_at":"Sat - Oct 03 16:23:51 +0000 2020","favourites_count":28399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5954,"lang":null,"status":{"created_at":"Sat - Mar 26 09:43:13 +0000 2022","id":1507654394749325314,"id_str":"1507654394749325314","text":"RT - @DrJoaquinMateu: Vivir implica asumir #riesgos, pues los problemas a los que - nos enfrentamos en el d\u00eda a d\u00eda carecen de soluciones perfe\u2026","truncated":false,"entities":{"hashtags":[{"text":"riesgos","indices":[41,49]}],"symbols":[],"user_mentions":[{"screen_name":"DrJoaquinMateu","name":"Dr. - Joaqu\u00edn Mateu-Moll\u00e1","id":2530052556,"id_str":"2530052556","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:42:20 +0000 2022","id":1507654173642350595,"id_str":"1507654173642350595","text":"Vivir - implica asumir #riesgos, pues los problemas a los que nos enfrentamos en el - d\u00eda a d\u00eda carecen de soluciones p\u2026 https:\/\/t.co\/RDop11OqY6","truncated":true,"entities":{"hashtags":[{"text":"riesgos","indices":[21,29]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RDop11OqY6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507654173642350595","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":45,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505566012086833152\/46EyZnTV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505566012086833152\/46EyZnTV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312427879217745923\/1647785986","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":753665423481057280,"id_str":"753665423481057280","name":"MC","screen_name":"Evepro4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":604,"listed_count":0,"created_at":"Thu - Jul 14 19:00:14 +0000 2016","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024055892386299904\/sjP8vJDE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024055892386299904\/sjP8vJDE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2450884544,"id_str":"2450884544","name":"andrea","screen_name":"witzig4ever","location":"","description":"A - well-balanced person is one who finds both sides of an issue laughable.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":692,"listed_count":0,"created_at":"Fri - Apr 18 05:23:20 +0000 2014","favourites_count":43586,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14556,"lang":null,"status":{"created_at":"Fri - Mar 25 23:00:08 +0000 2022","id":1507492560469516290,"id_str":"1507492560469516290","text":"RT - @matthewjdowd: Let this sink in: a gop president, gop senators, gop representatives, - and the wife of a supreme court justice were direct\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewjdowd","name":"Matthew - Dowd","id":288363743,"id_str":"288363743","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:04:11 +0000 2022","id":1507387881278611497,"id_str":"1507387881278611497","text":"Let - this sink in: a gop president, gop senators, gop representatives, and the - wife of a supreme court justice were\u2026 https:\/\/t.co\/2oFVYMRYMb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2oFVYMRYMb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507387881278611497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16678,"favorite_count":60486,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16678,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033041944035971073\/r0Zg5kAs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033041944035971073\/r0Zg5kAs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2450884544\/1535130745","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1318961952673050625,"id_str":"1318961952673050625","name":"Cybele - Mayes-Osterman","screen_name":"CybeleMO","location":"","description":"Economics - Reporter for the Yomiuri Shimbun","url":"https:\/\/t.co\/ITbGB733Yt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ITbGB733Yt","expanded_url":"https:\/\/cybelemayesosterman.wordpress.com\/","display_url":"cybelemayesosterman.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":1044,"listed_count":0,"created_at":"Wed - Oct 21 17:06:57 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Tue - Mar 01 14:32:59 +0000 2022","id":1498667623000780800,"id_str":"1498667623000780800","text":"RT - @ukrainestream: Back when he was a comedian, the Ukrainian president #Zelensky - made this comedy skit where he was playing the president,\u2026","truncated":false,"entities":{"hashtags":[{"text":"Zelensky","indices":[72,81]}],"symbols":[],"user_mentions":[{"screen_name":"ukrainestream","name":"UkraineStream - \ud83c\uddfa\ud83c\udde6","id":1267850215614185477,"id_str":"1267850215614185477","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 11:34:08 +0000 2022","id":1498622610355200012,"id_str":"1498622610355200012","text":"Back - when he was a comedian, the Ukrainian president #Zelensky made this comedy - skit where he was playing the presi\u2026 https:\/\/t.co\/U01QLXTQus","truncated":true,"entities":{"hashtags":[{"text":"Zelensky","indices":[53,62]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U01QLXTQus","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498622610355200012","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":374,"favorite_count":1379,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":374,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318962067848663040\/FbOJzgYT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318962067848663040\/FbOJzgYT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318961952673050625\/1615304311","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":978491602862710784,"id_str":"978491602862710784","name":"jena","screen_name":"brokeboyjena","location":"Sacramento, - CA","description":"\ud83d\ude14","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":68,"listed_count":0,"created_at":"Tue - Mar 27 04:39:12 +0000 2018","favourites_count":2636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Wed - Jan 19 08:07:58 +0000 2022","id":1483712828175368192,"id_str":"1483712828175368192","text":"RT - @fish_narc: everything good that happens in my life will always be a little - sad because peep aint here to see it with me and its hitting\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fish_narc","name":"Camoufish - ----- Beauty - Beauty - beauty","id":2928129793,"id_str":"2928129793","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 19 01:57:19 +0000 2022","id":1483619551107420161,"id_str":"1483619551107420161","text":"everything - good that happens in my life will always be a little sad because peep aint - here to see it with me and it\u2026 https:\/\/t.co\/tZ7BgUgmr5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tZ7BgUgmr5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1483619551107420161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":329,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362664618506690566\/lMNicCab_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362664618506690566\/lMNicCab_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/978491602862710784\/1642579756","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":878500944,"id_str":"878500944","name":"jckc","screen_name":"jckc4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":2298,"listed_count":0,"created_at":"Sat - Oct 13 19:21:45 +0000 2012","favourites_count":18295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":794,"lang":null,"status":{"created_at":"Fri - Mar 25 17:52:40 +0000 2022","id":1507415181588320257,"id_str":"1507415181588320257","text":"RT - @RepWeinstein: In Ohio, you need a license to FISH, but not to concealed carry - a gun. \n\nThink about that.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepWeinstein","name":"Rep. - Casey Weinstein","id":745301594028318720,"id_str":"745301594028318720","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 12:14:53 +0000 2022","id":1506967789034160128,"id_str":"1506967789034160128","text":"In - Ohio, you need a license to FISH, but not to concealed carry a gun. \n\nThink - about that.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13459,"favorite_count":63639,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13459,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284189394358788096,"id_str":"1284189394358788096","name":"Z","screen_name":"urezir","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":7,"listed_count":0,"created_at":"Fri - Jul 17 18:13:18 +0000 2020","favourites_count":1465,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":635,"lang":null,"status":{"created_at":"Fri - Mar 25 22:38:53 +0000 2022","id":1507487211637260292,"id_str":"1507487211637260292","text":"RT - @MindHaste: Psychology Fact: Being alone is a power very few can handle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MindHaste","name":"Mind - Haste \u26a1\ufe0f","id":1339603410056724481,"id_str":"1339603410056724481","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:51:59 +0000 2022","id":1507248915741089795,"id_str":"1507248915741089795","text":"Psychology - Fact: Being alone is a power very few can handle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1808,"favorite_count":10090,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1808,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505034391910711296\/GA83--dT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505034391910711296\/GA83--dT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1284189394358788096\/1644839482","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182950849321943040,"id_str":"1182950849321943040","name":"XiYa - MOORE","screen_name":"XiyaZheng","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":458,"listed_count":0,"created_at":"Sat - Oct 12 09:27:27 +0000 2019","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Apr 06 03:30:05 +0000 2020","id":1247003619859161090,"id_str":"1247003619859161090","text":"Check - out this news article for Town of Minden, NV https:\/\/t.co\/CCARizRdde","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CCARizRdde","expanded_url":"http:\/\/www.townofminden.com\/CivicAlerts.aspx?AID=6","display_url":"townofminden.com\/CivicAlerts.as\u2026","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182950989864660993\/VbWV8CPs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182950989864660993\/VbWV8CPs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":237462866,"id_str":"237462866","name":"Miss - Mash","screen_name":"jimjams27","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":560,"listed_count":0,"created_at":"Wed - Jan 12 22:19:58 +0000 2011","favourites_count":96,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1355525874548879367\/HvUzsrl7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1355525874548879367\/HvUzsrl7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296449762305212418,"id_str":"1296449762305212418","name":"Felmeta - Seba","screen_name":"FelmetaSeba","location":"","description":"I am University - Lecturer in Ethiopia","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":306,"friends_count":1974,"listed_count":0,"created_at":"Thu - Aug 20 14:11:49 +0000 2020","favourites_count":2978,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2879,"lang":null,"status":{"created_at":"Mon - Jan 10 08:09:33 +0000 2022","id":1480451733885272065,"id_str":"1480451733885272065","text":"RT - @giuliaparavicin: The #Tigray People''s Liberation Front accused #Eritrea - of attacking its troops.\u201dThe Eritrean military launched fresh a\u2026","truncated":false,"entities":{"hashtags":[{"text":"Tigray","indices":[25,32]},{"text":"Eritrea","indices":[67,75]}],"symbols":[],"user_mentions":[{"screen_name":"giuliaparavicin","name":"giulia - paravicini","id":515558769,"id_str":"515558769","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 09 20:30:05 +0000 2022","id":1480275707901186060,"id_str":"1480275707901186060","text":"The - #Tigray People''s Liberation Front accused #Eritrea of attacking its troops.\u201dThe - Eritrean military launched fres\u2026 https:\/\/t.co\/pqStwTbBwI","truncated":true,"entities":{"hashtags":[{"text":"Tigray","indices":[4,11]},{"text":"Eritrea","indices":[46,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pqStwTbBwI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1480275707901186060","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":144,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":143,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107402144,"id_str":"1107402144","name":"Francis - Njihia Kaburu","screen_name":"KaburuNjihia","location":"Nairobi Kenya","description":"Lawyer.....Mwalimu - at UoN.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":897,"listed_count":0,"created_at":"Sun - Jan 20 22:03:49 +0000 2013","favourites_count":340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":259,"lang":null,"status":{"created_at":"Thu - Feb 24 13:44:52 +0000 2022","id":1496843572418600960,"id_str":"1496843572418600960","text":"RT - @IntlLegalJobs: Job: Associate Legal Officer - Chambers (P2) \nWith: @unirmct - \nWhere: The Hague, The Netherlands \nDeadline: 1 March 2022\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IntlLegalJobs","name":"International - Legal Jobs","id":1336262727661211650,"id_str":"1336262727661211650","indices":[3,17]},{"screen_name":"unirmct","name":"UNIRMCT","id":730056224612470784,"id_str":"730056224612470784","indices":[71,79]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 24 06:54:24 +0000 2022","id":1496740275716337666,"id_str":"1496740275716337666","text":"Job: - Associate Legal Officer - Chambers (P2) \nWith: @unirmct \nWhere: The Hague, - The Netherlands \nDeadline: 1 March\u2026 https:\/\/t.co\/FMGEkGkkeb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"unirmct","name":"UNIRMCT","id":730056224612470784,"id_str":"730056224612470784","indices":[52,60]}],"urls":[{"url":"https:\/\/t.co\/FMGEkGkkeb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496740275716337666","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309490347240808448\/NgQcciBj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309490347240808448\/NgQcciBj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295580372609114118,"id_str":"1295580372609114118","name":"chainsolidd","screen_name":"chainsolid","location":"Bangkok","description":"Engineer - Grobal IT Business\/ Work hard for my Family\/ Lovely\/Behave Childish \/ - Smart Man \/ 172\/51","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":454,"listed_count":0,"created_at":"Tue - Aug 18 04:36:55 +0000 2020","favourites_count":1246,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Fri - Mar 25 12:38:04 +0000 2022","id":1507336012414226433,"id_str":"1507336012414226433","text":"\u0e1e\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07 - #MORBIUS","truncated":false,"entities":{"hashtags":[{"text":"MORBIUS","indices":[8,16]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295580700855291905\/Db9F0bXq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295580700855291905\/Db9F0bXq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295580372609114118\/1597725594","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":876268781319991296,"id_str":"876268781319991296","name":"Jane - Neer","screen_name":"LehJJ","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":39,"listed_count":0,"created_at":"Sun - Jun 18 02:42:12 +0000 2017","favourites_count":419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":141,"lang":null,"status":{"created_at":"Thu - Jan 27 20:19:43 +0000 2022","id":1486796081388306437,"id_str":"1486796081388306437","text":"@mortreport - Rest up! You deserve it!! August 2022 is right around the corner!!! We \u2764\ufe0f - you, #JoshAllen!!!","truncated":false,"entities":{"hashtags":[{"text":"JoshAllen","indices":[91,101]}],"symbols":[],"user_mentions":[{"screen_name":"mortreport","name":"Chris - Mortensen","id":28870086,"id_str":"28870086","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1486722625481052167,"in_reply_to_status_id_str":"1486722625481052167","in_reply_to_user_id":28870086,"in_reply_to_user_id_str":"28870086","in_reply_to_screen_name":"mortreport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":146130972,"id_str":"146130972","name":"kmjuech","screen_name":"kmbath","location":"Wisconsin","description":"vote","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":485,"listed_count":1,"created_at":"Thu - May 20 17:29:38 +0000 2010","favourites_count":2070,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":198,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2659903064\/1eca921fff56db923a5deed15ad05c5c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2659903064\/1eca921fff56db923a5deed15ad05c5c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146130972\/1601691919","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":305316839,"id_str":"305316839","name":"hi","screen_name":"astroshi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":86,"listed_count":0,"created_at":"Thu - May 26 00:44:29 +0000 2011","favourites_count":4817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jan 20 17:34:34 +0000 2021","id":1351946233108180992,"id_str":"1351946233108180992","text":"@keiisssa - Lol look at you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"keiisssa","name":"Ms. - K\ud83c\udf79","id":288534448,"id_str":"288534448","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1351943866744791040,"in_reply_to_status_id_str":"1351943866744791040","in_reply_to_user_id":288534448,"in_reply_to_user_id_str":"288534448","in_reply_to_screen_name":"keiisssa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36750413,"id_str":"36750413","name":"Dennis - Curtin","screen_name":"WMKSpokesman","location":"Sunbury, PA","description":"Weis - Markets Corporate Communications","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":617,"friends_count":1775,"listed_count":12,"created_at":"Thu - Apr 30 19:38:22 +0000 2009","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2054,"lang":null,"status":{"created_at":"Thu - Mar 24 14:50:35 +0000 2022","id":1507006969873272844,"id_str":"1507006969873272844","text":"@balldontstop - more like the dream","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"balldontstop","name":"Ball - Don''t Stop","id":1654765284,"id_str":"1654765284","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506850685165326336,"in_reply_to_status_id_str":"1506850685165326336","in_reply_to_user_id":1654765284,"in_reply_to_user_id_str":"1654765284","in_reply_to_screen_name":"balldontstop","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614500241060986880\/cba5_itL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614500241060986880\/cba5_itL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36750413\/1435343232","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":462437078,"id_str":"462437078","name":"valeria - jung","screen_name":"dacilu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":62,"listed_count":0,"created_at":"Thu - Jan 12 23:26:54 +0000 2012","favourites_count":1762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":572,"lang":null,"status":{"created_at":"Fri - Jun 18 07:18:45 +0000 2021","id":1405787050725367811,"id_str":"1405787050725367811","text":"DepEd - chief Briones lying, teachers insist https:\/\/t.co\/HtYn9N44ry","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HtYn9N44ry","expanded_url":"https:\/\/newsinfo.inquirer.net\/1447297\/deped-chief-briones-lying-teachers-insist","display_url":"newsinfo.inquirer.net\/1447297\/deped-\u2026","indices":[43,66]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21448599,"id_str":"21448599","name":"Beau - \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\u2618\ufe0f\ud83c\udf0a\ud83e\uddae\ud83e\uddae\ud83d\udc36\ud83c\udf40\ud83c\udf08","screen_name":"lbeau","location":"Bucks - County PA.","description":"\u2764\ufe0f my native state of WI & proud PA resident. - Married,\ud83d\udc99Politics & Current Events, Gardening, Travel, Foodie, - LGBTQ,BLM & Mental Health Ally,\u2764\ufe0fto 3 \ud83e\uddaeNo DM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2934,"friends_count":4255,"listed_count":5,"created_at":"Sat - Feb 21 00:03:26 +0000 2009","favourites_count":66255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7112,"lang":null,"status":{"created_at":"Sat - Mar 26 01:44:42 +0000 2022","id":1507533971319660550,"id_str":"1507533971319660550","text":"@jessi_asli - \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jessi_asli","name":"Jess - \ud83c\udf3b","id":1345808153624064000,"id_str":"1345808153624064000","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507459159461036043,"in_reply_to_status_id_str":"1507459159461036043","in_reply_to_user_id":1345808153624064000,"in_reply_to_user_id_str":"1345808153624064000","in_reply_to_screen_name":"jessi_asli","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496896731153371136\/wyAuNCvT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496896731153371136\/wyAuNCvT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21448599\/1646191040","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":975516907,"id_str":"975516907","name":"TmbDrum","screen_name":"PepeLasVegas","location":"Sinatra - Land","description":"I put the ass in sass. I lost a bunch of weight last - year. USC grad. Can\u2019t take much seriously.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":703,"friends_count":4989,"listed_count":9,"created_at":"Wed - Nov 28 06:37:11 +0000 2012","favourites_count":15535,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15492,"lang":null,"status":{"created_at":"Sat - Mar 26 04:10:48 +0000 2022","id":1507570739154591744,"id_str":"1507570739154591744","text":"@Padres - @_JorgeAlfaro11 Wish I could have seen this on @BallySportsSD, of which the - @Padres own a 20% interest. Unf\u2026 https:\/\/t.co\/Y4YpOTN4Ov","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Padres","name":"San - Diego Padres","id":37837907,"id_str":"37837907","indices":[0,7]},{"screen_name":"_JorgeAlfaro11","name":"Jorge - Alfaro","id":622119533,"id_str":"622119533","indices":[8,23]},{"screen_name":"BallySportsSD","name":"Bally - Sports San Diego","id":510674085,"id_str":"510674085","indices":[55,69]},{"screen_name":"Padres","name":"San - Diego Padres","id":37837907,"id_str":"37837907","indices":[84,91]}],"urls":[{"url":"https:\/\/t.co\/Y4YpOTN4Ov","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507570739154591744","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507535648617500672,"in_reply_to_status_id_str":"1507535648617500672","in_reply_to_user_id":37837907,"in_reply_to_user_id_str":"37837907","in_reply_to_screen_name":"Padres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295245639534534657\/aLo7pXn9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295245639534534657\/aLo7pXn9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/975516907\/1635797851","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":79050363,"id_str":"79050363","name":"Agneta - Glenesk","screen_name":"AgnetaGlenesk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":314,"listed_count":0,"created_at":"Fri - Oct 02 00:43:40 +0000 2009","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sun - Oct 29 22:36:25 +0000 2017","id":924766900650987522,"id_str":"924766900650987522","text":"RT - @SLUSwimDive: Mina Glenesk won the 1650 free for her 3rd win of the meet. Ryan - McCoy picked up his 2nd win with a victory in the 100 fr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SLUSwimDive","name":"SLU - Swimming\/Diving","id":2543745157,"id_str":"2543745157","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Oct 29 15:35:50 +0000 2017","id":924661059000111104,"id_str":"924661059000111104","text":"Mina - Glenesk won the 1650 free for her 3rd win of the meet. Ryan McCoy picked - up his 2nd win with a victory in the 100 free #Billikens","truncated":false,"entities":{"hashtags":[{"text":"Billikens","indices":[125,135]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35209723,"id_str":"35209723","name":"Dan","screen_name":"NIGHT_HAWK65","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":104,"listed_count":0,"created_at":"Sat - Apr 25 13:24:12 +0000 2009","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":309,"lang":null,"status":{"created_at":"Thu - Mar 04 05:44:35 +0000 2021","id":1367350238084820996,"id_str":"1367350238084820996","text":"@sinksships - @Tomcatt65 I know exactly how she feels","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sinksships","name":"Katie - \ud83c\udde8\ud83c\udde6","id":177727767,"id_str":"177727767","indices":[0,11]},{"screen_name":"Tomcatt65","name":"Tomcat - \ud83c\udf85\ud83c\udffb","id":3315855861,"id_str":"3315855861","indices":[12,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1343900788096172038,"in_reply_to_status_id_str":"1343900788096172038","in_reply_to_user_id":177727767,"in_reply_to_user_id_str":"177727767","in_reply_to_screen_name":"sinksships","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489347123\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489347123\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2732214381,"id_str":"2732214381","name":"Mark - Curran \ud83c\udf08\ud83d\ude82\ud83d\ude84\ud83d\ude86\ud83e\udd2a\ud83d\ude1c\ud83e\udd18\ud83e\udd1f\ud83c\udf40\ud83c\udf40\ud83c\udf08\u2708","screen_name":"markcurran77","location":"blanchardstown - dublin 15 ","description":"Hello welcome ok I need help you deaf sign language - ISL Ireland nice meet people only boy and man only used photo train and airlines - enthusiasts interested only","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":694,"friends_count":3629,"listed_count":13,"created_at":"Sun - Aug 03 06:54:33 +0000 2014","favourites_count":14459,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2412,"lang":null,"status":{"created_at":"Thu - Mar 17 21:58:26 +0000 2022","id":1504577930164326416,"id_str":"1504577930164326416","text":"hello - good \ud83d\udc4d you ok I hope get new routes from Dublin airport to Algeria - with Ryanair be very welcome very importan\u2026 https:\/\/t.co\/AyPcXuUK6B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AyPcXuUK6B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504577930164326416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146427358850756608\/VTRJvUK0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146427358850756608\/VTRJvUK0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2334116796,"id_str":"2334116796","name":"isabela - but i am more annoying","screen_name":"indickated","location":"Mobile, AL","description":"you - can see my lazy eye!","url":"https:\/\/t.co\/2HlypHIZ0V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2HlypHIZ0V","expanded_url":"http:\/\/Instagram.com\/sisabeladonovan","display_url":"Instagram.com\/sisabeladonovan","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":948,"listed_count":0,"created_at":"Sat - Feb 08 21:45:48 +0000 2014","favourites_count":35527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12692,"lang":null,"status":{"created_at":"Fri - Mar 18 16:54:35 +0000 2022","id":1504863851120103427,"id_str":"1504863851120103427","text":"Where - is Shaq on March madness?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344430205637681158\/ZVqeaMyt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344430205637681158\/ZVqeaMyt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2334116796\/1573085378","profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311038500201000962,"id_str":"1311038500201000962","name":"Adama - M. Sando","screen_name":"AdamaMSando1","location":"","description":"I''m a - goals getter, a young leader starving for Success.\nA son of God","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":249,"listed_count":0,"created_at":"Tue - Sep 29 20:22:09 +0000 2020","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311039060618760193\/nYEUZJng_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311039060618760193\/nYEUZJng_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":170002405,"id_str":"170002405","name":"Kristina - Nolte","screen_name":"knoltes","location":"Philadelphia, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":300,"listed_count":4,"created_at":"Fri - Jul 23 18:15:14 +0000 2010","favourites_count":1775,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":275,"lang":null,"status":{"created_at":"Fri - Apr 09 19:14:38 +0000 2021","id":1380600055078486024,"id_str":"1380600055078486024","text":"@ziwe - ZIWE THIS LOOKS INCREDIBLE I can\u2019t wait!!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ziwe","name":"ziwe","id":261749497,"id_str":"261749497","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1380551455778672641,"in_reply_to_status_id_str":"1380551455778672641","in_reply_to_user_id":261749497,"in_reply_to_user_id_str":"261749497","in_reply_to_screen_name":"ziwe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1120386943966154754\/jg4zcIe8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1120386943966154754\/jg4zcIe8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170002405\/1548605358","profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C9C9C9","profile_text_color":"1C1F23","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1117183708765806594,"id_str":"1117183708765806594","name":"Manny1776","screen_name":"emme0210","location":"United - States","description":"Prohibe los augurios para evitar las dudas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":2413,"listed_count":1,"created_at":"Sat - Apr 13 21:52:07 +0000 2019","favourites_count":2411,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":578,"lang":null,"status":{"created_at":"Sun - Jul 11 16:13:55 +0000 2021","id":1414256648646971396,"id_str":"1414256648646971396","text":"RT - @hijademacondo: Que clase de comia a Residente por charlat\u00e1n \ud83d\ude0f\ud83d\udc10","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hijademacondo","name":"IN\u00c9S","id":943634930789158912,"id_str":"943634930789158912","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jul 11 11:21:17 +0000 2021","id":1414183007922032646,"id_str":"1414183007922032646","text":"Que - clase de comia a Residente por charlat\u00e1n \ud83d\ude0f\ud83d\udc10 https:\/\/t.co\/9EhBBIkVGF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9EhBBIkVGF","expanded_url":"https:\/\/twitter.com\/leniapr24\/status\/1414035259184799745","display_url":"twitter.com\/leniapr24\/stat\u2026","indices":[48,71]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1414035259184799745,"quoted_status_id_str":"1414035259184799745","retweet_count":16,"favorite_count":50,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1414035259184799745,"quoted_status_id_str":"1414035259184799745","retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1414236981832396804\/IU3zm9SX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1414236981832396804\/IU3zm9SX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117183708765806594\/1626015346","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1472233176,"id_str":"1472233176","name":"Earth - Simulation 1.0","screen_name":"elizabethw1967","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":107,"listed_count":0,"created_at":"Fri - May 31 14:13:43 +0000 2013","favourites_count":442,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Sun - Mar 06 04:26:44 +0000 2022","id":1500326992281018369,"id_str":"1500326992281018369","text":"Dave - Matthews Band - Satellite https:\/\/t.co\/EZNqShFMZd via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[59,67]}],"urls":[{"url":"https:\/\/t.co\/EZNqShFMZd","expanded_url":"https:\/\/youtu.be\/GAamgBPebsk","display_url":"youtu.be\/GAamgBPebsk","indices":[31,54]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322044870412980224\/PiFE60Ie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322044870412980224\/PiFE60Ie_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1324138676419354624,"id_str":"1324138676419354624","name":"mand","screen_name":"mand20595088","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":3,"listed_count":0,"created_at":"Wed - Nov 04 23:57:26 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1354406995,"id_str":"1354406995","name":"Joan - Day (Don\u2019t forgive\/forget 1\/6\/21!","screen_name":"gkhvd4","location":"Goffstown, - NH","description":"I am a retired nurse who specialized in Critical Care, - Unit Management and Case Magement. I am blissfully married and have three - children. No DMs DON\u2019T FORGET","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2307,"friends_count":3282,"listed_count":0,"created_at":"Mon - Apr 15 13:41:27 +0000 2013","favourites_count":84290,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57041,"lang":null,"status":{"created_at":"Mon - Oct 11 12:42:03 +0000 2021","id":1447543013677408262,"id_str":"1447543013677408262","text":"RT - @mdnij34: Who believes the pandemic had an impact on your mental health?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mdnij34","name":"Political - Poet","id":558180233,"id_str":"558180233","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 11 11:54:45 +0000 2021","id":1447531110813081604,"id_str":"1447531110813081604","text":"Who - believes the pandemic had an impact on your mental health?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":345,"favorite_count":5264,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":345,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273050899284443138\/B12CAIFM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273050899284443138\/B12CAIFM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":376344165,"id_str":"376344165","name":"Myles - Rich","screen_name":"mirich11","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":3044,"listed_count":0,"created_at":"Mon - Sep 19 18:33:34 +0000 2011","favourites_count":16968,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":139545024,"id_str":"139545024","name":"James - Goode","screen_name":"jr_goode","location":"London","description":"Long suffering - Birmingham City fan. Follows the England Rugby and Cricket team, general sport, - news & politics. Opinions my own. Re-tweets are not endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":231,"friends_count":1286,"listed_count":5,"created_at":"Sun - May 02 23:49:09 +0000 2010","favourites_count":280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":284,"lang":null,"status":{"created_at":"Sat - Mar 12 13:15:32 +0000 2022","id":1502634396045750274,"id_str":"1502634396045750274","text":"@james_acton32 - @FiveThirtyEight @galendruke Thank you James for such an informative contribution. - Made for a great show","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"james_acton32","name":"(((James - Acton)))","id":513912180,"id_str":"513912180","indices":[0,14]},{"screen_name":"FiveThirtyEight","name":"FiveThirtyEight","id":2303751216,"id_str":"2303751216","indices":[15,31]},{"screen_name":"galendruke","name":"Galen - Druke","id":334033297,"id_str":"334033297","indices":[32,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502292074049290242,"in_reply_to_status_id_str":"1502292074049290242","in_reply_to_user_id":513912180,"in_reply_to_user_id_str":"513912180","in_reply_to_screen_name":"james_acton32","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4B5559","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1063603776387469312\/GpFKORls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1063603776387469312\/GpFKORls_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139545024\/1526947323","profile_link_color":"1B95E0","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":711466869228752896,"id_str":"711466869228752896","name":"Sadiq - Sani Sulaiman","screen_name":"SadiqSaniSulai1","location":"Kano Municipal","description":"Young - entrepreneur, CEO Sss investment, CSS student, Intro-extrovert & Person that - has the passion to express his mind positively\u270d\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":2783,"listed_count":0,"created_at":"Sun - Mar 20 08:18:14 +0000 2016","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Sun - Feb 13 19:38:08 +0000 2022","id":1492946209094393861,"id_str":"1492946209094393861","text":"Almighty - god is all hearing and seeing all what you''re doing. The core and ones at - front in jeopardizing the future\u2026 https:\/\/t.co\/bHWmved3gU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bHWmved3gU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492946209094393861","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482804938686226433\/-SZ3p1xm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482804938686226433\/-SZ3p1xm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711466869228752896\/1645903643","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300838499189432323,"id_str":"1300838499189432323","name":"Suraj - mohammed","screen_name":"Surajmo55282799","location":"","description":"Living - life with no regret \ud83d\udc4d\ud83c\udffc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":479,"listed_count":2,"created_at":"Tue - Sep 01 16:50:53 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Sep 01 16:57:58 +0000 2020","id":1300840332557512707,"id_str":"1300840332557512707","text":"#NewProfilePic - https:\/\/t.co\/eRgga9t2Td","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1300840324378628098,"id_str":"1300840324378628098","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/Eg2DYgQXkAIQCuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Eg2DYgQXkAIQCuX.jpg","url":"https:\/\/t.co\/eRgga9t2Td","display_url":"pic.twitter.com\/eRgga9t2Td","expanded_url":"https:\/\/twitter.com\/Surajmo55282799\/status\/1300840332557512707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1300840324378628098,"id_str":"1300840324378628098","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/Eg2DYgQXkAIQCuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Eg2DYgQXkAIQCuX.jpg","url":"https:\/\/t.co\/eRgga9t2Td","display_url":"pic.twitter.com\/eRgga9t2Td","expanded_url":"https:\/\/twitter.com\/Surajmo55282799\/status\/1300840332557512707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300840303146995712\/cZmwVfUA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300840303146995712\/cZmwVfUA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1056221032649027584,"id_str":"1056221032649027584","name":"A","screen_name":"banksisdgoat","location":"she\/her","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":662,"friends_count":717,"listed_count":0,"created_at":"Sat - Oct 27 16:28:12 +0000 2018","favourites_count":79789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42078,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1431611511521218564\/bpjhvgR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1431611511521218564\/bpjhvgR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056221032649027584\/1620761963","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1173937164,"id_str":"1173937164","name":"Greg - Tayo","screen_name":"fadelegreg","location":"Lagos, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":50,"friends_count":906,"listed_count":0,"created_at":"Wed - Feb 13 05:03:18 +0000 2013","favourites_count":72,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":85,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255831769795960832\/6VfXCndV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255831769795960832\/6VfXCndV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51685485,"id_str":"51685485","name":"Jimo","screen_name":"kkojimo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":1519,"listed_count":1,"created_at":"Sun - Jun 28 08:39:51 +0000 2009","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17348480,"id_str":"17348480","name":"Alex - Mentkowski","screen_name":"AlexMentkowski","location":"Earth","description":"Believer - of universal human rights, striving to be an advocate for not only myself - but for others, envisioning a more inclusive world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":284,"friends_count":1369,"listed_count":7,"created_at":"Wed - Nov 12 20:53:59 +0000 2008","favourites_count":19868,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10036,"lang":null,"status":{"created_at":"Fri - Mar 25 05:52:21 +0000 2022","id":1507233910161219585,"id_str":"1507233910161219585","text":"@SethDavisHoops - Nah dude inconsistent as hell Arizona better off without him","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SethDavisHoops","name":"Seth - Davis","id":38002432,"id_str":"38002432","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507231032571219969,"in_reply_to_status_id_str":"1507231032571219969","in_reply_to_user_id":38002432,"in_reply_to_user_id_str":"38002432","in_reply_to_screen_name":"SethDavisHoops","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222752707225800707\/GusPaRgx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222752707225800707\/GusPaRgx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17348480\/1399273009","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":552739870,"id_str":"552739870","name":"ADEYINKA","screen_name":"adesope_adeyink","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":711,"listed_count":0,"created_at":"Fri - Apr 13 14:25:39 +0000 2012","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":263,"lang":null,"status":{"created_at":"Sat - Mar 26 09:05:19 +0000 2022","id":1507644857950552067,"id_str":"1507644857950552067","text":"RT - @YusufParwez55: The Prophet (\ufdfa) said, \"None of you should point out - towards his Muslim brother with a weapon, for he does not know, Sata\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YusufParwez55","name":"Islamic - Manner Support","id":1362701219182034945,"id_str":"1362701219182034945","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:52:53 +0000 2022","id":1507520931450609671,"id_str":"1507520931450609671","text":"The - Prophet (\ufdfa) said, \"None of you should point out towards his Muslim brother - with a weapon, for he does not know,\u2026 https:\/\/t.co\/1jjSfTrwSy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1jjSfTrwSy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507520931450609671","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":200,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505439881828388867\/e-WgY3lw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505439881828388867\/e-WgY3lw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/552739870\/1600796395","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1151765844,"id_str":"1151765844","name":"Jennifer - Petrauskas","screen_name":"Ejenjene","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":577,"listed_count":1,"created_at":"Tue - Feb 05 19:25:39 +0000 2013","favourites_count":459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":565,"lang":null,"status":{"created_at":"Sun - Jun 13 03:00:45 +0000 2021","id":1403910181885558784,"id_str":"1403910181885558784","text":"@drericbergdc - Love and appreciate what you do. I have a question that I have never seen - you answer. I have never se\u2026 https:\/\/t.co\/gB6rc9jSHQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drericbergdc","name":"dr - eric berg","id":127584931,"id_str":"127584931","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/gB6rc9jSHQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1403910181885558784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":127584931,"in_reply_to_user_id_str":"127584931","in_reply_to_screen_name":"drericbergdc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/665314025773764608\/FeIzvq5d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/665314025773764608\/FeIzvq5d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151765844\/1488899556","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165720423738138625,"id_str":"1165720423738138625","name":"Kiichi - Goto","screen_name":"kiichi_goto","location":"","description":"Senior Sergeant - of the Thot Patrol","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":752,"listed_count":0,"created_at":"Sun - Aug 25 20:20:43 +0000 2019","favourites_count":2922,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":457,"lang":null,"status":{"created_at":"Fri - Mar 25 02:57:01 +0000 2022","id":1507189784548376579,"id_str":"1507189784548376579","text":"@EveryWorDid911 - I knew it! I knew all along it was a false flag - Terrence & Phillip were - behind 9\/11!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EveryWorDid911","name":"EveryWordDid9\/11","id":845137912740012033,"id_str":"845137912740012033","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506971775791292425,"in_reply_to_status_id_str":"1506971775791292425","in_reply_to_user_id":845137912740012033,"in_reply_to_user_id_str":"845137912740012033","in_reply_to_screen_name":"EveryWorDid911","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318027940559429632\/DJ2heBdP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318027940559429632\/DJ2heBdP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1165720423738138625\/1566814700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":71997890,"id_str":"71997890","name":"J - MaRsH ThE flyy 1","screen_name":"immafly1","location":"Carson, CA\/DA","description":"Aquarius, - cool guy down to earth, chasing \ud83d\udcb5\ud83d\udcb5\ud83d\udcb0and \ud83d\udc8e\ud83d\udc8e''s - CarsoN Alumni #RIPLORI #TeamAquarius#TeamEagles","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":462,"friends_count":4359,"listed_count":0,"created_at":"Sun - Sep 06 08:37:26 +0000 2009","favourites_count":768,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63508,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366948950624792576\/Jl_-el1Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366948950624792576\/Jl_-el1Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71997890\/1609133834","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1125901988875706368,"id_str":"1125901988875706368","name":"\u1d2e\u1d31Sook\u2077","screen_name":"ThankYouBTS1904","location":"Nebraska, - USA","description":"Fan account for BTS, she\/her, \ubbf8\uad6d \uc0ac\ub294 - \ud55c\uad6d \uc544\ubbf8 K-ARMY in NE, USA. 40\uc0b4 \uc544\ubbf8\uc544\uc90c\ub9c8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":848,"listed_count":0,"created_at":"Tue - May 07 23:15:27 +0000 2019","favourites_count":12595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1453,"lang":null,"status":{"created_at":"Thu - Jan 13 22:31:49 +0000 2022","id":1481755893523963904,"id_str":"1481755893523963904","text":"@heun0613bts - \ubd80\ub7fd\uc18c...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"heun0613bts","name":"\ucd5c\uc560\ub2947\uba85\ucc28\uc560\ub294\uc544\ubbf8\uadf8\ub798\uc784\ub9c8\uae30\ub2e4\ub824","id":1331400447609892866,"id_str":"1331400447609892866","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1481470099651379202,"in_reply_to_status_id_str":"1481470099651379202","in_reply_to_user_id":1331400447609892866,"in_reply_to_user_id_str":"1331400447609892866","in_reply_to_screen_name":"heun0613bts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198284816531279872\/eUsA-qw4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198284816531279872\/eUsA-qw4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1125901988875706368\/1571485791","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2830820867,"id_str":"2830820867","name":"Lauren - Buck, M.A.","screen_name":"Lizzy_LaurenB","location":"","description":"Public - school teacher aspiring to bake everything on Great British Baking Show","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":562,"listed_count":1,"created_at":"Wed - Oct 15 01:00:55 +0000 2014","favourites_count":2701,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Thu - Jan 20 23:01:20 +0000 2022","id":1484300037098291200,"id_str":"1484300037098291200","text":"@cabotcheese - Seriously Sharp always and forever","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cabotcheese","name":"Cabot - Cheese","id":16121039,"id_str":"16121039","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484134655154659329,"in_reply_to_status_id_str":"1484134655154659329","in_reply_to_user_id":16121039,"in_reply_to_user_id_str":"16121039","in_reply_to_screen_name":"cabotcheese","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572155475858354176\/RjXrLlRd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572155475858354176\/RjXrLlRd_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":116361111,"id_str":"116361111","name":"GS","screen_name":"gshipster","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":1382,"listed_count":1,"created_at":"Mon - Feb 22 05:20:14 +0000 2010","favourites_count":366,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Wed - Feb 16 11:44:55 +0000 2022","id":1493914285420036097,"id_str":"1493914285420036097","text":"@georgehahn - Great","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"georgehahn","name":"George - Hahn","id":22730752,"id_str":"22730752","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493737443572473858,"in_reply_to_status_id_str":"1493737443572473858","in_reply_to_user_id":22730752,"in_reply_to_user_id_str":"22730752","in_reply_to_screen_name":"georgehahn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809990414648406017\/IOwFUtX8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809990414648406017\/IOwFUtX8_normal.jpg","profile_link_color":"0089B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":287441719,"id_str":"287441719","name":"Dae - \ud83c\udf39","screen_name":"Nike2times","location":"","description":"CAU - Alumna \"I will walk by faith even when I cannot see\" \ud83d\ude4f\ud83c\udffe","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":960,"friends_count":567,"listed_count":3,"created_at":"Mon - Apr 25 00:44:09 +0000 2011","favourites_count":2173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":100617,"lang":null,"status":{"created_at":"Sat - Mar 26 06:11:37 +0000 2022","id":1507601146113839106,"id_str":"1507601146113839106","text":"RT - @sopharush: God, \n\nI can\u2019t thank you enough for getting me through - another week. Thank you for protecting & watching over me. You contin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sopharush","name":"S.","id":1352311544,"id_str":"1352311544","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:59:55 +0000 2022","id":1507371709292232709,"id_str":"1507371709292232709","text":"God, - \n\nI can\u2019t thank you enough for getting me through another week. Thank - you for protecting & watching over me. Y\u2026 https:\/\/t.co\/C1XQhM7xCn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1XQhM7xCn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507371709292232709","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2631,"favorite_count":6576,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2631,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447293453918900224\/AgtYaouL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447293453918900224\/AgtYaouL_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1828029500,"id_str":"1828029500","name":"Judy - weinstock","screen_name":"jmweinstock2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":290,"listed_count":0,"created_at":"Sun - Sep 08 11:55:02 +0000 2013","favourites_count":3977,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123392815164162049\/f8-gtc2E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123392815164162049\/f8-gtc2E_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":213901414,"id_str":"213901414","name":"Liz - Aloi","screen_name":"lizaloi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":410,"listed_count":1,"created_at":"Wed - Nov 10 02:02:44 +0000 2010","favourites_count":369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"status":{"created_at":"Fri - Mar 25 16:54:48 +0000 2022","id":1507400620835225600,"id_str":"1507400620835225600","text":"RT - @MayorBowser: The District of Champions loves our women\u2019s sports teams, - and now we also look forward to celebrating and uplifting this c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MayorBowser","name":"Mayor - Muriel Bowser","id":976542720,"id_str":"976542720","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:45:54 +0000 2022","id":1507398378065469443,"id_str":"1507398378065469443","text":"The - District of Champions loves our women\u2019s sports teams, and now we also - look forward to celebrating and uplifting\u2026 https:\/\/t.co\/Lij5vzh0SC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lij5vzh0SC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507398378065469443","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507335455842447362,"quoted_status_id_str":"1507335455842447362","retweet_count":11,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507335455842447362,"quoted_status_id_str":"1507335455842447362","retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302656721278709760\/ujFaXVya_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302656721278709760\/ujFaXVya_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1121876942377181185,"id_str":"1121876942377181185","name":"Julie - Countiss","screen_name":"CountissJulie","location":"Houston, TX","description":"Justice - on the First Court of Appeals, Texas #appellatetwitter","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":56,"friends_count":405,"listed_count":1,"created_at":"Fri - Apr 26 20:41:21 +0000 2019","favourites_count":340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397682447345651712\/VhhXr-F4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397682447345651712\/VhhXr-F4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":552849893,"id_str":"552849893","name":"Native - Tears\ud83d\udd4a","screen_name":"mumbles4evr","location":"Indiana, USA","description":"A - Law student, A fighter for Justice\/Freedom, Guided by Faith, there''s many - facets to who I am...pick one. \ud83d\ude01\ud83d\ude09","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":4770,"listed_count":13,"created_at":"Fri - Apr 13 16:59:25 +0000 2012","favourites_count":15926,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16458,"lang":null,"status":{"created_at":"Fri - Mar 25 15:29:17 +0000 2022","id":1507379100381593602,"id_str":"1507379100381593602","text":"Jackson - faces growing GOP opposition on Supreme Court https:\/\/t.co\/pM7TybvMoh\nMcConnell - has no right to speak again\u2026 https:\/\/t.co\/oxOj4IwWFj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pM7TybvMoh","expanded_url":"https:\/\/thehill.com\/homenews\/senate\/599689-jackson-faces-growing-gop-opposition-on-supreme-court","display_url":"thehill.com\/homenews\/senat\u2026","indices":[54,77]},{"url":"https:\/\/t.co\/oxOj4IwWFj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507379100381593602","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474193638787850245\/3xI3w9Sk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474193638787850245\/3xI3w9Sk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58374795,"id_str":"58374795","name":"Jesse - Zentz","screen_name":"JesseZentz","location":"Helena, MT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":588,"friends_count":672,"listed_count":23,"created_at":"Mon - Jul 20 03:17:51 +0000 2009","favourites_count":27015,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8435,"lang":null,"status":{"created_at":"Sat - Mar 26 02:10:29 +0000 2022","id":1507540460146860032,"id_str":"1507540460146860032","text":"RT - @BrendanThompsn: Relaxed aggression.\n\nPoetic violence.\n\nThis is what fast - looks like and what fast requires. If you haven\u2019t found a way\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrendanThompsn","name":"Brendan - Thompson, PT, DPT","id":589632406,"id_str":"589632406","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:15:17 +0000 2022","id":1507179280995958786,"id_str":"1507179280995958786","text":"Relaxed - aggression.\n\nPoetic violence.\n\nThis is what fast looks like and what fast - requires. If you haven\u2019t found a\u2026 https:\/\/t.co\/0dJsvt8pCp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0dJsvt8pCp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507179280995958786","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":764,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":153,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324463038909444096\/Ve-Hf2ij_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324463038909444096\/Ve-Hf2ij_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58374795\/1604611506","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":389776435,"id_str":"389776435","name":"liam - jones","screen_name":"Liamjones1104","location":"Dublin","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":101,"listed_count":1,"created_at":"Wed - Oct 12 23:57:49 +0000 2011","favourites_count":22178,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"status":{"created_at":"Sat - Mar 26 05:11:06 +0000 2022","id":1507585916679897089,"id_str":"1507585916679897089","text":"RT - @CEOAdam: I was highly confident that AMC\u2019s skills could quickly \u201cright - the ship\u201d at Hycroft (HYMC). We just did! Eric Sprott and AMC in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CEOAdam","name":"Adam - Aron","id":399216451,"id_str":"399216451","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:37:15 +0000 2022","id":1507501897963302915,"id_str":"1507501897963302915","text":"I - was highly confident that AMC\u2019s skills could quickly \u201cright the - ship\u201d at Hycroft (HYMC). We just did! Eric Sprott\u2026 https:\/\/t.co\/Je4NLymNNG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Je4NLymNNG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507501897963302915","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1977,"favorite_count":8844,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1977,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3414211883\/c88e08443158269615bc114010fc6f4a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3414211883\/c88e08443158269615bc114010fc6f4a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389776435\/1363965563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":167050606,"id_str":"167050606","name":"nandini - rao","screen_name":"nandini_v","location":"California","description":"Hazaron - khwahishein aisi ki har khwaish pe dum nikle...bahut nikle mere armaan lekin - phir bhi kum nikle..!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":111,"listed_count":0,"created_at":"Thu - Jul 15 16:48:52 +0000 2010","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sat - Oct 31 07:32:40 +0000 2020","id":1322441342627143680,"id_str":"1322441342627143680","text":"Wow - .. https:\/\/t.co\/yeJ8bfyPxG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yeJ8bfyPxG","expanded_url":"https:\/\/twitter.com\/GavinNewsom\/status\/1322352692342280192","display_url":"twitter.com\/GavinNewsom\/st\u2026","indices":[7,30]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1322352692342280192,"quoted_status_id_str":"1322352692342280192","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131841126946631680\/2dB__UCY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131841126946631680\/2dB__UCY_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":870962100646105089,"id_str":"870962100646105089","name":"A - L I Y U \ud83d\udc8e","screen_name":"Dii_Aliyu","location":"sokoto state","description":"I''m p - r o u d t o b e i n I s l a m a n d M a y a l m i g h - t y A l l a h t a k e m y l i f e i n I s l a m \ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":161,"friends_count":2086,"listed_count":4,"created_at":"Sat - Jun 03 11:15:21 +0000 2017","favourites_count":554,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":118,"lang":null,"status":{"created_at":"Wed - Mar 02 07:39:55 +0000 2022","id":1498926055721160707,"id_str":"1498926055721160707","text":"@maliya30 - @00khadija_ \ud83e\udd23\ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maliya30","name":"jikan - shekhy","id":1345892124227727360,"id_str":"1345892124227727360","indices":[0,9]},{"screen_name":"00khadija_","name":"00deejatoubea\ud83e\udd8b","id":1494070143688790017,"id_str":"1494070143688790017","indices":[10,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498666789454200839,"in_reply_to_status_id_str":"1498666789454200839","in_reply_to_user_id":1345892124227727360,"in_reply_to_user_id_str":"1345892124227727360","in_reply_to_screen_name":"maliya30","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483334973239214081\/az1Ccu-s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483334973239214081\/az1Ccu-s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/870962100646105089\/1597604328","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":103989292,"id_str":"103989292","name":"Fadi - Yousef","screen_name":"fadi_85","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":1069,"listed_count":0,"created_at":"Mon - Jan 11 22:33:36 +0000 2010","favourites_count":529,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268655295\/DSC00956_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268655295\/DSC00956_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2717902903,"id_str":"2717902903","name":"KT - Corbett","screen_name":"tkcorbett10","location":"Nanaimo, British Columbia","description":"Retired - city planning director. Interests: change mgmt, placemaking, local govt & - resilient communities. Real interests: hiking, kayaking & running.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":804,"listed_count":2,"created_at":"Fri - Aug 08 19:53:08 +0000 2014","favourites_count":4011,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":686,"lang":null,"status":{"created_at":"Wed - Mar 23 02:49:32 +0000 2022","id":1506463127071707141,"id_str":"1506463127071707141","text":"RT - @nature_i1: The art of communication \ud83d\ude0a https:\/\/t.co\/zylcUefSvT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nature_i1","name":"Awesome - Nature & Incredible Science","id":1491454953495351298,"id_str":"1491454953495351298","indices":[3,13]}],"urls":[],"media":[{"id":1506146242094637056,"id_str":"1506146242094637056","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","url":"https:\/\/t.co\/zylcUefSvT","display_url":"pic.twitter.com\/zylcUefSvT","expanded_url":"https:\/\/twitter.com\/nature_i1\/status\/1506146465030279169\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1506146465030279169,"source_status_id_str":"1506146465030279169","source_user_id":1491454953495351298,"source_user_id_str":"1491454953495351298"}]},"extended_entities":{"media":[{"id":1506146242094637056,"id_str":"1506146242094637056","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","url":"https:\/\/t.co\/zylcUefSvT","display_url":"pic.twitter.com\/zylcUefSvT","expanded_url":"https:\/\/twitter.com\/nature_i1\/status\/1506146465030279169\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1506146465030279169,"source_status_id_str":"1506146465030279169","source_user_id":1491454953495351298,"source_user_id_str":"1491454953495351298","video_info":{"aspect_ratio":[16,9],"duration_millis":41536,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/pl\/PS7Eerr_dvmoa-er.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/vid\/640x360\/4dQAwRGV1_uVaT5q.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/vid\/480x270\/U0pC0TZPextMOuSE.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 05:51:14 +0000 2022","id":1506146465030279169,"id_str":"1506146465030279169","text":"The - art of communication \ud83d\ude0a https:\/\/t.co\/zylcUefSvT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506146242094637056,"id_str":"1506146242094637056","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","url":"https:\/\/t.co\/zylcUefSvT","display_url":"pic.twitter.com\/zylcUefSvT","expanded_url":"https:\/\/twitter.com\/nature_i1\/status\/1506146465030279169\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506146242094637056,"id_str":"1506146242094637056","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506146242094637056\/pu\/img\/4eKX8fuy-RGr9jB1.jpg","url":"https:\/\/t.co\/zylcUefSvT","display_url":"pic.twitter.com\/zylcUefSvT","expanded_url":"https:\/\/twitter.com\/nature_i1\/status\/1506146465030279169\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":41536,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/pl\/PS7Eerr_dvmoa-er.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/vid\/640x360\/4dQAwRGV1_uVaT5q.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506146242094637056\/pu\/vid\/480x270\/U0pC0TZPextMOuSE.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3884,"favorite_count":14704,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3884,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820436325161545728\/_vhpefhO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820436325161545728\/_vhpefhO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256358583639441408,"id_str":"1256358583639441408","name":"Daddybarakat6","screen_name":"Daddybarakat6","location":"Taraba","description":"Pure - Black, Cristiano Ronaldo fan (GOAT) Football lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":1022,"listed_count":0,"created_at":"Fri - May 01 23:03:38 +0000 2020","favourites_count":2231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":330,"lang":null,"status":{"created_at":"Sat - May 15 22:11:08 +0000 2021","id":1393690435554533381,"id_str":"1393690435554533381","text":"@Ndidi25 - Where sinior man dey","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ndidi25","name":"Ndidi - Wilfred","id":799572459544518656,"id_str":"799572459544518656","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1393647751762792449,"in_reply_to_status_id_str":"1393647751762792449","in_reply_to_user_id":799572459544518656,"in_reply_to_user_id_str":"799572459544518656","in_reply_to_screen_name":"Ndidi25","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320345014711537665\/ylJUrSH9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320345014711537665\/ylJUrSH9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":912700331196260352,"id_str":"912700331196260352","name":"Barry - McCoy","screen_name":"callmed1zzle","location":"Bridge Creek, OK","description":"Make - the Yuletide gay again || Something else || Another personal thing || More - stuff and things","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":560,"listed_count":0,"created_at":"Tue - Sep 26 15:28:10 +0000 2017","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Thu - Nov 19 11:59:13 +0000 2020","id":1329393791338500101,"id_str":"1329393791338500101","text":"@OliviaMacdona17 - @ronnui_ Thank you, so much, for this. My god. And you HAVE to sing it, right?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OliviaMacdona17","name":"Olivia","id":3361966371,"id_str":"3361966371","indices":[0,16]},{"screen_name":"ronnui_","name":"Ron - Iver","id":14730716,"id_str":"14730716","indices":[17,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1329297705986908160,"in_reply_to_status_id_str":"1329297705986908160","in_reply_to_user_id":3361966371,"in_reply_to_user_id_str":"3361966371","in_reply_to_screen_name":"OliviaMacdona17","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/949829915033161729\/JECvnvHP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949829915033161729\/JECvnvHP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912700331196260352\/1515292326","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":456350529,"id_str":"456350529","name":"Anthony - Horvath","screen_name":"NoLackKing313","location":"Detroit, MI","description":"Raised - In The City of Dealers\nFENKELL\nYAE YAE VS EVERYBODY\nUNDEAD TILL I DIE\nSubscribe - to me on YouTube","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":1972,"listed_count":0,"created_at":"Fri - Jan 06 04:37:19 +0000 2012","favourites_count":526,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sun - Oct 31 04:15:08 +0000 2021","id":1454663201627459586,"id_str":"1454663201627459586","text":"Happy - Halloween everyone!! \ud83c\udf83\ud83c\udf83\ud83d\ude03\ud83d\udc4f\ud83c\udffc\ud83d\udc4f\ud83c\udffc\ud83d\udd25\ud83d\udd25\ud83d\udcaf\ud83d\udcaf\ud83d\udc40 - Stay safe and God bless always.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"339bd7ae6a55ba9f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/339bd7ae6a55ba9f.json","place_type":"city","name":"Dearborn","full_name":"Dearborn, - MI","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.2870942,42.277554],[-83.14002,42.277554],[-83.14002,42.3519101],[-83.2870942,42.3519101]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397820061776293889\/huS73XID_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397820061776293889\/huS73XID_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456350529\/1569635322","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277864761556897793,"id_str":"1277864761556897793","name":"Aidan - Simpson","screen_name":"AidanSi60528822","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":1003,"listed_count":1,"created_at":"Tue - Jun 30 07:21:27 +0000 2020","favourites_count":5792,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Mon - Dec 13 07:55:19 +0000 2021","id":1470301292383899650,"id_str":"1470301292383899650","text":"RT - @DeadlineDayLive: \ud83d\udea8 Ajax manager Erik ten Haag has jumped to the - top of Manchester United''s shortlist as the Premier League club continu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeadlineDayLive","name":"Transfer - News Live","id":1030711922,"id_str":"1030711922","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Dec 12 09:09:20 +0000 2021","id":1469957531183243268,"id_str":"1469957531183243268","text":"\ud83d\udea8 - Ajax manager Erik ten Haag has jumped to the top of Manchester United''s shortlist - as the Premier League club cont\u2026 https:\/\/t.co\/t4tsZYHyNq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t4tsZYHyNq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1469957531183243268","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":253,"favorite_count":2848,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":253,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277865043846184960\/rYlwCeAZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277865043846184960\/rYlwCeAZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1065955063183618050,"id_str":"1065955063183618050","name":"fran - gumabon","screen_name":"GumabonFran","location":"United States","description":"I - believe everyone should be treated with respectNo matter who they are where - they\u2019re from or what they look like","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":905,"friends_count":2874,"listed_count":0,"created_at":"Fri - Nov 23 13:07:46 +0000 2018","favourites_count":59898,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7993,"lang":null,"status":{"created_at":"Fri - Mar 25 15:47:56 +0000 2022","id":1507383790607474690,"id_str":"1507383790607474690","text":"RT - @SpiroAgnewGhost: \u201cWoMeN ArE Too EmoTionaL\u201d https:\/\/t.co\/wm0AUM6jBu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpiroAgnewGhost","name":"Spiro - Agnew\u2019s Ghost \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":2323448533,"id_str":"2323448533","indices":[3,19]}],"urls":[],"media":[{"id":1507163951766798349,"id_str":"1507163951766798349","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","url":"https:\/\/t.co\/wm0AUM6jBu","display_url":"pic.twitter.com\/wm0AUM6jBu","expanded_url":"https:\/\/twitter.com\/SpiroAgnewGhost\/status\/1507163954744754205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1107,"resize":"fit"},"large":{"w":1282,"h":1183,"resize":"fit"},"small":{"w":680,"h":627,"resize":"fit"}},"source_status_id":1507163954744754205,"source_status_id_str":"1507163954744754205","source_user_id":2323448533,"source_user_id_str":"2323448533"}]},"extended_entities":{"media":[{"id":1507163951766798349,"id_str":"1507163951766798349","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","url":"https:\/\/t.co\/wm0AUM6jBu","display_url":"pic.twitter.com\/wm0AUM6jBu","expanded_url":"https:\/\/twitter.com\/SpiroAgnewGhost\/status\/1507163954744754205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1107,"resize":"fit"},"large":{"w":1282,"h":1183,"resize":"fit"},"small":{"w":680,"h":627,"resize":"fit"}},"source_status_id":1507163954744754205,"source_status_id_str":"1507163954744754205","source_user_id":2323448533,"source_user_id_str":"2323448533"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:14:23 +0000 2022","id":1507163954744754205,"id_str":"1507163954744754205","text":"\u201cWoMeN - ArE Too EmoTionaL\u201d https:\/\/t.co\/wm0AUM6jBu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507163951766798349,"id_str":"1507163951766798349","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","url":"https:\/\/t.co\/wm0AUM6jBu","display_url":"pic.twitter.com\/wm0AUM6jBu","expanded_url":"https:\/\/twitter.com\/SpiroAgnewGhost\/status\/1507163954744754205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1107,"resize":"fit"},"large":{"w":1282,"h":1183,"resize":"fit"},"small":{"w":680,"h":627,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507163951766798349,"id_str":"1507163951766798349","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqFoPtVgA0Xfoz.jpg","url":"https:\/\/t.co\/wm0AUM6jBu","display_url":"pic.twitter.com\/wm0AUM6jBu","expanded_url":"https:\/\/twitter.com\/SpiroAgnewGhost\/status\/1507163954744754205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1107,"resize":"fit"},"large":{"w":1282,"h":1183,"resize":"fit"},"small":{"w":680,"h":627,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":464,"favorite_count":2212,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":464,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378337266289020928\/tBcHAxRa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378337266289020928\/tBcHAxRa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25687934,"id_str":"25687934","name":"Dr. - Oakley Domingo","screen_name":"ROKOLIE18","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":197,"listed_count":0,"created_at":"Sat - Mar 21 15:48:16 +0000 2009","favourites_count":2442,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":319,"lang":null,"status":{"created_at":"Wed - Mar 09 12:19:09 +0000 2022","id":1501533043105878016,"id_str":"1501533043105878016","text":"@RhiannaFord - Seek God not humans.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RhiannaFord","name":"Rhianna - Estelle Elbourne Ford","id":1488913566367301637,"id_str":"1488913566367301637","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501247323904507907,"in_reply_to_status_id_str":"1501247323904507907","in_reply_to_user_id":1488913566367301637,"in_reply_to_user_id_str":"1488913566367301637","in_reply_to_screen_name":"RhiannaFord","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477661020441219075\/l-4Fh6Q6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477661020441219075\/l-4Fh6Q6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25687934\/1607993455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":894314311484665856,"id_str":"894314311484665856","name":"Raimundo - Oliveira","screen_name":"Raimundos1965","location":"Monaco","description":"Monaco - hermit #DataRightsAreHumanRights #Peace #BeInformed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":368,"friends_count":1919,"listed_count":7,"created_at":"Sun - Aug 06 21:48:42 +0000 2017","favourites_count":23931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37419,"lang":null,"status":{"created_at":"Fri - Dec 31 22:05:35 +0000 2021","id":1477038249164120077,"id_str":"1477038249164120077","text":"@JChengWSJ - This would not be so funny if not what is happening in the US \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JChengWSJ","name":"Jonathan - Cheng","id":382788364,"id_str":"382788364","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1476750205441691653,"in_reply_to_status_id_str":"1476750205441691653","in_reply_to_user_id":382788364,"in_reply_to_user_id_str":"382788364","in_reply_to_screen_name":"JChengWSJ","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181915487518765056\/17gN8Fp3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181915487518765056\/17gN8Fp3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/894314311484665856\/1570625590","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":567825515,"id_str":"567825515","name":"Shannon - O''Neill","screen_name":"GalleyRat87","location":"Norfolk, VA","description":"Navy - Chief, Chicago native and Culinarian by trade.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":73,"listed_count":0,"created_at":"Tue - May 01 03:51:50 +0000 2012","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Fri - May 07 00:08:39 +0000 2021","id":1390458521758670851,"id_str":"1390458521758670851","text":"RT - @WAVY_News: RIP to a legend. https:\/\/t.co\/tBjIL41a1z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WAVY_News","name":"WAVY - TV 10","id":16259594,"id_str":"16259594","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/tBjIL41a1z","expanded_url":"https:\/\/www.wavy.com\/news\/national\/94-year-old-who-went-viral-with-i-need-more-beer-sign-dies\/","display_url":"wavy.com\/news\/national\/\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - May 06 11:12:33 +0000 2021","id":1390263209098190853,"id_str":"1390263209098190853","text":"RIP - to a legend. https:\/\/t.co\/tBjIL41a1z","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tBjIL41a1z","expanded_url":"https:\/\/www.wavy.com\/news\/national\/94-year-old-who-went-viral-with-i-need-more-beer-sign-dies\/","display_url":"wavy.com\/news\/national\/\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":111,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181750782389051393\/rkzvTwRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181750782389051393\/rkzvTwRc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/567825515\/1570586482","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":578115120,"id_str":"578115120","name":"\u6e20\u53f3","screen_name":"zhicaix","location":"Los - Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":276,"friends_count":4503,"listed_count":0,"created_at":"Sat - May 12 12:58:33 +0000 2012","favourites_count":732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":470,"lang":null,"status":{"created_at":"Thu - Mar 10 15:57:42 +0000 2022","id":1501950431596998664,"id_str":"1501950431596998664","text":"RT - @markito0171: #Russia equipped the #Donbass -separatists with old shit from\nII. - WW https:\/\/t.co\/fWUHPnLpD7","truncated":false,"entities":{"hashtags":[{"text":"Russia","indices":[17,24]},{"text":"Donbass","indices":[38,46]}],"symbols":[],"user_mentions":[{"screen_name":"markito0171","name":"C4H10FO2P","id":255986116,"id_str":"255986116","indices":[3,15]}],"urls":[],"media":[{"id":1501810663580127240,"id_str":"1501810663580127240","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","url":"https:\/\/t.co\/fWUHPnLpD7","display_url":"pic.twitter.com\/fWUHPnLpD7","expanded_url":"https:\/\/twitter.com\/markito0171\/status\/1501810755729084421\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":372,"resize":"fit"},"medium":{"w":848,"h":464,"resize":"fit"},"large":{"w":848,"h":464,"resize":"fit"}},"source_status_id":1501810755729084421,"source_status_id_str":"1501810755729084421","source_user_id":255986116,"source_user_id_str":"255986116"}]},"extended_entities":{"media":[{"id":1501810663580127240,"id_str":"1501810663580127240","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","url":"https:\/\/t.co\/fWUHPnLpD7","display_url":"pic.twitter.com\/fWUHPnLpD7","expanded_url":"https:\/\/twitter.com\/markito0171\/status\/1501810755729084421\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":372,"resize":"fit"},"medium":{"w":848,"h":464,"resize":"fit"},"large":{"w":848,"h":464,"resize":"fit"}},"source_status_id":1501810755729084421,"source_status_id_str":"1501810755729084421","source_user_id":255986116,"source_user_id_str":"255986116","video_info":{"aspect_ratio":[53,29],"duration_millis":61950,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/vid\/492x270\/X0RDkEgKIOfHAAq4.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/pl\/6R4b-Hndz8WN_xxZ.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/vid\/848x464\/jwewLUaon7-ghrwO.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 06:42:41 +0000 2022","id":1501810755729084421,"id_str":"1501810755729084421","text":"#Russia - equipped the #Donbass -separatists with old shit from\nII. WW https:\/\/t.co\/fWUHPnLpD7","truncated":false,"entities":{"hashtags":[{"text":"Russia","indices":[0,7]},{"text":"Donbass","indices":[21,29]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501810663580127240,"id_str":"1501810663580127240","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","url":"https:\/\/t.co\/fWUHPnLpD7","display_url":"pic.twitter.com\/fWUHPnLpD7","expanded_url":"https:\/\/twitter.com\/markito0171\/status\/1501810755729084421\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":372,"resize":"fit"},"medium":{"w":848,"h":464,"resize":"fit"},"large":{"w":848,"h":464,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501810663580127240,"id_str":"1501810663580127240","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501810663580127240\/pu\/img\/Kcg2whMbsIM0SV55.jpg","url":"https:\/\/t.co\/fWUHPnLpD7","display_url":"pic.twitter.com\/fWUHPnLpD7","expanded_url":"https:\/\/twitter.com\/markito0171\/status\/1501810755729084421\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":372,"resize":"fit"},"medium":{"w":848,"h":464,"resize":"fit"},"large":{"w":848,"h":464,"resize":"fit"}},"video_info":{"aspect_ratio":[53,29],"duration_millis":61950,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/vid\/492x270\/X0RDkEgKIOfHAAq4.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/pl\/6R4b-Hndz8WN_xxZ.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501810663580127240\/pu\/vid\/848x464\/jwewLUaon7-ghrwO.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":554,"favorite_count":1872,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":554,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285934165062369283\/KLk0WrF0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285934165062369283\/KLk0WrF0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/578115120\/1539412678","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1121269099701653504,"id_str":"1121269099701653504","name":"Bula - Kere","screen_name":"bula_kere","location":"Finfine, Ethiopia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":233,"listed_count":0,"created_at":"Thu - Apr 25 04:26:00 +0000 2019","favourites_count":2583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":421,"lang":null,"status":{"created_at":"Sat - Mar 05 12:17:50 +0000 2022","id":1500083163359555585,"id_str":"1500083163359555585","text":"RT - @gemechu3: Alarming reports that Batte Urgessa, Oromo Liberation Front PR, - is extremely sick & denied medical treatment by the Ethiopian\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gemechu3","name":"gemechu - geleta","id":532924044,"id_str":"532924044","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 22:25:54 +0000 2022","id":1499873796538486790,"id_str":"1499873796538486790","text":"Alarming - reports that Batte Urgessa, Oromo Liberation Front PR, is extremely sick & - denied medical treatment by the\u2026 https:\/\/t.co\/A7NIO0OXZ4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A7NIO0OXZ4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499873796538486790","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":33,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408413645290225665\/4NpQakRa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408413645290225665\/4NpQakRa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1121269099701653504\/1622523684","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250259299093417989,"id_str":"1250259299093417989","name":"Ms. - Edu K Ted","screen_name":"MzEduKTed","location":"Chicago, IL","description":"Social - Tworkin\u2019 for Some Change","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":552,"listed_count":0,"created_at":"Wed - Apr 15 03:07:16 +0000 2020","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468821285505482757\/zky2kYqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468821285505482757\/zky2kYqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250259299093417989\/1639029260","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30502809,"id_str":"30502809","name":"nehccr","screen_name":"nehccr","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":261,"listed_count":0,"created_at":"Sat - Apr 11 19:06:36 +0000 2009","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":250773713,"id_str":"250773713","name":"PhizSmurf","screen_name":"PhizSmurf","location":"Ireland","description":"Joanna - Murphy Doing the do. Views my own etc etc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":164,"friends_count":1032,"listed_count":1,"created_at":"Fri - Feb 11 19:42:12 +0000 2011","favourites_count":6525,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3711,"lang":null,"status":{"created_at":"Thu - Mar 24 19:54:08 +0000 2022","id":1507083361868783631,"id_str":"1507083361868783631","text":"RT - @raggett_declan: A request to ye people on twitter.. I was at a blood donation - clinic this evening and I have never seen it so quiet.. S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"raggett_declan","name":"declan - raggett","id":1538173712,"id_str":"1538173712","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:17:17 +0000 2022","id":1506757000776015879,"id_str":"1506757000776015879","text":"A - request to ye people on twitter.. I was at a blood donation clinic this evening - and I have never seen it so quiet\u2026 https:\/\/t.co\/eQUW05HwQV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eQUW05HwQV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506757000776015879","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":261,"favorite_count":345,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":261,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251677341\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251677341\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250773713\/1401521907","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2389461335,"id_str":"2389461335","name":"Connie - Going","screen_name":"GoingConnie","location":"St Petersburg, FL","description":"Child - Welfare Advocate, Speaker and Adoptive Mom , passionate about making a difference - in the world! https:\/\/t.co\/WtAYTjyqkA","url":"https:\/\/t.co\/N6RHcGNshO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N6RHcGNshO","expanded_url":"http:\/\/conniegoing.com","display_url":"conniegoing.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/WtAYTjyqkA","expanded_url":"http:\/\/Conniegoing.com","display_url":"Conniegoing.com","indices":[102,125]}]}},"protected":false,"followers_count":1045,"friends_count":1629,"listed_count":7,"created_at":"Thu - Mar 06 22:04:18 +0000 2014","favourites_count":10871,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3282,"lang":null,"status":{"created_at":"Fri - Mar 25 01:05:00 +0000 2022","id":1507161594509381636,"id_str":"1507161594509381636","text":"@joncoopertweets - Asshole","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507135813359972358,"in_reply_to_status_id_str":"1507135813359972358","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/783318033267822593\/TT6gLi0V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/783318033267822593\/TT6gLi0V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2389461335\/1512410891","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4016612795,"id_str":"4016612795","name":"Tijani - jimoh","screen_name":"kolapotj67","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":303,"listed_count":0,"created_at":"Thu - Oct 22 11:46:40 +0000 2015","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Thu - Mar 24 15:19:41 +0000 2022","id":1507014295665618954,"id_str":"1507014295665618954","text":"@woye1 - Only if the powers that be will allow other moribund LNG projects in Nigeria - - Brass LNG and OKLNG to mater\u2026 https:\/\/t.co\/G5V1foZB71","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"woye1","name":"Woye","id":241941306,"id_str":"241941306","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/G5V1foZB71","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507014295665618954","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506968550484938753,"in_reply_to_status_id_str":"1506968550484938753","in_reply_to_user_id":241941306,"in_reply_to_user_id_str":"241941306","in_reply_to_screen_name":"woye1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276507377798447106,"id_str":"1276507377798447106","name":"Titi","screen_name":"Titi74984272","location":"Switzerland","description":"Just - one more person looking to know others and checking the news!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":880,"listed_count":2,"created_at":"Fri - Jun 26 13:27:41 +0000 2020","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":239,"lang":null,"status":{"created_at":"Tue - Dec 29 16:13:17 +0000 2020","id":1343953243626491905,"id_str":"1343953243626491905","text":"https:\/\/t.co\/fINjYnM8GV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fINjYnM8GV","expanded_url":"https:\/\/youtu.be\/kP8BqBV6sAM","display_url":"youtu.be\/kP8BqBV6sAM","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276507531972665345\/fE5kEW8T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276507531972665345\/fE5kEW8T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276507377798447106\/1593179748","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":826456955858194433,"id_str":"826456955858194433","name":"Donelle - Franklin","screen_name":"donellefranklin","location":"Colorado, USA","description":"Retired marriage - family therapist. Worked with learning disabilities & head injuries art history - & geology. Studied fascism Father in law WWII VET","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4476,"friends_count":4998,"listed_count":4,"created_at":"Tue - Jan 31 15:47:47 +0000 2017","favourites_count":1774,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126303,"lang":null,"status":{"created_at":"Sat - Mar 26 01:09:45 +0000 2022","id":1507525177009184773,"id_str":"1507525177009184773","text":"Republican - Sexual Predators, Abusers, and Enablers Pt. 7 https:\/\/t.co\/QL5tiCIxtO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QL5tiCIxtO","expanded_url":"https:\/\/www.dailykos.com\/story\/2018\/10\/29\/1808053\/-Republican-Predators-Abusers-and-Enablers-Pt-7","display_url":"dailykos.com\/story\/2018\/10\/\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182688230899994624\/FMH7cwL-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182688230899994624\/FMH7cwL-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831388197166907396,"id_str":"831388197166907396","name":"\u269c\ufe0fKathyonthecoast - \u269c\ufe0f","screen_name":"Kathy42039422","location":"Mississippi gulf coast - usa","description":"#WhoDat fan \u269c\ufe0f\u269c\ufe0fSaints #NeverTrumper - #FBR Please no DMs. #SupportHCWs.#VoteBlue LBKAmputee\ud83e\uddb5 retired - X-ray tech.\ud83d\udc2c\u2600\ufe0f\ud83c\udf79\ud83c\udfbc\ud83c\udfdd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8947,"friends_count":8956,"listed_count":6,"created_at":"Tue - Feb 14 06:22:47 +0000 2017","favourites_count":20378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7484,"lang":null,"status":{"created_at":"Sat - Mar 26 01:06:11 +0000 2022","id":1507524281474945025,"id_str":"1507524281474945025","text":"RT - @TheRickWilson: 7\/ I''ll tell you what they''d do.\n\nThey''d burn Washington - to the damn ground.\n\nThey''d salt the earth.\n\nThey''d call for sa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:07:42 +0000 2022","id":1507358566885347328,"id_str":"1507358566885347328","text":"7\/ - I''ll tell you what they''d do.\n\nThey''d burn Washington to the damn ground.\n\nThey''d - salt the earth.\n\nThey''d call f\u2026 https:\/\/t.co\/a7ZjIdJe3v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a7ZjIdJe3v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507358566885347328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507358314375622678,"in_reply_to_status_id_str":"1507358314375622678","in_reply_to_user_id":19084896,"in_reply_to_user_id_str":"19084896","in_reply_to_screen_name":"TheRickWilson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1711,"favorite_count":14190,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1711,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211666858912423936\/fTuGwgGn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211666858912423936\/fTuGwgGn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831388197166907396\/1589734732","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1652806314,"id_str":"1652806314","name":"Hush - Charlie\ud83c\uddfa\ud83c\udde6","screen_name":"LilyLittleG","location":"Las - Vegas, NV","description":"Senior Hospitality Manager, Event\/Catering Management, - Wife, Mother, and have deep love of family, good friends, and cooking.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":933,"listed_count":0,"created_at":"Wed - Aug 07 12:32:11 +0000 2013","favourites_count":14942,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5386,"lang":null,"status":{"created_at":"Fri - Mar 25 13:27:19 +0000 2022","id":1507348405072269317,"id_str":"1507348405072269317","text":"@ejthies15 - It was all about the replacement","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ejthies15","name":"Emily - Thies","id":27462105,"id_str":"27462105","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506795088919285764,"in_reply_to_status_id_str":"1506795088919285764","in_reply_to_user_id":27462105,"in_reply_to_user_id_str":"27462105","in_reply_to_screen_name":"ejthies15","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302635625959452674\/sLxGex0y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302635625959452674\/sLxGex0y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652806314\/1591081742","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2325265021,"id_str":"2325265021","name":"Andrius - Pranckeviciu","screen_name":"AndriusPranckev","location":"","description":"Agro - commodity trading;","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":3566,"listed_count":0,"created_at":"Mon - Feb 03 10:45:15 +0000 2014","favourites_count":5518,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Sat - Jan 22 09:09:09 +0000 2022","id":1484815388697321477,"id_str":"1484815388697321477","text":"@carlbildt - Two big differences - no Politburo, only KGB today, and no JFK in US;","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"carlbildt","name":"Carl - Bildt","id":18549724,"id_str":"18549724","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1484545621726007298,"in_reply_to_status_id_str":"1484545621726007298","in_reply_to_user_id":18549724,"in_reply_to_user_id_str":"18549724","in_reply_to_screen_name":"carlbildt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431008714091278337\/I1mkUIBe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431008714091278337\/I1mkUIBe_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249727071825379328,"id_str":"1249727071825379328","name":"Augu - Bob","screen_name":"BobAugu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":470,"listed_count":1,"created_at":"Mon - Apr 13 15:52:23 +0000 2020","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Mon - Mar 15 18:55:16 +0000 2021","id":1371535487626842120,"id_str":"1371535487626842120","text":"@FalialaKiza - Maweja devrait partir","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FalialaKiza","name":"Habacuc - FALIALA KIZA","id":3306941032,"id_str":"3306941032","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1371050719944527879,"in_reply_to_status_id_str":"1371050719944527879","in_reply_to_user_id":3306941032,"in_reply_to_user_id_str":"3306941032","in_reply_to_screen_name":"FalialaKiza","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2802686233,"id_str":"2802686233","name":"B","screen_name":"bernadettelnov1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":530,"listed_count":0,"created_at":"Wed - Sep 10 23:42:17 +0000 2014","favourites_count":25539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4850,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:55 +0000 2022","id":1507559191845736450,"id_str":"1507559191845736450","text":"RT - @Kateryna_Kruk: Learned that my relative was killed in action. He was 24 and - he died defending Ukraine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kateryna_Kruk","name":"Kateryna_Kruk","id":1725292759,"id_str":"1725292759","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:50:51 +0000 2022","id":1507444926031802370,"id_str":"1507444926031802370","text":"Learned - that my relative was killed in action. He was 24 and he died defending Ukraine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5087,"favorite_count":55782,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5087,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269337334,"id_str":"1269337334","name":"Mansur - A. Abubakar, PhD","screen_name":"Mansur_abubakr","location":"Abuja, Nigeria","description":"Strategies - and Data scientists http:\/\/MSC Information Technology@Cavendish","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":938,"friends_count":3128,"listed_count":0,"created_at":"Fri - Mar 15 09:54:53 +0000 2013","favourites_count":198,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":362,"lang":null,"status":{"created_at":"Sat - Mar 19 04:29:54 +0000 2022","id":1505038832768622592,"id_str":"1505038832768622592","text":"@AYCOMEDIAN - \ud83e\udd23\ud83e\udd23\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AYCOMEDIAN","name":"AY - COMEDIAN","id":82319018,"id_str":"82319018","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504784521262215177,"in_reply_to_status_id_str":"1504784521262215177","in_reply_to_user_id":82319018,"in_reply_to_user_id_str":"82319018","in_reply_to_screen_name":"AYCOMEDIAN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/998408002741809152\/JyQUS_2I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/998408002741809152\/JyQUS_2I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269337334\/1436443701","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3323390168,"id_str":"3323390168","name":"amb","screen_name":"ambercurtisss","location":"","description":"\u2649\ufe0f - she\/her blm acab snap: ambercurtis6052","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":354,"listed_count":0,"created_at":"Sat - Aug 22 04:21:53 +0000 2015","favourites_count":3831,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1296,"lang":null,"status":{"created_at":"Fri - Mar 25 15:41:56 +0000 2022","id":1507382282402865179,"id_str":"1507382282402865179","text":"RT - @sbmaneyphoto: Being the first often means you have to be the best \u2014 - and the bravest. \ud83d\udcf8 @sbmaneyphoto for @nytimes https:\/\/t.co\/DSZiawln\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sbmaneyphoto","name":"Sarahbeth - Maney","id":871969172141494273,"id_str":"871969172141494273","indices":[3,16]},{"screen_name":"sbmaneyphoto","name":"Sarahbeth - Maney","id":871969172141494273,"id_str":"871969172141494273","indices":[91,104]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[109,117]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 00:56:45 +0000 2022","id":1506797132002562058,"id_str":"1506797132002562058","text":"Being - the first often means you have to be the best \u2014 and the bravest. \ud83d\udcf8 - @sbmaneyphoto for @nytimes https:\/\/t.co\/DSZiawlnDd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sbmaneyphoto","name":"Sarahbeth - Maney","id":871969172141494273,"id_str":"871969172141494273","indices":[73,86]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[91,99]}],"urls":[],"media":[{"id":1506797127007145984,"id_str":"1506797127007145984","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FOk4AO_XEAAJ45x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOk4AO_XEAAJ45x.jpg","url":"https:\/\/t.co\/DSZiawlnDd","display_url":"pic.twitter.com\/DSZiawlnDd","expanded_url":"https:\/\/twitter.com\/sbmaneyphoto\/status\/1506797132002562058\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":866,"resize":"fit"},"small":{"w":680,"h":491,"resize":"fit"},"large":{"w":1440,"h":1039,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506797127007145984,"id_str":"1506797127007145984","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FOk4AO_XEAAJ45x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOk4AO_XEAAJ45x.jpg","url":"https:\/\/t.co\/DSZiawlnDd","display_url":"pic.twitter.com\/DSZiawlnDd","expanded_url":"https:\/\/twitter.com\/sbmaneyphoto\/status\/1506797132002562058\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":866,"resize":"fit"},"small":{"w":680,"h":491,"resize":"fit"},"large":{"w":1440,"h":1039,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"01fbe706f872cb32","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01fbe706f872cb32.json","place_type":"city","name":"Washington","full_name":"Washington, - DC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-77.119401,38.801826],[-76.909396,38.801826],[-76.909396,38.9953797],[-77.119401,38.9953797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":13819,"favorite_count":115350,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13819,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395517201604653057\/T3l20Ej6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395517201604653057\/T3l20Ej6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323390168\/1613852855","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":542277713,"id_str":"542277713","name":"Anurag - Sharma","screen_name":"Anurag11Sharma","location":"Jabalpur","description":"ASM - in healthcare industry & managing key accounts","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":3048,"listed_count":0,"created_at":"Sun - Apr 01 05:45:52 +0000 2012","favourites_count":14725,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117,"lang":null,"status":{"created_at":"Wed - Feb 09 09:25:52 +0000 2022","id":1491342577433735172,"id_str":"1491342577433735172","text":"RT - @AdityaRajKaul: MNCs that have apologised to India and expressed regret over - Pakistan\u2019s desperate pro-terrorism propaganda social media\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdityaRajKaul","name":"Aditya - Raj Kaul","id":44425241,"id_str":"44425241","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 16:53:42 +0000 2022","id":1491092887421206528,"id_str":"1491092887421206528","text":"MNCs - that have apologised to India and expressed regret over Pakistan\u2019s desperate - pro-terrorism propaganda social m\u2026 https:\/\/t.co\/0BtFcsq4DX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0BtFcsq4DX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491092887421206528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1621,"favorite_count":5149,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1621,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275032941807071232\/2u_oDNhW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275032941807071232\/2u_oDNhW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542277713\/1592826518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":331093392,"id_str":"331093392","name":"Minute - Maid Park West \ud83e\udd0d\ud83e\udd0d\ud83e\udd0d","screen_name":"22awesome","location":"Screwston,TX","description":"#HoustonTexans. - The North Remembers.\n$DDdawgggg. $DDdawgggg. $DDdawgggg. $DDdawgggg. #OttoSquad - #OTTOSQUAD","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":4997,"listed_count":6,"created_at":"Thu - Jul 07 16:53:07 +0000 2011","favourites_count":93887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27906,"lang":null,"status":{"created_at":"Sat - Mar 26 01:58:51 +0000 2022","id":1507537533546209286,"id_str":"1507537533546209286","text":"RT - @22awesome: @MichellePhan @CashApp $DDdawgggg\n$DDdawgggg\n$DDdawgggg\n$DDdawgggg, - #bitcoinplease #bitcoin. \ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40","truncated":false,"entities":{"hashtags":[{"text":"bitcoinplease","indices":[83,97]},{"text":"bitcoin","indices":[98,106]}],"symbols":[],"user_mentions":[{"screen_name":"22awesome","name":"Minute - Maid Park West \ud83e\udd0d\ud83e\udd0d\ud83e\udd0d","id":331093392,"id_str":"331093392","indices":[3,13]},{"screen_name":"MichellePhan","name":"\ud835\udcdc","id":17674486,"id_str":"17674486","indices":[15,28]},{"screen_name":"CashApp","name":"Cash - App","id":1445650784,"id_str":"1445650784","indices":[29,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:58:42 +0000 2022","id":1507537495508066305,"id_str":"1507537495508066305","text":"@MichellePhan - @CashApp $DDdawgggg\n$DDdawgggg\n$DDdawgggg\n$DDdawgggg, #bitcoinplease #bitcoin. - \ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40\ud83c\udf40","truncated":false,"entities":{"hashtags":[{"text":"bitcoinplease","indices":[68,82]},{"text":"bitcoin","indices":[83,91]}],"symbols":[],"user_mentions":[{"screen_name":"MichellePhan","name":"\ud835\udcdc","id":17674486,"id_str":"17674486","indices":[0,13]},{"screen_name":"CashApp","name":"Cash - App","id":1445650784,"id_str":"1445650784","indices":[14,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507372031813177347,"in_reply_to_status_id_str":"1507372031813177347","in_reply_to_user_id":17674486,"in_reply_to_user_id_str":"17674486","in_reply_to_screen_name":"MichellePhan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"cy"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"cy"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504965383991828485\/dkErzaVL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504965383991828485\/dkErzaVL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331093392\/1598993908","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1660997592,"id_str":"1660997592","name":"\ud83d\udc4b - E D D I E","screen_name":"eddieveqwin","location":"Metaverse","description":"No - bio.....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":699,"friends_count":572,"listed_count":5,"created_at":"Sat - Aug 10 21:48:04 +0000 2013","favourites_count":65517,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11077,"lang":null,"status":{"created_at":"Sat - Mar 26 01:32:36 +0000 2022","id":1507530929945862148,"id_str":"1507530929945862148","text":"RT - @Matema_: Life is so much simpler when you stop explaining yourself to others - and just do what works for you \ud83c\udf38","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Matema_","name":"Mahlatse\ud83d\udc95\u0e3f","id":1363851161846095875,"id_str":"1363851161846095875","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:29:50 +0000 2022","id":1507243342739951617,"id_str":"1507243342739951617","text":"Life - is so much simpler when you stop explaining yourself to others and just do - what works for you \ud83c\udf38","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":247,"favorite_count":562,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":247,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492177457042149379\/tFuJ8TEb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492177457042149379\/tFuJ8TEb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1660997592\/1610476820","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18220007,"id_str":"18220007","name":"Caroline - Harvey","screen_name":"carolinejane","location":"London","description":"makes - mess and, very occasionally, films.","url":"https:\/\/t.co\/TpprAadeJq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TpprAadeJq","expanded_url":"https:\/\/deadline.com\/2019\/02\/joan-jackie-collins-fable-pictures-1202559931\/","display_url":"deadline.com\/2019\/02\/joan-j\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":1991,"listed_count":5,"created_at":"Thu - Dec 18 17:46:25 +0000 2008","favourites_count":2115,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1567,"lang":null,"status":{"created_at":"Tue - Mar 08 12:51:36 +0000 2022","id":1501178820631666688,"id_str":"1501178820631666688","text":"RT - @Housequake: https:\/\/t.co\/yqsvBslTTH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Housequake","name":"Housequake","id":1148636376,"id_str":"1148636376","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/yqsvBslTTH","expanded_url":"https:\/\/www.theringer.com\/movies\/2022\/3\/4\/22960026\/prince-batman-soundtrack-oral-history-batdance","display_url":"theringer.com\/movies\/2022\/3\/\u2026","indices":[16,39]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 12:36:33 +0000 2022","id":1501175036773908480,"id_str":"1501175036773908480","text":"https:\/\/t.co\/yqsvBslTTH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yqsvBslTTH","expanded_url":"https:\/\/www.theringer.com\/movies\/2022\/3\/4\/22960026\/prince-batman-soundtrack-oral-history-batdance","display_url":"theringer.com\/movies\/2022\/3\/\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3588184681\/fdd0a24df73bf43882855c72ab7425ee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3588184681\/fdd0a24df73bf43882855c72ab7425ee_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18220007\/1366835655","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1071214723,"id_str":"1071214723","name":"Kevin - D. Fennell","screen_name":"fennekeone","location":"Maryland, USA","description":"I - am Brother who loves God, my family and being a creator of dreams, an inspirer - of people & a photographer. We \"Make Your Images into Stunning Works of Art.\u201d","url":"https:\/\/t.co\/4iAv0FxCnd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4iAv0FxCnd","expanded_url":"http:\/\/www.Platinumphotography365.com","display_url":"Platinumphotography365.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":1516,"listed_count":0,"created_at":"Tue - Jan 08 15:31:27 +0000 2013","favourites_count":2162,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":855,"lang":null,"status":{"created_at":"Sun - Jan 30 22:38:13 +0000 2022","id":1487918100200759302,"id_str":"1487918100200759302","text":"@getnickwright - Nick they acted to cocky. Shimmy shaking\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"getnickwright","name":"nick - wright","id":93129160,"id_str":"93129160","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487910376524103690,"in_reply_to_status_id_str":"1487910376524103690","in_reply_to_user_id":93129160,"in_reply_to_user_id_str":"93129160","in_reply_to_screen_name":"getnickwright","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479301299158061056\/8gwzMBnU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479301299158061056\/8gwzMBnU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071214723\/1641527889","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818710500963975168,"id_str":"818710500963975168","name":"JeCo2017","screen_name":"business2017197","location":"Bavaria, - Germany","description":"Business Insider Business Usa Business news Cities - General news Munich Sports Regional news @accountingconsultants","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":52,"friends_count":1670,"listed_count":0,"created_at":"Tue - Jan 10 06:46:09 +0000 2017","favourites_count":3026,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":262,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820200261952081920\/3yXV3P45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820200261952081920\/3yXV3P45_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":234384019,"id_str":"234384019","name":"nanorneirbo","screen_name":"nanorneirbo","location":"Limerick - City, Ireland","description":"Ronan O''Brien- Software Engineer - Jaguar - - Land Rover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":617,"listed_count":8,"created_at":"Wed - Jan 05 14:41:24 +0000 2011","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":177,"lang":null,"status":{"created_at":"Wed - Nov 24 17:30:48 +0000 2021","id":1463560747586359311,"id_str":"1463560747586359311","text":"RT - @Islands_edge: Step into something new. Try Island\u2019s Edge - the Unexpectedly - Refreshing new Irish Stout. https:\/\/t.co\/94PdXKkmBO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Islands_edge","name":"Island''s - Edge Stout","id":1312046251609935875,"id_str":"1312046251609935875","indices":[3,16]}],"urls":[],"media":[{"id":1455948907226222599,"id_str":"1455948907226222599","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","url":"https:\/\/t.co\/94PdXKkmBO","display_url":"pic.twitter.com\/94PdXKkmBO","expanded_url":"https:\/\/twitter.com\/Islands_edge\/status\/1456048548936486913\/video\/1","type":"photo","sizes":{"large":{"w":720,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":720,"h":900,"resize":"fit"}},"source_status_id":1456048548936486913,"source_status_id_str":"1456048548936486913","source_user_id":1312046251609935875,"source_user_id_str":"1312046251609935875"}]},"extended_entities":{"media":[{"id":1455948907226222599,"id_str":"1455948907226222599","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","url":"https:\/\/t.co\/94PdXKkmBO","display_url":"pic.twitter.com\/94PdXKkmBO","expanded_url":"https:\/\/twitter.com\/Islands_edge\/status\/1456048548936486913\/video\/1","type":"video","sizes":{"large":{"w":720,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":720,"h":900,"resize":"fit"}},"source_status_id":1456048548936486913,"source_status_id_str":"1456048548936486913","source_user_id":1312046251609935875,"source_user_id_str":"1312046251609935875","video_info":{"aspect_ratio":[4,5],"duration_millis":3200,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/720x900\/26Xgl0vDtZVbLc3C.mp4?tag=14"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/480x600\/gs8j_MArZ6hVopmr.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/pl\/9_u33fF82Tb-fBY9.m3u8?tag=14&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/320x400\/VGRq428tZ2z6lrzo.mp4?tag=14"}]},"additional_media_info":{"title":"Island''s - Edge","description":"","call_to_actions":{"visit_site":{"url":"https:\/\/www.islands-edge.ie\/findabar"}},"embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 04 00:00:00 +0000 2021","id":1456048548936486913,"id_str":"1456048548936486913","text":"Step - into something new. Try Island\u2019s Edge - the Unexpectedly Refreshing new - Irish Stout. https:\/\/t.co\/94PdXKkmBO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1455948907226222599,"id_str":"1455948907226222599","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","url":"https:\/\/t.co\/94PdXKkmBO","display_url":"pic.twitter.com\/94PdXKkmBO","expanded_url":"https:\/\/twitter.com\/Islands_edge\/status\/1456048548936486913\/video\/1","type":"photo","sizes":{"large":{"w":720,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":720,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1455948907226222599,"id_str":"1455948907226222599","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDSUaDcXoAI-7h7.jpg","url":"https:\/\/t.co\/94PdXKkmBO","display_url":"pic.twitter.com\/94PdXKkmBO","expanded_url":"https:\/\/twitter.com\/Islands_edge\/status\/1456048548936486913\/video\/1","type":"video","sizes":{"large":{"w":720,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":720,"h":900,"resize":"fit"}},"video_info":{"aspect_ratio":[4,5],"duration_millis":3200,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/720x900\/26Xgl0vDtZVbLc3C.mp4?tag=14"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/480x600\/gs8j_MArZ6hVopmr.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/pl\/9_u33fF82Tb-fBY9.m3u8?tag=14&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1455948907226222599\/vid\/320x400\/VGRq428tZ2z6lrzo.mp4?tag=14"}]},"additional_media_info":{"title":"Island''s - Edge","description":"","call_to_actions":{"visit_site":{"url":"https:\/\/www.islands-edge.ie\/findabar"}},"embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":69,"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247096647496142848\/j_R4tIVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247096647496142848\/j_R4tIVf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":388281015,"id_str":"388281015","name":"CollDoll325","screen_name":"colmcq325","location":"Omaha, - NE","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":56,"friends_count":563,"listed_count":1,"created_at":"Mon - Oct 10 13:59:17 +0000 2011","favourites_count":17684,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":517,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1581636757\/DSC_0101_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1581636757\/DSC_0101_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3588601634,"id_str":"3588601634","name":"Frozen - Northlander","screen_name":"amusici_annette","location":"Northern Plains","description":"Trying - to live so that I can sleep well at night; what you see\/hear is what you - get.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":678,"listed_count":0,"created_at":"Thu - Sep 17 01:16:48 +0000 2015","favourites_count":36144,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8131,"lang":null,"status":{"created_at":"Fri - Mar 25 20:34:20 +0000 2022","id":1507455868572512262,"id_str":"1507455868572512262","text":"RT - @stephapstein: Former sportswriter Jonah Keri was sentenced today to 21 months - in prison for assaulting his wife. More than a dozen peop\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stephapstein","name":"Stephanie - Apstein","id":65686564,"id_str":"65686564","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:44:45 +0000 2022","id":1506763913072840706,"id_str":"1506763913072840706","text":"Former - sportswriter Jonah Keri was sentenced today to 21 months in prison for assaulting - his wife. More than a doze\u2026 https:\/\/t.co\/L4Zvah00M7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L4Zvah00M7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506763913072840706","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1890,"favorite_count":8965,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1890,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500188275905990658\/j-9JM7Fl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500188275905990658\/j-9JM7Fl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3588601634\/1646507662","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1073174473354952704,"id_str":"1073174473354952704","name":"Atsu - Jean","screen_name":"atsujean1","location":"Abuja Nigeria ","description":"Teacher - , Autor and Professional translator (French\/English), Digital marketing consultant - , DM for your next digital marketing campaign","url":"https:\/\/t.co\/tgUQqRwIiJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tgUQqRwIiJ","expanded_url":"http:\/\/mivaexpress.com.ng","display_url":"mivaexpress.com.ng","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":327,"listed_count":0,"created_at":"Thu - Dec 13 11:15:07 +0000 2018","favourites_count":102,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":208,"lang":null,"status":{"created_at":"Sat - Jan 02 20:25:42 +0000 2021","id":1345466319186128899,"id_str":"1345466319186128899","text":"It - takes courage to say this. Many people still believe that woman are passive - about sex and wouldn''t go beyond the\u2026 https:\/\/t.co\/Za6eEB2Gc1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Za6eEB2Gc1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1345466319186128899","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1345142770554564609,"quoted_status_id_str":"1345142770554564609","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208098313448382464\/QJpNw-hD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208098313448382464\/QJpNw-hD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073174473354952704\/1583937188","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":856126292504305664,"id_str":"856126292504305664","name":"gratian - petrila","screen_name":"gratian_petrila","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":486,"listed_count":0,"created_at":"Sun - Apr 23 12:43:08 +0000 2017","favourites_count":220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Sat - Apr 17 12:01:17 +0000 2021","id":1383390104517894144,"id_str":"1383390104517894144","text":"@twix - Something Golum would say;)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"twix","name":"TWIX","id":347958019,"id_str":"347958019","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1383128927808421897,"in_reply_to_status_id_str":"1383128927808421897","in_reply_to_user_id":347958019,"in_reply_to_user_id_str":"347958019","in_reply_to_screen_name":"twix","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":360999531,"id_str":"360999531","name":"Tty","screen_name":"tutuytaa","location":"Indonesia","description":"Be - kind be useful be grateful -TFT | Pluviophile","url":"https:\/\/t.co\/enXxDqv9rp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/enXxDqv9rp","expanded_url":"http:\/\/tututfaddilahtahir9.blogspot.com","display_url":"tututfaddilahtahir9.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":290,"friends_count":343,"listed_count":2,"created_at":"Wed - Aug 24 02:47:35 +0000 2011","favourites_count":12674,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500446207755251716\/BCQMgFk-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500446207755251716\/BCQMgFk-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360999531\/1636690538","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26316088,"id_str":"26316088","name":"Stanislav - Ivanov","screen_name":"stanio83","location":"Zurich, Switzerland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":402,"listed_count":0,"created_at":"Tue - Mar 24 20:29:24 +0000 2009","favourites_count":827,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"status":{"created_at":"Mon - Oct 25 17:50:04 +0000 2021","id":1452693960791666693,"id_str":"1452693960791666693","text":"@tmlwrnc - At the end you were right... it''s at the software update","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tmlwrnc","name":"tom","id":489926452,"id_str":"489926452","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1452682145428824076,"in_reply_to_status_id_str":"1452682145428824076","in_reply_to_user_id":26316088,"in_reply_to_user_id_str":"26316088","in_reply_to_screen_name":"stanio83","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639114537787097088\/cK5e_Hfu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639114537787097088\/cK5e_Hfu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26316088\/1441211755","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2152884173,"id_str":"2152884173","name":"garciscofarcia","screen_name":"garcisco","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":140,"listed_count":0,"created_at":"Fri - Oct 25 16:10:01 +0000 2013","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Sep 23 01:28:24 +0000 2021","id":1440850505367015425,"id_str":"1440850505367015425","text":"https:\/\/t.co\/YXOh165hta","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YXOh165hta","expanded_url":"http:\/\/garcisco.tumblr.com","display_url":"garcisco.tumblr.com","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000646216216\/71593e25846e26b069a4ac05bd578291_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000646216216\/71593e25846e26b069a4ac05bd578291_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2152884173\/1617933494","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1115671482556764160,"id_str":"1115671482556764160","name":"Rakesh - Mishra","screen_name":"RakeshM93870576","location":"BBS","description":"Be - happy\ud83d\ude04\ud83d\ude03","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":184,"friends_count":4961,"listed_count":0,"created_at":"Tue - Apr 09 17:43:04 +0000 2019","favourites_count":26546,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"status":{"created_at":"Sat - Mar 06 20:03:53 +0000 2021","id":1368291265264062465,"id_str":"1368291265264062465","text":"https:\/\/t.co\/fO4p2uE82x","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fO4p2uE82x","expanded_url":"https:\/\/indianrailwayquestionbank.blogspot.com\/p\/question-bank-with-solution-on-youtube.html","display_url":"indianrailwayquestionbank.blogspot.com\/p\/question-ban\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1117826313098678272\/H5ysXjgW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1117826313098678272\/H5ysXjgW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115671482556764160\/1555345530","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1122189401780568064,"id_str":"1122189401780568064","name":"LaSalle - Francisco","screen_name":"LaSalleFrancis7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":598,"listed_count":0,"created_at":"Sat - Apr 27 17:22:57 +0000 2019","favourites_count":181,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Fri - Mar 18 16:03:01 +0000 2022","id":1504850872739762177,"id_str":"1504850872739762177","text":"https:\/\/t.co\/j0FiKsPZLC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j0FiKsPZLC","expanded_url":"https:\/\/fb.watch\/bQpFhVM7m8\/","display_url":"fb.watch\/bQpFhVM7m8\/","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395101103256182789\/TsfsBKe6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395101103256182789\/TsfsBKe6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1122189401780568064\/1621452998","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189026863609470977,"id_str":"1189026863609470977","name":"Dawn - Hamm Hart","screen_name":"DawnHar01418651","location":"","description":"Alchemy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":157,"listed_count":0,"created_at":"Tue - Oct 29 03:51:20 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":719,"lang":null,"status":{"created_at":"Sat - Mar 26 05:47:38 +0000 2022","id":1507595108878802947,"id_str":"1507595108878802947","text":"@foofighters - This is what happens when u suck up and take the Vax i hope it was worth it - to you. So dissapointed.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"foofighters","name":"Foo - Fighters","id":19081001,"id_str":"19081001","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507552958988255234,"in_reply_to_status_id_str":"1507552958988255234","in_reply_to_user_id":19081001,"in_reply_to_user_id_str":"19081001","in_reply_to_screen_name":"foofighters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189027420457836544\/F1NjsTeS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189027420457836544\/F1NjsTeS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1189026863609470977\/1597341936","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":713696534,"id_str":"713696534","name":"Kara - Sabourin","screen_name":"kksabes","location":"Berkeley, CA","description":"University - of Michigan | University of North Carolina, Chapel Hill | Public health, social - justice, clinical research, mom stuff & hockey | She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":648,"listed_count":0,"created_at":"Tue - Jul 24 04:47:57 +0000 2012","favourites_count":3826,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":198,"lang":null,"status":{"created_at":"Fri - Mar 25 01:17:59 +0000 2022","id":1507164861876240385,"id_str":"1507164861876240385","text":"@brock_mcgillis - Can you also work on getting them to wear cages? Flawless skin looks best - with teeth \ud83d\ude01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brock_mcgillis","name":"Brock - McGillis","id":1636651783,"id_str":"1636651783","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507061676142731281,"in_reply_to_status_id_str":"1507061676142731281","in_reply_to_user_id":1636651783,"in_reply_to_user_id_str":"1636651783","in_reply_to_screen_name":"brock_mcgillis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282865730367524865\/6OfxOnZ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282865730367524865\/6OfxOnZ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/713696534\/1645039955","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":620403065,"id_str":"620403065","name":"Johnny - Webb","screen_name":"jewebb3","location":"Dallas","description":"LNG & CNG - Fuels Marketer. Energy Broker, LED & Solar smart guy. Airport junkie, Foodie - & Wino wrestler.","url":"http:\/\/t.co\/TnQB4Cw9oL","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/TnQB4Cw9oL","expanded_url":"http:\/\/about.me\/jewebb3","display_url":"about.me\/jewebb3","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":667,"listed_count":3,"created_at":"Wed - Jun 27 22:33:45 +0000 2012","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145,"lang":null,"status":{"created_at":"Sat - Feb 02 17:48:50 +0000 2019","id":1091755336237764610,"id_str":"1091755336237764610","text":"19! - #Houston19\nhttps:\/\/t.co\/BFGCsmmPou","truncated":false,"entities":{"hashtags":[{"text":"Houston19","indices":[4,14]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BFGCsmmPou","expanded_url":"https:\/\/capitol.texas.gov\/tlodocs\/86R\/billtext\/html\/HR00179I.htm","display_url":"capitol.texas.gov\/tlodocs\/86R\/bi\u2026","indices":[15,38]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574835160035684352\/mrAe2Wo4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574835160035684352\/mrAe2Wo4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620403065\/1425888486","profile_link_color":"91D2FA","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":95211029,"id_str":"95211029","name":"Sydney - Scardino","screen_name":"sydraldo","location":"Houston Texas","description":"Olympian","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":1661,"listed_count":0,"created_at":"Mon - Dec 07 14:34:37 +0000 2009","favourites_count":12394,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/740884548\/Animaleatdrums_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/740884548\/Animaleatdrums_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95211029\/1619813721","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1175192137895313408,"id_str":"1175192137895313408","name":"asiawastaken","screen_name":"asiasoot","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":258,"listed_count":0,"created_at":"Fri - Sep 20 23:37:01 +0000 2019","favourites_count":10457,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":546,"lang":null,"status":{"created_at":"Wed - Feb 02 06:38:29 +0000 2022","id":1488763738966487044,"id_str":"1488763738966487044","text":"RT - @LilPapiFresh: Nate\u2019s dad said yea I\u2019m gay but y\u2019all weird - , that\u2019s worse lmao","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LilPapiFresh","name":"Mr. - Wholesome","id":4184107512,"id_str":"4184107512","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 01 07:14:11 +0000 2022","id":1488410333240643584,"id_str":"1488410333240643584","text":"Nate\u2019s - dad said yea I\u2019m gay but y\u2019all weird , that\u2019s worse lmao","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42350,"favorite_count":384380,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":42350,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402049695464050688\/ujoZA_GN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402049695464050688\/ujoZA_GN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1175192137895313408\/1623109671","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275229481792397318,"id_str":"1275229481792397318","name":"TN - Beer Peddler","screen_name":"j0311423w","location":"","description":"Father - to two amazing boys","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":150,"listed_count":0,"created_at":"Tue - Jun 23 00:49:44 +0000 2020","favourites_count":1258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69,"lang":null,"status":{"created_at":"Sat - Feb 27 12:12:07 +0000 2021","id":1365635826042961921,"id_str":"1365635826042961921","text":"@StuDoesAmerica - @SaraGonzalesTX Youtube REALLY doesn''t want Glenn''s msg abt the Great Reset - being seen. To show my\u2026 https:\/\/t.co\/4uwjDu9q6S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StuDoesAmerica","name":"Stu - Burguiere","id":37972057,"id_str":"37972057","indices":[0,15]},{"screen_name":"SaraGonzalesTX","name":"Sara - Gonzales","id":375852740,"id_str":"375852740","indices":[16,31]}],"urls":[{"url":"https:\/\/t.co\/4uwjDu9q6S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1365635826042961921","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":37972057,"in_reply_to_user_id_str":"37972057","in_reply_to_screen_name":"StuDoesAmerica","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275234355313627143\/M7kkUPb6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275234355313627143\/M7kkUPb6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275229481792397318\/1592874538","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":279056964,"id_str":"279056964","name":"Dee - Casey","screen_name":"deirdrecasey","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":1107,"listed_count":0,"created_at":"Fri - Apr 08 14:11:02 +0000 2011","favourites_count":41889,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":164,"lang":null,"status":{"created_at":"Sun - Jan 02 07:22:21 +0000 2022","id":1477540751634481154,"id_str":"1477540751634481154","text":"RT - @brainpicker: \u201cA friend\u2026 awakens your life in order to free the - wild possibilities within you.\u201d\n\nIf you (too) are making a resolution - to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brainpicker","name":"Maria - Popova","id":9207632,"id_str":"9207632","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 02 03:44:00 +0000 2022","id":1477485804389912578,"id_str":"1477485804389912578","text":"\u201cA - friend\u2026 awakens your life in order to free the wild possibilities within - you.\u201d\n\nIf you (too) are making a resolu\u2026 https:\/\/t.co\/Wf0KwNkaqW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Wf0KwNkaqW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1477485804389912578","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":213,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":52,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2755945282\/82f386cd8fc7daf2d010230896dc5234_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2755945282\/82f386cd8fc7daf2d010230896dc5234_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279056964\/1351025321","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307785230602960896,"id_str":"1307785230602960896","name":"Meena","screen_name":"Meena68782579","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":74,"listed_count":0,"created_at":"Sun - Sep 20 20:54:59 +0000 2020","favourites_count":2922,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889769285635031040,"id_str":"889769285635031040","name":"TVyravene","screen_name":"Taraa2412","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":235,"listed_count":0,"created_at":"Tue - Jul 25 08:48:23 +0000 2017","favourites_count":8455,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2899742761,"id_str":"2899742761","name":"Shirley - Sonnichsen","screen_name":"ShirleyS07","location":"Richland, WA","description":"Avid - UW Husky fan. Mom of Jen and grandmother of 2 wonderful kids. Animal lover, - rescuer #tnr #resister, #voteblue #bidenharris2020 #adoptdontshop no dm''s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":1212,"listed_count":0,"created_at":"Fri - Nov 14 20:59:09 +0000 2014","favourites_count":21602,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3954,"lang":null,"status":{"created_at":"Tue - Mar 22 20:24:21 +0000 2022","id":1506366189223571457,"id_str":"1506366189223571457","text":"RT - @Karaoke_God: @Emywinst https:\/\/t.co\/AIXNPGBm6X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Karaoke_God","name":"Nick - Varga - #PardonReality Anti-Anti-Vaxxer!","id":3308878919,"id_str":"3308878919","indices":[3,15]},{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[17,26]}],"urls":[],"media":[{"id":1506046750523547652,"id_str":"1506046750523547652","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","url":"https:\/\/t.co\/AIXNPGBm6X","display_url":"pic.twitter.com\/AIXNPGBm6X","expanded_url":"https:\/\/twitter.com\/Karaoke_God\/status\/1506046773734916098\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":500,"resize":"fit"},"medium":{"w":383,"h":500,"resize":"fit"},"large":{"w":383,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1506046773734916098,"source_status_id_str":"1506046773734916098","source_user_id":3308878919,"source_user_id_str":"3308878919"}]},"extended_entities":{"media":[{"id":1506046750523547652,"id_str":"1506046750523547652","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","url":"https:\/\/t.co\/AIXNPGBm6X","display_url":"pic.twitter.com\/AIXNPGBm6X","expanded_url":"https:\/\/twitter.com\/Karaoke_God\/status\/1506046773734916098\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":500,"resize":"fit"},"medium":{"w":383,"h":500,"resize":"fit"},"large":{"w":383,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1506046773734916098,"source_status_id_str":"1506046773734916098","source_user_id":3308878919,"source_user_id_str":"3308878919"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 23:15:06 +0000 2022","id":1506046773734916098,"id_str":"1506046773734916098","text":"@Emywinst - https:\/\/t.co\/AIXNPGBm6X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[0,9]}],"urls":[],"media":[{"id":1506046750523547652,"id_str":"1506046750523547652","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","url":"https:\/\/t.co\/AIXNPGBm6X","display_url":"pic.twitter.com\/AIXNPGBm6X","expanded_url":"https:\/\/twitter.com\/Karaoke_God\/status\/1506046773734916098\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":500,"resize":"fit"},"medium":{"w":383,"h":500,"resize":"fit"},"large":{"w":383,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1506046750523547652,"id_str":"1506046750523547652","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOaNikwWYAQJ8cq.png","url":"https:\/\/t.co\/AIXNPGBm6X","display_url":"pic.twitter.com\/AIXNPGBm6X","expanded_url":"https:\/\/twitter.com\/Karaoke_God\/status\/1506046773734916098\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":500,"resize":"fit"},"medium":{"w":383,"h":500,"resize":"fit"},"large":{"w":383,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506035049640120320,"in_reply_to_status_id_str":"1506035049640120320","in_reply_to_user_id":1424844847115079682,"in_reply_to_user_id_str":"1424844847115079682","in_reply_to_screen_name":"Emywinst","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":147,"favorite_count":638,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":147,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348672313760178180\/LyvWz7W1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348672313760178180\/LyvWz7W1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899742761\/1613203171","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1053321475363627008,"id_str":"1053321475363627008","name":"Vp","screen_name":"Vp72313910","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":2571,"listed_count":3,"created_at":"Fri - Oct 19 16:26:24 +0000 2018","favourites_count":9174,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5013,"lang":null,"status":{"created_at":"Wed - Mar 16 09:17:13 +0000 2022","id":1504023972303810560,"id_str":"1504023972303810560","text":"\u0417\u0430 - \u0434\u043d\u0456 \u0432\u0456\u0439\u043d\u0438 \u043f\u043e\u0431\u0430\u0447\u0438\u0432 - \u0441\u0442\u0456\u043b\u044c\u043a\u0438 \u043f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u0438\u0445 - \u043b\u044e\u0434\u0435\u0439 \u0456 \u0445\u043e\u0447\u0443 \u043f\u043e\u0431\u0430\u0436\u0430\u0442\u0438 - \u0432\u0441\u0456\u043c \u043f\u0435\u0440\u0435\u043c\u043e\u0433\u0438 - \u0442\u0430 \u0441\u0438\u043b!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"uk"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1475848812463898629\/o-V5Oe4z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1475848812463898629\/o-V5Oe4z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1053321475363627008\/1602698211","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":783755498,"id_str":"783755498","name":"Rosario - P. Layao Jr.","screen_name":"_layao","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":560,"listed_count":0,"created_at":"Mon - Aug 27 03:55:28 +0000 2012","favourites_count":2549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - Dec 18 04:28:16 +0000 2021","id":1472061125420531716,"id_str":"1472061125420531716","text":"@JamesMartinSJ - @Pontifex happy birthday \ud83d\ude01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamesMartinSJ","name":"James - Martin, SJ","id":226320142,"id_str":"226320142","indices":[0,14]},{"screen_name":"Pontifex","name":"Pope - Francis","id":500704345,"id_str":"500704345","indices":[15,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1471823341744971788,"in_reply_to_status_id_str":"1471823341744971788","in_reply_to_user_id":226320142,"in_reply_to_user_id_str":"226320142","in_reply_to_screen_name":"JamesMartinSJ","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2547673042\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2547673042\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1184370681640677377,"id_str":"1184370681640677377","name":"\u00e9","screen_name":"therealmusician","location":"","description":"Ros\u00e9 - invented all the Talents.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":679,"listed_count":0,"created_at":"Wed - Oct 16 07:29:48 +0000 2019","favourites_count":23892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2823,"lang":null,"status":{"created_at":"Tue - Feb 16 12:34:10 +0000 2021","id":1361655106865750018,"id_str":"1361655106865750018","text":"RT - @Kpop_PollVote: MOST FAMOUS KPOP GIRL GROUP MEMBER FEBRUARY 2021\n\n#BLACKPINK - #ROS\u00c9 (#ParkChaeYoung) #\ub85c\uc81c\n#aespa #WINTER (#KimMinJeong) #\uc708\u2026","truncated":false,"entities":{"hashtags":[{"text":"BLACKPINK","indices":[69,79]},{"text":"ROS\u00c9","indices":[80,85]},{"text":"ParkChaeYoung","indices":[87,101]},{"text":"\ub85c\uc81c","indices":[103,106]},{"text":"aespa","indices":[107,113]},{"text":"WINTER","indices":[114,121]},{"text":"KimMinJeong","indices":[123,135]}],"symbols":[],"user_mentions":[{"screen_name":"Kpop_PollVote","name":"K-POP - POLL","id":1328505322667798528,"id_str":"1328505322667798528","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 15 06:06:48 +0000 2021","id":1361195235494088707,"id_str":"1361195235494088707","text":"MOST - FAMOUS KPOP GIRL GROUP MEMBER FEBRUARY 2021\n\n#BLACKPINK #ROS\u00c9 (#ParkChaeYoung) - #\ub85c\uc81c\n#aespa #WINTER (\u2026 https:\/\/t.co\/ZxF9KI4I2v","truncated":true,"entities":{"hashtags":[{"text":"BLACKPINK","indices":[50,60]},{"text":"ROS\u00c9","indices":[61,66]},{"text":"ParkChaeYoung","indices":[68,82]},{"text":"\ub85c\uc81c","indices":[84,87]},{"text":"aespa","indices":[88,94]},{"text":"WINTER","indices":[95,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZxF9KI4I2v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1361195235494088707","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1023,"favorite_count":1051,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1023,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347073671836225539\/QeYpWTSn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347073671836225539\/QeYpWTSn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1184370681640677377\/1577213423","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145635203,"id_str":"145635203","name":"Anthony - Toby Kielthy","screen_name":"anthonykielthy","location":"wicklow,ireland ","description":"The - best way to predict the future is to create it - Abraham Lincoln.\n\nBusiness - Administration & Accounts Tutor,\nHorse Racing , Hurling , Reading and Walking,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":269,"friends_count":1626,"listed_count":0,"created_at":"Wed - May 19 13:06:04 +0000 2010","favourites_count":4431,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":714,"lang":null,"status":{"created_at":"Tue - Mar 22 20:33:50 +0000 2022","id":1506368577473028101,"id_str":"1506368577473028101","text":"@EamonMelia - @DrHaroldNews @_FeachNews @caulmick @MHealyRae @LeoVaradkar Completely different - context , offended by\u2026 https:\/\/t.co\/r7YymJqk5c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EamonMelia","name":"Eamon - Melia \ud83c\udff4\u200d\u2620\ufe0f#TalkToVera","id":1008640118,"id_str":"1008640118","indices":[0,11]},{"screen_name":"DrHaroldNews","name":"Dr - Harold News","id":1330183821212397574,"id_str":"1330183821212397574","indices":[12,25]},{"screen_name":"_FeachNews","name":"F\u00e9ach - News","id":897878974470213632,"id_str":"897878974470213632","indices":[26,37]},{"screen_name":"caulmick","name":"Mick - Caul \ud83d\ude37","id":305023825,"id_str":"305023825","indices":[38,47]},{"screen_name":"MHealyRae","name":"Michael - Healy-Rae","id":346630615,"id_str":"346630615","indices":[48,58]},{"screen_name":"LeoVaradkar","name":"Leo - Varadkar","id":229466877,"id_str":"229466877","indices":[59,71]}],"urls":[{"url":"https:\/\/t.co\/r7YymJqk5c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506368577473028101","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506362148645224452,"in_reply_to_status_id_str":"1506362148645224452","in_reply_to_user_id":1008640118,"in_reply_to_user_id_str":"1008640118","in_reply_to_screen_name":"EamonMelia","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437484308487409665\/OQGxFXN4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437484308487409665\/OQGxFXN4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145635203\/1353861382","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2557729010,"id_str":"2557729010","name":"Jeff - Moore","screen_name":"JeffMoore1126","location":"California, USA","description":"SW - QA Pro, HS, PONY, USSSA Baseball umpire, \u26be\ufe0f \nThoughts, posts, tweets - are my personal property and my opinion only. If followed, I follow back.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":4928,"listed_count":1,"created_at":"Mon - Jun 09 23:23:57 +0000 2014","favourites_count":3503,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7575,"lang":null,"status":{"created_at":"Thu - Mar 24 22:35:11 +0000 2022","id":1507123893491757058,"id_str":"1507123893491757058","text":"RT - @maryann1126: @LindseyGrahamSC You need to stop tweeting. Stop talking. Stop - communicating. Just stop.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maryann1126","name":"JLM''s - Mom, M.Ed. \ud83c\udf0a","id":2557117646,"id_str":"2557117646","indices":[3,15]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:58:01 +0000 2022","id":1507069239294775296,"id_str":"1507069239294775296","text":"@LindseyGrahamSC - You need to stop tweeting. Stop talking. Stop communicating. Just stop.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507063687919587328,"in_reply_to_status_id_str":"1507063687919587328","in_reply_to_user_id":432895323,"in_reply_to_user_id_str":"432895323","in_reply_to_screen_name":"LindseyGrahamSC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548572047077412864\/gDCcNhAe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548572047077412864\/gDCcNhAe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2557729010\/1419624743","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1091338282082992131,"id_str":"1091338282082992131","name":"Gloria - Atuhairwe","screen_name":"AtuhairweGloria","location":"Kampala, Uganda","description":"Enthusiast. - Optimist. Passionate .Writer. Reader.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":414,"friends_count":1166,"listed_count":0,"created_at":"Fri - Feb 01 14:11:37 +0000 2019","favourites_count":9773,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":342,"lang":null,"status":{"created_at":"Fri - Mar 25 05:56:07 +0000 2022","id":1507234858409545737,"id_str":"1507234858409545737","text":"@fsnakazibwe - That\u2019s not effective communication","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fsnakazibwe","name":"Faridah - Nakazibwe","id":1348657873,"id_str":"1348657873","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507227449767211011,"in_reply_to_status_id_str":"1507227449767211011","in_reply_to_user_id":1348657873,"in_reply_to_user_id_str":"1348657873","in_reply_to_screen_name":"fsnakazibwe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452725115083440128\/4R-EOgIk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452725115083440128\/4R-EOgIk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1091338282082992131\/1596292512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":567366505,"id_str":"567366505","name":"Shahriar - Chowdhury","screen_name":"shahriar7585","location":"Dhaka, Bangladesh. ","description":"Civil - Engineer and former HR Professional","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":274,"listed_count":0,"created_at":"Mon - Apr 30 16:46:04 +0000 2012","favourites_count":2972,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":191,"lang":null,"status":{"created_at":"Thu - Feb 17 12:35:34 +0000 2022","id":1494289419414622211,"id_str":"1494289419414622211","text":"@joncoopertweets - Conman.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493683652391227401,"in_reply_to_status_id_str":"1493683652391227401","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921411822682439680\/Ngtkyr58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921411822682439680\/Ngtkyr58_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303023154164649984,"id_str":"1303023154164649984","name":"Andrew - Schrader","screen_name":"AndrewSchrade14","location":"","description":"love - jazz\nlove videogames\nbe excellent to each other","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":42,"listed_count":0,"created_at":"Mon - Sep 07 17:31:50 +0000 2020","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - May 19 02:15:49 +0000 2021","id":1394839177791819780,"id_str":"1394839177791819780","text":"RT - @incompetentcs: Thank You for 10k Subscribers!\n\nTo enter:\n- Like + Retweet\n- - Subscribe to the second channel: https:\/\/t.co\/q0ckzr2GqI\n\nE\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"incompetentcs","name":"Incompetentcs","id":1337956700444385282,"id_str":"1337956700444385282","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/q0ckzr2GqI","expanded_url":"https:\/\/www.youtube.com\/watch?v=H-y7lDnwZ3I","display_url":"youtube.com\/watch?v=H-y7lD\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 18 14:32:01 +0000 2021","id":1394662062035505154,"id_str":"1394662062035505154","text":"Thank - You for 10k Subscribers!\n\nTo enter:\n- Like + Retweet\n- Subscribe to the - second channel:\u2026 https:\/\/t.co\/jUH8Tarbas","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jUH8Tarbas","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1394662062035505154","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[95,118]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1128,"favorite_count":1289,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1128,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":866682705479684096,"id_str":"866682705479684096","name":"Lindsay - Mulron","screen_name":"LMulron","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":199,"listed_count":0,"created_at":"Mon - May 22 15:50:33 +0000 2017","favourites_count":210,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Tue - Mar 22 20:18:07 +0000 2022","id":1506364623276154887,"id_str":"1506364623276154887","text":"@NYCTSubway - Every single day the 4 crosses in front of the 5. Every day there is a delay. - Tell us when the trains a\u2026 https:\/\/t.co\/BSDISuteYn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NYCTSubway","name":"NYCT - Subway. Wear a Mask.","id":66379182,"id_str":"66379182","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/BSDISuteYn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506364623276154887","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506357163756855300,"in_reply_to_status_id_str":"1506357163756855300","in_reply_to_user_id":66379182,"in_reply_to_user_id_str":"66379182","in_reply_to_screen_name":"NYCTSubway","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":547789292,"id_str":"547789292","name":"Bob - Galinsky","screen_name":"RSGalinsky","location":"Johnstown, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":120,"listed_count":1,"created_at":"Sat - Apr 07 17:55:08 +0000 2012","favourites_count":1080,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":572,"lang":null,"status":{"created_at":"Fri - Mar 18 21:15:52 +0000 2022","id":1504929603378417666,"id_str":"1504929603378417666","text":"RT - @BetteMidler: https:\/\/t.co\/28SH4H8VSQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BetteMidler","name":"bettemidler","id":139823781,"id_str":"139823781","indices":[3,15]}],"urls":[],"media":[{"id":1504541422879338498,"id_str":"1504541422879338498","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","url":"https:\/\/t.co\/28SH4H8VSQ","display_url":"pic.twitter.com\/28SH4H8VSQ","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1504541425861488668\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1504541425861488668,"source_status_id_str":"1504541425861488668","source_user_id":139823781,"source_user_id_str":"139823781"}]},"extended_entities":{"media":[{"id":1504541422879338498,"id_str":"1504541422879338498","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","url":"https:\/\/t.co\/28SH4H8VSQ","display_url":"pic.twitter.com\/28SH4H8VSQ","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1504541425861488668\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1504541425861488668,"source_status_id_str":"1504541425861488668","source_user_id":139823781,"source_user_id_str":"139823781"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 19:33:23 +0000 2022","id":1504541425861488668,"id_str":"1504541425861488668","text":"https:\/\/t.co\/28SH4H8VSQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504541422879338498,"id_str":"1504541422879338498","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","url":"https:\/\/t.co\/28SH4H8VSQ","display_url":"pic.twitter.com\/28SH4H8VSQ","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1504541425861488668\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504541422879338498,"id_str":"1504541422879338498","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOE0c-SVcAITuyn.jpg","url":"https:\/\/t.co\/28SH4H8VSQ","display_url":"pic.twitter.com\/28SH4H8VSQ","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1504541425861488668\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5611,"favorite_count":40225,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":5611,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528340807720636416\/xS2Pscdo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528340807720636416\/xS2Pscdo_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":933012217,"id_str":"933012217","name":"Fed_Up. - Not really...","screen_name":"si_98607","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":165,"listed_count":0,"created_at":"Wed - Nov 07 21:41:46 +0000 2012","favourites_count":108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1042,"lang":null,"status":{"created_at":"Sun - Apr 11 15:39:46 +0000 2021","id":1381270761504043008,"id_str":"1381270761504043008","text":"@mtgreenee - You are one crazy b*tch...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mtgreenee","name":"Marjorie - Taylor Greene \ud83c\uddfa\ud83c\uddf8","id":826065164504006657,"id_str":"826065164504006657","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1381217460276363266,"in_reply_to_status_id_str":"1381217460276363266","in_reply_to_user_id":826065164504006657,"in_reply_to_user_id_str":"826065164504006657","in_reply_to_screen_name":"mtgreenee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466430381546164224\/qn6a64sx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466430381546164224\/qn6a64sx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933012217\/1406678167","profile_link_color":"8110E3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4446677172,"id_str":"4446677172","name":"Tina - Summers","screen_name":"803d3d4b2fa0431","location":"South Carolina, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":977,"listed_count":0,"created_at":"Thu - Dec 03 23:17:02 +0000 2015","favourites_count":4603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5625,"lang":null,"status":{"created_at":"Sat - Mar 26 00:58:48 +0000 2022","id":1507522422114816006,"id_str":"1507522422114816006","text":"@Uncle_Franko - Jesus Christ is The One who never fails !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Uncle_Franko","name":"Franklin - Nuac","id":186013584,"id_str":"186013584","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507226001394348033,"in_reply_to_status_id_str":"1507226001394348033","in_reply_to_user_id":186013584,"in_reply_to_user_id_str":"186013584","in_reply_to_screen_name":"Uncle_Franko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4704149670,"id_str":"4704149670","name":"Hala - A. Hameed","screen_name":"halah_hameed","location":"Maldives","description":"SecretaryMultilateral, - MaldivesForeignMinistry; FmrPermanentRep of Maldives to UNGeneva.FmrAmb of - Maldives\ud83c\uddf2\ud83c\uddfb to Switzerland; MomOf3, passion4photography","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2747,"friends_count":1893,"listed_count":14,"created_at":"Sun - Jan 03 18:02:51 +0000 2016","favourites_count":17534,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3300,"lang":null,"status":{"created_at":"Thu - Mar 24 05:26:40 +0000 2022","id":1506865055283167232,"id_str":"1506865055283167232","text":"RT - @enrico_gaveglia: Grateful to @governmentmv @CSTImv @AslamAslamtey and @presidencymv - hosting our panelists brought in from our extended\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"enrico_gaveglia","name":"Enrico - Gaveglia","id":1516990316,"id_str":"1516990316","indices":[3,19]},{"screen_name":"governmentmv","name":"Government - of Maldives","id":781833535,"id_str":"781833535","indices":[33,46]},{"screen_name":"CSTImv","name":"CSTI","id":2292440202,"id_str":"2292440202","indices":[47,54]},{"screen_name":"AslamAslamtey","name":"Aslam - \ud83c\udf88","id":537351129,"id_str":"537351129","indices":[55,69]},{"screen_name":"presidencymv","name":"The - President''s Office","id":235827932,"id_str":"235827932","indices":[74,87]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:10:04 +0000 2022","id":1506664586950623233,"id_str":"1506664586950623233","text":"Grateful - to @governmentmv @CSTImv @AslamAslamtey and @presidencymv hosting our panelists - brought in from our extend\u2026 https:\/\/t.co\/rKijXWivZ0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"governmentmv","name":"Government - of Maldives","id":781833535,"id_str":"781833535","indices":[12,25]},{"screen_name":"CSTImv","name":"CSTI","id":2292440202,"id_str":"2292440202","indices":[26,33]},{"screen_name":"AslamAslamtey","name":"Aslam - \ud83c\udf88","id":537351129,"id_str":"537351129","indices":[34,48]},{"screen_name":"presidencymv","name":"The - President''s Office","id":235827932,"id_str":"235827932","indices":[53,66]}],"urls":[{"url":"https:\/\/t.co\/rKijXWivZ0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506664586950623233","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506613844000448518,"quoted_status_id_str":"1506613844000448518","retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506613844000448518,"quoted_status_id_str":"1506613844000448518","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/683717673138585601\/okhQSxya_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/683717673138585601\/okhQSxya_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4704149670\/1567279713","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":264989783,"id_str":"264989783","name":"JWC","screen_name":"0thedog","location":"Fredericksburg, - VA","description":"American Indian, music enthusiast, artist, and would-be - photographer","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":132,"friends_count":1838,"listed_count":1,"created_at":"Sat - Mar 12 20:27:26 +0000 2011","favourites_count":909,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":230,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458747395505786880\/gNWYuVK8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458747395505786880\/gNWYuVK8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264989783\/1398209787","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":97806414,"id_str":"97806414","name":"Isabel - J. Sanchez","screen_name":"IsabelJSanchez","location":"Washington, DC","description":"\ud83c\uddf2\ud83c\uddfd - | LA Raised \ud83d\udc9c\ud83c\udfc0\ud83d\udc9b |\ud83d\udccdD.C. Living - | Currently: @HispanicCaucus | Formerly @RepRoybalAllard, @SenatorBoxer, @CHIRLA - | \u039b\u0398\u0391 @LTA1975 | Views: My Own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":559,"friends_count":1121,"listed_count":3,"created_at":"Sat - Dec 19 03:13:30 +0000 2009","favourites_count":3305,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1720,"lang":null,"status":{"created_at":"Thu - Mar 24 13:16:20 +0000 2022","id":1506983254360039430,"id_str":"1506983254360039430","text":"RT - @RepBarragan: Judge Ketanji Brown Jackson has been a bright light of strength, - intelligence, poise, & pure brilliance against an array o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepBarragan","name":"Nanette - D. Barrag\u00e1n","id":816833925456789505,"id_str":"816833925456789505","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:13:10 +0000 2022","id":1506982457102450697,"id_str":"1506982457102450697","text":"Judge - Ketanji Brown Jackson has been a bright light of strength, intelligence, poise, - & pure brilliance against an\u2026 https:\/\/t.co\/qlCoJq7aTu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qlCoJq7aTu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506982457102450697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506769384907366404,"quoted_status_id_str":"1506769384907366404","retweet_count":9,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506769384907366404,"quoted_status_id_str":"1506769384907366404","retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486890723022626817\/2Ak_uBqO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486890723022626817\/2Ak_uBqO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97806414\/1639494698","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276275354680856582,"id_str":"1276275354680856582","name":"Tired - of The Bullcrap","screen_name":"OfBullcrap","location":"","description":"If - what I say or my opinion offends you or is not politically correct..TO BAD...DEAL - WITH IT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1073,"friends_count":1838,"listed_count":1,"created_at":"Thu - Jun 25 22:05:41 +0000 2020","favourites_count":1573,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4426,"lang":null,"status":{"created_at":"Fri - Mar 25 21:03:34 +0000 2022","id":1507463223854915588,"id_str":"1507463223854915588","text":"@ananavarro - Why don''t all you liberal POS''s get off social media","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ananavarro","name":"Ana - Navarro-C\u00e1rdenas","id":19568591,"id_str":"19568591","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507413065268142086,"in_reply_to_status_id_str":"1507413065268142086","in_reply_to_user_id":19568591,"in_reply_to_user_id_str":"19568591","in_reply_to_screen_name":"ananavarro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428869266539941893\/CGyqS5m-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428869266539941893\/CGyqS5m-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":779759736,"id_str":"779759736","name":"Paul - Akingbola","screen_name":"paulakingbola","location":"hello@paulakingbola.com","description":"Husband, - Dad, Building @protransl8 & https:\/\/t.co\/lpbReook8G | Strategy Alum @ucl, - WPSC @jcileaders | Humanist","url":"https:\/\/t.co\/XtSpPuD9Hz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XtSpPuD9Hz","expanded_url":"http:\/\/paulakingbola.com\/blog","display_url":"paulakingbola.com\/blog","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/lpbReook8G","expanded_url":"http:\/\/transcript.ng","display_url":"transcript.ng","indices":[37,60]}]}},"protected":false,"followers_count":5029,"friends_count":304,"listed_count":50,"created_at":"Sat - Aug 25 07:06:42 +0000 2012","favourites_count":7809,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15226,"lang":null,"status":{"created_at":"Sat - Mar 26 10:46:44 +0000 2022","id":1507670379069902862,"id_str":"1507670379069902862","text":"@koldaf20 - @damiakingbola waiting for you and Mrs K''s pisho too \ud83d\ude1c\ud83d\ude01\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"koldaf20","name":"Olawale - Koledafe","id":313118372,"id_str":"313118372","indices":[0,9]},{"screen_name":"damiakingbola","name":"Damilola - Akingbola","id":3156275944,"id_str":"3156275944","indices":[10,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507658613686476800,"in_reply_to_status_id_str":"1507658613686476800","in_reply_to_user_id":313118372,"in_reply_to_user_id_str":"313118372","in_reply_to_screen_name":"koldaf20","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469760649286856704\/mvmUyaNa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469760649286856704\/mvmUyaNa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779759736\/1635876239","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1178251889433092096,"id_str":"1178251889433092096","name":"Ahmad - Ali","screen_name":"AhmadAl27058039","location":"Riyadh, Kingdom of Saudi - Arabia","description":"26","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":842,"listed_count":0,"created_at":"Sun - Sep 29 10:15:57 +0000 2019","favourites_count":4245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Fri - Dec 17 21:38:02 +0000 2021","id":1471957884669992972,"id_str":"1471957884669992972","text":"RT - @Msksa84: #\u0648\u0644\u064a_\u0627\u0644\u0639\u0647\u062f \u0627\u0644\u0623\u0645\u064a\u0631 - #\u0645\u062d\u0645\u062f_\u0628\u0646_\u0633\u0644\u0645\u0627\u0646 \u064a\u0627 - \u0643\u062b\u0631 \u0645\u0627 \u064a\u0641\u0631\u0642 \u062d\u0636\u0648\u0631\u0643 - \u0639\u0646 \u0627\u0644\u063a\u064a\u0631 \u0645\u062b\u0644 \u0627\u0644\u0645\u0637\u0631 - \u0645\u0647\u0645\u0627 \u0647\u0637\u0644 \u0645\u0627 \u0625\u0643\u062a\u0641\u064a\u0646\u0627 - \ud83d\udc9a https:\/\/t.co\/eWWGBZb2Bn","truncated":false,"entities":{"hashtags":[{"text":"\u0648\u0644\u064a_\u0627\u0644\u0639\u0647\u062f","indices":[13,23]},{"text":"\u0645\u062d\u0645\u062f_\u0628\u0646_\u0633\u0644\u0645\u0627\u0646","indices":[31,45]}],"symbols":[],"user_mentions":[{"screen_name":"Msksa84","name":"\u0645\u062d\u0628\u064a - \u0645\u062d\u0645\u062f \u0628\u0646 \u0633\u0644\u0645\u0627\u0646 \ud83d\udc9a","id":724921620,"id_str":"724921620","indices":[3,11]}],"urls":[],"media":[{"id":1471935108064104458,"id_str":"1471935108064104458","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","url":"https:\/\/t.co\/eWWGBZb2Bn","display_url":"pic.twitter.com\/eWWGBZb2Bn","expanded_url":"https:\/\/twitter.com\/Msksa84\/status\/1471935114603122693\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":622,"h":1346,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"source_status_id":1471935114603122693,"source_status_id_str":"1471935114603122693","source_user_id":724921620,"source_user_id_str":"724921620"}]},"extended_entities":{"media":[{"id":1471935108064104458,"id_str":"1471935108064104458","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","url":"https:\/\/t.co\/eWWGBZb2Bn","display_url":"pic.twitter.com\/eWWGBZb2Bn","expanded_url":"https:\/\/twitter.com\/Msksa84\/status\/1471935114603122693\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":622,"h":1346,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"source_status_id":1471935114603122693,"source_status_id_str":"1471935114603122693","source_user_id":724921620,"source_user_id_str":"724921620"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 20:07:33 +0000 2021","id":1471935114603122693,"id_str":"1471935114603122693","text":"#\u0648\u0644\u064a_\u0627\u0644\u0639\u0647\u062f - \u0627\u0644\u0623\u0645\u064a\u0631 #\u0645\u062d\u0645\u062f_\u0628\u0646_\u0633\u0644\u0645\u0627\u0646 - \u064a\u0627 \u0643\u062b\u0631 \u0645\u0627 \u064a\u0641\u0631\u0642 \u062d\u0636\u0648\u0631\u0643 - \u0639\u0646 \u0627\u0644\u063a\u064a\u0631 \u0645\u062b\u0644 \u0627\u0644\u0645\u0637\u0631 - \u0645\u0647\u0645\u0627 \u0647\u0637\u0644 \u0645\u0627 \u0625\u0643\u062a\u0641\u064a\u0646\u0627 - \ud83d\udc9a https:\/\/t.co\/eWWGBZb2Bn","truncated":false,"entities":{"hashtags":[{"text":"\u0648\u0644\u064a_\u0627\u0644\u0639\u0647\u062f","indices":[0,10]},{"text":"\u0645\u062d\u0645\u062f_\u0628\u0646_\u0633\u0644\u0645\u0627\u0646","indices":[18,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1471935108064104458,"id_str":"1471935108064104458","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","url":"https:\/\/t.co\/eWWGBZb2Bn","display_url":"pic.twitter.com\/eWWGBZb2Bn","expanded_url":"https:\/\/twitter.com\/Msksa84\/status\/1471935114603122693\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":622,"h":1346,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1471935108064104458,"id_str":"1471935108064104458","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG1dLqCWUAoGSKs.jpg","url":"https:\/\/t.co\/eWWGBZb2Bn","display_url":"pic.twitter.com\/eWWGBZb2Bn","expanded_url":"https:\/\/twitter.com\/Msksa84\/status\/1471935114603122693\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":622,"h":1346,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":266,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":114,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398659258439327747\/t25IFXWj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398659258439327747\/t25IFXWj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1178251889433092096\/1604686492","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48824187,"id_str":"48824187","name":"tiffany","screen_name":"tiffanyandco28","location":"Chicago, - IL","description":"ain\u2019t you ever seen a princess be a bad bitch?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":918,"listed_count":4,"created_at":"Fri - Jun 19 20:50:54 +0000 2009","favourites_count":1460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16742,"lang":null,"status":{"created_at":"Fri - Mar 25 03:50:58 +0000 2022","id":1507203362231664642,"id_str":"1507203362231664642","text":"i - wish i was anyone else","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386466824762675205\/6J9o4z5q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386466824762675205\/6J9o4z5q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48824187\/1636961190","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4847755121,"id_str":"4847755121","name":"Heather","screen_name":"sunlover1973","location":"Downers - Grove, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":179,"listed_count":0,"created_at":"Tue - Jan 26 02:05:42 +0000 2016","favourites_count":212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":156,"lang":null,"status":{"created_at":"Wed - Dec 22 14:58:02 +0000 2021","id":1473669161427603459,"id_str":"1473669161427603459","text":"@JackPosobiec - Exactly!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JackPosobiec","name":"Jack - Posobiec \ud83c\uddfa\ud83c\uddf8","id":592730371,"id_str":"592730371","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1473507413542293510,"in_reply_to_status_id_str":"1473507413542293510","in_reply_to_user_id":592730371,"in_reply_to_user_id_str":"592730371","in_reply_to_screen_name":"JackPosobiec","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328010507450785797\/K0CCP3Jw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328010507450785797\/K0CCP3Jw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1102438516779307008,"id_str":"1102438516779307008","name":"Sanusi - Shuaibu Abubakar","screen_name":"SanusiShuaibuA3","location":"Funtua, Nigeria","description":"Student","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":1079,"listed_count":0,"created_at":"Mon - Mar 04 05:19:59 +0000 2019","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":248,"lang":null,"status":{"created_at":"Fri - May 28 01:03:25 +0000 2021","id":1398082450279051270,"id_str":"1398082450279051270","text":"RT - @DuaaAndAzkar: O Allah, remove all arrogance and selfishness from my heart - and teach me to be humble, and always remember You in everyth\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DuaaAndAzkar","name":"Duaa - And Azkar","id":2586112855,"id_str":"2586112855","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - May 27 17:27:03 +0000 2021","id":1397967598390857734,"id_str":"1397967598390857734","text":"O - Allah, remove all arrogance and selfishness from my heart and teach me to - be humble, and always remember You in everything that I do.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/twittimer.com\" rel=\"nofollow\"\u003eTwittimer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":307,"favorite_count":1036,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":307,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239164694998515712\/LLDGwdgq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239164694998515712\/LLDGwdgq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1102438516779307008\/1551818774","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23515492,"id_str":"23515492","name":"Dennis - Kavanaugh","screen_name":"dkavanaugh","location":"Mesa, AZ","description":"Former - City of Mesa Vice Mayor, retired attorney and community volunteer. Proud SLU - and ASU graduate.\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":912,"friends_count":1017,"listed_count":47,"created_at":"Mon - Mar 09 22:34:37 +0000 2009","favourites_count":73550,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33967,"lang":null,"status":{"created_at":"Sat - Mar 26 02:44:46 +0000 2022","id":1507549089394700290,"id_str":"1507549089394700290","text":"RT - @alexgulotta: Why should @DougDucey veto #HB2492? Let me count the ways.\n\nReason - 1: It. Is. Illegal.\n\n#AZLeg 1\/","truncated":false,"entities":{"hashtags":[{"text":"HB2492","indices":[44,51]},{"text":"AZLeg","indices":[105,111]}],"symbols":[],"user_mentions":[{"screen_name":"alexgulotta","name":"Alex - Gulotta","id":38982694,"id_str":"38982694","indices":[3,15]},{"screen_name":"DougDucey","name":"Doug - Ducey","id":20217019,"id_str":"20217019","indices":[28,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:15:44 +0000 2022","id":1507481385618972680,"id_str":"1507481385618972680","text":"Why - should @DougDucey veto #HB2492? Let me count the ways.\n\nReason 1: It. Is. - Illegal.\n\n#AZLeg 1\/","truncated":false,"entities":{"hashtags":[{"text":"HB2492","indices":[27,34]},{"text":"AZLeg","indices":[88,94]}],"symbols":[],"user_mentions":[{"screen_name":"DougDucey","name":"Doug - Ducey","id":20217019,"id_str":"20217019","indices":[11,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":120,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333597719449927682\/Mys-KciP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333597719449927682\/Mys-KciP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":948644671751794688,"id_str":"948644671751794688","name":"Phil - Hicks","screen_name":"PhilHic02036655","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":48,"listed_count":0,"created_at":"Wed - Jan 03 19:58:09 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Jun 12 01:00:59 +0000 2021","id":1403517653092769793,"id_str":"1403517653092769793","text":"@damonroberts - Big mistake letting pickled eggs and slick take over your show BECAREFUL! - \u2620\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"damonroberts","name":"Damon - Roberts","id":46879943,"id_str":"46879943","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":46879943,"in_reply_to_user_id_str":"46879943","in_reply_to_screen_name":"damonroberts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":263033301,"id_str":"263033301","name":"Intombi - yasemaplazini\ud83c\udf40","screen_name":"Sthe_Mageba","location":"South Africa","description":"Digital - Content Creator and Copywriter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":705,"listed_count":3,"created_at":"Wed - Mar 09 07:04:04 +0000 2011","favourites_count":8486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1496,"lang":null,"status":{"created_at":"Fri - Feb 25 12:17:08 +0000 2022","id":1497183881174396932,"id_str":"1497183881174396932","text":"RT - @kwameaddoobiri_: Life is currently moving at several haibos per minute","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kwameaddoobiri_","name":"\ud835\udc2a\ud835\udc2e\ud835\udc1a\ud835\udc26\ud835\udc1e\ud835\udc21","id":1360873535833530368,"id_str":"1360873535833530368","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 23 19:12:47 +0000 2022","id":1496563706183958528,"id_str":"1496563706183958528","text":"Life - is currently moving at several haibos per minute","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5554,"favorite_count":16552,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5554,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354466972235403267\/jAsXjA8n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354466972235403267\/jAsXjA8n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263033301\/1587606397","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2411109362,"id_str":"2411109362","name":"catlove","screen_name":"loventhal","location":"Crystal - Beach, TX","description":"retired, mom and grandmother! Biden\/Harris\u2026..happily - married, no dm\u2019s!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1958,"friends_count":3874,"listed_count":0,"created_at":"Tue - Mar 25 14:35:47 +0000 2014","favourites_count":114179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3355,"lang":null,"status":{"created_at":"Sat - Mar 26 02:22:28 +0000 2022","id":1507543475457302532,"id_str":"1507543475457302532","text":"@Gspirithorse - I love Mi cocina! My favorite in Dallas!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Gspirithorse","name":"Broken - Spirit Horse","id":1388928926869753857,"id_str":"1388928926869753857","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507539992767307776,"in_reply_to_status_id_str":"1507539992767307776","in_reply_to_user_id":1388928926869753857,"in_reply_to_user_id_str":"1388928926869753857","in_reply_to_screen_name":"Gspirithorse","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399033694917214211\/S5IvKFvq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399033694917214211\/S5IvKFvq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":50561760,"id_str":"50561760","name":"Lizzeth - Sandoval","screen_name":"lizzethsandoval","location":"todo el mundo...","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":111,"friends_count":615,"listed_count":1,"created_at":"Thu - Jun 25 05:33:41 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":515,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311900477525831680\/6iEoUmAY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311900477525831680\/6iEoUmAY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50561760\/1601616423","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243344570,"id_str":"243344570","name":"OLA - OLAYEMI","screen_name":"olayemmy30","location":"USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":746,"listed_count":0,"created_at":"Wed - Jan 26 21:06:37 +0000 2011","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":367,"lang":null,"status":{"created_at":"Mon - Jan 04 20:53:36 +0000 2021","id":1346198114068287488,"id_str":"1346198114068287488","text":"@Xboxjedigamer1 - @FoxNews I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xboxjedigamer1","name":"XpertWanderer\ud83d\udc53\ud83d\ude0e","id":1206659420740050944,"id_str":"1206659420740050944","indices":[0,15]},{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[16,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1346197491327315971,"in_reply_to_status_id_str":"1346197491327315971","in_reply_to_user_id":1206659420740050944,"in_reply_to_user_id_str":"1206659420740050944","in_reply_to_screen_name":"Xboxjedigamer1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453670363940265984\/MzMbay7W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453670363940265984\/MzMbay7W_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17339041,"id_str":"17339041","name":"mntrl","screen_name":"mntrl","location":"Back - Bay, Boston","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":209,"listed_count":0,"created_at":"Wed - Nov 12 13:30:57 +0000 2008","favourites_count":148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/740523732112953344\/NOrpZWuI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/740523732112953344\/NOrpZWuI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232832452227457024,"id_str":"1232832452227457024","name":"Professor","screen_name":"Profess37520205","location":"Tlhareseleele ","description":"Up - I Go \ud83d\udd1d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":299,"listed_count":0,"created_at":"Thu - Feb 27 00:59:19 +0000 2020","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Aug 13 11:57:05 +0000 2020","id":1293879242376323073,"id_str":"1293879242376323073","text":"\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f - https:\/\/t.co\/RQ5AE8MzOW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RQ5AE8MzOW","expanded_url":"https:\/\/twitter.com\/JoelOsteen\/status\/1293609297381928961","display_url":"twitter.com\/JoelOsteen\/sta\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1293609297381928961,"quoted_status_id_str":"1293609297381928961","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232832998552326144\/_o-a4DCD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232832998552326144\/_o-a4DCD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":966498742605172737,"id_str":"966498742605172737","name":"sami - sandler","screen_name":"samisandler","location":"","description":"","url":"https:\/\/t.co\/ACeDCDPyBx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ACeDCDPyBx","expanded_url":"https:\/\/seeitwithsami.com\/","display_url":"seeitwithsami.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":280,"listed_count":0,"created_at":"Thu - Feb 22 02:23:51 +0000 2018","favourites_count":279,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sun - Jun 13 21:26:09 +0000 2021","id":1404188366338510848,"id_str":"1404188366338510848","text":"@emilyjune_ - \u2026 take me out with you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emilyjune_","name":"emily - june","id":137126993,"id_str":"137126993","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1404122811485069317,"in_reply_to_status_id_str":"1404122811485069317","in_reply_to_user_id":137126993,"in_reply_to_user_id_str":"137126993","in_reply_to_screen_name":"emilyjune_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252091371005136898\/Jjm5vpDY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252091371005136898\/Jjm5vpDY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966498742605172737\/1522800799","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287475633371648001,"id_str":"1287475633371648001","name":"\uf8ff - Zak","screen_name":"ZakkHasFrozen","location":"New York, NY","description":"Technical - SEO scientist junior | #Calistenics fanatic | #Alternative | 21 yo | \uf8ff - | psychology, economics and business at Edx | Working at M&M Reality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":143,"listed_count":0,"created_at":"Sun - Jul 26 19:51:58 +0000 2020","favourites_count":521,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292,"lang":null,"status":{"created_at":"Tue - Apr 20 22:32:19 +0000 2021","id":1384636070323699712,"id_str":"1384636070323699712","text":"RT - @TasneemN: Judge revokes Derek Chauvin''s bail and he is taken into custody - immediately https:\/\/t.co\/3CcjwUJcSs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TasneemN","name":"Tasneem - Nashrulla","id":45814173,"id_str":"45814173","indices":[3,12]}],"urls":[],"media":[{"id":1384615752662061059,"id_str":"1384615752662061059","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","url":"https:\/\/t.co\/3CcjwUJcSs","display_url":"pic.twitter.com\/3CcjwUJcSs","expanded_url":"https:\/\/twitter.com\/TasneemN\/status\/1384615768034263043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1338,"h":756,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"},"small":{"w":680,"h":384,"resize":"fit"}},"source_status_id":1384615768034263043,"source_status_id_str":"1384615768034263043","source_user_id":45814173,"source_user_id_str":"45814173"}]},"extended_entities":{"media":[{"id":1384615752662061059,"id_str":"1384615752662061059","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","url":"https:\/\/t.co\/3CcjwUJcSs","display_url":"pic.twitter.com\/3CcjwUJcSs","expanded_url":"https:\/\/twitter.com\/TasneemN\/status\/1384615768034263043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1338,"h":756,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"},"small":{"w":680,"h":384,"resize":"fit"}},"source_status_id":1384615768034263043,"source_status_id_str":"1384615768034263043","source_user_id":45814173,"source_user_id_str":"45814173"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 20 21:11:38 +0000 2021","id":1384615768034263043,"id_str":"1384615768034263043","text":"Judge - revokes Derek Chauvin''s bail and he is taken into custody immediately https:\/\/t.co\/3CcjwUJcSs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1384615752662061059,"id_str":"1384615752662061059","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","url":"https:\/\/t.co\/3CcjwUJcSs","display_url":"pic.twitter.com\/3CcjwUJcSs","expanded_url":"https:\/\/twitter.com\/TasneemN\/status\/1384615768034263043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1338,"h":756,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"},"small":{"w":680,"h":384,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1384615752662061059,"id_str":"1384615752662061059","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzcksOfVEAMQtCk.jpg","url":"https:\/\/t.co\/3CcjwUJcSs","display_url":"pic.twitter.com\/3CcjwUJcSs","expanded_url":"https:\/\/twitter.com\/TasneemN\/status\/1384615768034263043\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1338,"h":756,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"},"small":{"w":680,"h":384,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1384615198477234179,"in_reply_to_status_id_str":"1384615198477234179","in_reply_to_user_id":45814173,"in_reply_to_user_id_str":"45814173","in_reply_to_screen_name":"TasneemN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2064,"favorite_count":8444,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2064,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288078321960574976\/AZRB5OKY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288078321960574976\/AZRB5OKY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287475633371648001\/1595936808","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":922904763947200512,"id_str":"922904763947200512","name":"Grace - Clayton","screen_name":"GraceClayton21","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":562,"listed_count":0,"created_at":"Tue - Oct 24 19:16:57 +0000 2017","favourites_count":193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Dec 13 21:09:37 +0000 2021","id":1470501185530613771,"id_str":"1470501185530613771","text":"RT - @IrelandatExpo: Join us for, a unique festive choral event Live from Expo2020 - Dubai:\nThe Expo World Choir, led by Irish conductor David\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IrelandatExpo","name":"IrelandAtExpo2020","id":1184418238060552192,"id_str":"1184418238060552192","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 09 13:43:00 +0000 2021","id":1468939236749500419,"id_str":"1468939236749500419","text":"Join - us for, a unique festive choral event Live from Expo2020 Dubai:\nThe Expo - World Choir, led by Irish conductor D\u2026 https:\/\/t.co\/21NdAVRw8m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/21NdAVRw8m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1468939236749500419","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48,"favorite_count":289,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":48,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1236860146258776065,"id_str":"1236860146258776065","name":"Ennio","screen_name":"Yotam85169852","location":"Seychelles","description":"Problem - solving","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":551,"listed_count":0,"created_at":"Mon - Mar 09 03:44:26 +0000 2020","favourites_count":2443,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2324,"lang":null,"status":{"created_at":"Sat - Mar 26 09:31:44 +0000 2022","id":1507651504089542659,"id_str":"1507651504089542659","text":"@DieBra5 - @CharlotteKhuma3 @MtwanaXabiso Shut your mouth out.What do you know about - deporting, even if I was there,you just barking.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DieBra5","name":"Management","id":1391079898513616900,"id_str":"1391079898513616900","indices":[0,8]},{"screen_name":"CharlotteKhuma3","name":"Charlotte - Z Khumalo","id":929027594380562432,"id_str":"929027594380562432","indices":[9,25]},{"screen_name":"MtwanaXabiso","name":"Xabiso - Mtwana \ud83c\uddf7\ud83c\uddfa\ud83c\uddff\ud83c\udde6","id":1003193186729320454,"id_str":"1003193186729320454","indices":[26,39]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507596106884079618,"in_reply_to_status_id_str":"1507596106884079618","in_reply_to_user_id":1391079898513616900,"in_reply_to_user_id_str":"1391079898513616900","in_reply_to_screen_name":"DieBra5","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451303075696762885\/jYszh82v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451303075696762885\/jYszh82v_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4785067878,"id_str":"4785067878","name":"A","screen_name":"N8vIntel","location":"Arizona, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":307,"listed_count":0,"created_at":"Tue - Jan 19 19:06:49 +0000 2016","favourites_count":4211,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Mon - Feb 22 21:49:17 +0000 2021","id":1363969134367698946,"id_str":"1363969134367698946","text":"Crossing - my fingers I win $5,000 from @TMobile \ud83e\udd1e #5Gsfor5G #contest","truncated":false,"entities":{"hashtags":[{"text":"5Gsfor5G","indices":[49,58]},{"text":"contest","indices":[59,67]}],"symbols":[],"user_mentions":[{"screen_name":"TMobile","name":"T-Mobile","id":17338082,"id_str":"17338082","indices":[38,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252680163420065792\/fI9fdgzl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252680163420065792\/fI9fdgzl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4785067878\/1503181285","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":298362416,"id_str":"298362416","name":"\ud83d\udcab","screen_name":"chillinkillin_8","location":"Beyond - The Sea ","description":"A night crawler","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":1915,"listed_count":2,"created_at":"Sat - May 14 05:35:31 +0000 2011","favourites_count":156234,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11917,"lang":null,"status":{"created_at":"Thu - Mar 24 23:42:41 +0000 2022","id":1507140877747118081,"id_str":"1507140877747118081","text":"RT - @Ieatherhrry: crazy how ur life just automatically gets better when harry - announces a new album","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ieatherhrry","name":"kez - \ud83c\udfe0","id":1300896824086196224,"id_str":"1300896824086196224","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 08:23:09 +0000 2022","id":1506909472190521351,"id_str":"1506909472190521351","text":"crazy - how ur life just automatically gets better when harry announces a new album","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1174,"favorite_count":8197,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1174,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262860486904709120\/Hdtm6VT3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262860486904709120\/Hdtm6VT3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298362416\/1589924382","profile_link_color":"FF3300","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":525091985,"id_str":"525091985","name":"boris","screen_name":"CyrusDeBicycle","location":"","description":"Bicycling - the World to avoid creditors","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":1480,"listed_count":0,"created_at":"Thu - Mar 15 06:19:50 +0000 2012","favourites_count":517,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Mon - Dec 27 01:52:51 +0000 2021","id":1475283502673321987,"id_str":"1475283502673321987","text":"@UnoNoticias - \nTheses guys are the worst spammers. 10 texts a day on Telecom! GO AWAY!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnoNoticias","name":"Uno - TV","id":37705479,"id_str":"37705479","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":37705479,"in_reply_to_user_id_str":"37705479","in_reply_to_screen_name":"UnoNoticias","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584170687167737856\/zJxBw0et_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584170687167737856\/zJxBw0et_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1075091972413632514,"id_str":"1075091972413632514","name":"\u1571\u2445\u1571","screen_name":"bobafetishx","location":"Slidell, - LA","description":"My anxiety is chronic but this ass is Iconic.","url":"https:\/\/t.co\/kPxxqVxtwi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kPxxqVxtwi","expanded_url":"https:\/\/my.bio\/bobafetishx","display_url":"my.bio\/bobafetishx","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":414,"listed_count":0,"created_at":"Tue - Dec 18 18:14:35 +0000 2018","favourites_count":577,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":885,"lang":null,"status":{"created_at":"Sun - Mar 20 02:19:25 +0000 2022","id":1505368384053125121,"id_str":"1505368384053125121","text":"I - thought to myself \u201cI will not let some dude with a bad mustache and a - thigh tattoo ruin my self-worth\u201d as I proce\u2026 https:\/\/t.co\/qxdobKOfqc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qxdobKOfqc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505368384053125121","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429139453080133633\/bnVL4L5-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429139453080133633\/bnVL4L5-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1075091972413632514\/1629568374","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49028640,"id_str":"49028640","name":"Robert - R Rogers","screen_name":"Sydneystpeters","location":"Nova Scotia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":299,"friends_count":2611,"listed_count":9,"created_at":"Sat - Jun 20 15:14:46 +0000 2009","favourites_count":10742,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18042,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1330105409\/P8090001_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1330105409\/P8090001_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":855899101690560512,"id_str":"855899101690560512","name":"Bridger - Babcock","screen_name":"Bridgerides","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":143,"listed_count":0,"created_at":"Sat - Apr 22 21:40:22 +0000 2017","favourites_count":223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Wed - Mar 17 16:20:37 +0000 2021","id":1372221345224781826,"id_str":"1372221345224781826","text":"@antonldelgado - @ksophiewill You also talk to yourself out loud the entire time\ud83d\ude02\ud83e\udd37\ud83c\udffb\u200d\u2642\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"antonldelgado","name":"Anton - L. Delgado","id":795740631121494017,"id_str":"795740631121494017","indices":[0,14]},{"screen_name":"ksophiewill","name":"K. - Sophie Will","id":747648734469722113,"id_str":"747648734469722113","indices":[15,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1371907285065244674,"in_reply_to_status_id_str":"1371907285065244674","in_reply_to_user_id":795740631121494017,"in_reply_to_user_id_str":"795740631121494017","in_reply_to_screen_name":"antonldelgado","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":363711608,"id_str":"363711608","name":"Jocelyn","screen_name":"Jocyndpussycats","location":"Brooklyn, - NY","description":"Artist, aspiring writer, chick-off-all trades, life-long - learner and renaissance soul!\ud83d\udd2e\ud83e\udd17\ud83c\udfb6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":4975,"listed_count":0,"created_at":"Sun - Aug 28 15:23:36 +0000 2011","favourites_count":1502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":379,"lang":null,"status":{"created_at":"Wed - Mar 09 18:01:40 +0000 2022","id":1501619242025820164,"id_str":"1501619242025820164","text":"How - to help Ukraine: 11 charities to help Ukrainian refugees amid Russian invasion - https:\/\/t.co\/nc1eiHCGQm via @TODAYshow","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TODAYshow","name":"TODAY","id":7744592,"id_str":"7744592","indices":[111,121]}],"urls":[{"url":"https:\/\/t.co\/nc1eiHCGQm","expanded_url":"https:\/\/www.today.com\/news\/news\/5-verified-charities-working-help-ukrainians-invasion-rcna17590","display_url":"today.com\/news\/news\/5-ve\u2026","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/980659892867469312\/NJJclOIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/980659892867469312\/NJJclOIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363711608\/1541562725","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249682641697284098,"id_str":"1249682641697284098","name":"Ken - Masiga","screen_name":"KenMasiga","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":729,"listed_count":0,"created_at":"Mon - Apr 13 12:55:57 +0000 2020","favourites_count":1620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Sat - Mar 20 02:26:36 +0000 2021","id":1373098618429841412,"id_str":"1373098618429841412","text":"@Its_Davie11 - Kwenuuu nyumbani....Coz already hiyo ni rent...Ama keja ya 2k","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1372065639398014976,"in_reply_to_status_id_str":"1372065639398014976","in_reply_to_user_id":1198853860741255168,"in_reply_to_user_id_str":"1198853860741255168","in_reply_to_screen_name":"Its_Davis11","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1249684013020823552\/thw2FN8F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1249684013020823552\/thw2FN8F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":329740807,"id_str":"329740807","name":"Jim","screen_name":"JimBiggs","location":"Washington - DC","description":"Industrial Water Consultant","url":"https:\/\/t.co\/7JuTjWFo5g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7JuTjWFo5g","expanded_url":"https:\/\/www.pinterest.com\/h20toptobottom","display_url":"pinterest.com\/h20toptobottom","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3988,"friends_count":5055,"listed_count":13,"created_at":"Tue - Jul 05 15:12:01 +0000 2011","favourites_count":2637,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18191,"lang":null,"status":{"created_at":"Fri - Mar 25 18:12:58 +0000 2022","id":1507420291470872579,"id_str":"1507420291470872579","text":"RT - @FBIBoston: In a new private industry notification, the #FBI warns that the - Russian group responsible for the 2017 use of TRITON #malwar\u2026","truncated":false,"entities":{"hashtags":[{"text":"FBI","indices":[59,63]}],"symbols":[],"user_mentions":[{"screen_name":"FBIBoston","name":"FBI - Boston","id":351157948,"id_str":"351157948","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:12:03 +0000 2022","id":1507420061136531458,"id_str":"1507420061136531458","text":"In - a new private industry notification, the #FBI warns that the Russian group - responsible for the 2017 use of TRITO\u2026 https:\/\/t.co\/O0A1rrttpb","truncated":true,"entities":{"hashtags":[{"text":"FBI","indices":[44,48]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/O0A1rrttpb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507420061136531458","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1062411025108979712\/v2dP0XoM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1062411025108979712\/v2dP0XoM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329740807\/1453406603","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":946527599500713985,"id_str":"946527599500713985","name":"Debbie - Bache","screen_name":"DebbieBache","location":"Pennsylvania, USA","description":"#resister - ,mom, grandma,pet lover of almost everything","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":470,"friends_count":695,"listed_count":1,"created_at":"Thu - Dec 28 23:45:40 +0000 2017","favourites_count":30990,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14870,"lang":null,"status":{"created_at":"Fri - Mar 25 15:53:31 +0000 2022","id":1507385197582561285,"id_str":"1507385197582561285","text":"RT - @RoCoGB: ********NEWS FLASH********\n\ud83d\udc9cMAMA\u2019s \ud83d\udc9cbeen - SAVED\nTagged by 501 Rescue\nFreedom post & pledge collection to follow - ASAP \n\ud83d\udc9c\ud83e\udde1\ud83d\udc9c\ud83e\udde1\ud83d\udc9c\ud83e\udde1\ud83d\udc9c\ud83e\udde1\ud83d\udc9c\ud83e\udde1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoCoGB","name":"RoCo - \ud83c\uddfa\ud83c\udde6\ud83c\uddec\ud83c\udde7 STOP PUTIN!","id":151414976,"id_str":"151414976","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:38:11 +0000 2022","id":1507049151141449745,"id_str":"1507049151141449745","text":"********NEWS - FLASH********\n\ud83d\udc9cMAMA\u2019s \ud83d\udc9cbeen SAVED\nTagged by 501 - Rescue\nFreedom post & pledge collection to follow ASAP\u2026 https:\/\/t.co\/PxjG47Nx1X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PxjG47Nx1X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507049151141449745","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506384068212137999,"quoted_status_id_str":"1506384068212137999","retweet_count":75,"favorite_count":134,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506384068212137999,"quoted_status_id_str":"1506384068212137999","retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":379319333,"id_str":"379319333","name":"Leslie - A.S. Dill, MS (she\/her)","screen_name":"byleslieanne","location":"Malden, - MA","description":"Storyteller, consultant, analyst, mediator, occasional - funny lady, aspiring good person, jazzed to be legally bound to @BDill_Meister","url":"https:\/\/t.co\/52oJiKtpFj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/52oJiKtpFj","expanded_url":"http:\/\/www.byleslieanne.com","display_url":"byleslieanne.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":761,"friends_count":4985,"listed_count":12,"created_at":"Sat - Sep 24 19:03:08 +0000 2011","favourites_count":34926,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5366,"lang":null,"status":{"created_at":"Wed - Mar 23 20:01:12 +0000 2022","id":1506722754682400781,"id_str":"1506722754682400781","text":"RT - @SketchesbyBoze: sorry I haven\u2019t texted you back in a month. the old - world is dying and the new one struggles to be born. now is the tim\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SketchesbyBoze","name":"Owl! - at the Library \ud83d\ude34\ud83e\uddd9\u200d\u2640\ufe0f","id":1735442838,"id_str":"1735442838","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 22:24:58 +0000 2022","id":1506396547096973317,"id_str":"1506396547096973317","text":"sorry - I haven\u2019t texted you back in a month. the old world is dying and the - new one struggles to be born. now is the time of monsters.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15715,"favorite_count":79759,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15715,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477139961472290818\/hpQB88Pq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477139961472290818\/hpQB88Pq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379319333\/1641048912","profile_link_color":"1B95E0","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251218898415808514,"id_str":"1251218898415808514","name":"Naimul","screen_name":"Naimul_hasan30","location":"Chittagong, - Bangladesh","description":"I am a student at the University of Chittagong. - I am from Bangladesh. I will be an actuary. Now , I read in BBA at the department - of Banking & Insurance.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":2890,"listed_count":3,"created_at":"Fri - Apr 17 18:40:45 +0000 2020","favourites_count":1816,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Wed - Jun 16 06:00:25 +0000 2021","id":1405042562537201665,"id_str":"1405042562537201665","text":"RT - @RampCapitalLLC: gross profit vs net income https:\/\/t.co\/nzXuoCfPOk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RampCapitalLLC","name":"Ramp - Capital","id":2214652482,"id_str":"2214652482","indices":[3,18]}],"urls":[],"media":[{"id":1404833491385266179,"id_str":"1404833491385266179","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","url":"https:\/\/t.co\/nzXuoCfPOk","display_url":"pic.twitter.com\/nzXuoCfPOk","expanded_url":"https:\/\/twitter.com\/RampCapitalLLC\/status\/1404833526156038145\/video\/1","type":"photo","sizes":{"medium":{"w":888,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":888,"h":1000,"resize":"fit"},"small":{"w":604,"h":680,"resize":"fit"}},"source_status_id":1404833526156038145,"source_status_id_str":"1404833526156038145","source_user_id":2214652482,"source_user_id_str":"2214652482"}]},"extended_entities":{"media":[{"id":1404833491385266179,"id_str":"1404833491385266179","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","url":"https:\/\/t.co\/nzXuoCfPOk","display_url":"pic.twitter.com\/nzXuoCfPOk","expanded_url":"https:\/\/twitter.com\/RampCapitalLLC\/status\/1404833526156038145\/video\/1","type":"video","sizes":{"medium":{"w":888,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":888,"h":1000,"resize":"fit"},"small":{"w":604,"h":680,"resize":"fit"}},"source_status_id":1404833526156038145,"source_status_id_str":"1404833526156038145","source_user_id":2214652482,"source_user_id_str":"2214652482","video_info":{"aspect_ratio":[111,125],"duration_millis":4898,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/480x540\/32CFVUolzjwBbRJh.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/720x810\/MZLQea66OO6hIle3.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/pl\/oF-P6zDEWvrjSjkt.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/320x360\/p1TmOwbrVaOyN4gS.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 15 16:09:47 +0000 2021","id":1404833526156038145,"id_str":"1404833526156038145","text":"gross - profit vs net income https:\/\/t.co\/nzXuoCfPOk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1404833491385266179,"id_str":"1404833491385266179","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","url":"https:\/\/t.co\/nzXuoCfPOk","display_url":"pic.twitter.com\/nzXuoCfPOk","expanded_url":"https:\/\/twitter.com\/RampCapitalLLC\/status\/1404833526156038145\/video\/1","type":"photo","sizes":{"medium":{"w":888,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":888,"h":1000,"resize":"fit"},"small":{"w":604,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1404833491385266179,"id_str":"1404833491385266179","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1404833491385266179\/pu\/img\/wS-W-sRlCkySp1xs.jpg","url":"https:\/\/t.co\/nzXuoCfPOk","display_url":"pic.twitter.com\/nzXuoCfPOk","expanded_url":"https:\/\/twitter.com\/RampCapitalLLC\/status\/1404833526156038145\/video\/1","type":"video","sizes":{"medium":{"w":888,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":888,"h":1000,"resize":"fit"},"small":{"w":604,"h":680,"resize":"fit"}},"video_info":{"aspect_ratio":[111,125],"duration_millis":4898,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/480x540\/32CFVUolzjwBbRJh.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/720x810\/MZLQea66OO6hIle3.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/pl\/oF-P6zDEWvrjSjkt.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1404833491385266179\/pu\/vid\/320x360\/p1TmOwbrVaOyN4gS.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1629,"favorite_count":10667,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1629,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277074891271925761\/cCD2fYKR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277074891271925761\/cCD2fYKR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267601476370694144,"id_str":"1267601476370694144","name":"Marilynklr@gmail.com","screen_name":"Marski_Roberts","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":234,"listed_count":0,"created_at":"Mon - Jun 01 23:39:01 +0000 2020","favourites_count":439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":101,"lang":null,"status":{"created_at":"Tue - Feb 08 16:36:37 +0000 2022","id":1491088588502859776,"id_str":"1491088588502859776","text":"@mememoreme - @Megawatts55 @MuellerSheWrote Uneducated people are easier to control","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mememoreme","name":"Molly","id":34014678,"id_str":"34014678","indices":[0,11]},{"screen_name":"Megawatts55","name":"Sailor - Michael\u2693\u2708","id":2633179534,"id_str":"2633179534","indices":[12,24]},{"screen_name":"MuellerSheWrote","name":"Mueller, - She Wrote","id":926164634570067968,"id_str":"926164634570067968","indices":[25,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1490750464580857866,"in_reply_to_status_id_str":"1490750464580857866","in_reply_to_user_id":34014678,"in_reply_to_user_id_str":"34014678","in_reply_to_screen_name":"mememoreme","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":401899249,"id_str":"401899249","name":"Seema - Ghazi","screen_name":"SeemaGhazi","location":"Kenya","description":"Humanitarian - Affairs and Communication Professional | UNOCHA \n\nPreviously @FAO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":543,"listed_count":1,"created_at":"Mon - Oct 31 08:01:53 +0000 2011","favourites_count":905,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":269,"lang":null,"status":{"created_at":"Mon - Mar 21 08:32:52 +0000 2022","id":1505824751427756033,"id_str":"1505824751427756033","text":"RT - @MDowlatchahi: #NowruzMubarak to all those who celebrate today the first day - of spring in the year 1401! It is nature rebirth, and a mom\u2026","truncated":false,"entities":{"hashtags":[{"text":"NowruzMubarak","indices":[18,32]}],"symbols":[],"user_mentions":[{"screen_name":"MDowlatchahi","name":"Mina - Dowlatchahi","id":1470503176038232073,"id_str":"1470503176038232073","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 19:10:46 +0000 2022","id":1505622897523671041,"id_str":"1505622897523671041","text":"#NowruzMubarak - to all those who celebrate today the first day of spring in the year 1401! - It is nature rebirth, and\u2026 https:\/\/t.co\/o7ujZ5pbYO","truncated":true,"entities":{"hashtags":[{"text":"NowruzMubarak","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o7ujZ5pbYO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505622897523671041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297970467802947591\/GsPK5ORA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297970467802947591\/GsPK5ORA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401899249\/1423820753","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87333576,"id_str":"87333576","name":"Jonas - E. Thomsen","screen_name":"JonasEThomsen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":154,"listed_count":2,"created_at":"Wed - Nov 04 01:25:46 +0000 2009","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Jan 05 02:08:48 +0000 2011","id":22474564088889344,"id_str":"22474564088889344","text":"RT - @TwoOldHippies: Two Old Hippies are getting ready for the NAMM Show in Anaheim - next week. Who else is going?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TwoOldHippies","name":"Two - Old Hippies","id":34733255,"id_str":"34733255","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 04 20:09:37 +0000 2011","id":22384173515800576,"id_str":"22384173515800576","text":"Two - Old Hippies are getting ready for the NAMM Show in Anaheim next week. Who - else is going?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428205550678315008\/-q-go-YK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428205550678315008\/-q-go-YK_normal.jpeg","profile_link_color":"FF8C00","profile_sidebar_border_color":"ADADAD","profile_sidebar_fill_color":"DEDEDE","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":463864556,"id_str":"463864556","name":"Altaira - \u2728","screen_name":"ms_alti","location":"Boston, MA","description":"BSN, - RN \/ toddler mama \/ caffeine addict \/ spiritual gangster \/ general hot - mess","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":149,"listed_count":0,"created_at":"Sat - Jan 14 15:29:40 +0000 2012","favourites_count":20406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1699,"lang":null,"status":{"created_at":"Mon - Feb 14 01:07:37 +0000 2022","id":1493029124453146637,"id_str":"1493029124453146637","text":"RT - @FTX_Official: The next \u20bfig thing is here, even if Larry can\u2019t see - it.\n\nWe\u2019re giving away 7.54 #bitcoin right now to celebrate! \n\nHow - to\u2026","truncated":false,"entities":{"hashtags":[{"text":"bitcoin","indices":[98,106]}],"symbols":[],"user_mentions":[{"screen_name":"FTX_Official","name":"FTX","id":1101264495337365504,"id_str":"1101264495337365504","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 14 01:05:38 +0000 2022","id":1493028625825869828,"id_str":"1493028625825869828","text":"The - next \u20bfig thing is here, even if Larry can\u2019t see it.\n\nWe\u2019re - giving away 7.54 #bitcoin right now to celebrate!\u2026 https:\/\/t.co\/g1gyiSOz2W","truncated":true,"entities":{"hashtags":[{"text":"bitcoin","indices":[80,88]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g1gyiSOz2W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493028625825869828","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166640,"favorite_count":101962,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":166640,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359532350087065607\/HVr5L0aH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359532350087065607\/HVr5L0aH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463864556\/1531152163","profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37961662,"id_str":"37961662","name":"Dr - Kamal Narain","screen_name":"drshukla01","location":"Luck.ow UP INDIA","description":"Medical - Practice","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":322,"listed_count":2,"created_at":"Tue - May 05 16:41:19 +0000 2009","favourites_count":1015,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1036,"lang":null,"status":{"created_at":"Sat - Mar 26 10:16:19 +0000 2022","id":1507662726738644995,"id_str":"1507662726738644995","text":"RT - @Ananyatweets__: Umar Khalid bail rejected yet again. Can''t even incite riots - in the country and remain free as a youth icon.\n \nNot the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ananyatweets__","name":"Ananya - Rawat","id":1462468083986038789,"id_str":"1462468083986038789","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 09:49:52 +0000 2022","id":1506931295053840388,"id_str":"1506931295053840388","text":"Umar - Khalid bail rejected yet again. Can''t even incite riots in the country and - remain free as a youth icon.\n \nNot the India I grew up in.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1329,"favorite_count":10074,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1329,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077219109652197376\/ZrmDUh5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077219109652197376\/ZrmDUh5y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230590812091645953,"id_str":"1230590812091645953","name":"Celia - Caschetto","screen_name":"CaschettoCelia","location":"","description":"I love - Aquafit.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":217,"listed_count":0,"created_at":"Thu - Feb 20 20:31:45 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112,"lang":null,"status":{"created_at":"Sun - Jul 25 03:15:35 +0000 2021","id":1419134206760800257,"id_str":"1419134206760800257","text":"@CTVVancouver - Leave the fish alone.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CTVVancouver","name":"CTV - News Vancouver","id":16313405,"id_str":"16313405","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1419130339105071106,"in_reply_to_status_id_str":"1419130339105071106","in_reply_to_user_id":16313405,"in_reply_to_user_id_str":"16313405","in_reply_to_screen_name":"CTVVancouver","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230591181278470144\/r3V3fjzG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230591181278470144\/r3V3fjzG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":625136523,"id_str":"625136523","name":"Romesa - Razzaq","screen_name":"romesarazzaq","location":"Sheffield, England","description":"Student - of Journalism. Interested in Politics, Law and Justice and Cricket. RTs are - not endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":349,"friends_count":2621,"listed_count":2,"created_at":"Mon - Jul 02 22:36:02 +0000 2012","favourites_count":6162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3763,"lang":null,"status":{"created_at":"Mon - Mar 21 14:03:37 +0000 2022","id":1505907986996281350,"id_str":"1505907986996281350","text":"RT - @andyjax63: My brother killed himself, he suffered from body dysmorphia, they - ran a story with the headline \"Death of Mr Ugly\" #dontbuyt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andyjax63","name":"Andrew - Jackson","id":516489617,"id_str":"516489617","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 23:50:40 +0000 2022","id":1505330947700543493,"id_str":"1505330947700543493","text":"My - brother killed himself, he suffered from body dysmorphia, they ran a story - with the headline \"Death of Mr Ugly\" #dontbuythesun","truncated":false,"entities":{"hashtags":[{"text":"dontbuythesun","indices":[115,129]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10504,"favorite_count":88025,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10504,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146846893215010817\/lwpxv6eg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146846893215010817\/lwpxv6eg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625136523\/1600458253","profile_link_color":"B9B9B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0F0F0F","profile_text_color":"3FD85B","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2400700508,"id_str":"2400700508","name":"Pamela - Ball \ud83c\udf3b","screen_name":"pamelasklarball","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1169,"listed_count":0,"created_at":"Fri - Mar 21 01:09:18 +0000 2014","favourites_count":74639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1208,"lang":null,"status":{"created_at":"Mon - Mar 14 15:35:35 +0000 2022","id":1503394416764985346,"id_str":"1503394416764985346","text":"RT - @PowerUSAID: Indescribably moving","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PowerUSAID","name":"Samantha - Power","id":1382337056412733443,"id_str":"1382337056412733443","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 13:11:42 +0000 2022","id":1503358206101405698,"id_str":"1503358206101405698","text":"Indescribably - moving https:\/\/t.co\/U1idazpHGN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U1idazpHGN","expanded_url":"https:\/\/twitter.com\/benphillips76\/status\/1503311358699442178","display_url":"twitter.com\/benphillips76\/\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503311358699442178,"quoted_status_id_str":"1503311358699442178","retweet_count":209,"favorite_count":1595,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1503311358699442178,"quoted_status_id_str":"1503311358699442178","retweet_count":209,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357141531400966144\/8sDLY1dz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357141531400966144\/8sDLY1dz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1190823949996830721,"id_str":"1190823949996830721","name":"brain - been rotted","screen_name":"smxarts","location":"","description":"artist hype - woman. queer seeking guidance. minors dni\nhttps:\/\/t.co\/dFU1JUWonf","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/dFU1JUWonf","expanded_url":"http:\/\/redbubble.com\/sprunchy","display_url":"redbubble.com\/sprunchy","indices":[54,77]}]}},"protected":false,"followers_count":91,"friends_count":270,"listed_count":1,"created_at":"Sun - Nov 03 02:52:16 +0000 2019","favourites_count":17712,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":870,"lang":null,"status":{"created_at":"Sat - Mar 26 03:14:44 +0000 2022","id":1507556630874963968,"id_str":"1507556630874963968","text":"RT - @leighlew3: 24\/7 https:\/\/t.co\/KIoKBQC7N4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"leighlew3","name":"Leigh - Lewallen","id":21501934,"id_str":"21501934","indices":[3,13]}],"urls":[],"media":[{"id":1507508060759203847,"id_str":"1507508060759203847","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","url":"https:\/\/t.co\/KIoKBQC7N4","display_url":"pic.twitter.com\/KIoKBQC7N4","expanded_url":"https:\/\/twitter.com\/leighlew3\/status\/1507508063703552002\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":1125,"h":635,"resize":"fit"}},"source_status_id":1507508063703552002,"source_status_id_str":"1507508063703552002","source_user_id":21501934,"source_user_id_str":"21501934"}]},"extended_entities":{"media":[{"id":1507508060759203847,"id_str":"1507508060759203847","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","url":"https:\/\/t.co\/KIoKBQC7N4","display_url":"pic.twitter.com\/KIoKBQC7N4","expanded_url":"https:\/\/twitter.com\/leighlew3\/status\/1507508063703552002\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":1125,"h":635,"resize":"fit"}},"source_status_id":1507508063703552002,"source_status_id_str":"1507508063703552002","source_user_id":21501934,"source_user_id_str":"21501934"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:01:45 +0000 2022","id":1507508063703552002,"id_str":"1507508063703552002","text":"24\/7 - https:\/\/t.co\/KIoKBQC7N4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507508060759203847,"id_str":"1507508060759203847","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","url":"https:\/\/t.co\/KIoKBQC7N4","display_url":"pic.twitter.com\/KIoKBQC7N4","expanded_url":"https:\/\/twitter.com\/leighlew3\/status\/1507508063703552002\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":1125,"h":635,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507508060759203847,"id_str":"1507508060759203847","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-mBmXIAcf_c3.jpg","url":"https:\/\/t.co\/KIoKBQC7N4","display_url":"pic.twitter.com\/KIoKBQC7N4","expanded_url":"https:\/\/twitter.com\/leighlew3\/status\/1507508063703552002\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":1125,"h":635,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":341,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491276964912635906\/lZBEMaEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491276964912635906\/lZBEMaEZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1190823949996830721\/1617506073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":284094735,"id_str":"284094735","name":"Ibtissam","screen_name":"b_tyssem","location":"","description":"#Opinions - are solely my own | #RTs\/#Likes\/#Follows \u2260 Endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":403,"friends_count":4923,"listed_count":1,"created_at":"Mon - Apr 18 16:22:31 +0000 2011","favourites_count":4101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3030,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1023017633761972227\/DSqaKDFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1023017633761972227\/DSqaKDFO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284094735\/1518665289","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1146786688162828288,"id_str":"1146786688162828288","name":"Joaquin - De Marzi","screen_name":"JoaquinMarzi","location":"Lima, Peru","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":1098,"listed_count":0,"created_at":"Thu - Jul 04 14:23:47 +0000 2019","favourites_count":16414,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1852833079,"id_str":"1852833079","name":"Garren - Randolph","screen_name":"garrenrandolph","location":"Milwaukee, WI","description":"Now: - Team @AlexLasryWI. Previously: @JoeBiden, @WisDems, @Tony4WI, @DavidCCrowley","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":727,"friends_count":1552,"listed_count":4,"created_at":"Wed - Sep 11 00:02:31 +0000 2013","favourites_count":3021,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1450,"lang":null,"status":{"created_at":"Sat - Mar 26 04:26:37 +0000 2022","id":1507574720283258880,"id_str":"1507574720283258880","text":"RT - @HozayReyano: Yet some ACC teams didn''t make it to the tourney because the - conference was weak. Yeah, okay lololol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HozayReyano","name":"Jos\u00e9","id":547006922,"id_str":"547006922","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:53:21 +0000 2022","id":1507566349467500544,"id_str":"1507566349467500544","text":"Yet - some ACC teams didn''t make it to the tourney because the conference was weak. - Yeah, okay lololol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309685094865608707\/vLhaQa3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309685094865608707\/vLhaQa3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1852833079\/1581395471","profile_link_color":"00013A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40402807,"id_str":"40402807","name":"Evan - Griffith","screen_name":"egriff022","location":"Columbia, MO","description":"Family - first. Hannibalian. River rat. Folk life for life. Manchester City, St. Louis - Cardinals, and Dallas Cowboys die hard.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":110,"friends_count":2649,"listed_count":1,"created_at":"Sat - May 16 03:42:39 +0000 2009","favourites_count":1308,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":163,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/989496661025026048\/1GntCQV0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/989496661025026048\/1GntCQV0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40402807\/1528211999","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A1D6E6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220035916321914880,"id_str":"1220035916321914880","name":"mj","screen_name":"mohjam379","location":"Islamic - Republic of Iran","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":146,"listed_count":0,"created_at":"Wed - Jan 22 17:30:31 +0000 2020","favourites_count":272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Sun - Apr 11 07:36:45 +0000 2021","id":1381149204224040960,"id_str":"1381149204224040960","text":"@SmiladNazemi - \u06a9\u062b\u0627\u0641\u062a \u0648 \u062d\u0642\u0627\u0631\u062a \u0627\u0632 - \u0686\u0634\u0645\u0647\u0627\u06cc \u06a9\u062b\u06cc\u0641\u062a \u0645\u06cc\u0631\u06cc\u0632\u0647 - \u0628\u062f\u0628\u062e\u062a \u0645\u0631\u062f\u0647 \u0634\u0648\u0631 - \u0627\u0648\u0646 \u062c\u0647\u0644 \u0645\u0642\u062f\u0633 \u0648 \u062e\u0648\u062f\u062a - \u0631\u0648 \u0628\u0628\u0631\u0646","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SmiladNazemi","name":"\u0633\u06cc\u062f\u0645\u06cc\u0644\u0627\u062f - \u0646\u0627\u0638\u0645\u06cc","id":821758795437264897,"id_str":"821758795437264897","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1380967356080488451,"in_reply_to_status_id_str":"1380967356080488451","in_reply_to_user_id":821758795437264897,"in_reply_to_user_id_str":"821758795437264897","in_reply_to_screen_name":"SmiladNazemi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":285222148,"id_str":"285222148","name":"Oleg - Krichevsky","screen_name":"oleg_008","location":"Montreal, Canada","description":"An - Executive with over 30 years of experience in corporate communications, business-to-business - advertising and an in-depth knowledge of production.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":135,"friends_count":1267,"listed_count":4,"created_at":"Wed - Apr 20 19:12:37 +0000 2011","favourites_count":27075,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1439,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449231449\/IMG_4400_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449231449\/IMG_4400_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285222148\/1406487397","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1203944518652792832,"id_str":"1203944518652792832","name":"sleepiggy","screen_name":"sleepiggy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":122,"listed_count":0,"created_at":"Mon - Dec 09 07:48:44 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Oct 28 23:52:58 +0000 2020","id":1321600878843867136,"id_str":"1321600878843867136","text":"@OCFA_PIO - Thank you all. Hope the two injured fire flighters get well soon, sending - prayers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1321540969263550464,"in_reply_to_status_id_str":"1321540969263550464","in_reply_to_user_id":22189352,"in_reply_to_user_id_str":"22189352","in_reply_to_screen_name":"OCFireAuthority","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268793903202947073,"id_str":"1268793903202947073","name":"Samuel - Vanlalpeka Ralte Kawlni","screen_name":"SamuelVanlalpe8","location":"Aizawl, - India","description":"We were all Humans Until Race disconnected us, Religion - separated us...Politics Divided us& Wealth classified us","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":407,"listed_count":0,"created_at":"Fri - Jun 05 06:37:07 +0000 2020","favourites_count":10147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270504940608188416\/MPu1yNND_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270504940608188416\/MPu1yNND_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54175725,"id_str":"54175725","name":"KatBee","screen_name":"BeeKat65","location":"Somewhere - in the World","description":"\"The common thread of humanity that connects - us all ... is our shared commitment to love our neighbors as we love ourselves.\" - -@BarackObama","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":770,"listed_count":0,"created_at":"Mon - Jul 06 10:57:06 +0000 2009","favourites_count":16771,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7245,"lang":null,"status":{"created_at":"Mon - Feb 07 17:25:11 +0000 2022","id":1490738422427832321,"id_str":"1490738422427832321","text":"Help - the Rosado family get a home https:\/\/t.co\/Jte2RE40oy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Jte2RE40oy","expanded_url":"https:\/\/gofund.me\/64499f98","display_url":"gofund.me\/64499f98","indices":[34,57]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477086773087985664\/VStrxV6B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477086773087985664\/VStrxV6B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54175725\/1640999905","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":946356727661912064,"id_str":"946356727661912064","name":"Jared - Clinton","screen_name":"JaredClinton5","location":"","description":"Electrical - technician ,a developer and a human rights deffender driven by a mission ,a - calling and a purpose.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":2069,"listed_count":0,"created_at":"Thu - Dec 28 12:26:41 +0000 2017","favourites_count":6745,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"status":{"created_at":"Mon - Mar 14 20:24:35 +0000 2022","id":1503467144729792514,"id_str":"1503467144729792514","text":"\u201cThe - real cost of something is what you must give up in order to get it, which - is almost always more than just cash.\u201d - @CharlesWheelan","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CharlesWheelan","name":"Charles - Wheelan","id":19797434,"id_str":"19797434","indices":[120,135]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397440691123494915\/2QY6MZDZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397440691123494915\/2QY6MZDZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252010696990248964,"id_str":"1252010696990248964","name":"Kristi - Palmer","screen_name":"KristiP18380727","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":225,"listed_count":0,"created_at":"Sun - Apr 19 23:06:52 +0000 2020","favourites_count":62829,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Nov 05 11:16:31 +0000 2020","id":1324309614247239680,"id_str":"1324309614247239680","text":"RT - @WVTM13: MISSING \ud83d\udea8\ud83d\udea8\ud83d\udea8\ud83d\udea8\n\n@BhamPolice - say Antonio Kirksey, 22, was last seen Tuesday, Oct. 27th around 8:30 p.m. - at 36th Ave. N. Kirksey is\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WVTM13","name":"#WVTM13","id":14427407,"id_str":"14427407","indices":[3,10]},{"screen_name":"BhamPolice","name":"Bhampolice","id":35871927,"id_str":"35871927","indices":[26,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 05 10:45:52 +0000 2020","id":1324301901257678850,"id_str":"1324301901257678850","text":"MISSING - \ud83d\udea8\ud83d\udea8\ud83d\udea8\ud83d\udea8\n\n@BhamPolice say Antonio - Kirksey, 22, was last seen Tuesday, Oct. 27th around 8:30 p.m. at 36th Ave. - N\u2026 https:\/\/t.co\/5yeucVYCkO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BhamPolice","name":"Bhampolice","id":35871927,"id_str":"35871927","indices":[14,25]}],"urls":[{"url":"https:\/\/t.co\/5yeucVYCkO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1324301901257678850","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1592049565,"id_str":"1592049565","name":"Finnian - Moriarty","screen_name":"FinnianMoriarty","location":"Wolfe Tones & Armagh - Man","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1267,"friends_count":830,"listed_count":3,"created_at":"Sat - Jul 13 23:08:02 +0000 2013","favourites_count":9270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1511,"lang":null,"status":{"created_at":"Sat - Mar 12 21:03:10 +0000 2022","id":1502752079366008843,"id_str":"1502752079366008843","text":"@fantaman87 - @JeanMcCarron2 Hansen and Lawro ere eh....haven''t a clue you two. Has to - be Roy.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fantaman87","name":"Declan - Lavery","id":284987536,"id_str":"284987536","indices":[0,11]},{"screen_name":"JeanMcCarron2","name":"Jonathan - McCarron","id":380884664,"id_str":"380884664","indices":[12,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502613475759034371,"in_reply_to_status_id_str":"1502613475759034371","in_reply_to_user_id":284987536,"in_reply_to_user_id_str":"284987536","in_reply_to_screen_name":"fantaman87","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000647396534\/dca9afe43173158e2b5837509f35df55_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000647396534\/dca9afe43173158e2b5837509f35df55_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1592049565\/1376344344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":302272952,"id_str":"302272952","name":"BW","screen_name":"bethwarren26","location":"New - York","description":"Life is a journey not a destination. We all face challenges, - embrace where you are, find meaning and gratitude in every day! stronger together! - No DM\u2019s please!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4614,"listed_count":2,"created_at":"Fri - May 20 22:18:27 +0000 2011","favourites_count":7586,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14979,"lang":null,"status":{"created_at":"Mon - Mar 14 03:02:57 +0000 2022","id":1503205009240076294,"id_str":"1503205009240076294","text":"RT - @Ordinary1World: What game is Tom Brady playing?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ordinary1World","name":"Amy","id":260947492,"id_str":"260947492","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 00:41:44 +0000 2022","id":1503169473573838849,"id_str":"1503169473573838849","text":"What - game is Tom Brady playing?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":759,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":42,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324857018126118913\/_GKzFvW0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324857018126118913\/_GKzFvW0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302272952\/1604705744","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825568892000940032,"id_str":"825568892000940032","name":"Dawn - Support\u2019s Ukraine \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"dawn_schmarje","location":"California, - USA","description":"\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6Lover - of furry friends, mom to 4 cats, engineer in aerospace, liberal, agnostic\/BLM\/LGBTQ - rights are human rights\/NO DMs\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":1799,"listed_count":0,"created_at":"Sun - Jan 29 04:58:56 +0000 2017","favourites_count":8254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":578,"lang":null,"status":{"created_at":"Fri - Mar 25 17:06:05 +0000 2022","id":1507403461129752576,"id_str":"1507403461129752576","text":"Humble - leadership wins the day. https:\/\/t.co\/17f4onEcAs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/17f4onEcAs","expanded_url":"https:\/\/twitter.com\/mmpadellan\/status\/1507366873196806144","display_url":"twitter.com\/mmpadellan\/sta\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507366873196806144,"quoted_status_id_str":"1507366873196806144","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497794736223969284\/pcgW4fLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497794736223969284\/pcgW4fLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/825568892000940032\/1605743520","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145270109,"id_str":"145270109","name":"tariq - zandari","screen_name":"ZandariTariq","location":"Srinagar Kashmir, India, - ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":45,"listed_count":0,"created_at":"Tue - May 18 14:55:29 +0000 2010","favourites_count":134,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Sun - Sep 19 10:23:38 +0000 2021","id":1439535646599630848,"id_str":"1439535646599630848","text":"#ShameOnBlackCaps","truncated":false,"entities":{"hashtags":[{"text":"ShameOnBlackCaps","indices":[0,17]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283794894348144640\/P2zAL-mY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283794894348144640\/P2zAL-mY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145270109\/1594915467","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297290807154704384,"id_str":"1297290807154704384","name":"Ron - Edmonds","screen_name":"RonEdmonds15","location":"","description":"Executive - Producer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":668,"friends_count":3347,"listed_count":0,"created_at":"Sat - Aug 22 21:53:44 +0000 2020","favourites_count":9281,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2509,"lang":null,"status":{"created_at":"Fri - Feb 19 04:38:45 +0000 2021","id":1362622630021464064,"id_str":"1362622630021464064","text":"https:\/\/t.co\/SoWvro1784","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SoWvro1784","expanded_url":"https:\/\/youtu.be\/m60XKqEEnfg","display_url":"youtu.be\/m60XKqEEnfg","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297294346484686848\/TyV-tIz3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297294346484686848\/TyV-tIz3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29111112,"id_str":"29111112","name":"DM - Pearson","screen_name":"DMPersonalized","location":"Las Vegas","description":"interested - in closing the gap between the print and digital world","url":"http:\/\/t.co\/LgQWEHK1vD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/LgQWEHK1vD","expanded_url":"http:\/\/www.linkedin.com\/in\/dmpearson","display_url":"linkedin.com\/in\/dmpearson","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":598,"friends_count":2457,"listed_count":20,"created_at":"Mon - Apr 06 01:09:52 +0000 2009","favourites_count":795,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":821,"lang":null,"status":{"created_at":"Fri - Mar 18 19:32:08 +0000 2022","id":1504903498701234177,"id_str":"1504903498701234177","text":"RT - @Gemini: 1\/3 \ud83d\ude80Major Giveaway Alert\ud83d\ude80We want to welcome - $APE @ApeCoin and its community to Gemini by giving away 1 BAYC #NFT on March - 22 t\u2026","truncated":false,"entities":{"hashtags":[{"text":"NFT","indices":[121,125]}],"symbols":[{"text":"APE","indices":[57,61]}],"user_mentions":[{"screen_name":"Gemini","name":"Gemini","id":2815661158,"id_str":"2815661158","indices":[3,10]},{"screen_name":"apecoin","name":"ApeCoin","id":1489018530511175681,"id_str":"1489018530511175681","indices":[62,70]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 13:05:46 +0000 2022","id":1504806265825996801,"id_str":"1504806265825996801","text":"1\/3 - \ud83d\ude80Major Giveaway Alert\ud83d\ude80We want to welcome $APE @ApeCoin - and its community to Gemini by giving away 1 BAYC #NFT o\u2026 https:\/\/t.co\/l4KnCEYQD2","truncated":true,"entities":{"hashtags":[{"text":"NFT","indices":[109,113]}],"symbols":[{"text":"APE","indices":[45,49]}],"user_mentions":[{"screen_name":"apecoin","name":"ApeCoin","id":1489018530511175681,"id_str":"1489018530511175681","indices":[50,58]}],"urls":[{"url":"https:\/\/t.co\/l4KnCEYQD2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504806265825996801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25981,"favorite_count":12515,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25981,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3075155787\/9682097fd0042c46006ae096fc55c634_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3075155787\/9682097fd0042c46006ae096fc55c634_normal.jpeg","profile_link_color":"909090","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"2C2C2C","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":64367301,"id_str":"64367301","name":"Michael - O''Keefe","screen_name":"mokeefeman","location":"At Large, USA","description":"I''m - a spy. I know shit. Check out my Cameo profile: https:\/\/t.co\/hRLQ0GR3AA - or check out my Celeb Video profile: https:\/\/t.co\/Et0UFYocUc","url":"https:\/\/t.co\/zX3mQtLCMG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zX3mQtLCMG","expanded_url":"http:\/\/about.me\/michael.okeefe","display_url":"about.me\/michael.okeefe","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hRLQ0GR3AA","expanded_url":"https:\/\/www.cameo.com\/mokeefeman","display_url":"cameo.com\/mokeefeman","indices":[52,75]},{"url":"https:\/\/t.co\/Et0UFYocUc","expanded_url":"https:\/\/celebvm.com\/michaelokeefe","display_url":"celebvm.com\/michaelokeefe","indices":[113,136]}]}},"protected":false,"followers_count":9557,"friends_count":4090,"listed_count":102,"created_at":"Mon - Aug 10 09:27:03 +0000 2009","favourites_count":8376,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9431,"lang":null,"status":{"created_at":"Fri - Mar 25 21:01:53 +0000 2022","id":1507462800486019072,"id_str":"1507462800486019072","text":"Such - a great cover! https:\/\/t.co\/EZ7Xigll8h","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EZ7Xigll8h","expanded_url":"https:\/\/music.apple.com\/us\/album\/for-no-one\/619350298?i=619350960","display_url":"music.apple.com\/us\/album\/for-n\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627308183350964225\/DfarCKJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627308183350964225\/DfarCKJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64367301\/1438396843","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":930512644926263297,"id_str":"930512644926263297","name":"Sinead","screen_name":"Sinead65821957","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":101,"listed_count":0,"created_at":"Tue - Nov 14 19:07:57 +0000 2017","favourites_count":2996,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278084268619530240,"id_str":"1278084268619530240","name":"jjwithadog","screen_name":"jjwithadog","location":"","description":"I''m - just a girl with a dog and a dream","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":197,"listed_count":0,"created_at":"Tue - Jun 30 21:53:44 +0000 2020","favourites_count":6991,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Sat - Feb 26 13:57:53 +0000 2022","id":1497571624266043392,"id_str":"1497571624266043392","text":"RT - @KeithAmmann: Looks like I''m closing in on 5K followers. Giveaway? Giveaway!\n\nLike\/follow\/RT - this tweet for a chance (\ud83c\uddfa\ud83c\uddf8 only) to win th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeithAmmann","name":"Keith - Ammann","id":38028036,"id_str":"38028036","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 22:30:53 +0000 2022","id":1497338339258617856,"id_str":"1497338339258617856","text":"Looks - like I''m closing in on 5K followers. Giveaway? Giveaway!\n\nLike\/follow\/RT - this tweet for a chance (\ud83c\uddfa\ud83c\uddf8 only) to\u2026 https:\/\/t.co\/BngxYlVC2i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BngxYlVC2i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497338339258617856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":322,"favorite_count":611,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":322,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278085529649573888\/D6OecN45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278085529649573888\/D6OecN45_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":395700994,"id_str":"395700994","name":"Christine - Still","screen_name":"flypurplecat","location":"Monona, Wi","description":"Madison - Police Det.(ret), love astronomy, history, travel, dolls & movies from the - 30s,,music from the 50''s, political junkie, 4 grandkids.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1180,"friends_count":3941,"listed_count":2,"created_at":"Sat - Oct 22 03:11:56 +0000 2011","favourites_count":16779,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13718,"lang":null,"status":{"created_at":"Thu - Mar 24 07:02:48 +0000 2022","id":1506889251518042115,"id_str":"1506889251518042115","text":"@alivitali - Lindsey Graham hasn\u2019t been cogent let alone relevant since he made the - colossal mistake of joining the Trump train.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alivitali","name":"Ali - Vitali","id":31058145,"id_str":"31058145","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506668472989892615,"in_reply_to_status_id_str":"1506668472989892615","in_reply_to_user_id":31058145,"in_reply_to_user_id_str":"31058145","in_reply_to_screen_name":"alivitali","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1052648916133564416\/wc74YTlR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052648916133564416\/wc74YTlR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395700994\/1497325185","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1861289869,"id_str":"1861289869","name":"Paul - Czubryt","screen_name":"paulczubryt","location":"Berwyn, PA","description":"Vice - President and Manager at BHHS Fox & Roach, Gladwyne PA; proud Dad of 2 boys, - tennis player","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":260,"listed_count":1,"created_at":"Fri - Sep 13 17:43:26 +0000 2013","favourites_count":6217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1127,"lang":null,"status":{"created_at":"Sat - Mar 19 21:05:12 +0000 2022","id":1505289307027820546,"id_str":"1505289307027820546","text":"https:\/\/t.co\/ZAgVLr6E8y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZAgVLr6E8y","expanded_url":"https:\/\/ace.rismedia.com\/ace2-branded\/rismedia.com\/141847\/YzFDeFRISmg2ZkV4UzE5clJxQnA1QT09\/Twitter","display_url":"ace.rismedia.com\/ace2-branded\/r\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/www.rismedia.com\" rel=\"nofollow\"\u003eace_twitter_share\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000639591992\/cb2c58787027feef71168fa0f2ce80c1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000639591992\/cb2c58787027feef71168fa0f2ce80c1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1861289869\/1402522495","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":941786243540676610,"id_str":"941786243540676610","name":"hulk_843","screen_name":"Shaun56027190","location":"South - Carolina, USA","description":"looking for milfs who love bbc\n#muscleworship - #bbc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":744,"listed_count":0,"created_at":"Fri - Dec 15 21:45:12 +0000 2017","favourites_count":634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Fri - Mar 25 02:16:27 +0000 2022","id":1507179576065236994,"id_str":"1507179576065236994","text":"@adrianneseas - Damn I want that","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adrianneseas","name":"Adrianne - Seas","id":1325682748451823616,"id_str":"1325682748451823616","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506634735031930883,"in_reply_to_status_id_str":"1506634735031930883","in_reply_to_user_id":1325682748451823616,"in_reply_to_user_id_str":"1325682748451823616","in_reply_to_screen_name":"adrianneseas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348607822846713858\/LuE2HtaM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348607822846713858\/LuE2HtaM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":388663077,"id_str":"388663077","name":"luke","screen_name":"lukeinthemiddle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":83,"friends_count":609,"listed_count":0,"created_at":"Tue - Oct 11 03:57:34 +0000 2011","favourites_count":523,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352292665627316226\/ZuRikyTE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352292665627316226\/ZuRikyTE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/388663077\/1604528470","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2684529731,"id_str":"2684529731","name":"Retired - Dood","screen_name":"seaside_saint","location":"by the sea, from the Fair - City","description":"Scone boy: Fuck the Tories. Love Dave Matthews Band and - the Rolling Stones, support Saints and Seasiders.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":254,"friends_count":1498,"listed_count":4,"created_at":"Mon - Jul 07 20:37:42 +0000 2014","favourites_count":26746,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44227,"lang":null,"status":{"created_at":"Sat - Mar 26 10:43:45 +0000 2022","id":1507669627526127619,"id_str":"1507669627526127619","text":"@FootyScran - @crz_official Nope","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FootyScran","name":"Footy - Scran","id":1320495373769723904,"id_str":"1320495373769723904","indices":[0,11]},{"screen_name":"crz_official","name":"\u30bb\u30ec\u30c3\u30bd\u5927\u962a\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb","id":2456217703,"id_str":"2456217703","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507648375688212482,"in_reply_to_status_id_str":"1507648375688212482","in_reply_to_user_id":1320495373769723904,"in_reply_to_user_id_str":"1320495373769723904","in_reply_to_screen_name":"FootyScran","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415704134095941635\/LhZG1jM-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415704134095941635\/LhZG1jM-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2684529731\/1643826623","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245514819,"id_str":"1245514819","name":"AjCostine","screen_name":"ajcostine","location":" Cambridge, - MA USA","description":"- Attorney - former Asst Atty General, - MA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":201,"friends_count":1435,"listed_count":2,"created_at":"Wed - Mar 06 07:36:25 +0000 2013","favourites_count":18334,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5006,"lang":null,"status":{"created_at":"Fri - Mar 11 19:22:03 +0000 2022","id":1502364247711531013,"id_str":"1502364247711531013","text":"RT - @persistentpengn: @brianschatz @AmoneyResists #DemocracyNotAutocracy #StandWithUkraine - \ud83c\uddfa\ud83c\udde6 https:\/\/t.co\/KUG0RRYWdj","truncated":false,"entities":{"hashtags":[{"text":"DemocracyNotAutocracy","indices":[49,71]},{"text":"StandWithUkraine","indices":[72,89]}],"symbols":[],"user_mentions":[{"screen_name":"persistentpengn","name":"still_resisting - \ud83c\uddfa\ud83c\udde6 #TeamPelosi #DemCast #Blue22","id":847899028826144768,"id_str":"847899028826144768","indices":[3,19]},{"screen_name":"brianschatz","name":"Brian - Schatz","id":47747074,"id_str":"47747074","indices":[21,33]},{"screen_name":"AmoneyResists","name":"Andrew - Wortman \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8","id":739844197935644672,"id_str":"739844197935644672","indices":[34,48]}],"urls":[],"media":[{"id":1501752874375675906,"id_str":"1501752874375675906","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","url":"https:\/\/t.co\/KUG0RRYWdj","display_url":"pic.twitter.com\/KUG0RRYWdj","expanded_url":"https:\/\/twitter.com\/persistentpengn\/status\/1501753144786644994\/photo\/1","type":"photo","sizes":{"medium":{"w":504,"h":500,"resize":"fit"},"large":{"w":504,"h":500,"resize":"fit"},"small":{"w":504,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1501753144786644994,"source_status_id_str":"1501753144786644994","source_user_id":847899028826144768,"source_user_id_str":"847899028826144768"}]},"extended_entities":{"media":[{"id":1501752874375675906,"id_str":"1501752874375675906","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","url":"https:\/\/t.co\/KUG0RRYWdj","display_url":"pic.twitter.com\/KUG0RRYWdj","expanded_url":"https:\/\/twitter.com\/persistentpengn\/status\/1501753144786644994\/photo\/1","type":"photo","sizes":{"medium":{"w":504,"h":500,"resize":"fit"},"large":{"w":504,"h":500,"resize":"fit"},"small":{"w":504,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1501753144786644994,"source_status_id_str":"1501753144786644994","source_user_id":847899028826144768,"source_user_id_str":"847899028826144768"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 02:53:45 +0000 2022","id":1501753144786644994,"id_str":"1501753144786644994","text":"@brianschatz - @AmoneyResists #DemocracyNotAutocracy #StandWithUkraine \ud83c\uddfa\ud83c\udde6 - https:\/\/t.co\/KUG0RRYWdj","truncated":false,"entities":{"hashtags":[{"text":"DemocracyNotAutocracy","indices":[28,50]},{"text":"StandWithUkraine","indices":[51,68]}],"symbols":[],"user_mentions":[{"screen_name":"brianschatz","name":"Brian - Schatz","id":47747074,"id_str":"47747074","indices":[0,12]},{"screen_name":"AmoneyResists","name":"Andrew - Wortman \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8","id":739844197935644672,"id_str":"739844197935644672","indices":[13,27]}],"urls":[],"media":[{"id":1501752874375675906,"id_str":"1501752874375675906","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","url":"https:\/\/t.co\/KUG0RRYWdj","display_url":"pic.twitter.com\/KUG0RRYWdj","expanded_url":"https:\/\/twitter.com\/persistentpengn\/status\/1501753144786644994\/photo\/1","type":"photo","sizes":{"medium":{"w":504,"h":500,"resize":"fit"},"large":{"w":504,"h":500,"resize":"fit"},"small":{"w":504,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1501752874375675906,"id_str":"1501752874375675906","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNdMSFmVgAI2aJK.png","url":"https:\/\/t.co\/KUG0RRYWdj","display_url":"pic.twitter.com\/KUG0RRYWdj","expanded_url":"https:\/\/twitter.com\/persistentpengn\/status\/1501753144786644994\/photo\/1","type":"photo","sizes":{"medium":{"w":504,"h":500,"resize":"fit"},"large":{"w":504,"h":500,"resize":"fit"},"small":{"w":504,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501751273665748995,"in_reply_to_status_id_str":"1501751273665748995","in_reply_to_user_id":47747074,"in_reply_to_user_id_str":"47747074","in_reply_to_screen_name":"brianschatz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":501,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":211,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296309296867823616\/2c-0vhwi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296309296867823616\/2c-0vhwi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245514819\/1469742473","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275264941935792131,"id_str":"1275264941935792131","name":"Katie - Slater","screen_name":"KatieSl09534043","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":117,"listed_count":0,"created_at":"Tue - Jun 23 03:10:39 +0000 2020","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":6767722,"id_str":"6767722","name":"Armando","screen_name":"ArmandoDomingos","location":"Bay - Area","description":"I am a former entrepreneur now working on actionable - analysis of utility data.","url":"https:\/\/t.co\/rDBwF3CDGw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rDBwF3CDGw","expanded_url":"http:\/\/ArmandoDomingos.com","display_url":"ArmandoDomingos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":444,"listed_count":1,"created_at":"Tue - Jun 12 14:33:19 +0000 2007","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Mon - Mar 29 15:35:04 +0000 2021","id":1376558535761272833,"id_str":"1376558535761272833","text":"@NateSilver538 - I''m at 73% using a strategy based on foreign vs domestic vehicles. Foreign - brand name vehicles for B\u2026 https:\/\/t.co\/qOpgz5hobN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NateSilver538","name":"Nate - Silver","id":16017475,"id_str":"16017475","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/qOpgz5hobN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1376558535761272833","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1376367719956811777,"in_reply_to_status_id_str":"1376367719956811777","in_reply_to_user_id":16017475,"in_reply_to_user_id_str":"16017475","in_reply_to_screen_name":"NateSilver538","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608748076287832065\/YjxqdePh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608748076287832065\/YjxqdePh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6767722\/1424276816","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2980413815,"id_str":"2980413815","name":"Welding - Services & Steelworks","screen_name":"JacobsWelding","location":"Johannesburg, - South Africa","description":"Welding services & steel works.Please contact - 0849025017 for quotations:\nGates, Burglar proofs, Palisades, Razor Wire\nCar - ports , awnings, roofing etc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1540,"friends_count":1981,"listed_count":2,"created_at":"Thu - Jan 15 21:31:33 +0000 2015","favourites_count":16276,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":980,"lang":null,"status":{"created_at":"Sat - Mar 26 06:17:43 +0000 2022","id":1507602679832453121,"id_str":"1507602679832453121","text":"RT - @sahouraxo: BREAKING: While all eyes are on Ukraine, American and British - bombs are being dropped right now on Yemen''s capital city of S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sahouraxo","name":"Sarah - Abdallah","id":3293406121,"id_str":"3293406121","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:12:59 +0000 2022","id":1507525990200786944,"id_str":"1507525990200786944","text":"BREAKING: - While all eyes are on Ukraine, American and British bombs are being dropped - right now on Yemen''s capital\u2026 https:\/\/t.co\/NmcZyHYtTW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NmcZyHYtTW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507525990200786944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8377,"favorite_count":20506,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8377,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454294811276685312\/Up2IGypy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454294811276685312\/Up2IGypy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2980413815\/1552984590","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201565504353095680,"id_str":"1201565504353095680","name":"DannyMakiNM","screen_name":"DannyMakiNM1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":432,"listed_count":1,"created_at":"Mon - Dec 02 18:15:27 +0000 2019","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Wed - Mar 09 03:35:59 +0000 2022","id":1501401384448495618,"id_str":"1501401384448495618","text":"RT - @ringer: Seahawks fans after seeing Russell Wilson get traded \ud83d\ude22 - https:\/\/t.co\/Q5HQEHJ2Oz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ringer","name":"The - Ringer","id":4760694445,"id_str":"4760694445","indices":[3,10]}],"urls":[],"media":[{"id":1501281203411775492,"id_str":"1501281203411775492","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","url":"https:\/\/t.co\/Q5HQEHJ2Oz","display_url":"pic.twitter.com\/Q5HQEHJ2Oz","expanded_url":"https:\/\/twitter.com\/ringer\/status\/1501281752119083013\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1501281752119083013,"source_status_id_str":"1501281752119083013","source_user_id":4760694445,"source_user_id_str":"4760694445"}]},"extended_entities":{"media":[{"id":1501281203411775492,"id_str":"1501281203411775492","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","url":"https:\/\/t.co\/Q5HQEHJ2Oz","display_url":"pic.twitter.com\/Q5HQEHJ2Oz","expanded_url":"https:\/\/twitter.com\/ringer\/status\/1501281752119083013\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1501281752119083013,"source_status_id_str":"1501281752119083013","source_user_id":4760694445,"source_user_id_str":"4760694445","video_info":{"aspect_ratio":[1,1],"duration_millis":30030,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/720x720\/1Ux1dnaDtHHTIxAa.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/pl\/dtjDh9heVFzCsX4-.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/320x320\/4dSg1VkhYsFwvZnn.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/540x540\/bpaxluOdjJcqAYvw.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 19:40:36 +0000 2022","id":1501281752119083013,"id_str":"1501281752119083013","text":"Seahawks - fans after seeing Russell Wilson get traded \ud83d\ude22 https:\/\/t.co\/Q5HQEHJ2Oz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501281203411775492,"id_str":"1501281203411775492","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","url":"https:\/\/t.co\/Q5HQEHJ2Oz","display_url":"pic.twitter.com\/Q5HQEHJ2Oz","expanded_url":"https:\/\/twitter.com\/ringer\/status\/1501281752119083013\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501281203411775492,"id_str":"1501281203411775492","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1501281203411775492\/pu\/img\/P_msDw-k14ZWJDnd.jpg","url":"https:\/\/t.co\/Q5HQEHJ2Oz","display_url":"pic.twitter.com\/Q5HQEHJ2Oz","expanded_url":"https:\/\/twitter.com\/ringer\/status\/1501281752119083013\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30030,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/720x720\/1Ux1dnaDtHHTIxAa.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/pl\/dtjDh9heVFzCsX4-.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/320x320\/4dSg1VkhYsFwvZnn.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1501281203411775492\/pu\/vid\/540x540\/bpaxluOdjJcqAYvw.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":323,"favorite_count":1181,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":323,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474948035222323211\/s31_fcC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474948035222323211\/s31_fcC1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":849363016256770057,"id_str":"849363016256770057","name":"\ud83d\udc30","screen_name":"Azrulbadaiii","location":"Johor - Bahru, Johor","description":"Slim Daddy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":339,"listed_count":4,"created_at":"Tue - Apr 04 20:48:18 +0000 2017","favourites_count":1801,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4424,"lang":null,"status":{"created_at":"Sat - Mar 26 03:04:50 +0000 2022","id":1507554138720141316,"id_str":"1507554138720141316","text":"Alongg - \ud83e\udd7a\ud83e\udd72\ud83e\udd7a\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1365357347615379456\/rKxw8Xo-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1365357347615379456\/rKxw8Xo-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/849363016256770057\/1644586550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256353618074103809,"id_str":"1256353618074103809","name":"\u20bf - OffZero \u20bf","screen_name":"DGordonapo","location":"","description":"#bitcoin - \ud83c\udf0b\ud83c\udfde","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":135,"listed_count":2,"created_at":"Fri - May 01 22:43:53 +0000 2020","favourites_count":700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":370,"lang":null,"status":{"created_at":"Fri - Mar 18 20:47:29 +0000 2022","id":1504922459945938944,"id_str":"1504922459945938944","text":"@nfldraftscout - @mike_mcglynn That''s not semantics, it''s facts, you clown","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nfldraftscout","name":"Matt - Miller","id":42956737,"id_str":"42956737","indices":[0,14]},{"screen_name":"mike_mcglynn","name":"Mike - McGlynn","id":43226318,"id_str":"43226318","indices":[15,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504920132698705933,"in_reply_to_status_id_str":"1504920132698705933","in_reply_to_user_id":42956737,"in_reply_to_user_id_str":"42956737","in_reply_to_screen_name":"nfldraftscout","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405287689562165251\/AyiNlsBX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405287689562165251\/AyiNlsBX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256353618074103809\/1613805025","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25209818,"id_str":"25209818","name":"Erica - Wharton","screen_name":"ewheatdr","location":"","description":"A lover of - books","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":805,"listed_count":1,"created_at":"Thu - Mar 19 01:45:05 +0000 2009","favourites_count":5693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":426,"lang":null,"status":{"created_at":"Thu - Dec 23 14:26:49 +0000 2021","id":1474023695739863043,"id_str":"1474023695739863043","text":"RT - @CNN: The Monterey Bay Aquarium Research Institute captured rare footage of - a giant phantom jelly. Watch this majestic deep-sea encounte\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 07:31:07 +0000 2021","id":1473919079824117762,"id_str":"1473919079824117762","text":"The - Monterey Bay Aquarium Research Institute captured rare footage of a giant - phantom jelly. Watch this majestic de\u2026 https:\/\/t.co\/mVYbYkPOWK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mVYbYkPOWK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1473919079824117762","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":147,"favorite_count":722,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":147,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918629818173759488\/Nc1RT4fz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918629818173759488\/Nc1RT4fz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25209818\/1409630993","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":311530092,"id_str":"311530092","name":"Diana","screen_name":"artemiskat","location":"Somewhere - along the Cape Fear ","description":"Politics, pug and potato salad enthusiast - #Resists Trumpian bullshit daily.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":563,"friends_count":2553,"listed_count":15,"created_at":"Sun - Jun 05 16:21:42 +0000 2011","favourites_count":57490,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13492,"lang":null,"status":{"created_at":"Fri - Mar 25 13:47:03 +0000 2022","id":1507353368833974276,"id_str":"1507353368833974276","text":"RT - @DearAuntCrabby: Isn''t it amazing how much evil is done in the name of Jesus - Christ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DearAuntCrabby","name":"\ud83d\udd95\ud83c\udffbAunt - Crabby Calls Bullshit \ud83d\udd95\ud83c\udffb","id":1216789842,"id_str":"1216789842","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:39:29 +0000 2022","id":1507336366069370935,"id_str":"1507336366069370935","text":"Isn''t - it amazing how much evil is done in the name of Jesus Christ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2081,"favorite_count":15726,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2081,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A13F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357047123976589315\/CL1hB8KN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357047123976589315\/CL1hB8KN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311530092\/1629896342","profile_link_color":"0F57D4","profile_sidebar_border_color":"E6457A","profile_sidebar_fill_color":"E685A6","profile_text_color":"1E0BB3","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":739152133,"id_str":"739152133","name":"GameStop - Billionaire \ud83d\udfe2","screen_name":"VernellWJ","location":"Memphis, TN","description":"\u201cWe - are a people who believe that every single child is entitled to life and liberty - and the pursuit of happiness\u201d - Barack Obama","url":"https:\/\/t.co\/N67hW46kAc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N67hW46kAc","expanded_url":"https:\/\/xn--95hxxx905iziai8x.y.at","display_url":"\u270c\ud83c\udf08\ud83e\udd86\u265f\ud83c\udf54.y.at","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":264,"friends_count":1056,"listed_count":8,"created_at":"Sun - Aug 05 20:03:02 +0000 2012","favourites_count":59847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21318,"lang":null,"status":{"created_at":"Fri - Mar 25 23:32:07 +0000 2022","id":1507500608655441925,"id_str":"1507500608655441925","text":"@OzzyJoestar - The woman in the house across the street from the girl next door","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OzzyJoestar","name":"Ozzy - Uzumaki","id":1223426666820775937,"id_str":"1223426666820775937","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507499980973658116,"in_reply_to_status_id_str":"1507499980973658116","in_reply_to_user_id":1223426666820775937,"in_reply_to_user_id_str":"1223426666820775937","in_reply_to_screen_name":"OzzyJoestar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380142730303660040\/a_NYugMx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380142730303660040\/a_NYugMx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/739152133\/1562689951","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267265633374404611,"id_str":"1267265633374404611","name":"Jacqueline - D Polk","screen_name":"JacquelineDPol2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":504,"listed_count":5,"created_at":"Mon - Jun 01 01:24:25 +0000 2020","favourites_count":655,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Wed - Feb 09 14:04:12 +0000 2022","id":1491412619038986240,"id_str":"1491412619038986240","text":"@GaryChambersJr - I agree with you Gary. Jim crow is still in the south. Will it ever change.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GaryChambersJr","name":"Gary - Chambers","id":48441742,"id_str":"48441742","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1491397288790740994,"in_reply_to_status_id_str":"1491397288790740994","in_reply_to_user_id":48441742,"in_reply_to_user_id_str":"48441742","in_reply_to_screen_name":"GaryChambersJr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300542520091389952\/3uoglHzn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300542520091389952\/3uoglHzn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267265633374404611\/1598908497","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":969300194092138496,"id_str":"969300194092138496","name":"Kabul - Jan","screen_name":"Hasand51618040","location":"Greater Noida, India","description":"\u0627\u064a - \u062f\u063a\u0647 \u0646\u069a\u0647 \u062f\u0642\u064a\u0627\u0645\u062a - \u062e\u0648 \u0646\u062f\u0647 . \u0648\u064a\u0646\u0647 \u0648\u0693\u064a\u0627 - \u062f\u0647 \u0627\u0648 \u0627\u0648\u0628\u0647 \u062e\u0631\u0685\u064a\u0696\u064a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":612,"listed_count":0,"created_at":"Thu - Mar 01 19:55:49 +0000 2018","favourites_count":1297,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":343,"lang":null,"status":{"created_at":"Sat - Mar 05 22:00:57 +0000 2022","id":1500229909276413953,"id_str":"1500229909276413953","text":"RT - @AFIntlBrk: \u0633\u0631\u0627\u062c\u200c\u0627\u0644\u062f\u06cc\u0646 \u062d\u0642\u0627\u0646\u06cc\u060c - \u0633\u0631\u067e\u0631\u0633\u062a \u0648\u0632\u0627\u0631\u062a \u062f\u0627\u062e\u0644\u0647 - \u0637\u0627\u0644\u0628\u0627\u0646 \u062f\u0631 \u0627\u0648\u0644\u06cc\u0646 - \u062d\u0636\u0648\u0631\u0634 \u062f\u0631 \u0628\u0631\u0627\u0628\u0631 - \u062f\u0648\u0631\u0628\u06cc\u0646 \u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 - \u0622\u06cc\u062a \u0642\u0631\u0622\u0646 \u0631\u0627 \u063a\u0644\u0637 - \u062e\u0648\u0627\u0646\u062f.\n\n\u062d\u0642\u0627\u0646\u06cc \u0631\u0648\u0632 - \u0634\u0646\u0628\u0647\u060c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFIntlBrk","name":"\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646 - \u0627\u06cc\u0646\u062a\u0631\u0646\u0634\u0646\u0627\u0644 - \u062e\u0628\u0631 - \u0641\u0648\u0631\u06cc","id":1409611018276413441,"id_str":"1409611018276413441","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 21:17:31 +0000 2022","id":1500218975183118338,"id_str":"1500218975183118338","text":"\u0633\u0631\u0627\u062c\u200c\u0627\u0644\u062f\u06cc\u0646 - \u062d\u0642\u0627\u0646\u06cc\u060c \u0633\u0631\u067e\u0631\u0633\u062a - \u0648\u0632\u0627\u0631\u062a \u062f\u0627\u062e\u0644\u0647 \u0637\u0627\u0644\u0628\u0627\u0646 - \u062f\u0631 \u0627\u0648\u0644\u06cc\u0646 \u062d\u0636\u0648\u0631\u0634 - \u062f\u0631 \u0628\u0631\u0627\u0628\u0631 \u062f\u0648\u0631\u0628\u06cc\u0646 - \u0631\u0633\u0627\u0646\u0647\u200c\u0647\u0627 \u0622\u06cc\u062a \u0642\u0631\u0622\u0646 - \u0631\u0627 \u063a\u0644\u0637 \u062e\u0648\u0627\u0646\u062f.\n\n\u062d\u0642\u0627\u0646\u06cc - \u0631\u2026 https:\/\/t.co\/HTD1ViQvZv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HTD1ViQvZv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500218975183118338","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.ayrshare.com\" rel=\"nofollow\"\u003eAyrshare\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":1038,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fa"},"is_quote_status":false,"retweet_count":119,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498571218290626562\/_jBivipQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498571218290626562\/_jBivipQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969300194092138496\/1646122197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":563915046,"id_str":"563915046","name":"Paul - M. Leonard","screen_name":"pml5md","location":"","description":"Former Hill - staffer & GR. Dedicated music & baseball fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":239,"listed_count":0,"created_at":"Thu - Apr 26 15:59:50 +0000 2012","favourites_count":11765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":894,"lang":null,"status":{"created_at":"Sat - Mar 26 01:07:29 +0000 2022","id":1507524608441954310,"id_str":"1507524608441954310","text":"@nut_history - Jim Brown- GOAT of RBs.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nut_history","name":"BaseballHistoryNut","id":1021070377357795328,"id_str":"1021070377357795328","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507458515958484997,"in_reply_to_status_id_str":"1507458515958484997","in_reply_to_user_id":1021070377357795328,"in_reply_to_user_id_str":"1021070377357795328","in_reply_to_screen_name":"nut_history","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408829737452118023\/nCDXVh3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408829737452118023\/nCDXVh3w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":980345385876148225,"id_str":"980345385876148225","name":"Mordi - Patrick Ibechile","screen_name":"Mordipatrick98","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":867,"listed_count":0,"created_at":"Sun - Apr 01 07:25:28 +0000 2018","favourites_count":384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":828,"lang":null,"status":{"created_at":"Fri - Mar 25 21:41:41 +0000 2022","id":1507472814395346944,"id_str":"1507472814395346944","text":"@TheNationNews - She was a pacesetter. \nMay God grant her soul eternal rest.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheNationNews","name":"The - Nation Nigeria","id":85318467,"id_str":"85318467","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507470559621353472,"in_reply_to_status_id_str":"1507470559621353472","in_reply_to_user_id":85318467,"in_reply_to_user_id_str":"85318467","in_reply_to_screen_name":"TheNationNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442868759753015298\/aHu3M8nT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442868759753015298\/aHu3M8nT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":286145384,"id_str":"286145384","name":"salahudinagha","screen_name":"salahudinagha","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":271,"listed_count":0,"created_at":"Fri - Apr 22 12:44:28 +0000 2011","favourites_count":777,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26052544,"id_str":"26052544","name":"Arpit - Uppal \ud83c\uddfa\ud83c\udde6","screen_name":"ArpitUppal","location":"San - Jose, CA","description":"Connoisseur of all things marketing, media, meals, - music, movies, movements, malarkey, and generally bad-ass, but not above posting - stupid shit occasionally","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":602,"friends_count":3040,"listed_count":16,"created_at":"Mon - Mar 23 18:00:31 +0000 2009","favourites_count":75324,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5734,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:49 +0000 2022","id":1507552123923226630,"id_str":"1507552123923226630","text":"@mollywood - Congratulations!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mollywood","name":"Molly - Wood","id":6476742,"id_str":"6476742","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507524279700578304,"in_reply_to_status_id_str":"1507524279700578304","in_reply_to_user_id":6476742,"in_reply_to_user_id_str":"6476742","in_reply_to_screen_name":"mollywood","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161482060722106368\/dmBO16bk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161482060722106368\/dmBO16bk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26052544\/1565753877","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52207661,"id_str":"52207661","name":"Tod - Ralston","screen_name":"todralston","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":1109,"listed_count":2,"created_at":"Mon - Jun 29 22:11:58 +0000 2009","favourites_count":219,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442503381579337731\/UAtm07g3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442503381579337731\/UAtm07g3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3030570896,"id_str":"3030570896","name":"Diane - VanDyke","screen_name":"VandykeDiane","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":50,"listed_count":0,"created_at":"Thu - Feb 19 16:05:20 +0000 2015","favourites_count":202,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137,"lang":null,"status":{"created_at":"Thu - Aug 19 03:48:25 +0000 2021","id":1428202165261189122,"id_str":"1428202165261189122","text":"@YandR_CBS - Why can\u2019t they give you another outfit?? Not that the green dress is - bad, but geez!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YandR_CBS","name":"Young - and Restless","id":68816598,"id_str":"68816598","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1426235154708660235,"in_reply_to_status_id_str":"1426235154708660235","in_reply_to_user_id":68816598,"in_reply_to_user_id_str":"68816598","in_reply_to_screen_name":"YandR_CBS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18855334,"id_str":"18855334","name":"Pfizer - Pharaoh","screen_name":"thelowedown","location":"Chillinois","description":"Profile - pic is Miles Morales, mask on, from @matt_artworks and header from Wild0ne - on Pixabay.","url":"https:\/\/t.co\/VlwrEUh878","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VlwrEUh878","expanded_url":"https:\/\/twitter.com","display_url":"twitter.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1002,"friends_count":4998,"listed_count":38,"created_at":"Sun - Jan 11 02:57:51 +0000 2009","favourites_count":739479,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210333,"lang":null,"status":{"created_at":"Fri - Mar 25 18:12:37 +0000 2022","id":1507420201721249797,"id_str":"1507420201721249797","text":"Apple - Is Working on a Hardware Subscription Service for iPhones https:\/\/t.co\/hzD02BeFMS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hzD02BeFMS","expanded_url":"https:\/\/www.bloomberg.com\/news\/articles\/2022-03-24\/apple-is-working-on-a-hardware-subscription-service-for-iphones","display_url":"bloomberg.com\/news\/articles\/\u2026","indices":[65,88]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340162181619433472\/gJ3LtTLN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340162181619433472\/gJ3LtTLN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18855334\/1608354850","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247228127941664773,"id_str":"1247228127941664773","name":"Patrick - Ariaga","screen_name":"patrick_ariaga","location":"","description":"Jk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":328,"listed_count":0,"created_at":"Mon - Apr 06 18:22:28 +0000 2020","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sat - Nov 20 18:33:20 +0000 2021","id":1462126934645776386,"id_str":"1462126934645776386","text":"@WilliamsMkenya - 0768149699","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilliamsMkenya","name":"DP - William Ruto, PhD (Official FansPage)","id":4889202337,"id_str":"4889202337","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1461767597028958209,"in_reply_to_status_id_str":"1461767597028958209","in_reply_to_user_id":4889202337,"in_reply_to_user_id_str":"4889202337","in_reply_to_screen_name":"WilliamsMkenya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247229970948161537\/zvVMPw50_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247229970948161537\/zvVMPw50_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267491482014892037,"id_str":"1267491482014892037","name":"Bonzoni","screen_name":"CazierBonnie","location":"","description":"Intrepid, - inquisitive creative hiding out in the back woods of Montana.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":193,"listed_count":0,"created_at":"Mon - Jun 01 16:21:54 +0000 2020","favourites_count":4928,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267646636324343808\/k1FtH4pk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267646636324343808\/k1FtH4pk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2218001998,"id_str":"2218001998","name":"Elspeth - Tookey","screen_name":"Elspethtookey","location":"","description":"Semi retired - social worker and teacher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":537,"listed_count":1,"created_at":"Tue - Dec 10 18:18:14 +0000 2013","favourites_count":3423,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1097,"lang":null,"status":{"created_at":"Sun - Jun 27 21:19:22 +0000 2021","id":1409260089589047302,"id_str":"1409260089589047302","text":"RT - @PalliativeWork: We are delighted to announce Joan Marston @JoanGlobalCPC - as our key note speaker at our #pcwconference2021 @PalliativeW\u2026","truncated":false,"entities":{"hashtags":[{"text":"pcwconference2021","indices":[108,126]}],"symbols":[],"user_mentions":[{"screen_name":"PalliativeWork","name":"PalliativeCareWorks","id":4849160555,"id_str":"4849160555","indices":[3,18]},{"screen_name":"JoanGlobalCPC","name":"Joan - Marston","id":326615063,"id_str":"326615063","indices":[62,76]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jun 27 06:05:23 +0000 2021","id":1409030076860096512,"id_str":"1409030076860096512","text":"We - are delighted to announce Joan Marston @JoanGlobalCPC as our key note speaker - at our #pcwconference2021\u2026 https:\/\/t.co\/SezXbIRGRa","truncated":true,"entities":{"hashtags":[{"text":"pcwconference2021","indices":[88,106]}],"symbols":[],"user_mentions":[{"screen_name":"JoanGlobalCPC","name":"Joan - Marston","id":326615063,"id_str":"326615063","indices":[42,56]}],"urls":[{"url":"https:\/\/t.co\/SezXbIRGRa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1409030076860096512","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":188486826,"id_str":"188486826","name":"rahbi","screen_name":"ibrahim_rahby","location":"Dar - es Salaam, Tanzania","description":"..real Tanzanian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2338,"friends_count":4415,"listed_count":5,"created_at":"Wed - Sep 08 21:12:47 +0000 2010","favourites_count":1497,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7930,"lang":null,"status":{"created_at":"Sat - Mar 26 08:57:19 +0000 2022","id":1507642845032759306,"id_str":"1507642845032759306","text":"RT - @MaximEristavi: mariupol residents slaughtered by russians while cooking food - over an open fire in the yard of their own apartment build\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaximEristavi","name":"maksym.eristavi - \ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":19500405,"id_str":"19500405","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:44:27 +0000 2022","id":1507458410958184455,"id_str":"1507458410958184455","text":"mariupol - residents slaughtered by russians while cooking food over an open fire in - the yard of their own apartment\u2026 https:\/\/t.co\/suuNWT1po0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/suuNWT1po0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507458410958184455","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21898,"favorite_count":51825,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21898,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397617278586433542\/XLcbqzYF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397617278586433542\/XLcbqzYF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188486826\/1622053003","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":881128478,"id_str":"881128478","name":"Claudia","screen_name":"0o0_claudia_0o0","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":826,"listed_count":1,"created_at":"Sun - Oct 14 22:45:37 +0000 2012","favourites_count":7502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2570,"lang":null,"status":{"created_at":"Fri - Feb 19 11:19:19 +0000 2021","id":1362723436062269442,"id_str":"1362723436062269442","text":"RT - @annalecta: The silence of the Democrat Governor of Texas is also telling, - largely because he does not exist. https:\/\/t.co\/VTN9ZmOebN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"annalecta","name":"Anna - Massoglia","id":792038436,"id_str":"792038436","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/VTN9ZmOebN","expanded_url":"https:\/\/twitter.com\/DonaldJTrumpJr\/status\/1362539576963837952","display_url":"twitter.com\/DonaldJTrumpJr\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 19 10:35:35 +0000 2021","id":1362712428648271877,"id_str":"1362712428648271877","text":"The - silence of the Democrat Governor of Texas is also telling, largely because - he does not exist. https:\/\/t.co\/VTN9ZmOebN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VTN9ZmOebN","expanded_url":"https:\/\/twitter.com\/DonaldJTrumpJr\/status\/1362539576963837952","display_url":"twitter.com\/DonaldJTrumpJr\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1362539576963837952,"quoted_status_id_str":"1362539576963837952","retweet_count":530,"favorite_count":3192,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1362539576963837952,"quoted_status_id_str":"1362539576963837952","retweet_count":530,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486121518628610049\/LPVgIIfU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486121518628610049\/LPVgIIfU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881128478\/1404735373","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1166469894667407361,"id_str":"1166469894667407361","name":"El - Calabrese","screen_name":"emcabcnewsprod","location":"New York, NY","description":"Former - ABC NBC and NYPOST he\/him\/they\/them.\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","url":"https:\/\/t.co\/e0CI4vaM4y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e0CI4vaM4y","expanded_url":"https:\/\/muckrack.com\/erin-calabrese","display_url":"muckrack.com\/erin-calabrese","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":851,"listed_count":12,"created_at":"Tue - Aug 27 21:58:06 +0000 2019","favourites_count":11615,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":3293,"lang":null,"status":{"created_at":"Sat - Mar 26 02:00:30 +0000 2022","id":1507537949503770639,"id_str":"1507537949503770639","text":"@GloriaSteinem - I\u2019 m transmale but my first taste of courage came as a teenager picking - up her 1st copy of Ms. Magaz\u2026 https:\/\/t.co\/wfQqJH6bCP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GloriaSteinem","name":"Gloria - Steinem","id":48269483,"id_str":"48269483","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/wfQqJH6bCP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507537949503770639","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":48269483,"in_reply_to_user_id_str":"48269483","in_reply_to_screen_name":"GloriaSteinem","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427730326302900240\/JbWrV9Qk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427730326302900240\/JbWrV9Qk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166469894667407361\/1616820618","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1188562711539572736,"id_str":"1188562711539572736","name":"Terri - Lodge","screen_name":"TerriLodge5","location":"","description":"I work on - national security, arms control, and nonproliferation -\/with Congress","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":403,"listed_count":1,"created_at":"Sun - Oct 27 21:07:15 +0000 2019","favourites_count":328,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1003,"lang":null,"status":{"created_at":"Fri - Mar 25 23:38:02 +0000 2022","id":1507502097255784448,"id_str":"1507502097255784448","text":"Go - girl! Go! https:\/\/t.co\/AaWq3u66ca","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AaWq3u66ca","expanded_url":"https:\/\/twitter.com\/niknowicki\/status\/1507355863308193797","display_url":"twitter.com\/niknowicki\/sta\u2026","indices":[13,36]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507355863308193797,"quoted_status_id_str":"1507355863308193797","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188563225266262017\/4S5b0bbz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188563225266262017\/4S5b0bbz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":242868991,"id_str":"242868991","name":"charlie - kay","screen_name":"ckayme","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":137,"listed_count":0,"created_at":"Tue - Jan 25 19:50:15 +0000 2011","favourites_count":271,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Dec 14 02:25:44 +0000 2021","id":1470580735937552386,"id_str":"1470580735937552386","text":"@JustinKing - \ud83c\udfc8\ud83c\udfc8\ud83e\udd43\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JustinKing","name":"Justin - King","id":169514470,"id_str":"169514470","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470579111928213504,"in_reply_to_status_id_str":"1470579111928213504","in_reply_to_user_id":169514470,"in_reply_to_user_id_str":"169514470","in_reply_to_screen_name":"JustinKing","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294265948241670146,"id_str":"1294265948241670146","name":"Mon - SML","screen_name":"mon_sml","location":"Ho Chi Minh, Vietnam","description":"Long - Live The King","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":188,"friends_count":632,"listed_count":1,"created_at":"Fri - Aug 14 13:33:52 +0000 2020","favourites_count":15522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13105,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310928400756817920\/anGQZldn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310928400756817920\/anGQZldn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1010823574993756160,"id_str":"1010823574993756160","name":"Inclusive-capitalist","screen_name":"petr_MW","location":"Lilongwe, - Mzimba, Malawi","description":"\u203c\ufe0f Agribusiness Specialist \u2757finance - analyst \u2757 Christian \u2757 Malawiana \ud83c\uddf2\ud83c\uddfc \u203c\ufe0f","url":"https:\/\/t.co\/EBCKiSg9Ch","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EBCKiSg9Ch","expanded_url":"http:\/\/petrmgungwehome.wordpress.com","display_url":"petrmgungwehome.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1715,"friends_count":4998,"listed_count":0,"created_at":"Sun - Jun 24 09:54:55 +0000 2018","favourites_count":6656,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1302,"lang":null,"status":{"created_at":"Thu - Mar 24 16:36:38 +0000 2022","id":1507033658997235712,"id_str":"1507033658997235712","text":"RT - @tylerthecreator: COME ON, LETS GO https:\/\/t.co\/uF5OPuVeMg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tylerthecreator","name":"T","id":166747718,"id_str":"166747718","indices":[3,19]}],"urls":[],"media":[{"id":1506979862912897024,"id_str":"1506979862912897024","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","url":"https:\/\/t.co\/uF5OPuVeMg","display_url":"pic.twitter.com\/uF5OPuVeMg","expanded_url":"https:\/\/twitter.com\/tylerthecreator\/status\/1506980021973536775\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506980021973536775,"source_status_id_str":"1506980021973536775","source_user_id":166747718,"source_user_id_str":"166747718"}]},"extended_entities":{"media":[{"id":1506979862912897024,"id_str":"1506979862912897024","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","url":"https:\/\/t.co\/uF5OPuVeMg","display_url":"pic.twitter.com\/uF5OPuVeMg","expanded_url":"https:\/\/twitter.com\/tylerthecreator\/status\/1506980021973536775\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506980021973536775,"source_status_id_str":"1506980021973536775","source_user_id":166747718,"source_user_id_str":"166747718","video_info":{"aspect_ratio":[16,9],"duration_millis":104062,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/480x270\/sFqmL_0pb90U6hQw.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/640x360\/wNafaTC8hZfl2Fnk.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/pl\/r8DjZ92i1XnbSAHi.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/1280x720\/ffcVdK0H2b-svQwq.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:03:30 +0000 2022","id":1506980021973536775,"id_str":"1506980021973536775","text":"COME - ON, LETS GO https:\/\/t.co\/uF5OPuVeMg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506979862912897024,"id_str":"1506979862912897024","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","url":"https:\/\/t.co\/uF5OPuVeMg","display_url":"pic.twitter.com\/uF5OPuVeMg","expanded_url":"https:\/\/twitter.com\/tylerthecreator\/status\/1506980021973536775\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506979862912897024,"id_str":"1506979862912897024","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506979862912897024\/pu\/img\/mo5KQzgw5oyhL-2a.jpg","url":"https:\/\/t.co\/uF5OPuVeMg","display_url":"pic.twitter.com\/uF5OPuVeMg","expanded_url":"https:\/\/twitter.com\/tylerthecreator\/status\/1506980021973536775\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":104062,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/480x270\/sFqmL_0pb90U6hQw.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/640x360\/wNafaTC8hZfl2Fnk.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/pl\/r8DjZ92i1XnbSAHi.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506979862912897024\/pu\/vid\/1280x720\/ffcVdK0H2b-svQwq.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38163,"favorite_count":169682,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":38163,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326350272059363328\/Co-zfSOn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326350272059363328\/Co-zfSOn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1010823574993756160\/1532279961","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266207779100020736,"id_str":"1266207779100020736","name":"Bhupendrasoni","screen_name":"Bhupend67924196","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":448,"listed_count":0,"created_at":"Fri - May 29 03:21:18 +0000 2020","favourites_count":159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"status":{"created_at":"Wed - Jul 14 01:45:21 +0000 2021","id":1415125230196969476,"id_str":"1415125230196969476","text":"https:\/\/t.co\/4xH30U1jd4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1415125207707045892,"id_str":"1415125207707045892","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E6OI4PYUUAQe24N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E6OI4PYUUAQe24N.jpg","url":"https:\/\/t.co\/4xH30U1jd4","display_url":"pic.twitter.com\/4xH30U1jd4","expanded_url":"https:\/\/twitter.com\/Bhupend67924196\/status\/1415125230196969476\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":972,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1333,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1415125207707045892,"id_str":"1415125207707045892","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E6OI4PYUUAQe24N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E6OI4PYUUAQe24N.jpg","url":"https:\/\/t.co\/4xH30U1jd4","display_url":"pic.twitter.com\/4xH30U1jd4","expanded_url":"https:\/\/twitter.com\/Bhupend67924196\/status\/1415125230196969476\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":972,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1333,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266208155954003968\/zUSqCikB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266208155954003968\/zUSqCikB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":153805948,"id_str":"153805948","name":"Mandi - DeGroff Munger","screen_name":"mandide","location":"D.C.","description":"Mom - trying to figure it out. Partner @MelwoodGlobal. Former Hill Comms Director, - DHS & DOI spox. Proud @Wheaton alum. Cat lady. Opinions=my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":612,"friends_count":2207,"listed_count":0,"created_at":"Wed - Jun 09 14:06:45 +0000 2010","favourites_count":8719,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3701,"lang":null,"status":{"created_at":"Fri - Mar 25 20:32:00 +0000 2022","id":1507455278912086021,"id_str":"1507455278912086021","text":"@AHahnPeters - I have found a few great options from Lulus. They have been great quality - and very reasonably priced.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AHahnPeters","name":"Amanda - HP \u26a1\ufe0f","id":64038069,"id_str":"64038069","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507454788748730370,"in_reply_to_status_id_str":"1507454788748730370","in_reply_to_user_id":64038069,"in_reply_to_user_id_str":"64038069","in_reply_to_screen_name":"AHahnPeters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219692997295603714\/RYL_HirB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219692997295603714\/RYL_HirB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":119115216,"id_str":"119115216","name":"John - O Sullivan","screen_name":"clockend5","location":"Ireland","description":"Arsenal - fan in Tipperary, Ireland. Write about football, mostly 1900-1939. I write - for, the award winning, @TheFootballPink magazine.","url":"https:\/\/t.co\/8Vtqjgvfef","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8Vtqjgvfef","expanded_url":"http:\/\/songsfortheforgotten.wordpress.com","display_url":"songsfortheforgotten.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1706,"friends_count":3004,"listed_count":46,"created_at":"Tue - Mar 02 18:26:25 +0000 2010","favourites_count":9329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18467,"lang":null,"status":{"created_at":"Fri - Mar 25 20:41:40 +0000 2022","id":1507457710438158339,"id_str":"1507457710438158339","text":"RT - @ESPNFC: Nicolas P\u00e9p\u00e9 gives Ivory Coast the lead against France!\n\nMake - sure you stay for the celebrations \ud83d\udd7a https:\/\/t.co\/t1WCGLeJpk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ESPNFC","name":"ESPN - FC","id":18091004,"id_str":"18091004","indices":[3,10]}],"urls":[],"media":[{"id":1507456312350806048,"id_str":"1507456312350806048","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","url":"https:\/\/t.co\/t1WCGLeJpk","display_url":"pic.twitter.com\/t1WCGLeJpk","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1507457075005247492\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1507457075005247492,"source_status_id_str":"1507457075005247492","source_user_id":18091004,"source_user_id_str":"18091004"}]},"extended_entities":{"media":[{"id":1507456312350806048,"id_str":"1507456312350806048","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","url":"https:\/\/t.co\/t1WCGLeJpk","display_url":"pic.twitter.com\/t1WCGLeJpk","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1507457075005247492\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1507457075005247492,"source_status_id_str":"1507457075005247492","source_user_id":18091004,"source_user_id_str":"18091004","video_info":{"aspect_ratio":[16,9],"duration_millis":25738,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/pl\/IDDAzzfDAcRAmeC2.m3u8?tag=14&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/1280x720\/H2htIYUry3Ho-bIs.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/640x360\/-g373PLXVbBDyagl.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/480x270\/oWB7Tl4LCJPGw340.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:39:08 +0000 2022","id":1507457075005247492,"id_str":"1507457075005247492","text":"Nicolas - P\u00e9p\u00e9 gives Ivory Coast the lead against France!\n\nMake sure you - stay for the celebrations \ud83d\udd7a https:\/\/t.co\/t1WCGLeJpk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507456312350806048,"id_str":"1507456312350806048","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","url":"https:\/\/t.co\/t1WCGLeJpk","display_url":"pic.twitter.com\/t1WCGLeJpk","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1507457075005247492\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507456312350806048,"id_str":"1507456312350806048","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507456312350806048\/img\/OgkG5IoR7f3Vo9wO.jpg","url":"https:\/\/t.co\/t1WCGLeJpk","display_url":"pic.twitter.com\/t1WCGLeJpk","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1507457075005247492\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":25738,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/pl\/IDDAzzfDAcRAmeC2.m3u8?tag=14&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/1280x720\/H2htIYUry3Ho-bIs.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/640x360\/-g373PLXVbBDyagl.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507456312350806048\/vid\/480x270\/oWB7Tl4LCJPGw340.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/www.twitter.com\/\" rel=\"nofollow\"\u003eTwitter Media Studio - - LiveCut\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1276,"favorite_count":10883,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1276,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466616326090678273\/mYInNTv9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466616326090678273\/mYInNTv9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119115216\/1357135589","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86823873,"id_str":"86823873","name":"Peter - Conklin","screen_name":"peterbconklin","location":"Sao Paulo, Brazil","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":342,"listed_count":0,"created_at":"Sun - Nov 01 23:06:38 +0000 2009","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Tue - Sep 14 22:56:20 +0000 2021","id":1437913133776085000,"id_str":"1437913133776085000","text":"RT - @stevenagarza: Holy Shit. \n\nThose two words sum up not only what we all - said when we won, but this entire 3+ year journey. \n\nThank you t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stevenagarza","name":"Steven - Garza","id":828443330363146240,"id_str":"828443330363146240","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Sep 14 20:23:50 +0000 2021","id":1437874754988519430,"id_str":"1437874754988519430","text":"Holy - Shit. \n\nThose two words sum up not only what we all said when we won, but - this entire 3+ year journey. \n\nThank\u2026 https:\/\/t.co\/ceJjTjHVaC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ceJjTjHVaC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1437874754988519430","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"c3f37afa9efcf94b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c3f37afa9efcf94b.json","place_type":"city","name":"Austin","full_name":"Austin, - TX","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.928935,30.127892],[-97.5805133,30.127892],[-97.5805133,30.5187994],[-97.928935,30.5187994]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":195,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462084665406373896\/FbAsVkUK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462084665406373896\/FbAsVkUK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":779357571454865408,"id_str":"779357571454865408","name":"Kayy","screen_name":"kayzimm","location":"","description":"Figuring - out my life\u2019s purpose one adventure at a time!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":933,"listed_count":5,"created_at":"Fri - Sep 23 16:31:39 +0000 2016","favourites_count":301,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Tue - Oct 13 15:03:05 +0000 2020","id":1316031713282228224,"id_str":"1316031713282228224","text":"What - is the top book an entrepreneur should read this year? \n\nDrop some recs - below! \n\n#Entrepreneurship #learneveryday","truncated":false,"entities":{"hashtags":[{"text":"Entrepreneurship","indices":[86,103]},{"text":"learneveryday","indices":[104,118]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506733449784221700\/S44zPm1K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506733449784221700\/S44zPm1K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/779357571454865408\/1648068237","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32954984,"id_str":"32954984","name":"lehleh","screen_name":"kthrnkchang","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":822,"listed_count":4,"created_at":"Sat - Apr 18 17:46:26 +0000 2009","favourites_count":4144,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2364,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/749633045494366208\/6dGdt4AK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/749633045494366208\/6dGdt4AK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32954984\/1467561641","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1103881469661863942,"id_str":"1103881469661863942","name":"J.lund","screen_name":"Jlund32206952","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":57,"listed_count":0,"created_at":"Fri - Mar 08 04:53:46 +0000 2019","favourites_count":923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Mon - Nov 23 21:36:56 +0000 2020","id":1330988730853642240,"id_str":"1330988730853642240","text":"@cari_lacey - @RandPaul You''re dumb as fuck. Do you you really think he put his wife in - harm''s way on purpose? \nEven\u2026 https:\/\/t.co\/pTkjWqVdET","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cari_lacey","name":"Cari - Lacey","id":746356671727939584,"id_str":"746356671727939584","indices":[0,11]},{"screen_name":"RandPaul","name":"Rand - Paul","id":216881337,"id_str":"216881337","indices":[12,21]}],"urls":[{"url":"https:\/\/t.co\/pTkjWqVdET","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1330988730853642240","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1330904829976338434,"in_reply_to_status_id_str":"1330904829976338434","in_reply_to_user_id":746356671727939584,"in_reply_to_user_id_str":"746356671727939584","in_reply_to_screen_name":"cari_lacey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3946579219,"id_str":"3946579219","name":"jason - gillespie","screen_name":"djgiles1_jason","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":855,"listed_count":1,"created_at":"Mon - Oct 19 11:39:24 +0000 2015","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1499084299,"id_str":"1499084299","name":"Sorie - Ibrahim Turay","screen_name":"sorieituray","location":"Africa","description":"Works - for the Sierra Leone Teaching Service Commission","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":770,"friends_count":4978,"listed_count":3,"created_at":"Mon - Jun 10 18:54:23 +0000 2013","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Fri - Mar 27 06:09:18 +0000 2020","id":1243419807061381120,"id_str":"1243419807061381120","text":"USA - overtakes China & Italy as the country with most coronavirus cases https:\/\/t.co\/WT3dP8deZI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WT3dP8deZI","expanded_url":"https:\/\/m.allfootballapp.com\/news?id=2291243&type=share&language=en","display_url":"m.allfootballapp.com\/news?id=229124\u2026","indices":[75,98]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567134574799753217\/sNcPZO1Z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567134574799753217\/sNcPZO1Z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1499084299\/1454089305","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2673611152,"id_str":"2673611152","name":"TDub","screen_name":"theresaw121","location":"Northampton, - PA","description":"\ud83e\udd84\ud83c\udf08\ud83c\udf3c\ud83d\udd25\ud83e\udd37\ud83c\udffc\u200d\u2640\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":460,"listed_count":0,"created_at":"Fri - Jul 04 23:02:42 +0000 2014","favourites_count":167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":86,"lang":null,"status":{"created_at":"Wed - Feb 09 13:53:55 +0000 2022","id":1491410034596941830,"id_str":"1491410034596941830","text":"@PennDOTSec - Can you please do some thing about the pothole situation on Airport Road in - Bethlehem. I feel like I\u2019m\u2026 https:\/\/t.co\/NmbGpcRuZQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PennDOTSec","name":"PA - Secretary of Transportation","id":3097792702,"id_str":"3097792702","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/NmbGpcRuZQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491410034596941830","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3097792702,"in_reply_to_user_id_str":"3097792702","in_reply_to_screen_name":"PennDOTSec","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267281736364363776\/hAp39PWs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267281736364363776\/hAp39PWs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2673611152\/1590978485","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218188108652564481,"id_str":"1218188108652564481","name":"mary - walton","screen_name":"marywal44553695","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":68,"listed_count":0,"created_at":"Fri - Jan 17 15:07:52 +0000 2020","favourites_count":814,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":273,"lang":null,"status":{"created_at":"Sun - Jan 03 16:56:23 +0000 2021","id":1345776031333048321,"id_str":"1345776031333048321","text":"@TheRightMelissa - @realDonaldTrump @JennaEllisEsq You\u2019re all a bunch of damn fools. Grow - the fuck up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRightMelissa","name":"Melissa - Tate","id":762389795037294592,"id_str":"762389795037294592","indices":[0,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[17,33]},{"screen_name":"JennaEllisEsq","name":"Jenna - Ellis","id":778763106289758208,"id_str":"778763106289758208","indices":[34,48]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1345520067069534210,"in_reply_to_status_id_str":"1345520067069534210","in_reply_to_user_id":762389795037294592,"in_reply_to_user_id_str":"762389795037294592","in_reply_to_screen_name":"TheRightMelissa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1343900392778817542\/Jp5inlp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1343900392778817542\/Jp5inlp7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191656089646858240,"id_str":"1191656089646858240","name":"Neera - Ogare","screen_name":"NeeraOgare","location":"","description":"SATGUDEV KI - JAI","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2165,"friends_count":1390,"listed_count":0,"created_at":"Tue - Nov 05 09:58:58 +0000 2019","favourites_count":2325,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8626,"lang":null,"status":{"created_at":"Fri - Mar 25 13:26:02 +0000 2022","id":1507348082589118464,"id_str":"1507348082589118464","text":"#\u0938\u091a\u094d\u091a\u0947_\u0938\u092e\u093e\u091c\u0938\u0941\u0927\u093e\u0930\u0915_\u0938\u0902\u0924\u0930\u093e\u092e\u092a\u093e\u0932\u091c\u0940\nWith - the spiritual knowledge of Sant Rampal Ji Maharaj, today lakhs of people are - doi\u2026 https:\/\/t.co\/BJg7wZDCFj","truncated":true,"entities":{"hashtags":[{"text":"\u0938\u091a\u094d\u091a\u0947_\u0938\u092e\u093e\u091c\u0938\u0941\u0927\u093e\u0930\u0915_\u0938\u0902\u0924\u0930\u093e\u092e\u092a\u093e\u0932\u091c\u0940","indices":[0,29]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BJg7wZDCFj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507348082589118464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327986487565008896\/Bw5Kuh5j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327986487565008896\/Bw5Kuh5j_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90004144,"id_str":"90004144","name":"Scott - Davidson","screen_name":"daddavidson","location":"Minneapolis, MN","description":"Father - of three extra-ordinary kids. Husband. Architect. Reader. Biker. Woodworker. - Novice Data Analysis Nerd. R. Fan of the beautiful game. #MNUFC fan. #COYL","url":"https:\/\/t.co\/V1nlgvkO8V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V1nlgvkO8V","expanded_url":"http:\/\/www.the-davidsons.net","display_url":"the-davidsons.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":1712,"listed_count":1,"created_at":"Sat - Nov 14 19:32:59 +0000 2009","favourites_count":4642,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1596,"lang":null,"status":{"created_at":"Fri - Mar 25 03:58:11 +0000 2022","id":1507205176578514945,"id_str":"1507205176578514945","text":"@AmericanHoolis - Berhalter''s game management was pretty spot on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmericanHoolis","name":"American - Hooligans\ud83c\uddfa\ud83c\uddf8\u26bd\ufe0f","id":1079235200268275712,"id_str":"1079235200268275712","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507204783924465664,"in_reply_to_status_id_str":"1507204783924465664","in_reply_to_user_id":1079235200268275712,"in_reply_to_user_id_str":"1079235200268275712","in_reply_to_screen_name":"AmericanHoolis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/773353385126944772\/d1aAonY0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/773353385126944772\/d1aAonY0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90004144\/1383578304","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":128297276,"id_str":"128297276","name":"Fatima - Foy","screen_name":"foybyers","location":"","description":"@fatimafoy_foy - \ud83d\udc4d Technology, climate, human rights, Medicare for all, travel \ud83d\udc4e - You know, and are as mad as I am.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1286,"listed_count":0,"created_at":"Wed - Mar 31 18:19:25 +0000 2010","favourites_count":5077,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":979,"lang":null,"status":{"created_at":"Fri - Mar 25 23:31:43 +0000 2022","id":1507500506821939206,"id_str":"1507500506821939206","text":"@RpsAgainstTrump - An American President.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RpsAgainstTrump","name":"Republicans - against Trumpism","id":1221462414744596483,"id_str":"1221462414744596483","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507405107247427590,"in_reply_to_status_id_str":"1507405107247427590","in_reply_to_user_id":1221462414744596483,"in_reply_to_user_id_str":"1221462414744596483","in_reply_to_screen_name":"RpsAgainstTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487545079157899269\/ItldMjSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487545079157899269\/ItldMjSH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54910779,"id_str":"54910779","name":"Richard - Schneierson","screen_name":"LBmarc2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":78,"listed_count":1,"created_at":"Wed - Jul 08 14:28:10 +0000 2009","favourites_count":210,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Wed - Jan 13 22:56:08 +0000 2021","id":1349490442803490816,"id_str":"1349490442803490816","text":"RT - @DanCrenshawTX: We can\u2019t ignore the President\u2019s behavior leading - up to the violence in the Capitol last week. He bears enormous responsi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanCrenshawTX","name":"Dan - Crenshaw","id":930552552302792705,"id_str":"930552552302792705","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 13 20:52:02 +0000 2021","id":1349459211491618816,"id_str":"1349459211491618816","text":"We - can\u2019t ignore the President\u2019s behavior leading up to the violence - in the Capitol last week. He bears enormous res\u2026 https:\/\/t.co\/oYlORQOn8R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oYlORQOn8R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1349459211491618816","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1255,"favorite_count":11084,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1255,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1177992563581751296,"id_str":"1177992563581751296","name":"regina","screen_name":"aquedutos","location":"","description":"varrer - de p\u00e9s descal\u00e7os","url":"https:\/\/t.co\/PvLatlthPM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PvLatlthPM","expanded_url":"https:\/\/letterboxd.com\/aquedutos\/","display_url":"letterboxd.com\/aquedutos\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":52,"listed_count":0,"created_at":"Sat - Sep 28 17:04:56 +0000 2019","favourites_count":883,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1258,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386115018928836615\/5fPwuNkk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386115018928836615\/5fPwuNkk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177992563581751296\/1636653225","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1127075974690959361,"id_str":"1127075974690959361","name":"Pushpa - Rani","screen_name":"PushpaR60229475","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":6,"listed_count":0,"created_at":"Sat - May 11 05:00:27 +0000 2019","favourites_count":1917,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":348095977,"id_str":"348095977","name":"Phat - X. Chiem","screen_name":"phatxchiem","location":"Los Angeles, CA","description":"StoryCraft - co-founder: https:\/\/t.co\/jI9i5mBP6P Brand & content strategist, Shopify - expert, MBA-trained journalist. Worked @ Yahoo | Ozy | Chicago Tribune","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/jI9i5mBP6P","expanded_url":"http:\/\/storycraft.me\/","display_url":"storycraft.me","indices":[23,46]}]}},"protected":false,"followers_count":740,"friends_count":3485,"listed_count":22,"created_at":"Wed - Aug 03 21:37:40 +0000 2011","favourites_count":3921,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1054,"lang":null,"status":{"created_at":"Mon - Aug 23 16:51:07 +0000 2021","id":1429848690223583234,"id_str":"1429848690223583234","text":"@inthefade - Been there. There will be pain and there will be happiness. More of the later - as time goes on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"inthefade","name":"bring - on the dancing horses","id":7214972,"id_str":"7214972","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1429805040177451013,"in_reply_to_status_id_str":"1429805040177451013","in_reply_to_user_id":7214972,"in_reply_to_user_id_str":"7214972","in_reply_to_screen_name":"inthefade","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621364024937025536\/QqI8rLA6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621364024937025536\/QqI8rLA6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348095977\/1439872685","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":301812301,"id_str":"301812301","name":"Kelly - Fierro","screen_name":"kchicki","location":"","description":"Southern gal - who loves football and Coca-Cola \ud83d\udc1d","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":368,"listed_count":0,"created_at":"Fri - May 20 03:16:40 +0000 2011","favourites_count":5028,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":103,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159593621483589643\/odzACv7f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159593621483589643\/odzACv7f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308022485233926145,"id_str":"1308022485233926145","name":"ismail","screen_name":"ismail97729028","location":"","description":"Life - is love","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":329,"listed_count":0,"created_at":"Mon - Sep 21 12:37:41 +0000 2020","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308022701483794432\/2huzw48c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308022701483794432\/2huzw48c_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1042087288006684672,"id_str":"1042087288006684672","name":"\u96a3\u308a\u306e\u5439\u96ea","screen_name":"JojoHibiki","location":"The - Hague, The Netherlands","description":"I have successfully stolen the scientific - research results of the Wuhan Institute of Virology, it''s time to announce.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":1398,"listed_count":1,"created_at":"Tue - Sep 18 16:25:45 +0000 2018","favourites_count":3374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117,"lang":null,"status":{"created_at":"Fri - Feb 18 00:14:23 +0000 2022","id":1494465283037224961,"id_str":"1494465283037224961","text":"@bobsween166 - However, it is still controversial whether \u03b1IFN has stronger leukocyte - guiding ability than \u03b2IFN. Bec\u2026 https:\/\/t.co\/Fg459qp4Qf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bobsween166","name":"bobaxe1","id":1031163020263792640,"id_str":"1031163020263792640","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/Fg459qp4Qf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494465283037224961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1494458976133652480,"in_reply_to_status_id_str":"1494458976133652480","in_reply_to_user_id":1031163020263792640,"in_reply_to_user_id_str":"1031163020263792640","in_reply_to_screen_name":"bobsween166","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196466523923070976\/pYOlTSu9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196466523923070976\/pYOlTSu9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042087288006684672\/1622843395","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2504157677,"id_str":"2504157677","name":"saruh","screen_name":"shutupsaarah","location":"","description":"know - better, do better","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":212,"listed_count":1,"created_at":"Wed - Apr 23 14:27:45 +0000 2014","favourites_count":20548,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3076,"lang":null,"status":{"created_at":"Mon - Feb 28 16:45:44 +0000 2022","id":1498338643085246475,"id_str":"1498338643085246475","text":"RT - @chasestrangio: Just a reminder that multiple states are moving bills to criminalize - health care for trans youth this week. Hearings sch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chasestrangio","name":"Chase - Strangio","id":1476133082,"id_str":"1476133082","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 12:23:28 +0000 2022","id":1498272639823101962,"id_str":"1498272639823101962","text":"Just - a reminder that multiple states are moving bills to criminalize health care - for trans youth this week. Hearing\u2026 https:\/\/t.co\/6cYb5O82XK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6cYb5O82XK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498272639823101962","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1565,"favorite_count":3586,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1565,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1423698339263098880\/1ubJksB0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1423698339263098880\/1ubJksB0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2504157677\/1609968726","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":998050815242850304,"id_str":"998050815242850304","name":"kgulraiz307@gmail.com","screen_name":"Gulraiz33615861","location":"mianwali","description":"Manchester - United fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":5005,"listed_count":1,"created_at":"Sun - May 20 04:00:32 +0000 2018","favourites_count":17264,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11204,"lang":null,"status":{"created_at":"Sat - Mar 26 10:34:50 +0000 2022","id":1507667387381784577,"id_str":"1507667387381784577","text":"RT - @Juaanito_: \u0644\u062d\u0638\u0629 \u0625\u062f\u0631\u0627\u0643.. \n\u0627\u0641\u0636\u0644 - \u0644\u0627\u0639\u0628 \u0627\u0646\u062c\u0644\u064a\u0632\u064a \u0641\u064a - \u0627\u0644\u062a\u0627\u0631\u064a\u062e\n\n\u0644\u0627 \u0644\u0627\u0645\u0628\u0627\u0631\u062f - \n\u0644\u0627 \u0633\u0643\u0648\u0644\u0632 \n\u0644\u0627 \u062c\u064a\u0631\u0627\u0631\u062f\n\n\u0648\u0627\u0644\u0644\u0647 - \u0645\u0627 \u0634\u0627\u0647\u062f\u062a \u0644\u0627\u0639\u0628 \u0627\u0643\u062b\u0631 - \u062a\u0643\u0627\u0645\u0644\u0627\u064b \u0648\u0630\u0643\u0627\u0621 - \u0648\u0645\u0648\u0647\u0628\u0629 \u0641\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Juaanito_","name":"-","id":1713655872,"id_str":"1713655872","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:04:29 +0000 2022","id":1507342658473238538,"id_str":"1507342658473238538","text":"\u0644\u062d\u0638\u0629 - \u0625\u062f\u0631\u0627\u0643.. \n\u0627\u0641\u0636\u0644 \u0644\u0627\u0639\u0628 - \u0627\u0646\u062c\u0644\u064a\u0632\u064a \u0641\u064a \u0627\u0644\u062a\u0627\u0631\u064a\u062e\n\n\u0644\u0627 - \u0644\u0627\u0645\u0628\u0627\u0631\u062f \n\u0644\u0627 \u0633\u0643\u0648\u0644\u0632 - \n\u0644\u0627 \u062c\u064a\u0631\u0627\u0631\u062f\n\n\u0648\u0627\u0644\u0644\u0647 - \u0645\u0627 \u0634\u0627\u0647\u062f\u062a \u0644\u0627\u0639\u0628 \u0627\u0643\u062b\u0631 - \u062a\u0643\u0627\u0645\u0644\u0627\u064b \u0648\u0630\u0643\u0627\u0621\u2026 - https:\/\/t.co\/aVyHlBkPeA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aVyHlBkPeA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507342658473238538","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":400,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":50,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507001991817355274\/VlcwjtT5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507001991817355274\/VlcwjtT5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/998050815242850304\/1648132248","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1052662761153474560,"id_str":"1052662761153474560","name":"Martin - White","screen_name":"MartinW13546992","location":"Vancouver BC CANADA","description":"HELP - MK ULTRA DISABILITY PIZZAGATE CANADA. Facebook= SEX TRADE+ 9-1-1 ABUSE +Vancouver - Adapted Music Society. Maclean`s Mag. PHEW to 2010 OLYMPICS-Break Relief.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":184,"friends_count":5000,"listed_count":0,"created_at":"Wed - Oct 17 20:48:54 +0000 2018","favourites_count":14554,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2441,"lang":null,"status":{"created_at":"Sat - Mar 26 03:31:24 +0000 2022","id":1507560823476039682,"id_str":"1507560823476039682","text":"@JesikaVaylen - The invisible microphone should be a standard custom now. At least every now - & then. https:\/\/t.co\/DvpiSO4E3X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JesikaVaylen","name":"Jesika - Vaylen","id":2382319400,"id_str":"2382319400","indices":[0,13]}],"urls":[],"media":[{"id":1507560816953884673,"id_str":"1507560816953884673","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvuk1vVgAEOULA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvuk1vVgAEOULA.jpg","url":"https:\/\/t.co\/DvpiSO4E3X","display_url":"pic.twitter.com\/DvpiSO4E3X","expanded_url":"https:\/\/twitter.com\/MartinW13546992\/status\/1507560823476039682\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507560816953884673,"id_str":"1507560816953884673","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvuk1vVgAEOULA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvuk1vVgAEOULA.jpg","url":"https:\/\/t.co\/DvpiSO4E3X","display_url":"pic.twitter.com\/DvpiSO4E3X","expanded_url":"https:\/\/twitter.com\/MartinW13546992\/status\/1507560823476039682\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[249,140],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOvuk1vVgAEOULA.mp4"}]}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507509960137076740,"in_reply_to_status_id_str":"1507509960137076740","in_reply_to_user_id":2382319400,"in_reply_to_user_id_str":"2382319400","in_reply_to_screen_name":"JesikaVaylen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500158897843179522\/Izh6C5EN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500158897843179522\/Izh6C5EN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052662761153474560\/1647167497","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1254252952962969600,"id_str":"1254252952962969600","name":"Jacob - rotich","screen_name":"Jacobro90749601","location":"","description":"courage - son\ud83d\udc72\ud83d\udc72\ud83d\udc72\ud83d\udc72\ud83d\udc6e\ud83d\udc6e\ud83d\udc6e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":154,"listed_count":0,"created_at":"Sun - Apr 26 03:36:44 +0000 2020","favourites_count":2262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sun - Aug 29 03:46:42 +0000 2021","id":1431825613308977157,"id_str":"1431825613308977157","text":"@KTNNewsKE - @georgemaringa_ \ud83e\udd14\ud83e\udd14\ud83e\udd14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KTNNewsKE","name":"KTN - News","id":1057902407655526400,"id_str":"1057902407655526400","indices":[0,10]},{"screen_name":"georgemaringa_","name":"George - Maringa","id":2449669469,"id_str":"2449669469","indices":[11,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1431565647591485442,"in_reply_to_status_id_str":"1431565647591485442","in_reply_to_user_id":1057902407655526400,"in_reply_to_user_id_str":"1057902407655526400","in_reply_to_screen_name":"KTNNewsKE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430726403964682242\/AY0FZeef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430726403964682242\/AY0FZeef_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30260033,"id_str":"30260033","name":"Steve - Lett","screen_name":"SNJguy","location":"New Jersey, USA","description":"Retired; - engineering process consultant; software engineering manager","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":104,"listed_count":0,"created_at":"Fri - Apr 10 17:06:33 +0000 2009","favourites_count":883,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":89,"lang":null,"status":{"created_at":"Fri - Jan 07 04:39:35 +0000 2022","id":1479311729767112706,"id_str":"1479311729767112706","text":"RT - @POTUS: Here is the truth: The former president of the United States has created - and spread a web of lies about the 2020 election.\n\nHe\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 06 14:36:22 +0000 2022","id":1479099527978270720,"id_str":"1479099527978270720","text":"Here - is the truth: The former president of the United States has created and spread - a web of lies about the 2020 el\u2026 https:\/\/t.co\/nRhvHUoKM1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nRhvHUoKM1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479099527978270720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36656,"favorite_count":199881,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":36656,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832664970684985344\/n_tOqwYz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832664970684985344\/n_tOqwYz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30260033\/1518909490","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1659013933,"id_str":"1659013933","name":"Paige - Rone","screen_name":"Paige_Rone","location":"Birmingham, AL","description":"Chemist - via education\ud83d\udd2c\ud83d\udc69\u200d\ud83d\udd2c; Writer via passion\ud83d\udcdc\ud83d\udd8b; - Hippie via heart\u2763\ufe0f\u270c\ufe0f","url":"https:\/\/t.co\/QePm41vtdP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QePm41vtdP","expanded_url":"https:\/\/paigerone.wixsite.com\/paigeronethefreespir","display_url":"paigerone.wixsite.com\/paigeronethefr\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":81,"listed_count":0,"created_at":"Sat - Aug 10 01:34:26 +0000 2013","favourites_count":688,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":195,"lang":null,"status":{"created_at":"Thu - Dec 16 02:32:07 +0000 2021","id":1471307120834404355,"id_str":"1471307120834404355","text":"Ecstatic - about the band #GirlNamedTom WINNING \ud83c\udfc6 with #KellyClarkson as Coach! - I predicted their big win from the fi\u2026 https:\/\/t.co\/topJUIIJwI","truncated":true,"entities":{"hashtags":[{"text":"GirlNamedTom","indices":[24,37]},{"text":"KellyClarkson","indices":[53,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/topJUIIJwI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471307120834404355","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"00d8b2fb4ed4382d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00d8b2fb4ed4382d.json","place_type":"city","name":"Dargin","full_name":"Dargin, - AL","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-86.796476,33.125084],[-86.7063219,33.125084],[-86.7063219,33.18719],[-86.796476,33.18719]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1470986647323889665,"quoted_status_id_str":"1470986647323889665","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/862360789956644869\/ukq0DR2S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/862360789956644869\/ukq0DR2S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1659013933\/1494437810","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309198827073789953,"id_str":"1309198827073789953","name":"DanielGh","screen_name":"daniel1_gh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":546,"listed_count":0,"created_at":"Thu - Sep 24 18:32:02 +0000 2020","favourites_count":107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Oct 17 18:54:30 +0000 2020","id":1317539499417735168,"id_str":"1317539499417735168","text":"RT - @3SportsGh: FT Real Madrid 0-1 Cadiz\nThe defending Champions have lost at - home for the first time in 399 days.\nCadiz are now League lead\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"3SportsGh","name":"#3Sports","id":3578399717,"id_str":"3578399717","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 17 18:38:25 +0000 2020","id":1317535451947978753,"id_str":"1317535451947978753","text":"FT - Real Madrid 0-1 Cadiz\nThe defending Champions have lost at home for the first - time in 399 days.\nCadiz are now Le\u2026 https:\/\/t.co\/tqKcCmhd3M","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tqKcCmhd3M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1317535451947978753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324336941672923139\/CTehbtsr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324336941672923139\/CTehbtsr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44647088,"id_str":"44647088","name":"scoutcloudlee","screen_name":"scoutcloudlee","location":"Lake - Eufaula, OK","description":"","url":"https:\/\/t.co\/TtuDnXBQj7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TtuDnXBQj7","expanded_url":"http:\/\/www.scoutcloudlee.com","display_url":"scoutcloudlee.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1926,"friends_count":1349,"listed_count":86,"created_at":"Thu - Jun 04 15:58:35 +0000 2009","favourites_count":10136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9512,"lang":null,"status":{"created_at":"Fri - Mar 25 12:39:21 +0000 2022","id":1507336334637256722,"id_str":"1507336334637256722","text":"RT - @JoyAnnReid: .@LindseyGrahamSC is an embarrassment to the United States Senate. - His performative vitriol and hostility to Judge Jackson\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyAnnReid","name":"Joy-Ann - (Pro-Democracy) Reid \ud83d\ude37","id":49698134,"id_str":"49698134","indices":[3,14]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:10:50 +0000 2022","id":1506664777787056142,"id_str":"1506664777787056142","text":".@LindseyGrahamSC - is an embarrassment to the United States Senate. His performative vitriol - and hostility to Judge\u2026 https:\/\/t.co\/ZdP6McQhZp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[1,17]}],"urls":[{"url":"https:\/\/t.co\/ZdP6McQhZp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506664777787056142","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6771,"favorite_count":37351,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6771,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643626407252369408\/iSyMaOxD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643626407252369408\/iSyMaOxD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302314726014283778,"id_str":"1302314726014283778","name":"Bitrus - lobadungze","screen_name":"BLobadungze","location":"","description":"My name","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":100,"listed_count":0,"created_at":"Sat - Sep 05 18:37:14 +0000 2020","favourites_count":50,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Fri - Sep 17 06:46:55 +0000 2021","id":1438756333692538881,"id_str":"1438756333692538881","text":"I - am not praying for this day to come and go but to have a great impact for - the kingdom of God. My prayer is 02\/10\/\u2026 https:\/\/t.co\/tcgIgfwdv2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tcgIgfwdv2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1438756333692538881","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302315166965600257\/rWC1ntig_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302315166965600257\/rWC1ntig_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1042028143,"id_str":"1042028143","name":"anbalagansubbarayan","screen_name":"anbalagansubba","location":"chennai tamilnadu","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":272,"listed_count":0,"created_at":"Fri - Dec 28 11:55:36 +0000 2012","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Sat - Jan 01 02:29:28 +0000 2022","id":1477104660473282562,"id_str":"1477104660473282562","text":"Happy - New year 202w https:\/\/t.co\/Sg3b4zwnEc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1477104652290342916,"id_str":"1477104652290342916","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FH-62u_XwAQ150n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FH-62u_XwAQ150n.jpg","url":"https:\/\/t.co\/Sg3b4zwnEc","display_url":"pic.twitter.com\/Sg3b4zwnEc","expanded_url":"https:\/\/twitter.com\/anbalagansubba\/status\/1477104660473282562\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1015,"h":603,"resize":"fit"},"small":{"w":680,"h":404,"resize":"fit"},"medium":{"w":1015,"h":603,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1477104652290342916,"id_str":"1477104652290342916","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FH-62u_XwAQ150n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FH-62u_XwAQ150n.jpg","url":"https:\/\/t.co\/Sg3b4zwnEc","display_url":"pic.twitter.com\/Sg3b4zwnEc","expanded_url":"https:\/\/twitter.com\/anbalagansubba\/status\/1477104660473282562\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1015,"h":603,"resize":"fit"},"small":{"w":680,"h":404,"resize":"fit"},"medium":{"w":1015,"h":603,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1557191214,"id_str":"1557191214","name":"Frances - Caplygin","screen_name":"FrancesCaplygin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":1538,"listed_count":0,"created_at":"Sun - Jun 30 04:43:56 +0000 2013","favourites_count":136947,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sun - Oct 11 10:37:34 +0000 2020","id":1315240115212414983,"id_str":"1315240115212414983","text":"RT - @JEChalmers: Morrison\u2019s QLD visit for the state campaign is a reminder - that he called for the early opening of borders which could have\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JEChalmers","name":"Jim - Chalmers MP","id":258124400,"id_str":"258124400","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Oct 11 02:00:00 +0000 2020","id":1315109866764070912,"id_str":"1315109866764070912","text":"Morrison\u2019s - QLD visit for the state campaign is a reminder that he called for the early - opening of borders which cou\u2026 https:\/\/t.co\/CYFRwATIQ0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CYFRwATIQ0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1315109866764070912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":265,"favorite_count":856,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":265,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":852307261,"id_str":"852307261","name":"Yeeeeee\ud83c\udf39","screen_name":"nasdeshyak","location":"Spain - but S is silent ","description":"I miss my cat","url":"https:\/\/t.co\/KiuBxnwFQv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KiuBxnwFQv","expanded_url":"https:\/\/yemencrisis.carrd.co","display_url":"yemencrisis.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":364,"friends_count":1735,"listed_count":0,"created_at":"Sat - Sep 29 05:37:01 +0000 2012","favourites_count":15572,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15525,"lang":null,"status":{"created_at":"Fri - Mar 25 09:30:31 +0000 2022","id":1507288812715749379,"id_str":"1507288812715749379","text":"@needonegoalfc - Dumbabar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"needonegoalfc","name":"emaan","id":2783540610,"id_str":"2783540610","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507288326256037893,"in_reply_to_status_id_str":"1507288326256037893","in_reply_to_user_id":2783540610,"in_reply_to_user_id_str":"2783540610","in_reply_to_screen_name":"needonegoalfc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490011176478064641\/vWG_LRLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490011176478064641\/vWG_LRLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/852307261\/1647021714","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1157301002665697280,"id_str":"1157301002665697280","name":"Jennifer - Hoagland","screen_name":"JenniferHoagla4","location":"","description":"James - Murray Sal Vulcano ImpracticalJokers Brian Quinn Joe Gatto","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":476,"listed_count":0,"created_at":"Fri - Aug 02 14:43:55 +0000 2019","favourites_count":4484,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"status":{"created_at":"Sat - Mar 05 18:59:26 +0000 2022","id":1500184225345064963,"id_str":"1500184225345064963","text":"@usssks - Here !! Hodl all day everyday","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"usssks","name":"Steven - S","id":1355895074702372865,"id_str":"1355895074702372865","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500171645524353026,"in_reply_to_status_id_str":"1500171645524353026","in_reply_to_user_id":1355895074702372865,"in_reply_to_user_id_str":"1355895074702372865","in_reply_to_screen_name":"usssks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186706754828193795\/SngkADF4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186706754828193795\/SngkADF4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1157301002665697280\/1571767884","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1024144516175945728,"id_str":"1024144516175945728","name":"Genaro - Fernandez","screen_name":"GenaroF70236009","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":380,"listed_count":0,"created_at":"Tue - Jul 31 04:07:35 +0000 2018","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35447933,"id_str":"35447933","name":"Cherry - Mae Salazar","screen_name":"CMGSalazar","location":"Philippines","description":"Truth-teller, - recovering workaholic, suicide loss survivor \u2022 @pcijdotorg; previously - @onenewsph @DocuCentral @PhilippineSTAR \u2022 \ud83d\udce7 cmsalazar@pcij.org","url":"https:\/\/t.co\/K2FxeJ8wxG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/K2FxeJ8wxG","expanded_url":"http:\/\/pcij.org","display_url":"pcij.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":690,"friends_count":1770,"listed_count":0,"created_at":"Sun - Apr 26 11:26:08 +0000 2009","favourites_count":15173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13113,"lang":null,"status":{"created_at":"Fri - Mar 25 05:39:41 +0000 2022","id":1507230719201800197,"id_str":"1507230719201800197","text":"@angelaugh_ - I was just thinking this!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"angelaugh_","name":"Angela - #LeniKiko2022 \ud83c\udf80\ud83c\udf39","id":311421989,"id_str":"311421989","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507216148877570051,"in_reply_to_status_id_str":"1507216148877570051","in_reply_to_user_id":311421989,"in_reply_to_user_id_str":"311421989","in_reply_to_screen_name":"angelaugh_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248356190905499649\/KX_Iy6sS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248356190905499649\/KX_Iy6sS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35447933\/1588693944","profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3720105794,"id_str":"3720105794","name":"Ramon - Ant. Franco","screen_name":"RamfrancoAnt","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":223,"friends_count":3646,"listed_count":0,"created_at":"Tue - Sep 29 00:19:46 +0000 2015","favourites_count":7026,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85,"lang":null,"status":{"created_at":"Fri - Jul 30 02:51:12 +0000 2021","id":1420940009369182208,"id_str":"1420940009369182208","text":"RT - @federicofrancot: El compromiso de @ambienterd tiene un nuevo guardi\u00e1n - desde el cielo. \nDominicanos, proteger nuestros recursos naturale\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"federicofrancot","name":"Federico - Franco","id":72573502,"id_str":"72573502","indices":[3,19]},{"screen_name":"ambienterd","name":"Ministerio - de Medio Ambiente RD","id":488472519,"id_str":"488472519","indices":[38,49]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 29 11:27:29 +0000 2021","id":1420707547107966987,"id_str":"1420707547107966987","text":"El - compromiso de @ambienterd tiene un nuevo guardi\u00e1n desde el cielo. \nDominicanos, - proteger nuestros recursos natur\u2026 https:\/\/t.co\/1bCcooTrto","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ambienterd","name":"Ministerio - de Medio Ambiente RD","id":488472519,"id_str":"488472519","indices":[17,28]}],"urls":[{"url":"https:\/\/t.co\/1bCcooTrto","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1420707547107966987","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"00592e0c5b0f4a82","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00592e0c5b0f4a82.json","place_type":"city","name":"Constanza","full_name":"Constanza, - Dominican Republic","country_code":"DO","country":"Dominican Republic","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-70.8600949479906,18.6780055537144],[-70.5039583013676,18.6780055537144],[-70.5039583013676,19.0403382134733],[-70.8600949479906,19.0403382134733]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1420218286172774400,"quoted_status_id_str":"1420218286172774400","retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1420218286172774400,"quoted_status_id_str":"1420218286172774400","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648656131993133057\/vBCARh5E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648656131993133057\/vBCARh5E_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":946145786,"id_str":"946145786","name":"Mary - Floyd","screen_name":"MaryFloyd40","location":"Kentucky, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":136,"listed_count":0,"created_at":"Tue - Nov 13 17:11:24 +0000 2012","favourites_count":3778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":418,"lang":null,"status":{"created_at":"Mon - May 10 15:22:02 +0000 2021","id":1391775543398387717,"id_str":"1391775543398387717","text":"@Andy - Good morning Andy!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Andy","name":"Andy - Cohen","id":48100887,"id_str":"48100887","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1391715695042379783,"in_reply_to_status_id_str":"1391715695042379783","in_reply_to_user_id":48100887,"in_reply_to_user_id_str":"48100887","in_reply_to_screen_name":"Andy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/845665056184582144\/OGmxIsLW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845665056184582144\/OGmxIsLW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946145786\/1490457287","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":334645333,"id_str":"334645333","name":"Indra - Purnomo","screen_name":"indrapurnomos","location":"Jakarta, Indonesia","description":"","url":"https:\/\/t.co\/8mVQscqg4l","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8mVQscqg4l","expanded_url":"https:\/\/lubukhatisyifa.wordpress.com\/","display_url":"lubukhatisyifa.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":897,"listed_count":0,"created_at":"Wed - Jul 13 12:52:19 +0000 2011","favourites_count":1571,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2331,"lang":null,"status":{"created_at":"Sat - Mar 26 05:56:09 +0000 2022","id":1507597253703204867,"id_str":"1507597253703204867","text":"RT - @NarasiNewsroom: Penyiksaan di Balik Pengungkapan Kasus Begal Bekasi\nhttps:\/\/t.co\/ZJNRTDQDRt\n\nSeorang - guru ngaji dan 3 rekannya didakwa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NarasiNewsroom","name":"Narasi - Newsroom","id":1158355819512991747,"id_str":"1158355819512991747","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/ZJNRTDQDRt","expanded_url":"https:\/\/bit.ly\/BMEpisodeBegalBekasi","display_url":"bit.ly\/BMEpisodeBegal\u2026","indices":[72,95]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:23:27 +0000 2022","id":1507287032632320005,"id_str":"1507287032632320005","text":"Penyiksaan - di Balik Pengungkapan Kasus Begal Bekasi\nhttps:\/\/t.co\/ZJNRTDQDRt\n\nSeorang - guru ngaji dan 3 rekannya dida\u2026 https:\/\/t.co\/ohINMxjWzR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZJNRTDQDRt","expanded_url":"https:\/\/bit.ly\/BMEpisodeBegalBekasi","display_url":"bit.ly\/BMEpisodeBegal\u2026","indices":[52,75]},{"url":"https:\/\/t.co\/ohINMxjWzR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507287032632320005","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":221,"favorite_count":465,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":221,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308999375335706625\/-ASEzdgH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308999375335706625\/-ASEzdgH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334645333\/1520011033","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":607241098,"id_str":"607241098","name":"Uncle - Wilf","screen_name":"Invisible_Goat","location":"London, England","description":"Unapologetic - Leftie Londoner and West Ham supporting Twitter lurker.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":1257,"listed_count":2,"created_at":"Wed - Jun 13 14:01:45 +0000 2012","favourites_count":1525,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1083,"lang":null,"status":{"created_at":"Mon - Mar 14 13:20:06 +0000 2022","id":1503360320961662977,"id_str":"1503360320961662977","text":"@joe_yer99 - The Bombardment currently on Netflix is outstanding","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joe_yer99","name":"Joe - Fae Glesga","id":1150707220524544001,"id_str":"1150707220524544001","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502802913990782976,"in_reply_to_status_id_str":"1502802913990782976","in_reply_to_user_id":1150707220524544001,"in_reply_to_user_id_str":"1150707220524544001","in_reply_to_screen_name":"joe_yer99","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"19BF37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357354045304938496\/m-vUugT3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357354045304938496\/m-vUugT3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607241098\/1612453398","profile_link_color":"93A644","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":93000257,"id_str":"93000257","name":"Gabriela","screen_name":"rubiamedias_","location":"Bogot\u00e1, - DC, Colombia","description":"un intento de politologa. creo contenido en @Laoficina_col. - \ud83c\udfa8 Mi hobbie es dise\u00f1ar","url":"https:\/\/t.co\/N0xwWCgUfP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N0xwWCgUfP","expanded_url":"http:\/\/laoficinacol.com","display_url":"laoficinacol.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1158,"friends_count":1490,"listed_count":2,"created_at":"Fri - Nov 27 16:32:14 +0000 2009","favourites_count":69069,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D7DDE0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506121076174209025\/VuKzLj-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506121076174209025\/VuKzLj-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93000257\/1638211747","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1105628230709637120,"id_str":"1105628230709637120","name":"Tareetha - Flowers","screen_name":"tareetha","location":"","description":"I served my - country with pride. \ud83d\udc90\ud83c\udf37\ud83c\udf39\ud83c\udf3c\ud83c\udf3b\ud83e\udd40\ud83c\udf3a\ud83c\udf38","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1076,"friends_count":4987,"listed_count":1,"created_at":"Wed - Mar 13 00:34:46 +0000 2019","favourites_count":23463,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25270,"lang":null,"status":{"created_at":"Fri - Mar 25 08:19:37 +0000 2022","id":1507270968145817603,"id_str":"1507270968145817603","text":"RT - @smc429: How about you?\ud83c\udfb6 https:\/\/t.co\/RmbAEJGqa4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"smc429","name":"Brown - Eyed Susan\ud83c\uddfa\ud83c\udde6","id":23554832,"id_str":"23554832","indices":[3,10]}],"urls":[],"media":[{"id":1507189149308137497,"id_str":"1507189149308137497","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","url":"https:\/\/t.co\/RmbAEJGqa4","display_url":"pic.twitter.com\/RmbAEJGqa4","expanded_url":"https:\/\/twitter.com\/smc429\/status\/1507189524752871461\/photo\/1","type":"photo","sizes":{"large":{"w":488,"h":486,"resize":"fit"},"medium":{"w":488,"h":486,"resize":"fit"},"small":{"w":488,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507189524752871461,"source_status_id_str":"1507189524752871461","source_user_id":23554832,"source_user_id_str":"23554832"}]},"extended_entities":{"media":[{"id":1507189149308137497,"id_str":"1507189149308137497","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","url":"https:\/\/t.co\/RmbAEJGqa4","display_url":"pic.twitter.com\/RmbAEJGqa4","expanded_url":"https:\/\/twitter.com\/smc429\/status\/1507189524752871461\/photo\/1","type":"photo","sizes":{"large":{"w":488,"h":486,"resize":"fit"},"medium":{"w":488,"h":486,"resize":"fit"},"small":{"w":488,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507189524752871461,"source_status_id_str":"1507189524752871461","source_user_id":23554832,"source_user_id_str":"23554832"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:55:59 +0000 2022","id":1507189524752871461,"id_str":"1507189524752871461","text":"How - about you?\ud83c\udfb6 https:\/\/t.co\/RmbAEJGqa4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507189149308137497,"id_str":"1507189149308137497","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","url":"https:\/\/t.co\/RmbAEJGqa4","display_url":"pic.twitter.com\/RmbAEJGqa4","expanded_url":"https:\/\/twitter.com\/smc429\/status\/1507189524752871461\/photo\/1","type":"photo","sizes":{"large":{"w":488,"h":486,"resize":"fit"},"medium":{"w":488,"h":486,"resize":"fit"},"small":{"w":488,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1507189149308137497,"id_str":"1507189149308137497","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqci73VsBkulwK.png","url":"https:\/\/t.co\/RmbAEJGqa4","display_url":"pic.twitter.com\/RmbAEJGqa4","expanded_url":"https:\/\/twitter.com\/smc429\/status\/1507189524752871461\/photo\/1","type":"photo","sizes":{"large":{"w":488,"h":486,"resize":"fit"},"medium":{"w":488,"h":486,"resize":"fit"},"small":{"w":488,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":828,"favorite_count":4102,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":828,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492352027082608640\/moZ7_DVz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492352027082608640\/moZ7_DVz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105628230709637120\/1644639436","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":301180365,"id_str":"301180365","name":"Mary - Maykuth","screen_name":"starqual1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":944,"listed_count":3,"created_at":"Thu - May 19 01:09:51 +0000 2011","favourites_count":12127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3533,"lang":null,"status":{"created_at":"Fri - Mar 25 13:55:06 +0000 2022","id":1507355397790871552,"id_str":"1507355397790871552","text":"RT - @PSPCA: We interrupt your Buddy updates to let you know we have ZERO OPEN - KENNELS!\nSo, in celebration of March Madness, ALL dog adoption\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PSPCA","name":"Pennsylvania - SPCA","id":23483274,"id_str":"23483274","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:24:48 +0000 2022","id":1507106178081468416,"id_str":"1507106178081468416","text":"We - interrupt your Buddy updates to let you know we have ZERO OPEN KENNELS!\nSo, - in celebration of March Madness, ALL\u2026 https:\/\/t.co\/HGzcRaYIG2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HGzcRaYIG2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507106178081468416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":180,"favorite_count":225,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":180,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/821814860845563904\/RbfAfseK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/821814860845563904\/RbfAfseK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44048488,"id_str":"44048488","name":"SueE","screen_name":"sue4550","location":"Florida","description":"Floridian - since 1989","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":1136,"listed_count":0,"created_at":"Tue - Jun 02 03:27:59 +0000 2009","favourites_count":1122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":479,"lang":null,"status":{"created_at":"Mon - Mar 07 00:54:26 +0000 2022","id":1500635955782369285,"id_str":"1500635955782369285","text":"RT - @JohnBKing: I just became the first U.S. Secretary of Education to call on - President Biden to unilaterally cancel student loan debt. Can\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnBKing","name":"John - King for Governor of Maryland","id":819224053919739904,"id_str":"819224053919739904","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 17:24:28 +0000 2022","id":1500522714146222082,"id_str":"1500522714146222082","text":"I - just became the first U.S. Secretary of Education to call on President Biden - to unilaterally cancel student loan\u2026 https:\/\/t.co\/J1QIZ3yyTX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J1QIZ3yyTX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500522714146222082","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52760,"favorite_count":127510,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":52760,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489233201176403971\/YGCSYX0s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489233201176403971\/YGCSYX0s_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206167504,"id_str":"1206167504","name":"Max - Horberry","screen_name":"MaxHorberry","location":"London, UK","description":"Producer - for @BBCWorldService @BBCWorld & @BBCRadio4 | Writes for @FT @NYTimes & @AJENews - | Author of ''Who Is Elmyr? Histories of an Art Forger'' on Audible","url":"https:\/\/t.co\/UY2kSnrPUR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UY2kSnrPUR","expanded_url":"https:\/\/www.audible.com\/pd\/Who-Is-Elmyr-Audiobook\/B0947BFP8M","display_url":"audible.com\/pd\/Who-Is-Elmy\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":477,"friends_count":2105,"listed_count":2,"created_at":"Thu - Feb 21 22:29:07 +0000 2013","favourites_count":6894,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1180,"lang":null,"status":{"created_at":"Wed - Mar 16 20:18:56 +0000 2022","id":1504190500559015937,"id_str":"1504190500559015937","text":"RT - @shashj: Striking satellite imagery taken on Monday of the Mariupol Drama - Theatre\u2014hit by an air strike today. 1,200 civilians were shelt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"shashj","name":"Shashank - Joshi","id":17175213,"id_str":"17175213","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 20:01:36 +0000 2022","id":1504186137186910217,"id_str":"1504186137186910217","text":"Striking - satellite imagery taken on Monday of the Mariupol Drama Theatre\u2014hit by - an air strike today. 1,200 civilian\u2026 https:\/\/t.co\/d6FkszlVbr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/d6FkszlVbr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504186137186910217","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3228,"favorite_count":6923,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3228,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364167666957746176\/I3srr7Zs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364167666957746176\/I3srr7Zs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1206167504\/1620893816","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34191258,"id_str":"34191258","name":"Ilan - Friedlander","screen_name":"ilan_ilan_f","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":305,"listed_count":0,"created_at":"Wed - Apr 22 05:05:22 +0000 2009","favourites_count":135415,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13290,"lang":null,"status":{"created_at":"Fri - Mar 25 16:37:24 +0000 2022","id":1507396241654697984,"id_str":"1507396241654697984","text":"@rephaelb - ???","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rephaelb","name":"Raphael - (Rafi) Bitton","id":87548068,"id_str":"87548068","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507346691606917129,"in_reply_to_status_id_str":"1507346691606917129","in_reply_to_user_id":87548068,"in_reply_to_user_id_str":"87548068","in_reply_to_screen_name":"rephaelb","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198419485495042048,"id_str":"1198419485495042048","name":"Stephen - C F Etolue","screen_name":"stephen52693861","location":"United States","description":"Business - owner, franchising (Merry Maids Shawnee \/ Amazon FBA.","url":"https:\/\/t.co\/pY3qnDsxCm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pY3qnDsxCm","expanded_url":"http:\/\/www.merrymaids.com\/shawnee","display_url":"merrymaids.com\/shawnee","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":147,"listed_count":0,"created_at":"Sun - Nov 24 01:54:18 +0000 2019","favourites_count":3542,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1479,"lang":null,"status":{"created_at":"Wed - Mar 23 16:56:42 +0000 2022","id":1506676323598716940,"id_str":"1506676323598716940","text":"RT - @atiku: It\u2019s on! \u2705 Thank you to everyone who attended the #AtikuDeclaration - and joined online. Our journey together starts here. As One\u2026","truncated":false,"entities":{"hashtags":[{"text":"AtikuDeclaration","indices":[61,78]}],"symbols":[],"user_mentions":[{"screen_name":"atiku","name":"Atiku - Abubakar","id":177583133,"id_str":"177583133","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 15:32:48 +0000 2022","id":1506655205831712773,"id_str":"1506655205831712773","text":"It\u2019s - on! \u2705 Thank you to everyone who attended the #AtikuDeclaration and joined - online. Our journey together starts\u2026 https:\/\/t.co\/yHMYJ5jz8i","truncated":true,"entities":{"hashtags":[{"text":"AtikuDeclaration","indices":[50,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yHMYJ5jz8i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506655205831712773","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":658,"favorite_count":3406,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":658,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474698295297687557\/Vdc3jp17_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474698295297687557\/Vdc3jp17_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":165693772,"id_str":"165693772","name":"Veronica - \ud83c\udf31\ud83c\udff3\u200d\ud83c\udf08","screen_name":"calabresevero","location":"","description":"She\/Her. - \nVegetarian.\nFuck off and don''t follow me if you''re a misogynist, transphobe, - homophobe, fatphobe or racist","url":"https:\/\/t.co\/iaaGq5DBUr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iaaGq5DBUr","expanded_url":"https:\/\/www.instagram.com\/veroveronica.v","display_url":"instagram.com\/veroveronica.v","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":673,"listed_count":0,"created_at":"Mon - Jul 12 08:30:43 +0000 2010","favourites_count":2527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":460,"lang":null,"status":{"created_at":"Thu - Aug 26 12:03:45 +0000 2021","id":1430863533949001737,"id_str":"1430863533949001737","text":"RT - @_martil_: A Cagliari, al parco di Monte Urpinu, per impedire ai visitatori - di dare il pane agli animali perch\u00e9 \u00e8 pericoloso, ci sono le\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_martil_","name":"Martina","id":198438022,"id_str":"198438022","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 13 13:36:20 +0000 2019","id":1095678056587501569,"id_str":"1095678056587501569","text":"A - Cagliari, al parco di Monte Urpinu, per impedire ai visitatori di dare il - pane agli animali perch\u00e9 \u00e8 pericoloso,\u2026 https:\/\/t.co\/f8ZWdvbkh9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f8ZWdvbkh9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1095678056587501569","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":822,"favorite_count":3111,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"is_quote_status":false,"retweet_count":822,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350133880980955137\/7Pfcc1gs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350133880980955137\/7Pfcc1gs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165693772\/1588716485","profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":788612292,"id_str":"788612292","name":"Ch - AhMaD","screen_name":"Ch_AhMaD_ar","location":"Faisalabadian","description":"i - Feel Very SoRRY Who Don''t Know Me...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":504,"friends_count":4900,"listed_count":0,"created_at":"Wed - Aug 29 05:35:22 +0000 2012","favourites_count":56084,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13512,"lang":null,"status":{"created_at":"Sat - Mar 26 09:55:46 +0000 2022","id":1507657555513913348,"id_str":"1507657555513913348","text":"RT - @_imkami: \u062a\u062d\u0631\u06cc\u06a9 \u0627\u0646\u0635\u0627\u0641 \u0646\u06d2 - \u06a9\u0641\u0627\u0626\u062a \u0634\u0639\u0627\u0631\u06cc \u06a9\u06cc - \u0627\u0646\u062a\u06c1\u0627 \u06a9\u0631 \u062f\u06cc \u06d4 10 \u0644\u0627\u06a9\u06be - \u0644\u0648\u06af\u0648\u06ba \u06a9\u06d2 \u0644\u0626\u06d2 5 \u06c1\u0632\u0627\u0631 - \u06a9\u0631\u0633\u06cc\u0627\u06ba \u0644\u06af\u0627 \u062f\u06cc \u06af\u0626\u06cc\u06ba - \u06c1\u06cc\u06ba\u06d4 \u0645\u0644 \u062c\u0644 \u06a9\u0631 \u0628\u06cc\u0679\u06be\u0646\u06d2 - \u06a9\u06cc \u06c1\u062f\u0627\u06cc\u062a https\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_imkami","name":"\ud835\ude46\ud835\ude56\ud835\ude62\ud835\ude67\ud835\ude56\ud835\ude63","id":123807876,"id_str":"123807876","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:27:50 +0000 2022","id":1507650522484035584,"id_str":"1507650522484035584","text":"\u062a\u062d\u0631\u06cc\u06a9 - \u0627\u0646\u0635\u0627\u0641 \u0646\u06d2 \u06a9\u0641\u0627\u0626\u062a - \u0634\u0639\u0627\u0631\u06cc \u06a9\u06cc \u0627\u0646\u062a\u06c1\u0627 - \u06a9\u0631 \u062f\u06cc \u06d4 10 \u0644\u0627\u06a9\u06be \u0644\u0648\u06af\u0648\u06ba - \u06a9\u06d2 \u0644\u0626\u06d2 5 \u06c1\u0632\u0627\u0631 \u06a9\u0631\u0633\u06cc\u0627\u06ba - \u0644\u06af\u0627 \u062f\u06cc \u06af\u0626\u06cc\u06ba \u06c1\u06cc\u06ba\u06d4 - \u0645\u0644 \u062c\u0644 \u06a9\u0631 \u0628\u06cc\u0679\u06be\u0646\u06d2 - \u06a9\u06cc\u2026 https:\/\/t.co\/iD5wXvud7S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iD5wXvud7S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507650522484035584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1423554470663933956\/l0n58YAx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1423554470663933956\/l0n58YAx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788612292\/1607793168","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22466455,"id_str":"22466455","name":"OPT\u0130M\u0130ST","screen_name":"ahmbar","location":"","description":"THERE - ARE NO STRANGERS BUT FRIENDS THAT WE HAVE NOT MET YET","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":196,"friends_count":1976,"listed_count":1,"created_at":"Mon - Mar 02 08:37:14 +0000 2009","favourites_count":3313,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10076,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168686855\/G_r_nt_0007_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168686855\/G_r_nt_0007_normal.jpg","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":85581740,"id_str":"85581740","name":"katie - finn","screen_name":"katiejfinn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":1602,"listed_count":0,"created_at":"Tue - Oct 27 14:36:47 +0000 2009","favourites_count":1351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171,"lang":null,"status":{"created_at":"Thu - Mar 10 03:19:29 +0000 2022","id":1501759619517014017,"id_str":"1501759619517014017","text":"RT - @Max_Scherzer: I was in FL. We never offered the Int\u2019l Draft. We did - discuss it, but MLB told us they were NOT going to offer anything\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Max_Scherzer","name":"Max - Scherzer","id":492742094,"id_str":"492742094","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 01:21:05 +0000 2022","id":1501729824125206530,"id_str":"1501729824125206530","text":"I - was in FL. We never offered the Int\u2019l Draft. We did discuss it, but - MLB told us they were NOT going to offer any\u2026 https:\/\/t.co\/ZNDJGnn7rG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZNDJGnn7rG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501729824125206530","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5892,"favorite_count":46211,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5892,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756567324623122432\/aZAIEGwM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756567324623122432\/aZAIEGwM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2843785973,"id_str":"2843785973","name":"Daniel - Raider","screen_name":"draidman","location":"Georgia, USA","description":"Father - of Six, HVAC Professional. Retweets are not always a sign of agreement","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":186,"friends_count":1822,"listed_count":4,"created_at":"Sat - Oct 25 15:07:18 +0000 2014","favourites_count":1249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":796,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395334622603526153\/zcjOgysE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395334622603526153\/zcjOgysE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843785973\/1621508683","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":164535983,"id_str":"164535983","name":"Tina - Lewis","screen_name":"graaylady","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":1083,"listed_count":0,"created_at":"Fri - Jul 09 03:17:41 +0000 2010","favourites_count":321,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Fri - Oct 15 04:40:50 +0000 2021","id":1448871466116829184,"id_str":"1448871466116829184","text":"@michaelianblack - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"michaelianblack","name":"Michael - Ian Black","id":21035409,"id_str":"21035409","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1448868921675767827,"in_reply_to_status_id_str":"1448868921675767827","in_reply_to_user_id":21035409,"in_reply_to_user_id_str":"21035409","in_reply_to_screen_name":"michaelianblack","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418009144684056576\/pEE86CkV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418009144684056576\/pEE86CkV_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2903047272,"id_str":"2903047272","name":"VIOLA - CATHEL","screen_name":"CathelViola","location":"Great Falls, MT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":694,"listed_count":0,"created_at":"Mon - Nov 17 22:46:33 +0000 2014","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476958122740576256\/JbH5ZPdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476958122740576256\/JbH5ZPdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903047272\/1640969232","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":57718838,"id_str":"57718838","name":"Joanne - Universal Suffrage Fanizza \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","screen_name":"1stAmendmentJ","location":"Long - Island, NY","description":"Attorney Progressive #MedicareforAll Respect & - Love U.S. Constitution, esp 1st, (the actual) 2nd & 14th Amdmts. I block trolls - & Russian bots. #IDWP \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","url":"https:\/\/t.co\/rsnsXv1JBs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rsnsXv1JBs","expanded_url":"http:\/\/www.fanizzalaw.com","display_url":"fanizzalaw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3077,"friends_count":4420,"listed_count":58,"created_at":"Fri - Jul 17 18:35:51 +0000 2009","favourites_count":80399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46073,"lang":null,"status":{"created_at":"Sat - Mar 26 01:33:34 +0000 2022","id":1507531173471346692,"id_str":"1507531173471346692","text":"@covie_93 - Even if he resigns we have to expand the court. Appointing a liberal in his - place only gives a 4-5 minori\u2026 https:\/\/t.co\/BK30UhaEi8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"covie_93","name":"Covie","id":2768271223,"id_str":"2768271223","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/BK30UhaEi8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507531173471346692","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507512816793788420,"in_reply_to_status_id_str":"1507512816793788420","in_reply_to_user_id":2768271223,"in_reply_to_user_id_str":"2768271223","in_reply_to_screen_name":"covie_93","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472430279391342592\/cT672IKL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472430279391342592\/cT672IKL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57718838\/1401823921","profile_link_color":"0009B8","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1407565867,"id_str":"1407565867","name":"Ahmed","screen_name":"quesoquant","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":1014,"listed_count":6,"created_at":"Mon - May 06 11:50:58 +0000 2013","favourites_count":2190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"status":{"created_at":"Fri - Mar 25 22:04:08 +0000 2022","id":1507478466219839493,"id_str":"1507478466219839493","text":"RT - @elainehsiehchou: This essay for @TheCut is the hardest thing I\u2019ve ever - written. It took me four years to finish. \n\nI wrote it for us. I\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elainehsiehchou","name":"Elaine - Hsieh Chou","id":1112082845965733888,"id_str":"1112082845965733888","indices":[3,19]},{"screen_name":"TheCut","name":"The - Cut","id":19923638,"id_str":"19923638","indices":[36,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:00:13 +0000 2022","id":1506994296079196168,"id_str":"1506994296079196168","text":"This - essay for @TheCut is the hardest thing I\u2019ve ever written. It took me - four years to finish. \n\nI wrote it for us\u2026 https:\/\/t.co\/rgVfmX91Kn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheCut","name":"The - Cut","id":19923638,"id_str":"19923638","indices":[15,22]}],"urls":[{"url":"https:\/\/t.co\/rgVfmX91Kn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506994296079196168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3554,"favorite_count":14085,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3554,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441222998455828486\/h2ttDufU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441222998455828486\/h2ttDufU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1407565867\/1631650516","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":50981787,"id_str":"50981787","name":"Citizen - z","screen_name":"seagal2000","location":"","description":"Freelance Concept - Artist","url":"https:\/\/t.co\/YcHJFEBYy9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YcHJFEBYy9","expanded_url":"https:\/\/bit.ly\/3uijKkR","display_url":"bit.ly\/3uijKkR","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":899,"listed_count":1,"created_at":"Fri - Jun 26 08:47:20 +0000 2009","favourites_count":1755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2037,"lang":null,"status":{"created_at":"Wed - Mar 16 21:13:42 +0000 2022","id":1504204282232553481,"id_str":"1504204282232553481","text":"@Cathrinmachin - K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cathrinmachin","name":"Cathrin - Machin Space \u20b3rt","id":24602126,"id_str":"24602126","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500550232555151360,"in_reply_to_status_id_str":"1500550232555151360","in_reply_to_user_id":24602126,"in_reply_to_user_id_str":"24602126","in_reply_to_screen_name":"Cathrinmachin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2548135673\/54cn7hjvsb6z2uyq0t0d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2548135673\/54cn7hjvsb6z2uyq0t0d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50981787\/1617474220","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889844047086571520,"id_str":"889844047086571520","name":"Donna - Marie Cress","screen_name":"DonnaMarieCres4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":86,"listed_count":0,"created_at":"Tue - Jul 25 13:45:28 +0000 2017","favourites_count":1043,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":91,"lang":null,"status":{"created_at":"Wed - Jan 19 16:13:52 +0000 2022","id":1483835107177906179,"id_str":"1483835107177906179","text":"@nytimes - One word, Benghazi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1480381401363009540,"in_reply_to_status_id_str":"1480381401363009540","in_reply_to_user_id":807095,"in_reply_to_user_id_str":"807095","in_reply_to_screen_name":"nytimes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":744429268751482880,"id_str":"744429268751482880","name":"Uttam - Sharma","screen_name":"UttamSh55782610","location":"Barabanki, India","description":"convener - - rashtriye pragatisheel manch","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":32,"friends_count":476,"listed_count":0,"created_at":"Sun - Jun 19 07:19:03 +0000 2016","favourites_count":9429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/746365656870752256\/MgtGRQC5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/746365656870752256\/MgtGRQC5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1026475684145897474,"id_str":"1026475684145897474","name":"Stephanie - Tomasson","screen_name":"sotomasson","location":"New York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":294,"listed_count":0,"created_at":"Mon - Aug 06 14:30:48 +0000 2018","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107708333002313733\/DgOVbqnl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107708333002313733\/DgOVbqnl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2766543847,"id_str":"2766543847","name":"Umarell - North America #ThereAintNoSanityClause","screen_name":"MikulakRick","location":"Dearborn, - MI","description":"Solving all of the world\u2019s problems - one re-tweet - at a time. No Porn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":730,"friends_count":4997,"listed_count":0,"created_at":"Mon - Aug 25 14:22:31 +0000 2014","favourites_count":16214,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5578,"lang":null,"status":{"created_at":"Fri - Mar 25 22:22:30 +0000 2022","id":1507483088871378946,"id_str":"1507483088871378946","text":"Erase - that image from my memory bank! https:\/\/t.co\/DP6T22gRay","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DP6T22gRay","expanded_url":"https:\/\/twitter.com\/roshan_rinaldi\/status\/1507442268927676418","display_url":"twitter.com\/roshan_rinaldi\u2026","indices":[38,61]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507442268927676418,"quoted_status_id_str":"1507442268927676418","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279238536429015041\/YlakinD8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279238536429015041\/YlakinD8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766543847\/1513179260","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26726145,"id_str":"26726145","name":"vegan - rodeo burger","screen_name":"QuinnStarkey","location":"Akron, OH","description":"modern - day frankenstein","url":"https:\/\/t.co\/KmXKHT0iYB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KmXKHT0iYB","expanded_url":"http:\/\/whitelighterak.bandcamp.com","display_url":"whitelighterak.bandcamp.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":774,"friends_count":583,"listed_count":11,"created_at":"Thu - Mar 26 11:10:11 +0000 2009","favourites_count":34172,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28222,"lang":null,"status":{"created_at":"Sat - Mar 26 05:39:22 +0000 2022","id":1507593027635892224,"id_str":"1507593027635892224","text":"Still - https:\/\/t.co\/FkLa0QxikM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FkLa0QxikM","expanded_url":"https:\/\/twitter.com\/quinnstarkey\/status\/1342277223013900290","display_url":"twitter.com\/quinnstarkey\/s\u2026","indices":[6,29]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1342277223013900290,"quoted_status_id_str":"1342277223013900290","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506677192645824514\/Hrr6_Io-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506677192645824514\/Hrr6_Io-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26726145\/1639131069","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":327709445,"id_str":"327709445","name":"Joanne - Gordon","screen_name":"lucybird812","location":"Marco Island, FL","description":"Animal - lover, political news follower, independent voter, upset with the current - state of our politics \ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":426,"listed_count":0,"created_at":"Sat - Jul 02 01:01:32 +0000 2011","favourites_count":10196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8407,"lang":null,"status":{"created_at":"Sun - May 09 15:45:16 +0000 2021","id":1391419002598080519,"id_str":"1391419002598080519","text":"@BCOOL333 - Deathsantis","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BCOOL333","name":"BCOOL","id":1145314909233848320,"id_str":"1145314909233848320","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1391110475967090689,"in_reply_to_status_id_str":"1391110475967090689","in_reply_to_user_id":1145314909233848320,"in_reply_to_user_id_str":"1145314909233848320","in_reply_to_screen_name":"BCOOL333","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316431445385191430\/K_sGDIqD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316431445385191430\/K_sGDIqD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327709445\/1538416465","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1214299341793312769,"id_str":"1214299341793312769","name":"Morty","screen_name":"MortyDr","location":"Persia - \/ Tehran","description":"MD \/ \ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1193,"friends_count":1290,"listed_count":0,"created_at":"Mon - Jan 06 21:36:06 +0000 2020","favourites_count":35776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19467,"lang":null,"status":{"created_at":"Sat - Mar 26 10:41:33 +0000 2022","id":1507669077485051904,"id_str":"1507669077485051904","text":"RT - @Mysun_M: \u06cc\u0639\u0646\u06cc \u0627\u06cc\u0646 \u0645\u062c\u0633\u0645\u0647 - \u0647\u0627 \u0627\u06af\u0631 \u0627\u0641\u0631\u0627\u062f\u06cc \u0631\u0648 - \u062a\u062d\u0631\u06cc\u06a9 \u06a9\u0646\u0647 !\u06cc\u0639\u0646\u06cc - \u0627\u06cc\u0646 \u0627\u0641\u0631\u0627\u062f \u062e\u06cc\u0644\u06cc - \u062a\u062d\u0644\u06cc\u0644\u0634\u0648\u0646 \u0627\u0632 \u0627\u062c\u062a\u0645\u0627\u0639 - \u0632\u06cc\u0627\u062f\u0647 \u06cc\u0627 \u0645\u0634\u06a9\u0644 \u0631\u0648\u062d\u06cc - \u0631\u0648\u0627\u0646\u06cc \u06cc\u0627 \u0647\u0645\u0648\u0646 (\u0645\u0631\u06cc\u0636 - \u062c\u0646\u0633\u06cc\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mysun_M","name":"\ud835\udcdc\ud835\udd02\ud835\udcfc\ud835\udcfe\ud835\udcf7 - \ud83d\udd06","id":1227215978280431618,"id_str":"1227215978280431618","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:37:34 +0000 2022","id":1507652973949820936,"id_str":"1507652973949820936","text":"\u06cc\u0639\u0646\u06cc - \u0627\u06cc\u0646 \u0645\u062c\u0633\u0645\u0647 \u0647\u0627 \u0627\u06af\u0631 - \u0627\u0641\u0631\u0627\u062f\u06cc \u0631\u0648 \u062a\u062d\u0631\u06cc\u06a9 - \u06a9\u0646\u0647 !\u06cc\u0639\u0646\u06cc \u0627\u06cc\u0646 \u0627\u0641\u0631\u0627\u062f - \u062e\u06cc\u0644\u06cc \u062a\u062d\u0644\u06cc\u0644\u0634\u0648\u0646 - \u0627\u0632 \u0627\u062c\u062a\u0645\u0627\u0639 \u0632\u06cc\u0627\u062f\u0647 - \u06cc\u0627 \u0645\u0634\u06a9\u0644 \u0631\u0648\u062d\u06cc \u0631\u0648\u0627\u0646\u06cc - \u06cc\u0627 \u0647\u0645\u0648\u0646\u2026 https:\/\/t.co\/0vxF1dhZ2l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0vxF1dhZ2l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507652973949820936","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fa"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501133271454949380\/PpVDfDCT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501133271454949380\/PpVDfDCT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214299341793312769\/1645296179","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":245516996,"id_str":"245516996","name":"Nicole - Jaenchen","screen_name":"nicolejaenchen","location":"Berlin, Germany","description":"I - cannot stop \u263a\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":178,"listed_count":0,"created_at":"Mon - Jan 31 21:43:41 +0000 2011","favourites_count":662,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Tue - Feb 15 21:22:43 +0000 2022","id":1493697305790328838,"id_str":"1493697305790328838","text":"@JustAnotherPM - our VPN log in \ud83d\ude22","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JustAnotherPM","name":"JustAnotherPM","id":2905273376,"id_str":"2905273376","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493656136775520263,"in_reply_to_status_id_str":"1493656136775520263","in_reply_to_user_id":2905273376,"in_reply_to_user_id_str":"2905273376","in_reply_to_screen_name":"JustAnotherPM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388191292182700042\/vXskKv-A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388191292182700042\/vXskKv-A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245516996\/1619805641","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268525760219877376,"id_str":"1268525760219877376","name":"Stephen - huhtala","screen_name":"HuhtalaStephen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":92,"listed_count":0,"created_at":"Thu - Jun 04 12:51:48 +0000 2020","favourites_count":7596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":442,"lang":null,"status":{"created_at":"Sat - Mar 26 06:28:55 +0000 2022","id":1507605498975162368,"id_str":"1507605498975162368","text":"RT - @jackeparrock: This really is quite something. Wait for the total admonishment - of Hungary\u2019s Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackeparrock","name":"Jack - Parrock","id":218901217,"id_str":"218901217","indices":[3,16]}],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:00:35 +0000 2022","id":1507386974851805194,"id_str":"1507386974851805194","text":"This - really is quite something. Wait for the total admonishment of Hungary\u2019s - Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"0653bb913c88c1ea","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0653bb913c88c1ea.json","place_type":"city","name":"Brussels","full_name":"Brussels, - Belgium","country_code":"BE","country":"Belgium","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[4.3139889,50.7963282],[4.4369472,50.7963282],[4.4369472,50.9137064],[4.3139889,50.9137064]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12529,"favorite_count":50566,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12529,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268528106559672321\/DcwMfb8i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268528106559672321\/DcwMfb8i_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1114806975458697216,"id_str":"1114806975458697216","name":"O_luo.ch","screen_name":"Derrick17382000","location":"","description":"I''m - a natural rugby player","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":1642,"listed_count":0,"created_at":"Sun - Apr 07 08:27:49 +0000 2019","favourites_count":43309,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1215,"lang":null,"status":{"created_at":"Sat - Mar 26 04:17:19 +0000 2022","id":1507572378536194051,"id_str":"1507572378536194051","text":"RT - @thacreativez: DaniLeigh - Easy https:\/\/t.co\/LL6aglbZ5A","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thacreativez","name":"this - profile posts dope music \ud83c\udfb5","id":1355552566688567297,"id_str":"1355552566688567297","indices":[3,16]}],"urls":[],"media":[{"id":1488989743937474567,"id_str":"1488989743937474567","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","url":"https:\/\/t.co\/LL6aglbZ5A","display_url":"pic.twitter.com\/LL6aglbZ5A","expanded_url":"https:\/\/twitter.com\/blackcreativez\/status\/1488989841006157827\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1488989841006157827,"source_status_id_str":"1488989841006157827","source_user_id":1355552566688567297,"source_user_id_str":"1355552566688567297"}]},"extended_entities":{"media":[{"id":1488989743937474567,"id_str":"1488989743937474567","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","url":"https:\/\/t.co\/LL6aglbZ5A","display_url":"pic.twitter.com\/LL6aglbZ5A","expanded_url":"https:\/\/twitter.com\/blackcreativez\/status\/1488989841006157827\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1488989841006157827,"source_status_id_str":"1488989841006157827","source_user_id":1355552566688567297,"source_user_id_str":"1355552566688567297","video_info":{"aspect_ratio":[9,16],"duration_millis":17233,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/480x852\/aEvPx-9yLpmbKPue.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/320x568\/etDW62QSdggQaAHe.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/720x1280\/yLKKPtiqQLYXbtNz.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/pl\/byLvY56K3erlpxFa.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 02 21:36:56 +0000 2022","id":1488989841006157827,"id_str":"1488989841006157827","text":"DaniLeigh - - Easy https:\/\/t.co\/LL6aglbZ5A","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1488989743937474567,"id_str":"1488989743937474567","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","url":"https:\/\/t.co\/LL6aglbZ5A","display_url":"pic.twitter.com\/LL6aglbZ5A","expanded_url":"https:\/\/twitter.com\/blackcreativez\/status\/1488989841006157827\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1488989743937474567,"id_str":"1488989743937474567","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1488989743937474567\/pu\/img\/ojnyaw_U7lmp-rNn.jpg","url":"https:\/\/t.co\/LL6aglbZ5A","display_url":"pic.twitter.com\/LL6aglbZ5A","expanded_url":"https:\/\/twitter.com\/blackcreativez\/status\/1488989841006157827\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":17233,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/480x852\/aEvPx-9yLpmbKPue.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/320x568\/etDW62QSdggQaAHe.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/vid\/720x1280\/yLKKPtiqQLYXbtNz.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1488989743937474567\/pu\/pl\/byLvY56K3erlpxFa.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":268,"favorite_count":1193,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":268,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":874955007254245376,"id_str":"874955007254245376","name":"Kathy - Maggio","screen_name":"sweedoms","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":91,"listed_count":0,"created_at":"Wed - Jun 14 11:41:44 +0000 2017","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312454612667060229,"id_str":"1312454612667060229","name":"Freedom","screen_name":"m196538410077","location":"United - States","description":"Conserv. US Citizen. Catholic. Republican!, freedom! We - The People! RT not endors. IFBAP \ud83d\udeab inapprop. Tweet conservative - politics\/values and other cool stuff.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1298,"friends_count":4966,"listed_count":0,"created_at":"Sat - Oct 03 18:09:12 +0000 2020","favourites_count":42659,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32144,"lang":null,"status":{"created_at":"Sat - Mar 26 10:30:38 +0000 2022","id":1507666329192607749,"id_str":"1507666329192607749","text":"RT - @America1Scotty: https:\/\/t.co\/rvbvsSPD4g","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"America1Scotty","name":"Mr. - Potato Head","id":1161154266049986560,"id_str":"1161154266049986560","indices":[3,18]}],"urls":[],"media":[{"id":1507215061244424197,"id_str":"1507215061244424197","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","url":"https:\/\/t.co\/rvbvsSPD4g","display_url":"pic.twitter.com\/rvbvsSPD4g","expanded_url":"https:\/\/twitter.com\/America1Scotty\/status\/1507215066260811776\/photo\/1","type":"photo","sizes":{"small":{"w":616,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":828,"resize":"fit"},"large":{"w":750,"h":828,"resize":"fit"}},"source_status_id":1507215066260811776,"source_status_id_str":"1507215066260811776","source_user_id":1161154266049986560,"source_user_id_str":"1161154266049986560"}]},"extended_entities":{"media":[{"id":1507215061244424197,"id_str":"1507215061244424197","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","url":"https:\/\/t.co\/rvbvsSPD4g","display_url":"pic.twitter.com\/rvbvsSPD4g","expanded_url":"https:\/\/twitter.com\/America1Scotty\/status\/1507215066260811776\/photo\/1","type":"photo","sizes":{"small":{"w":616,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":828,"resize":"fit"},"large":{"w":750,"h":828,"resize":"fit"}},"source_status_id":1507215066260811776,"source_status_id_str":"1507215066260811776","source_user_id":1161154266049986560,"source_user_id_str":"1161154266049986560"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:37:29 +0000 2022","id":1507215066260811776,"id_str":"1507215066260811776","text":"https:\/\/t.co\/rvbvsSPD4g","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507215061244424197,"id_str":"1507215061244424197","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","url":"https:\/\/t.co\/rvbvsSPD4g","display_url":"pic.twitter.com\/rvbvsSPD4g","expanded_url":"https:\/\/twitter.com\/America1Scotty\/status\/1507215066260811776\/photo\/1","type":"photo","sizes":{"small":{"w":616,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":828,"resize":"fit"},"large":{"w":750,"h":828,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507215061244424197,"id_str":"1507215061244424197","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq0HNWXsAUN9an.jpg","url":"https:\/\/t.co\/rvbvsSPD4g","display_url":"pic.twitter.com\/rvbvsSPD4g","expanded_url":"https:\/\/twitter.com\/America1Scotty\/status\/1507215066260811776\/photo\/1","type":"photo","sizes":{"small":{"w":616,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":828,"resize":"fit"},"large":{"w":750,"h":828,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":770,"favorite_count":1360,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":770,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348150843502194688\/CLD9ueqV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348150843502194688\/CLD9ueqV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312454612667060229\/1643549336","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":268747873,"id_str":"268747873","name":"zogweiler\ud83d\udea2\u26fd\ufe0f\ud83d\udeb2\ud83c\uddfa\ud83c\udde6","screen_name":"zogweiler","location":"London","description":"LNG - market analyst | politics | bike stuff: roads and cities should be for people - not cars!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":5004,"listed_count":14,"created_at":"Sat - Mar 19 11:32:44 +0000 2011","favourites_count":16014,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":717,"lang":null,"status":{"created_at":"Sat - Mar 26 08:59:51 +0000 2022","id":1507643484374716416,"id_str":"1507643484374716416","text":"@icis_ruth_liao - \ud83d\ude02\ud83d\udea2 \u26fd\ufe0f\ud83e\uddca\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"icis_ruth_liao","name":"Ruth - Liao","id":271615538,"id_str":"271615538","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507529069805547524,"in_reply_to_status_id_str":"1507529069805547524","in_reply_to_user_id":271615538,"in_reply_to_user_id_str":"271615538","in_reply_to_screen_name":"icis_ruth_liao","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677823062457384960\/2rpS_RTG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677823062457384960\/2rpS_RTG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268747873\/1646864704","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235053362845868032,"id_str":"1235053362845868032","name":"John - Auckram","screen_name":"JohnAuckram2","location":"Auckland, New Zealand","description":"looking - for relationship and love and marriage","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":161,"friends_count":2424,"listed_count":0,"created_at":"Wed - Mar 04 04:04:34 +0000 2020","favourites_count":1896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1907,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235053761803874305\/JQ6ppHYQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235053761803874305\/JQ6ppHYQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1124705140919943168,"id_str":"1124705140919943168","name":"Bar - Shaffer \u05d1\u05e8 \u05e9\u05e4\u05e8 \u30d0\u30fc\u30b7\u30e3\u30d5\u30a1\u30fc","screen_name":"BarShaffer","location":"","description":"Foreign - Desk IPBC | \u05d3\u05e1\u05e7 \u05d7\u05d5\u05e5 \u05db\u05d0\u05df 11\n@kann_news","url":"https:\/\/t.co\/M1F6VHN7U5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/M1F6VHN7U5","expanded_url":"https:\/\/www.kan.org.il\/program\/?catid=1119","display_url":"kan.org.il\/program\/?catid\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":434,"friends_count":1590,"listed_count":7,"created_at":"Sat - May 04 15:59:36 +0000 2019","favourites_count":12455,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2233,"lang":null,"status":{"created_at":"Thu - Mar 24 17:45:34 +0000 2022","id":1507051005841747979,"id_str":"1507051005841747979","text":"RT - @kann_news: \u05d1\u05d9\u05d9\u05d3\u05df \u05de\u05d0\u05d9\u05d9\u05dd - \u05e2\u05dc \u05e4\u05d5\u05d8\u05d9\u05df: \u05d0\u05dd \u05e8\u05d5\u05e1\u05d9\u05d4 - \u05ea\u05e9\u05ea\u05de\u05e9 \u05d1\u05e0\u05e9\u05e7 \u05db\u05d9\u05de\u05d9 - - \u05e0\u05d2\u05d9\u05d1 \u05d1\u05d4\u05ea\u05d0\u05dd\nhttps:\/\/t.co\/P2EQakn8PR\n@BarShaffer - \n\u05e6\u05d9\u05dc\u05d5\u05dd: \u05e8\u05d5\u05d9\u05d8\u05e8\u05e1 https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kann_news","name":"\u05db\u05d0\u05df - \u05d7\u05d3\u05e9\u05d5\u05ea","id":848511075935039492,"id_str":"848511075935039492","indices":[3,13]},{"screen_name":"BarShaffer","name":"Bar - Shaffer \u05d1\u05e8 \u05e9\u05e4\u05e8 \u30d0\u30fc\u30b7\u30e3\u30d5\u30a1\u30fc","id":1124705140919943168,"id_str":"1124705140919943168","indices":[99,110]}],"urls":[{"url":"https:\/\/t.co\/P2EQakn8PR","expanded_url":"https:\/\/bit.ly\/3IGflPw","display_url":"bit.ly\/3IGflPw","indices":[75,98]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:42:12 +0000 2022","id":1507050159410196487,"id_str":"1507050159410196487","text":"\u05d1\u05d9\u05d9\u05d3\u05df - \u05de\u05d0\u05d9\u05d9\u05dd \u05e2\u05dc \u05e4\u05d5\u05d8\u05d9\u05df: - \u05d0\u05dd \u05e8\u05d5\u05e1\u05d9\u05d4 \u05ea\u05e9\u05ea\u05de\u05e9 - \u05d1\u05e0\u05e9\u05e7 \u05db\u05d9\u05de\u05d9 - \u05e0\u05d2\u05d9\u05d1 - \u05d1\u05d4\u05ea\u05d0\u05dd\nhttps:\/\/t.co\/P2EQakn8PR\n@BarShaffer \n\u05e6\u05d9\u05dc\u05d5\u05dd: - \u05e8\u05d5\u05d9\u05d8\u05e8\u05e1 https:\/\/t.co\/Eq2GjIIDcu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarShaffer","name":"Bar - Shaffer \u05d1\u05e8 \u05e9\u05e4\u05e8 \u30d0\u30fc\u30b7\u30e3\u30d5\u30a1\u30fc","id":1124705140919943168,"id_str":"1124705140919943168","indices":[84,95]}],"urls":[{"url":"https:\/\/t.co\/P2EQakn8PR","expanded_url":"https:\/\/bit.ly\/3IGflPw","display_url":"bit.ly\/3IGflPw","indices":[60,83]}],"media":[{"id":1507050083921149956,"id_str":"1507050083921149956","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoeEQ7XwAQ04q9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoeEQ7XwAQ04q9.jpg","url":"https:\/\/t.co\/Eq2GjIIDcu","display_url":"pic.twitter.com\/Eq2GjIIDcu","expanded_url":"https:\/\/twitter.com\/kann_news\/status\/1507050159410196487\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1620,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507050083921149956,"id_str":"1507050083921149956","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoeEQ7XwAQ04q9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoeEQ7XwAQ04q9.jpg","url":"https:\/\/t.co\/Eq2GjIIDcu","display_url":"pic.twitter.com\/Eq2GjIIDcu","expanded_url":"https:\/\/twitter.com\/kann_news\/status\/1507050159410196487\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1620,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"iw"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"iw"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500208215405043716\/i-P_ttiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500208215405043716\/i-P_ttiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1124705140919943168\/1646758700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1091443098033573889,"id_str":"1091443098033573889","name":"Dallas sheer - legs","screen_name":"LegsSheer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":4616,"listed_count":3,"created_at":"Fri - Feb 01 21:08:07 +0000 2019","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7827,"lang":null,"status":{"created_at":"Fri - Apr 16 19:47:20 +0000 2021","id":1383145002952445957,"id_str":"1383145002952445957","text":"Good - https:\/\/t.co\/5lAJJcRWsp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5lAJJcRWsp","expanded_url":"https:\/\/twitter.com\/Olivia_J05\/status\/1383144506904641537","display_url":"twitter.com\/Olivia_J05\/sta\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1383144506904641537,"quoted_status_id_str":"1383144506904641537","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1091848347961446406\/7gd2rl5Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1091848347961446406\/7gd2rl5Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1103843860218810368,"id_str":"1103843860218810368","name":"( - \u0361\u00b0 \u035c\u0296 \u0361\u00b0)\u2730 \ud83c\uddf9\ud83c\uddf9","screen_name":"sayumiimi","location":"South - London","description":"oh well \ud83d\udc9a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":396,"friends_count":458,"listed_count":1,"created_at":"Fri - Mar 08 02:24:19 +0000 2019","favourites_count":23071,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6687,"lang":null,"status":{"created_at":"Sat - Mar 26 00:42:29 +0000 2022","id":1507518317866754056,"id_str":"1507518317866754056","text":"RT - @taylorclipes: taylor swift slipping and pretending nothing happened https:\/\/t.co\/4HdRllXQWG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taylorclipes","name":"taylor - swift videos","id":1472250848382271489,"id_str":"1472250848382271489","indices":[3,16]}],"urls":[],"media":[{"id":1507434484811116551,"id_str":"1507434484811116551","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","url":"https:\/\/t.co\/4HdRllXQWG","display_url":"pic.twitter.com\/4HdRllXQWG","expanded_url":"https:\/\/twitter.com\/taylorclipes2\/status\/1507434553555755013\/video\/1","type":"photo","sizes":{"medium":{"w":828,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":373,"resize":"fit"},"large":{"w":828,"h":454,"resize":"fit"}},"source_status_id":1507434553555755013,"source_status_id_str":"1507434553555755013","source_user_id":1483620117971939333,"source_user_id_str":"1483620117971939333"}]},"extended_entities":{"media":[{"id":1507434484811116551,"id_str":"1507434484811116551","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","url":"https:\/\/t.co\/4HdRllXQWG","display_url":"pic.twitter.com\/4HdRllXQWG","expanded_url":"https:\/\/twitter.com\/taylorclipes2\/status\/1507434553555755013\/video\/1","type":"video","sizes":{"medium":{"w":828,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":373,"resize":"fit"},"large":{"w":828,"h":454,"resize":"fit"}},"source_status_id":1507434553555755013,"source_status_id_str":"1507434553555755013","source_user_id":1483620117971939333,"source_user_id_str":"1483620117971939333","video_info":{"aspect_ratio":[414,227],"duration_millis":6243,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/vid\/492x270\/E30VB6MyCKoRSzLk.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/vid\/828x454\/-kw2Lm26XLOoIIhB.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/pl\/hDN-sgfhEZ-XhagC.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:09:56 +0000 2022","id":1507434628688322561,"id_str":"1507434628688322561","text":"taylor - swift slipping and pretending nothing happened https:\/\/t.co\/4HdRllXQWG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507434484811116551,"id_str":"1507434484811116551","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","url":"https:\/\/t.co\/4HdRllXQWG","display_url":"pic.twitter.com\/4HdRllXQWG","expanded_url":"https:\/\/twitter.com\/taylorclipes2\/status\/1507434553555755013\/video\/1","type":"photo","sizes":{"medium":{"w":828,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":373,"resize":"fit"},"large":{"w":828,"h":454,"resize":"fit"}},"source_status_id":1507434553555755013,"source_status_id_str":"1507434553555755013","source_user_id":1483620117971939333,"source_user_id_str":"1483620117971939333"}]},"extended_entities":{"media":[{"id":1507434484811116551,"id_str":"1507434484811116551","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507434484811116551\/pu\/img\/TVJGdxtZbyyGq18y.jpg","url":"https:\/\/t.co\/4HdRllXQWG","display_url":"pic.twitter.com\/4HdRllXQWG","expanded_url":"https:\/\/twitter.com\/taylorclipes2\/status\/1507434553555755013\/video\/1","type":"video","sizes":{"medium":{"w":828,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":373,"resize":"fit"},"large":{"w":828,"h":454,"resize":"fit"}},"source_status_id":1507434553555755013,"source_status_id_str":"1507434553555755013","source_user_id":1483620117971939333,"source_user_id_str":"1483620117971939333","video_info":{"aspect_ratio":[414,227],"duration_millis":6243,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/vid\/492x270\/E30VB6MyCKoRSzLk.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/vid\/828x454\/-kw2Lm26XLOoIIhB.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507434484811116551\/pu\/pl\/hDN-sgfhEZ-XhagC.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":489,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378147703272710146\/D775mBTS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378147703272710146\/D775mBTS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1103843860218810368\/1643372022","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":241742751,"id_str":"241742751","name":"Tyler - Fairleigh","screen_name":"tyler_fairleigh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":5005,"listed_count":0,"created_at":"Sun - Jan 23 01:31:59 +0000 2011","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Dec 19 18:54:50 +0000 2019","id":1207736060886896640,"id_str":"1207736060886896640","text":"RT - @rgoodlaw: .@mkraju, I respectfully disagree.\n\n@SpeakerPelosi described - what a fair trial is not (quoting McConnell\u2019s own words about hi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rgoodlaw","name":"Ryan - Goodman","id":1171109054,"id_str":"1171109054","indices":[3,12]},{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[15,22]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[50,64]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 19 03:34:34 +0000 2019","id":1207504468759236608,"id_str":"1207504468759236608","text":".@mkraju, - I respectfully disagree.\n\n@SpeakerPelosi described what a fair trial is - not (quoting McConnell\u2019s own word\u2026 https:\/\/t.co\/jamXt2OwI5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[1,8]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[36,50]}],"urls":[{"url":"https:\/\/t.co\/jamXt2OwI5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1207504468759236608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1207488197879578624,"quoted_status_id_str":"1207488197879578624","retweet_count":404,"favorite_count":1487,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1207488197879578624,"quoted_status_id_str":"1207488197879578624","retweet_count":404,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":890721780729393152,"id_str":"890721780729393152","name":"Keoni - Makani","screen_name":"MakaniKeoni","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":619,"listed_count":0,"created_at":"Thu - Jul 27 23:53:16 +0000 2017","favourites_count":2163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2647,"lang":null,"status":{"created_at":"Fri - Mar 25 23:09:51 +0000 2022","id":1507495002712076289,"id_str":"1507495002712076289","text":"@RepKatiePorter - Why wasn''t this fixed w\/ the earlier patches made in early 2021? I was - surprised to learn that tho\u2026 https:\/\/t.co\/klvpUIE9TZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepKatiePorter","name":"Rep. - Katie Porter","id":1081222837459996672,"id_str":"1081222837459996672","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/klvpUIE9TZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507495002712076289","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507493194589687926,"in_reply_to_status_id_str":"1507493194589687926","in_reply_to_user_id":1081222837459996672,"in_reply_to_user_id_str":"1081222837459996672","in_reply_to_screen_name":"RepKatiePorter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025328079965581312\/jvK0YB-R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025328079965581312\/jvK0YB-R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1085994883935059968,"id_str":"1085994883935059968","name":"Jamalito - De Smartaz\ud83d\udca6","screen_name":"10jamalito","location":"Garissa,kenya","description":"Your - Time is up! My Time is Now!\ud83d\ude0d","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":523,"friends_count":969,"listed_count":0,"created_at":"Thu - Jan 17 20:18:51 +0000 2019","favourites_count":47849,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":823,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085995305890447361\/aHjyKpLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085995305890447361\/aHjyKpLC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1085994883935059968\/1606428980","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":454936943,"id_str":"454936943","name":"Tsakiroglou - Tassos","screen_name":"ttsakir","location":"Athens","description":"\u0391\u03c1\u03c7\u03b9\u03c3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2 - \u03c3\u03c4\u03b7\u03bd \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1 - \u03c4\u03b7\u03c2 \u0395\u03c6\u03b7\u03bc\u03b5\u03c1\u03af\u03b4\u03b1\u03c2 - \u03c4\u03c9\u03bd \u03a3\u03c5\u03bd\u03c4\u03b1\u03ba\u03c4\u03ce\u03bd - https:\/\/t.co\/1PzoKQFmYV. \u0398\u03b7\u03c4\u03b5\u03af\u03b1 \u03c3\u03b5 - Flash 96, \u0395\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03bf\u03c4\u03c5\u03c0\u03af\u03b1, - https:\/\/t.co\/adOEdvOlAc, \u03c0\u03b5\u03c1\u03b9\u03bf\u03b4\u03b9\u03ba\u03cc - \u039c\u039f\u039d\u039f.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/1PzoKQFmYV","expanded_url":"http:\/\/efsyn.gr","display_url":"efsyn.gr","indices":[59,82]},{"url":"https:\/\/t.co\/adOEdvOlAc","expanded_url":"http:\/\/enet.gr","display_url":"enet.gr","indices":[119,142]}]}},"protected":false,"followers_count":1973,"friends_count":1967,"listed_count":50,"created_at":"Wed - Jan 04 15:13:33 +0000 2012","favourites_count":502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5705,"lang":null,"status":{"created_at":"Thu - Mar 24 14:30:33 +0000 2022","id":1507001931536887814,"id_str":"1507001931536887814","text":"\u03a4\u03b9 - \u03bc\u03bf\u03c5 \u03b8\u03c5\u03bc\u03af\u03b6\u03b5\u03b9;\n https:\/\/t.co\/8APEfxnUiU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8APEfxnUiU","expanded_url":"https:\/\/www.efsyn.gr\/politiki\/paraskinia\/337113_odigia-boridi-gia-tis-anartomenes-simaies-apo-alles-epohes","display_url":"efsyn.gr\/politiki\/paras\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832271534668578818\/yynNO0SC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832271534668578818\/yynNO0SC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454936943\/1487263942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253582600460890113,"id_str":"1253582600460890113","name":"Manek - PATEL","screen_name":"MANEK9999","location":"","description":"\u201cAsk not - what your Country can do for you ~ Ask what you can do for your Country \u201c","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":5000,"listed_count":0,"created_at":"Fri - Apr 24 07:12:48 +0000 2020","favourites_count":5980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":441,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303265393654394880\/rlDSYz_h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303265393654394880\/rlDSYz_h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253582600460890113\/1610609663","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299725383714189312,"id_str":"1299725383714189312","name":"richard - frost","screen_name":"richard69493049","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":113,"listed_count":0,"created_at":"Sat - Aug 29 15:08:31 +0000 2020","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - Oct 01 20:49:22 +0000 2021","id":1444041774775914501,"id_str":"1444041774775914501","text":"Whitmer: - Michigan Wasn\u2019t Given Shot At New Ford EV Plants \u2013 CBS Detroit https:\/\/detroit - https:\/\/t.co\/wviSz5jU3w","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wviSz5jU3w","expanded_url":"http:\/\/John.cbslocal.com\/2021\/10\/01\/whitmer-michigan-wasnt-given-shot-at-new-ford-ev-plants\/","display_url":"John.cbslocal.com\/2021\/10\/01\/whi\u2026","indices":[88,111]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288072168157388800,"id_str":"1288072168157388800","name":"Russell - Baker","screen_name":"Russell68976900","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":27,"listed_count":0,"created_at":"Tue - Jul 28 11:22:20 +0000 2020","favourites_count":234,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288072448034963457\/rqyWBQc3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288072448034963457\/rqyWBQc3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241781947266891788,"id_str":"1241781947266891788","name":"Deangelo - Vickers","screen_name":"DeangeloVicke16","location":"","description":"the - blind leading the blind","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":1264,"listed_count":0,"created_at":"Sun - Mar 22 17:41:14 +0000 2020","favourites_count":3595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Tue - Feb 08 21:44:48 +0000 2022","id":1491166144379908098,"id_str":"1491166144379908098","text":"@UberFacts - working everyday","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UberFacts","name":"UberFacts","id":95023423,"id_str":"95023423","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1491160664466935813,"in_reply_to_status_id_str":"1491160664466935813","in_reply_to_user_id":95023423,"in_reply_to_user_id_str":"95023423","in_reply_to_screen_name":"UberFacts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241782266336026624\/25b5i2fc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241782266336026624\/25b5i2fc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1095676009494573056,"id_str":"1095676009494573056","name":"Asad - Shoukat Iqbal","screen_name":"AsadShoukatIqb7","location":"Lahore, Pakistan","description":"Pakistani - Christian\u2066 \ud83c\uddf5\ud83c\uddf0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":2957,"listed_count":0,"created_at":"Wed - Feb 13 13:28:12 +0000 2019","favourites_count":3489,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":512,"lang":null,"status":{"created_at":"Tue - Oct 19 06:15:45 +0000 2021","id":1450344900604608512,"id_str":"1450344900604608512","text":"@MazharAbbasFan - \u062c\u06cc \u0636\u0631\u0648\u0631 \u06d4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1448884271477841937,"in_reply_to_status_id_str":"1448884271477841937","in_reply_to_user_id":601640591,"in_reply_to_user_id_str":"601640591","in_reply_to_screen_name":"ImranRiazFanAcc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158051933946601472\/BxQaswfD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158051933946601472\/BxQaswfD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095676009494573056\/1595260029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":336725489,"id_str":"336725489","name":"JSanderson","screen_name":"JohnSanderson88","location":"Seattle, - Washington","description":"Moderately liberal (yeah, we exist) Fmr Chicagoan. - Love: lit; world football; Rome; @ManUtd for 35+ yrs; my beautiful First Hill - neighborhood & city, Seattle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":770,"friends_count":1695,"listed_count":9,"created_at":"Sat - Jul 16 20:06:45 +0000 2011","favourites_count":43339,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44501,"lang":null,"status":{"created_at":"Sat - Mar 26 09:31:21 +0000 2022","id":1507651410866757639,"id_str":"1507651410866757639","text":"@jesflres - Well, yeah\u2026\nMe \nThankfully","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"AD0A0A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441693865560330241\/p_qGgEnS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441693865560330241\/p_qGgEnS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336725489\/1646000444","profile_link_color":"ABAB20","profile_sidebar_border_color":"022330","profile_sidebar_fill_color":"020505","profile_text_color":"B3B31E","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":728251929609048064,"id_str":"728251929609048064","name":"Margrit - Hutchinson","screen_name":"MARGRITHutchin3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":64,"listed_count":0,"created_at":"Thu - May 05 15:56:05 +0000 2016","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Jan 23 17:15:35 +0000 2017","id":823579948506038272,"id_str":"823579948506038272","text":"The - Reason Why Booker and the Big Pharma Dems Have No Excuse https:\/\/t.co\/wQwKnfIeuS - via @BillMoyersHQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillMoyersHQ","name":"BillMoyersHQ","id":885390841950478336,"id_str":"885390841950478336","indices":[89,102]}],"urls":[{"url":"https:\/\/t.co\/wQwKnfIeuS","expanded_url":"http:\/\/bit.ly\/2iWyvdd","display_url":"bit.ly\/2iWyvdd","indices":[61,84]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300218673592967171\/DtaH42vw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300218673592967171\/DtaH42vw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":99387215,"id_str":"99387215","name":"LJ","screen_name":"ljaggi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":949,"listed_count":0,"created_at":"Sat - Dec 26 00:25:33 +0000 2009","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":617410190,"id_str":"617410190","name":"Mary - L. Martin","screen_name":"MaryLMartin1","location":"","description":"Masters - in Public Admin in Health Care Admin from Pace University.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":169,"listed_count":0,"created_at":"Sun - Jun 24 19:44:27 +0000 2012","favourites_count":26553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17596,"lang":null,"status":{"created_at":"Sat - Mar 26 08:35:24 +0000 2022","id":1507637327321042947,"id_str":"1507637327321042947","text":"RT - @KatiePhang: @jesflres It\u2019s fascinating to see so many responses in the - affirmative. Kind of makes you believe in science and medicine,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KatiePhang","name":"Katie - S. Phang","id":1286161147,"id_str":"1286161147","indices":[3,14]},{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[16,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:09:40 +0000 2022","id":1507540255339163651,"id_str":"1507540255339163651","text":"@jesflres - It\u2019s fascinating to see so many responses in the affirmative. Kind of - makes you believe in science and m\u2026 https:\/\/t.co\/5rtlmam4L6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/5rtlmam4L6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507540255339163651","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507536206590099468,"in_reply_to_status_id_str":"1507536206590099468","in_reply_to_user_id":1286161147,"in_reply_to_user_id_str":"1286161147","in_reply_to_screen_name":"KatiePhang","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":408,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216317415497392128,"id_str":"1216317415497392128","name":"Onemanvoice","screen_name":"Onemanvoice1","location":"","description":"I - am trying to find away to make sure my voice is heard and my vote counts!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":289,"listed_count":0,"created_at":"Sun - Jan 12 11:14:47 +0000 2020","favourites_count":1869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4173,"lang":null,"status":{"created_at":"Wed - Jan 12 17:42:36 +0000 2022","id":1481320720592482304,"id_str":"1481320720592482304","text":"Prominent - QAnon anti-vaxxer who called for Anthony Fauci\u2019s execution dies of COVID-19\nhttps:\/\/t.co\/s4xdmLb3K9\n\nDown\u2026 - https:\/\/t.co\/R7ZVoKZ5GW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s4xdmLb3K9","expanded_url":"http:\/\/opr.news\/4b6d8c38220110en_us?link=1&client=news","display_url":"opr.news\/4b6d8c38220110\u2026","indices":[86,109]},{"url":"https:\/\/t.co\/R7ZVoKZ5GW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1481320720592482304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216318038838063105\/JuEEc-32_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216318038838063105\/JuEEc-32_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14777973,"id_str":"14777973","name":"darrylsj","screen_name":"darrylsj","location":"Bay - Area","description":"Search, Wifi , VoIP, kids, dog , iPhone living in Danville - the commute. Tweets are my own.","url":"https:\/\/t.co\/lXbjvnf76P","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lXbjvnf76P","expanded_url":"http:\/\/google.com\/saves","display_url":"google.com\/saves","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":320,"friends_count":1408,"listed_count":12,"created_at":"Wed - May 14 20:16:15 +0000 2008","favourites_count":642,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1436,"lang":null,"status":{"created_at":"Thu - Mar 24 21:21:29 +0000 2022","id":1507105343163154454,"id_str":"1507105343163154454","text":"I - just upvoted @SerenaWilliams to speak @TheAllInPod Summit on May 15-17, 2022 - with the besties @chamath @jason\u2026 https:\/\/t.co\/DNliw29qtr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"serenawilliams","name":"Serena - Williams","id":26589987,"id_str":"26589987","indices":[15,30]},{"screen_name":"theallinpod","name":"The - All-In Podcast \ud83d\udca7\ud83d\udc26","id":1234260054368342016,"id_str":"1234260054368342016","indices":[40,52]},{"screen_name":"chamath","name":"Chamath - Palihapitiya","id":3291691,"id_str":"3291691","indices":[96,104]},{"screen_name":"Jason","name":"@jason - calacanis","id":3840,"id_str":"3840","indices":[105,111]}],"urls":[{"url":"https:\/\/t.co\/DNliw29qtr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507105343163154454","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484429789486141440\/kY3kflB__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484429789486141440\/kY3kflB__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14777973\/1642750689","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1285497478322814977,"id_str":"1285497478322814977","name":"rcutzangu","screen_name":"rcut2020","location":"","description":"Tourism - Expert,social entrepreneur,leisure planner and daddys last son\ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":641,"listed_count":0,"created_at":"Tue - Jul 21 08:51:56 +0000 2020","favourites_count":1119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":102,"lang":null,"status":{"created_at":"Thu - Jan 27 10:21:24 +0000 2022","id":1486645508760297482,"id_str":"1486645508760297482","text":"@samuelmway - real shot","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"samuelmway","name":"SAMKICHEKO","id":1383150761941606402,"id_str":"1383150761941606402","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486607943466369028,"in_reply_to_status_id_str":"1486607943466369028","in_reply_to_user_id":1383150761941606402,"in_reply_to_user_id_str":"1383150761941606402","in_reply_to_screen_name":"samuelmway","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285498290755248128\/EJfTOGJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285498290755248128\/EJfTOGJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1285497478322814977\/1642759938","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262836079448686592,"id_str":"1262836079448686592","name":"Rubix - kyub","screen_name":"MwaloTyler","location":"Carlifonia","description":"A - scientist..inventor ...creator","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":555,"listed_count":0,"created_at":"Tue - May 19 20:04:12 +0000 2020","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Sat - Mar 26 07:26:34 +0000 2022","id":1507620008687460355,"id_str":"1507620008687460355","text":"RT - @three_cube: Digital Forensics, : Unearthing Evidence from the Windows Registry - #registry #digitalforensics #dfir #evidence #cybersecuri\u2026","truncated":false,"entities":{"hashtags":[{"text":"registry","indices":[83,92]},{"text":"digitalforensics","indices":[93,110]},{"text":"dfir","indices":[111,116]},{"text":"evidence","indices":[117,126]}],"symbols":[],"user_mentions":[{"screen_name":"three_cube","name":"OccupytheWeb","id":443369826,"id_str":"443369826","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:03:06 +0000 2022","id":1507463107303514116,"id_str":"1507463107303514116","text":"Digital - Forensics, : Unearthing Evidence from the Windows Registry #registry #digitalforensics - #dfir #evidence\u2026 https:\/\/t.co\/tRc9swdjBO","truncated":true,"entities":{"hashtags":[{"text":"registry","indices":[67,76]},{"text":"digitalforensics","indices":[77,94]},{"text":"dfir","indices":[95,100]},{"text":"evidence","indices":[101,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tRc9swdjBO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507463107303514116","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":51,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269582374200905730\/bjzse3l-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269582374200905730\/bjzse3l-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1262836079448686592\/1591526998","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1040388023484121088,"id_str":"1040388023484121088","name":"Nwoguchuks","screen_name":"Nwoguchuks3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":2200,"listed_count":0,"created_at":"Thu - Sep 13 23:53:29 +0000 2018","favourites_count":5642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":270,"lang":null,"status":{"created_at":"Wed - Mar 23 12:36:54 +0000 2022","id":1506610940346830851,"id_str":"1506610940346830851","text":"RT - @ab5d8cb4414b404: https:\/\/t.co\/fuvR7SotgP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ab5d8cb4414b404","name":"Acho - Jacob","id":3447901153,"id_str":"3447901153","indices":[3,19]}],"urls":[],"media":[{"id":1506270138487783428,"id_str":"1506270138487783428","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","url":"https:\/\/t.co\/fuvR7SotgP","display_url":"pic.twitter.com\/fuvR7SotgP","expanded_url":"https:\/\/twitter.com\/ab5d8cb4414b404\/status\/1506270148176789506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506270148176789506,"source_status_id_str":"1506270148176789506","source_user_id":3447901153,"source_user_id_str":"3447901153"}]},"extended_entities":{"media":[{"id":1506270138487783428,"id_str":"1506270138487783428","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","url":"https:\/\/t.co\/fuvR7SotgP","display_url":"pic.twitter.com\/fuvR7SotgP","expanded_url":"https:\/\/twitter.com\/ab5d8cb4414b404\/status\/1506270148176789506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506270148176789506,"source_status_id_str":"1506270148176789506","source_user_id":3447901153,"source_user_id_str":"3447901153"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:02:43 +0000 2022","id":1506270148176789506,"id_str":"1506270148176789506","text":"https:\/\/t.co\/fuvR7SotgP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506270138487783428,"id_str":"1506270138487783428","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","url":"https:\/\/t.co\/fuvR7SotgP","display_url":"pic.twitter.com\/fuvR7SotgP","expanded_url":"https:\/\/twitter.com\/ab5d8cb4414b404\/status\/1506270148176789506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506270138487783428,"id_str":"1506270138487783428","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdYtdxXwAQ9pNd.jpg","url":"https:\/\/t.co\/fuvR7SotgP","display_url":"pic.twitter.com\/fuvR7SotgP","expanded_url":"https:\/\/twitter.com\/ab5d8cb4414b404\/status\/1506270148176789506\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":187,"favorite_count":142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":187,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":233815955,"id_str":"233815955","name":"Suhaimi - Yusop","screen_name":"shy012011","location":"Kuala Lumpur, Malaysia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":560,"listed_count":0,"created_at":"Tue - Jan 04 05:06:16 +0000 2011","favourites_count":28,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332720558\/Islamic_Wallpapers__72__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332720558\/Islamic_Wallpapers__72__normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312867448199184385,"id_str":"1312867448199184385","name":"Abdul - Hanan Aziz","screen_name":"AbdulHananAziz2","location":"Islamabad","description":"Bahria - University\nIslamabad","url":"https:\/\/t.co\/ayavW4Xr5T","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ayavW4Xr5T","expanded_url":"https:\/\/www.instagram.com\/abdulhananaziz\/?hl=en","display_url":"instagram.com\/abdulhananaziz\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":376,"listed_count":0,"created_at":"Sun - Oct 04 21:29:38 +0000 2020","favourites_count":256,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":228,"lang":null,"status":{"created_at":"Fri - Mar 04 18:18:53 +0000 2022","id":1499811634935517186,"id_str":"1499811634935517186","text":"RT - @MoveMeQuotes: It''s okay. https:\/\/t.co\/0c8EKhdLvS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MoveMeQuotes","name":"MoveMe - Quotes","id":200181099,"id_str":"200181099","indices":[3,16]}],"urls":[],"media":[{"id":1499548189510279173,"id_str":"1499548189510279173","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","url":"https:\/\/t.co\/0c8EKhdLvS","display_url":"pic.twitter.com\/0c8EKhdLvS","expanded_url":"https:\/\/twitter.com\/MoveMeQuotes\/status\/1499548192618205186\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":564,"h":757,"resize":"fit"},"medium":{"w":564,"h":757,"resize":"fit"}},"source_status_id":1499548192618205186,"source_status_id_str":"1499548192618205186","source_user_id":200181099,"source_user_id_str":"200181099"}]},"extended_entities":{"media":[{"id":1499548189510279173,"id_str":"1499548189510279173","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","url":"https:\/\/t.co\/0c8EKhdLvS","display_url":"pic.twitter.com\/0c8EKhdLvS","expanded_url":"https:\/\/twitter.com\/MoveMeQuotes\/status\/1499548192618205186\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":564,"h":757,"resize":"fit"},"medium":{"w":564,"h":757,"resize":"fit"}},"source_status_id":1499548192618205186,"source_status_id_str":"1499548192618205186","source_user_id":200181099,"source_user_id_str":"200181099"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 00:52:04 +0000 2022","id":1499548192618205186,"id_str":"1499548192618205186","text":"It''s - okay. https:\/\/t.co\/0c8EKhdLvS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499548189510279173,"id_str":"1499548189510279173","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","url":"https:\/\/t.co\/0c8EKhdLvS","display_url":"pic.twitter.com\/0c8EKhdLvS","expanded_url":"https:\/\/twitter.com\/MoveMeQuotes\/status\/1499548192618205186\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":564,"h":757,"resize":"fit"},"medium":{"w":564,"h":757,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499548189510279173,"id_str":"1499548189510279173","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM93IidXIAUfGB2.jpg","url":"https:\/\/t.co\/0c8EKhdLvS","display_url":"pic.twitter.com\/0c8EKhdLvS","expanded_url":"https:\/\/twitter.com\/MoveMeQuotes\/status\/1499548192618205186\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":680,"resize":"fit"},"large":{"w":564,"h":757,"resize":"fit"},"medium":{"w":564,"h":757,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2087,"favorite_count":6893,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2087,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502276345946013696\/Pm22ewsc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502276345946013696\/Pm22ewsc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312867448199184385\/1604773792","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":413680205,"id_str":"413680205","name":"Tresa - Simmons","screen_name":"Marvella_S","location":"Detroit, MI","description":"Loving - Life","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":101,"friends_count":520,"listed_count":0,"created_at":"Wed - Nov 16 04:21:42 +0000 2011","favourites_count":2147,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/702719048933642240\/BP2MkOtE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/702719048933642240\/BP2MkOtE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719444355,"id_str":"719444355","name":"Ally''Zorah - Vas Normandy \ud83c\uddfa\ud83c\udde6","screen_name":"background_sad_","location":"Florida, - USA","description":"quarian|bibliophile|ravenclaw|werewolf|Gaga\ud83d\udda4|Icon - Army|Eevee Master|Mercy Main|nerd|Losers Club|PoliSci\/CJ|Gamer|Mockingjay|INTJ|j\u2764\ufe0f|&more;","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":4058,"listed_count":9,"created_at":"Thu - Oct 17 17:39:11 +0000 2013","favourites_count":28568,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13183,"lang":null,"status":{"created_at":"Fri - Mar 25 23:50:58 +0000 2022","id":1507505349825335304,"id_str":"1507505349825335304","text":"@LeaderMcConnell - please just fucking kick the bucket already. no one will miss you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507092040617762818,"in_reply_to_status_id_str":"1507092040617762818","in_reply_to_user_id":1249982359,"in_reply_to_user_id_str":"1249982359","in_reply_to_screen_name":"LeaderMcConnell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351349198214598658\/2zCyWm9R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351349198214598658\/2zCyWm9R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719444355\/1620822122","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52829793,"id_str":"52829793","name":"Ann - Ross","screen_name":"annnr","location":"Metro St. Louis","description":"retired - party store entrepreneur, working to get women our half of elected offices","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":202,"listed_count":0,"created_at":"Wed - Jul 01 19:48:59 +0000 2009","favourites_count":2772,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":150,"lang":null,"status":{"created_at":"Mon - Mar 21 13:03:54 +0000 2022","id":1505892959757160448,"id_str":"1505892959757160448","text":"RT - @benjancewicz: Russian troops form a mob to arrest teenager Olga Misik while - she reads Article 31 of the Russian constitution that guara\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"benjancewicz","name":"Benjamin - Young Savage (\u1431\u14d0\u148b\u1431\u14d0)","id":14216617,"id_str":"14216617","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 03:11:03 +0000 2022","id":1505381376320847873,"id_str":"1505381376320847873","text":"Russian - troops form a mob to arrest teenager Olga Misik while she reads Article 31 - of the Russian constitution that\u2026 https:\/\/t.co\/iXbnyz8FEk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iXbnyz8FEk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505381376320847873","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38569,"favorite_count":190671,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":38569,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/293211702\/Ann_1-3-07_003_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/293211702\/Ann_1-3-07_003_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303429174388908032,"id_str":"1303429174388908032","name":"FREYJA - TAOISM","screen_name":"Chimavicky1","location":"Bisramganj, India","description":"ANY - IDIOT THAT IS AGAINST MAZI NNAMDI KANU WILL SURELY MEET UNTIMELY DEATH, AMADIOHA - OZUZU WILL SURELY STRIKE UWAZURUIKE, ASARI, UCHE MEFOR,TONY NNADI TO DEATH.","url":"https:\/\/t.co\/nSChfrONs6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nSChfrONs6","expanded_url":"http:\/\/www.truthmustbetold.com","display_url":"truthmustbetold.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":12,"listed_count":0,"created_at":"Tue - Sep 08 20:25:38 +0000 2020","favourites_count":330,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":622,"lang":null,"status":{"created_at":"Sun - Nov 29 14:07:39 +0000 2020","id":1333049991846187011,"id_str":"1333049991846187011","text":"@ElochukwuOhagi - @MBuhari Don''t mind the useless Nigerian calling that impostor Buhari","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElochukwuOhagi","name":"Elochukwu - Ohagi","id":135520892,"id_str":"135520892","indices":[0,15]},{"screen_name":"MBuhari","name":"Muhammadu - Buhari","id":2936714848,"id_str":"2936714848","indices":[16,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1332707118932238341,"in_reply_to_status_id_str":"1332707118932238341","in_reply_to_user_id":135520892,"in_reply_to_user_id_str":"135520892","in_reply_to_screen_name":"ElochukwuOhagi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332306586111410177\/oK_qeBF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332306586111410177\/oK_qeBF7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1303429174388908032\/1599601263","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":610170410,"id_str":"610170410","name":"#emylex007","screen_name":"Emylex007","location":"NIgeria","description":"am - just d guy next door","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":601,"listed_count":0,"created_at":"Sat - Jun 16 18:07:15 +0000 2012","favourites_count":83,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":489,"lang":null,"status":{"created_at":"Sun - Nov 08 01:14:28 +0000 2020","id":1325245267218755584,"id_str":"1325245267218755584","text":"Just - posted a video @ Nippon Grand Apartment & Suites Abuja https:\/\/t.co\/gAN0U40OFo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gAN0U40OFo","expanded_url":"https:\/\/www.instagram.com\/p\/CHT5inLDcOMZ8Yfc-RWM6YXFv4Gpg3oD_9eN5E0\/?igshid=1aruh2msl3m7y","display_url":"instagram.com\/p\/CHT5inLDcOMZ\u2026","indices":[64,87]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3192A3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164640435484221458\/zNZCJJ_N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164640435484221458\/zNZCJJ_N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610170410\/1566507158","profile_link_color":"5C9900","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1222492074584481792,"id_str":"1222492074584481792","name":"Dommy","screen_name":"Dommy59009055","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":269,"listed_count":0,"created_at":"Wed - Jan 29 12:10:49 +0000 2020","favourites_count":389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Dec 08 16:18:26 +0000 2020","id":1336344396678172672,"id_str":"1336344396678172672","text":"@iam_prodsonke - \ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iam_prodsonke","name":"The - Prodigal Son\ud83e\udd32","id":1264645527913877511,"id_str":"1264645527913877511","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1336334802312544256,"in_reply_to_status_id_str":"1336334802312544256","in_reply_to_user_id":1264645527913877511,"in_reply_to_user_id_str":"1264645527913877511","in_reply_to_screen_name":"iam_prodsonke","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324371590801444864\/x84c08oR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324371590801444864\/x84c08oR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":235221294,"id_str":"235221294","name":"Saras - Saxena","screen_name":"SrsRulz","location":"","description":"HR Business Partner - Dr. Reddy''s l XLRI Jamshedpur HRM''20","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":814,"listed_count":3,"created_at":"Fri - Jan 07 17:13:06 +0000 2011","favourites_count":56668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":554,"lang":null,"status":{"created_at":"Sat - Mar 26 03:30:33 +0000 2022","id":1507560613161349125,"id_str":"1507560613161349125","text":"RT - @saxena_puru: Demographia International Housing Affordability -\n\nHong Kong - property is in an enormous bubble! If history is any guide, t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"saxena_puru","name":"Puru - Saxena","id":1033127171298975744,"id_str":"1033127171298975744","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:13:00 +0000 2022","id":1507556194122022917,"id_str":"1507556194122022917","text":"Demographia - International Housing Affordability -\n\nHong Kong property is in an enormous - bubble! If history is any g\u2026 https:\/\/t.co\/KQn854rRmn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KQn854rRmn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507556194122022917","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":209,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270193170505031680\/kGS01VTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270193170505031680\/kGS01VTt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":807994134,"id_str":"807994134","name":"Ubon - Isang","screen_name":"Ubon_Isang","location":"Texas, USA. Nigeria","description":"https:\/\/t.co\/5bFmnB0mw7, - https:\/\/t.co\/5qGwfVLzLu, Entrepreneur, Ed.D Candidate| Performance Managements| - O.D. |Human Resources (HRM)| I.O.P| Future Philanthropist. #NotTooYoungtoRun","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/5bFmnB0mw7","expanded_url":"http:\/\/B.Sc","display_url":"B.Sc","indices":[0,23]},{"url":"https:\/\/t.co\/5qGwfVLzLu","expanded_url":"http:\/\/M.Sc","display_url":"M.Sc","indices":[25,48]}]}},"protected":false,"followers_count":1963,"friends_count":3097,"listed_count":11,"created_at":"Fri - Sep 07 02:08:01 +0000 2012","favourites_count":32173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12366,"lang":null,"status":{"created_at":"Fri - Mar 25 19:51:41 +0000 2022","id":1507445132441886722,"id_str":"1507445132441886722","text":"RT - @OccupyDemocrats: BREAKING: In a HUGE loss for Republican Senators Tom Cotton, - Ted Cruz, Lindsay Graham, and Josh Hawley, officials from\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:49:24 +0000 2022","id":1507097272030482436,"id_str":"1507097272030482436","text":"BREAKING: - In a HUGE loss for Republican Senators Tom Cotton, Ted Cruz, Lindsay Graham, - and Josh Hawley, officials f\u2026 https:\/\/t.co\/ANbLqubnPk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ANbLqubnPk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507097272030482436","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23497,"favorite_count":64984,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23497,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384633342310629377\/5hh3hPdL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384633342310629377\/5hh3hPdL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266694818241093634,"id_str":"1266694818241093634","name":"Felix - Maza Rizzya","screen_name":"FelixRizzya","location":"Mombasa","description":"Distributor - of health care products, teacher, critical, family Man,enjoys entertainment, - love Allah","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":47,"listed_count":0,"created_at":"Sat - May 30 11:36:53 +0000 2020","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":289,"lang":null,"status":{"created_at":"Sat - Jul 03 05:01:46 +0000 2021","id":1411188394571468801,"id_str":"1411188394571468801","text":"He - went to TZ@ the burial of MAGUFULI ,Now @ Zambia burial of#KK. He speaks well - about democracy and freedom but wh\u2026 https:\/\/t.co\/qZkesiAZwX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qZkesiAZwX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1411188394571468801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1410900220242763778,"quoted_status_id_str":"1410900220242763778","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403935405507026947\/8LEljwHr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403935405507026947\/8LEljwHr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266694818241093634\/1623559356","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2231141910,"id_str":"2231141910","name":"Crystl38a - Plant a tree & Stop eating meat.","screen_name":"crystl38a","location":"USA","description":"Advocate, - Voice to the ignored, Defender of the suppressed and champion for freedom - of the caged and enslaved","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":788,"friends_count":773,"listed_count":0,"created_at":"Thu - Dec 05 08:19:40 +0000 2013","favourites_count":24685,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9671,"lang":null,"status":{"created_at":"Thu - Jan 20 08:44:54 +0000 2022","id":1484084507519057922,"id_str":"1484084507519057922","text":"@elektra6618 - What really hurts is that we planned working to full retirement age and then - some. But forced from goo\u2026 https:\/\/t.co\/z4N7iZ5YZF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elektra6618","name":"Elektra","id":20518946,"id_str":"20518946","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/z4N7iZ5YZF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484084507519057922","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1483587996775559172,"in_reply_to_status_id_str":"1483587996775559172","in_reply_to_user_id":20518946,"in_reply_to_user_id_str":"20518946","in_reply_to_screen_name":"elektra6618","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481229226132992004\/0nbEh3NH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481229226132992004\/0nbEh3NH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231141910\/1529356144","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":923257413809115136,"id_str":"923257413809115136","name":"hausaYoruba","screen_name":"KamalMSani2","location":"Lagos, - Nigeria","description":"in-sha Allah \ud83e\udd32","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":537,"friends_count":4981,"listed_count":1,"created_at":"Wed - Oct 25 18:38:15 +0000 2017","favourites_count":4464,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":745,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389276086014554116\/5tTTf4se_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389276086014554116\/5tTTf4se_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/923257413809115136\/1585216544","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265612693484027904,"id_str":"1265612693484027904","name":"Alex - Kiwewa","screen_name":"AlexKiwewa","location":"","description":"Lawyer, Express - fc,Arsenal,Lakers fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":511,"friends_count":822,"listed_count":1,"created_at":"Wed - May 27 11:56:12 +0000 2020","favourites_count":38650,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":470,"lang":null,"status":{"created_at":"Fri - Mar 25 10:35:09 +0000 2022","id":1507305078364987397,"id_str":"1507305078364987397","text":"RT - @Fact: Marijuana is the oldest natural, purest, and healthiest pain relief - medication in the world. It''s use dates back to 10 B.C.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fact","name":"Fact","id":2425231,"id_str":"2425231","indices":[3,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:31:30 +0000 2022","id":1507304156889030658,"id_str":"1507304156889030658","text":"Marijuana - is the oldest natural, purest, and healthiest pain relief medication in the - world. It''s use dates back to 10 B.C.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/app.socialpilot.co\/\" rel=\"nofollow\"\u003eSocialPilot.co\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":485,"favorite_count":1855,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":485,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391359321154506752\/1gc2KWVh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391359321154506752\/1gc2KWVh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245379054204866567,"id_str":"1245379054204866567","name":"Sherobarbie","screen_name":"sherobarbie","location":"Sierra - Leone","description":"Allah is Great!!\nA young aspiring Philosopher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":793,"listed_count":0,"created_at":"Wed - Apr 01 15:55:08 +0000 2020","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Fri - May 15 23:58:23 +0000 2020","id":1261445855703228416,"id_str":"1261445855703228416","text":"#NewProfilePic - https:\/\/t.co\/2rjCTY4tPp","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1261445847075696640,"id_str":"1261445847075696640","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EYGOUIJWsAAtB8Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYGOUIJWsAAtB8Z.jpg","url":"https:\/\/t.co\/2rjCTY4tPp","display_url":"pic.twitter.com\/2rjCTY4tPp","expanded_url":"https:\/\/twitter.com\/sherobarbie\/status\/1261445855703228416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1261445847075696640,"id_str":"1261445847075696640","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EYGOUIJWsAAtB8Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYGOUIJWsAAtB8Z.jpg","url":"https:\/\/t.co\/2rjCTY4tPp","display_url":"pic.twitter.com\/2rjCTY4tPp","expanded_url":"https:\/\/twitter.com\/sherobarbie\/status\/1261445855703228416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267855144613445632\/4orE1NOI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267855144613445632\/4orE1NOI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245379054204866567\/1586642204","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276168357184778240,"id_str":"1276168357184778240","name":"Awais - Ahmed","screen_name":"AwaisAh48982583","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":1177,"listed_count":0,"created_at":"Thu - Jun 25 15:00:33 +0000 2020","favourites_count":4081,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Apr 27 18:04:09 +0000 2021","id":1387105299014635522,"id_str":"1387105299014635522","text":"RT - @SocialDigitally: \u0648\u0641\u0627\u0642\u06cc \u0648\u0632\u06cc\u0631 - \u0642\u0627\u0646\u0648\u0646 \u0641\u0631\u0648\u063a \u0646\u0633\u06cc\u0645 - \u0627\u0648\u0631 \u0688\u0627\u06a9\u0679\u0631 \u0627\u0634\u0641\u0627\u0642 - \u06a9\u0648 \u0633\u0645\u062c\u06be\u0627\u06cc\u0627 \u062a\u06be\u0627 - \u06a9\u06c1 \u0642\u0627\u0636\u06cc \u0641\u0627\u0626\u06cc\u0632 \u0639\u06cc\u0633\u06cc - \u06a9\u06cc\u062e\u0644\u0627\u0641 \u062c\u0648 \u06a9\u0686\u06be \u0622\u067e - \u0644\u0648\u06af \u06a9\u0631\u0646\u0627 \u0686\u0627\u06c1\u062a\u06d2 - \u06c1\u0648 \u0627\u06cc\u0633\u0627 \u0646\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SocialDigitally","name":"Raza - Butt \ud83c\udf99\ufe0f","id":2745625247,"id_str":"2745625247","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 27 17:21:35 +0000 2021","id":1387094588939251715,"id_str":"1387094588939251715","text":"\u0648\u0641\u0627\u0642\u06cc - \u0648\u0632\u06cc\u0631 \u0642\u0627\u0646\u0648\u0646 \u0641\u0631\u0648\u063a - \u0646\u0633\u06cc\u0645 \u0627\u0648\u0631 \u0688\u0627\u06a9\u0679\u0631 - \u0627\u0634\u0641\u0627\u0642 \u06a9\u0648 \u0633\u0645\u062c\u06be\u0627\u06cc\u0627 - \u062a\u06be\u0627 \u06a9\u06c1 \u0642\u0627\u0636\u06cc \u0641\u0627\u0626\u06cc\u0632 - \u0639\u06cc\u0633\u06cc \u06a9\u06cc\u062e\u0644\u0627\u0641 \u062c\u0648 - \u06a9\u0686\u06be \u0622\u067e \u0644\u0648\u06af \u06a9\u0631\u0646\u0627 - \u0686\u0627\u06c1\u062a\u06d2 \u06c1\u0648 \u0627\u06cc\u0633\u2026 https:\/\/t.co\/ScuIVJQ3fd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ScuIVJQ3fd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1387094588939251715","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":213,"favorite_count":497,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":213,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351601203445116929\/KzF6ILmV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351601203445116929\/KzF6ILmV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240946770164756480,"id_str":"1240946770164756480","name":"Murphy","screen_name":"Murphy00103063","location":"Adenta - ","description":"my color","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":812,"listed_count":0,"created_at":"Fri - Mar 20 10:22:36 +0000 2020","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Wed - Mar 10 18:16:24 +0000 2021","id":1369713767462866944,"id_str":"1369713767462866944","text":"@JoanLaportaFCB - El presidente","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoanLaportaFCB","name":"Joan - Laporta Estruch\ud83c\udf97","id":112451668,"id_str":"112451668","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1369710683500199947,"in_reply_to_status_id_str":"1369710683500199947","in_reply_to_user_id":112451668,"in_reply_to_user_id_str":"112451668","in_reply_to_screen_name":"JoanLaportaFCB","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262663885884133376\/VJCzbOgs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262663885884133376\/VJCzbOgs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":857045301378592768,"id_str":"857045301378592768","name":"Jennifer - Jonathan","screen_name":"RitaRasha","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":94,"friends_count":1049,"listed_count":0,"created_at":"Wed - Apr 26 01:34:57 +0000 2017","favourites_count":10748,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5577,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465819880574361600\/In-LyB4a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465819880574361600\/In-LyB4a_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252021497197203457,"id_str":"1252021497197203457","name":"Yasir - Ibrahim","screen_name":"YasirIb59065165","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":120,"listed_count":0,"created_at":"Sun - Apr 19 23:49:46 +0000 2020","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Sat - May 29 05:56:25 +0000 2021","id":1398518571228147715,"id_str":"1398518571228147715","text":"@hadisirika - Ameen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hadisirika","name":"Hadi - Sirika","id":202572868,"id_str":"202572868","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1398445425204543489,"in_reply_to_status_id_str":"1398445425204543489","in_reply_to_user_id":202572868,"in_reply_to_user_id_str":"202572868","in_reply_to_screen_name":"hadisirika","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29983755,"id_str":"29983755","name":"Nakul - Jindal","screen_name":"nakul02","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":1138,"listed_count":0,"created_at":"Thu - Apr 09 13:32:16 +0000 2009","favourites_count":3940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Wed - Jun 03 19:47:27 +0000 2020","id":1268268075880595456,"id_str":"1268268075880595456","text":"RT - @johnhanke: George Floyd, Ahmaud Arbery, Breonna Taylor, Tony McDade, Nina - Pop & countless other members of the Black community have bee\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnhanke","name":"John - Hanke","id":195633751,"id_str":"195633751","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 03 15:04:54 +0000 2020","id":1268196970536988673,"id_str":"1268196970536988673","text":"George - Floyd, Ahmaud Arbery, Breonna Taylor, Tony McDade, Nina Pop & countless - other members of the Black community\u2026 https:\/\/t.co\/YOC0Sf32eB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YOC0Sf32eB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1268196970536988673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1268196386454949888,"quoted_status_id_str":"1268196386454949888","retweet_count":127,"favorite_count":848,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1268196386454949888,"quoted_status_id_str":"1268196386454949888","retweet_count":127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819259101808988160\/u_d6bHww_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819259101808988160\/u_d6bHww_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172169319398035457,"id_str":"1172169319398035457","name":"Suhail - muhammad menk","screen_name":"BergSuhail","location":"mumbai","description":"\u0938\u0924\u094d\u092f - \u0915\u094b \u092a\u0930\u0947\u0936\u093e\u0928 \u0915\u093f\u092f\u093e - \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948 \u092a\u0930\u093e\u091c\u093f\u0924 - \u0928\u0939\u0940\u0902\u0964","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":1121,"listed_count":0,"created_at":"Thu - Sep 12 15:25:39 +0000 2019","favourites_count":106647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29565,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193549845065109507\/PLNgc3pY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193549845065109507\/PLNgc3pY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24984160,"id_str":"24984160","name":"Daniel - Atkinson","screen_name":"DanielAtkinson1","location":"Geelong, Australia","description":"AFL, - Liverpool, EPL, Cricket, enjoying my politics too.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":392,"friends_count":3654,"listed_count":3,"created_at":"Tue - Mar 17 23:49:27 +0000 2009","favourites_count":76085,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1493,"lang":null,"status":{"created_at":"Wed - Mar 09 07:57:22 +0000 2022","id":1501467162510508033,"id_str":"1501467162510508033","text":"RT - @SallySitou: National leadership wanted. Has been missing during the following - crises:\n\nBushfires 2019\nCOVID pandemic 2019 - 2022 \nFlood\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SallySitou","name":"Sally - Sitou \u9648\u838e\u8389 - Labor for Reid","id":1454200618155868162,"id_str":"1454200618155868162","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 02:10:00 +0000 2022","id":1501379746105421834,"id_str":"1501379746105421834","text":"National - leadership wanted. Has been missing during the following crises:\n\nBushfires - 2019\nCOVID pandemic 2019 - 202\u2026 https:\/\/t.co\/3Nr2yorgiG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3Nr2yorgiG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501379746105421834","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":149,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621644866317987840\/eqLW--Xj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621644866317987840\/eqLW--Xj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24984160\/1437046663","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295022552180568066,"id_str":"1295022552180568066","name":"Andreas - Mache","screen_name":"PeterSi00108234","location":"","description":"Bin so - wie ich bin , 1.FC L\u00fcbars for ever \nmuss mal nur kurz die Welt retten - ;) , Viel Gl\u00fcck Jungs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":457,"listed_count":0,"created_at":"Sun - Aug 16 15:40:42 +0000 2020","favourites_count":917,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Sun - Nov 08 11:38:29 +0000 2020","id":1325402307572457473,"id_str":"1325402307572457473","text":"https:\/\/t.co\/v3UH8y0tS0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v3UH8y0tS0","expanded_url":"https:\/\/twitter.com\/realDonaldTrump\/status\/1324613375213621248","display_url":"twitter.com\/realDonaldTrum\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1324613375213621248,"quoted_status_id_str":"1324613375213621248","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315267135791394818\/T_9gEez1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315267135791394818\/T_9gEez1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305057865279758336,"id_str":"1305057865279758336","name":"Tjb","screen_name":"SamsonDeanArth1","location":"Seattle, - WA","description":"jesus is king","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":235,"listed_count":0,"created_at":"Sun - Sep 13 08:17:12 +0000 2020","favourites_count":2027,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1909,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454186752617422859\/toFm8JFK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454186752617422859\/toFm8JFK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305057865279758336\/1635540250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":937721815371272192,"id_str":"937721815371272192","name":"I - AM THE CHIEF JUSTICE \ud83c\uddff\ud83c\udde6","screen_name":"Chiefj111","location":"Sandton, - South Africa","description":"Standing with you any time \u23f2 \u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":806,"listed_count":0,"created_at":"Mon - Dec 04 16:34:37 +0000 2017","favourites_count":200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1445,"lang":null,"status":{"created_at":"Sat - Mar 26 05:59:11 +0000 2022","id":1507598014143156224,"id_str":"1507598014143156224","text":"RT - @renoomokri: I thank everyone that voted for me. There is a lot still to be - done. This morning, Vusi Thembekwayo of South Africa had 11\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"renoomokri","name":"Reno - Omokri","id":264248576,"id_str":"264248576","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:04:35 +0000 2022","id":1507312484516085760,"id_str":"1507312484516085760","text":"I - thank everyone that voted for me. There is a lot still to be done. This morning, - Vusi Thembekwayo of South Africa\u2026 https:\/\/t.co\/PbT9Z3LLD7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PbT9Z3LLD7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507312484516085760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":122,"favorite_count":543,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":122,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468471212888240129\/72eQqp7e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468471212888240129\/72eQqp7e_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304928529,"id_str":"1304928529","name":"\u0639\u064f\u0645\u0631 - \u0633\u0639\u0648\u062f\u064a","screen_name":"Soudy96","location":"Egypt","description":"freelance - journalist\nomarsoudy4@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":717,"listed_count":1,"created_at":"Tue - Mar 26 17:08:11 +0000 2013","favourites_count":1057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2709,"lang":null,"status":{"created_at":"Fri - Mar 25 17:08:35 +0000 2022","id":1507404087029125124,"id_str":"1507404087029125124","text":"RT - @nytimes: Breaking News: Israel will host a historic summit this weekend with - top diplomats from the U.S., the UAE, Bahrain and Morocco,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:49:29 +0000 2022","id":1507353984905924615,"id_str":"1507353984905924615","text":"Breaking - News: Israel will host a historic summit this weekend with top diplomats from - the U.S., the UAE, Bahrain a\u2026 https:\/\/t.co\/gTD0GvOXk1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gTD0GvOXk1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507353984905924615","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":305,"favorite_count":2200,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":305,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248091123664502791\/W95rz6Mp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248091123664502791\/W95rz6Mp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304928529\/1602300870","profile_link_color":"444DDD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311999977854566401,"id_str":"1311999977854566401","name":"The - Undisputed","screen_name":"JosephKazibwe4","location":"Kampala, Uganda","description":"A - staunch believer in integrity, open minded person, KCCA and Manchester United - die-hard and most importantly an ever jolly guy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1165,"friends_count":1554,"listed_count":0,"created_at":"Fri - Oct 02 12:02:41 +0000 2020","favourites_count":12186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2189,"lang":null,"status":{"created_at":"Fri - Mar 25 12:17:28 +0000 2022","id":1507330827025358850,"id_str":"1507330827025358850","text":"@KOmukungu - Bali bakusobera\ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KOmukungu","name":"Kelvin - Omukungu","id":1147016391792451585,"id_str":"1147016391792451585","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507330284320088066,"in_reply_to_status_id_str":"1507330284320088066","in_reply_to_user_id":1147016391792451585,"in_reply_to_user_id_str":"1147016391792451585","in_reply_to_screen_name":"KOmukungu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1411753023588737029\/IgQT-tBi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1411753023588737029\/IgQT-tBi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311999977854566401\/1616079412","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2163382832,"id_str":"2163382832","name":"Sam - Kramer","screen_name":"samhkramer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":206,"listed_count":0,"created_at":"Tue - Oct 29 19:01:36 +0000 2013","favourites_count":1296,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Jun 02 07:59:01 +0000 2014","id":473373205772500992,"id_str":"473373205772500992","text":"@lauralogic_ - ok!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":471490767660527618,"in_reply_to_status_id_str":"471490767660527618","in_reply_to_user_id":174852115,"in_reply_to_user_id_str":"174852115","in_reply_to_screen_name":"flaurandfauna_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312900798834192386,"id_str":"1312900798834192386","name":"Andrew - Osterhout","screen_name":"Drewbacca85","location":"Troy, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":71,"listed_count":0,"created_at":"Sun - Oct 04 23:42:10 +0000 2020","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Dec 13 14:12:11 +0000 2021","id":1470396133482639368,"id_str":"1470396133482639368","text":"Just - posted a video https:\/\/t.co\/fuCYB6Ij5w","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fuCYB6Ij5w","expanded_url":"https:\/\/www.instagram.com\/p\/CXbQeC2gLe5UM8LUlp98E0z36kZ5y5yrHCnMdw0\/?utm_medium=twitter","display_url":"instagram.com\/p\/CXbQeC2gLe5U\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314192848296738816\/HOQh8lei_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314192848296738816\/HOQh8lei_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312900798834192386\/1602162987","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":934986084143988736,"id_str":"934986084143988736","name":"Ricky - Evora","screen_name":"ricky_evora","location":"Boston, MA","description":"\u201cIt - pays to be a winner\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":496,"listed_count":0,"created_at":"Mon - Nov 27 03:23:48 +0000 2017","favourites_count":11303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1193,"lang":null,"status":{"created_at":"Sat - Mar 26 05:33:20 +0000 2022","id":1507591511659192321,"id_str":"1507591511659192321","text":"RT - @sportbible: World Cup 2010. How time flies... \ud83d\ude4f https:\/\/t.co\/fQoVB4CuCj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sportbible","name":"SPORTbible","id":435225922,"id_str":"435225922","indices":[3,14]}],"urls":[],"media":[{"id":1507386321614131203,"id_str":"1507386321614131203","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","url":"https:\/\/t.co\/fQoVB4CuCj","display_url":"pic.twitter.com\/fQoVB4CuCj","expanded_url":"https:\/\/twitter.com\/sportbible\/status\/1507386454779047937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2000,"h":2000,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1507386454779047937,"source_status_id_str":"1507386454779047937","source_user_id":435225922,"source_user_id_str":"435225922"}]},"extended_entities":{"media":[{"id":1507386321614131203,"id_str":"1507386321614131203","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","url":"https:\/\/t.co\/fQoVB4CuCj","display_url":"pic.twitter.com\/fQoVB4CuCj","expanded_url":"https:\/\/twitter.com\/sportbible\/status\/1507386454779047937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2000,"h":2000,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1507386454779047937,"source_status_id_str":"1507386454779047937","source_user_id":435225922,"source_user_id_str":"435225922"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:58:31 +0000 2022","id":1507386454779047937,"id_str":"1507386454779047937","text":"World - Cup 2010. How time flies... \ud83d\ude4f https:\/\/t.co\/fQoVB4CuCj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507386321614131203,"id_str":"1507386321614131203","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","url":"https:\/\/t.co\/fQoVB4CuCj","display_url":"pic.twitter.com\/fQoVB4CuCj","expanded_url":"https:\/\/twitter.com\/sportbible\/status\/1507386454779047937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2000,"h":2000,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507386321614131203,"id_str":"1507386321614131203","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtP338X0AMJPVU.jpg","url":"https:\/\/t.co\/fQoVB4CuCj","display_url":"pic.twitter.com\/fQoVB4CuCj","expanded_url":"https:\/\/twitter.com\/sportbible\/status\/1507386454779047937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2000,"h":2000,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4746,"favorite_count":53316,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4746,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507202309431906306\/Ua2MVUxs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507202309431906306\/Ua2MVUxs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/934986084143988736\/1618715680","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158030024190103553,"id_str":"1158030024190103553","name":"George","screen_name":"George82816430","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":223,"listed_count":0,"created_at":"Sun - Aug 04 15:00:47 +0000 2019","favourites_count":419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292,"lang":null,"status":{"created_at":"Sat - Jun 12 18:17:12 +0000 2021","id":1403778425735745539,"id_str":"1403778425735745539","text":"RT - @CyrilRamaphosa: I welcome the support of US President @JoeBiden for a #TRIPSwaiver - to respond to the COVID-19 pandemic. We are urging l\u2026","truncated":false,"entities":{"hashtags":[{"text":"TRIPSwaiver","indices":[74,86]}],"symbols":[],"user_mentions":[{"screen_name":"CyrilRamaphosa","name":"Cyril - Ramaphosa \ud83c\uddff\ud83c\udde6","id":2987156301,"id_str":"2987156301","indices":[3,18]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[58,67]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jun 12 16:46:49 +0000 2021","id":1403755681606418433,"id_str":"1403755681606418433","text":"I - welcome the support of US President @JoeBiden for a #TRIPSwaiver to respond - to the COVID-19 pandemic. We are urgi\u2026 https:\/\/t.co\/99Qzbnfq4N","truncated":true,"entities":{"hashtags":[{"text":"TRIPSwaiver","indices":[54,66]}],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[38,47]}],"urls":[{"url":"https:\/\/t.co\/99Qzbnfq4N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1403755681606418433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":688,"favorite_count":3883,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":688,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47006509,"id_str":"47006509","name":"Terri - Squires, Medical Provider, Psychiatry","screen_name":"terrisquires","location":"Oregon, - Hawaii, Washington","description":"Terri Squires, NBCC, LPC, FNP-C, PMHNP-C - , LICENSED MEDICAL PROVIDER FAMILY\/PSYCHIATRY in 5 states","url":"https:\/\/t.co\/6fK0iaFLrk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6fK0iaFLrk","expanded_url":"http:\/\/www.lahainapractitioner.com","display_url":"lahainapractitioner.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":463,"listed_count":0,"created_at":"Sun - Jun 14 01:38:59 +0000 2009","favourites_count":663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2386,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197655963014176768\/s2Ug1Dyd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197655963014176768\/s2Ug1Dyd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47006509\/1547317471","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296091684816576518,"id_str":"1296091684816576518","name":"Marilou - mendoza","screen_name":"Marilou42776125","location":"","description":"I am - a loving person.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":175,"listed_count":0,"created_at":"Wed - Aug 19 14:28:47 +0000 2020","favourites_count":1544,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171,"lang":null,"status":{"created_at":"Mon - Feb 14 23:37:20 +0000 2022","id":1493368794131025921,"id_str":"1493368794131025921","text":"@MannyPacquiao - Sir sana po matulungan nyo po kami kailangan lang po ng tulong financial para - po sa anak ko nakikipa\u2026 https:\/\/t.co\/GJHjGixn3a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MannyPacquiao","name":"Manny - Pacquiao","id":254098644,"id_str":"254098644","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/GJHjGixn3a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493368794131025921","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1493125024471216129,"in_reply_to_status_id_str":"1493125024471216129","in_reply_to_user_id":254098644,"in_reply_to_user_id_str":"254098644","in_reply_to_screen_name":"MannyPacquiao","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381771206265741314\/1ikzPxe7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381771206265741314\/1ikzPxe7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18714785,"id_str":"18714785","name":"Joshua - Elson","screen_name":"PowerOfJosh","location":"Denver, Colorado","description":"Tech - entrepreneur turned restauranteur. Founder, FluentStream. Baseball fan. Cribbage - player.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":549,"friends_count":1153,"listed_count":23,"created_at":"Wed - Jan 07 07:45:25 +0000 2009","favourites_count":1858,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":993,"lang":null,"status":{"created_at":"Fri - Mar 04 21:51:03 +0000 2022","id":1499865029985902602,"id_str":"1499865029985902602","text":"@joncoopertweets - Yes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1499844836492464143,"in_reply_to_status_id_str":"1499844836492464143","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/845760291984068610\/M7yDx946_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/845760291984068610\/M7yDx946_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18714785\/1592168886","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221495119196672006,"id_str":"1221495119196672006","name":"Aleksandra - W\u0142odarczyk","screen_name":"alekswlod","location":"Paris, France \/ Pozna\u0144, - Poland","description":"PL, EN, FR | @CEuropeCentrale","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":718,"listed_count":0,"created_at":"Sun - Jan 26 18:08:57 +0000 2020","favourites_count":1091,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"status":{"created_at":"Fri - Mar 25 08:32:10 +0000 2022","id":1507274129522802706,"id_str":"1507274129522802706","text":"RT - @IgaKazimierczyk: 700 tysi\u0119cy uczni\u00f3w to dwa roczniki. Tyle mamy - teraz dzieci z Ukrainy w Polsce. Do pracy z nimi potrzebna jest armia n\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IgaKazimierczyk","name":"Iga - Kazimierczyk","id":810605687910895618,"id_str":"810605687910895618","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:59:09 +0000 2022","id":1507265817163055104,"id_str":"1507265817163055104","text":"700 - tysi\u0119cy uczni\u00f3w to dwa roczniki. Tyle mamy teraz dzieci z Ukrainy - w Polsce. Do pracy z nimi potrzebna jest armi\u2026 https:\/\/t.co\/hV7Gxx78cG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hV7Gxx78cG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507265817163055104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":86,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pl"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483775981735272453\/WYxG1pco_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483775981735272453\/WYxG1pco_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221495119196672006\/1642594564","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232657390711005191,"id_str":"1232657390711005191","name":"Davelinks","screen_name":"Dave09375856","location":"","description":"Simple - and smart","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":261,"listed_count":0,"created_at":"Wed - Feb 26 13:23:31 +0000 2020","favourites_count":211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":427,"lang":null,"status":{"created_at":"Fri - Jun 04 01:40:04 +0000 2021","id":1400628387195113473,"id_str":"1400628387195113473","text":"@cchukudebelu - Because you are smarter than Tweeter. Pine\ud83d\udccc, we wont forget.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cchukudebelu","name":"Onye - Nkuzi","id":266867464,"id_str":"266867464","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1400465981135147008,"in_reply_to_status_id_str":"1400465981135147008","in_reply_to_user_id":266867464,"in_reply_to_user_id_str":"266867464","in_reply_to_screen_name":"cchukudebelu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359061282704547842\/vENxCTtI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359061282704547842\/vENxCTtI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232657390711005191\/1612860442","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267182930276859909,"id_str":"1267182930276859909","name":"Mzeeyi - Nkolo Omar","screen_name":"MzeeyiNkolo","location":"Kampala Uganda","description":"youth - least chemical","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":1446,"listed_count":0,"created_at":"Sun - May 31 19:56:48 +0000 2020","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":86,"lang":null,"status":{"created_at":"Fri - Mar 25 14:24:48 +0000 2022","id":1507362869754671138,"id_str":"1507362869754671138","text":"@SpireJim - It''s acoli.. Bcoz acoli means luza","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpireJim","name":"Jim - Spire Ssentongo","id":853614528269103107,"id_str":"853614528269103107","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507325500624187488,"in_reply_to_status_id_str":"1507325500624187488","in_reply_to_user_id":853614528269103107,"in_reply_to_user_id_str":"853614528269103107","in_reply_to_screen_name":"SpireJim","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ro"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267183426190393352\/N6daYNOF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267183426190393352\/N6daYNOF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267182930276859909\/1592091573","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":583517286,"id_str":"583517286","name":"David - Aufderhaar\ud83d\udeb4\ud83c\udffb\u200d\u2642\ufe0f","screen_name":"daufderhaar","location":"San - Francisco, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":763,"listed_count":5,"created_at":"Fri - May 18 03:50:48 +0000 2012","favourites_count":1113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":505,"lang":null,"status":{"created_at":"Wed - Sep 22 04:09:44 +0000 2021","id":1440528718020026376,"id_str":"1440528718020026376","text":"@ydosios - Strong Noe sponsorship with the Valley Tavern as well!! Congrats!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ydosios","name":"Yannis - Dosios","id":1643201,"id_str":"1643201","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1440512157867593729,"in_reply_to_status_id_str":"1440512157867593729","in_reply_to_user_id":1643201,"in_reply_to_user_id_str":"1643201","in_reply_to_screen_name":"ydosios","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818267703207030784\/0DsaqKnS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818267703207030784\/0DsaqKnS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/583517286\/1513363324","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1296420663142514689,"id_str":"1296420663142514689","name":"yeldusch","screen_name":"yeldusch1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":431,"listed_count":0,"created_at":"Thu - Aug 20 12:16:11 +0000 2020","favourites_count":4688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sun - Nov 15 11:05:19 +0000 2020","id":1327930675933175808,"id_str":"1327930675933175808","text":"RT - @HaseltonMarlies: U\u011fur \u015eahin, chief executive of BioNTech, says - he celebrated the #Covid vaccine with his wife over a cup of tea.\n\nAndre\u2026","truncated":false,"entities":{"hashtags":[{"text":"Covid","indices":[85,91]}],"symbols":[],"user_mentions":[{"screen_name":"HaseltonMarlies","name":"Marlies - Haselton","id":890289353351716868,"id_str":"890289353351716868","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 15 10:04:36 +0000 2020","id":1327915397652369408,"id_str":"1327915397652369408","text":"U\u011fur - \u015eahin, chief executive of BioNTech, says he celebrated the #Covid vaccine - with his wife over a cup of tea.\n\nAn\u2026 https:\/\/t.co\/bKmHmCUX7k","truncated":true,"entities":{"hashtags":[{"text":"Covid","indices":[64,70]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bKmHmCUX7k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1327915397652369408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1081561912767381504,"id_str":"1081561912767381504","name":"Gwenda","screen_name":"Gwenda54968232","location":"Tampa, - FL","description":"Beautiful \ud83d\udc51","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":1589,"listed_count":3,"created_at":"Sat - Jan 05 14:43:49 +0000 2019","favourites_count":2628,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2824,"lang":null,"status":{"created_at":"Sat - Mar 26 06:53:24 +0000 2022","id":1507611662181879812,"id_str":"1507611662181879812","text":"RT - @GalerieRihanna: Rihanna leaving Couture Kids store in Hollywood (March 25) - https:\/\/t.co\/fQYPFpIEls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GalerieRihanna","name":"Rihanna - Gallery","id":1340713926066114560,"id_str":"1340713926066114560","indices":[3,18]}],"urls":[],"media":[{"id":1507590781678272515,"id_str":"1507590781678272515","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1364,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":799,"h":1200,"resize":"fit"}},"source_status_id":1507590790020747267,"source_status_id_str":"1507590790020747267","source_user_id":1340713926066114560,"source_user_id_str":"1340713926066114560"}]},"extended_entities":{"media":[{"id":1507590781678272515,"id_str":"1507590781678272515","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1364,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":799,"h":1200,"resize":"fit"}},"source_status_id":1507590790020747267,"source_status_id_str":"1507590790020747267","source_user_id":1340713926066114560,"source_user_id_str":"1340713926066114560"},{"id":1507590781695107075,"id_str":"1507590781695107075","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BGXIAMfA8D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BGXIAMfA8D.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1364,"h":2048,"resize":"fit"}},"source_status_id":1507590790020747267,"source_status_id_str":"1507590790020747267","source_user_id":1340713926066114560,"source_user_id_str":"1340713926066114560"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:30:28 +0000 2022","id":1507590790020747267,"id_str":"1507590790020747267","text":"Rihanna - leaving Couture Kids store in Hollywood (March 25) https:\/\/t.co\/fQYPFpIEls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507590781678272515,"id_str":"1507590781678272515","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1364,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":799,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507590781678272515,"id_str":"1507590781678272515","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BCWQAMm4j1.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1364,"h":2048,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":799,"h":1200,"resize":"fit"}}},{"id":1507590781695107075,"id_str":"1507590781695107075","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwJ1BGXIAMfA8D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwJ1BGXIAMfA8D.jpg","url":"https:\/\/t.co\/fQYPFpIEls","display_url":"pic.twitter.com\/fQYPFpIEls","expanded_url":"https:\/\/twitter.com\/GalerieRihanna\/status\/1507590790020747267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1364,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":340,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":65,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081623259148365824\/u7AQsqOu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081623259148365824\/u7AQsqOu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081561912767381504\/1546714054","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16471725,"id_str":"16471725","name":"Caroline - Baylon","screen_name":"carolinebaylon","location":"","description":"Cyber - security researcher\ncarolinebaylon@icloud.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":1140,"listed_count":5,"created_at":"Fri - Sep 26 18:25:30 +0000 2008","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1715,"lang":null,"status":{"created_at":"Tue - Dec 21 03:56:18 +0000 2021","id":1473140244878962692,"id_str":"1473140244878962692","text":"@mcochran220 - @LensCrafters In my case they stole the money directly -- They charged me - for a service they ended up\u2026 https:\/\/t.co\/5PCI5iapGZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mcochran220","name":"Margaret - Cochran","id":3957932001,"id_str":"3957932001","indices":[0,12]},{"screen_name":"LensCrafters","name":"LensCrafters","id":56459572,"id_str":"56459572","indices":[13,26]}],"urls":[{"url":"https:\/\/t.co\/5PCI5iapGZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1473140244878962692","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":964963586614407169,"in_reply_to_status_id_str":"964963586614407169","in_reply_to_user_id":3957932001,"in_reply_to_user_id_str":"3957932001","in_reply_to_screen_name":"mcochran220","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350389062662815744\/zGi89n2G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350389062662815744\/zGi89n2G_normal.jpg","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1203202459876962305,"id_str":"1203202459876962305","name":"Janeylovescats","screen_name":"JaneMoo19316627","location":"United - Kingdom","description":"Counsellor. Adore cats, passionate about nature & - all animals. Mum & wife. I enjoy gardening and supporting others. Be kind - to one another.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":1001,"listed_count":1,"created_at":"Sat - Dec 07 06:40:09 +0000 2019","favourites_count":14007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":308,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322065117958328321\/ZSIRFWQb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322065117958328321\/ZSIRFWQb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":109811340,"id_str":"109811340","name":"Haridi noreddine","screen_name":"abdouallah","location":"algeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":1487,"listed_count":0,"created_at":"Sat - Jan 30 10:19:01 +0000 2010","favourites_count":3583,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Tue - Mar 15 15:42:20 +0000 2022","id":1503758502703030280,"id_str":"1503758502703030280","text":"https:\/\/t.co\/t4Jr2uzbfi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t4Jr2uzbfi","expanded_url":"https:\/\/mp3download.to\/12en\/pVCeXK_fz0c.html\/","display_url":"mp3download.to\/12en\/pVCeXK_fz\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380173407011147777\/mjwsR-BH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380173407011147777\/mjwsR-BH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109811340\/1617915220","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":322173742,"id_str":"322173742","name":"Michael - Sabes","screen_name":"MikeSabes","location":"San Francisco, CA","description":"Economics, - Technology, Strategic Finance, Bay Area Sports. Adobe, Twitter, Salesforce. - UCLA, UC Berkeley Haas. Always learning.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":1496,"listed_count":10,"created_at":"Wed - Jun 22 19:07:34 +0000 2011","favourites_count":12178,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1987,"lang":null,"status":{"created_at":"Tue - Feb 22 23:50:02 +0000 2022","id":1496271093488930820,"id_str":"1496271093488930820","text":"@joshualkrose - @rachaelappleton Mazel tov!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joshualkrose","name":"Joshua - Rose","id":256738885,"id_str":"256738885","indices":[0,13]},{"screen_name":"rachaelappleton","name":"rachael - appleton","id":24276602,"id_str":"24276602","indices":[14,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495959120717004804,"in_reply_to_status_id_str":"1495959120717004804","in_reply_to_user_id":256738885,"in_reply_to_user_id_str":"256738885","in_reply_to_screen_name":"joshualkrose","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327325493343907840\/idg89q9S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327325493343907840\/idg89q9S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322173742\/1502140486","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241910319,"id_str":"1241910319","name":"Bush_Pashya","screen_name":"Bush_Pashya","location":"Pune","description":"People - ask me what''s Bush \ud83d\ude0a\ud83d\ude09\nEven They Read me Bush\n#Bush...\nmeans - 4 Words B U S H but meaning....????","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":2692,"listed_count":0,"created_at":"Mon - Mar 04 18:14:20 +0000 2013","favourites_count":1656,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Mon - Nov 08 06:26:43 +0000 2021","id":1457595419383324672,"id_str":"1457595419383324672","text":"\u0935\u093e\u0922\u0926\u093f\u0935\u0938\u093e\u091a\u093e - \u0939\u093e\u0930\u094d\u0926\u093f\u0915 \u0936\u0941\u092d\u0947\u091a\u094d\u091b\u093e.... - \u0906\u092c\u092f @andharesushama \ud83c\udf8a\ud83c\udf82\ud83c\udf81\ud83c\udf82\ud83c\udf89 - https:\/\/t.co\/K18dwClYFY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andharesushama","name":"Andhare - Sushama","id":468233011,"id_str":"468233011","indices":[36,51]}],"urls":[],"media":[{"id":1457595402698440705,"id_str":"1457595402698440705","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FDprS8wVQAEq0zA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDprS8wVQAEq0zA.jpg","url":"https:\/\/t.co\/K18dwClYFY","display_url":"pic.twitter.com\/K18dwClYFY","expanded_url":"https:\/\/twitter.com\/Bush_Pashya\/status\/1457595419383324672\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1457595402698440705,"id_str":"1457595402698440705","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FDprS8wVQAEq0zA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDprS8wVQAEq0zA.jpg","url":"https:\/\/t.co\/K18dwClYFY","display_url":"pic.twitter.com\/K18dwClYFY","expanded_url":"https:\/\/twitter.com\/Bush_Pashya\/status\/1457595419383324672\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"10377661ec9de277","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/10377661ec9de277.json","place_type":"city","name":"Kaij","full_name":"Kaij, - India","country_code":"IN","country":"India","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[76.041464,18.694463],[76.091551,18.694463],[76.091551,18.732463],[76.041464,18.732463]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"mr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287264056869400583\/-uehGZc-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287264056869400583\/-uehGZc-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241910319\/1640875076","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":216226763,"id_str":"216226763","name":"Guillermo - Escalona","screen_name":"escalonaguille","location":"Los Angeles","description":"Co-creator - and co-writer of HBO Max series \"Mil Colmillos\", also an executive producer - @somoslapanda. I live in Los Angeles.","url":"https:\/\/t.co\/T5tieUttG7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/T5tieUttG7","expanded_url":"http:\/\/www.imdb.me\/guillermo","display_url":"imdb.me\/guillermo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":356,"friends_count":1433,"listed_count":9,"created_at":"Tue - Nov 16 03:11:28 +0000 2010","favourites_count":444,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":215,"lang":null,"status":{"created_at":"Wed - Mar 02 17:14:52 +0000 2022","id":1499070746601181192,"id_str":"1499070746601181192","text":"RT - @PremiosPLATINO: \ud83d\udce2 Shortlist #PremiosPLATINO2022\n\nPor \u00faltimo, - en la categor\u00eda n\u00famero 22, las personas de cuyas cabezas han nacido - los pr\u2026","truncated":false,"entities":{"hashtags":[{"text":"PremiosPLATINO2022","indices":[32,51]}],"symbols":[],"user_mentions":[{"screen_name":"PremiosPLATINO","name":"Premios - PLATINO","id":2166622446,"id_str":"2166622446","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 11:34:34 +0000 2022","id":1498622720120078337,"id_str":"1498622720120078337","text":"\ud83d\udce2 - Shortlist #PremiosPLATINO2022\n\nPor \u00faltimo, en la categor\u00eda n\u00famero - 22, las personas de cuyas cabezas han nacido lo\u2026 https:\/\/t.co\/UOrtFBqDL6","truncated":true,"entities":{"hashtags":[{"text":"PremiosPLATINO2022","indices":[12,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UOrtFBqDL6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498622720120078337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1498622714118029318,"in_reply_to_status_id_str":"1498622714118029318","in_reply_to_user_id":2166622446,"in_reply_to_user_id_str":"2166622446","in_reply_to_screen_name":"PremiosPLATINO","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267835099761872896\/WuCLdY7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267835099761872896\/WuCLdY7t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216226763\/1595101025","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36457736,"id_str":"36457736","name":"Teff - Ayral","screen_name":"TAyral","location":"Alameda, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":529,"listed_count":0,"created_at":"Wed - Apr 29 19:48:03 +0000 2009","favourites_count":2962,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3103,"lang":null,"status":{"created_at":"Fri - Mar 25 06:24:53 +0000 2022","id":1507242096008196096,"id_str":"1507242096008196096","text":"@santiagomayer_ - Chamomile https:\/\/t.co\/UI068goLka","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"santiagomayer_","name":"Santiago - Mayer \ud83c\udf3b","id":4327127414,"id_str":"4327127414","indices":[0,15]}],"urls":[],"media":[{"id":1507242091226677251,"id_str":"1507242091226677251","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrMsj4VQAMYZ7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrMsj4VQAMYZ7C.jpg","url":"https:\/\/t.co\/UI068goLka","display_url":"pic.twitter.com\/UI068goLka","expanded_url":"https:\/\/twitter.com\/TAyral\/status\/1507242096008196096\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507242091226677251,"id_str":"1507242091226677251","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrMsj4VQAMYZ7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrMsj4VQAMYZ7C.jpg","url":"https:\/\/t.co\/UI068goLka","display_url":"pic.twitter.com\/UI068goLka","expanded_url":"https:\/\/twitter.com\/TAyral\/status\/1507242096008196096\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507060413334130688,"in_reply_to_status_id_str":"1507060413334130688","in_reply_to_user_id":4327127414,"in_reply_to_user_id_str":"4327127414","in_reply_to_screen_name":"santiagomayer_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405515184509095942\/dxiOp-_b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405515184509095942\/dxiOp-_b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36457736\/1435612784","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23288131,"id_str":"23288131","name":"Patrick - McHugh","screen_name":"TarValon23","location":"Cologne, Germany","description":"West - of Scotland native now living in Cologne. British \/ German dual national","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":577,"listed_count":2,"created_at":"Sun - Mar 08 07:44:46 +0000 2009","favourites_count":212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":127,"lang":null,"status":{"created_at":"Sun - Mar 20 20:48:59 +0000 2022","id":1505647615517597700,"id_str":"1505647615517597700","text":"@RaeComm - Absolutely. To be in contention for a European spot with a handful of games - left would have been laughable\u2026 https:\/\/t.co\/8yJblM0aRu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RaeComm","name":"Derek - Rae","id":20956936,"id_str":"20956936","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/8yJblM0aRu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505647615517597700","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505647214110339072,"in_reply_to_status_id_str":"1505647214110339072","in_reply_to_user_id":20956936,"in_reply_to_user_id_str":"20956936","in_reply_to_screen_name":"RaeComm","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/833739651278045184\/K6AeUxNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/833739651278045184\/K6AeUxNg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23288131\/1487613996","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":845753317548609542,"id_str":"845753317548609542","name":"Shukrani - Nsikini","screen_name":"shukraninsikini","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":858,"listed_count":0,"created_at":"Sat - Mar 25 21:44:39 +0000 2017","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Fri - Dec 24 15:52:14 +0000 2021","id":1474407577798725636,"id_str":"1474407577798725636","text":"RT - @privaldinho: \u201cSio kwamba Geita wana uwezo sana, wamepata goli la haraka - kipindi cha pili, Mungu amewasaidia wamepata pointi tatu\u201d Kazum\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"privaldinho","name":"Privaldinho","id":791028608,"id_str":"791028608","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 20:55:34 +0000 2021","id":1474121527151013890,"id_str":"1474121527151013890","text":"\u201cSio - kwamba Geita wana uwezo sana, wamepata goli la haraka kipindi cha pili, Mungu - amewasaidia wamepata pointi tatu\u2026 https:\/\/t.co\/mOKYUj6zwF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mOKYUj6zwF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474121527151013890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":863,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436012932274532365\/bYeErNY3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436012932274532365\/bYeErNY3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1011302787890798593,"id_str":"1011302787890798593","name":"Demian - de Bolivar","screen_name":"DanielM86106837","location":"","description":"I\u2019m - just a poor boy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":1065,"listed_count":0,"created_at":"Mon - Jun 25 17:39:08 +0000 2018","favourites_count":1733,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":645,"lang":null,"status":{"created_at":"Sun - Mar 20 05:39:27 +0000 2022","id":1505418721422049285,"id_str":"1505418721422049285","text":"@varsha_venkat_ - https:\/\/t.co\/IsosDmJeIB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"varsha_venkat_","name":"the - hot dam historian","id":74878213,"id_str":"74878213","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/IsosDmJeIB","expanded_url":"https:\/\/youtu.be\/kmg6HmL0vGk","display_url":"youtu.be\/kmg6HmL0vGk","indices":[16,39]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1505411975987150848,"in_reply_to_status_id_str":"1505411975987150848","in_reply_to_user_id":74878213,"in_reply_to_user_id_str":"74878213","in_reply_to_screen_name":"varsha_venkat_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1249713951450910727\/_Pz3D-Ab_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1249713951450910727\/_Pz3D-Ab_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011302787890798593\/1586790001","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246689623797043201,"id_str":"1246689623797043201","name":"April","screen_name":"April77398675","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":162,"listed_count":0,"created_at":"Sun - Apr 05 06:43:40 +0000 2020","favourites_count":9272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"status":{"created_at":"Fri - Mar 25 20:36:17 +0000 2022","id":1507456356248391718,"id_str":"1507456356248391718","text":"RT - @OccupyDemocrats: BREAKING NEWS: Georgia voters file a lawsuit to block Trumper - Congresswoman Marjorie Taylor Green from running reelect\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:24:46 +0000 2022","id":1507181668989349896,"id_str":"1507181668989349896","text":"BREAKING - NEWS: Georgia voters file a lawsuit to block Trumper Congresswoman Marjorie - Taylor Green from running reel\u2026 https:\/\/t.co\/4IOaQ2uj7F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4IOaQ2uj7F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507181668989349896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16216,"favorite_count":51473,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16216,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1249814712679792643\/pmfLqwf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1249814712679792643\/pmfLqwf4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1858046156,"id_str":"1858046156","name":"TJ - Callaway, MPSE","screen_name":"TJ_Callaway","location":"Dallas, TX","description":"#Bassist, - #audioengineer, #audiopost #SoundDesigner #Mixer, #MPSE\nhttps:\/\/t.co\/Z92HDgRQ7k","url":"https:\/\/t.co\/Z92HDgRQ7k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z92HDgRQ7k","expanded_url":"http:\/\/www.tjcallawayaudio.com","display_url":"tjcallawayaudio.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Z92HDgRQ7k","expanded_url":"http:\/\/www.tjcallawayaudio.com","display_url":"tjcallawayaudio.com","indices":[68,91]}]}},"protected":false,"followers_count":379,"friends_count":1497,"listed_count":7,"created_at":"Thu - Sep 12 17:34:44 +0000 2013","favourites_count":10823,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1063,"lang":null,"status":{"created_at":"Fri - Mar 25 20:27:00 +0000 2022","id":1507454022281793548,"id_str":"1507454022281793548","text":"RT - @StandsWithAFis4: Justice Clarence Thomas in hospital due to \" coup-like\" - symptoms","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StandsWithAFis4","name":"Ma\u00f1ana - Republic","id":1286127528202121220,"id_str":"1286127528202121220","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:45:53 +0000 2022","id":1507217181574156288,"id_str":"1507217181574156288","text":"Justice - Clarence Thomas in hospital due to \" coup-like\" symptoms","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5067,"favorite_count":30860,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5067,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500922954372325382\/3U2JVgQ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500922954372325382\/3U2JVgQ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1858046156\/1481837390","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":742852429,"id_str":"742852429","name":"l","screen_name":"s_san99","location":"Chicago, - IL","description":"\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":651,"friends_count":528,"listed_count":1,"created_at":"Tue - Aug 07 12:54:59 +0000 2012","favourites_count":69063,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10587,"lang":null,"status":{"created_at":"Fri - Mar 25 22:35:32 +0000 2022","id":1507486367642759175,"id_str":"1507486367642759175","text":"one - person followed me \/\/ automatically checked by https:\/\/t.co\/c3Xhs50SlZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c3Xhs50SlZ","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504946103791280132\/V3jlOuxi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504946103791280132\/V3jlOuxi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742852429\/1644378867","profile_link_color":"0089B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":756974432648695809,"id_str":"756974432648695809","name":"Sam - Barnard","screen_name":"thebarnstormer2","location":"Mississippi, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":492,"listed_count":0,"created_at":"Sat - Jul 23 22:09:03 +0000 2016","favourites_count":9400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Mon - Jan 24 18:35:11 +0000 2022","id":1485682609086779402,"id_str":"1485682609086779402","text":"@Hype_Phoenix - took me six tries you traitor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Hype_Phoenix","name":"Aden","id":1253231926644793345,"id_str":"1253231926644793345","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1485665809024397316,"in_reply_to_status_id_str":"1485665809024397316","in_reply_to_user_id":1253231926644793345,"in_reply_to_user_id_str":"1253231926644793345","in_reply_to_screen_name":"Hype_Phoenix","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196658742416134145\/x9EkTY9g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196658742416134145\/x9EkTY9g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/756974432648695809\/1574140799","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":775538154,"id_str":"775538154","name":"Sani - \u2600","screen_name":"masspaul_","location":"Night\u2019s Watch","description":"C.E.O - Of The Free World.. || OVO\ud83e\udd89Crew Ye || Life is a Movie || High Thoughts - Only || FPL enthusiastic manager @counsel_fpl","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":664,"friends_count":663,"listed_count":1,"created_at":"Thu - Aug 23 09:06:43 +0000 2012","favourites_count":12381,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4032,"lang":null,"status":{"created_at":"Sat - Mar 26 04:12:03 +0000 2022","id":1507571055568826371,"id_str":"1507571055568826371","text":"RT - @NBA: \ud83d\ude31 Luka sneaks in a bounce pass!\n\nWatch Now on NBA League - Pass: https:\/\/t.co\/oz9UCQxdQa https:\/\/t.co\/PrL4MmbWJc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NBA","name":"NBA","id":19923144,"id_str":"19923144","indices":[3,7]}],"urls":[{"url":"https:\/\/t.co\/oz9UCQxdQa","expanded_url":"http:\/\/app.link.nba.com\/e\/stream","display_url":"app.link.nba.com\/e\/stream","indices":[72,95]}],"media":[{"id":1507517298634108928,"id_str":"1507517298634108928","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","url":"https:\/\/t.co\/PrL4MmbWJc","display_url":"pic.twitter.com\/PrL4MmbWJc","expanded_url":"https:\/\/twitter.com\/NBA\/status\/1507518459697061888\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507518459697061888,"source_status_id_str":"1507518459697061888","source_user_id":19923144,"source_user_id_str":"19923144"}]},"extended_entities":{"media":[{"id":1507517298634108928,"id_str":"1507517298634108928","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","url":"https:\/\/t.co\/PrL4MmbWJc","display_url":"pic.twitter.com\/PrL4MmbWJc","expanded_url":"https:\/\/twitter.com\/NBA\/status\/1507518459697061888\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507518459697061888,"source_status_id_str":"1507518459697061888","source_user_id":19923144,"source_user_id_str":"19923144","video_info":{"aspect_ratio":[16,9],"duration_millis":15744,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/480x270\/oLTyg4jj74RkndnI.mp4?tag=14"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/1280x720\/cI9-yfaGfWpI5jAG.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/pl\/LZU-eiXTN5eZfS0e.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/640x360\/uXXU0FVP38KKx0tk.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":true}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:43:03 +0000 2022","id":1507518459697061888,"id_str":"1507518459697061888","text":"\ud83d\ude31 - Luka sneaks in a bounce pass!\n\nWatch Now on NBA League Pass: https:\/\/t.co\/oz9UCQxdQa - https:\/\/t.co\/PrL4MmbWJc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oz9UCQxdQa","expanded_url":"http:\/\/app.link.nba.com\/e\/stream","display_url":"app.link.nba.com\/e\/stream","indices":[63,86]}],"media":[{"id":1507517298634108928,"id_str":"1507517298634108928","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","url":"https:\/\/t.co\/PrL4MmbWJc","display_url":"pic.twitter.com\/PrL4MmbWJc","expanded_url":"https:\/\/twitter.com\/NBA\/status\/1507518459697061888\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507517298634108928,"id_str":"1507517298634108928","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvHX1UXoAMJKxx.jpg","url":"https:\/\/t.co\/PrL4MmbWJc","display_url":"pic.twitter.com\/PrL4MmbWJc","expanded_url":"https:\/\/twitter.com\/NBA\/status\/1507518459697061888\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":15744,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/480x270\/oLTyg4jj74RkndnI.mp4?tag=14"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/1280x720\/cI9-yfaGfWpI5jAG.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/pl\/LZU-eiXTN5eZfS0e.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507517298634108928\/vid\/640x360\/uXXU0FVP38KKx0tk.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":true}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":307,"favorite_count":1784,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":307,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464791281079619590\/pCG7aK60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464791281079619590\/pCG7aK60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775538154\/1606906637","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273123579899641858,"id_str":"1273123579899641858","name":"KP","screen_name":"kp10000000","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":4970,"listed_count":3,"created_at":"Wed - Jun 17 05:21:40 +0000 2020","favourites_count":7806,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4531,"lang":null,"status":{"created_at":"Sat - Mar 26 09:13:06 +0000 2022","id":1507646814882713601,"id_str":"1507646814882713601","text":"RT - @SpaceX: NASA has ordered six additional @space_station resupply missions - from SpaceX! Dragon will continue to deliver critical cargo an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpaceX","name":"SpaceX","id":34743251,"id_str":"34743251","indices":[3,10]},{"screen_name":"Space_Station","name":"International - Space Station","id":1451773004,"id_str":"1451773004","indices":[44,58]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:06:11 +0000 2022","id":1507388386297876481,"id_str":"1507388386297876481","text":"NASA - has ordered six additional @space_station resupply missions from SpaceX! Dragon - will continue to deliver criti\u2026 https:\/\/t.co\/CZVKo2JQds","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Space_Station","name":"International - Space Station","id":1451773004,"id_str":"1451773004","indices":[32,46]}],"urls":[{"url":"https:\/\/t.co\/CZVKo2JQds","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507388386297876481","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2689,"favorite_count":24877,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2689,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506891542362918913\/6Xae5fKN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506891542362918913\/6Xae5fKN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1273123579899641858\/1648105926","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1374256280,"id_str":"1374256280","name":"c76","screen_name":"c_7_6","location":"","description":"everyone - knows: pandemics stop when you\u2019re bored","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":1365,"listed_count":0,"created_at":"Tue - Apr 23 09:32:23 +0000 2013","favourites_count":6397,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":806,"lang":null,"status":{"created_at":"Thu - Mar 24 18:53:21 +0000 2022","id":1507068066944929799,"id_str":"1507068066944929799","text":"RT - @FrauKrone: Ich will keinen Tankrabatt, ich will ordentliche Radwege in meiner - Stadt.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FrauKrone","name":"Stephanie - Krone","id":444829828,"id_str":"444829828","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:46:05 +0000 2022","id":1507005841064402955,"id_str":"1507005841064402955","text":"Ich - will keinen Tankrabatt, ich will ordentliche Radwege in meiner Stadt.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":999,"favorite_count":10193,"favorited":false,"retweeted":false,"lang":"de"},"is_quote_status":false,"retweet_count":999,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"C47163","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270738260,"id_str":"1270738260","name":"Michael - Steil","screen_name":"pourthos","location":"Manhattan, NY","description":"Writer\/Bartender\/Cook\/Cheesemonger\/Orthodox - Hedonist\/Devoted Spouse","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":146,"listed_count":1,"created_at":"Fri - Mar 15 21:30:01 +0000 2013","favourites_count":345,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"status":{"created_at":"Sat - Jan 16 21:50:57 +0000 2021","id":1350561203173662727,"id_str":"1350561203173662727","text":"@dendekky - @TheBKLYNVillain @ulxma Yeah I\u2019d like a list of those jobs \u201canyone - can do\u201d and would like even more to se\u2026 https:\/\/t.co\/x2SQydhgUK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dendekky","name":"Leroy - Brown","id":2620615828,"id_str":"2620615828","indices":[0,9]},{"screen_name":"TheBKLYNVillain","name":"\u24d1enevolent - \u24d9ay","id":1347519903390179328,"id_str":"1347519903390179328","indices":[10,26]},{"screen_name":"ulxma","name":"ULOMA","id":586094719,"id_str":"586094719","indices":[27,33]}],"urls":[{"url":"https:\/\/t.co\/x2SQydhgUK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1350561203173662727","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1350351710456315904,"in_reply_to_status_id_str":"1350351710456315904","in_reply_to_user_id":2620615828,"in_reply_to_user_id_str":"2620615828","in_reply_to_screen_name":"dendekky","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315124219349434369\/mtAahUmk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315124219349434369\/mtAahUmk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1160569294544986112,"id_str":"1160569294544986112","name":"Itiswhatitis","screen_name":"Jon5742","location":"","description":"Yippee","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":797,"listed_count":0,"created_at":"Sun - Aug 11 15:10:56 +0000 2019","favourites_count":5009,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":241,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357852870893178881\/AsJQXkue_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357852870893178881\/AsJQXkue_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44327537,"id_str":"44327537","name":"Miss - N Fully Vaxxed","screen_name":"MsNeutrino","location":"Joburg South Africa","description":"Opinionated, - free-spirit and free thinker. All who wander are not lost... J R R Tolkien. - My views are 100% mine, don\u2019t get it twisted!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":497,"friends_count":1426,"listed_count":3,"created_at":"Wed - Jun 03 09:29:55 +0000 2009","favourites_count":54416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28806,"lang":null,"status":{"created_at":"Sat - Mar 26 10:08:21 +0000 2022","id":1507660722947436547,"id_str":"1507660722947436547","text":"@JackD157 - This is horrific!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JackD157","name":"Jack - Devnarain","id":321392260,"id_str":"321392260","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507457620642304006,"in_reply_to_status_id_str":"1507457620642304006","in_reply_to_user_id":321392260,"in_reply_to_user_id_str":"321392260","in_reply_to_screen_name":"JackD157","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498904361694633984\/QBhtpUbN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498904361694633984\/QBhtpUbN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44327537\/1548006993","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":882299037000630272,"id_str":"882299037000630272","name":"Asim - Javaid","screen_name":"AsimJav75318388","location":"Islmabad","description":"mr - asim","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":3332,"listed_count":0,"created_at":"Tue - Jul 04 18:04:17 +0000 2017","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Fri - Mar 04 15:30:28 +0000 2022","id":1499769251288301577,"id_str":"1499769251288301577","text":"@MuftiAsadMehmo1 - Kutte ka pilla","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MuftiAsadMehmo1","name":"Mufti - Asad Mehmood","id":1205771293339070465,"id_str":"1205771293339070465","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499767951473487874,"in_reply_to_status_id_str":"1499767951473487874","in_reply_to_user_id":1205771293339070465,"in_reply_to_user_id_str":"1205771293339070465","in_reply_to_screen_name":"MuftiAsadMehmo1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299653181421621248\/HN5NjXpw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299653181421621248\/HN5NjXpw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2766873124,"id_str":"2766873124","name":"Axe - 34","screen_name":"thessy34","location":"Virgin Islands, U.S.","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":2174,"listed_count":1,"created_at":"Thu - Sep 11 03:00:47 +0000 2014","favourites_count":7141,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":365,"lang":null,"status":{"created_at":"Mon - Mar 21 05:25:33 +0000 2022","id":1505777612790054914,"id_str":"1505777612790054914","text":"@brettbel - Loser.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brettbel","name":"Dr. - Brett Belchetz","id":357894852,"id_str":"357894852","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505584935947620355,"in_reply_to_status_id_str":"1505584935947620355","in_reply_to_user_id":357894852,"in_reply_to_user_id_str":"357894852","in_reply_to_screen_name":"brettbel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918901318458200065\/oqA-5cPa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918901318458200065\/oqA-5cPa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766873124\/1507918197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1144580173,"id_str":"1144580173","name":"Elizabeth - Brooking","screen_name":"Beth_Brooking","location":"Pinole, CA","description":"Hard-working - middle school science teacher. I say Yes to too much, but I''m never bored. - Tinkerer, lover of the Exploratorium.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":360,"friends_count":4962,"listed_count":5,"created_at":"Sun - Feb 03 08:24:00 +0000 2013","favourites_count":21099,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6244,"lang":null,"status":{"created_at":"Mon - Mar 21 00:15:59 +0000 2022","id":1505699705627418626,"id_str":"1505699705627418626","text":"RT - @BlackInChem: Today we celebrate @DarthScience, a chemist, materials physicist, - educator, and science communicator. She specializes in l\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BlackInChem","name":"BlackInChem","id":1289342843278905345,"id_str":"1289342843278905345","indices":[3,15]},{"screen_name":"DarthScience","name":"Dr. - Desir\u00e9 Whitmore, LASERchick","id":875082152,"id_str":"875082152","indices":[36,49]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 14:00:51 +0000 2022","id":1505182515463610371,"id_str":"1505182515463610371","text":"Today - we celebrate @DarthScience, a chemist, materials physicist, educator, and - science communicator. She specializ\u2026 https:\/\/t.co\/2d4vFyz7gs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DarthScience","name":"Dr. - Desir\u00e9 Whitmore, LASERchick","id":875082152,"id_str":"875082152","indices":[19,32]}],"urls":[{"url":"https:\/\/t.co\/2d4vFyz7gs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505182515463610371","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":66,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1106715523096567808\/wMtMReJ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106715523096567808\/wMtMReJ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1144580173\/1552696515","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2814602802,"id_str":"2814602802","name":"\ud83c\uddec\ud83c\uddfeDwayne - Barnwell\ud83c\uddec\ud83c\uddfe","screen_name":"DwayneBarnwell","location":"Texas, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":100,"friends_count":1175,"listed_count":1,"created_at":"Wed - Sep 17 09:58:38 +0000 2014","favourites_count":115,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":204,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389458916849946626\/kfMuBL7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389458916849946626\/kfMuBL7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814602802\/1604952648","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300096461917609984,"id_str":"1300096461917609984","name":"Sally - Sachar","screen_name":"SacharSally","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":991,"listed_count":0,"created_at":"Sun - Aug 30 15:42:15 +0000 2020","favourites_count":1837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"status":{"created_at":"Fri - Apr 02 01:31:50 +0000 2021","id":1377795878967185409,"id_str":"1377795878967185409","text":"@MittRomney - How is it possible for @POTUS to find common ground when the Republicans under - @LeaderMcConnell and\u2026 https:\/\/t.co\/MSkzMSAtid","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MittRomney","name":"Mitt - Romney","id":50055701,"id_str":"50055701","indices":[0,11]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[35,41]},{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[91,107]}],"urls":[{"url":"https:\/\/t.co\/MSkzMSAtid","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1377795878967185409","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1377711051060482058,"in_reply_to_status_id_str":"1377711051060482058","in_reply_to_user_id":50055701,"in_reply_to_user_id_str":"50055701","in_reply_to_screen_name":"MittRomney","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300096626623680512\/7Ncj1Wg1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300096626623680512\/7Ncj1Wg1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2869396814,"id_str":"2869396814","name":"Maggie","screen_name":"katyfour4","location":"Moline, - IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":325,"listed_count":0,"created_at":"Tue - Oct 21 20:22:16 +0000 2014","favourites_count":940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":null,"status":{"created_at":"Fri - Mar 25 14:57:19 +0000 2022","id":1507371055429697539,"id_str":"1507371055429697539","text":"RT - @mmpadellan: HERE''S SOME NEWS:\n\nThe January 6th Committee has insurrectionist - Ginni Thomas'' cellphone records.\n\nClarence Thomas must be\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mmpadellan","name":"BrooklynDad_Defiant!","id":1640929196,"id_str":"1640929196","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:34:39 +0000 2022","id":1507108657317785604,"id_str":"1507108657317785604","text":"HERE''S - SOME NEWS:\n\nThe January 6th Committee has insurrectionist Ginni Thomas'' - cellphone records.\n\nClarence Thomas must be sweating.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4972,"favorite_count":30023,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4972,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":974325710541205504,"id_str":"974325710541205504","name":"bashir - hassan","screen_name":"bashirhassan86","location":"","description":"die hard - Manchester united follower and climate change champion","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":568,"listed_count":0,"created_at":"Thu - Mar 15 16:45:26 +0000 2018","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":82,"lang":null,"status":{"created_at":"Sun - Mar 06 18:40:05 +0000 2022","id":1500541745611919365,"id_str":"1500541745611919365","text":"@ManUtd - Disappointing and utterly unacceptable, it doesn''t seem justice to the loyal - fans and followers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500537917508358149,"in_reply_to_status_id_str":"1500537917508358149","in_reply_to_user_id":558797310,"in_reply_to_user_id_str":"558797310","in_reply_to_screen_name":"ManUtd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424751615651852296\/1M1eO2jc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424751615651852296\/1M1eO2jc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298607899229523968,"id_str":"1298607899229523968","name":"October - Brigade","screen_name":"OctoberBrigade","location":"Chicago, IL USA","description":"Epic, - dramatic, electronic music featuring artists from around the world.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":344,"listed_count":1,"created_at":"Wed - Aug 26 13:07:16 +0000 2020","favourites_count":1955,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":336,"lang":null,"status":{"created_at":"Fri - Mar 25 11:23:47 +0000 2022","id":1507317318354968582,"id_str":"1507317318354968582","text":"New - Music Friday!\nTime Will Tell featuring Maya Mikity\nStreaming now - everywhere!\n\nhttps:\/\/t.co\/1tCO3TqiWR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1tCO3TqiWR","expanded_url":"https:\/\/open.spotify.com\/track\/0AymPEiNgbcewV4IZeJHeV?si=9366d98eb7db4d74","display_url":"open.spotify.com\/track\/0AymPEiN\u2026","indices":[84,107]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382648815241596931\/Tex91UWL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382648815241596931\/Tex91UWL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1298607899229523968\/1647919123","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270708050412871687,"id_str":"1270708050412871687","name":"@Larryfemmy\ud83c\uddf3\ud83c\uddec\ud83c\uddfa\ud83c\uddf8\ud83c\udde8\ud83c\udde6","screen_name":"larryfemmy","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":329,"listed_count":0,"created_at":"Wed - Jun 10 13:23:22 +0000 2020","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270708661262995457\/XnZLw2HL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270708661262995457\/XnZLw2HL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":132788351,"id_str":"132788351","name":"A - Kadim","screen_name":"kadim70","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":399,"listed_count":0,"created_at":"Wed - Apr 14 05:21:13 +0000 2010","favourites_count":2215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":309,"lang":null,"status":{"created_at":"Mon - Feb 28 03:44:46 +0000 2022","id":1498142106376089600,"id_str":"1498142106376089600","text":"RT - @AFP: VIDEO: Putin orders nuclear forces on high alert.\n\nRussian president - orders his defence chiefs to put nuclear \"deterrence forces\"\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFP","name":"AFP - News Agency","id":380648579,"id_str":"380648579","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 03:25:51 +0000 2022","id":1498137342053593089,"id_str":"1498137342053593089","text":"VIDEO: - Putin orders nuclear forces on high alert.\n\nRussian president orders his - defence chiefs to put nuclear \"dete\u2026 https:\/\/t.co\/hziGE8Txag","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hziGE8Txag","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498137342053593089","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1498114541800288258,"in_reply_to_status_id_str":"1498114541800288258","in_reply_to_user_id":380648579,"in_reply_to_user_id_str":"380648579","in_reply_to_screen_name":"AFP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":220,"favorite_count":447,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":220,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2329673314\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2329673314\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1076929464536166400,"id_str":"1076929464536166400","name":"Jisan - Gatsby\u2728\ud83c\udde7\ud83c\udde9\ud83d\udc38....(THE ACE)\u2660","screen_name":"beingAstroJisan","location":" - .... Gazipur,Dhaka,Bangladesh","description":"Living one day at a time, with - a fresh baked cookie. Okay. And with a coffee. And maybe some chocolate. - But I promise to take my vitamins.\n#saynotoracism","url":"https:\/\/t.co\/rwMkell1Rz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rwMkell1Rz","expanded_url":"http:\/\/Instagram.com\/astro_jisan","display_url":"Instagram.com\/astro_jisan","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":4996,"listed_count":1,"created_at":"Sun - Dec 23 19:56:07 +0000 2018","favourites_count":11155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":377,"lang":null,"status":{"created_at":"Sun - Feb 06 07:32:10 +0000 2022","id":1490226797568401413,"id_str":"1490226797568401413","text":"RT - @aCuIja: From the darkness of the well, to the light of heaven..\n\nPeople - moved the mountains for you, but ALLAH loves you more.\n\nRest in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aCuIja","name":"Your - L-1485\u2764\ufe0f","id":444161655,"id_str":"444161655","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 05 23:59:51 +0000 2022","id":1490112971221061633,"id_str":"1490112971221061633","text":"From - the darkness of the well, to the light of heaven..\n\nPeople moved the mountains - for you, but ALLAH loves you mo\u2026 https:\/\/t.co\/fK3YvLFQJJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fK3YvLFQJJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490112971221061633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":464,"favorite_count":1932,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":464,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374659008007704579\/TQJqdeJH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374659008007704579\/TQJqdeJH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1076929464536166400\/1607682670","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2508861788,"id_str":"2508861788","name":"heather - pfannen","screen_name":"heatherpfannen","location":"Raleigh, NC","description":"\ud83e\udd0d\ud83c\udf0c - #blacklivesmatter #stopasianhate #stopclimatechange #vote #bts #swiftie #arianator","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":274,"listed_count":0,"created_at":"Tue - May 20 00:39:09 +0000 2014","favourites_count":12224,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1097,"lang":null,"status":{"created_at":"Fri - Mar 18 21:55:12 +0000 2022","id":1504939501356994560,"id_str":"1504939501356994560","text":"RT - @rionabuthello: My oil painting of fog https:\/\/t.co\/gSWGfZcRoW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rionabuthello","name":"RIONA - BUTHELLO","id":1340252128682651650,"id_str":"1340252128682651650","indices":[3,17]}],"urls":[],"media":[{"id":1504841210464190511,"id_str":"1504841210464190511","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","url":"https:\/\/t.co\/gSWGfZcRoW","display_url":"pic.twitter.com\/gSWGfZcRoW","expanded_url":"https:\/\/twitter.com\/rionabuthello\/status\/1504841215308705792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1502,"h":2048,"resize":"fit"},"medium":{"w":880,"h":1200,"resize":"fit"},"small":{"w":499,"h":680,"resize":"fit"}},"source_status_id":1504841215308705792,"source_status_id_str":"1504841215308705792","source_user_id":1340252128682651650,"source_user_id_str":"1340252128682651650"}]},"extended_entities":{"media":[{"id":1504841210464190511,"id_str":"1504841210464190511","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","url":"https:\/\/t.co\/gSWGfZcRoW","display_url":"pic.twitter.com\/gSWGfZcRoW","expanded_url":"https:\/\/twitter.com\/rionabuthello\/status\/1504841215308705792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1502,"h":2048,"resize":"fit"},"medium":{"w":880,"h":1200,"resize":"fit"},"small":{"w":499,"h":680,"resize":"fit"}},"source_status_id":1504841215308705792,"source_status_id_str":"1504841215308705792","source_user_id":1340252128682651650,"source_user_id_str":"1340252128682651650"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 15:24:38 +0000 2022","id":1504841215308705792,"id_str":"1504841215308705792","text":"My - oil painting of fog https:\/\/t.co\/gSWGfZcRoW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504841210464190511,"id_str":"1504841210464190511","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","url":"https:\/\/t.co\/gSWGfZcRoW","display_url":"pic.twitter.com\/gSWGfZcRoW","expanded_url":"https:\/\/twitter.com\/rionabuthello\/status\/1504841215308705792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1502,"h":2048,"resize":"fit"},"medium":{"w":880,"h":1200,"resize":"fit"},"small":{"w":499,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504841210464190511,"id_str":"1504841210464190511","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJFG6EWQC8VyAO.jpg","url":"https:\/\/t.co\/gSWGfZcRoW","display_url":"pic.twitter.com\/gSWGfZcRoW","expanded_url":"https:\/\/twitter.com\/rionabuthello\/status\/1504841215308705792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1502,"h":2048,"resize":"fit"},"medium":{"w":880,"h":1200,"resize":"fit"},"small":{"w":499,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7572,"favorite_count":86911,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7572,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410425077959700488\/BaNui3xl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410425077959700488\/BaNui3xl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2508861788\/1589402919","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":170050263,"id_str":"170050263","name":"\u1d0d\u1d00\u1d22\u1d07\u0274","screen_name":"mazenbrk","location":"Dimension - C-137","description":"Das schwerste Gewicht","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":505,"friends_count":151,"listed_count":4,"created_at":"Fri - Jul 23 20:36:31 +0000 2010","favourites_count":7969,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15600,"lang":null,"status":{"created_at":"Mon - Mar 07 22:44:05 +0000 2022","id":1500965537874165768,"id_str":"1500965537874165768","text":"100% - https:\/\/t.co\/mavn8GOd5D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500965535101730819,"id_str":"1500965535101730819","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FNSAM6PXwAM5f0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNSAM6PXwAM5f0P.jpg","url":"https:\/\/t.co\/mavn8GOd5D","display_url":"pic.twitter.com\/mavn8GOd5D","expanded_url":"https:\/\/twitter.com\/mazenbrk\/status\/1500965537874165768\/photo\/1","type":"photo","sizes":{"large":{"w":1054,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":350,"h":680,"resize":"fit"},"medium":{"w":618,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500965535101730819,"id_str":"1500965535101730819","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FNSAM6PXwAM5f0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNSAM6PXwAM5f0P.jpg","url":"https:\/\/t.co\/mavn8GOd5D","display_url":"pic.twitter.com\/mavn8GOd5D","expanded_url":"https:\/\/twitter.com\/mazenbrk\/status\/1500965537874165768\/photo\/1","type":"photo","sizes":{"large":{"w":1054,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":350,"h":680,"resize":"fit"},"medium":{"w":618,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232794912082534401\/uWeMxFin_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232794912082534401\/uWeMxFin_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170050263\/1623888730","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1119096743654649857,"id_str":"1119096743654649857","name":"Tri - Nguyen","screen_name":"tri_nguuyen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":65,"listed_count":0,"created_at":"Fri - Apr 19 04:33:50 +0000 2019","favourites_count":637,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312932551309357061\/LYaXpJxN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312932551309357061\/LYaXpJxN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1119096743654649857\/1595114581","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17701909,"id_str":"17701909","name":"Rick - James","screen_name":"rickjamesvibe","location":"Charleston, SC","description":"Snapchat: - rickjameschktwn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":1728,"listed_count":3,"created_at":"Fri - Nov 28 07:04:29 +0000 2008","favourites_count":826,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1031,"lang":null,"status":{"created_at":"Sun - May 30 20:45:38 +0000 2021","id":1399104740676472837,"id_str":"1399104740676472837","text":"@DanRather - TY for calling it like it is old school \ud83d\udcaf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanRather","name":"Dan - Rather","id":36711022,"id_str":"36711022","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1399104303995015168,"in_reply_to_status_id_str":"1399104303995015168","in_reply_to_user_id":36711022,"in_reply_to_user_id_str":"36711022","in_reply_to_screen_name":"DanRather","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/939605838481764353\/IaALmEnV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/939605838481764353\/IaALmEnV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17701909\/1471376669","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238711622375522305,"id_str":"1238711622375522305","name":"Daniel - Gonshor","screen_name":"GonshorDaniel","location":"","description":"As good - as any, and better than most.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":180,"listed_count":0,"created_at":"Sat - Mar 14 06:21:13 +0000 2020","favourites_count":1757,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":344,"lang":null,"status":{"created_at":"Wed - Jul 28 21:31:56 +0000 2021","id":1420497275441356806,"id_str":"1420497275441356806","text":"@RexChapman - Frailty","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RexChapman","name":"Rex - Chapman\ud83c\udfc7\ud83c\udffc","id":324703658,"id_str":"324703658","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1420226453623431169,"in_reply_to_status_id_str":"1420226453623431169","in_reply_to_user_id":324703658,"in_reply_to_user_id_str":"324703658","in_reply_to_screen_name":"RexChapman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269849766801924096\/oNO2Gekz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269849766801924096\/oNO2Gekz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276629151022059520,"id_str":"1276629151022059520","name":"The - Human Grace","screen_name":"the_humangrace","location":"World","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":159,"listed_count":0,"created_at":"Fri - Jun 26 21:31:32 +0000 2020","favourites_count":426,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276629257146392576\/XiQAzQHF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276629257146392576\/XiQAzQHF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54664912,"id_str":"54664912","name":"SS","screen_name":"SSmith0225","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":209,"listed_count":0,"created_at":"Tue - Jul 07 20:27:28 +0000 2009","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Jun 01 18:25:12 +0000 2021","id":1399794173109284871,"id_str":"1399794173109284871","text":"Whoa...#TMobileTuesdays - is going BIG for their 5 Year #Thankiversary with awesome deals and free stuff - ALL month! C\u2026 https:\/\/t.co\/u4eLoBIQE6","truncated":true,"entities":{"hashtags":[{"text":"TMobileTuesdays","indices":[7,23]},{"text":"Thankiversary","indices":[54,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u4eLoBIQE6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1399794173109284871","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/354267601\/guccciii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/354267601\/guccciii_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":147302158,"id_str":"147302158","name":"Andi - Slack","screen_name":"andislack","location":"Waterloo","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":227,"friends_count":782,"listed_count":0,"created_at":"Sun - May 23 19:29:19 +0000 2010","favourites_count":56305,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1773,"lang":null,"status":{"created_at":"Fri - Nov 19 03:53:17 +0000 2021","id":1461543074350481410,"id_str":"1461543074350481410","text":"@Venmo - @andislack","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Venmo","name":"Venmo","id":18580938,"id_str":"18580938","indices":[0,6]},{"screen_name":"andislack","name":"Andi - Slack","id":147302158,"id_str":"147302158","indices":[7,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1461242852919361537,"in_reply_to_status_id_str":"1461242852919361537","in_reply_to_user_id":18580938,"in_reply_to_user_id_str":"18580938","in_reply_to_screen_name":"Venmo","geo":null,"coordinates":null,"place":{"id":"4fcb8e32c69ad4ee","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4fcb8e32c69ad4ee.json","place_type":"city","name":"Waterloo","full_name":"Waterloo, - IA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-92.4370833,42.421196],[-92.2732403,42.421196],[-92.2732403,42.570459],[-92.4370833,42.570459]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349902126588305409\/y32IosZX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349902126588305409\/y32IosZX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147302158\/1610676722","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2834847230,"id_str":"2834847230","name":"aya","screen_name":"hycnthflrs","location":"221B - Baker Street","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":915,"friends_count":719,"listed_count":1,"created_at":"Sun - Sep 28 08:41:30 +0000 2014","favourites_count":30081,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493306036304113664\/oSRAPgX0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493306036304113664\/oSRAPgX0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2834847230\/1630262570","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34638390,"id_str":"34638390","name":"Anna - Motiepipay\ud83c\uddf8\ud83c\uddfd","screen_name":"motiepipay","location":"Quezon - City, Philippines","description":"It''s time to slow down....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":570,"listed_count":2,"created_at":"Thu - Apr 23 15:19:05 +0000 2009","favourites_count":4900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5346,"lang":null,"status":{"created_at":"Wed - Feb 16 11:59:15 +0000 2022","id":1493917890407383042,"id_str":"1493917890407383042","text":"RT - @cher: @guinghyung BRAVO\u203c\ufe0fLET WOMEN DO IT\u203c\ufe0fLET LENI,& - ALL\nWOMEN FIGHTING 2 SAVE CLIMATE,CHILDREN, ELDERLY,POOR,HOMELESS,SICK,PPL - OF ALL\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cher","name":"Cher","id":124003770,"id_str":"124003770","indices":[3,8]},{"screen_name":"guinghyung","name":"Rica - May","id":189862378,"id_str":"189862378","indices":[10,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 16 07:37:19 +0000 2022","id":1493851972755021824,"id_str":"1493851972755021824","text":"@guinghyung - BRAVO\u203c\ufe0fLET WOMEN DO IT\u203c\ufe0fLET LENI,& ALL\nWOMEN FIGHTING - 2 SAVE CLIMATE,CHILDREN, ELDERLY,POOR,HOMELESS,SI\u2026 https:\/\/t.co\/pKp7cWed9y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guinghyung","name":"Rica - May","id":189862378,"id_str":"189862378","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/pKp7cWed9y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493851972755021824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":1493844187266961408,"in_reply_to_status_id_str":"1493844187266961408","in_reply_to_user_id":189862378,"in_reply_to_user_id_str":"189862378","in_reply_to_screen_name":"guinghyung","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39531,"favorite_count":127684,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":39531,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/991168383323328512\/-abe0Iqe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991168383323328512\/-abe0Iqe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34638390\/1564283307","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268352838494826497,"id_str":"1268352838494826497","name":"Blooming - Lily","screen_name":"bloom_inglily","location":"Toronto, Ontario","description":"Karma - Disruptor Truth server Love on Demand","url":"https:\/\/t.co\/CsukiqMuWP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CsukiqMuWP","expanded_url":"http:\/\/www.lillianlaidlow.com","display_url":"lillianlaidlow.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":429,"listed_count":0,"created_at":"Thu - Jun 04 01:24:28 +0000 2020","favourites_count":674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":655,"lang":null,"status":{"created_at":"Mon - Feb 07 21:57:05 +0000 2022","id":1490806851172462592,"id_str":"1490806851172462592","text":"@FitFounder - Malcolm X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FitFounder","name":"Dan - Go","id":954336280380346368,"id_str":"954336280380346368","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488572388237271052,"in_reply_to_status_id_str":"1488572388237271052","in_reply_to_user_id":954336280380346368,"in_reply_to_user_id_str":"954336280380346368","in_reply_to_screen_name":"FitFounder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402409263163715586\/zo1QOJkZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402409263163715586\/zo1QOJkZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268352838494826497\/1595065486","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30678911,"id_str":"30678911","name":"Leslie - PY","screen_name":"lotusbuds","location":"Vancouver, British Columbia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":65,"friends_count":250,"listed_count":0,"created_at":"Sun - Apr 12 16:53:00 +0000 2009","favourites_count":891,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":97,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/315969320\/IMG_0842_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/315969320\/IMG_0842_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241451237440024578,"id_str":"1241451237440024578","name":"Happy - One","screen_name":"happyinAZ2","location":"Scottsdale, AZ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":433,"listed_count":0,"created_at":"Sat - Mar 21 19:47:26 +0000 2020","favourites_count":3209,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Tue - Mar 01 00:27:03 +0000 2022","id":1498454734289530889,"id_str":"1498454734289530889","text":"@strategywoman - United States \u2014 Arizona","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"strategywoman","name":"Yaroslava - Antipina","id":1364639441604800513,"id_str":"1364639441604800513","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498210146841141256,"in_reply_to_status_id_str":"1498210146841141256","in_reply_to_user_id":1364639441604800513,"in_reply_to_user_id_str":"1364639441604800513","in_reply_to_screen_name":"strategywoman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1446928682,"id_str":"1446928682","name":"Heidi - Kidd","screen_name":"heidi_kidd","location":"Frisco, TX","description":"A - checkout my website: https:\/\/t.co\/WZ3UtZdaZl \nFB: https:\/\/t.co\/3p3wJfVpoB\nInstagram: - https:\/\/t.co\/3p3wJfVpoB \nArtists, Painter, Runner, Dog\ud83d\udc95 Yogi, - Mom, Wife.","url":"https:\/\/t.co\/WZ3UtZdaZl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WZ3UtZdaZl","expanded_url":"http:\/\/heidikidd.com","display_url":"heidikidd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/WZ3UtZdaZl","expanded_url":"http:\/\/heidikidd.com","display_url":"heidikidd.com","indices":[23,46]},{"url":"https:\/\/t.co\/3p3wJfVpoB","expanded_url":"http:\/\/heidi.kidd.art","display_url":"heidi.kidd.art","indices":[52,75]},{"url":"https:\/\/t.co\/3p3wJfVpoB","expanded_url":"http:\/\/heidi.kidd.art","display_url":"heidi.kidd.art","indices":[87,110]}]}},"protected":false,"followers_count":46,"friends_count":1082,"listed_count":0,"created_at":"Tue - May 21 17:50:38 +0000 2013","favourites_count":18317,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Sun - Feb 20 05:06:36 +0000 2022","id":1495263594258350080,"id_str":"1495263594258350080","text":"@exjon - 3452839","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"exjon","name":"Jon - Gabriel","id":16930489,"id_str":"16930489","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1494814777171845123,"in_reply_to_status_id_str":"1494814777171845123","in_reply_to_user_id":16930489,"in_reply_to_user_id_str":"16930489","in_reply_to_screen_name":"exjon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393925170323144706\/mO66hhRI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393925170323144706\/mO66hhRI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1446928682\/1621172784","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37597700,"id_str":"37597700","name":"Cash - Oyamz","screen_name":"cashmani","location":"DFW","description":"Jesus is King.. - Love him!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":458,"listed_count":0,"created_at":"Mon - May 04 04:51:58 +0000 2009","favourites_count":422,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":247,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/853038098149765120\/uJNyeLM3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/853038098149765120\/uJNyeLM3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37597700\/1451271467","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267534619504553986,"id_str":"1267534619504553986","name":"Areeba - Yasin","screen_name":"areeba_yasin","location":"Berkeley, CA","description":"Bay - Area | American University\u201921 | she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":236,"friends_count":520,"listed_count":1,"created_at":"Mon - Jun 01 19:13:38 +0000 2020","favourites_count":1890,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":359,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364650435852705794\/_L4ZmVLd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364650435852705794\/_L4ZmVLd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267534619504553986\/1598930679","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":717183645253967874,"id_str":"717183645253967874","name":"Pepa","screen_name":"Where_Weve_Been","location":"","description":"Mitten-born - Midwesterner interested in people-centered movements and media","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":875,"listed_count":0,"created_at":"Tue - Apr 05 02:54:40 +0000 2016","favourites_count":10166,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Fri - Dec 04 14:13:30 +0000 2020","id":1334863401995137026,"id_str":"1334863401995137026","text":"@Dave_O_Leary77 - Welcome to the family. Sending you support. You chose to come out now because - it was the right time\u2026 https:\/\/t.co\/DT8MAi00zR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dave_O_Leary77","name":"Dave - T","id":1221786051045400577,"id_str":"1221786051045400577","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/DT8MAi00zR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1334863401995137026","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1334599310978260993,"in_reply_to_status_id_str":"1334599310978260993","in_reply_to_user_id":1221786051045400577,"in_reply_to_user_id_str":"1221786051045400577","in_reply_to_screen_name":"Dave_O_Leary77","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826091666234806272\/sDDAUDL4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826091666234806272\/sDDAUDL4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717183645253967874\/1486931861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1403024917,"id_str":"1403024917","name":"Val - Hollingsworth","screen_name":"ValHollingswor1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":513,"listed_count":0,"created_at":"Sat - May 04 18:06:12 +0000 2013","favourites_count":101,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3326067135,"id_str":"3326067135","name":"Nobluecheck","screen_name":"ImBatman412","location":"USA","description":"he\/him. - Things I like: Batman, Dave Matthews, the New York Mets, guitars, Buddhism - and mindfulness, carbs.\n\nThings I dislike: olives, the New York Yankees","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1124,"friends_count":3124,"listed_count":50,"created_at":"Mon - Jun 15 03:13:40 +0000 2015","favourites_count":64422,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4172,"lang":null,"status":{"created_at":"Sat - Mar 26 07:54:54 +0000 2022","id":1507627135925633029,"id_str":"1507627135925633029","text":"RT - @lilginge220: Best Award Category:\nWORST PERFORMANCE by BRUCE WILLIS in a - 2021 MOVIE (Special Category)\n\nBruce Willis \/ Cosmic Sin (WINN\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lilginge220","name":"Lil - Ginge","id":1500001374393835522,"id_str":"1500001374393835522","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:50:54 +0000 2022","id":1507626131863879683,"id_str":"1507626131863879683","text":"Best - Award Category:\nWORST PERFORMANCE by BRUCE WILLIS in a 2021 MOVIE (Special - Category)\n\nBruce Willis \/ Cosmic Si\u2026 https:\/\/t.co\/kpESb7jDPP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kpESb7jDPP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507626131863879683","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736929935869108225\/HmSMMW1A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736929935869108225\/HmSMMW1A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3326067135\/1634209313","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2974106457,"id_str":"2974106457","name":"Mamie - Waters","screen_name":"mamie_waters","location":"Maryland","description":"to - rea","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":2317,"listed_count":1,"created_at":"Mon - Jan 12 04:39:39 +0000 2015","favourites_count":17589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1156,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445863807478235139\/pAYji2kU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445863807478235139\/pAYji2kU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974106457\/1438552229","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":117123571,"id_str":"117123571","name":"Flacco","screen_name":"Flaccco","location":"Laredo","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":37,"friends_count":695,"listed_count":0,"created_at":"Wed - Feb 24 16:18:47 +0000 2010","favourites_count":2458,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":556,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491530744455434240\/qeCsUBeU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491530744455434240\/qeCsUBeU_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275949825,"id_str":"1275949825","name":"Blake - Wilson","screen_name":"blakewilson31","location":"","description":"Started - trading in Jan. Hodling AMC,GME,BB, with \u270b\ud83c\udffd\ud83d\udc8e\ud83e\udd1a\ud83c\udffd\u2019s. - Also love my CCIV and TSLA stocks. \ud83e\udd8d strong with smooth brain but - learning a lot from all of you.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1982,"friends_count":2746,"listed_count":10,"created_at":"Sun - Mar 17 20:34:44 +0000 2013","favourites_count":196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Wed - Jan 26 04:48:46 +0000 2022","id":1486199411176873984,"id_str":"1486199411176873984","text":"I - \u2764\ufe0f the stock #AMC","truncated":false,"entities":{"hashtags":[{"text":"AMC","indices":[15,19]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1406938197351976964\/A1aaS2oZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1406938197351976964\/A1aaS2oZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275949825\/1616376730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51319610,"id_str":"51319610","name":"Louann - Mahnke","screen_name":"Lola92677","location":"Laguna Niguel, California","description":"I - am a happily married Wife and Mother to a son and a daughter and an English - Golden Retriever in a house with a view of the Pacific Ocean.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":678,"listed_count":0,"created_at":"Sat - Jun 27 02:37:03 +0000 2009","favourites_count":10908,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2924,"lang":null,"status":{"created_at":"Fri - Mar 18 23:36:50 +0000 2022","id":1504965078914723841,"id_str":"1504965078914723841","text":"RT - @itsJeffTiedrich: what kind of shithole party calls for more aid for Ukraine - and then votes down more aid for Ukraine","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itsJeffTiedrich","name":"Jeff - Tiedrich","id":1009577803304656896,"id_str":"1009577803304656896","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 14:18:54 +0000 2022","id":1504824670306156549,"id_str":"1504824670306156549","text":"what - kind of shithole party calls for more aid for Ukraine and then votes down - more aid for Ukraine","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6769,"favorite_count":42734,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6769,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1138559354314010624\/5yOgISsG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1138559354314010624\/5yOgISsG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51319610\/1358868506","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":222698143,"id_str":"222698143","name":"Alberto - R. Mej\u00eda-Pol","screen_name":"albertomejiapol","location":"Baltimore, - Maryland, USA","description":"Born in Dominican Republic. Banking and Insurance - industry. Last job: President at AIG Dom.Rep. Actually runs and advice financial - services businesses","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":0,"listed_count":0,"created_at":"Sat - Dec 04 05:01:13 +0000 2010","favourites_count":4437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2742,"lang":null,"status":{"created_at":"Sun - Apr 04 15:49:11 +0000 2021","id":1378736412338614280,"id_str":"1378736412338614280","text":"@solTllez - Dios miooooo!!!!! Me las como!!! Con todo y gravity... y te quito el old glitter - pant y tambien te como!!!\nQue ricura!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"solTllez","name":"Marisol - T\u00e9llez M.","id":456074740,"id_str":"456074740","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1378451595063668737,"in_reply_to_status_id_str":"1378451595063668737","in_reply_to_user_id":456074740,"in_reply_to_user_id_str":"456074740","in_reply_to_screen_name":"solTllez","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301722049891758080\/26WMQ3x6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301722049891758080\/26WMQ3x6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":904139880862810112,"id_str":"904139880862810112","name":"Sasha","screen_name":"sunshadeauarts","location":"Chicago, - IL","description":"I\u2019m Sasha (she\/her), landscape dice artist, resin - artist, and dice making instructor behind Sunshadeau Arts. https:\/\/t.co\/cCDJzmrUi6","url":"https:\/\/t.co\/IagW4QdqZ5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IagW4QdqZ5","expanded_url":"http:\/\/www.sunshadeauarts.com","display_url":"sunshadeauarts.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/cCDJzmrUi6","expanded_url":"http:\/\/linktr.ee\/SunshadeauArts","display_url":"linktr.ee\/SunshadeauArts","indices":[109,132]}]}},"protected":false,"followers_count":15369,"friends_count":1228,"listed_count":104,"created_at":"Sun - Sep 03 00:32:00 +0000 2017","favourites_count":25815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6664,"lang":null,"status":{"created_at":"Fri - Mar 25 19:57:37 +0000 2022","id":1507446627539292210,"id_str":"1507446627539292210","text":"@StitchedByAras - I have similar spine issues. If you ever need to talk, I\u2019m here.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StitchedByAras","name":"Aras - Sivad","id":1301237021478924288,"id_str":"1301237021478924288","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507400531790209034,"in_reply_to_status_id_str":"1507400531790209034","in_reply_to_user_id":1301237021478924288,"in_reply_to_user_id_str":"1301237021478924288","in_reply_to_screen_name":"StitchedByAras","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286738899281354753\/ZJ19AwHw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286738899281354753\/ZJ19AwHw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/904139880862810112\/1643214786","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":731091889429094400,"id_str":"731091889429094400","name":"Irene - Zindi","screen_name":"ZindiIrene","location":"Manicaland, Zimbabwe","description":"Member - of Parliament Mutasa South Constituency","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":684,"friends_count":438,"listed_count":0,"created_at":"Fri - May 13 12:01:04 +0000 2016","favourites_count":181,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":178,"lang":null,"status":{"created_at":"Tue - Nov 30 05:58:42 +0000 2021","id":1465560900383948803,"id_str":"1465560900383948803","text":"@ZimEye - Wouldn''t it work better if the system is vertically integrated, i. e. The - births and deaths where in case o\u2026 https:\/\/t.co\/7SWxARtMgb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZimEye","name":"ZimEye","id":44569137,"id_str":"44569137","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/7SWxARtMgb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1465560900383948803","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1465555966389362693,"in_reply_to_status_id_str":"1465555966389362693","in_reply_to_user_id":731091889429094400,"in_reply_to_user_id_str":"731091889429094400","in_reply_to_screen_name":"ZindiIrene","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/863775136125726722\/KY2H5dgb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/863775136125726722\/KY2H5dgb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1008518535235166208,"id_str":"1008518535235166208","name":"Talk - Of SD","screen_name":"TalkOfSD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":1048,"listed_count":0,"created_at":"Mon - Jun 18 01:15:30 +0000 2018","favourites_count":421,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Sat - Oct 23 22:45:52 +0000 2021","id":1452043624393416709,"id_str":"1452043624393416709","text":"Just - posted a photo @ Navarre Beach, Florida https:\/\/t.co\/QcYY419I3r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QcYY419I3r","expanded_url":"https:\/\/www.instagram.com\/p\/CVY22Q5Prep\/?utm_medium=twitter","display_url":"instagram.com\/p\/CVY22Q5Prep\/\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1008524786836824065\/A6o9I1dN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1008524786836824065\/A6o9I1dN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008518535235166208\/1596825997","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220964346584391680,"id_str":"1220964346584391680","name":"Anbu - custodian","screen_name":"Anbu70472595","location":"","description":"03\/02\/2001","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":131,"listed_count":0,"created_at":"Sat - Jan 25 06:59:30 +0000 2020","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324554541207965696\/PrVB2W2i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324554541207965696\/PrVB2W2i_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253122775193137153,"id_str":"1253122775193137153","name":"Patrick - Walker@realsouthmemphis","screen_name":"Patrick82919596","location":"","description":"God - fearing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":325,"listed_count":0,"created_at":"Thu - Apr 23 00:45:40 +0000 2020","favourites_count":1575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Mon - Dec 20 18:13:50 +0000 2021","id":1472993661776453636,"id_str":"1472993661776453636","text":"@jimrome - \nJim we loose ear buds too\n#hollifieldduringtysonfight","truncated":false,"entities":{"hashtags":[{"text":"hollifieldduringtysonfight","indices":[36,63]}],"symbols":[],"user_mentions":[{"screen_name":"jimrome","name":"Jim - Rome","id":96821645,"id_str":"96821645","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":96821645,"in_reply_to_user_id_str":"96821645","in_reply_to_screen_name":"jimrome","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253134859616337921\/7duATwcs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253134859616337921\/7duATwcs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1411339128,"id_str":"1411339128","name":"Pablo","screen_name":"pablomiar","location":"Val\u00e8ncia","description":"\ud83d\udcda - Ciencias Pol\u00edticas y de la Administraci\u00f3n P\u00fablica (UV)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":1777,"listed_count":7,"created_at":"Tue - May 07 21:58:50 +0000 2013","favourites_count":19348,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7295,"lang":null,"status":{"created_at":"Fri - Mar 25 13:07:12 +0000 2022","id":1507343342941753344,"id_str":"1507343342941753344","text":"RT - @papirusa: L\u2019anunci de hui del Port: l\u2019Estat, de nou, es renta les - mans sobre l\u2019ampliaci\u00f3 i deixa tota la responsabilitat a l\u2019Autoritat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"papirusa","name":"Papi - Robles Galindo","id":269756741,"id_str":"269756741","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:58:51 +0000 2022","id":1507341239745658880,"id_str":"1507341239745658880","text":"L\u2019anunci - de hui del Port: l\u2019Estat, de nou, es renta les mans sobre l\u2019ampliaci\u00f3 - i deixa tota la responsabilitat a l\u2019\u2026 https:\/\/t.co\/y84Apg1j0Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y84Apg1j0Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507341239745658880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter - for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":116,"favorited":false,"retweeted":false,"lang":"ca"},"is_quote_status":false,"retweet_count":58,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377355234180222976\/Qv7c4rtO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377355234180222976\/Qv7c4rtO_normal.jpg","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835595178,"id_str":"835595178","name":"maongwati - aier","screen_name":"maongin","location":"","description":"By trusting in - the Lord and trying to be positive always","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":252,"listed_count":0,"created_at":"Thu - Sep 20 13:42:35 +0000 2012","favourites_count":235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Tue - Feb 15 13:34:45 +0000 2022","id":1493579536973406209,"id_str":"1493579536973406209","text":"Added - a new video: \"Graduation of my son noken Aier at Montana university on 17 - th December 2021\"\u2026 https:\/\/t.co\/BRlSb3UumF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BRlSb3UumF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493579536973406209","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[99,122]}]},"source":"\u003ca - href=\"http:\/\/www.reverbnation.com\/\" rel=\"nofollow\"\u003eReverbNation\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291619185903038465\/552UkUak_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291619185903038465\/552UkUak_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/835595178\/1597989824","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1938230070,"id_str":"1938230070","name":"Estalina - Szielenski","screen_name":"EsincaS","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":150,"listed_count":1,"created_at":"Sat - Oct 05 17:07:20 +0000 2013","favourites_count":345,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":387,"lang":null,"status":{"created_at":"Wed - Mar 23 21:15:45 +0000 2022","id":1506741515577700358,"id_str":"1506741515577700358","text":"RT - @ananavarro: This is \u201cthe look\u201d developed after a lifetime of being - a woman of color having to put-up with absurdities, mansplaining, mi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ananavarro","name":"Ana - Navarro-C\u00e1rdenas","id":19568591,"id_str":"19568591","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:51:32 +0000 2022","id":1506705221262753800,"id_str":"1506705221262753800","text":"This - is \u201cthe look\u201d developed after a lifetime of being a woman of color - having to put-up with absurdities, mansplai\u2026 https:\/\/t.co\/BBjylHYDHt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BBjylHYDHt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506705221262753800","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7627,"favorite_count":63847,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7627,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536721155063697408\/ALJfqL2e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536721155063697408\/ALJfqL2e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1938230070\/1416799982","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":136643900,"id_str":"136643900","name":"merstling","screen_name":"markerstling","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":472,"listed_count":0,"created_at":"Sat - Apr 24 14:10:34 +0000 2010","favourites_count":11588,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5911,"lang":null,"status":{"created_at":"Mon - Mar 21 02:08:10 +0000 2022","id":1505727938632724482,"id_str":"1505727938632724482","text":"I - miss Don Hewitt. #60Minutes has gone soft. Stories that belong on #SundayMorning are - a regular segment on 60Min.\u2026 https:\/\/t.co\/2SFhn2CHFc","truncated":true,"entities":{"hashtags":[{"text":"60Minutes","indices":[19,29]},{"text":"SundayMorning","indices":[68,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2SFhn2CHFc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505727938632724482","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705440213309349888\/6ecGOZCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705440213309349888\/6ecGOZCu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":153609263,"id_str":"153609263","name":"Steve - Ross","screen_name":"rosswerks","location":"Brooklyn, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1136,"listed_count":1,"created_at":"Wed - Jun 09 00:37:26 +0000 2010","favourites_count":8336,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":482,"lang":null,"status":{"created_at":"Sun - Feb 20 22:42:13 +0000 2022","id":1495529250094563331,"id_str":"1495529250094563331","text":"RT - @jayblackisfunny: Here\u2019s how my brother died:\n\nHe was an alcoholic - who drank himself into a coma.\n\nWhen he got out of the coma, he got s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jayblackisfunny","name":"Jay - Black","id":14178225,"id_str":"14178225","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 20 16:04:12 +0000 2022","id":1495429086742781958,"id_str":"1495429086742781958","text":"Here\u2019s - how my brother died:\n\nHe was an alcoholic who drank himself into a coma.\n\nWhen - he got out of the coma, he go\u2026 https:\/\/t.co\/wnTPHZfz4k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wnTPHZfz4k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495429086742781958","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1456,"favorite_count":7869,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1456,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2915251742\/479eaa6161f235fb818cbd1ea88ab923_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2915251742\/479eaa6161f235fb818cbd1ea88ab923_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58010717,"id_str":"58010717","name":"Cathy - Bley","screen_name":"Mit8y","location":"Oceanside, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":92,"listed_count":0,"created_at":"Sat - Jul 18 19:31:04 +0000 2009","favourites_count":9290,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1535,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":262473928,"id_str":"262473928","name":"Randy - Gerber","screen_name":"rsgerb","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":740,"listed_count":1,"created_at":"Tue - Mar 08 03:25:06 +0000 2011","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Tue - Mar 23 01:14:27 +0000 2021","id":1374167624729423872,"id_str":"1374167624729423872","text":"RT - @StLouisBlues: LIVE: Deryk Engelland joins Ashali and Joey on tonight''s edition - of Pregame Live, presented by @PNCBank! #stlblues https:\u2026","truncated":false,"entities":{"hashtags":[{"text":"stlblues","indices":[123,132]}],"symbols":[],"user_mentions":[{"screen_name":"StLouisBlues","name":"St. - Louis Blues","id":22976125,"id_str":"22976125","indices":[3,16]},{"screen_name":"PNCBank","name":"PNC - Bank","id":40059448,"id_str":"40059448","indices":[113,121]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 23 01:03:57 +0000 2021","id":1374164982397476864,"id_str":"1374164982397476864","text":"LIVE: - Deryk Engelland joins Ashali and Joey on tonight''s edition of Pregame Live, - presented by @PNCBank! #stlblues https:\/\/t.co\/rTKI4sVBWC","truncated":false,"entities":{"hashtags":[{"text":"stlblues","indices":[105,114]}],"symbols":[],"user_mentions":[{"screen_name":"PNCBank","name":"PNC - Bank","id":40059448,"id_str":"40059448","indices":[95,103]}],"urls":[{"url":"https:\/\/t.co\/rTKI4sVBWC","expanded_url":"https:\/\/www.pscp.tv\/w\/cyfkfTI3NTczfDFtckdtd1phd0xReHkgFD8zzq_-PZxLjU4SdtLPw3Mluo0cNhxj8_1OcBvX9g==","display_url":"pscp.tv\/w\/cyfkfTI3NTcz\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":43,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286002056805974016,"id_str":"1286002056805974016","name":"Essex-Richmond - County Democrats","screen_name":"ecrcvadems","location":"Tappahannock, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":217,"listed_count":0,"created_at":"Wed - Jul 22 18:16:11 +0000 2020","favourites_count":378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":615,"lang":null,"status":{"created_at":"Thu - Mar 24 00:51:22 +0000 2022","id":1506795777368199169,"id_str":"1506795777368199169","text":"@CraigSmpa - Liberal media, as you call it, prefers facts. Not alternative ones. Reagan - was not the god you make him\u2026 https:\/\/t.co\/EfTarYhOHy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CraigSmpa","name":"Craig - Shirley","id":2164986385,"id_str":"2164986385","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/EfTarYhOHy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506795777368199169","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506306722285207561,"in_reply_to_status_id_str":"1506306722285207561","in_reply_to_user_id":2164986385,"in_reply_to_user_id_str":"2164986385","in_reply_to_screen_name":"CraigSmpa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286002490736095235\/ChFMy3Br_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286002490736095235\/ChFMy3Br_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286002056805974016\/1612283888","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":746608765,"id_str":"746608765","name":"Marwa - Zeini","screen_name":"zeini_marwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":966,"listed_count":0,"created_at":"Thu - Aug 09 05:26:33 +0000 2012","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":404456518,"id_str":"404456518","name":"Makedonka - Baloski","screen_name":"MBaloski","location":"Illinois","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":621,"listed_count":1,"created_at":"Thu - Nov 03 23:22:07 +0000 2011","favourites_count":494,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788223935829671936\/g1NOBtPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788223935829671936\/g1NOBtPm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":899285059,"id_str":"899285059","name":"BoutDamnTime","screen_name":"dontell51","location":"","description":"Just - saying it\u2019s not supposed to be this way. #resistance #Resist #ImpeachTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2085,"friends_count":3455,"listed_count":0,"created_at":"Tue - Oct 23 05:36:25 +0000 2012","favourites_count":2632,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11177,"lang":null,"status":{"created_at":"Fri - Mar 25 22:57:26 +0000 2022","id":1507491881076367362,"id_str":"1507491881076367362","text":"@chipfranklin - Coke and pubes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507460647680114690,"in_reply_to_status_id_str":"1507460647680114690","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352284063051239424\/Wgjna9qN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352284063051239424\/Wgjna9qN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899285059\/1611244727","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2881227541,"id_str":"2881227541","name":"#LandBack","screen_name":"healingindige","location":"she\/they - ???","description":"learning to reconnect & heal with my \ud83c\uddec\ud83c\uddf9-indigenous - roots \u2022 anti-fascist \u2022 adoptee","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":1332,"listed_count":0,"created_at":"Tue - Oct 28 20:19:13 +0000 2014","favourites_count":53609,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24359,"lang":null,"status":{"created_at":"Sat - Mar 26 01:34:52 +0000 2022","id":1507531496516685831,"id_str":"1507531496516685831","text":"RT - @MorePerfectUS: LEAKED EMAIL: Applebee\u2019s franchise exec says that rising - gas prices are great for business because the chain can offer w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MorePerfectUS","name":"More - Perfect Union","id":1321935792416149505,"id_str":"1321935792416149505","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:01:04 +0000 2022","id":1507417295739629571,"id_str":"1507417295739629571","text":"LEAKED - EMAIL: Applebee\u2019s franchise exec says that rising gas prices are great - for business because the chain can of\u2026 https:\/\/t.co\/6I679P1H7l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6I679P1H7l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507417295739629571","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6499,"favorite_count":17006,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6499,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506830892811141124\/G-n9isW7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506830892811141124\/G-n9isW7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2881227541\/1647888681","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":297014819,"id_str":"297014819","name":"Anne - Polland","screen_name":"APolland","location":"N Ireland","description":"Passionate - about Equality, US politics, Sports generally, and about being passionate!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":146,"friends_count":1029,"listed_count":6,"created_at":"Wed - May 11 19:46:18 +0000 2011","favourites_count":1952,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6309,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528710250862346241\/4K4i-YUR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528710250862346241\/4K4i-YUR_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":630434556,"id_str":"630434556","name":"say - wat","screen_name":"stayhomi","location":"Birmingham, AL","description":"it\u2019s - gonna be a no from me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":217,"listed_count":0,"created_at":"Sun - Jul 08 16:53:29 +0000 2012","favourites_count":11078,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":909,"lang":null,"status":{"created_at":"Wed - Mar 23 22:02:23 +0000 2022","id":1506753249076035597,"id_str":"1506753249076035597","text":"so - hot you\u2019re hurting my feelings","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358341626427551744\/EqrOM0JT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358341626427551744\/EqrOM0JT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630434556\/1609128561","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":327537203,"id_str":"327537203","name":"Jose - Rodriguez","screen_name":"031675","location":"West Covina, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":49,"friends_count":438,"listed_count":0,"created_at":"Fri - Jul 01 18:41:15 +0000 2011","favourites_count":4166,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":201,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234277665370038272\/1cNRvQUr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234277665370038272\/1cNRvQUr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327537203\/1391891413","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":291799035,"id_str":"291799035","name":"Clemence - Landers","screen_name":"ClemenceLanders","location":"","description":"Policy - Fellow @CGDev. Former @WorldBank @USTreasury. Views=mine + RTs\u2260endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":450,"friends_count":788,"listed_count":13,"created_at":"Mon - May 02 16:46:02 +0000 2011","favourites_count":1452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1205,"lang":null,"status":{"created_at":"Fri - Mar 25 18:46:23 +0000 2022","id":1507428700798791685,"id_str":"1507428700798791685","text":"RT - @MichaelPisa: \"I\u2019m unwilling to participate in this effort. The idea - that claims against the Taliban could be attached to foreign exchan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelPisa","name":"Michael - Pisa","id":828193454,"id_str":"828193454","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:27:28 +0000 2022","id":1507423940691517447,"id_str":"1507423940691517447","text":"\"I\u2019m - unwilling to participate in this effort. The idea that claims against the - Taliban could be attached to foreign\u2026 https:\/\/t.co\/iWicfDuZJn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iWicfDuZJn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507423940691517447","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/getchirrapp.com\" rel=\"nofollow\"\u003echirr.app\u003c\/a\u003e","in_reply_to_status_id":1507423939919851522,"in_reply_to_status_id_str":"1507423939919851522","in_reply_to_user_id":828193454,"in_reply_to_user_id_str":"828193454","in_reply_to_screen_name":"MichaelPisa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338792508\/15762_722231205715_403817_41317209_1362806_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338792508\/15762_722231205715_403817_41317209_1362806_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/291799035\/1564419799","profile_link_color":"1B95E0","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140635375154524160,"id_str":"1140635375154524160","name":"ContextContent","screen_name":"context_content","location":"Greater - Denver Area ","description":"Financial PR + Content #WordsThatCount Ex @Bloomberg - #PE #AssetManagement #Alternatives #PrivateMarkets #Tech #MediaRelations #ContentStrategy","url":"https:\/\/t.co\/TJW68DwwGB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TJW68DwwGB","expanded_url":"http:\/\/www.contextcontentllc.com","display_url":"contextcontentllc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":37,"friends_count":830,"listed_count":0,"created_at":"Mon - Jun 17 15:00:40 +0000 2019","favourites_count":230,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140729295062458368\/GAJbq1ai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140729295062458368\/GAJbq1ai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1140635375154524160\/1584982722","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":862795450830782464,"id_str":"862795450830782464","name":"Charles - Peoples","screen_name":"Charles63116566","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":449,"listed_count":0,"created_at":"Thu - May 11 22:24:00 +0000 2017","favourites_count":1148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Mar 06 23:00:12 +0000 2021","id":1368335634931343372,"id_str":"1368335634931343372","text":"@GoHeels - @UNC_Basketball @MarathonPetroCo Pa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GoHeels","name":"UNC - Tar Heels","id":204910970,"id_str":"204910970","indices":[0,8]},{"screen_name":"UNC_Basketball","name":"Carolina - Basketball","id":45575375,"id_str":"45575375","indices":[9,24]},{"screen_name":"MarathonPetroCo","name":"Marathon - Petroleum","id":320962473,"id_str":"320962473","indices":[25,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1368333067052478467,"in_reply_to_status_id_str":"1368333067052478467","in_reply_to_user_id":204910970,"in_reply_to_user_id_str":"204910970","in_reply_to_screen_name":"GoHeels","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1355377802,"id_str":"1355377802","name":"Anil - Bajaj","screen_name":"Anilbajaj11","location":"Chicago, IL","description":"Birthday - 4th March","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":2136,"listed_count":3,"created_at":"Mon - Apr 15 21:22:10 +0000 2013","favourites_count":282,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":268,"lang":null,"status":{"created_at":"Wed - Dec 22 01:17:33 +0000 2021","id":1473462680413523971,"id_str":"1473462680413523971","text":"RT - @DanRather: Dr. Anthony Fauci is an American hero. Retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanRather","name":"Dan - Rather","id":36711022,"id_str":"36711022","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 21 16:14:30 +0000 2021","id":1473326016424595457,"id_str":"1473326016424595457","text":"Dr. - Anthony Fauci is an American hero. Retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66258,"favorite_count":116199,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":66258,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019687738210209794\/iSLYk1yp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019687738210209794\/iSLYk1yp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1355377802\/1448423751","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297435707758190592,"id_str":"1297435707758190592","name":"TK","screen_name":"TK11349286","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":521,"listed_count":0,"created_at":"Sun - Aug 23 07:30:31 +0000 2020","favourites_count":48,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181818135579516928,"id_str":"1181818135579516928","name":"Muhammad - ObaiDullah","screen_name":"MdObaid795321","location":"Dhaka","description":"Muslim - | Student | Social Activists | Always Stand for Humanity |","url":"https:\/\/t.co\/ZaIc0bT6Rd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZaIc0bT6Rd","expanded_url":"http:\/\/linkedin.com\/in\/md-obaidullah-4546671b4","display_url":"linkedin.com\/in\/md-obaidull\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":824,"listed_count":0,"created_at":"Wed - Oct 09 06:26:34 +0000 2019","favourites_count":27679,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2818,"lang":null,"status":{"created_at":"Sat - Mar 26 01:00:50 +0000 2022","id":1507522933199347714,"id_str":"1507522933199347714","text":"RT - @globaltimesnews: #GTCartoon: The root cause of #UkraineCrisis.\n#CauseOfGlobalUnrest - #NATOExpansion https:\/\/t.co\/IrnWHNnn08","truncated":false,"entities":{"hashtags":[{"text":"GTCartoon","indices":[21,31]},{"text":"UkraineCrisis","indices":[51,65]},{"text":"CauseOfGlobalUnrest","indices":[67,87]},{"text":"NATOExpansion","indices":[88,102]}],"symbols":[],"user_mentions":[{"screen_name":"globaltimesnews","name":"Global - Times","id":49616273,"id_str":"49616273","indices":[3,19]}],"urls":[],"media":[{"id":1507300516258545666,"id_str":"1507300516258545666","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1980,"h":1080,"resize":"fit"},"small":{"w":680,"h":371,"resize":"fit"},"medium":{"w":1200,"h":655,"resize":"fit"}},"source_status_id":1507507627571482626,"source_status_id_str":"1507507627571482626","source_user_id":49616273,"source_user_id_str":"49616273"}]},"extended_entities":{"media":[{"id":1507300516258545666,"id_str":"1507300516258545666","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1980,"h":1080,"resize":"fit"},"small":{"w":680,"h":371,"resize":"fit"},"medium":{"w":1200,"h":655,"resize":"fit"}},"source_status_id":1507507627571482626,"source_status_id_str":"1507507627571482626","source_user_id":49616273,"source_user_id_str":"49616273"},{"id":1507300516795412486,"id_str":"1507300516795412486","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1YFacAYyLkL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1YFacAYyLkL.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":408,"resize":"fit"},"medium":{"w":1200,"h":720,"resize":"fit"},"large":{"w":1200,"h":720,"resize":"fit"}},"source_status_id":1507507627571482626,"source_status_id_str":"1507507627571482626","source_user_id":49616273,"source_user_id_str":"49616273"},{"id":1507300516984156165,"id_str":"1507300516984156165","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1YyacAUALgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1YyacAUALgM.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":720,"resize":"fit"},"medium":{"w":1200,"h":720,"resize":"fit"}},"source_status_id":1507507627571482626,"source_status_id_str":"1507507627571482626","source_user_id":49616273,"source_user_id_str":"49616273"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:00:01 +0000 2022","id":1507507627571482626,"id_str":"1507507627571482626","text":"#GTCartoon: - The root cause of #UkraineCrisis.\n#CauseOfGlobalUnrest #NATOExpansion https:\/\/t.co\/IrnWHNnn08","truncated":false,"entities":{"hashtags":[{"text":"GTCartoon","indices":[0,10]},{"text":"UkraineCrisis","indices":[30,44]},{"text":"CauseOfGlobalUnrest","indices":[46,66]},{"text":"NATOExpansion","indices":[67,81]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507300516258545666,"id_str":"1507300516258545666","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1980,"h":1080,"resize":"fit"},"small":{"w":680,"h":371,"resize":"fit"},"medium":{"w":1200,"h":655,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507300516258545666,"id_str":"1507300516258545666","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1WFagAIqJDp.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1980,"h":1080,"resize":"fit"},"small":{"w":680,"h":371,"resize":"fit"},"medium":{"w":1200,"h":655,"resize":"fit"}}},{"id":1507300516795412486,"id_str":"1507300516795412486","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1YFacAYyLkL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1YFacAYyLkL.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":408,"resize":"fit"},"medium":{"w":1200,"h":720,"resize":"fit"},"large":{"w":1200,"h":720,"resize":"fit"}}},{"id":1507300516984156165,"id_str":"1507300516984156165","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsB1YyacAUALgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsB1YyacAUALgM.jpg","url":"https:\/\/t.co\/IrnWHNnn08","display_url":"pic.twitter.com\/IrnWHNnn08","expanded_url":"https:\/\/twitter.com\/globaltimesnews\/status\/1507507627571482626\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":720,"resize":"fit"},"medium":{"w":1200,"h":720,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":219,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":72,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489605465160175618\/p1B586RU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489605465160175618\/p1B586RU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1181818135579516928\/1585393966","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4431476253,"id_str":"4431476253","name":"isabelle","screen_name":"isabellecdougl1","location":"Midland, - MI","description":"Friendly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":109,"listed_count":0,"created_at":"Wed - Dec 09 23:26:34 +0000 2015","favourites_count":640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Nov 04 03:01:31 +0000 2020","id":1323822658287472640,"id_str":"1323822658287472640","text":"@chrissyteigen - Same here...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chrissyteigen","name":"chrissy - teigen","id":39364684,"id_str":"39364684","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1323808927440531456,"in_reply_to_status_id_str":"1323808927440531456","in_reply_to_user_id":39364684,"in_reply_to_user_id_str":"39364684","in_reply_to_screen_name":"chrissyteigen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3269294358,"id_str":"3269294358","name":"Enno - O.","screen_name":"uhnda_caver","location":"","description":"News addict. - I follow the news, so you don''t have to. \ud83d\ude0c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":289,"listed_count":0,"created_at":"Sun - Jul 05 20:08:17 +0000 2015","favourites_count":1029,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Tue - Apr 06 18:40:05 +0000 2021","id":1379504199793250307,"id_str":"1379504199793250307","text":"RT - @GreenvilleUtd: Derek Kaple bags his 2nd goal against Lazers to secure all - 3 points! \ud83d\udd25\ud83d\udd25\ud83d\udd25 https:\/\/t.co\/YT3jmoys6N","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GreenvilleUtd","name":"Greenville - United","id":1269764449893826560,"id_str":"1269764449893826560","indices":[3,17]}],"urls":[],"media":[{"id":1379289305756090371,"id_str":"1379289305756090371","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","url":"https:\/\/t.co\/YT3jmoys6N","display_url":"pic.twitter.com\/YT3jmoys6N","expanded_url":"https:\/\/twitter.com\/GreenvilleUtd\/status\/1379289337624457219\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":406,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":406,"resize":"fit"}},"source_status_id":1379289337624457219,"source_status_id_str":"1379289337624457219","source_user_id":1269764449893826560,"source_user_id_str":"1269764449893826560"}]},"extended_entities":{"media":[{"id":1379289305756090371,"id_str":"1379289305756090371","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","url":"https:\/\/t.co\/YT3jmoys6N","display_url":"pic.twitter.com\/YT3jmoys6N","expanded_url":"https:\/\/twitter.com\/GreenvilleUtd\/status\/1379289337624457219\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":406,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":406,"resize":"fit"}},"source_status_id":1379289337624457219,"source_status_id_str":"1379289337624457219","source_user_id":1269764449893826560,"source_user_id_str":"1269764449893826560","video_info":{"aspect_ratio":[360,203],"duration_millis":23200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/pl\/EgYw36CDaGC3BeLt.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/vid\/720x406\/76VU8bOM7b7J0nMU.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/vid\/478x270\/m3RmVFUI9lcxVsXW.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 06 04:26:18 +0000 2021","id":1379289337624457219,"id_str":"1379289337624457219","text":"Derek - Kaple bags his 2nd goal against Lazers to secure all 3 points! \ud83d\udd25\ud83d\udd25\ud83d\udd25 - https:\/\/t.co\/YT3jmoys6N","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1379289305756090371,"id_str":"1379289305756090371","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","url":"https:\/\/t.co\/YT3jmoys6N","display_url":"pic.twitter.com\/YT3jmoys6N","expanded_url":"https:\/\/twitter.com\/GreenvilleUtd\/status\/1379289337624457219\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":406,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":406,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1379289305756090371,"id_str":"1379289305756090371","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1379289305756090371\/pu\/img\/I81dRd8W5sD3XuK0.jpg","url":"https:\/\/t.co\/YT3jmoys6N","display_url":"pic.twitter.com\/YT3jmoys6N","expanded_url":"https:\/\/twitter.com\/GreenvilleUtd\/status\/1379289337624457219\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":406,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":406,"resize":"fit"}},"video_info":{"aspect_ratio":[360,203],"duration_millis":23200,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/pl\/EgYw36CDaGC3BeLt.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/vid\/720x406\/76VU8bOM7b7J0nMU.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1379289305756090371\/pu\/vid\/478x270\/m3RmVFUI9lcxVsXW.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"3b98b02fba3f9753","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3b98b02fba3f9753.json","place_type":"admin","name":"North - Carolina","full_name":"North Carolina, USA","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-84.3219475,33.752879],[-75.40012,33.752879],[-75.40012,36.588118],[-84.3219475,36.588118]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319474437536706561\/1FdS4mc4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319474437536706561\/1FdS4mc4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269294358\/1603422211","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54234645,"id_str":"54234645","name":"Owen - Wild","screen_name":"owenwild","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":766,"listed_count":12,"created_at":"Mon - Jul 06 15:29:31 +0000 2009","favourites_count":2532,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1147,"lang":null,"status":{"created_at":"Wed - Mar 02 12:07:54 +0000 2022","id":1498993496669274114,"id_str":"1498993496669274114","text":"Are - you unsure how to make the most of your data? \n\nI\u2019m excited to share, - in our upcoming @AmerBanker webinar, expe\u2026 https:\/\/t.co\/iMqvoRZXj7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmerBanker","name":"American - Banker","id":26755480,"id_str":"26755480","indices":[90,101]}],"urls":[{"url":"https:\/\/t.co\/iMqvoRZXj7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498993496669274114","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427891665\/Owen_Wild_photo_-_June_2007_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427891665\/Owen_Wild_photo_-_June_2007_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":801243422619267072,"id_str":"801243422619267072","name":"Val - K.","screen_name":"ValK05410225","location":"Florida, USA","description":"Professional - Counselor, Adjunct Psychology Professor, and runway model in South Florida","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":4648,"listed_count":1,"created_at":"Wed - Nov 23 01:58:13 +0000 2016","favourites_count":36858,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26127,"lang":null,"status":{"created_at":"Sat - Mar 26 03:48:53 +0000 2022","id":1507565223171002382,"id_str":"1507565223171002382","text":"@chipfranklin - Hell Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507498171890647041,"in_reply_to_status_id_str":"1507498171890647041","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/934977222389137408\/UMcnILbF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/934977222389137408\/UMcnILbF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801243422619267072\/1480816322","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":915906254660341766,"id_str":"915906254660341766","name":"Jacqueline - McMahon","screen_name":"mcmahonjackie1","location":"Philadelphia, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":18,"friends_count":505,"listed_count":0,"created_at":"Thu - Oct 05 11:47:22 +0000 2017","favourites_count":1251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331033442352586754\/9UKgLCOk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331033442352586754\/9UKgLCOk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/915906254660341766\/1510145744","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1077033312722530304,"id_str":"1077033312722530304","name":"Rich - Casey","screen_name":"RichCasey13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":310,"listed_count":1,"created_at":"Mon - Dec 24 02:48:46 +0000 2018","favourites_count":26958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6308,"lang":null,"status":{"created_at":"Fri - Mar 25 23:49:32 +0000 2022","id":1507504991392702476,"id_str":"1507504991392702476","text":"RT - @FPWellman: What a pathetic joke the GOP is today. No decency. No honor. Just - lies and poison.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FPWellman","name":"Fred - Wellman","id":42518865,"id_str":"42518865","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:19:26 +0000 2022","id":1507497415401783301,"id_str":"1507497415401783301","text":"What - a pathetic joke the GOP is today. No decency. No honor. Just lies and poison. - https:\/\/t.co\/25DNtuf0Uq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/25DNtuf0Uq","expanded_url":"https:\/\/twitter.com\/noliewithbtc\/status\/1507492833665728517","display_url":"twitter.com\/noliewithbtc\/s\u2026","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":563,"favorite_count":3684,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":563,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1961037698,"id_str":"1961037698","name":"Mike - honcho","screen_name":"bish23_mark","location":"Highland MI","description":"learning - Russian, it just may come in handy at this time in history. Don''t b a dick - if I misspelled a word or didn''t put a comma somewhere.140crts is a bitch.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":762,"listed_count":6,"created_at":"Mon - Oct 14 16:53:51 +0000 2013","favourites_count":23640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4851,"lang":null,"status":{"created_at":"Thu - Mar 24 23:03:04 +0000 2022","id":1507130907823685638,"id_str":"1507130907823685638","text":"Amazing - https:\/\/t.co\/pyoBG2FNlm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pyoBG2FNlm","expanded_url":"https:\/\/twitter.com\/scienceClub01\/status\/1506858475070148612","display_url":"twitter.com\/scienceClub01\/\u2026","indices":[8,31]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506858475070148612,"quoted_status_id_str":"1506858475070148612","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375806987225694211\/35PoiDZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375806987225694211\/35PoiDZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1961037698\/1427034122","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234520110477594625,"id_str":"1234520110477594625","name":"Omar - Muhammadi","screen_name":"OmarMuhammadi83","location":"Afghanistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":365,"listed_count":0,"created_at":"Mon - Mar 02 16:45:27 +0000 2020","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Wed - Feb 16 19:01:12 +0000 2022","id":1494024077614403588,"id_str":"1494024077614403588","text":"@AhmadQasani - \u062d\u062a\u06cc \u06cc\u06a9 \u0627\u062c\u06cc\u0631 \u062d\u06a9\u0648\u0645\u062a - \u0633\u0627\u0628\u0642 \u0647\u0645 \u0627\u0632 \u0637\u0631\u06cc\u0642 - \u0631\u0642\u0627\u0628\u062a \u0622\u0632\u0627\u062f \u062a\u0639\u06cc\u06cc\u0646 - \u0646\u0634\u062f\u0647 \u0628\u0648\u062f\u0646\u062f \u0686\u0647 \u0628\u0631\u0633\u062f - \u0628\u0647 \u0622\u0645\u0631\u06cc\u0646 \u0622\u0646 \u062d\u06a9\u0648\u0645\u062a - \u062f\u0632\u062f \u0648 \u0645\u0641\u0633\u062f \u0647\u0645\u0647 \u0622\u0646\u0647\u0627 - \u0641\u0631\u0627\u0634\u0648\u062a\u06cc \u0628\u0648\u062f\u0646\u062f.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AhmadQasani","name":"Bashir - Ahmad Qasani","id":1100719310387982336,"id_str":"1100719310387982336","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1493967528288464901,"in_reply_to_status_id_str":"1493967528288464901","in_reply_to_user_id":1100719310387982336,"in_reply_to_user_id_str":"1100719310387982336","in_reply_to_screen_name":"AhmadQasani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1425129898574811139\/8qLjQ2Ok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1425129898574811139\/8qLjQ2Ok_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1234520110477594625\/1628262326","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":461207321,"id_str":"461207321","name":"Louey","screen_name":"LaidbackLouey","location":"orlando","description":"\u201cLet - everything happen to you ,Beauty and terror ,Just keep going ,No feeling is - final.\u201d Rainer Maria Rilke","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":319,"friends_count":651,"listed_count":3,"created_at":"Wed - Jan 11 15:23:03 +0000 2012","favourites_count":34419,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22468,"lang":null,"status":{"created_at":"Thu - Mar 24 09:32:37 +0000 2022","id":1506926954217365508,"id_str":"1506926954217365508","text":"RT - @Super70sSports: Ron Washington always looks like he\u2019s seen more fucked - up shit than anyone else ever. https:\/\/t.co\/qgkdGgDvZc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Super70sSports","name":"Super - 70s Sports","id":2259809232,"id_str":"2259809232","indices":[3,18]}],"urls":[],"media":[{"id":1506711850389487622,"id_str":"1506711850389487622","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","url":"https:\/\/t.co\/qgkdGgDvZc","display_url":"pic.twitter.com\/qgkdGgDvZc","expanded_url":"https:\/\/twitter.com\/Super70sSports\/status\/1506711861609259019\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1164,"h":1164,"resize":"fit"},"large":{"w":1164,"h":1164,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506711861609259019,"source_status_id_str":"1506711861609259019","source_user_id":2259809232,"source_user_id_str":"2259809232"}]},"extended_entities":{"media":[{"id":1506711850389487622,"id_str":"1506711850389487622","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","url":"https:\/\/t.co\/qgkdGgDvZc","display_url":"pic.twitter.com\/qgkdGgDvZc","expanded_url":"https:\/\/twitter.com\/Super70sSports\/status\/1506711861609259019\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1164,"h":1164,"resize":"fit"},"large":{"w":1164,"h":1164,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506711861609259019,"source_status_id_str":"1506711861609259019","source_user_id":2259809232,"source_user_id_str":"2259809232"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 19:17:55 +0000 2022","id":1506711861609259019,"id_str":"1506711861609259019","text":"Ron - Washington always looks like he\u2019s seen more fucked up shit than anyone - else ever. https:\/\/t.co\/qgkdGgDvZc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506711850389487622,"id_str":"1506711850389487622","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","url":"https:\/\/t.co\/qgkdGgDvZc","display_url":"pic.twitter.com\/qgkdGgDvZc","expanded_url":"https:\/\/twitter.com\/Super70sSports\/status\/1506711861609259019\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1164,"h":1164,"resize":"fit"},"large":{"w":1164,"h":1164,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506711850389487622,"id_str":"1506711850389487622","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjqce1WQAY_fdZ.jpg","url":"https:\/\/t.co\/qgkdGgDvZc","display_url":"pic.twitter.com\/qgkdGgDvZc","expanded_url":"https:\/\/twitter.com\/Super70sSports\/status\/1506711861609259019\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1164,"h":1164,"resize":"fit"},"large":{"w":1164,"h":1164,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":321,"favorite_count":5176,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":321,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1054924922873671681\/pOWeQz88_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054924922873671681\/pOWeQz88_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461207321\/1609103595","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287690717779959808,"id_str":"1287690717779959808","name":"Shantanu - Bhattacharyya.","screen_name":"Shantan12394862","location":"Salt Lake City, - Bidhan Nagar","description":"Asst.Teacher of English.\nFormer ELA Teacher, - Federal Programs.\nNorth Carolina, USA.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":450,"listed_count":0,"created_at":"Mon - Jul 27 10:07:36 +0000 2020","favourites_count":4809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Thu - Jan 06 09:16:43 +0000 2022","id":1479019086201843713,"id_str":"1479019086201843713","text":"@msisodia - Respected Sir, \nMy son needs transcripts of MA ( Economics) for his upcoming - PhD applications abroad. \nCo\u2026 https:\/\/t.co\/YQFxbbNhs3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"msisodia","name":"Manish - Sisodia","id":30417501,"id_str":"30417501","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/YQFxbbNhs3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479019086201843713","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1478959424462999552,"in_reply_to_status_id_str":"1478959424462999552","in_reply_to_user_id":30417501,"in_reply_to_user_id_str":"30417501","in_reply_to_screen_name":"msisodia","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303010592580542465\/MuVh7UlZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303010592580542465\/MuVh7UlZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145404949418971136,"id_str":"1145404949418971136","name":"Susan - E Murphy","screen_name":"SusanEMurphy1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":49,"listed_count":0,"created_at":"Sun - Jun 30 18:53:15 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Jul 02 01:52:16 +0000 2020","id":1278506747083264000,"id_str":"1278506747083264000","text":"Hey - @StevenMnuchin1, long time listener, first-time tweeter here. The postal service - is vital to our democracy and\u2026 https:\/\/t.co\/BWqdrsZrI9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stevenmnuchin1","name":"Steven - Mnuchin","id":799764016885329921,"id_str":"799764016885329921","indices":[4,19]}],"urls":[{"url":"https:\/\/t.co\/BWqdrsZrI9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1278506747083264000","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312919107440988161,"id_str":"1312919107440988161","name":"Dara - McMains","screen_name":"TheAmazingDara","location":"","description":"No.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":219,"listed_count":0,"created_at":"Mon - Oct 05 00:54:51 +0000 2020","favourites_count":157,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Wed - Jul 14 22:51:13 +0000 2021","id":1415443796620300290,"id_str":"1415443796620300290","text":"@BachelorABC - if Connor isn\u2019t the new Bachelor then something isn\u2019t right!!!! - Make Connor the new Bachelor!!\u2026 https:\/\/t.co\/mJGbqqWn0E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BachelorABC","name":"The - Bachelor","id":346878074,"id_str":"346878074","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/mJGbqqWn0E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1415443796620300290","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":346878074,"in_reply_to_user_id_str":"346878074","in_reply_to_screen_name":"BachelorABC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312919254937882625\/citz8AHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312919254937882625\/citz8AHU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267988493583728640,"id_str":"1267988493583728640","name":"Ally - Satnick","screen_name":"SatnickAlly","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":71,"listed_count":0,"created_at":"Wed - Jun 03 01:16:40 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1177263752665862144,"id_str":"1177263752665862144","name":"Vee\ud83c\udf39\ud83c\udf1f","screen_name":"_viviiaann","location":"Ghana","description":"professional - over-thinker || Manutd\u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2161,"friends_count":1491,"listed_count":1,"created_at":"Thu - Sep 26 16:49:04 +0000 2019","favourites_count":10125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"status":{"created_at":"Sat - Mar 26 00:59:08 +0000 2022","id":1507522504268656641,"id_str":"1507522504268656641","text":"RT - @tmbIrpics: Need an afternoon like this \u2600\ufe0f\ud83c\udf77 https:\/\/t.co\/aNAXHoKDFw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tmbIrpics","name":"\ud83c\udf43\u200f\u064b","id":2982938111,"id_str":"2982938111","indices":[3,13]}],"urls":[],"media":[{"id":1507073294763184134,"id_str":"1507073294763184134","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","url":"https:\/\/t.co\/aNAXHoKDFw","display_url":"pic.twitter.com\/aNAXHoKDFw","expanded_url":"https:\/\/twitter.com\/tmbIrpics\/status\/1507073300517765120\/photo\/1","type":"photo","sizes":{"large":{"w":1170,"h":1405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":999,"h":1200,"resize":"fit"},"small":{"w":566,"h":680,"resize":"fit"}},"source_status_id":1507073300517765120,"source_status_id_str":"1507073300517765120","source_user_id":2982938111,"source_user_id_str":"2982938111"}]},"extended_entities":{"media":[{"id":1507073294763184134,"id_str":"1507073294763184134","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","url":"https:\/\/t.co\/aNAXHoKDFw","display_url":"pic.twitter.com\/aNAXHoKDFw","expanded_url":"https:\/\/twitter.com\/tmbIrpics\/status\/1507073300517765120\/photo\/1","type":"photo","sizes":{"large":{"w":1170,"h":1405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":999,"h":1200,"resize":"fit"},"small":{"w":566,"h":680,"resize":"fit"}},"source_status_id":1507073300517765120,"source_status_id_str":"1507073300517765120","source_user_id":2982938111,"source_user_id_str":"2982938111"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:14:09 +0000 2022","id":1507073300517765120,"id_str":"1507073300517765120","text":"Need - an afternoon like this \u2600\ufe0f\ud83c\udf77 https:\/\/t.co\/aNAXHoKDFw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507073294763184134,"id_str":"1507073294763184134","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","url":"https:\/\/t.co\/aNAXHoKDFw","display_url":"pic.twitter.com\/aNAXHoKDFw","expanded_url":"https:\/\/twitter.com\/tmbIrpics\/status\/1507073300517765120\/photo\/1","type":"photo","sizes":{"large":{"w":1170,"h":1405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":999,"h":1200,"resize":"fit"},"small":{"w":566,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507073294763184134,"id_str":"1507073294763184134","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOozLUDWUAYDlvK.jpg","url":"https:\/\/t.co\/aNAXHoKDFw","display_url":"pic.twitter.com\/aNAXHoKDFw","expanded_url":"https:\/\/twitter.com\/tmbIrpics\/status\/1507073300517765120\/photo\/1","type":"photo","sizes":{"large":{"w":1170,"h":1405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":999,"h":1200,"resize":"fit"},"small":{"w":566,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2469,"favorite_count":18136,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2469,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503479978771505154\/ANTf5rqY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503479978771505154\/ANTf5rqY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177263752665862144\/1616691281","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165037194928504832,"id_str":"1165037194928504832","name":"Aegis - Blue","screen_name":"CongqiF","location":"New York, USA","description":"Professor, - PhD, Husband&Father, Sports enthusiast.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":433,"listed_count":0,"created_at":"Fri - Aug 23 23:05:13 +0000 2019","favourites_count":655,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Mon - Feb 21 22:21:17 +0000 2022","id":1495886368190439428,"id_str":"1495886368190439428","text":"\u5468\u672b\u5199\u7684\u5b57\u3002 - https:\/\/t.co\/ZR2D6r14aw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1495886341615222784,"id_str":"1495886341615222784","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FMJ0s8BVgAAPqUZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMJ0s8BVgAAPqUZ.jpg","url":"https:\/\/t.co\/ZR2D6r14aw","display_url":"pic.twitter.com\/ZR2D6r14aw","expanded_url":"https:\/\/twitter.com\/CongqiF\/status\/1495886368190439428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1495886341615222784,"id_str":"1495886341615222784","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FMJ0s8BVgAAPqUZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMJ0s8BVgAAPqUZ.jpg","url":"https:\/\/t.co\/ZR2D6r14aw","display_url":"pic.twitter.com\/ZR2D6r14aw","expanded_url":"https:\/\/twitter.com\/CongqiF\/status\/1495886368190439428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":1495886341615149056,"id_str":"1495886341615149056","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FMJ0s8BUYAAepUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMJ0s8BUYAAepUS.jpg","url":"https:\/\/t.co\/ZR2D6r14aw","display_url":"pic.twitter.com\/ZR2D6r14aw","expanded_url":"https:\/\/twitter.com\/CongqiF\/status\/1495886368190439428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172997001685819392\/CjrysVR4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172997001685819392\/CjrysVR4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":108630395,"id_str":"108630395","name":"Francois W. - LORTHE","screen_name":"lorthefw","location":"Haiti","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":346,"listed_count":0,"created_at":"Tue - Jan 26 15:15:25 +0000 2010","favourites_count":501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":141,"lang":null,"status":{"created_at":"Thu - Sep 23 16:31:30 +0000 2021","id":1441077776447123462,"id_str":"1441077776447123462","text":"RT - @Reuters: The U.S. special envoy to Haiti resigned in protest in a letter - that blasted the Biden administration for deporting hundreds o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 23 16:28:02 +0000 2021","id":1441076903981551617,"id_str":"1441076903981551617","text":"The - U.S. special envoy to Haiti resigned in protest in a letter that blasted the - Biden administration for deporting\u2026 https:\/\/t.co\/iCvjsgW6cL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iCvjsgW6cL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1441076903981551617","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":124,"favorite_count":243,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":124,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000736616599\/49d008a5f3f06a46c283fe3d14e1704a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000736616599\/49d008a5f3f06a46c283fe3d14e1704a_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1007491277087096837,"id_str":"1007491277087096837","name":"geo","screen_name":"gvnnarey","location":"California, - USA","description":"\u273fkw\u273f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":108,"listed_count":0,"created_at":"Fri - Jun 15 05:13:33 +0000 2018","favourites_count":83788,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1092,"lang":null,"status":{"created_at":"Tue - Mar 22 17:35:30 +0000 2022","id":1506323699833532417,"id_str":"1506323699833532417","text":"my - bf annoyed me yesterday so i barricaded him in the restroom, 10\/10 made me - feel better","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503595541669695489\/OqjeBRE6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503595541669695489\/OqjeBRE6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007491277087096837\/1646259277","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":101374173,"id_str":"101374173","name":"Asia_Mareahh\u2728","screen_name":"asia_mareah","location":"Nashville, - TN","description":"25\ud83c\udf08\u2728A.E.R\ud83d\udc95\ud83d\udc8dBody Contouring - Specialist\u2728","url":"https:\/\/t.co\/Li2ZFeD7TI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Li2ZFeD7TI","expanded_url":"https:\/\/luxxbodysculptboutique.square.site\/","display_url":"luxxbodysculptboutique.square.site","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":379,"friends_count":1228,"listed_count":5,"created_at":"Sun - Jan 03 02:35:52 +0000 2010","favourites_count":3700,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4793,"lang":null,"status":{"created_at":"Fri - Mar 25 15:59:35 +0000 2022","id":1507386722266591236,"id_str":"1507386722266591236","text":"Her - View vs. Our View \ud83d\udcab\ud83e\udd8b https:\/\/t.co\/sOrG10YvA9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507386714779754499,"id_str":"1507386714779754499","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtQOwmXIAMjcXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtQOwmXIAMjcXS.jpg","url":"https:\/\/t.co\/sOrG10YvA9","display_url":"pic.twitter.com\/sOrG10YvA9","expanded_url":"https:\/\/twitter.com\/asia_mareah\/status\/1507386722266591236\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507386714779754499,"id_str":"1507386714779754499","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtQOwmXIAMjcXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtQOwmXIAMjcXS.jpg","url":"https:\/\/t.co\/sOrG10YvA9","display_url":"pic.twitter.com\/sOrG10YvA9","expanded_url":"https:\/\/twitter.com\/asia_mareah\/status\/1507386722266591236\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}},{"id":1507386714788179979,"id_str":"1507386714788179979","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtQOwoXsAs_foc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtQOwoXsAs_foc.jpg","url":"https:\/\/t.co\/sOrG10YvA9","display_url":"pic.twitter.com\/sOrG10YvA9","expanded_url":"https:\/\/twitter.com\/asia_mareah\/status\/1507386722266591236\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":896,"resize":"fit"},"large":{"w":480,"h":896,"resize":"fit"},"small":{"w":364,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"83DB8F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1413123235391156225\/9xQWgyQb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1413123235391156225\/9xQWgyQb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101374173\/1617598127","profile_link_color":"83DB8F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"17AA8A","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":939597242138284034,"id_str":"939597242138284034","name":"dna","screen_name":"nokidneybeans","location":"control - experiment ","description":"headspace for rent","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":87,"listed_count":0,"created_at":"Sat - Dec 09 20:46:54 +0000 2017","favourites_count":1332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453715466757623816\/zEGo06W5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453715466757623816\/zEGo06W5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/939597242138284034\/1647283442","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":840549023887048704,"id_str":"840549023887048704","name":"Chakka - Prasad","screen_name":"ChakkaPrasad1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":3001,"listed_count":0,"created_at":"Sat - Mar 11 13:04:38 +0000 2017","favourites_count":22295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":193,"lang":null,"status":{"created_at":"Tue - Dec 14 09:55:04 +0000 2021","id":1470693814511702022,"id_str":"1470693814511702022","text":"I - am voting for Mahesh Babu to win Best Actor (Male)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238856710871306241,"id_str":"1238856710871306241","name":"Lynn - lee","screen_name":"Lee34Lynn","location":"","description":"\u83b2\u4e2d\u6253\u5750\u7684\u4e00\u7c92\u6c34\u73e0\u3002#Poetry; - #Education; #Nature;#NoPolitics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":1365,"listed_count":0,"created_at":"Sat - Mar 14 15:57:42 +0000 2020","favourites_count":2007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":900,"lang":null,"status":{"created_at":"Fri - Mar 25 01:10:03 +0000 2022","id":1507162863533654039,"id_str":"1507162863533654039","text":"@jh20170426 - \u5b66\u751f\u4e5f\u65e0\u5948\ud83d\ude2e\u200d\ud83d\udca8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jh20170426","name":"\u6696\u96ea","id":857313226144575488,"id_str":"857313226144575488","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507159777578680342,"in_reply_to_status_id_str":"1507159777578680342","in_reply_to_user_id":857313226144575488,"in_reply_to_user_id_str":"857313226144575488","in_reply_to_screen_name":"jh20170426","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271922130893053952\/tmiC0zI1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271922130893053952\/tmiC0zI1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238856710871306241\/1584686850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":941410617193304065,"id_str":"941410617193304065","name":"august - clarke","screen_name":"augustclarke3","location":"United States","description":"post - modern prince","url":"https:\/\/t.co\/peWHSAoBsd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/peWHSAoBsd","expanded_url":"https:\/\/augustclarke.medium.com\/","display_url":"augustclarke.medium.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":1620,"listed_count":0,"created_at":"Thu - Dec 14 20:52:36 +0000 2017","favourites_count":2308,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":885,"lang":null,"status":{"created_at":"Mon - Mar 07 01:49:43 +0000 2022","id":1500649867382771713,"id_str":"1500649867382771713","text":"@NickAllmaier - Vermin","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickAllmaier","name":"Nick - Allmaier, Duck Enjoyer","id":1121474607490457600,"id_str":"1121474607490457600","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500557403967959041,"in_reply_to_status_id_str":"1500557403967959041","in_reply_to_user_id":1121474607490457600,"in_reply_to_user_id_str":"1121474607490457600","in_reply_to_screen_name":"NickAllmaier","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463252889212792832\/C7YhlZl5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463252889212792832\/C7YhlZl5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941410617193304065\/1608128874","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227682624,"id_str":"227682624","name":"Kathy","screen_name":"kathy_wa_state","location":"near - Seattle","description":"watcher of the political madness","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":1291,"listed_count":0,"created_at":"Fri - Dec 17 14:19:53 +0000 2010","favourites_count":6504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":575,"lang":null,"status":{"created_at":"Mon - Mar 14 00:10:51 +0000 2022","id":1503161699347488769,"id_str":"1503161699347488769","text":"I - love daylight savings time. https:\/\/t.co\/RHTcoYDgbt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RHTcoYDgbt","expanded_url":"https:\/\/twitter.com\/MeghanMcCain\/status\/1503026481722757126","display_url":"twitter.com\/MeghanMcCain\/s\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503026481722757126,"quoted_status_id_str":"1503026481722757126","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1847220127\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1847220127\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1675160323,"id_str":"1675160323","name":"AK - Gooners","screen_name":"AkmGooners","location":"Lynnwood, WA","description":"Gooners - & Sooners. love traveling, Football, NBA, NFL, movies addict. Startups entrepreneur. - Founder & CEO of JasRent","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1909,"friends_count":2882,"listed_count":4,"created_at":"Fri - Aug 16 07:59:37 +0000 2013","favourites_count":13316,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16962,"lang":null,"status":{"created_at":"Sat - Mar 26 09:48:15 +0000 2022","id":1507655661290590210,"id_str":"1507655661290590210","text":"RT - @Wandile_Zangwa: Please help https:\/\/t.co\/eeHQvVR3Ys","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Wandile_Zangwa","name":"myKing","id":1293238591410311170,"id_str":"1293238591410311170","indices":[3,18]}],"urls":[],"media":[{"id":1507406881232461834,"id_str":"1507406881232461834","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","url":"https:\/\/t.co\/eeHQvVR3Ys","display_url":"pic.twitter.com\/eeHQvVR3Ys","expanded_url":"https:\/\/twitter.com\/Wandile_Zangwa\/status\/1507406890363498500\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"}},"source_status_id":1507406890363498500,"source_status_id_str":"1507406890363498500","source_user_id":1293238591410311170,"source_user_id_str":"1293238591410311170"}]},"extended_entities":{"media":[{"id":1507406881232461834,"id_str":"1507406881232461834","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","url":"https:\/\/t.co\/eeHQvVR3Ys","display_url":"pic.twitter.com\/eeHQvVR3Ys","expanded_url":"https:\/\/twitter.com\/Wandile_Zangwa\/status\/1507406890363498500\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"}},"source_status_id":1507406890363498500,"source_status_id_str":"1507406890363498500","source_user_id":1293238591410311170,"source_user_id_str":"1293238591410311170"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:19:43 +0000 2022","id":1507406890363498500,"id_str":"1507406890363498500","text":"Please - help https:\/\/t.co\/eeHQvVR3Ys","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507406881232461834,"id_str":"1507406881232461834","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","url":"https:\/\/t.co\/eeHQvVR3Ys","display_url":"pic.twitter.com\/eeHQvVR3Ys","expanded_url":"https:\/\/twitter.com\/Wandile_Zangwa\/status\/1507406890363498500\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507406881232461834,"id_str":"1507406881232461834","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtikmfXIAoJ5Ft.jpg","url":"https:\/\/t.co\/eeHQvVR3Ys","display_url":"pic.twitter.com\/eeHQvVR3Ys","expanded_url":"https:\/\/twitter.com\/Wandile_Zangwa\/status\/1507406890363498500\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"9d7cae88ff6a29f5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9d7cae88ff6a29f5.json","place_type":"city","name":"Durban","full_name":"Durban, - South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[30.8789097,-30.055938],[31.0662492,-30.055938],[31.0662492,-29.7453336],[30.8789097,-29.7453336]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":24111,"favorite_count":17788,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24111,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1409301562464247810\/_bS8-7wW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1409301562464247810\/_bS8-7wW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1675160323\/1624838651","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266413251887165440,"id_str":"1266413251887165440","name":"Rebeccah - Warren-Marlatt","screen_name":"WarrenRebeccah","location":"","description":"Retired - community college educator, teacher, learner, and devoted family member. I - believe that knowledge changes everything.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":132,"listed_count":0,"created_at":"Fri - May 29 16:57:14 +0000 2020","favourites_count":4748,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Thu - Sep 23 04:10:02 +0000 2021","id":1440891180535861253,"id_str":"1440891180535861253","text":"@BradTakei - She should demand to speak to the manager.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BradTakei","name":"Brad - Takei","id":240420946,"id_str":"240420946","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1440681275233226759,"in_reply_to_status_id_str":"1440681275233226759","in_reply_to_user_id":240420946,"in_reply_to_user_id_str":"240420946","in_reply_to_screen_name":"BradTakei","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266413441264185344\/blmudiAp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266413441264185344\/blmudiAp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":459115694,"id_str":"459115694","name":"\ud83e\udd85\u1d00\u0274\u1d00\u1d0b - \u1d05\u1d00\u0299\u1d00\u1d21\ud83c\udf39","screen_name":"kolsenertito","location":"Republic - of the Philippines","description":"\ud83d\udccd\ud835\uddf1\ud835\uddee\ud835\ude03\ud835\uddee\ud835\uddfc\ud835\uddeb\ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\uddf6\ud835\uddf9\ud835\uddee. - \ud83c\udff3\ufe0f\u200d\ud83c\udf08pronouns: he\/him. Co-founder @davaoforleni - | Views are my own. Tito J on @banlawspaces\ud83c\udf99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6223,"friends_count":1687,"listed_count":16,"created_at":"Mon - Jan 09 09:13:02 +0000 2012","favourites_count":257569,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":103117,"lang":null,"status":{"created_at":"Sat - Mar 26 10:42:38 +0000 2022","id":1507669348571262977,"id_str":"1507669348571262977","text":"RT - @HelloTimTim: Isa itong seryosong threat kay VP @lenirobredo, alam naman natin - na may grand rally siya dito sa Rizal sa darating na Apri\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HelloTimTim","name":"T - I M | #LeniKiko2022","id":56806421,"id_str":"56806421","indices":[3,15]},{"screen_name":"lenirobredo","name":"Leni - Robredo","id":47211842,"id_str":"47211842","indices":[51,63]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:19:17 +0000 2022","id":1507587974342791175,"id_str":"1507587974342791175","text":"Isa - itong seryosong threat kay VP @lenirobredo, alam naman natin na may grand - rally siya dito sa Rizal sa darating\u2026 https:\/\/t.co\/1fS7aFj4w7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lenirobredo","name":"Leni - Robredo","id":47211842,"id_str":"47211842","indices":[34,46]}],"urls":[{"url":"https:\/\/t.co\/1fS7aFj4w7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507587974342791175","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1247,"favorite_count":3484,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":1247,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506116291068788738\/f8etMQnE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506116291068788738\/f8etMQnE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459115694\/1647071796","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216390640247984128,"id_str":"1216390640247984128","name":"CC","screen_name":"Olmstediann","location":"Bodrum, - T\u00fcrkiye","description":"Father, hotelier, fan of Fenerbahce, musician, - landscape architect, electronic engineer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":232,"listed_count":0,"created_at":"Sun - Jan 12 16:05:27 +0000 2020","favourites_count":3785,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":892,"lang":null,"status":{"created_at":"Fri - Mar 25 21:42:49 +0000 2022","id":1507473101637959681,"id_str":"1507473101637959681","text":"@Varangian_Tagma - Runic inscriptions in Hagia Sophia. \n\nhttps:\/\/t.co\/tPaHbZj8Ag","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Varangian_Tagma","name":"Varangian - Chronicler","id":1444922216244723714,"id_str":"1444922216244723714","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/tPaHbZj8Ag","expanded_url":"https:\/\/en.m.wikipedia.org\/wiki\/Runic_inscriptions_in_Hagia_Sophia","display_url":"en.m.wikipedia.org\/wiki\/Runic_ins\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507377516410916866,"in_reply_to_status_id_str":"1507377516410916866","in_reply_to_user_id":1444922216244723714,"in_reply_to_user_id_str":"1444922216244723714","in_reply_to_screen_name":"Varangian_Tagma","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289629982260703233\/FJi4r-xi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289629982260703233\/FJi4r-xi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216390640247984128\/1609941569","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1178667836631322624,"id_str":"1178667836631322624","name":"fontain","screen_name":"fontain94869861","location":"Sayreville, - NJ","description":"The world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":452,"listed_count":0,"created_at":"Mon - Sep 30 13:48:23 +0000 2019","favourites_count":7249,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5874,"lang":null,"status":{"created_at":"Fri - Mar 25 03:50:42 +0000 2022","id":1507203294753697801,"id_str":"1507203294753697801","text":"RT - @Angry_Staffer: So it\u2019s pretty clear\u2026\n\nClarence Thomas: \n\n- - should have recused \n- voted to protect his wife\n- should now resign","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angry_Staffer","name":"Angry - Staffer \ud83c\udf3b","id":848148994102611969,"id_str":"848148994102611969","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:25:30 +0000 2022","id":1507151652486365186,"id_str":"1507151652486365186","text":"So - it\u2019s pretty clear\u2026\n\nClarence Thomas: \n\n- should have recused - \n- voted to protect his wife\n- should now resign","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8914,"favorite_count":53355,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8914,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322136632234041345\/d6AZvYjz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322136632234041345\/d6AZvYjz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":125766690,"id_str":"125766690","name":"MelSaysSo - \ud83c\uddfa\ud83c\udde6","screen_name":"Says_Mel","location":"Washington, - USA","description":"Lawyer, government affairs professional, dog enthusiast, - sister\/friend\/daughter\/auntie\/wife. Tweets are all mine. Art by @mydogsighs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":198,"friends_count":1127,"listed_count":1,"created_at":"Tue - Mar 23 20:18:36 +0000 2010","favourites_count":12955,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1241,"lang":null,"status":{"created_at":"Fri - Mar 25 00:06:53 +0000 2022","id":1507146969726144517,"id_str":"1507146969726144517","text":"It - is unreasonable and unseemly that the US Supreme Court does not have a judicial - code of conduct\/ethics. This is\u2026 https:\/\/t.co\/Lyub6PXhHN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lyub6PXhHN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507146969726144517","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501431124874039298\/IQouH_De_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501431124874039298\/IQouH_De_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125766690\/1646154309","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283686807012618240,"id_str":"1283686807012618240","name":"KHALIL - MACE HARIS","screen_name":"Mohamme21603674","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":2253,"listed_count":0,"created_at":"Thu - Jul 16 08:56:23 +0000 2020","favourites_count":174,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Wed - Sep 01 22:42:15 +0000 2021","id":1433198545205710853,"id_str":"1433198545205710853","text":"Ronaldo - is the GOAT \ud83d\udc10 #TalkYourTalk","truncated":false,"entities":{"hashtags":[{"text":"TalkYourTalk","indices":[22,35]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306914816213299201\/ZnQfTE2o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306914816213299201\/ZnQfTE2o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2520316876,"id_str":"2520316876","name":"kelby - grace","screen_name":"Kelbyy_zendejas","location":"Oxford, MS","description":"","url":"https:\/\/t.co\/B9dCWa58PR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/B9dCWa58PR","expanded_url":"http:\/\/kelbyzendejas.wordpress.com","display_url":"kelbyzendejas.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":542,"friends_count":831,"listed_count":0,"created_at":"Thu - May 01 02:42:09 +0000 2014","favourites_count":7651,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1698,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491270068319277058\/nFNuZ22g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491270068319277058\/nFNuZ22g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2520316876\/1627505359","profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":783325350860247040,"id_str":"783325350860247040","name":"Pratap - Devendra","screen_name":"devendrapoudel8","location":"Nepal","description":"a - learner,love reading\n\u092e\u093e\u0928\u093f\u0938 \u092e\u093e\u0924\u094d\u0930 - \u092e\u093e\u0928\u093f\u0938 \u0939\u094b \u0964\u0905\u0930\u0941 \u0938\u092c - \u092d\u094d\u0930\u092e \u0939\u094b \u0964","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":388,"friends_count":1251,"listed_count":0,"created_at":"Tue - Oct 04 15:18:12 +0000 2016","favourites_count":15105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1156,"lang":null,"status":{"created_at":"Sat - Mar 26 09:40:19 +0000 2022","id":1507653667322621957,"id_str":"1507653667322621957","text":"\"\u092f\u0926\u093f - \u0908\u0936\u094d\u0935\u0930 \u091b \u092d\u0928\u0947 \u091c\u0930\u0941\u0930 - \u0924\u094d\u092f\u094b \u092e\u093e\u0928\u093f\u0938\u0932\u0947 \u092c\u0928\u093e\u090f\u0915\u094b - \u0939\u094b\"\n -\u0935\u093e\u0938\u0941 - \u0936\u0936\u0940 https:\/\/t.co\/rSs5R2LNgL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rSs5R2LNgL","expanded_url":"https:\/\/twitter.com\/ekantipur_com\/status\/1507559213337223172","display_url":"twitter.com\/ekantipur_com\/\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507559213337223172,"quoted_status_id_str":"1507559213337223172","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ne"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354465309520916485\/mgv2_HQs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354465309520916485\/mgv2_HQs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/783325350860247040\/1611765166","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":461126395,"id_str":"461126395","name":"Don - Dunphy","screen_name":"DunphyDon","location":"Sylvania, OH","description":"Sports","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":22,"listed_count":0,"created_at":"Wed - Jan 11 13:41:26 +0000 2012","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":394107178,"id_str":"394107178","name":"David","screen_name":"puertamanzana","location":"Chicago, - IL","description":"Chicagoan; mental health, suicide prevention, human rights - & social justice; Runner; Sports fan; Spanish speaker; Progressive; @HarrisPolicy - @BostonCollege alum","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":220,"friends_count":4091,"listed_count":4,"created_at":"Wed - Oct 19 15:45:17 +0000 2011","favourites_count":1908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1630,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829883691858087939\/GY3IB6VL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829883691858087939\/GY3IB6VL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394107178\/1437182254","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305127925839167488,"id_str":"1305127925839167488","name":"Bill - Fox","screen_name":"BillFoxOnAir","location":"Wisconsin, USA","description":"Dad. - Husband. Proud USAF veteran. Animal lover. I make exceptional guacamole. Award-winning - Morning Radio Personality.","url":"https:\/\/t.co\/KP0h3JqyKr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KP0h3JqyKr","expanded_url":"http:\/\/billfoxonair.com","display_url":"billfoxonair.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":390,"listed_count":0,"created_at":"Sun - Sep 13 12:55:38 +0000 2020","favourites_count":3841,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":332,"lang":null,"status":{"created_at":"Sat - Mar 19 15:58:19 +0000 2022","id":1505212079824846853,"id_str":"1505212079824846853","text":"@AdamSchefter - So a guy accused of sexual misconduct by 22 women gets the biggest deal for - a QB in #NFL history. Yet\u2026 https:\/\/t.co\/PmnJlZK3EM","truncated":true,"entities":{"hashtags":[{"text":"NFL","indices":[98,102]}],"symbols":[],"user_mentions":[{"screen_name":"AdamSchefter","name":"Adam - Schefter","id":51263592,"id_str":"51263592","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/PmnJlZK3EM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505212079824846853","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504913728415969293,"in_reply_to_status_id_str":"1504913728415969293","in_reply_to_user_id":51263592,"in_reply_to_user_id_str":"51263592","in_reply_to_screen_name":"AdamSchefter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381662999056908298\/R8tCxbid_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381662999056908298\/R8tCxbid_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305127925839167488\/1602101714","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3294129412,"id_str":"3294129412","name":"musah - bagaya","screen_name":"bagayam95","location":"Tamale","description":"make - mistake in life and learn from it and they ask you tell them you know what - you are about too ..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":785,"listed_count":1,"created_at":"Fri - May 22 14:31:35 +0000 2015","favourites_count":10132,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Thu - Feb 10 17:00:55 +0000 2022","id":1491819479394918416,"id_str":"1491819479394918416","text":"@Emma8cfc - Gorgeous","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emma8cfc","name":"Emma - Hartley \u2b50\ufe0f\u2b50\ufe0f","id":2995897463,"id_str":"2995897463","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1491818896550158337,"in_reply_to_status_id_str":"1491818896550158337","in_reply_to_user_id":2995897463,"in_reply_to_user_id_str":"2995897463","in_reply_to_screen_name":"Emma8cfc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333213850712371200\/9M3s8KUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333213850712371200\/9M3s8KUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294129412\/1601253151","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215072138954256390,"id_str":"1215072138954256390","name":"\uac15 - \ubbfc","screen_name":"bluesky202077","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":272,"listed_count":0,"created_at":"Thu - Jan 09 00:46:01 +0000 2020","favourites_count":104,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Fri - Mar 11 05:57:23 +0000 2022","id":1502161743723651081,"id_str":"1502161743723651081","text":"\uc0ac\ub791\ud558\ub294 - \ub3d9\uc9c0 \uc5ec\ub7ec\ubd84! \uc774\uc7ac\uba85\uc785\ub2c8\ub2e4. https:\/\/t.co\/TVIFuY0JxO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TVIFuY0JxO","expanded_url":"https:\/\/m.blog.naver.com\/jaemyunglee\/222669614031","display_url":"m.blog.naver.com\/jaemyunglee\/22\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380887654015901702\/Elj02dty_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380887654015901702\/Elj02dty_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215072138954256390\/1617487695","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":603890081,"id_str":"603890081","name":"One - Ping Only","screen_name":"GNSNick","location":"New Jersey, USA ","description":"When. - \n 2Vax.\n#DrCole #Strongmen #StrongerTogether\n#FBR #CheckYourAmnesia #CognitiveHacking","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5913,"friends_count":5920,"listed_count":25,"created_at":"Sat - Jun 09 20:18:26 +0000 2012","favourites_count":14920,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28050,"lang":null,"status":{"created_at":"Sat - Mar 26 02:48:34 +0000 2022","id":1507550044718776327,"id_str":"1507550044718776327","text":"@RadioFreeTom - The bigger story is she''s using CAPS bc insanity like this doesnt last two - news cycles anymore.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507519604955955210,"in_reply_to_status_id_str":"1507519604955955210","in_reply_to_user_id":459872442,"in_reply_to_user_id_str":"459872442","in_reply_to_screen_name":"RadioFreeTom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497639959007744002\/4adBlnls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497639959007744002\/4adBlnls_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603890081\/1645890781","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":951045033599389696,"id_str":"951045033599389696","name":"Renan","screen_name":"renanangelos","location":"Dublin - City, Ireland","description":"\ud83c\udde7\ud83c\uddf7\ud83c\uddee\ud83c\uddea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":296,"listed_count":0,"created_at":"Wed - Jan 10 10:56:20 +0000 2018","favourites_count":297,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":196,"lang":null,"status":{"created_at":"Tue - Oct 27 22:27:10 +0000 2020","id":1321216900844630017,"id_str":"1321216900844630017","text":"RT - @Corinthians: #SejaUmFielTorcedor e tenha vantagens como essa! \ud83d\ude0e\n\n#VaiCorinthians\n#FielTorcedor\n#AFiel\u00c9Foda\n\nhttps:\/\/t.co\/kOeelrpgOl","truncated":false,"entities":{"hashtags":[{"text":"SejaUmFielTorcedor","indices":[17,36]},{"text":"VaiCorinthians","indices":[69,84]},{"text":"FielTorcedor","indices":[85,98]},{"text":"AFiel\u00c9Foda","indices":[99,110]}],"symbols":[],"user_mentions":[{"screen_name":"Corinthians","name":"Corinthians","id":44627459,"id_str":"44627459","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/kOeelrpgOl","expanded_url":"https:\/\/twitter.com\/fieltorcedor\/status\/1321194876986413059","display_url":"twitter.com\/fieltorcedor\/s\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Oct 27 21:30:00 +0000 2020","id":1321202513958240256,"id_str":"1321202513958240256","text":"#SejaUmFielTorcedor - e tenha vantagens como essa! \ud83d\ude0e\n\n#VaiCorinthians\n#FielTorcedor\n#AFiel\u00c9Foda\n\nhttps:\/\/t.co\/kOeelrpgOl","truncated":false,"entities":{"hashtags":[{"text":"SejaUmFielTorcedor","indices":[0,19]},{"text":"VaiCorinthians","indices":[52,67]},{"text":"FielTorcedor","indices":[68,81]},{"text":"AFiel\u00c9Foda","indices":[82,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kOeelrpgOl","expanded_url":"https:\/\/twitter.com\/fieltorcedor\/status\/1321194876986413059","display_url":"twitter.com\/fieltorcedor\/s\u2026","indices":[95,118]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1321194876986413059,"quoted_status_id_str":"1321194876986413059","retweet_count":16,"favorite_count":584,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1321194876986413059,"quoted_status_id_str":"1321194876986413059","retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/995929449110622208\/mQSo5xSt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/995929449110622208\/mQSo5xSt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951045033599389696\/1526283218","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280802678558224385,"id_str":"1280802678558224385","name":"Gracey - Dugar","screen_name":"CreativeGracey","location":"India, Jamshedpur","description":"Co - Founder @LaGravitea | Guitarist | Typist | Blogger | Singer | Debater | Quizzer - | Interactor | Climate Activist | Promoting @HonkFreeTata & #Plogging","url":"https:\/\/t.co\/vv5oaEZTnm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vv5oaEZTnm","expanded_url":"https:\/\/creativegracey.art.blog\/2021\/08\/28\/knowledge-and-experience-is-more-important-than-imaginati","display_url":"creativegracey.art.blog\/2021\/08\/28\/kno\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":592,"friends_count":406,"listed_count":5,"created_at":"Wed - Jul 08 09:55:49 +0000 2020","favourites_count":5043,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76,"lang":null,"status":{"created_at":"Tue - Mar 22 08:42:31 +0000 2022","id":1506189570207268866,"id_str":"1506189570207268866","text":"One - more feather in the cap!\n\nHappy to have secured the 2nd position in #ExtemporeSpeechCompetition - by\u2026 https:\/\/t.co\/8JuT72lkrf","truncated":true,"entities":{"hashtags":[{"text":"ExtemporeSpeechCompetition","indices":[72,99]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8JuT72lkrf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506189570207268866","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457192445762961412\/B-H12HN8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457192445762961412\/B-H12HN8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280802678558224385\/1636163711","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1146491487783403520,"id_str":"1146491487783403520","name":"shirlg","screen_name":"shirlg14","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":367,"listed_count":0,"created_at":"Wed - Jul 03 18:50:46 +0000 2019","favourites_count":1703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Fri - Jun 05 16:39:22 +0000 2020","id":1268945520090927106,"id_str":"1268945520090927106","text":"It - get https:\/\/t.co\/PnUilaKRwp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1268945516651597829,"id_str":"1268945516651597829","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/EZwzOWdX0AUsuJm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZwzOWdX0AUsuJm.jpg","url":"https:\/\/t.co\/PnUilaKRwp","display_url":"pic.twitter.com\/PnUilaKRwp","expanded_url":"https:\/\/twitter.com\/shirlg14\/status\/1268945520090927106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":914,"h":514,"resize":"fit"},"large":{"w":914,"h":514,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1268945516651597829,"id_str":"1268945516651597829","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/EZwzOWdX0AUsuJm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZwzOWdX0AUsuJm.jpg","url":"https:\/\/t.co\/PnUilaKRwp","display_url":"pic.twitter.com\/PnUilaKRwp","expanded_url":"https:\/\/twitter.com\/shirlg14\/status\/1268945520090927106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":914,"h":514,"resize":"fit"},"large":{"w":914,"h":514,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146492072343592960\/LlO6xFSc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146492072343592960\/LlO6xFSc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":458958378,"id_str":"458958378","name":"Chris - Hutcheson","screen_name":"Hutch_VBVA","location":"VBVA","description":"Filling - the unforgiving minute.","url":"https:\/\/t.co\/GgGNiV9IMj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GgGNiV9IMj","expanded_url":"http:\/\/www.linkedin.com\/in\/christopherhutcheson","display_url":"linkedin.com\/in\/christopher\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":76,"friends_count":1306,"listed_count":0,"created_at":"Mon - Jan 09 04:01:59 +0000 2012","favourites_count":1459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1742874640\/3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1742874640\/3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458958378\/1353954101","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47674594,"id_str":"47674594","name":"David - Schaberg","screen_name":"DavidSchaberg","location":"Los Angeles","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":218,"friends_count":572,"listed_count":2,"created_at":"Tue - Jun 16 16:55:59 +0000 2009","favourites_count":933,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":388,"lang":null,"status":{"created_at":"Tue - Mar 01 18:58:46 +0000 2022","id":1498734509587456003,"id_str":"1498734509587456003","text":"@FoxNews - @KristiNoem COVID-enabler.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]},{"screen_name":"KristiNoem","name":"Kristi - Noem","id":114388293,"id_str":"114388293","indices":[9,20]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1498602697095716864,"in_reply_to_status_id_str":"1498602697095716864","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1659061890\/David_at_Wailing_Wall_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1659061890\/David_at_Wailing_Wall_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1534237596,"id_str":"1534237596","name":"L - Pearson","screen_name":"LornaPearsonCWU","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":243,"listed_count":0,"created_at":"Thu - Jun 20 15:50:28 +0000 2013","favourites_count":27,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Jan 21 08:46:32 +0000 2020","id":1219541776966602752,"id_str":"1219541776966602752","text":"A - brilliant evening. Congratulations to all @WaldegraveSch https:\/\/t.co\/tmhelJMNWZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WaldegraveSch","name":"Waldegrave - School","id":278646836,"id_str":"278646836","indices":[44,58]}],"urls":[{"url":"https:\/\/t.co\/tmhelJMNWZ","expanded_url":"https:\/\/twitter.com\/carolbski\/status\/1219308680400842753","display_url":"twitter.com\/carolbski\/stat\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1219308680400842753,"quoted_status_id_str":"1219308680400842753","retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829666706683478017\/_GRD32VC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829666706683478017\/_GRD32VC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":332544984,"id_str":"332544984","name":"lynda - hirsch","screen_name":"lyndahirsch","location":"new york","description":"Nationally - syndicated television columnist political activist love bridge reading directing - life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":1906,"listed_count":5,"created_at":"Sun - Jul 10 00:46:36 +0000 2011","favourites_count":26683,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8039,"lang":null,"status":{"created_at":"Fri - Mar 25 02:26:03 +0000 2022","id":1507181993049878529,"id_str":"1507181993049878529","text":"one - person followed me and one person unfollowed me \/\/ automatically checked - by https:\/\/t.co\/s5iLRzQcgH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s5iLRzQcgH","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[80,103]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2507553855\/sgf2rwk175vy9lkbxfde_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2507553855\/sgf2rwk175vy9lkbxfde_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":324086779,"id_str":"324086779","name":"OMO - EKO PATAKI!!!","screen_name":"AkaAdebola","location":"Ikeja LAGOS","description":"TRUE - LAGOSIAN, A PROGRESSIVE A BELIEVER OF GOOD GOVERNANCE AND A REALIST. C.E.O - CREDENCE MULTI CONCEPT LTD","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":434,"friends_count":1641,"listed_count":0,"created_at":"Sun - Jun 26 00:06:59 +0000 2011","favourites_count":2056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":911,"lang":null,"status":{"created_at":"Mon - Mar 21 11:13:46 +0000 2022","id":1505865244555546627,"id_str":"1505865244555546627","text":"@C_P_Gurnani - That\u2019s the bitter truth","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C_P_Gurnani","name":"CP - Gurnani","id":102719975,"id_str":"102719975","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1490860431212118024,"in_reply_to_status_id_str":"1490860431212118024","in_reply_to_user_id":102719975,"in_reply_to_user_id_str":"102719975","in_reply_to_screen_name":"C_P_Gurnani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384948481073242117\/7zJ1ZUsA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384948481073242117\/7zJ1ZUsA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":175021828,"id_str":"175021828","name":"tTurtle517","screen_name":"ShadowP123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":969,"listed_count":0,"created_at":"Thu - Aug 05 12:28:41 +0000 2010","favourites_count":9019,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4658,"lang":null,"status":{"created_at":"Sat - Mar 26 00:15:46 +0000 2022","id":1507511592266649604,"id_str":"1507511592266649604","text":"@DeepState_Shu2 - the word \"honesty\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeepState_Shu2","name":"SATIRE - Shu of the Deep State\u2122","id":1367880084435185665,"id_str":"1367880084435185665","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507428197247467531,"in_reply_to_status_id_str":"1507428197247467531","in_reply_to_user_id":1367880084435185665,"in_reply_to_user_id_str":"1367880084435185665","in_reply_to_screen_name":"DeepState_Shu2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426289922558803970\/SRxC9Ux5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426289922558803970\/SRxC9Ux5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":178804239,"id_str":"178804239","name":"Darcia - Narvaez, PhD, Moral Development","screen_name":"MoralLandscapes","location":"University - of Notre Dame","description":"Professor of Psychology Emerita","url":"https:\/\/t.co\/eMxAJM3RGb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eMxAJM3RGb","expanded_url":"https:\/\/sites.nd.edu\/darcianarvaez\/","display_url":"sites.nd.edu\/darcianarvaez\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":940,"friends_count":727,"listed_count":0,"created_at":"Sun - Aug 15 18:58:10 +0000 2010","favourites_count":1610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2969,"lang":null,"status":{"created_at":"Thu - Mar 24 21:00:50 +0000 2022","id":1507100146944946176,"id_str":"1507100146944946176","text":"RT - @_breastfeeding: https:\/\/t.co\/Mv8CSgRPfi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_breastfeeding","name":"Global - Breastfeeding","id":18710600,"id_str":"18710600","indices":[3,18]}],"urls":[],"media":[{"id":1506951714431283203,"id_str":"1506951714431283203","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","url":"https:\/\/t.co\/Mv8CSgRPfi","display_url":"pic.twitter.com\/Mv8CSgRPfi","expanded_url":"https:\/\/twitter.com\/_breastfeeding\/status\/1506951716591357957\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":671,"resize":"fit"},"medium":{"w":720,"h":671,"resize":"fit"},"small":{"w":680,"h":634,"resize":"fit"}},"source_status_id":1506951716591357957,"source_status_id_str":"1506951716591357957","source_user_id":18710600,"source_user_id_str":"18710600"}]},"extended_entities":{"media":[{"id":1506951714431283203,"id_str":"1506951714431283203","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","url":"https:\/\/t.co\/Mv8CSgRPfi","display_url":"pic.twitter.com\/Mv8CSgRPfi","expanded_url":"https:\/\/twitter.com\/_breastfeeding\/status\/1506951716591357957\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":671,"resize":"fit"},"medium":{"w":720,"h":671,"resize":"fit"},"small":{"w":680,"h":634,"resize":"fit"}},"source_status_id":1506951716591357957,"source_status_id_str":"1506951716591357957","source_user_id":18710600,"source_user_id_str":"18710600"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 11:11:01 +0000 2022","id":1506951716591357957,"id_str":"1506951716591357957","text":"https:\/\/t.co\/Mv8CSgRPfi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506951714431283203,"id_str":"1506951714431283203","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","url":"https:\/\/t.co\/Mv8CSgRPfi","display_url":"pic.twitter.com\/Mv8CSgRPfi","expanded_url":"https:\/\/twitter.com\/_breastfeeding\/status\/1506951716591357957\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":671,"resize":"fit"},"medium":{"w":720,"h":671,"resize":"fit"},"small":{"w":680,"h":634,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506951714431283203,"id_str":"1506951714431283203","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnEmaBXsAMKli9.jpg","url":"https:\/\/t.co\/Mv8CSgRPfi","display_url":"pic.twitter.com\/Mv8CSgRPfi","expanded_url":"https:\/\/twitter.com\/_breastfeeding\/status\/1506951716591357957\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":671,"resize":"fit"},"medium":{"w":720,"h":671,"resize":"fit"},"small":{"w":680,"h":634,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":47,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515949091256143873\/hi8GlHyV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515949091256143873\/hi8GlHyV_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":219540279,"id_str":"219540279","name":"khantichai - c.","screen_name":"khantichai","location":"\u0e04\u0e25\u0e2d\u0e07\u0e2a\u0e32\u0e21\u0e27\u0e32, - \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23","description":"Mr. - Carekids","url":"https:\/\/t.co\/JbYOISpuXn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JbYOISpuXn","expanded_url":"http:\/\/lifecanhandle.blogspot.com","display_url":"lifecanhandle.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":79,"friends_count":1116,"listed_count":1,"created_at":"Thu - Nov 25 04:14:04 +0000 2010","favourites_count":8781,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":813,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3018386410\/cd04d92b95e6c7116e08b2c43d873b84_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3018386410\/cd04d92b95e6c7116e08b2c43d873b84_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219540279\/1370129113","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1188456990701477889,"id_str":"1188456990701477889","name":"Janzee","screen_name":"janicecarlson77","location":"","description":"Just - a regular person who likes dogs and comedy. Retired RN. Worked in a lab. Joe - Biden won. The big orange criminal lost a long time ago","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1666,"friends_count":2002,"listed_count":0,"created_at":"Sun - Oct 27 14:07:06 +0000 2019","favourites_count":55581,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":87629,"lang":null,"status":{"created_at":"Sat - Mar 26 03:47:00 +0000 2022","id":1507564750183571459,"id_str":"1507564750183571459","text":"RT - @MarkStevn: It\u2019s a year later and @elonmusk hasn\u2019t paid a f-n dollar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarkStevn","name":"Mark - Steven","id":204647319,"id_str":"204647319","indices":[3,13]},{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[37,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:20:35 +0000 2022","id":1507558104740904962,"id_str":"1507558104740904962","text":"It\u2019s - a year later and @elonmusk hasn\u2019t paid a f-n dollar https:\/\/t.co\/RCm4ThIafC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[22,31]}],"urls":[{"url":"https:\/\/t.co\/RCm4ThIafC","expanded_url":"https:\/\/twitter.com\/politiconeo\/status\/1455197359713906689","display_url":"twitter.com\/politiconeo\/st\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1455197359713906689,"quoted_status_id_str":"1455197359713906689","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1455197359713906689,"quoted_status_id_str":"1455197359713906689","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502132082939678721\/dNZ7wnKx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502132082939678721\/dNZ7wnKx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":271607471,"id_str":"271607471","name":"Cathy - Kappos Stowe","screen_name":"cc___cat","location":"Elkhart, IA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":283,"listed_count":1,"created_at":"Thu - Mar 24 21:12:41 +0000 2011","favourites_count":1419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Sat - Feb 26 22:11:50 +0000 2022","id":1497695929737965568,"id_str":"1497695929737965568","text":"@WideRtNattyLt - Stick with it and you\u2019ll get your chance!\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WideRtNattyLt","name":"Wide - Right & Natty Lite","id":145275409,"id_str":"145275409","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497683513415503873,"in_reply_to_status_id_str":"1497683513415503873","in_reply_to_user_id":145275409,"in_reply_to_user_id_str":"145275409","in_reply_to_screen_name":"WideRtNattyLt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/887879080615477250\/7oF9dLwA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/887879080615477250\/7oF9dLwA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":854752378620346368,"id_str":"854752378620346368","name":"Marcia - Zimmer","screen_name":"mehzmr","location":"Storrs, CT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":407,"listed_count":0,"created_at":"Wed - Apr 19 17:43:42 +0000 2017","favourites_count":7180,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3762,"lang":null,"status":{"created_at":"Wed - Mar 23 13:54:32 +0000 2022","id":1506630477372874752,"id_str":"1506630477372874752","text":"RT - @gregggonsalves: 19. When cases are high, or surge is on the horizon, or you''re - among the unvaccinated or among those at high risk of di\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gregggonsalves","name":"Gregg - Gonsalves","id":30844417,"id_str":"30844417","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 12:15:04 +0000 2022","id":1506605446177689606,"id_str":"1506605446177689606","text":"19. - When cases are high, or surge is on the horizon, or you''re among the unvaccinated - or among those at high risk o\u2026 https:\/\/t.co\/6lMDPlleHf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6lMDPlleHf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506605446177689606","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506605072028999682,"in_reply_to_status_id_str":"1506605072028999682","in_reply_to_user_id":30844417,"in_reply_to_user_id_str":"30844417","in_reply_to_screen_name":"gregggonsalves","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":244,"favorite_count":1749,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":244,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455320238594170883\/HzQIprVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455320238594170883\/HzQIprVH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854752378620346368\/1635810359","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2521200321,"id_str":"2521200321","name":"Rajnish","screen_name":"Rajnish73365028","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":411,"listed_count":0,"created_at":"Thu - May 01 13:34:29 +0000 2014","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Nov 20 04:28:37 +0000 2020","id":1329642782139445250,"id_str":"1329642782139445250","text":"https:\/\/t.co\/9uTPfIQeHi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1329642779375333377,"id_str":"1329642779375333377","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EnPXECbUcAECevE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EnPXECbUcAECevE.jpg","url":"https:\/\/t.co\/9uTPfIQeHi","display_url":"pic.twitter.com\/9uTPfIQeHi","expanded_url":"https:\/\/twitter.com\/Rajnish73365028\/status\/1329642782139445250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":259,"h":194,"resize":"fit"},"medium":{"w":259,"h":194,"resize":"fit"},"small":{"w":259,"h":194,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1329642779375333377,"id_str":"1329642779375333377","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EnPXECbUcAECevE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EnPXECbUcAECevE.jpg","url":"https:\/\/t.co\/9uTPfIQeHi","display_url":"pic.twitter.com\/9uTPfIQeHi","expanded_url":"https:\/\/twitter.com\/Rajnish73365028\/status\/1329642782139445250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":259,"h":194,"resize":"fit"},"medium":{"w":259,"h":194,"resize":"fit"},"small":{"w":259,"h":194,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282989062958149637\/I62WRbod_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282989062958149637\/I62WRbod_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21327232,"id_str":"21327232","name":"Jim - Craig","screen_name":"JimCraig1959","location":"New Orleans LA","description":"Father. - Lawyer. Warren Democrat. Protestant. Views my own. He\/him\/his. Vaccinated.","url":"https:\/\/t.co\/XMjYZ5qT7N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XMjYZ5qT7N","expanded_url":"https:\/\/www.macarthurjustice.org\/","display_url":"macarthurjustice.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1747,"friends_count":4989,"listed_count":6,"created_at":"Thu - Feb 19 18:55:57 +0000 2009","favourites_count":14864,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21892,"lang":null,"status":{"created_at":"Thu - Mar 24 21:31:39 +0000 2022","id":1507107903014064133,"id_str":"1507107903014064133","text":"RT - @kateashaw1: I cannot get enough of this picture","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kateashaw1","name":"Kate - Shaw","id":43469833,"id_str":"43469833","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 01:11:51 +0000 2022","id":1506800931039555585,"id_str":"1506800931039555585","text":"I - cannot get enough of this picture https:\/\/t.co\/EgKnJFGInL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EgKnJFGInL","expanded_url":"https:\/\/twitter.com\/sbmaneyphoto\/status\/1506797132002562058","display_url":"twitter.com\/sbmaneyphoto\/s\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506797132002562058,"quoted_status_id_str":"1506797132002562058","retweet_count":1800,"favorite_count":20246,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506797132002562058,"quoted_status_id_str":"1506797132002562058","retweet_count":1800,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352288004249968645\/zSinjOyP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352288004249968645\/zSinjOyP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21327232\/1611245815","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1166687888303624194,"id_str":"1166687888303624194","name":"Karma\ud83d\udd4a\ufe0f","screen_name":"Kvnq_Biqqs","location":"imo - state Nigeria","description":"Medic|Man Utd Fan|Music freak|we''re so winning - everything by 2025","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":868,"listed_count":0,"created_at":"Wed - Aug 28 12:24:25 +0000 2019","favourites_count":2364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2160,"lang":null,"status":{"created_at":"Tue - Mar 22 10:12:51 +0000 2022","id":1506212302311337990,"id_str":"1506212302311337990","text":"RT - @Grumpydre_Nft: Bullying builds character like nuclear waste creates superheroes. - It\u2019s a rare occurrence and often does much more damage\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Grumpydre_Nft","name":"GrumpyDre - NFTs","id":1481996759425597444,"id_str":"1481996759425597444","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 06:03:30 +0000 2022","id":1506149549462675460,"id_str":"1506149549462675460","text":"Bullying - builds character like nuclear waste creates superheroes. It\u2019s a rare - occurrence and often does much more d\u2026 https:\/\/t.co\/mjGEfBSBFT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mjGEfBSBFT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506149549462675460","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":77,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":67,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493153487395377152\/hFO5ZjVT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493153487395377152\/hFO5ZjVT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166687888303624194\/1603409764","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":862137509337219072,"id_str":"862137509337219072","name":"Mo - Mo","screen_name":"OhNoMoMoMt","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":145,"listed_count":0,"created_at":"Wed - May 10 02:49:34 +0000 2017","favourites_count":258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"status":{"created_at":"Sun - Mar 20 02:25:35 +0000 2022","id":1505369935622537218,"id_str":"1505369935622537218","text":"@MeidasTouch - George Washington the morning after","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505369604050227202,"in_reply_to_status_id_str":"1505369604050227202","in_reply_to_user_id":1243560408025198593,"in_reply_to_user_id_str":"1243560408025198593","in_reply_to_screen_name":"MeidasTouch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032408245099323403\/nGg8sB_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032408245099323403\/nGg8sB_Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261983453723189248,"id_str":"1261983453723189248","name":"mtho","screen_name":"khumalomthosh","location":"Germiston, - South Africa","description":"\ud83d\ude09young moola\ud83e\udd11 * Mr. Fuck - Fear \ud83d\ude11asnavalo_POISON...\ud83d\ude0b\ud83d\ude0e \u2648 Aries\/Taurus\u2649","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":476,"friends_count":2206,"listed_count":0,"created_at":"Sun - May 17 11:35:10 +0000 2020","favourites_count":463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":554,"lang":null,"status":{"created_at":"Wed - Mar 23 19:17:57 +0000 2022","id":1506711867183484949,"id_str":"1506711867183484949","text":"RT - @ChrisExcel102: Leave your man\u2019s phone alone!! \n\nUyoze ubone ikuku\ud83c\udf51 - efresh kuneyakho!\n\nYour confidence and self esteem will never be the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChrisExcel102","name":"ChrisExcel","id":1213725053117796353,"id_str":"1213725053117796353","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 14:21:42 +0000 2022","id":1506637313778098180,"id_str":"1506637313778098180","text":"Leave - your man\u2019s phone alone!! \n\nUyoze ubone ikuku\ud83c\udf51 efresh kuneyakho!\n\nYour - confidence and self esteem will never be the same again!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":396,"favorite_count":3343,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":396,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385407315516473346\/ks5v8ms6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385407315516473346\/ks5v8ms6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261983453723189248\/1589942944","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226455671421460481,"id_str":"1226455671421460481","name":"Monika","screen_name":"Monika18875891","location":"","description":"Be - Happy Be Monika \u24cb\ud83c\udf31","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":224,"friends_count":866,"listed_count":15,"created_at":"Sun - Feb 09 10:40:10 +0000 2020","favourites_count":8742,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1020,"lang":null,"status":{"created_at":"Thu - Mar 24 23:04:27 +0000 2022","id":1507131258190639104,"id_str":"1507131258190639104","text":"@basantttm - @m7mdgadd74 @rana_youssef53 @IdkMayar @rawannn211 @sicksadhana \u0623\u0646\u0627 - \u0623\u0645 \u0628\u0646\u062a\u0643 \u0627\u0644\u062d\u0642\u064a\u0642\u0629 - \u0628\u0633 \u0645\u0634 \u0647\u064a\u0646\u0641\u0639 \u0646\u0635\u0627\u0631\u062d\u0647\u0627 - \u0628 \u062f\u0647 \u062f\u0644\u0648\u0642\u062a\u064a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"basantttm","name":"Basant","id":1217510207212879872,"id_str":"1217510207212879872","indices":[0,10]},{"screen_name":"m7mdgadd74","name":"\u0627\u0646\u0627 - \u062c\u0636\u064a\u062a","id":1426372626876936194,"id_str":"1426372626876936194","indices":[11,22]},{"screen_name":"rana_youssef53","name":"rere","id":914607348664164352,"id_str":"914607348664164352","indices":[23,38]},{"screen_name":"IdkMayar","name":"\ud835\udcdc.","id":938001495747977216,"id_str":"938001495747977216","indices":[39,48]},{"screen_name":"rawannn211","name":"Rouu","id":1412191834827329537,"id_str":"1412191834827329537","indices":[49,60]},{"screen_name":"sicksadhana","name":"hana\ud83e\uddda\ud83c\udffc\u200d\u2640\ufe0f","id":703115062295207937,"id_str":"703115062295207937","indices":[61,73]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507130812432629770,"in_reply_to_status_id_str":"1507130812432629770","in_reply_to_user_id":1217510207212879872,"in_reply_to_user_id_str":"1217510207212879872","in_reply_to_screen_name":"basantttm","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432513440954916871\/yXbDYhcb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432513440954916871\/yXbDYhcb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226455671421460481\/1602981734","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":727476229935353856,"id_str":"727476229935353856","name":"Huo_Tui_Chang","screen_name":"Fang_De_Lai","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":3343,"listed_count":0,"created_at":"Tue - May 03 12:33:43 +0000 2016","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Mar 29 13:21:24 +0000 2020","id":1244253326197362690,"id_str":"1244253326197362690","text":"RT - @wangzhian8848: \u65b9\u821f\u5b50\u8fd9\u4e2a\u9a97\u5b50\u771f\u641e\u7b11\uff0c\u65e5\u672c\u5e73\u65f6\u6234\u53e3\u7f69\u7684\u6bd4\u4f8b\u5168\u7403\u7b2c\u4e00\uff0c\u65b0\u51a0\u540e\u975e\u5f3a\u5236\u4e0b\u5dee\u4e0d\u591a\u4e5f\u662f\u5168\u7403\u7b2c\u4e00\uff0c\u4ed6\u54ea\u53ea\u72d7\u773c\u770b\u5230\u65e5\u672c\u4e0d\u5efa\u8bae\u6234\u53e3\u7f69\uff1f\n\n\u65b9\u821f\u5b50\u7684\u903b\u8f91\u7834\u7efd\u5b66\u4f1a\u521d\u4e2d\u903b\u8f91\u90fd\u80fd\u770b\u51fa\u6765\uff0c\u65e2\u7136\u4e3b\u5f20\u533b\u52a1\u4eba\u5458\u6234\uff0c\u90a3\u5c31\u8bf4\u660e\u6709\u6548\uff0c\u90a3\u666e\u901a\u4eba\u6234\u53e3\u7f69\u5c31\u4e00\u5b9a\u6709\u9632\u62a4\u4f5c\u7528\u3002\n\n\u4f60\u4e0d\u80fd\u8bf4\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wangzhian8848","name":"\u738b\u5c40\u5fd7\u5b89","id":1072109417200414720,"id_str":"1072109417200414720","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 29 05:20:36 +0000 2020","id":1244132327208259587,"id_str":"1244132327208259587","text":"\u65b9\u821f\u5b50\u8fd9\u4e2a\u9a97\u5b50\u771f\u641e\u7b11\uff0c\u65e5\u672c\u5e73\u65f6\u6234\u53e3\u7f69\u7684\u6bd4\u4f8b\u5168\u7403\u7b2c\u4e00\uff0c\u65b0\u51a0\u540e\u975e\u5f3a\u5236\u4e0b\u5dee\u4e0d\u591a\u4e5f\u662f\u5168\u7403\u7b2c\u4e00\uff0c\u4ed6\u54ea\u53ea\u72d7\u773c\u770b\u5230\u65e5\u672c\u4e0d\u5efa\u8bae\u6234\u53e3\u7f69\uff1f\n\n\u65b9\u821f\u5b50\u7684\u903b\u8f91\u7834\u7efd\u5b66\u4f1a\u521d\u4e2d\u903b\u8f91\u90fd\u80fd\u770b\u51fa\u6765\uff0c\u65e2\u7136\u4e3b\u5f20\u533b\u52a1\u4eba\u5458\u6234\uff0c\u90a3\u5c31\u8bf4\u660e\u6709\u6548\uff0c\u90a3\u666e\u901a\u4eba\u6234\u53e3\u7f69\u5c31\u4e00\u5b9a\u6709\u9632\u62a4\u4f5c\u7528\u3002\u2026 - https:\/\/t.co\/MjKMmf9GHO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MjKMmf9GHO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1244132327208259587","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":362,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"is_quote_status":false,"retweet_count":23,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753754618404888576\/SrX-xlMC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753754618404888576\/SrX-xlMC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1059645732792295424,"id_str":"1059645732792295424","name":"Phreshprincebountyilovepriscy","screen_name":"Phreshprincebo1","location":"Oduom, - Ghana","description":"I always win my enemies because of the protections OF - GOD","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":1330,"listed_count":0,"created_at":"Tue - Nov 06 03:16:44 +0000 2018","favourites_count":3668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Thu - Dec 10 22:38:00 +0000 2020","id":1337164693430018050,"id_str":"1337164693430018050","text":"@_till_i_cum - 3y3 wose","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1337046159009968134,"in_reply_to_status_id_str":"1337046159009968134","in_reply_to_user_id":795598669059883008,"in_reply_to_user_id_str":"795598669059883008","in_reply_to_screen_name":"boka_hajia","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130810079064788995\/sQZVsdac_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130810079064788995\/sQZVsdac_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":843524022272999424,"id_str":"843524022272999424","name":"Genevieve - Milner\ud83d\udc8b\u2763\ufe0f","screen_name":"GennyMilner","location":"","description":"\u201cIf - I had a dick,this is where I\u2019d tell you to suck it\u201d Betty White","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":3097,"listed_count":1,"created_at":"Sun - Mar 19 18:06:13 +0000 2017","favourites_count":15706,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":702,"lang":null,"status":{"created_at":"Sat - Mar 12 15:50:18 +0000 2022","id":1502673344117850118,"id_str":"1502673344117850118","text":"RT - @manistoe: she had some type of magic pen in the studio with her everytime - she recorded https:\/\/t.co\/1uEZH4hJcu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"manistoe","name":"KY - \u2655\u2b52","id":876598171211902977,"id_str":"876598171211902977","indices":[3,12]}],"urls":[],"media":[{"id":884829242164477952,"id_str":"884829242164477952","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","url":"https:\/\/t.co\/1uEZH4hJcu","display_url":"pic.twitter.com\/1uEZH4hJcu","expanded_url":"https:\/\/twitter.com\/aVeryRichBish\/status\/884829642036740096\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":884829642036740096,"source_status_id_str":"884829642036740096","source_user_id":757180524775387136,"source_user_id_str":"757180524775387136"}]},"extended_entities":{"media":[{"id":884829242164477952,"id_str":"884829242164477952","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","url":"https:\/\/t.co\/1uEZH4hJcu","display_url":"pic.twitter.com\/1uEZH4hJcu","expanded_url":"https:\/\/twitter.com\/aVeryRichBish\/status\/884829642036740096\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":884829642036740096,"source_status_id_str":"884829642036740096","source_user_id":757180524775387136,"source_user_id_str":"757180524775387136","video_info":{"aspect_ratio":[16,9],"duration_millis":103160,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/640x360\/kb3u3sY0_CCCsNue.mp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/320x180\/egmsXbjxg_ygZeF9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/1280x720\/n0CHY6562a0sbjhs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/pl\/2YfD4_ggWUceRw2u.m3u8"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 11 23:27:33 +0000 2022","id":1502426028853141511,"id_str":"1502426028853141511","text":"she - had some type of magic pen in the studio with her everytime she recorded https:\/\/t.co\/1uEZH4hJcu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":884829242164477952,"id_str":"884829242164477952","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","url":"https:\/\/t.co\/1uEZH4hJcu","display_url":"pic.twitter.com\/1uEZH4hJcu","expanded_url":"https:\/\/twitter.com\/aVeryRichBish\/status\/884829642036740096\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":884829642036740096,"source_status_id_str":"884829642036740096","source_user_id":757180524775387136,"source_user_id_str":"757180524775387136"}]},"extended_entities":{"media":[{"id":884829242164477952,"id_str":"884829242164477952","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/884829242164477952\/pu\/img\/K-9YdSWYu-IJzjF_.jpg","url":"https:\/\/t.co\/1uEZH4hJcu","display_url":"pic.twitter.com\/1uEZH4hJcu","expanded_url":"https:\/\/twitter.com\/aVeryRichBish\/status\/884829642036740096\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":884829642036740096,"source_status_id_str":"884829642036740096","source_user_id":757180524775387136,"source_user_id_str":"757180524775387136","video_info":{"aspect_ratio":[16,9],"duration_millis":103160,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/640x360\/kb3u3sY0_CCCsNue.mp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/320x180\/egmsXbjxg_ygZeF9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/vid\/1280x720\/n0CHY6562a0sbjhs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/884829242164477952\/pu\/pl\/2YfD4_ggWUceRw2u.m3u8"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":312,"favorite_count":1648,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":312,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493411314001235969\/mtAdFtff_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493411314001235969\/mtAdFtff_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843524022272999424\/1644891989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3347127916,"id_str":"3347127916","name":"jess","screen_name":"yasminelsaftyyy","location":"Cairo, - Egypt","description":"no","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":189,"listed_count":0,"created_at":"Fri - Jun 26 23:59:37 +0000 2015","favourites_count":6457,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1174,"lang":null,"status":{"created_at":"Wed - Mar 23 19:14:08 +0000 2022","id":1506710906281070603,"id_str":"1506710906281070603","text":"i - yawn every 2 mins","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465806019121008644\/Uovagagk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465806019121008644\/Uovagagk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3347127916\/1608673696","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":119011652,"id_str":"119011652","name":"Ibraheem - Abioye","screen_name":"DrAbioye","location":"Barrington, RI","description":"MD. - Ph.D. Population Health Scientist. Interested in global health, healthcare - innovation, clinical trials, and epidemiology. Alumnus of @LASUOfficial, @Harvard","url":"https:\/\/t.co\/LZ0NVIP7PY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LZ0NVIP7PY","expanded_url":"https:\/\/www.researchgate.net\/profile\/Ajibola_Abioye\/?ev=hdr_xprf","display_url":"researchgate.net\/profile\/Ajibol\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5011,"friends_count":2047,"listed_count":75,"created_at":"Tue - Mar 02 11:47:41 +0000 2010","favourites_count":56699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":73009,"lang":null,"status":{"created_at":"Sat - Mar 26 02:02:17 +0000 2022","id":1507538398675881996,"id_str":"1507538398675881996","text":"The - huge challenge of patient reported instruments and how using them for single - patient clinical decisions can be\u2026 https:\/\/t.co\/J8Z6G1rnze","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J8Z6G1rnze","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507538398675881996","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507129405759492096,"quoted_status_id_str":"1507129405759492096","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503567871477170176\/c2NuSV9G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503567871477170176\/c2NuSV9G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119011652\/1406545894","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":362021552,"id_str":"362021552","name":"Dorylorna","screen_name":"lornamichelli","location":"Ecuador","description":"be - in the present","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":624,"listed_count":0,"created_at":"Thu - Aug 25 18:31:01 +0000 2011","favourites_count":4281,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6560,"lang":null,"status":{"created_at":"Thu - Mar 17 11:57:44 +0000 2022","id":1504426757985816576,"id_str":"1504426757985816576","text":"@NormanCheca - @skhunt92 \ud83d\udc4f\ud83c\udffb\ud83d\udc4f\ud83c\udffbsi ! Y adem\u00e1s - es m\u00e1s barato que pinto y marcas de Ecuador.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NormanCheca","name":"Etc\u00e9tera","id":214737145,"id_str":"214737145","indices":[0,12]},{"screen_name":"skhunt92","name":"David","id":91119021,"id_str":"91119021","indices":[13,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504278004041764864,"in_reply_to_status_id_str":"1504278004041764864","in_reply_to_user_id":214737145,"in_reply_to_user_id_str":"214737145","in_reply_to_screen_name":"NormanCheca","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396635202269614082\/QwUdLawG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396635202269614082\/QwUdLawG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362021552\/1590547379","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":971890992168218624,"id_str":"971890992168218624","name":"Amalita - Angulo","screen_name":"amalita_angulo","location":"Upstate NY","description":"Artist. - La Habana\ud83c\udde8\ud83c\uddfaNY\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/SaP5H3QhuJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SaP5H3QhuJ","expanded_url":"https:\/\/linktr.ee\/amalitanguloalvarez","display_url":"linktr.ee\/amalitanguloal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":351,"friends_count":197,"listed_count":4,"created_at":"Thu - Mar 08 23:30:44 +0000 2018","favourites_count":5377,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":191,"lang":null,"status":{"created_at":"Sun - Oct 10 20:13:05 +0000 2021","id":1447294133534666753,"id_str":"1447294133534666753","text":"@MiaMalkova - \ud83d\udcaf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MiaMalkova","name":"Mia - Malkova","id":709095240,"id_str":"709095240","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1447231335471345673,"in_reply_to_status_id_str":"1447231335471345673","in_reply_to_user_id":709095240,"in_reply_to_user_id_str":"709095240","in_reply_to_screen_name":"MiaMalkova","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436190473111150594\/SYrF1r1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436190473111150594\/SYrF1r1L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971890992168218624\/1627879815","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1056337408181055488,"id_str":"1056337408181055488","name":"Prosper - Reindorf Yorke Ansah\u00ae","screen_name":"ReindorfAnsah","location":"Kumasi, - \ud83c\uddechana \ud83c\uddec\ud83c\udded ","description":"I consider my self - an honest, hardworking and conscientious individual capable of performing - various roles.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":1853,"listed_count":0,"created_at":"Sun - Oct 28 00:10:38 +0000 2018","favourites_count":40056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":225,"lang":null,"status":{"created_at":"Sat - Feb 26 17:32:18 +0000 2022","id":1497625583731286022,"id_str":"1497625583731286022","text":"@BoaduwaaDoris - @ReindorfAnsah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BoaduwaaDoris","name":"Doris - Boaduwaa 1\ufe0f\u20e30\ufe0f\u20e3","id":1224361828781830146,"id_str":"1224361828781830146","indices":[0,14]},{"screen_name":"ReindorfAnsah","name":"Prosper - Reindorf Yorke Ansah\u00ae","id":1056337408181055488,"id_str":"1056337408181055488","indices":[15,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497623683237560321,"in_reply_to_status_id_str":"1497623683237560321","in_reply_to_user_id":1224361828781830146,"in_reply_to_user_id_str":"1224361828781830146","in_reply_to_screen_name":"BoaduwaaDoris","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477542774396362760\/SdCXmEcH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477542774396362760\/SdCXmEcH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056337408181055488\/1634513015","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":810838448,"id_str":"810838448","name":"Roland - NicholsonJr69","screen_name":"RNicholsonJr","location":"Washington,DC","description":"Principal - @ Roland Nicholson, Jr. & Associates. The measure of who we are is what we - do with what we have Coach Vince Lombardi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":2804,"listed_count":15,"created_at":"Sat - Sep 08 12:34:11 +0000 2012","favourites_count":6693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27785,"lang":null,"status":{"created_at":"Sat - Mar 26 02:20:37 +0000 2022","id":1507543010405502982,"id_str":"1507543010405502982","text":"\uc5d0 - \uc624\uc2e0 \uac83\uc744 \ud658\uc601\ud569\ub2c8\ub2e4\n\nMeet Kim Holloway, - wife of Saint Peter''s coach Shaheen Holloway https:\/\/t.co\/amiqTykOk6 via - @nypostsports","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nypostsports","name":"New - York Post Sports","id":589269098,"id_str":"589269098","indices":[107,120]}],"urls":[{"url":"https:\/\/t.co\/amiqTykOk6","expanded_url":"https:\/\/nypost.com\/2022\/03\/25\/who-is-saint-peters-coach-shaheen-holloways-wife-kim\/?utm_source=twitter_sitebuttons&utm_medium=site%20buttons&utm_campaign=site%20buttons","display_url":"nypost.com\/2022\/03\/25\/who\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447934791774928897\/0UW4voB7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447934791774928897\/0UW4voB7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810838448\/1377707222","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":292277107,"id_str":"292277107","name":"phoenixjagMd","screen_name":"phoenixjag","location":"Linglestown, - PA","description":"physician grandma traveling hiker lgbtq ally civil rights - book reader food drink lover feminist stop gerrymandering secular humanist - living kidney donor no dms","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":483,"friends_count":4394,"listed_count":0,"created_at":"Tue - May 03 11:48:32 +0000 2011","favourites_count":59755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33569,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494812860320526342\/V4iMWKi7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494812860320526342\/V4iMWKi7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292277107\/1533315028","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2736420125,"id_str":"2736420125","name":"Lydia - Roller","screen_name":"lydiaroller","location":"Staunton, IL","description":"miz","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":278,"friends_count":293,"listed_count":1,"created_at":"Thu - Aug 07 18:28:55 +0000 2014","favourites_count":2692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":217,"lang":null,"status":{"created_at":"Sat - Feb 12 02:26:06 +0000 2022","id":1492324101150625793,"id_str":"1492324101150625793","text":"RT - @MizzouTFXC: Abbey Wilson set a new PR in the women''s 3000m\u203c\ufe0f\n\n#Compete4Missouri\ud83d\udc2f - https:\/\/t.co\/AhrEPi9Lbg","truncated":false,"entities":{"hashtags":[{"text":"Compete4Missouri","indices":[66,83]}],"symbols":[],"user_mentions":[{"screen_name":"MizzouTFXC","name":"Mizzou - Track & Field","id":247538316,"id_str":"247538316","indices":[3,14]}],"urls":[],"media":[{"id":1492310123443720193,"id_str":"1492310123443720193","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","url":"https:\/\/t.co\/AhrEPi9Lbg","display_url":"pic.twitter.com\/AhrEPi9Lbg","expanded_url":"https:\/\/twitter.com\/MizzouTFXC\/status\/1492310264070369282\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"}},"source_status_id":1492310264070369282,"source_status_id_str":"1492310264070369282","source_user_id":247538316,"source_user_id_str":"247538316"}]},"extended_entities":{"media":[{"id":1492310123443720193,"id_str":"1492310123443720193","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","url":"https:\/\/t.co\/AhrEPi9Lbg","display_url":"pic.twitter.com\/AhrEPi9Lbg","expanded_url":"https:\/\/twitter.com\/MizzouTFXC\/status\/1492310264070369282\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"}},"source_status_id":1492310264070369282,"source_status_id_str":"1492310264070369282","source_user_id":247538316,"source_user_id_str":"247538316"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 12 01:31:07 +0000 2022","id":1492310264070369282,"id_str":"1492310264070369282","text":"Abbey - Wilson set a new PR in the women''s 3000m\u203c\ufe0f\n\n#Compete4Missouri\ud83d\udc2f - https:\/\/t.co\/AhrEPi9Lbg","truncated":false,"entities":{"hashtags":[{"text":"Compete4Missouri","indices":[50,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1492310123443720193,"id_str":"1492310123443720193","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","url":"https:\/\/t.co\/AhrEPi9Lbg","display_url":"pic.twitter.com\/AhrEPi9Lbg","expanded_url":"https:\/\/twitter.com\/MizzouTFXC\/status\/1492310264070369282\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1492310123443720193,"id_str":"1492310123443720193","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLXAJpKVEAE9S2T.jpg","url":"https:\/\/t.co\/AhrEPi9Lbg","display_url":"pic.twitter.com\/AhrEPi9Lbg","expanded_url":"https:\/\/twitter.com\/MizzouTFXC\/status\/1492310264070369282\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1492309783898066945,"in_reply_to_status_id_str":"1492309783898066945","in_reply_to_user_id":247538316,"in_reply_to_user_id_str":"247538316","in_reply_to_screen_name":"MizzouTFXC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":35,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430611702299639808\/92iTLmlD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430611702299639808\/92iTLmlD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2736420125\/1629919384","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1087613081637789696,"id_str":"1087613081637789696","name":"Dennis - Palakashi","screen_name":"DPalakashi","location":"","description":"I enjoy - thinking and discussing ideas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":214,"listed_count":0,"created_at":"Tue - Jan 22 07:29:00 +0000 2019","favourites_count":6107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":575,"lang":null,"status":{"created_at":"Fri - Mar 25 15:37:41 +0000 2022","id":1507381210959519758,"id_str":"1507381210959519758","text":"@BongMelz - Is it a symbolic birth of a new revolutionary!?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BongMelz","name":"I - stand with the marginalized","id":2223330125,"id_str":"2223330125","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507369565587742728,"in_reply_to_status_id_str":"1507369565587742728","in_reply_to_user_id":2223330125,"in_reply_to_user_id_str":"2223330125","in_reply_to_screen_name":"BongMelz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17140771,"id_str":"17140771","name":"Cindi - Bisenius","screen_name":"CindibiseniusOr","location":"Happy Valley, OR","description":"Wife - of 40 years and mom to five woke sons. Proud mom of career Air Force Special - Ops Warrior 26th Special Tactics. #TheResistance \ud83c\udf08\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3181,"friends_count":3378,"listed_count":15,"created_at":"Mon - Nov 03 21:16:34 +0000 2008","favourites_count":269368,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":214035,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302338253362659328\/cU_cyaTY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302338253362659328\/cU_cyaTY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17140771\/1484013875","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1573674182,"id_str":"1573674182","name":"ShelleyP","screen_name":"ShelleyPalumbo","location":"","description":"Former - this, that, and the other. Current math\/science explainer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":1436,"listed_count":0,"created_at":"Sat - Jul 06 21:15:04 +0000 2013","favourites_count":13062,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":939,"lang":null,"status":{"created_at":"Fri - Mar 11 16:23:32 +0000 2022","id":1502319322923941904,"id_str":"1502319322923941904","text":"@Lizzyinatizzy26 - Nearly happened to me too. \nWordle 265 6\/6. \n\n\u2b1c\ud83d\udfe8\ud83d\udfe8\u2b1c\u2b1c\n\u2b1c\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\n\u2b1c\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\n\u2b1c\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\n\u2b1c\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\n\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lizzyinatizzy26","name":"skim - milk hate account, PhD","id":249959114,"id_str":"249959114","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502282226242932737,"in_reply_to_status_id_str":"1502282226242932737","in_reply_to_user_id":249959114,"in_reply_to_user_id_str":"249959114","in_reply_to_screen_name":"Lizzyinatizzy26","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000097287680\/8241be1e9ae7275fc86fb465e2b61869_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000097287680\/8241be1e9ae7275fc86fb465e2b61869_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1573674182\/1379274010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":497086428,"id_str":"497086428","name":"Okugbeni - Uyi-Osa Emmanuel","screen_name":"OkugbeniE","location":"worldwide","description":"Human|| - History||Fashion Designer|| Electrical|| Management|| Web Development(Novice) - || Marketing || Technical Support @FGN || #TechEnthusiastic #Education.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2399,"friends_count":5006,"listed_count":2,"created_at":"Sun - Feb 19 16:12:07 +0000 2012","favourites_count":190675,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":123201,"lang":null,"status":{"created_at":"Sat - Mar 26 10:43:19 +0000 2022","id":1507669520076492806,"id_str":"1507669520076492806","text":"@macbendaniels - @NwachukwuLusci1 @BigMan_Xander This is true but it is not the reality on - ground.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"macbendaniels","name":"Banana - Republik","id":1241248502,"id_str":"1241248502","indices":[0,14]},{"screen_name":"NwachukwuLusci1","name":"@TooOpinionated","id":1062309532716666880,"id_str":"1062309532716666880","indices":[15,31]},{"screen_name":"BigMan_Xander","name":"Xander - world\u2764","id":932159095423033344,"id_str":"932159095423033344","indices":[32,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507669095063429129,"in_reply_to_status_id_str":"1507669095063429129","in_reply_to_user_id":1241248502,"in_reply_to_user_id_str":"1241248502","in_reply_to_screen_name":"macbendaniels","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421006175605346306\/0s6VtD1t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421006175605346306\/0s6VtD1t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497086428\/1537888347","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927254159937720320,"id_str":"927254159937720320","name":"Retro - Suzy","screen_name":"RetroSuzy","location":"Hollywood, CA","description":"RESISTANCE - \u2026 writer\/\/poet\/\/mother\/\/not an overlooker","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4572,"friends_count":4631,"listed_count":1,"created_at":"Sun - Nov 05 19:19:54 +0000 2017","favourites_count":54732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7705,"lang":null,"status":{"created_at":"Sun - Mar 20 06:37:45 +0000 2022","id":1505433392682217472,"id_str":"1505433392682217472","text":"Putin - should be in prison NOW! https:\/\/t.co\/fU8iGmkxac","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fU8iGmkxac","expanded_url":"https:\/\/twitter.com\/OccupyDemocrats\/status\/1505245834987724806","display_url":"twitter.com\/OccupyDemocrat\u2026","indices":[31,54]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505245834987724806,"quoted_status_id_str":"1505245834987724806","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/945139916031197185\/MB9SpJm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945139916031197185\/MB9SpJm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/927254159937720320\/1514174939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":301695809,"id_str":"301695809","name":"LeAnna - Pitts","screen_name":"papa_nana_life","location":"Oregon","description":"Clark - and Clovers Nana. Assistant Director @uofocpfm @uoregon","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":482,"listed_count":0,"created_at":"Thu - May 19 22:12:41 +0000 2011","favourites_count":2709,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1112,"lang":null,"status":{"created_at":"Wed - Mar 23 20:36:06 +0000 2022","id":1506731536023916545,"id_str":"1506731536023916545","text":"RT - @UofOCPFM: It may be overcast \u2601\ufe0f but it''s beautiful on campus \ud83e\udd17 - @uoregon #uospring https:\/\/t.co\/4rKgrVIgKP","truncated":false,"entities":{"hashtags":[{"text":"uospring","indices":[76,85]}],"symbols":[],"user_mentions":[{"screen_name":"UofOCPFM","name":"Campus - Planning and Facilities Management","id":828719285803507712,"id_str":"828719285803507712","indices":[3,12]},{"screen_name":"uoregon","name":"University - of Oregon","id":40940457,"id_str":"40940457","indices":[67,75]}],"urls":[],"media":[{"id":1506725819015598080,"id_str":"1506725819015598080","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1506727016514863106,"source_status_id_str":"1506727016514863106","source_user_id":828719285803507712,"source_user_id_str":"828719285803507712"}]},"extended_entities":{"media":[{"id":1506725819015598080,"id_str":"1506725819015598080","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1506727016514863106,"source_status_id_str":"1506727016514863106","source_user_id":828719285803507712,"source_user_id_str":"828719285803507712"},{"id":1506725901500747779,"id_str":"1506725901500747779","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3OXTVEAMklh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3OXTVEAMklh3.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1506727016514863106,"source_status_id_str":"1506727016514863106","source_user_id":828719285803507712,"source_user_id_str":"828719285803507712"},{"id":1506726280338632705,"id_str":"1506726280338632705","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3kalUcAEZkd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3kalUcAEZkd_.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1506727016514863106,"source_status_id_str":"1506727016514863106","source_user_id":828719285803507712,"source_user_id_str":"828719285803507712"},{"id":1506727006741811204,"id_str":"1506727006741811204","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj4OspVUAQCKJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj4OspVUAQCKJx.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1506727016514863106,"source_status_id_str":"1506727016514863106","source_user_id":828719285803507712,"source_user_id_str":"828719285803507712"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:18:09 +0000 2022","id":1506727016514863106,"id_str":"1506727016514863106","text":"It - may be overcast \u2601\ufe0f but it''s beautiful on campus \ud83e\udd17 @uoregon - #uospring https:\/\/t.co\/4rKgrVIgKP","truncated":false,"entities":{"hashtags":[{"text":"uospring","indices":[62,71]}],"symbols":[],"user_mentions":[{"screen_name":"uoregon","name":"University - of Oregon","id":40940457,"id_str":"40940457","indices":[53,61]}],"urls":[],"media":[{"id":1506725819015598080,"id_str":"1506725819015598080","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506725819015598080,"id_str":"1506725819015598080","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3JkBVkAAF3wa.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1506725901500747779,"id_str":"1506725901500747779","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3OXTVEAMklh3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3OXTVEAMklh3.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":1506726280338632705,"id_str":"1506726280338632705","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj3kalUcAEZkd_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj3kalUcAEZkd_.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":1506727006741811204,"id_str":"1506727006741811204","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj4OspVUAQCKJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj4OspVUAQCKJx.jpg","url":"https:\/\/t.co\/4rKgrVIgKP","display_url":"pic.twitter.com\/4rKgrVIgKP","expanded_url":"https:\/\/twitter.com\/UofOCPFM\/status\/1506727016514863106\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"01241e9666cacdd2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01241e9666cacdd2.json","place_type":"city","name":"Eugene","full_name":"Eugene, - OR","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-123.208615,43.988281],[-123.0361879,43.988281],[-123.0361879,44.142961],[-123.208615,44.142961]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497997150696792067\/Lfp2dRtv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497997150696792067\/Lfp2dRtv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301695809\/1627168605","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2240935729,"id_str":"2240935729","name":"Susan - Quatresols","screen_name":"SusanQuatresols","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":23,"friends_count":350,"listed_count":1,"created_at":"Wed - Dec 11 15:16:33 +0000 2013","favourites_count":621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694343190053285888\/m_sIsnO7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694343190053285888\/m_sIsnO7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240935729\/1442326163","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52753729,"id_str":"52753729","name":"Sarah - Brockert","screen_name":"sarbear7390","location":"California, USA","description":"Just - here for everyone who can more succinctly make fun of Donald Trump than I - can. Sparty alum \ud83d\udc9a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":277,"friends_count":1393,"listed_count":0,"created_at":"Wed - Jul 01 15:23:07 +0000 2009","favourites_count":54666,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1507,"lang":null,"status":{"created_at":"Sat - Mar 26 03:00:11 +0000 2022","id":1507552968605794305,"id_str":"1507552968605794305","text":"@elwinslow - @orlyhmm @TroxellKristina @KrimzonHawka @jmvasquez1974 I imagine your Google - works the same way mine doe\u2026 https:\/\/t.co\/333VkpDinD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elwinslow","name":"Liz - Winslow","id":17698648,"id_str":"17698648","indices":[0,10]},{"screen_name":"orlyhmm","name":"Adam","id":229134731,"id_str":"229134731","indices":[11,19]},{"screen_name":"TroxellKristina","name":"Kristina - Troxell","id":1410038274471702534,"id_str":"1410038274471702534","indices":[20,36]},{"screen_name":"KrimzonHawka","name":"Hawka7","id":2352574230,"id_str":"2352574230","indices":[37,50]},{"screen_name":"jmvasquez1974","name":"James - Vasquez","id":1496985907139956741,"id_str":"1496985907139956741","indices":[51,65]}],"urls":[{"url":"https:\/\/t.co\/333VkpDinD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507552968605794305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507551701951201293,"in_reply_to_status_id_str":"1507551701951201293","in_reply_to_user_id":17698648,"in_reply_to_user_id_str":"17698648","in_reply_to_screen_name":"elwinslow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/974443030475255808\/7ZfHQ7G8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/974443030475255808\/7ZfHQ7G8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52753729\/1485455403","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290047805113774081,"id_str":"1290047805113774081","name":"Maria - Ryken","screen_name":"MariaRyken5","location":"California, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":624,"listed_count":0,"created_at":"Sun - Aug 02 22:12:35 +0000 2020","favourites_count":3582,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Wed - Feb 16 00:47:01 +0000 2022","id":1493748718859739143,"id_str":"1493748718859739143","text":"@SuzeQKnits - It does not look easy at all!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SuzeQKnits","name":"SuzeQKnits","id":2180853599,"id_str":"2180853599","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493597535923056641,"in_reply_to_status_id_str":"1493597535923056641","in_reply_to_user_id":2180853599,"in_reply_to_user_id_str":"2180853599","in_reply_to_screen_name":"SuzeQKnits","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487539003800780803\/7WtE1L0Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487539003800780803\/7WtE1L0Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":248983918,"id_str":"248983918","name":"Addi","screen_name":"Mistryad","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1630,"listed_count":3,"created_at":"Tue - Feb 08 03:28:44 +0000 2011","favourites_count":12195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12040,"lang":null,"status":{"created_at":"Sat - Mar 26 04:22:07 +0000 2022","id":1507573589377425412,"id_str":"1507573589377425412","text":"RT - @davidsettle42: 03\/25\/22 - View today''s #MarketOutlook from @MarketScholars - here: https:\/\/t.co\/nohXLGp9o4 Discussed: $SPY $IWM $EEM $EFA\u2026","truncated":false,"entities":{"hashtags":[{"text":"MarketOutlook","indices":[43,57]}],"symbols":[{"text":"SPY","indices":[120,124]},{"text":"IWM","indices":[125,129]},{"text":"EEM","indices":[130,134]}],"user_mentions":[{"screen_name":"davidsettle42","name":"David - Settle, CMT","id":210153565,"id_str":"210153565","indices":[3,17]},{"screen_name":"MarketScholars","name":"Market - Scholars","id":926533052527812610,"id_str":"926533052527812610","indices":[63,78]}],"urls":[{"url":"https:\/\/t.co\/nohXLGp9o4","expanded_url":"https:\/\/wp.me\/p9upfx-awn","display_url":"wp.me\/p9upfx-awn","indices":[85,108]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:24:23 +0000 2022","id":1507513759375380483,"id_str":"1507513759375380483","text":"03\/25\/22 - - View today''s #MarketOutlook from @MarketScholars here: https:\/\/t.co\/nohXLGp9o4 - Discussed: $SPY $IWM $EEM\u2026 https:\/\/t.co\/4wViE6TGmc","truncated":true,"entities":{"hashtags":[{"text":"MarketOutlook","indices":[24,38]}],"symbols":[{"text":"SPY","indices":[101,105]},{"text":"IWM","indices":[106,110]},{"text":"EEM","indices":[111,115]}],"user_mentions":[{"screen_name":"MarketScholars","name":"Market - Scholars","id":926533052527812610,"id_str":"926533052527812610","indices":[44,59]}],"urls":[{"url":"https:\/\/t.co\/nohXLGp9o4","expanded_url":"https:\/\/wp.me\/p9upfx-awn","display_url":"wp.me\/p9upfx-awn","indices":[66,89]},{"url":"https:\/\/t.co\/4wViE6TGmc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507513759375380483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":43,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3012534790,"id_str":"3012534790","name":"Brainiac\u00b9\u00b3 - \uea00","screen_name":"Brainiac_13","location":"4th Planet on the Right ","description":"I - put ''ess'' in Success, Without me, life would ''Succ!'' Just a \ud83c\uddec\ud83c\udde7 - Jedi sitting in the corner drinking his \u2615 Movies\ud83c\udfac Comics\ud83e\uddb8\u200d\u2642\ufe0f - Games\ud83c\udfae & all that other shit!","url":"https:\/\/t.co\/GkEQsDzVlc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GkEQsDzVlc","expanded_url":"https:\/\/twitter.com\/ComicArtHeaven?s=08","display_url":"twitter.com\/ComicArtHeaven\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":627,"friends_count":93,"listed_count":37,"created_at":"Mon - Feb 02 16:31:11 +0000 2015","favourites_count":219825,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":209372,"lang":null,"status":{"created_at":"Sat - Mar 26 01:31:56 +0000 2022","id":1507530762270220290,"id_str":"1507530762270220290","text":"RT - @RackSpinner: Oozing with talent, THE SPINNER RACK, March 25, 1986! 1\/2 https:\/\/t.co\/NiAuSWBE7d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RackSpinner","name":"THE - SPINNER RACK","id":1093898144172060672,"id_str":"1093898144172060672","indices":[3,15]}],"urls":[],"media":[{"id":1507486028847738881,"id_str":"1507486028847738881","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":614,"resize":"fit"},"large":{"w":400,"h":614,"resize":"fit"},"medium":{"w":400,"h":614,"resize":"fit"}},"source_status_id":1507486182510264321,"source_status_id_str":"1507486182510264321","source_user_id":1093898144172060672,"source_user_id_str":"1093898144172060672"}]},"extended_entities":{"media":[{"id":1507486028847738881,"id_str":"1507486028847738881","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":614,"resize":"fit"},"large":{"w":400,"h":614,"resize":"fit"},"medium":{"w":400,"h":614,"resize":"fit"}},"source_status_id":1507486182510264321,"source_status_id_str":"1507486182510264321","source_user_id":1093898144172060672,"source_user_id_str":"1093898144172060672"},{"id":1507486028847673348,"id_str":"1507486028847673348","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVUcAQSF3R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVUcAQSF3R.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":442,"h":680,"resize":"fit"},"large":{"w":550,"h":846,"resize":"fit"},"medium":{"w":550,"h":846,"resize":"fit"}},"source_status_id":1507486182510264321,"source_status_id_str":"1507486182510264321","source_user_id":1093898144172060672,"source_user_id_str":"1093898144172060672"},{"id":1507486028839354381,"id_str":"1507486028839354381","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmTVgA0T32T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmTVgA0T32T.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":634,"h":960,"resize":"fit"},"medium":{"w":634,"h":960,"resize":"fit"},"small":{"w":449,"h":680,"resize":"fit"}},"source_status_id":1507486182510264321,"source_status_id_str":"1507486182510264321","source_user_id":1093898144172060672,"source_user_id_str":"1093898144172060672"},{"id":1507486028839358466,"id_str":"1507486028839358466","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmTVkAI-F81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmTVkAI-F81.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"medium":{"w":624,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":624,"h":960,"resize":"fit"},"small":{"w":442,"h":680,"resize":"fit"}},"source_status_id":1507486182510264321,"source_status_id_str":"1507486182510264321","source_user_id":1093898144172060672,"source_user_id_str":"1093898144172060672"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:34:48 +0000 2022","id":1507486182510264321,"id_str":"1507486182510264321","text":"Oozing - with talent, THE SPINNER RACK, March 25, 1986! 1\/2 https:\/\/t.co\/NiAuSWBE7d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507486028847738881,"id_str":"1507486028847738881","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":614,"resize":"fit"},"large":{"w":400,"h":614,"resize":"fit"},"medium":{"w":400,"h":614,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507486028847738881,"id_str":"1507486028847738881","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVVcAEnHHU.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":614,"resize":"fit"},"large":{"w":400,"h":614,"resize":"fit"},"medium":{"w":400,"h":614,"resize":"fit"}}},{"id":1507486028847673348,"id_str":"1507486028847673348","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmVUcAQSF3R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmVUcAQSF3R.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":442,"h":680,"resize":"fit"},"large":{"w":550,"h":846,"resize":"fit"},"medium":{"w":550,"h":846,"resize":"fit"}}},{"id":1507486028839354381,"id_str":"1507486028839354381","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmTVgA0T32T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmTVgA0T32T.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":634,"h":960,"resize":"fit"},"medium":{"w":634,"h":960,"resize":"fit"},"small":{"w":449,"h":680,"resize":"fit"}}},{"id":1507486028839358466,"id_str":"1507486028839358466","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuqjmTVkAI-F81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuqjmTVkAI-F81.jpg","url":"https:\/\/t.co\/NiAuSWBE7d","display_url":"pic.twitter.com\/NiAuSWBE7d","expanded_url":"https:\/\/twitter.com\/RackSpinner\/status\/1507486182510264321\/photo\/1","type":"photo","sizes":{"medium":{"w":624,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":624,"h":960,"resize":"fit"},"small":{"w":442,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":472,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507488411929747458\/JylLdCdp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507488411929747458\/JylLdCdp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012534790\/1646050596","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":745810094458179584,"id_str":"745810094458179584","name":"Jean - Kraabel","screen_name":"kraabelj","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":509,"listed_count":0,"created_at":"Thu - Jun 23 02:45:57 +0000 2016","favourites_count":2066,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"status":{"created_at":"Sat - Mar 26 01:16:12 +0000 2022","id":1507526802482376704,"id_str":"1507526802482376704","text":"@JeopardyGuesser - What is Seattle? #blindguess","truncated":false,"entities":{"hashtags":[{"text":"blindguess","indices":[34,45]}],"symbols":[],"user_mentions":[{"screen_name":"JeopardyGuesser","name":"JeopardyBlindGuesser","id":746123526743142400,"id_str":"746123526743142400","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507498312374448128,"in_reply_to_status_id_str":"1507498312374448128","in_reply_to_user_id":746123526743142400,"in_reply_to_user_id_str":"746123526743142400","in_reply_to_screen_name":"JeopardyGuesser","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110244387,"id_str":"110244387","name":"Chandra - Vinjamuri","screen_name":"chandravnj","location":"Washington DC","description":"Stuck - somewhere between the beaches of Normandy and the shores of MaachuPeechu!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":743,"listed_count":0,"created_at":"Sun - Jan 31 21:50:23 +0000 2010","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1955531379\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1955531379\/image_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":253153040,"id_str":"253153040","name":"Liz - Cangelosi","screen_name":"lizcangelosi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":748,"listed_count":0,"created_at":"Wed - Feb 16 17:24:31 +0000 2011","favourites_count":5462,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":366,"lang":null,"status":{"created_at":"Tue - Jan 26 16:45:55 +0000 2021","id":1354108315647664128,"id_str":"1354108315647664128","text":"RT - @FallonTonight: \ud83c\udfb8 Battle of the Instant Songwriters \ud83c\udfb8\n\nNext - up: \u201cWedgie In My Ski Pants\u201d \ud83c\udfbf\n\n#FallonTonight https:\/\/t.co\/1ooNpRRFyu","truncated":false,"entities":{"hashtags":[{"text":"FallonTonight","indices":[95,109]}],"symbols":[],"user_mentions":[{"screen_name":"FallonTonight","name":"The - Tonight Show","id":19777398,"id_str":"19777398","indices":[3,17]}],"urls":[],"media":[{"id":1353916127286599680,"id_str":"1353916127286599680","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","url":"https:\/\/t.co\/1ooNpRRFyu","display_url":"pic.twitter.com\/1ooNpRRFyu","expanded_url":"https:\/\/twitter.com\/FallonTonight\/status\/1353929729825525760\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1353929729825525760,"source_status_id_str":"1353929729825525760","source_user_id":19777398,"source_user_id_str":"19777398"}]},"extended_entities":{"media":[{"id":1353916127286599680,"id_str":"1353916127286599680","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","url":"https:\/\/t.co\/1ooNpRRFyu","display_url":"pic.twitter.com\/1ooNpRRFyu","expanded_url":"https:\/\/twitter.com\/FallonTonight\/status\/1353929729825525760\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1353929729825525760,"source_status_id_str":"1353929729825525760","source_user_id":19777398,"source_user_id_str":"19777398","video_info":{"aspect_ratio":[16,9],"duration_millis":69870,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/1280x720\/yyu-YLvZPh79rwiq.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/480x270\/h_ffZm00nHUkPYDJ.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/640x360\/mJy2NY1VktnqHx_V.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/pl\/joO5Epl7hThskA4q.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 26 04:56:17 +0000 2021","id":1353929729825525760,"id_str":"1353929729825525760","text":"\ud83c\udfb8 - Battle of the Instant Songwriters \ud83c\udfb8\n\nNext up: \u201cWedgie In - My Ski Pants\u201d \ud83c\udfbf\n\n#FallonTonight https:\/\/t.co\/1ooNpRRFyu","truncated":false,"entities":{"hashtags":[{"text":"FallonTonight","indices":[76,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1353916127286599680,"id_str":"1353916127286599680","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","url":"https:\/\/t.co\/1ooNpRRFyu","display_url":"pic.twitter.com\/1ooNpRRFyu","expanded_url":"https:\/\/twitter.com\/FallonTonight\/status\/1353929729825525760\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1353916127286599680,"id_str":"1353916127286599680","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsoWTxYXMAEyWxb.jpg","url":"https:\/\/t.co\/1ooNpRRFyu","display_url":"pic.twitter.com\/1ooNpRRFyu","expanded_url":"https:\/\/twitter.com\/FallonTonight\/status\/1353929729825525760\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":69870,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/1280x720\/yyu-YLvZPh79rwiq.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/480x270\/h_ffZm00nHUkPYDJ.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/vid\/640x360\/mJy2NY1VktnqHx_V.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1353916127286599680\/pl\/joO5Epl7hThskA4q.m3u8?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":294,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/673207210369945600\/-N5DBCNk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/673207210369945600\/-N5DBCNk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37916780,"id_str":"37916780","name":"\ud83c\udf0a - Dawn of a New Day (Grumple Stiltskin), MA \ud83c\udf0a","screen_name":"CliosGhost","location":"Alabama, - USA","description":"Internet junkie, science geek, writer, music aficionado, - humanist, bright blue dot. #ALDems #BLM #BidenWon #Vaccinated","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":796,"friends_count":2357,"listed_count":8,"created_at":"Tue - May 05 12:53:29 +0000 2009","favourites_count":23725,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10940,"lang":null,"status":{"created_at":"Fri - Mar 25 18:09:48 +0000 2022","id":1507419495820034049,"id_str":"1507419495820034049","text":"Expel - #ClarenceThomas from #SCOTUS. He will never be able to shake the stench of - corruption because he constantly wallows in it.","truncated":false,"entities":{"hashtags":[{"text":"ClarenceThomas","indices":[6,21]},{"text":"SCOTUS","indices":[27,34]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1413147567467073540\/bd_naj6I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1413147567467073540\/bd_naj6I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37916780\/1387762621","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":571261759,"id_str":"571261759","name":"Ebi.com","screen_name":"AbekeEbigberi","location":"Port - Harcourt,Lagos","description":"Personal Exercise Trainer and Gym Instructor.Physical - Fitness & Wellness is the aim.and living a life free from hypo kinetics diseases","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":1288,"listed_count":3,"created_at":"Fri - May 04 23:49:13 +0000 2012","favourites_count":556,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":926,"lang":null,"status":{"created_at":"Tue - Mar 15 20:07:28 +0000 2022","id":1503825225661698059,"id_str":"1503825225661698059","text":"Very - funny \ud83e\udd23\ud83e\udd23 https:\/\/t.co\/UCjoqLTpzh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UCjoqLTpzh","expanded_url":"https:\/\/twitter.com\/GodGrace8\/status\/1503797805344862208","display_url":"twitter.com\/GodGrace8\/stat\u2026","indices":[14,37]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503797805344862208,"quoted_status_id_str":"1503797805344862208","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000451758169\/f144fa94af69c4279c5be00a8bc7ebf7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000451758169\/f144fa94af69c4279c5be00a8bc7ebf7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571261759\/1443508096","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4235404450,"id_str":"4235404450","name":"andy - zlotnick","screen_name":"ZlotnickAndy","location":"New York, NY","description":"New - Yorker, Father, Husband, Real Estate Guy Advocating here for Better Fan Safety - at MLB Ballparks","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":2325,"listed_count":3,"created_at":"Fri - Nov 20 15:14:16 +0000 2015","favourites_count":5781,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2122,"lang":null,"status":{"created_at":"Sat - Mar 26 03:46:57 +0000 2022","id":1507564736757518338,"id_str":"1507564736757518338","text":"Yankees'' - Rachel Balkovec posts accident photo (via @AdamWeinrib) https:\/\/t.co\/ZAm7xNNFw7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamWeinrib","name":"Adam - Weinrib","id":35963828,"id_str":"35963828","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/ZAm7xNNFw7","expanded_url":"https:\/\/yanksgoyard.com\/2022\/03\/25\/yankees-rachel-balkovec-foul-ball-accident-photo\/","display_url":"yanksgoyard.com\/2022\/03\/25\/yan\u2026","indices":[65,88]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/732688056994652160\/ZCwg97zf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/732688056994652160\/ZCwg97zf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246022207983230978,"id_str":"1246022207983230978","name":"Jane - Holland","screen_name":"janehollandx","location":"Cork, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":167,"listed_count":0,"created_at":"Fri - Apr 03 10:30:41 +0000 2020","favourites_count":672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"status":{"created_at":"Tue - Feb 15 17:50:54 +0000 2022","id":1493643999801843715,"id_str":"1493643999801843715","text":"RT - @FergusMaSuibhne: This is my neighbor Pat and his dog Skippy.\nSkippy was - born in 1996! Yes 1996. https:\/\/t.co\/ga06AncoFS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FergusMaSuibhne","name":"Fergus - Sweeney","id":4868523496,"id_str":"4868523496","indices":[3,19]}],"urls":[],"media":[{"id":1493193287490060293,"id_str":"1493193287490060293","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","url":"https:\/\/t.co\/ga06AncoFS","display_url":"pic.twitter.com\/ga06AncoFS","expanded_url":"https:\/\/twitter.com\/FergusMaSuibhne\/status\/1493193289943633921\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":448,"h":960,"resize":"fit"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"}},"source_status_id":1493193289943633921,"source_status_id_str":"1493193289943633921","source_user_id":4868523496,"source_user_id_str":"4868523496"}]},"extended_entities":{"media":[{"id":1493193287490060293,"id_str":"1493193287490060293","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","url":"https:\/\/t.co\/ga06AncoFS","display_url":"pic.twitter.com\/ga06AncoFS","expanded_url":"https:\/\/twitter.com\/FergusMaSuibhne\/status\/1493193289943633921\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":448,"h":960,"resize":"fit"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"}},"source_status_id":1493193289943633921,"source_status_id_str":"1493193289943633921","source_user_id":4868523496,"source_user_id_str":"4868523496"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 14 11:59:57 +0000 2022","id":1493193289943633921,"id_str":"1493193289943633921","text":"This - is my neighbor Pat and his dog Skippy.\nSkippy was born in 1996! Yes 1996. - https:\/\/t.co\/ga06AncoFS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1493193287490060293,"id_str":"1493193287490060293","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","url":"https:\/\/t.co\/ga06AncoFS","display_url":"pic.twitter.com\/ga06AncoFS","expanded_url":"https:\/\/twitter.com\/FergusMaSuibhne\/status\/1493193289943633921\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":448,"h":960,"resize":"fit"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1493193287490060293,"id_str":"1493193287490060293","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLjjYjnXwAU3iQX.jpg","url":"https:\/\/t.co\/ga06AncoFS","display_url":"pic.twitter.com\/ga06AncoFS","expanded_url":"https:\/\/twitter.com\/FergusMaSuibhne\/status\/1493193289943633921\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":448,"h":960,"resize":"fit"},"small":{"w":317,"h":680,"resize":"fit"},"medium":{"w":448,"h":960,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":352,"favorite_count":13015,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":352,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246023522012377089\/wvEd21UD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246023522012377089\/wvEd21UD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1246022207983230978\/1585910921","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1018868225772269568,"id_str":"1018868225772269568","name":"Fatima - zahra.Oulhaj","screen_name":"FzOulhaj12","location":"somewhere in this plant","description":"Old - soul good spirit\ud83d\ude43","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":3068,"listed_count":0,"created_at":"Mon - Jul 16 14:41:29 +0000 2018","favourites_count":2643,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"status":{"created_at":"Thu - Mar 24 21:23:03 +0000 2022","id":1507105740628111361,"id_str":"1507105740628111361","text":"@WimShakespeare - \u0627\u0644\u0634\u062f\u0629","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WimShakespeare","name":"\u0648\u0644\u064a\u0645 - \u0634\u0643\u0633\u0628\u064a\u0631","id":2335644942,"id_str":"2335644942","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507035880518828032,"in_reply_to_status_id_str":"1507035880518828032","in_reply_to_user_id":2335644942,"in_reply_to_user_id_str":"2335644942","in_reply_to_screen_name":"WimShakespeare","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491693382833479682\/9TQEu9Y9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491693382833479682\/9TQEu9Y9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1018868225772269568\/1587518706","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3610223477,"id_str":"3610223477","name":"Mitch - hustle","screen_name":"MSialubala","location":"Kitwe Copperbelt Zambia","description":"Father - of 2\/Structural Technician\/Contractor\/assist pastor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":283,"listed_count":0,"created_at":"Thu - Sep 10 14:40:39 +0000 2015","favourites_count":1570,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1085,"lang":null,"status":{"created_at":"Fri - Nov 26 11:12:31 +0000 2021","id":1464190325451374596,"id_str":"1464190325451374596","text":"Pres - HH: My fav drink is apple juice.\n\nDiamond TV: Pres HH has declared war ag - coca~cola,fanta,fruiticana & mojo.\u2026 https:\/\/t.co\/s2YfP4LjDf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s2YfP4LjDf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1464190325451374596","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[119,142]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464157137509273605\/0752J2wm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464157137509273605\/0752J2wm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3610223477\/1637917770","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2987288492,"id_str":"2987288492","name":"FatherofCAL","screen_name":"FatherofCAL","location":"Pembroke - Pines, FL","description":"Long suffering:\nMiami Dolphins, Miami Hurricanes, - Miami Marlins fan. \nPatient: Inter Miami fan.\nProud: Miami Heat & Florida - Panthers fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":465,"listed_count":1,"created_at":"Sat - Jan 17 16:38:33 +0000 2015","favourites_count":686,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5342,"lang":null,"status":{"created_at":"Thu - Mar 24 03:43:13 +0000 2022","id":1506839022735437826,"id_str":"1506839022735437826","text":"@ArmandoSalguero - Oye! Sopla moco....para ya por favor. https:\/\/t.co\/cYg3OgpyQH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArmandoSalguero","name":"Armando - Salguero","id":46939857,"id_str":"46939857","indices":[0,16]}],"urls":[],"media":[{"id":1506839020713697282,"id_str":"1506839020713697282","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOleGxNWYAI3UhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOleGxNWYAI3UhE.jpg","url":"https:\/\/t.co\/cYg3OgpyQH","display_url":"pic.twitter.com\/cYg3OgpyQH","expanded_url":"https:\/\/twitter.com\/FatherofCAL\/status\/1506839022735437826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":612,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506839020713697282,"id_str":"1506839020713697282","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOleGxNWYAI3UhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOleGxNWYAI3UhE.jpg","url":"https:\/\/t.co\/cYg3OgpyQH","display_url":"pic.twitter.com\/cYg3OgpyQH","expanded_url":"https:\/\/twitter.com\/FatherofCAL\/status\/1506839022735437826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":612,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506658882290130946,"in_reply_to_status_id_str":"1506658882290130946","in_reply_to_user_id":46939857,"in_reply_to_user_id_str":"46939857","in_reply_to_screen_name":"ArmandoSalguero","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275321913213169665\/7l8VtU0c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275321913213169665\/7l8VtU0c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987288492\/1550583030","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2988293243,"id_str":"2988293243","name":"Ray - Dunn","screen_name":"ray_eray48","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1388,"listed_count":0,"created_at":"Tue - Jan 20 23:29:20 +0000 2015","favourites_count":2241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":279,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42561847,"id_str":"42561847","name":"Ilham - Akhsanu Ridlo","screen_name":"iaridlo","location":"Munich, Bavaria","description":"I''m - a public health. Doktorand @ifkw_lmu @LMU_Muenchen. Research on #healthpolicy, - #journalism, and #sciencecommunication. -Tweets are just personal opinions.","url":"https:\/\/t.co\/LKgLh3rPzy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LKgLh3rPzy","expanded_url":"https:\/\/linkr.bio\/iaridlo","display_url":"linkr.bio\/iaridlo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4743,"friends_count":3966,"listed_count":19,"created_at":"Tue - May 26 04:11:36 +0000 2009","favourites_count":8876,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33487,"lang":null,"status":{"created_at":"Sat - Mar 26 10:34:20 +0000 2022","id":1507667261636726785,"id_str":"1507667261636726785","text":"@ditanindyak - O gitu... https:\/\/t.co\/loJzJKqceo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ditanindyak","name":"Dita","id":423215784,"id_str":"423215784","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/loJzJKqceo","expanded_url":"https:\/\/twitter.com\/kurawa\/status\/1507576360343990279","display_url":"twitter.com\/kurawa\/status\/\u2026","indices":[23,46]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507664579840589831,"in_reply_to_status_id_str":"1507664579840589831","in_reply_to_user_id":423215784,"in_reply_to_user_id_str":"423215784","in_reply_to_screen_name":"ditanindyak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507576360343990279,"quoted_status_id_str":"1507576360343990279","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506980176839720965\/warGf0n9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506980176839720965\/warGf0n9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42561847\/1648281434","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F0F0","profile_text_color":"B30211","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2824668828,"id_str":"2824668828","name":"Ada - Wong","screen_name":"WongAdawong282","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":34,"listed_count":0,"created_at":"Sun - Sep 21 17:40:56 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Aug 17 03:35:39 +0000 2017","id":898025505399554048,"id_str":"898025505399554048","text":"How - to follow someone","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eTwitter SMS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307743036122824706\/67SSXjYS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307743036122824706\/67SSXjYS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1222641677032214528,"id_str":"1222641677032214528","name":"Joan - S Mic\u00f3 Barber\u00e0","screen_name":"mico_barbera","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":448,"friends_count":1735,"listed_count":0,"created_at":"Wed - Jan 29 22:04:55 +0000 2020","favourites_count":9446,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2471,"lang":null,"status":{"created_at":"Sat - Mar 26 04:15:06 +0000 2022","id":1507571822052745216,"id_str":"1507571822052745216","text":"RT - @toni_molla: Els amics de @bromera han recuperat l\u2019entrevista, publicada - al seu dia a la revista L\u2019illa de la mateixa editorial, que va\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"toni_molla","name":"Toni - Moll\u00e0","id":1621394504,"id_str":"1621394504","indices":[3,14]},{"screen_name":"bromera","name":"Bromera","id":41825913,"id_str":"41825913","indices":[29,37]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:42:37 +0000 2022","id":1507050265727442958,"id_str":"1507050265727442958","text":"Els - amics de @bromera han recuperat l\u2019entrevista, publicada al seu dia a - la revista L\u2019illa de la mateixa editorial,\u2026 https:\/\/t.co\/1c3VFwweOS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bromera","name":"Bromera","id":41825913,"id_str":"41825913","indices":[13,21]}],"urls":[{"url":"https:\/\/t.co\/1c3VFwweOS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507050265727442958","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":31,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318738678559199239\/8Iu-EPGY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318738678559199239\/8Iu-EPGY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231754497162174464,"id_str":"1231754497162174464","name":"Frito - H\u00c9RARD","screen_name":"herard_frito","location":"","description":"God; - Follower of Jesus;Father;passionate about the knowledge; Love teaching.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":1689,"listed_count":0,"created_at":"Mon - Feb 24 01:35:44 +0000 2020","favourites_count":1412,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1639,"lang":null,"status":{"created_at":"Sat - Mar 26 02:21:30 +0000 2022","id":1507543233043304450,"id_str":"1507543233043304450","text":"Boom - https:\/\/t.co\/TTvgYy7OAL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TTvgYy7OAL","expanded_url":"https:\/\/twitter.com\/MagazineCapital\/status\/1507536641157738502","display_url":"twitter.com\/MagazineCapita\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507536641157738502,"quoted_status_id_str":"1507536641157738502","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493595804434579457\/eDud5mvq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493595804434579457\/eDud5mvq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1231754497162174464\/1592577570","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4083120917,"id_str":"4083120917","name":"Jack - Hickerson \ud83c\uddfa\ud83c\uddf8 \ud83c\uddfa\ud83c\udde6","screen_name":"JackHickerson_","location":"Pittsburgh, - PA","description":"Southerner and Pittsburgher with a love for Baltimore. - \nLamb for Senate \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":2138,"listed_count":0,"created_at":"Sat - Oct 31 14:36:45 +0000 2015","favourites_count":66823,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1265,"lang":null,"status":{"created_at":"Wed - Mar 23 14:48:27 +0000 2022","id":1506644047804477442,"id_str":"1506644047804477442","text":"RT - @DrLeanaWen: For those who don\u2019t agree that the vaccinated can return - to pre-pandemic normal, I ask: What should we all do? Perpetual ma\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrLeanaWen","name":"Leana - Wen, M.D.","id":605153786,"id_str":"605153786","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 01:13:27 +0000 2022","id":1506438947366449156,"id_str":"1506438947366449156","text":"For - those who don\u2019t agree that the vaccinated can return to pre-pandemic - normal, I ask: What should we all do? Perp\u2026 https:\/\/t.co\/NNNix1UJD3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NNNix1UJD3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506438947366449156","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3545,"favorite_count":31422,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3545,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497565035769610243\/blLC4V37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497565035769610243\/blLC4V37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4083120917\/1645926523","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1569134594,"id_str":"1569134594","name":"majortom","screen_name":"lynch559","location":"Ireland","description":"Consequences - David ..... its the litte things","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":1114,"listed_count":0,"created_at":"Thu - Jul 04 21:39:15 +0000 2013","favourites_count":3201,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1271,"lang":null,"status":{"created_at":"Mon - Mar 21 20:23:17 +0000 2022","id":1506003533862260742,"id_str":"1506003533862260742","text":"RT - @AuschwitzMuseum: Boris Romantschenko survived four German Nazi concentration - camps: #Buchenwald, #Peenem\u00fcnde, #Dora and #BergenBelsen.\u2026","truncated":false,"entities":{"hashtags":[{"text":"Buchenwald","indices":[88,99]},{"text":"Peenem\u00fcnde","indices":[101,112]},{"text":"Dora","indices":[114,119]},{"text":"BergenBelsen","indices":[124,137]}],"symbols":[],"user_mentions":[{"screen_name":"AuschwitzMuseum","name":"Auschwitz - Memorial","id":586291040,"id_str":"586291040","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:58:11 +0000 2022","id":1505936820827312133,"id_str":"1505936820827312133","text":"Boris - Romantschenko survived four German Nazi concentration camps: #Buchenwald, - #Peenem\u00fcnde, #Dora and\u2026 https:\/\/t.co\/etQvO0lCpH","truncated":true,"entities":{"hashtags":[{"text":"Buchenwald","indices":[67,78]},{"text":"Peenem\u00fcnde","indices":[80,91]},{"text":"Dora","indices":[93,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/etQvO0lCpH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505936820827312133","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6340,"favorite_count":16975,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6340,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443130159410860034\/tzsFs-r0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443130159410860034\/tzsFs-r0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1569134594\/1630584030","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":996117611472740363,"id_str":"996117611472740363","name":"La - Belva","screen_name":"GokboruTrading","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1376,"listed_count":0,"created_at":"Mon - May 14 19:58:40 +0000 2018","favourites_count":802,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2957470554,"id_str":"2957470554","name":"ToriBurke","screen_name":"orangetoriburke","location":"","description":"Immigrants'' - Daughter * Rocking A Small Business * Empty Nest * Delicate Flower * 5-Foot, - Feral-Inches Tall * Blissfully & Loyally Married * No DM\u2019s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1280,"friends_count":1290,"listed_count":2,"created_at":"Sat - Jan 03 16:47:15 +0000 2015","favourites_count":10839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1789,"lang":null,"status":{"created_at":"Tue - Mar 08 17:13:06 +0000 2022","id":1501244629638914051,"id_str":"1501244629638914051","text":"@nathaliejacoby1 - \ud83c\uddfa\ud83c\uddf8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501206218072895501,"in_reply_to_status_id_str":"1501206218072895501","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551446885567717376\/2BfxfDL9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551446885567717376\/2BfxfDL9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957470554\/1420309384","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227737291,"id_str":"227737291","name":"Suleiman - Issack \ud83c\uddf8\ud83c\uddf4\ud83c\uddf0\ud83c\uddea\ud83c\uddf6\ud83c\udde6","screen_name":"souleymanne","location":"North - Eastern, Kenya","description":"Humanitarian| Politic & Governance| Advocate - for human right, Civil, Social Justice| Peace building practitioner| Lover - of humanity| Aspiring writer| Analyst|","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":753,"friends_count":2846,"listed_count":2,"created_at":"Fri - Dec 17 17:27:30 +0000 2010","favourites_count":5058,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5515,"lang":null,"status":{"created_at":"Thu - Mar 24 17:32:53 +0000 2022","id":1507047814894915592,"id_str":"1507047814894915592","text":"RT - @hooyoanisa: Justice for our beloved sisters. May Allah grant them jannah, - Ameen. Gone but never forgotten. They were all advocates for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hooyoanisa","name":"Anisa - Haji","id":224646999,"id_str":"224646999","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:50:45 +0000 2022","id":1507022113156341766,"id_str":"1507022113156341766","text":"Justice - for our beloved sisters. May Allah grant them jannah, Ameen. Gone but never - forgotten. They were all advoca\u2026 https:\/\/t.co\/JXasyJkW6O","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JXasyJkW6O","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507022113156341766","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":377,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":89,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476917631089324037\/hCx_gIL5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476917631089324037\/hCx_gIL5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227737291\/1619208085","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":354264203,"id_str":"354264203","name":"H - K Cross","screen_name":"hkc22","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":80,"listed_count":0,"created_at":"Sat - Aug 13 12:22:34 +0000 2011","favourites_count":529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":93,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/813537506566213633\/uDw8Elkf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/813537506566213633\/uDw8Elkf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2730161685,"id_str":"2730161685","name":"Joseph - Moise","screen_name":"hjoseph4you","location":"spain","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":983,"friends_count":1582,"listed_count":3,"created_at":"Thu - Jul 31 20:32:38 +0000 2014","favourites_count":32923,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32799,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1100158882675068931\/HgjB-uFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1100158882675068931\/HgjB-uFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2730161685\/1555177775","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":551500277,"id_str":"551500277","name":"edem - yevu","screen_name":"Colombe2020","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":437,"listed_count":0,"created_at":"Thu - Apr 12 02:26:45 +0000 2012","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Tue - Mar 22 11:07:47 +0000 2022","id":1506226125403533317,"id_str":"1506226125403533317","text":"https:\/\/t.co\/ajjBRqcnLv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ajjBRqcnLv","expanded_url":"https:\/\/flowcv.io\/tryflowcv","display_url":"flowcv.io\/tryflowcv","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":68982821,"id_str":"68982821","name":"Entweethwetse","screen_name":"Doomszt","location":"Pretoria","description":"RICA - AGENT, VodaPay POS sales agent, MARKETER,Accounting, Tree planter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":907,"friends_count":4934,"listed_count":1,"created_at":"Wed - Aug 26 13:57:21 +0000 2009","favourites_count":687,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1240,"lang":null,"status":{"created_at":"Sat - Oct 16 01:21:03 +0000 2021","id":1449183575358820360,"id_str":"1449183575358820360","text":"0765575651 - https:\/\/t.co\/SYghgiiWya","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1449183538088120320,"id_str":"1449183538088120320","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FByIv_IWEAAwiaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FByIv_IWEAAwiaK.jpg","url":"https:\/\/t.co\/SYghgiiWya","display_url":"pic.twitter.com\/SYghgiiWya","expanded_url":"https:\/\/twitter.com\/Doomszt\/status\/1449183575358820360\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":718,"resize":"fit"},"small":{"w":680,"h":678,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1449183538088120320,"id_str":"1449183538088120320","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FByIv_IWEAAwiaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FByIv_IWEAAwiaK.jpg","url":"https:\/\/t.co\/SYghgiiWya","display_url":"pic.twitter.com\/SYghgiiWya","expanded_url":"https:\/\/twitter.com\/Doomszt\/status\/1449183575358820360\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":718,"resize":"fit"},"small":{"w":680,"h":678,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/382482079\/Picture_072_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/382482079\/Picture_072_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68982821\/1603652884","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":758355981109714946,"id_str":"758355981109714946","name":"Akinkuowodamilola","screen_name":"Akinkuowodamil1","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":328,"friends_count":2382,"listed_count":1,"created_at":"Wed - Jul 27 17:38:50 +0000 2016","favourites_count":938,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":105,"lang":null,"status":{"created_at":"Tue - Jul 20 03:21:13 +0000 2021","id":1417323685409697800,"id_str":"1417323685409697800","text":"@EricFantona - Scholastic","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EricFantona","name":"You - can call me Matt","id":1394073107170799616,"id_str":"1394073107170799616","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1417057699230068740,"in_reply_to_status_id_str":"1417057699230068740","in_reply_to_user_id":1394073107170799616,"in_reply_to_user_id_str":"1394073107170799616","in_reply_to_screen_name":"EricFantona","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1173288890515558405\/bcWnmzNz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1173288890515558405\/bcWnmzNz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1138343430029864965,"id_str":"1138343430029864965","name":"booovershot","screen_name":"booovershot","location":"Bitch - Lake, Idaho","description":"Transmitting from an un-doxxable location. Opinions - are my own and infallible.","url":"https:\/\/t.co\/Y9kgUyJYO5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y9kgUyJYO5","expanded_url":"https:\/\/fairfight.com\/","display_url":"fairfight.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":692,"listed_count":0,"created_at":"Tue - Jun 11 07:13:17 +0000 2019","favourites_count":14579,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1290,"lang":null,"status":{"created_at":"Mon - Mar 21 23:24:33 +0000 2022","id":1506049150802141185,"id_str":"1506049150802141185","text":"@RubinReport - @Dani_Di_Placido @Forbes They\u2019re never going to pick you man. If the - right had their way, the rights o\u2026 https:\/\/t.co\/SX6MMWL54w","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RubinReport","name":"Dave - Rubin","id":18379614,"id_str":"18379614","indices":[0,12]},{"screen_name":"Dani_Di_Placido","name":"Dani - Di Placido","id":574434260,"id_str":"574434260","indices":[13,29]},{"screen_name":"Forbes","name":"Forbes","id":91478624,"id_str":"91478624","indices":[30,37]}],"urls":[{"url":"https:\/\/t.co\/SX6MMWL54w","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506049150802141185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506044625676640259,"in_reply_to_status_id_str":"1506044625676640259","in_reply_to_user_id":18379614,"in_reply_to_user_id_str":"18379614","in_reply_to_screen_name":"RubinReport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497058197215006726\/NWqNeGlX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497058197215006726\/NWqNeGlX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1138343430029864965\/1607994581","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":576657361,"id_str":"576657361","name":"Una - Ponder","screen_name":"UnaPonder","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":311,"listed_count":0,"created_at":"Thu - May 10 23:17:11 +0000 2012","favourites_count":295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Wed - Jan 13 01:04:44 +0000 2021","id":1349160416677658630,"id_str":"1349160416677658630","text":"@Jim_Jordan - Little Jimmy if YOU wanted unity you would tell all America that the elections - were fair and Biden won.\u2026 https:\/\/t.co\/YKiWUrAvlr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/YKiWUrAvlr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1349160416677658630","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1349105202872332288,"in_reply_to_status_id_str":"1349105202872332288","in_reply_to_user_id":18166778,"in_reply_to_user_id_str":"18166778","in_reply_to_screen_name":"Jim_Jordan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291124224401211393,"id_str":"1291124224401211393","name":"Jeff - Reynolds","screen_name":"JeffRey86538249","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":652,"listed_count":0,"created_at":"Wed - Aug 05 21:30:05 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Tue - Sep 07 01:59:37 +0000 2021","id":1435060155792695300,"id_str":"1435060155792695300","text":"@DonaldJTrumpJr - Mr Pot meet Mr Kettle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1434881283532918784,"in_reply_to_status_id_str":"1434881283532918784","in_reply_to_user_id":39344374,"in_reply_to_user_id_str":"39344374","in_reply_to_screen_name":"DonaldJTrumpJr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3084930934,"id_str":"3084930934","name":"\ud83e\udde2","screen_name":"RoryGalpin","location":"London","description":"\u02e2\u1d49\u1d9c\u1d58\u02b3\u1da6\u1d57\u02b8 - \u1d49\u207f\u1d4d\u1da6\u207f\u1d49\u1d49\u02b3","url":"https:\/\/t.co\/VIHa03cVej","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VIHa03cVej","expanded_url":"http:\/\/rorygalpin.github.io","display_url":"rorygalpin.github.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":36,"friends_count":1668,"listed_count":0,"created_at":"Tue - Mar 10 21:16:17 +0000 2015","favourites_count":16371,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377346044145631236\/cUeM5tDo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377346044145631236\/cUeM5tDo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3084930934\/1555531911","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292724646354329600,"id_str":"1292724646354329600","name":"Prosper - Kashaka","screen_name":"ProsperKashaka","location":"","description":"Happy - always","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":94,"listed_count":0,"created_at":"Mon - Aug 10 07:29:50 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292727304855130112\/1lVLXSHo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292727304855130112\/1lVLXSHo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":836889615877476357,"id_str":"836889615877476357","name":"Arash - kamikaze","screen_name":"arash_kamikaze","location":"\u0639\u062f\u0645 \u0642\u0637\u0639\u06cc\u062a","description":"\u0647\u0631 - \u0637\u0648\u0631 \u0631\u0627\u062d\u062a\u06cc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":640,"friends_count":3564,"listed_count":5,"created_at":"Wed - Mar 01 10:43:27 +0000 2017","favourites_count":15965,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4700,"lang":null,"status":{"created_at":"Fri - Mar 18 20:14:12 +0000 2022","id":1504914086127091718,"id_str":"1504914086127091718","text":"@farzad622004 - \u062f\u0627\u062f\u0634 \u06cc\u0627\u062a\u0627\u0642\u0627\u0646 \u0645\u06cc\u0632\u0646\u06cc\u0627","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"farzad622004","name":"Farzad - DarvishQadima","id":813832809248915456,"id_str":"813832809248915456","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504814571281793027,"in_reply_to_status_id_str":"1504814571281793027","in_reply_to_user_id":813832809248915456,"in_reply_to_user_id_str":"813832809248915456","in_reply_to_screen_name":"farzad622004","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1475580767099101196\/bZEwsOFq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1475580767099101196\/bZEwsOFq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836889615877476357\/1520159501","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15797568,"id_str":"15797568","name":"Job","screen_name":"jobbes86","location":"Netherlands","description":"IT - + Criminal Law + Crypto - All tweets are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":1522,"listed_count":0,"created_at":"Sun - Aug 10 12:41:41 +0000 2008","favourites_count":4117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4426,"lang":null,"status":{"created_at":"Fri - Mar 25 12:36:05 +0000 2022","id":1507335510636830723,"id_str":"1507335510636830723","text":"@drdunno - @Ketwaru4 Overleg maat uiteindelijk trekt een advocaat aan het kortste eind","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drdunno","name":"dr.dunno - | nu met TurboBooster\ud83d\udc89\ud83d\udc89\ud83d\udc89\ud83d\udc89#ikvaccineer","id":272909967,"id_str":"272909967","indices":[0,8]},{"screen_name":"Ketwaru4","name":"Robbert - Ketwaru","id":2442706642,"id_str":"2442706642","indices":[9,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507257410267795481,"in_reply_to_status_id_str":"1507257410267795481","in_reply_to_user_id":272909967,"in_reply_to_user_id_str":"272909967","in_reply_to_screen_name":"drdunno","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464646860333058\/MtBT-cbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464646860333058\/MtBT-cbK_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16816871,"id_str":"16816871","name":"El - Mas Guey","screen_name":"Christ420","location":"Los Angeles","description":"Fully - Clothed Nudist. He\/Him. Queer Pansexual.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":1708,"listed_count":0,"created_at":"Fri - Oct 17 00:16:47 +0000 2008","favourites_count":5361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1771,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/144315473\/Photo_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/144315473\/Photo_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16816871\/1521074823","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":12513152,"id_str":"12513152","name":"cipollino76","screen_name":"cipollino76","location":"Bari","description":"","url":"https:\/\/t.co\/0sxyL3wWom","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0sxyL3wWom","expanded_url":"https:\/\/cipollino76.wordpress.com","display_url":"cipollino76.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":1043,"listed_count":3,"created_at":"Mon - Jan 21 22:51:33 +0000 2008","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23486,"lang":null,"status":{"created_at":"Sun - Apr 25 08:22:58 +0000 2021","id":1386234264262483971,"id_str":"1386234264262483971","text":"Ecco - quel che resta di una fabbrica fiore all''occhiello della zona industriale - barese: https:\/\/t.co\/orpwcZPLFV\nArti\u2026 https:\/\/t.co\/vfCQxxSa6l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/orpwcZPLFV","expanded_url":"https:\/\/www.lagazzettadelmezzogiorno.it\/gallery\/bari\/1295961\/bari-viaggio-nella-fabbrica-ex-om-carelli-l-esclusivo-reportage.html","display_url":"lagazzettadelmezzogiorno.it\/gallery\/bari\/1\u2026","indices":[87,110]},{"url":"https:\/\/t.co\/vfCQxxSa6l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1386234264262483971","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/45378152\/compressione_immagine_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/45378152\/compressione_immagine_normal.JPG","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4232591302,"id_str":"4232591302","name":"Dr. - Kenn Amagon","screen_name":"Kenn4Christ","location":"","description":"Child - of God; Teacher & Researcher; Husband & Grateful Father","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":1020,"listed_count":1,"created_at":"Fri - Nov 20 06:46:44 +0000 2015","favourites_count":2054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":349,"lang":null,"status":{"created_at":"Mon - Mar 07 19:25:07 +0000 2022","id":1500915467178946568,"id_str":"1500915467178946568","text":"RT - @AirtelNigeria: \ud835\udc79\ud835\udc6c\ud835\udc7b\ud835\udc7e\ud835\udc6c\ud835\udc6c\ud835\udc7b - this tweet and have your profile picture added to our #AirtelBreaksBiases - mosaic \ud83d\uddbc as your pledge to #BreakTheBi\u2026","truncated":false,"entities":{"hashtags":[{"text":"AirtelBreaksBiases","indices":[81,100]}],"symbols":[],"user_mentions":[{"screen_name":"AirtelNigeria","name":"Airtel - Nigeria","id":342080796,"id_str":"342080796","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 07 16:40:02 +0000 2022","id":1500873919875723266,"id_str":"1500873919875723266","text":"\ud835\udc79\ud835\udc6c\ud835\udc7b\ud835\udc7e\ud835\udc6c\ud835\udc6c\ud835\udc7b - this tweet and have your profile picture added to our #AirtelBreaksBiases - mosaic \ud83d\uddbc as your pledge to\u2026 https:\/\/t.co\/2ABDfIxcRY","truncated":true,"entities":{"hashtags":[{"text":"AirtelBreaksBiases","indices":[62,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2ABDfIxcRY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500873919875723266","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/www.bluerobot.com\/\" rel=\"nofollow\"\u003eBlue Robot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2997,"favorite_count":5933,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2997,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332985627684589568\/ddfm91xU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332985627684589568\/ddfm91xU_normal.jpg","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":809211733831274497,"id_str":"809211733831274497","name":"Paula - Scia \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","screen_name":"scia_p","location":"United - States","description":"\"If we don''t protect voting rights now, we''re not - going to be able to protect any rights later.\" - Marc Elias","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2176,"friends_count":2965,"listed_count":2,"created_at":"Thu - Dec 15 01:41:26 +0000 2016","favourites_count":57029,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59081,"lang":null,"status":{"created_at":"Sat - Mar 26 01:57:06 +0000 2022","id":1507537092355792904,"id_str":"1507537092355792904","text":"RT - @RonFilipkowski: Republican lawmakers in several states are considering statutes - to make it illegal to film police while they are on dut\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonFilipkowski","name":"Ron - Filipkowski \ud83c\uddfa\ud83c\udde6","id":1298372735383605249,"id_str":"1298372735383605249","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:28:34 +0000 2022","id":1507469517152264198,"id_str":"1507469517152264198","text":"Republican - lawmakers in several states are considering statutes to make it illegal to - film police while they are on\u2026 https:\/\/t.co\/INhg7UWnfA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/INhg7UWnfA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507469517152264198","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":556,"favorite_count":965,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":556,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323852342077382658\/gZieDBBr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323852342077382658\/gZieDBBr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/809211733831274497\/1646775823","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22941670,"id_str":"22941670","name":"Reecie - Kincaid","screen_name":"reesay","location":"USA","description":"crafty creative","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":310,"listed_count":0,"created_at":"Thu - Mar 05 16:44:05 +0000 2009","favourites_count":4005,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":536,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1880236361\/Reecie_08_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1880236361\/Reecie_08_1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290581,"id_str":"1290581","name":"Brian - Rosner","screen_name":"brosner","location":"Denver, CO","description":"Dad. - Husband. Senior SWE \/ Infra @reddit. AvGeek. Flight simmer. He\/Him.","url":"https:\/\/t.co\/ZEsDkpX5UV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZEsDkpX5UV","expanded_url":"https:\/\/brosner.com","display_url":"brosner.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3193,"friends_count":242,"listed_count":259,"created_at":"Fri - Mar 16 14:42:39 +0000 2007","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6062,"lang":null,"status":{"created_at":"Wed - Feb 23 16:04:39 +0000 2022","id":1496516364797890563,"id_str":"1496516364797890563","text":"TIL - git switch","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D9D9D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1125135566859694080\/8uwe9uDu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1125135566859694080\/8uwe9uDu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1290581\/1633613555","profile_link_color":"5D6E8A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6C93AF","profile_text_color":"141414","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":436204162,"id_str":"436204162","name":"GEF - RUSHTON","screen_name":"GEF_GEF","location":"high valleyfield, scotland","description":"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f\ud83c\uddea\ud83c\uddfa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":742,"friends_count":1853,"listed_count":0,"created_at":"Tue - Dec 13 22:31:54 +0000 2011","favourites_count":1943,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1790,"lang":null,"status":{"created_at":"Fri - Mar 25 10:56:06 +0000 2022","id":1507310348793176067,"id_str":"1507310348793176067","text":"RT - @damian_from: 24 hours on, the undeniable truth about his response to the - Spring Statement is that @Keir_Starmer just doesn''t get it whe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"damian_from","name":"Damian - from Brighton","id":1001775960763588608,"id_str":"1001775960763588608","indices":[3,15]},{"screen_name":"Keir_Starmer","name":"Keir - Starmer","id":2425571623,"id_str":"2425571623","indices":[102,115]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:51:36 +0000 2022","id":1507309218298273793,"id_str":"1507309218298273793","text":"24 - hours on, the undeniable truth about his response to the Spring Statement - is that @Keir_Starmer just doesn''t get\u2026 https:\/\/t.co\/RWPVBafVf6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Keir_Starmer","name":"Keir - Starmer","id":2425571623,"id_str":"2425571623","indices":[85,98]}],"urls":[{"url":"https:\/\/t.co\/RWPVBafVf6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507309218298273793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506969397327499267,"quoted_status_id_str":"1506969397327499267","retweet_count":7,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506969397327499267,"quoted_status_id_str":"1506969397327499267","retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359963519987367944\/a7H1oQqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359963519987367944\/a7H1oQqt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436204162\/1600192797","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":572595891,"id_str":"572595891","name":"William - Slater \ud83c\uddfa\ud83c\udde6","screen_name":"wjslater","location":"Ballynahinch, - Northern Ireland","description":"sort of retired. #watch any football #gotoagame","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":1055,"listed_count":1,"created_at":"Sun - May 06 10:48:13 +0000 2012","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5316,"lang":null,"status":{"created_at":"Sat - Mar 26 10:19:46 +0000 2022","id":1507663592153309187,"id_str":"1507663592153309187","text":"@NornEye - @Kilsally @RishiSunak @MarosSefcovic @vonderleyen @davidmcallister @DanielFerrie - @valedealmeida Good old DUP walked us into it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NornEye","name":"Norn - Eye","id":816965415188447232,"id_str":"816965415188447232","indices":[0,8]},{"screen_name":"Kilsally","name":"Kilsally - (Alan Day)","id":17019081,"id_str":"17019081","indices":[9,18]},{"screen_name":"RishiSunak","name":"Rishi - Sunak","id":1168968080690749441,"id_str":"1168968080690749441","indices":[19,30]},{"screen_name":"MarosSefcovic","name":"Maro\u0161 - \u0160ef\u010dovi\u010d\ud83c\uddea\ud83c\uddfa","id":377976301,"id_str":"377976301","indices":[31,45]},{"screen_name":"vonderleyen","name":"Ursula - von der Leyen","id":1146329871418843136,"id_str":"1146329871418843136","indices":[46,58]},{"screen_name":"davidmcallister","name":"davidmcallister","id":17621447,"id_str":"17621447","indices":[59,75]},{"screen_name":"DanielFerrie","name":"Daniel - Ferrie \ud83c\uddea\ud83c\uddfa","id":991985010,"id_str":"991985010","indices":[76,89]},{"screen_name":"valedealmeida","name":"Vale - de Almeida","id":89780289,"id_str":"89780289","indices":[90,104]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507660627531153413,"in_reply_to_status_id_str":"1507660627531153413","in_reply_to_user_id":816965415188447232,"in_reply_to_user_id_str":"816965415188447232","in_reply_to_screen_name":"NornEye","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460395351957983239\/s2wH7K86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460395351957983239\/s2wH7K86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572595891\/1398974377","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215708886235107328,"id_str":"1215708886235107328","name":"Judy - Boian","screen_name":"JudyBoian","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":56,"listed_count":0,"created_at":"Fri - Jan 10 18:56:43 +0000 2020","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Mon - Apr 26 20:05:33 +0000 2021","id":1386773463587713024,"id_str":"1386773463587713024","text":"@RockiesZingers - OMG! Yes!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RockiesZingers","name":"RockiesZingers","id":2366425926,"id_str":"2366425926","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1386746348926537729,"in_reply_to_status_id_str":"1386746348926537729","in_reply_to_user_id":2366425926,"in_reply_to_user_id_str":"2366425926","in_reply_to_screen_name":"RockiesZingers","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312816402093531136,"id_str":"1312816402093531136","name":"nnamdi - Ihuoma","screen_name":"nnamdiIhuoma1","location":"","description":"ask me - and I will tell you","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":121,"listed_count":0,"created_at":"Sun - Oct 04 18:06:47 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Fri - Jan 29 08:37:28 +0000 2021","id":1355072557247041536,"id_str":"1355072557247041536","text":"@TheFrogKiller - @wizkidayo Davido will have one i soon i pary and believe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thefrogkiller","name":"Anthony - Not Joshua \ud83c\uddec\ud83c\udde7","id":2952653897,"id_str":"2952653897","indices":[0,14]},{"screen_name":"wizkidayo","name":"Wizkid","id":32660559,"id_str":"32660559","indices":[15,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1354803684589195276,"in_reply_to_status_id_str":"1354803684589195276","in_reply_to_user_id":2952653897,"in_reply_to_user_id_str":"2952653897","in_reply_to_screen_name":"thefrogkiller","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326554750515638274\/NWbinRok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326554750515638274\/NWbinRok_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":395256866,"id_str":"395256866","name":"Sue - The Jet","screen_name":"sueannjam","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":654,"listed_count":0,"created_at":"Fri - Oct 21 11:39:17 +0000 2011","favourites_count":3126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":285,"lang":null,"status":{"created_at":"Thu - Jul 15 20:04:49 +0000 2021","id":1415764307917299719,"id_str":"1415764307917299719","text":"@bresfilms41 - Wow!!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bresfilms41","name":"Breanna - McCann","id":870623466562760705,"id_str":"870623466562760705","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1415461407311728648,"in_reply_to_status_id_str":"1415461407311728648","in_reply_to_user_id":870623466562760705,"in_reply_to_user_id_str":"870623466562760705","in_reply_to_screen_name":"bresfilms41","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1108125260556181505\/_R57wNAM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108125260556181505\/_R57wNAM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1163484233790369792,"id_str":"1163484233790369792","name":"Realprince","screen_name":"Realpri77868064","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":499,"listed_count":0,"created_at":"Mon - Aug 19 16:14:21 +0000 2019","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Jun 05 15:45:54 +0000 2021","id":1401203635325968390,"id_str":"1401203635325968390","text":"Hello","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183615048805167104\/Z9MMalom_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183615048805167104\/Z9MMalom_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22662064,"id_str":"22662064","name":"enda - shiel","screen_name":"endashiel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":1072,"listed_count":2,"created_at":"Tue - Mar 03 19:14:48 +0000 2009","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":119,"lang":null,"status":{"created_at":"Thu - Feb 10 16:17:03 +0000 2022","id":1491808443274907648,"id_str":"1491808443274907648","text":"RT - @frank_oconnor: Seven homes for seven families in Galway rotting in a #HousingCrisis - \nTruly the #socialcontract is broken in #DerelictIr\u2026","truncated":false,"entities":{"hashtags":[{"text":"HousingCrisis","indices":[73,87]},{"text":"socialcontract","indices":[99,114]}],"symbols":[],"user_mentions":[{"screen_name":"frank_oconnor","name":"Frank - O''Connor","id":46364942,"id_str":"46364942","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 08:11:26 +0000 2022","id":1491686231842988037,"id_str":"1491686231842988037","text":"Seven - homes for seven families in Galway rotting in a #HousingCrisis \nTruly the - #socialcontract is broken in\u2026 https:\/\/t.co\/l16PUzsRJj","truncated":true,"entities":{"hashtags":[{"text":"HousingCrisis","indices":[54,68]},{"text":"socialcontract","indices":[80,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l16PUzsRJj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491686231842988037","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":127,"favorite_count":765,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":127,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14628936,"id_str":"14628936","name":"Scott - Woelfel","screen_name":"swoelfel","location":"Atlanta, GA","description":"Chief - Content Officer, WABE @wabenews @wabeatl. Co-founder, https:\/\/t.co\/Pk4BzamDkQ","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Pk4BzamDkQ","expanded_url":"http:\/\/CNN.com","display_url":"CNN.com","indices":[60,83]}]}},"protected":false,"followers_count":489,"friends_count":1750,"listed_count":22,"created_at":"Fri - May 02 18:01:06 +0000 2008","favourites_count":106,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":959,"lang":null,"status":{"created_at":"Wed - Mar 23 21:14:17 +0000 2022","id":1506741143333126144,"id_str":"1506741143333126144","text":"RT - @arishapiro: We made some jokes about Alan''s last name, but they are all - appropriate for public radio because he''s actually named that!\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arishapiro","name":"Ari - Shapiro","id":37999041,"id_str":"37999041","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:55:21 +0000 2022","id":1506675982643740673,"id_str":"1506675982643740673","text":"We - made some jokes about Alan''s last name, but they are all appropriate for - public radio because he''s actually name\u2026 https:\/\/t.co\/MNb0dQdX6K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MNb0dQdX6K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506675982643740673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506668981775740928,"quoted_status_id_str":"1506668981775740928","retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506668981775740928,"quoted_status_id_str":"1506668981775740928","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523162341441957888\/ae_4NRkp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523162341441957888\/ae_4NRkp_normal.jpeg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":961704864073076736,"id_str":"961704864073076736","name":"Jordan - Sabolish","screen_name":"JordanSabolish","location":"Livonia, MI","description":"RT - \u2260 endorsement | Politics, political science, the Sims, linguistics, TV - | I mostly just complain | I won an Emmy once | he\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":209,"friends_count":1188,"listed_count":0,"created_at":"Thu - Feb 08 20:54:42 +0000 2018","favourites_count":13679,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2717,"lang":null,"status":{"created_at":"Sat - Mar 26 02:35:59 +0000 2022","id":1507546881093738506,"id_str":"1507546881093738506","text":"RT - @JohnDiesattheEn: I get a little annoyed with outsiders expressing bafflement - or even amusement about the American health care system, s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnDiesattheEn","name":"Jason - Pargin, author of John Dies at the End, etc","id":23404794,"id_str":"23404794","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:43:48 +0000 2022","id":1507050561727868932,"id_str":"1507050561727868932","text":"I - get a little annoyed with outsiders expressing bafflement or even amusement - about the American health care system\u2026 https:\/\/t.co\/ffrzA5NiWb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ffrzA5NiWb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507050561727868932","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6401,"favorite_count":27278,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6401,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166736825203007489\/6TtiNdsR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166736825203007489\/6TtiNdsR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961704864073076736\/1589561905","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274637838991187970,"id_str":"1274637838991187970","name":"CREEKBOI","screen_name":"OwutuamorE","location":"Delta, - Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":535,"listed_count":0,"created_at":"Sun - Jun 21 09:38:58 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69,"lang":null,"status":{"created_at":"Wed - Jan 26 19:41:21 +0000 2022","id":1486424037874143237,"id_str":"1486424037874143237","text":"@GloWorld - It''s difficult to browse","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GloWorld","name":"Glo - Nigeria","id":276939439,"id_str":"276939439","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1486420313894227971,"in_reply_to_status_id_str":"1486420313894227971","in_reply_to_user_id":276939439,"in_reply_to_user_id_str":"276939439","in_reply_to_screen_name":"GloWorld","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345020305631285248\/Y8VQ6vNt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345020305631285248\/Y8VQ6vNt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176605656608063496,"id_str":"1176605656608063496","name":"Rtd0v","screen_name":"rtd0v","location":"Quincy, - MA","description":"Wife, \ud83d\udc36 mom, nurse \ud83d\udc69\u200d\u2695\ufe0f - \ud83d\udc89","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":233,"listed_count":0,"created_at":"Tue - Sep 24 21:14:08 +0000 2019","favourites_count":539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Sun - Sep 12 22:25:32 +0000 2021","id":1437180603821170689,"id_str":"1437180603821170689","text":"RT - @OnlyInBOS: If money can\u2019t buy happiness, explain crab rangoons.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OnlyInBOS","name":"Only - In Boston","id":700903452,"id_str":"700903452","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Sep 11 02:30:00 +0000 2021","id":1436517352288497668,"id_str":"1436517352288497668","text":"If - money can\u2019t buy happiness, explain crab rangoons.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":324,"favorite_count":1549,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":324,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352063790448320513\/AEB77Zj-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352063790448320513\/AEB77Zj-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176605656608063496\/1611192103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288347206123020288,"id_str":"1288347206123020288","name":"PQ","screen_name":"Dragon_Lady_46","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":160,"listed_count":0,"created_at":"Wed - Jul 29 05:35:42 +0000 2020","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Sat - Nov 07 07:53:15 +0000 2020","id":1324983236183818241,"id_str":"1324983236183818241","text":"@dougchristi - @DonaldJTrumpJr @realDonaldTrump @CaLiMaGiK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dougchristi","name":"Doug - Christi","id":548960070,"id_str":"548960070","indices":[0,12]},{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[13,28]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[29,45]},{"screen_name":"CaLiMaGiK","name":"OQ","id":155796778,"id_str":"155796778","indices":[46,56]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1324461099777892352,"in_reply_to_status_id_str":"1324461099777892352","in_reply_to_user_id":548960070,"in_reply_to_user_id_str":"548960070","in_reply_to_screen_name":"dougchristi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288353082322034688\/ScFgDQM9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288353082322034688\/ScFgDQM9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1288347206123020288\/1596002354","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":953131137127403522,"id_str":"953131137127403522","name":"Eddie_Ny","screen_name":"Indrit123456","location":"Everywhere","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":1556,"listed_count":1,"created_at":"Tue - Jan 16 05:05:46 +0000 2018","favourites_count":23468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":138,"lang":null,"status":{"created_at":"Fri - Mar 25 16:31:00 +0000 2022","id":1507394630471540742,"id_str":"1507394630471540742","text":"RT - @CryptoNTez: $CHZ \n\nHighest value since January \n\nif manages to show momentum, - flipping this level into support, then looking for contin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[{"text":"CHZ","indices":[16,20]}],"user_mentions":[{"screen_name":"CryptoNTez","name":"Nico","id":1000343132028981248,"id_str":"1000343132028981248","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:24:55 +0000 2022","id":1507377998621777942,"id_str":"1507377998621777942","text":"$CHZ - \n\nHighest value since January \n\nif manages to show momentum, flipping - this level into support, then looking fo\u2026 https:\/\/t.co\/Maae38aoDO","truncated":true,"entities":{"hashtags":[],"symbols":[{"text":"CHZ","indices":[0,4]}],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Maae38aoDO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507377998621777942","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/954110671146356736\/Hc6uKPaH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/954110671146356736\/Hc6uKPaH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309370540159836161,"id_str":"1309370540159836161","name":"anyanwutusoul@gmail.com","screen_name":"anyanwutusoulg1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":283,"listed_count":0,"created_at":"Fri - Sep 25 05:54:15 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Thu - Nov 05 14:41:18 +0000 2020","id":1324361153103962114,"id_str":"1324361153103962114","text":"@realDonaldTrump - The democrats rigging the election","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1324353932022480896,"in_reply_to_status_id_str":"1324353932022480896","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309370756447506433\/_dnqEjxz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309370756447506433\/_dnqEjxz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245621764429774850,"id_str":"1245621764429774850","name":"Duchess - of Dorset Penny \ud83d\udc99\ud83c\uddfa\ud83c\udde6#FBPE #ToriesOut","screen_name":"penny38555832","location":"South - West, England","description":"Life is not a rehearsal its an act, loves Portland, - views my own, loves dogs, all animals, social Democrat, dislikes the Tories, - plain speaker","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3438,"friends_count":4271,"listed_count":2,"created_at":"Thu - Apr 02 07:59:20 +0000 2020","favourites_count":65574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43040,"lang":null,"status":{"created_at":"Sat - Mar 26 08:42:51 +0000 2022","id":1507639203924180992,"id_str":"1507639203924180992","text":"@RichardPTh - Hypocrisy really","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RichardPTh","name":"Richard - T #FBPE #FBPPR Slava Ukraini #Facciamorete","id":879003280461967367,"id_str":"879003280461967367","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507446793235275776,"in_reply_to_status_id_str":"1507446793235275776","in_reply_to_user_id":879003280461967367,"in_reply_to_user_id_str":"879003280461967367","in_reply_to_screen_name":"RichardPTh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499837253773930502\/EID2G-sw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499837253773930502\/EID2G-sw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245621764429774850\/1646424053","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1254064922276827138,"id_str":"1254064922276827138","name":"Mary","screen_name":"Mary21170647","location":"","description":"I\u2019m - a positive, friendly, kind and caring person.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":258,"listed_count":0,"created_at":"Sat - Apr 25 15:09:27 +0000 2020","favourites_count":1973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1268,"lang":null,"status":{"created_at":"Fri - Mar 25 23:28:52 +0000 2022","id":1507499791261048838,"id_str":"1507499791261048838","text":"RT - @OccupyDemocrats: BREAKING: Iconic Watergate lawyer John Dean demands that - federal prosecutors from the Southern District of New York ta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:22:46 +0000 2022","id":1506984873394851855,"id_str":"1506984873394851855","text":"BREAKING: - Iconic Watergate lawyer John Dean demands that federal prosecutors from the - Southern District of New York\u2026 https:\/\/t.co\/QQBdIQyja9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QQBdIQyja9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506984873394851855","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12519,"favorite_count":30751,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12519,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1254065443561705472\/PC4j5WZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1254065443561705472\/PC4j5WZR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293748684132241409,"id_str":"1293748684132241409","name":"Zuri","screen_name":"ohhzuri","location":"she\/ - her","description":"ucla art & labor \u201823 | this is where i talk to myself","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":86,"friends_count":116,"listed_count":2,"created_at":"Thu - Aug 13 03:18:25 +0000 2020","favourites_count":9117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1638,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388903909708550145\/p6RiugHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388903909708550145\/p6RiugHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1293748684132241409\/1614374244","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":188793842,"id_str":"188793842","name":"Panther - Coffee","screen_name":"panthercoffee","location":"","description":"\u2615\ufe0f - We are an always evolving, quality focused coffee company, made by an amazing - team, based in Miami, yet we roam as we see fit. \ud83d\ude0e","url":"https:\/\/t.co\/drlkcDVlVf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/drlkcDVlVf","expanded_url":"http:\/\/www.panthercoffee.com","display_url":"panthercoffee.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8165,"friends_count":1956,"listed_count":209,"created_at":"Thu - Sep 09 16:16:51 +0000 2010","favourites_count":3133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3347,"lang":null,"status":{"created_at":"Thu - Mar 24 13:24:42 +0000 2022","id":1506985357040144386,"id_str":"1506985357040144386","text":"Introducing - our new spring seasonal drinks! \nTo the left we have brought back our Lavender - Leche by popular demand\u2026 https:\/\/t.co\/lRdl1fD3ZD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lRdl1fD3ZD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506985357040144386","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D1D1D1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126276843\/Panther_Coffee_Logo_made_in_paint2_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126276843\/Panther_Coffee_Logo_made_in_paint2_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188793842\/1427393109","profile_link_color":"696967","profile_sidebar_border_color":"383838","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"909291","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":968347000570818566,"id_str":"968347000570818566","name":"Brian - Sensebe \ud83c\udff4\u200d\u2620\ufe0f","screen_name":"brian_sensebe","location":"new - york city","description":"progressive af. here for the memes #resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":491,"friends_count":2279,"listed_count":1,"created_at":"Tue - Feb 27 04:48:10 +0000 2018","favourites_count":107617,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4609,"lang":null,"status":{"created_at":"Sun - Mar 06 22:15:37 +0000 2022","id":1500595986678398979,"id_str":"1500595986678398979","text":"RT - @StevenBeschloss: Russian POW: \u201cRussia cannot win here anyway. All the - variants are obvious. Even if we go till the very end\u2026We can inva\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StevenBeschloss","name":"Steven - Beschloss","id":81741855,"id_str":"81741855","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 17:28:41 +0000 2022","id":1500523777607696386,"id_str":"1500523777607696386","text":"Russian - POW: \u201cRussia cannot win here anyway. All the variants are obvious. Even - if we go till the very end\u2026We can i\u2026 https:\/\/t.co\/2ODoJrj2f3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2ODoJrj2f3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500523777607696386","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3449,"favorite_count":11810,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3449,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1051919464403542016\/nHkk-66S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1051919464403542016\/nHkk-66S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968347000570818566\/1545456058","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2352431585,"id_str":"2352431585","name":"patricksmyth","screen_name":"patricksmyth69","location":"Belfast, - Northern Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":292,"friends_count":4992,"listed_count":2,"created_at":"Wed - Feb 19 11:55:26 +0000 2014","favourites_count":5686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":207,"lang":null,"status":{"created_at":"Mon - Mar 21 09:41:48 +0000 2022","id":1505842098549006337,"id_str":"1505842098549006337","text":"https:\/\/t.co\/3d0YptQtAK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3d0YptQtAK","expanded_url":"https:\/\/pbs.twimg.com\/media\/ExABWnvXAAAk_KC?format=jpg&name=medium","display_url":"pbs.twimg.com\/media\/ExABWnvX\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436124768891580417\/pojNdxaY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436124768891580417\/pojNdxaY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352431585\/1441956213","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282704383147479041,"id_str":"1282704383147479041","name":"lawrence_d","screen_name":"lawrenc11849398","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":289,"listed_count":0,"created_at":"Mon - Jul 13 15:52:34 +0000 2020","favourites_count":395,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Thu - Mar 24 18:09:58 +0000 2022","id":1507057148852936705,"id_str":"1507057148852936705","text":"RT - @kylegriffin1: Just watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086"}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086","video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 21:55:21 +0000 2022","id":1506751479054577675,"id_str":"1506751479054577675","text":"Just - watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43374,"favorite_count":218823,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":43374,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226153368088961025,"id_str":"1226153368088961025","name":"Jamilu - A.A Dass","screen_name":"JamiluAADass1","location":"Dass BAUCHI Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":166,"listed_count":0,"created_at":"Sat - Feb 08 14:39:40 +0000 2020","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Tue - Mar 30 18:53:02 +0000 2021","id":1376970743704133637,"id_str":"1376970743704133637","text":"@avmsudusok - Alhamdulillah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"avmsudusok","name":"AVMSUDUSOK","id":1169905045774581760,"id_str":"1169905045774581760","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1375403624327741441,"in_reply_to_status_id_str":"1375403624327741441","in_reply_to_user_id":1169905045774581760,"in_reply_to_user_id_str":"1169905045774581760","in_reply_to_screen_name":"avmsudusok","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344538932722028544\/zA9ndP43_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344538932722028544\/zA9ndP43_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2808100626,"id_str":"2808100626","name":"Lynn - Fete","screen_name":"Lynn1Fete","location":"Ohio, USA","description":"A wife, - mother, grandmother, loves to read, bike, hike, downhill ski, cross country - ski, snowshoe, kayak! Cares about the future for our children.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":341,"listed_count":0,"created_at":"Sat - Sep 13 20:49:37 +0000 2014","favourites_count":21486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4782,"lang":null,"status":{"created_at":"Sat - Mar 26 04:33:52 +0000 2022","id":1507576543668850688,"id_str":"1507576543668850688","text":"RT - @AaronParnas: To every Senator that votes NO on Ketanji Brown Jackson\u2019s - nomination, know that we are going to vote NO when you\u2019re up for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AaronParnas","name":"Aaron - Parnas","id":3103505578,"id_str":"3103505578","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:29:33 +0000 2022","id":1507515060507357189,"id_str":"1507515060507357189","text":"To - every Senator that votes NO on Ketanji Brown Jackson\u2019s nomination, know - that we are going to vote NO when you\u2019re up for reelection.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3294,"favorite_count":20719,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3294,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287750434371796993\/yxQh2rA9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287750434371796993\/yxQh2rA9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1476923678,"id_str":"1476923678","name":"rwang - patrick ","screen_name":"PatrickRwang","location":"Gombe, Nigeria","description":"Educator, - Reformer, Season Thinker and a Worthy Strategist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":900,"listed_count":0,"created_at":"Sun - Jun 02 09:50:03 +0000 2013","favourites_count":1496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4502,"lang":null,"status":{"created_at":"Thu - Mar 24 09:21:46 +0000 2022","id":1506924221590560773,"id_str":"1506924221590560773","text":"https:\/\/t.co\/6O79dn5EXN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6O79dn5EXN","expanded_url":"https:\/\/www.plateaujournal.com\/post\/asuu-strike-2022-need-for-federal-government-to-use-redistrubutive-redistribution-plan-policy-or","display_url":"plateaujournal.com\/post\/asuu-stri\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306062308985233410\/7MczJuFW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306062308985233410\/7MczJuFW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1476923678\/1620302153","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1147996369065598978,"id_str":"1147996369065598978","name":"Jackie - Mcgranahan","screen_name":"JaclynMcgranah1","location":"Kentucky, USA","description":"She\/Her, - Fighting for social justice, Child of Black Appalachia, Kentucky born and - bred, Abortion rights activist, Policy Strategist for ACLU of KY","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":860,"listed_count":3,"created_at":"Sun - Jul 07 22:30:37 +0000 2019","favourites_count":96,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Tue - Mar 22 03:41:24 +0000 2022","id":1506113789359493120,"id_str":"1506113789359493120","text":"RT - @karenforky: Thank you to everyone watching and sharing this. I am grateful - you all are standing with me. \nhttps:\/\/t.co\/j5WgGzaVPk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"karenforky","name":"Karen - Berg","id":940952684303142912,"id_str":"940952684303142912","indices":[3,14]}],"urls":[],"media":[{"id":1504184513881989122,"id_str":"1504184513881989122","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","url":"https:\/\/t.co\/j5WgGzaVPk","display_url":"pic.twitter.com\/j5WgGzaVPk","expanded_url":"https:\/\/twitter.com\/PPAAEast\/status\/1504186393240645632\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1734,"h":976,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1504186393240645632,"source_status_id_str":"1504186393240645632","source_user_id":179522090,"source_user_id_str":"179522090"}]},"extended_entities":{"media":[{"id":1504184513881989122,"id_str":"1504184513881989122","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","url":"https:\/\/t.co\/j5WgGzaVPk","display_url":"pic.twitter.com\/j5WgGzaVPk","expanded_url":"https:\/\/twitter.com\/PPAAEast\/status\/1504186393240645632\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1734,"h":976,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1504186393240645632,"source_status_id_str":"1504186393240645632","source_user_id":179522090,"source_user_id_str":"179522090","video_info":{"aspect_ratio":[867,488],"duration_millis":129562,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/pl\/6hJSq8RpqvFiakaQ.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/478x270\/si3iiLAylIoGVQZ7.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/638x360\/FhHZLwsjE7Q14t2J.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/1278x720\/P_1Ad32k0xtEv7JQ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 18:01:55 +0000 2022","id":1505243184263225356,"id_str":"1505243184263225356","text":"Thank - you to everyone watching and sharing this. I am grateful you all are standing - with me. \nhttps:\/\/t.co\/j5WgGzaVPk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504184513881989122,"id_str":"1504184513881989122","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","url":"https:\/\/t.co\/j5WgGzaVPk","display_url":"pic.twitter.com\/j5WgGzaVPk","expanded_url":"https:\/\/twitter.com\/PPAAEast\/status\/1504186393240645632\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1734,"h":976,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1504186393240645632,"source_status_id_str":"1504186393240645632","source_user_id":179522090,"source_user_id_str":"179522090"}]},"extended_entities":{"media":[{"id":1504184513881989122,"id_str":"1504184513881989122","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504184513881989122\/pu\/img\/IdO1skUjLz8h_GtL.jpg","url":"https:\/\/t.co\/j5WgGzaVPk","display_url":"pic.twitter.com\/j5WgGzaVPk","expanded_url":"https:\/\/twitter.com\/PPAAEast\/status\/1504186393240645632\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1734,"h":976,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1504186393240645632,"source_status_id_str":"1504186393240645632","source_user_id":179522090,"source_user_id_str":"179522090","video_info":{"aspect_ratio":[867,488],"duration_millis":129562,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/pl\/6hJSq8RpqvFiakaQ.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/478x270\/si3iiLAylIoGVQZ7.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/638x360\/FhHZLwsjE7Q14t2J.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504184513881989122\/pu\/vid\/1278x720\/P_1Ad32k0xtEv7JQ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29816,"favorite_count":107150,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":29816,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1147996505195913216\/0nYrfLaE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147996505195913216\/0nYrfLaE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":926530803089240064,"id_str":"926530803089240064","name":"Fulya - Ak\u0131n","screen_name":"fuliaakin","location":"","description":"metu arch.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":194,"listed_count":0,"created_at":"Fri - Nov 03 19:25:32 +0000 2017","favourites_count":8930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":424,"lang":null,"status":{"created_at":"Wed - Mar 23 09:59:46 +0000 2022","id":1506571397757345799,"id_str":"1506571397757345799","text":"@yasanmiskesin - S\u0131f\u0131ra yak\u0131n zekam demesi\u2026\u2026 sad:(","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yasanmiskesin","name":"Kesin - Ya\u015fanm\u0131\u015ft\u0131r Bu","id":1147958145991548928,"id_str":"1147958145991548928","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506305573377265667,"in_reply_to_status_id_str":"1506305573377265667","in_reply_to_user_id":1147958145991548928,"in_reply_to_user_id_str":"1147958145991548928","in_reply_to_screen_name":"yasanmiskesin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469800388115193862\/0kK7GJwo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469800388115193862\/0kK7GJwo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/926530803089240064\/1646547853","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15989328,"id_str":"15989328","name":"Laura - M Jacobs","screen_name":"lauramjacobs","location":"Chicago","description":"Let''s - talk science. Health & science marketing communications geek interested in - all facets of science, medicine, health and nutrition. My tweets are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":765,"friends_count":4992,"listed_count":14,"created_at":"Mon - Aug 25 23:39:59 +0000 2008","favourites_count":3289,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1960,"lang":null,"status":{"created_at":"Tue - Mar 15 18:27:18 +0000 2022","id":1503800019446648833,"id_str":"1503800019446648833","text":"RT - @alzassociation: More than 6 million Americans are living with Alzheimer\u2019s. - By 2050, that number may grow to more than 12 million. Share\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alzassociation","name":"Alzheimer''s - Association","id":21121491,"id_str":"21121491","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 10:03:00 +0000 2022","id":1503673107768176645,"id_str":"1503673107768176645","text":"More - than 6 million Americans are living with Alzheimer\u2019s. By 2050, that number - may grow to more than 12 million. S\u2026 https:\/\/t.co\/i2eFyKk1Dh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i2eFyKk1Dh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503673107768176645","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":178,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":101,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/737493688922689536\/HiYp8Y8E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/737493688922689536\/HiYp8Y8E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15989328\/1464667173","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282696384500633600,"id_str":"1282696384500633600","name":"G.Bejjani","screen_name":"bejjani_g","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":100,"listed_count":0,"created_at":"Mon - Jul 13 15:20:42 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282696585525235713\/9k0Pbfaj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282696585525235713\/9k0Pbfaj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":967579252731383808,"id_str":"967579252731383808","name":"Benjamin - Hernandez","screen_name":"TheBenjaminHdz","location":"Houston, TX","description":"Millennial\ud83d\udcf1. - Immigrant \ud83d\uddfd. Once Undocumented \ud83c\uddfa\ud83c\uddf8. Regular - Guy \ud83d\ude4b\ud83c\udffb\u200d\u2642\ufe0f.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":438,"friends_count":1792,"listed_count":1,"created_at":"Sun - Feb 25 01:57:25 +0000 2018","favourites_count":1919,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1634,"lang":null,"status":{"created_at":"Thu - Mar 24 16:19:01 +0000 2022","id":1507029226041626631,"id_str":"1507029226041626631","text":"Ladies - and gentlemen, the Senator from Texas \ud83d\ude11\nhttps:\/\/t.co\/86JMJf11Gt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/86JMJf11Gt","expanded_url":"https:\/\/www.nbcnews.com\/politics\/supreme-court\/experts-historic-hearing-takes-turn-familiar-territory-race-crime-rcna21252","display_url":"nbcnews.com\/politics\/supre\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971967364265689088\/2aj5-ASu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971967364265689088\/2aj5-ASu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967579252731383808\/1591405712","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279188904495796225,"id_str":"1279188904495796225","name":"Weebes - Bigger Than Life","screen_name":"WeebesDan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":402,"listed_count":0,"created_at":"Fri - Jul 03 23:03:23 +0000 2020","favourites_count":6609,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":413,"lang":null,"status":{"created_at":"Thu - Mar 17 22:43:51 +0000 2022","id":1504589357314940929,"id_str":"1504589357314940929","text":"RT - @delayghana: \ud83d\udc49\ud83c\udffb\ud83d\udc49\ud83c\udffb https:\/\/t.co\/pQCCi5JIp3 - https:\/\/t.co\/KFVqt2MUVJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"delayghana","name":"The - Delay Show Is Back On TV3 \ud83d\udc06\ud83c\udf19\u2600\ufe0f","id":431105587,"id_str":"431105587","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/pQCCi5JIp3","expanded_url":"https:\/\/youtu.be\/mC2yzd23PYY","display_url":"youtu.be\/mC2yzd23PYY","indices":[21,44]}],"media":[{"id":1504462279105949696,"id_str":"1504462279105949696","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","url":"https:\/\/t.co\/KFVqt2MUVJ","display_url":"pic.twitter.com\/KFVqt2MUVJ","expanded_url":"https:\/\/twitter.com\/delayghana\/status\/1504462286823604226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":390,"h":680,"resize":"fit"},"large":{"w":550,"h":960,"resize":"fit"},"medium":{"w":550,"h":960,"resize":"fit"}},"source_status_id":1504462286823604226,"source_status_id_str":"1504462286823604226","source_user_id":431105587,"source_user_id_str":"431105587"}]},"extended_entities":{"media":[{"id":1504462279105949696,"id_str":"1504462279105949696","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","url":"https:\/\/t.co\/KFVqt2MUVJ","display_url":"pic.twitter.com\/KFVqt2MUVJ","expanded_url":"https:\/\/twitter.com\/delayghana\/status\/1504462286823604226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":390,"h":680,"resize":"fit"},"large":{"w":550,"h":960,"resize":"fit"},"medium":{"w":550,"h":960,"resize":"fit"}},"source_status_id":1504462286823604226,"source_status_id_str":"1504462286823604226","source_user_id":431105587,"source_user_id_str":"431105587"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 14:18:55 +0000 2022","id":1504462286823604226,"id_str":"1504462286823604226","text":"\ud83d\udc49\ud83c\udffb\ud83d\udc49\ud83c\udffb - https:\/\/t.co\/pQCCi5JIp3 https:\/\/t.co\/KFVqt2MUVJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pQCCi5JIp3","expanded_url":"https:\/\/youtu.be\/mC2yzd23PYY","display_url":"youtu.be\/mC2yzd23PYY","indices":[5,28]}],"media":[{"id":1504462279105949696,"id_str":"1504462279105949696","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","url":"https:\/\/t.co\/KFVqt2MUVJ","display_url":"pic.twitter.com\/KFVqt2MUVJ","expanded_url":"https:\/\/twitter.com\/delayghana\/status\/1504462286823604226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":390,"h":680,"resize":"fit"},"large":{"w":550,"h":960,"resize":"fit"},"medium":{"w":550,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504462279105949696,"id_str":"1504462279105949696","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FODseMwVsAAGbEH.jpg","url":"https:\/\/t.co\/KFVqt2MUVJ","display_url":"pic.twitter.com\/KFVqt2MUVJ","expanded_url":"https:\/\/twitter.com\/delayghana\/status\/1504462286823604226\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":390,"h":680,"resize":"fit"},"large":{"w":550,"h":960,"resize":"fit"},"medium":{"w":550,"h":960,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":915,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375762146471120896\/dA0i24EW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375762146471120896\/dA0i24EW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831291482833305600,"id_str":"831291482833305600","name":"Nwanne - Agwu","screen_name":"NwanneAgwu","location":"Nigeria","description":"Reader. - Writer. (Fiction. Nonfiction. Poetry.) He\/Him.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":58,"listed_count":0,"created_at":"Mon - Feb 13 23:58:28 +0000 2017","favourites_count":4159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":211,"lang":null,"status":{"created_at":"Sat - Mar 26 09:38:13 +0000 2022","id":1507653139222212610,"id_str":"1507653139222212610","text":"RT - @AdviceToWriters: #Writing for me is a kind of compulsion, so I don\u2019t - think anyone could have made me do it, or prevented me from doing\u2026","truncated":false,"entities":{"hashtags":[{"text":"Writing","indices":[21,29]}],"symbols":[],"user_mentions":[{"screen_name":"AdviceToWriters","name":"Jon - Winokur","id":44949890,"id_str":"44949890","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:00:01 +0000 2022","id":1507643522618314755,"id_str":"1507643522618314755","text":"#Writing - for me is a kind of compulsion, so I don\u2019t think anyone could have made - me do it, or prevented me from doi\u2026 https:\/\/t.co\/91pURTaKDp","truncated":true,"entities":{"hashtags":[{"text":"Writing","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/91pURTaKDp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507643522618314755","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487416402428538884\/zpyAwL2O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487416402428538884\/zpyAwL2O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831291482833305600\/1643463055","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1649477358,"id_str":"1649477358","name":"Pauuuu - \ud83e\udd8b","screen_name":"HeyIts_Pau","location":"Tucson, AZ \ud83c\udf1e","description":"she\/her - || i don\u2019t know what i\u2019m doing here, what\u2019re you doing here?","url":"https:\/\/t.co\/18i0NyJuqV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/18i0NyJuqV","expanded_url":"http:\/\/csh.bz\/line\/05xp.html","display_url":"csh.bz\/line\/05xp.html","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":219,"friends_count":94,"listed_count":0,"created_at":"Tue - Aug 06 05:02:06 +0000 2013","favourites_count":25958,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428567125002649600\/ZBAfFrFk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428567125002649600\/ZBAfFrFk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1649477358\/1610941631","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21483896,"id_str":"21483896","name":"Lisa - Rapp","screen_name":"LisaRealtor","location":"Key West, FL","description":"\u2022 - Mother of 3 amazing adults \u2022Real Estate Broker \u2022Entrepreneur","url":"https:\/\/t.co\/kH4U5KMsjO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kH4U5KMsjO","expanded_url":"https:\/\/spiritsesh.wixsite.com\/my-site","display_url":"spiritsesh.wixsite.com\/my-site","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":213,"listed_count":3,"created_at":"Sat - Feb 21 13:30:21 +0000 2009","favourites_count":4003,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":705,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415338978077814790\/365lrWgQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415338978077814790\/365lrWgQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21483896\/1590937353","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16502051,"id_str":"16502051","name":"cdsinclair","screen_name":"cdsinclair","location":"Eugene, - OR","description":"Associate Professor of math at the University of Oregon. - Secretary\/Treasurer of the American Association of University Professors","url":"https:\/\/t.co\/0ndZ4Aq29r","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0ndZ4Aq29r","expanded_url":"http:\/\/cdsinclair.org","display_url":"cdsinclair.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":173,"friends_count":604,"listed_count":2,"created_at":"Sun - Sep 28 19:57:12 +0000 2008","favourites_count":3994,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1695,"lang":null,"status":{"created_at":"Thu - Mar 24 19:20:01 +0000 2022","id":1507074776291954731,"id_str":"1507074776291954731","text":"@WheresMyTrophie - @arower2468 @SpencerJCox Winning is less important than human dignity.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WheresMyTrophie","name":"JimmyGrizz","id":805798550668017664,"id_str":"805798550668017664","indices":[0,16]},{"screen_name":"arower2468","name":"Andy","id":1226512823255257088,"id_str":"1226512823255257088","indices":[17,28]},{"screen_name":"SpencerJCox","name":"Spencer - Cox","id":69663100,"id_str":"69663100","indices":[29,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506895261548826630,"in_reply_to_status_id_str":"1506895261548826630","in_reply_to_user_id":805798550668017664,"in_reply_to_user_id_str":"805798550668017664","in_reply_to_screen_name":"WheresMyTrophie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215139030913835009\/tZrG_IWb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215139030913835009\/tZrG_IWb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16502051\/1578546696","profile_link_color":"4A913C","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"BADFCD","profile_text_color":"0C3E53","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":257930125,"id_str":"257930125","name":"Mahmoud - Seddik","screen_name":"Ddo38","location":"Cairo","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":63,"friends_count":956,"listed_count":0,"created_at":"Sat - Feb 26 16:00:46 +0000 2011","favourites_count":6480,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3512,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255744314\/GetAttachment.aspx123_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255744314\/GetAttachment.aspx123_normal.jpeg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1131254046143242240,"id_str":"1131254046143242240","name":"Douglas - S Haynes","screen_name":"DouglasSHaynes5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":398,"listed_count":0,"created_at":"Wed - May 22 17:42:37 +0000 2019","favourites_count":1477,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":417,"lang":null,"status":{"created_at":"Sat - Mar 26 09:46:00 +0000 2022","id":1507655098394099715,"id_str":"1507655098394099715","text":"@LakotaMan1 - Yes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LakotaMan1","name":"Lakota - Man","id":738779772,"id_str":"738779772","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507548691292254211,"in_reply_to_status_id_str":"1507548691292254211","in_reply_to_user_id":738779772,"in_reply_to_user_id_str":"738779772","in_reply_to_screen_name":"LakotaMan1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":521512811,"id_str":"521512811","name":"Beth - A. Witherspoon","screen_name":"BethAWitherspoo","location":"Tallahassee, Florida","description":"Florida - State University Sports","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":878,"listed_count":0,"created_at":"Sun - Mar 11 17:40:55 +0000 2012","favourites_count":26509,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":189,"lang":null,"status":{"created_at":"Sun - Mar 13 00:44:59 +0000 2022","id":1502807903987806211,"id_str":"1502807903987806211","text":"@joncoopertweets - Lou Holtz, today in Florence, SC!!!! Boooooo!!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502694449591332874,"in_reply_to_status_id_str":"1502694449591332874","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206704169823944705,"id_str":"1206704169823944705","name":"TP - MCAMBI","screen_name":"tp_mcambi","location":"Durban, South Africa","description":"humble - and friendly person","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":736,"listed_count":0,"created_at":"Mon - Dec 16 22:34:45 +0000 2019","favourites_count":692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":216,"lang":null,"status":{"created_at":"Wed - Feb 09 09:45:18 +0000 2022","id":1491347466440036355,"id_str":"1491347466440036355","text":"RT - @MichaelBucwa: Dear person reading this, May God open up gates of wealth upon - your life permanently. \ud83d\udd6f\ufe0f\ud83d\ude4f\ud83c\udffe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelBucwa","name":"Mr - Smeg","id":856143873470582784,"id_str":"856143873470582784","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 17:31:30 +0000 2022","id":1491102400135909379,"id_str":"1491102400135909379","text":"Dear - person reading this, May God open up gates of wealth upon your life permanently. - \ud83d\udd6f\ufe0f\ud83d\ude4f\ud83c\udffe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":788,"favorite_count":9206,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":788,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426413337181622272\/yGubeMxD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426413337181622272\/yGubeMxD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293114497364885504,"id_str":"1293114497364885504","name":"zeeshan - zaib Malik","screen_name":"zeeshanzaibMal1","location":"","description":"H - s e officer,Pakistan tahreek e Insaaf worker,fan of P M Imran khan,cricket - Lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":1371,"listed_count":0,"created_at":"Tue - Aug 11 09:18:33 +0000 2020","favourites_count":222,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Tue - Mar 22 12:44:28 +0000 2022","id":1506250459115401220,"id_str":"1506250459115401220","text":"@NOORALAMKHAN - Kameeny Zaleel, Ghatiya tu haram khore Ha 25 Caroor ly kr bik gaya Yeh jurm - tera jurm ha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NOORALAMKHAN","name":"Noor - Alam Khan","id":131231551,"id_str":"131231551","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506177645112963076,"in_reply_to_status_id_str":"1506177645112963076","in_reply_to_user_id":131231551,"in_reply_to_user_id_str":"131231551","in_reply_to_screen_name":"NOORALAMKHAN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294180673587093517\/uNPjyVH7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294180673587093517\/uNPjyVH7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230708372988559360,"id_str":"1230708372988559360","name":"@sultan","screen_name":"sultan77416007","location":"","description":"I - am that i am.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":591,"listed_count":0,"created_at":"Fri - Feb 21 04:19:18 +0000 2020","favourites_count":214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Tue - Jan 25 00:01:13 +0000 2022","id":1485764659793829892,"id_str":"1485764659793829892","text":"@PresidentBio - @UNESCO Your excellency sir, by all look of things, this your free quality - education is a complete fraud","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PresidentBio","name":"President - Julius Maada Bio","id":983228767761027072,"id_str":"983228767761027072","indices":[0,13]},{"screen_name":"UNESCO","name":"UNESCO - \ud83c\udfdb\ufe0f #Education #Sciences #Culture \ud83c\uddfa\ud83c\uddf3\ud83d\ude37","id":20646711,"id_str":"20646711","indices":[14,21]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1485536478851743746,"in_reply_to_status_id_str":"1485536478851743746","in_reply_to_user_id":983228767761027072,"in_reply_to_user_id_str":"983228767761027072","in_reply_to_screen_name":"PresidentBio","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347480738095108097\/ExSRmjVU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347480738095108097\/ExSRmjVU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230708372988559360\/1610099485","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":128932868,"id_str":"128932868","name":"Howard - Rudzinsky","screen_name":"OpticsRecruiter","location":"Boston area","description":"Since - 1984 Howard has been advancing the careers of optical, laser, photonics professionals - nationwide. Questions about your career tweet\/talk w\/ Howard today!","url":"https:\/\/t.co\/Be9SXkC9jV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Be9SXkC9jV","expanded_url":"http:\/\/www.OpticsJobs.com","display_url":"OpticsJobs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":730,"listed_count":2,"created_at":"Fri - Apr 02 17:06:04 +0000 2010","favourites_count":14259,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":858,"lang":null,"status":{"created_at":"Mon - Mar 21 20:04:38 +0000 2022","id":1505998840725446656,"id_str":"1505998840725446656","text":"RT - @RepSwalwell: I\u2019ve been researching you. On January 6 you chose the cop-killers - over the cops.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepSwalwell","name":"Rep. - Eric Swalwell","id":942156122,"id_str":"942156122","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 11:22:49 +0000 2022","id":1505867523329249281,"id_str":"1505867523329249281","text":"I\u2019ve - been researching you. On January 6 you chose the cop-killers over the cops. - https:\/\/t.co\/RxcKRN1for","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RxcKRN1for","expanded_url":"https:\/\/twitter.com\/HawleyMO\/status\/1504221926662844418","display_url":"twitter.com\/HawleyMO\/statu\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504221926662844418,"quoted_status_id_str":"1504221926662844418","retweet_count":11433,"favorite_count":64141,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504221926662844418,"quoted_status_id_str":"1504221926662844418","retweet_count":11433,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/824685659357085696\/MZLe2x3p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/824685659357085696\/MZLe2x3p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128932868\/1485455081","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3303652605,"id_str":"3303652605","name":"Dr. - Crispen Bhukuvhani","screen_name":"cbhukuvhani","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":218,"friends_count":997,"listed_count":2,"created_at":"Sat - May 30 13:35:23 +0000 2015","favourites_count":2193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2000,"lang":null,"status":{"created_at":"Sat - Mar 26 05:40:43 +0000 2022","id":1507593369597489154,"id_str":"1507593369597489154","text":"RT - @LIVEpositivity: Talk with people who make you see the world differently. - https:\/\/t.co\/GaC4RX8uxP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LIVEpositivity","name":"Power - of Positivity \u2728","id":111166747,"id_str":"111166747","indices":[3,18]}],"urls":[],"media":[{"id":1507591500703711234,"id_str":"1507591500703711234","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","url":"https:\/\/t.co\/GaC4RX8uxP","display_url":"pic.twitter.com\/GaC4RX8uxP","expanded_url":"https:\/\/twitter.com\/LIVEpositivity\/status\/1507591502251372544\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507591502251372544,"source_status_id_str":"1507591502251372544","source_user_id":111166747,"source_user_id_str":"111166747"}]},"extended_entities":{"media":[{"id":1507591500703711234,"id_str":"1507591500703711234","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","url":"https:\/\/t.co\/GaC4RX8uxP","display_url":"pic.twitter.com\/GaC4RX8uxP","expanded_url":"https:\/\/twitter.com\/LIVEpositivity\/status\/1507591502251372544\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507591502251372544,"source_status_id_str":"1507591502251372544","source_user_id":111166747,"source_user_id_str":"111166747"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:33:18 +0000 2022","id":1507591502251372544,"id_str":"1507591502251372544","text":"Talk - with people who make you see the world differently. https:\/\/t.co\/GaC4RX8uxP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507591500703711234,"id_str":"1507591500703711234","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","url":"https:\/\/t.co\/GaC4RX8uxP","display_url":"pic.twitter.com\/GaC4RX8uxP","expanded_url":"https:\/\/twitter.com\/LIVEpositivity\/status\/1507591502251372544\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1507591500703711234,"id_str":"1507591500703711234","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwKe3nXwAIeoSJ.png","url":"https:\/\/t.co\/GaC4RX8uxP","display_url":"pic.twitter.com\/GaC4RX8uxP","expanded_url":"https:\/\/twitter.com\/LIVEpositivity\/status\/1507591502251372544\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/www.socialjukebox.com\" rel=\"nofollow\"\u003eThe Social - Jukebox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":337,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":79,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381241495315959814\/TEckMM9S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381241495315959814\/TEckMM9S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1556049792,"id_str":"1556049792","name":"Samson - Samuel\ud83e\udd85\u2728","screen_name":"__Samsonn","location":"Lagos,Nigeria","description":"Trust - the process\ud83d\udccc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":720,"friends_count":440,"listed_count":2,"created_at":"Sat - Jun 29 16:44:58 +0000 2013","favourites_count":32420,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25597,"lang":null,"status":{"created_at":"Tue - Mar 08 11:50:48 +0000 2022","id":1501163522633437185,"id_str":"1501163522633437185","text":"RT - @legitngnews: The driver of the BRT bus in which the murdered young Lagos - lady had entered has revealed that he was totally helpless to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"legitngnews","name":"Legit.ng - | Leading the way","id":569053466,"id_str":"569053466","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 08:21:05 +0000 2022","id":1501110746285064193,"id_str":"1501110746285064193","text":"The - driver of the BRT bus in which the murdered young Lagos lady had entered has - revealed that he was totally helpl\u2026 https:\/\/t.co\/nGYr9ZaTQg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nGYr9ZaTQg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501110746285064193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478009773270384640\/bNvlBRT1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478009773270384640\/bNvlBRT1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1556049792\/1596531075","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":46363387,"id_str":"46363387","name":"James - Stratford","screen_name":"stratfoj","location":"An Fhairche","description":"Irish-English - Geologist \u2692\ufe0f living in north Galway. Drilling holes in rocks since - 2006. Petrography & geochemistry PhD \u201820. RTs \u2244 endorsements. he\/him. - \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":536,"friends_count":2627,"listed_count":6,"created_at":"Thu - Jun 11 10:59:17 +0000 2009","favourites_count":410,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":256,"lang":null,"status":{"created_at":"Sat - Mar 26 09:24:21 +0000 2022","id":1507649649561190405,"id_str":"1507649649561190405","text":"@foofighters - My god, I\u2019m so sorry.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"foofighters","name":"Foo - Fighters","id":19081001,"id_str":"19081001","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507552958988255234,"in_reply_to_status_id_str":"1507552958988255234","in_reply_to_user_id":19081001,"in_reply_to_user_id_str":"19081001","in_reply_to_screen_name":"foofighters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F0E9E4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484149648071798786\/YLpTM81O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484149648071798786\/YLpTM81O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46363387\/1641910100","profile_link_color":"2B3856","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"0022FF","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":901545595348889602,"id_str":"901545595348889602","name":"ototo","screen_name":"EdgerNdege","location":"Nairobi, - Kenya","description":"It''s just a joke, nothing serious.\ud83e\udd1c\ud83c\udfff","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":419,"friends_count":359,"listed_count":0,"created_at":"Sat - Aug 26 20:43:14 +0000 2017","favourites_count":11090,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3217,"lang":null,"status":{"created_at":"Fri - Mar 25 18:53:17 +0000 2022","id":1507430436254978055,"id_str":"1507430436254978055","text":"@richard_okenye - Siko mbali sana master\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richard_okenye","name":"Okayze","id":2804441555,"id_str":"2804441555","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507429200697126915,"in_reply_to_status_id_str":"1507429200697126915","in_reply_to_user_id":2804441555,"in_reply_to_user_id_str":"2804441555","in_reply_to_screen_name":"richard_okenye","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270444886718849031\/RwJQzmu2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270444886718849031\/RwJQzmu2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901545595348889602\/1591900386","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":85917945,"id_str":"85917945","name":"John - Jordan Evich","screen_name":"JordanEvich","location":"Bellingham, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":2191,"listed_count":1,"created_at":"Wed - Oct 28 21:30:41 +0000 2009","favourites_count":870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463700890742837248\/s5EHqoR5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463700890742837248\/s5EHqoR5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85917945\/1403462050","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":150666894,"id_str":"150666894","name":"Beth - Cooney","screen_name":"michaelaandrory","location":"","description":"Wife, - mother, optimist, slow but happy runner, and hopeful","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":823,"listed_count":0,"created_at":"Tue - Jun 01 14:20:09 +0000 2010","favourites_count":3767,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1005,"lang":null,"status":{"created_at":"Sat - Jan 01 13:40:26 +0000 2022","id":1477273513799168003,"id_str":"1477273513799168003","text":"@thegridkid - Thank you, Sam, for all this. It\u2019s kept me sane this year! Happy New - Year!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thegridkid","name":"Sam - Ezersky","id":739578070848393216,"id_str":"739578070848393216","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1476969679814119427,"in_reply_to_status_id_str":"1476969679814119427","in_reply_to_user_id":739578070848393216,"in_reply_to_user_id_str":"739578070848393216","in_reply_to_screen_name":"thegridkid","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486568813928775682\/8VwZ0J-k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486568813928775682\/8VwZ0J-k_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17665057,"id_str":"17665057","name":"Mike - O''Toole","screen_name":"motoole125","location":"Alexandria, VA","description":"writer, - editor,producer, government consultant","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":146,"friends_count":4425,"listed_count":0,"created_at":"Thu - Nov 27 00:58:35 +0000 2008","favourites_count":72797,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7814,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1105999806445568002\/xVD8Kq9S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105999806445568002\/xVD8Kq9S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17665057\/1505065165","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2328051619,"id_str":"2328051619","name":"Noah - S","screen_name":"ooah0","location":"","description":"niche micro-celebrity - | busi, econ, policy, energy, mems| RT \u2260 E \ud83d\uddfd","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":55,"friends_count":1094,"listed_count":0,"created_at":"Wed - Feb 05 02:11:08 +0000 2014","favourites_count":25239,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6483,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453394015911620609\/8v7AILk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453394015911620609\/8v7AILk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328051619\/1535231327","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1059435787102633985,"id_str":"1059435787102633985","name":"We - The People...!!","screen_name":"DelanceLuis","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":229,"listed_count":0,"created_at":"Mon - Nov 05 13:22:29 +0000 2018","favourites_count":9179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6837,"lang":null,"status":{"created_at":"Wed - Dec 22 15:52:33 +0000 2021","id":1473682882799583248,"id_str":"1473682882799583248","text":"RT - @PGuillermoSerra: BUENOS D\u00cdAS \nBend\u00edceme, Se\u00f1or, en este nuevo - d\u00eda, bend\u00edceme porque si es t\u00fa est\u00e1s a mi lado todo ser\u00e1 - alegr\u00eda.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PGuillermoSerra","name":"Padre - Guillermo Serra LC","id":295198494,"id_str":"295198494","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 22 11:55:06 +0000 2021","id":1473623128010067970,"id_str":"1473623128010067970","text":"BUENOS - D\u00cdAS \nBend\u00edceme, Se\u00f1or, en este nuevo d\u00eda, bend\u00edceme - porque si es t\u00fa est\u00e1s a mi lado todo ser\u00e1 alegr\u00eda.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":571,"favorite_count":4940,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":571,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258064303812313088\/be_YVHmP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258064303812313088\/be_YVHmP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059435787102633985\/1590634012","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306194362553053184,"id_str":"1306194362553053184","name":"Sir_Chief''sFX","screen_name":"chiefbtc","location":"","description":"Trust - because you''re willing to accept the Risk, not because it''s safe or certain.\n#Cryptomarket\n#Fxtrader\n#Profit\ud83d\udcb8\ud83d\udcb8\ud83d\udcbb\ud83d\udcbb","url":"https:\/\/t.co\/ws1WAUSrpf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ws1WAUSrpf","expanded_url":"https:\/\/www.forextime.com\/register\/open-account?partner_id=4942841","display_url":"forextime.com\/register\/open-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1001,"friends_count":781,"listed_count":18,"created_at":"Wed - Sep 16 11:33:15 +0000 2020","favourites_count":117762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23793,"lang":null,"status":{"created_at":"Fri - Mar 25 19:45:54 +0000 2022","id":1507443676540289028,"id_str":"1507443676540289028","text":"@Sharon2540 - You can be my girl, all I need is peace of mind","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sharon2540","name":"Sharon - \ud83c\udf38\ud83c\udf38\ud83c\udf38","id":1498610670077681664,"id_str":"1498610670077681664","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507258445916950535,"in_reply_to_status_id_str":"1507258445916950535","in_reply_to_user_id":1498610670077681664,"in_reply_to_user_id_str":"1498610670077681664","in_reply_to_screen_name":"Sharon2540","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492603863593107462\/RaufOzfl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492603863593107462\/RaufOzfl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306194362553053184\/1642125560","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36775836,"id_str":"36775836","name":"ElizabethR","screen_name":"ERS41957","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":253,"friends_count":3761,"listed_count":0,"created_at":"Thu - Apr 30 21:19:16 +0000 2009","favourites_count":15670,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7284,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349841039914196993\/a6Up-WJZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349841039914196993\/a6Up-WJZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":63941153,"id_str":"63941153","name":"Peter - Zoehrer","screen_name":"zoro8","location":"Vienna, Austria","description":"Journalist, - Blogger, Campaigner for Human Rights, Tolerance & World Peace (languages: - English & German), Executive Director - FOREF Europe","url":"https:\/\/t.co\/Y20WpKtUeS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y20WpKtUeS","expanded_url":"http:\/\/foref.europe.org","display_url":"foref.europe.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1960,"friends_count":4768,"listed_count":85,"created_at":"Sat - Aug 08 09:35:05 +0000 2009","favourites_count":8167,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27263,"lang":null,"status":{"created_at":"Sat - Mar 26 07:00:31 +0000 2022","id":1507613450037563398,"id_str":"1507613450037563398","text":"#CHINA - #UkraineUnderAtta\u0441k #StandWithUkraine #RUSSIA https:\/\/t.co\/Cub41OwtS3","truncated":false,"entities":{"hashtags":[{"text":"CHINA","indices":[0,6]},{"text":"UkraineUnderAtta\u0441k","indices":[7,26]},{"text":"StandWithUkraine","indices":[27,44]},{"text":"RUSSIA","indices":[45,52]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Cub41OwtS3","expanded_url":"https:\/\/twitter.com\/badiucao\/status\/1499246025152032770","display_url":"twitter.com\/badiucao\/statu\u2026","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1499246025152032770,"quoted_status_id_str":"1499246025152032770","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1467104765872123918\/5LvhfbnS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1467104765872123918\/5LvhfbnS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63941153\/1571574763","profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1130068992289325058,"id_str":"1130068992289325058","name":"DrFlower82","screen_name":"DrFlower82","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":236,"listed_count":0,"created_at":"Sun - May 19 11:13:38 +0000 2019","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Fri - Feb 04 18:48:08 +0000 2022","id":1489672137078153220,"id_str":"1489672137078153220","text":"RT - @ProjectLincoln: Still thinking about this. https:\/\/t.co\/vqCnDc70HR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[],"media":[{"id":1489419668108550150,"id_str":"1489419668108550150","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","url":"https:\/\/t.co\/vqCnDc70HR","display_url":"pic.twitter.com\/vqCnDc70HR","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1489419939291308034\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1489419939291308034,"source_status_id_str":"1489419939291308034","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1489419668108550150,"id_str":"1489419668108550150","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","url":"https:\/\/t.co\/vqCnDc70HR","display_url":"pic.twitter.com\/vqCnDc70HR","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1489419939291308034\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1489419939291308034,"source_status_id_str":"1489419939291308034","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385","video_info":{"aspect_ratio":[1,1],"duration_millis":84544,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/720x720\/CKUkT8xF1KPhcnGz.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/320x320\/OBrqYjlMmEAIajG2.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/pl\/Dr70rBgp-nhDk0TM.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/540x540\/eN8jMYWHuM1l6mzO.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 04 16:35:01 +0000 2022","id":1489638635448287235,"id_str":"1489638635448287235","text":"Still - thinking about this. https:\/\/t.co\/vqCnDc70HR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1489419668108550150,"id_str":"1489419668108550150","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","url":"https:\/\/t.co\/vqCnDc70HR","display_url":"pic.twitter.com\/vqCnDc70HR","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1489419939291308034\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1489419939291308034,"source_status_id_str":"1489419939291308034","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1489419668108550150,"id_str":"1489419668108550150","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489419668108550150\/pu\/img\/i12LdgOd2fKWh_bZ.jpg","url":"https:\/\/t.co\/vqCnDc70HR","display_url":"pic.twitter.com\/vqCnDc70HR","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1489419939291308034\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1489419939291308034,"source_status_id_str":"1489419939291308034","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385","video_info":{"aspect_ratio":[1,1],"duration_millis":84544,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/720x720\/CKUkT8xF1KPhcnGz.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/320x320\/OBrqYjlMmEAIajG2.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/pl\/Dr70rBgp-nhDk0TM.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489419668108550150\/pu\/vid\/540x540\/eN8jMYWHuM1l6mzO.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1868,"favorite_count":8658,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1868,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130069217020186624\/V7plJm2f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130069217020186624\/V7plJm2f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":389700273,"id_str":"389700273","name":"Omodan - M. Isibor","screen_name":"OmodanM","location":"Ojodu-Omole, Lagos, Nigeria.","description":"Educationist, - Training consultant, Counselor, Outreach expert, &loves to share ideas & ideals. - My favourite meal of d day is breakfast! Bcoz its simple &quick!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":1406,"listed_count":1,"created_at":"Wed - Oct 12 21:20:57 +0000 2011","favourites_count":452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1094,"lang":null,"status":{"created_at":"Thu - Mar 24 21:42:23 +0000 2022","id":1507110605941088264,"id_str":"1507110605941088264","text":"#support - #firstaid #safety #emergencyresponse #childsafeguarding https:\/\/t.co\/S1ydwvl9jt","truncated":false,"entities":{"hashtags":[{"text":"support","indices":[0,8]},{"text":"firstaid","indices":[9,18]},{"text":"safety","indices":[19,26]},{"text":"emergencyresponse","indices":[27,45]},{"text":"childsafeguarding","indices":[46,64]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S1ydwvl9jt","expanded_url":"https:\/\/lnkd.in\/dx-z7nDb","display_url":"lnkd.in\/dx-z7nDb","indices":[65,88]}]},"source":"\u003ca - href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405502323766566912\/_buEDtuK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405502323766566912\/_buEDtuK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389700273\/1426197678","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":805614862428762113,"id_str":"805614862428762113","name":"anat","screen_name":"anantabhan","location":"USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":386,"listed_count":0,"created_at":"Mon - Dec 05 03:28:45 +0000 2016","favourites_count":227,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Thu - Mar 10 22:02:55 +0000 2022","id":1502042340478918663,"id_str":"1502042340478918663","text":"@KamalaHarris - Defend why just NATO ..are Ukraine not ppl why Only NATO people matters to - you .\nIf you really can De\u2026 https:\/\/t.co\/ljuAZsacdR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/ljuAZsacdR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502042340478918663","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502034066857725957,"in_reply_to_status_id_str":"1502034066857725957","in_reply_to_user_id":30354991,"in_reply_to_user_id_str":"30354991","in_reply_to_screen_name":"KamalaHarris","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/805678275452346368\/pP033NyN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/805678275452346368\/pP033NyN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805614862428762113\/1480909171","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":133224181,"id_str":"133224181","name":"Salah","screen_name":"TheSalahRezig","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":4267,"listed_count":2,"created_at":"Thu - Apr 15 09:33:03 +0000 2010","favourites_count":3023,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Fri - Mar 25 03:47:08 +0000 2022","id":1507202396577054729,"id_str":"1507202396577054729","text":"RT - @mashhad0: \ud83d\udd345 \u0637\u0631\u0642 \u0637\u0628\u064a\u0639\u064a\u0629 - \u0644\u062a\u0646\u0638\u064a\u0641 \u0631\u0626\u0629 \u0627\u0644\u0645\u062f\u062e\u0646\u064a\u0646 - ..\ud83d\udc4c\ud83c\udffb\n\n\u0646\u0635\u064a\u062d\u0629... \u0625\u0630\u0627 - \u0645\u0634\u063a\u0648\u0644 \u0641\u0636\u0644\u0647\u0627 \u0648\u0627\u0631\u062c\u0639 - \u0644\u0647\u0627 \u0628\u0639\u062f\u064a\u0646 \u2665\ufe0f https:\/\/t.co\/tAPL71SWxp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mashhad0","name":"\u0645\u0634\u0647\u0640\u062f| - Scene","id":2853205908,"id_str":"2853205908","indices":[3,12]}],"urls":[],"media":[{"id":1506760245741342726,"id_str":"1506760245741342726","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","url":"https:\/\/t.co\/tAPL71SWxp","display_url":"pic.twitter.com\/tAPL71SWxp","expanded_url":"https:\/\/twitter.com\/mashhad0\/status\/1506760251479109633\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":675,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1080,"h":675,"resize":"fit"}},"source_status_id":1506760251479109633,"source_status_id_str":"1506760251479109633","source_user_id":2853205908,"source_user_id_str":"2853205908"}]},"extended_entities":{"media":[{"id":1506760245741342726,"id_str":"1506760245741342726","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","url":"https:\/\/t.co\/tAPL71SWxp","display_url":"pic.twitter.com\/tAPL71SWxp","expanded_url":"https:\/\/twitter.com\/mashhad0\/status\/1506760251479109633\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":675,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1080,"h":675,"resize":"fit"}},"source_status_id":1506760251479109633,"source_status_id_str":"1506760251479109633","source_user_id":2853205908,"source_user_id_str":"2853205908"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:30:12 +0000 2022","id":1506760251479109633,"id_str":"1506760251479109633","text":"\ud83d\udd345 - \u0637\u0631\u0642 \u0637\u0628\u064a\u0639\u064a\u0629 \u0644\u062a\u0646\u0638\u064a\u0641 - \u0631\u0626\u0629 \u0627\u0644\u0645\u062f\u062e\u0646\u064a\u0646 ..\ud83d\udc4c\ud83c\udffb\n\n\u0646\u0635\u064a\u062d\u0629... - \u0625\u0630\u0627 \u0645\u0634\u063a\u0648\u0644 \u0641\u0636\u0644\u0647\u0627 - \u0648\u0627\u0631\u062c\u0639 \u0644\u0647\u0627 \u0628\u0639\u062f\u064a\u0646 - \u2665\ufe0f https:\/\/t.co\/tAPL71SWxp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506760245741342726,"id_str":"1506760245741342726","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","url":"https:\/\/t.co\/tAPL71SWxp","display_url":"pic.twitter.com\/tAPL71SWxp","expanded_url":"https:\/\/twitter.com\/mashhad0\/status\/1506760251479109633\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":675,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1080,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506760245741342726,"id_str":"1506760245741342726","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOkWddkX0AYEMt1.jpg","url":"https:\/\/t.co\/tAPL71SWxp","display_url":"pic.twitter.com\/tAPL71SWxp","expanded_url":"https:\/\/twitter.com\/mashhad0\/status\/1506760251479109633\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":675,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1080,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":801,"favorite_count":6859,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":801,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276779638908506113\/R7j1IXEF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276779638908506113\/R7j1IXEF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":46015334,"id_str":"46015334","name":"Rose - McDonald","screen_name":"riledirish","location":"Illinois","description":"Independent, - open-minded but have no patience with trolls, Occasionally indulge in satire. - BTW; Not looking for dates.\nDO NOT ADD ME TO LISTS.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1001,"friends_count":804,"listed_count":0,"created_at":"Wed - Jun 10 02:31:52 +0000 2009","favourites_count":53923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64901,"lang":null,"status":{"created_at":"Fri - Oct 01 16:46:49 +0000 2021","id":1443980732528042018,"id_str":"1443980732528042018","text":"RT - @AndrewFeinberg: Former White House Press Secretary \u2066@OMGrisham\u2069 - on the Trump White House: \u201cEverything was like a clown car on fire runn\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewFeinberg","name":"Andrew - Feinberg","id":2249531,"id_str":"2249531","indices":[3,18]},{"screen_name":"OMGrisham","name":"Stephanie - Grisham","id":1129061124,"id_str":"1129061124","indices":[56,66]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Oct 01 11:28:21 +0000 2021","id":1443900588429910019,"id_str":"1443900588429910019","text":"Former - White House Press Secretary \u2066@OMGrisham\u2069 on the Trump White House: - \u201cEverything was like a clown car on fire\u2026 https:\/\/t.co\/DOPu3mesxs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OMGrisham","name":"Stephanie - Grisham","id":1129061124,"id_str":"1129061124","indices":[36,46]}],"urls":[{"url":"https:\/\/t.co\/DOPu3mesxs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1443900588429910019","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":590,"favorite_count":1372,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":590,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1018745414693113856\/UZGUJKoo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1018745414693113856\/UZGUJKoo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46015334\/1496165138","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947082343,"id_str":"947082343","name":"\u0627\u0644\u0646\u0628\u0648\u0649 - \u0623\u0628\u0648\u0632\u064a\u062f- \u0645\u0627\u0633\u0628\u064a\u0631\u0648 - - \u0627\u0644\u0642\u0627\u0647\u0631\u0629","screen_name":"MarwanAlnabawy","location":"","description":"\u0648\u062c\u0647 - \u0625\u0644\u0649 \u0627\u0644\u0633\u0645\u0627\u0621\u0637\u0641\u0644\u0627\u064b\u0644\u0627\u0647\u064a\u0627\u064b\u062d\u064a\u0646\u0627\u064b - \u0645\u062a\u0645\u0631\u062f\u0627\u064b\u0623\u062d\u064a\u0627\u0646\u0627\u064b\u060c\u0635\u0628\u064a\u0627\u064b\u0628\u0627\u062d\u062b\u0627\u064b - \u0639\u0646 \u0646\u0641\u0633\u0647\u060c\u0628\u0646\u0628\u0644 \u0648\u062d\u0632\u0646 - \u0648\u0633\u0630\u0627\u062c\u0629 \u0634\u0627\u0628\u0627\u064b\u0644\u0627\u0632\u0645\u0647 - \u0627\u0644\u062a\u0645\u064a\u0632 \u0641\u0632\u0627\u062f \u0645\u0646 - \u063a\u0631\u0628\u062a\u0647 \u0632\u0648\u062c\u0627\u064b\u0623\u0628\u0627\u064b\u0645\u0630\u064a\u0639\u0627\u064b\u0648\u0643\u0627\u062a\u0628\u0627\u064b\u0648\u062c\u0647\u0647 - \u0644\u0627\u064a\u0632\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u0633\u0645\u0627\u0621","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":912,"listed_count":0,"created_at":"Wed - Nov 14 04:56:22 +0000 2012","favourites_count":1079,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625546648765075456\/j_R2NJYo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625546648765075456\/j_R2NJYo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947082343\/1360335908","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785602488909037568,"id_str":"785602488909037568","name":"~Jazz~ - We can breathe Again!","screen_name":"jazz_1130","location":"Bronx, NY","description":"Not - here for the BS ..from anyone #TrumpIsFinallyGone ~We Won!! #Resist \ud83d\udc4f - #46 WEAR A MASK! \ud83d\ude37 NO DM''S","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2872,"friends_count":3809,"listed_count":1,"created_at":"Mon - Oct 10 22:06:44 +0000 2016","favourites_count":90795,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53342,"lang":null,"status":{"created_at":"Sat - Feb 20 00:35:22 +0000 2021","id":1362923767375224832,"id_str":"1362923767375224832","text":"@Bedlam_Squatter - @MiaDM18 @MegLavDC @WifeySpice90 @ibeshello @StacyRoosa @CurvyMissMia @Acoustic_Kitten\u2026 - https:\/\/t.co\/dX9OtcLn1I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Bedlam_Squatter","name":"\ud83c\udff4 - Thizzle Soup For The Hyphy Soul \ud83c\udff4","id":1281752328773808129,"id_str":"1281752328773808129","indices":[0,16]},{"screen_name":"MiaDM18","name":"Mia","id":1308550963418988544,"id_str":"1308550963418988544","indices":[17,25]},{"screen_name":"MegLavDC","name":"MegLavDC - \ud83c\uddfa\ud83c\udde6","id":3439364225,"id_str":"3439364225","indices":[26,35]},{"screen_name":"WifeySpice90","name":"Meggy - Mommy \ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":1117810694764859399,"id_str":"1117810694764859399","indices":[36,49]},{"screen_name":"ibeshello","name":"\u1e2c\u1e03\u1e15\u1e60\u1e27\u1e15\u1e36\u1e36\u1e4f - \u2022 \ud83c\uddfa\ud83c\udde6 \u2022 \ud83c\uddfa\ud83c\udde6 \u2022","id":714313232924549120,"id_str":"714313232924549120","indices":[50,60]},{"screen_name":"StacyRoosa","name":"Stacy - J. Roosa","id":179359052,"id_str":"179359052","indices":[61,72]},{"screen_name":"CurvyMissMia","name":"Mia - Martini","id":780784964312768512,"id_str":"780784964312768512","indices":[73,86]},{"screen_name":"Acoustic_Kitten","name":"Katzenboots","id":2385935107,"id_str":"2385935107","indices":[87,103]}],"urls":[{"url":"https:\/\/t.co\/dX9OtcLn1I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1362923767375224832","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1362589463080284160,"in_reply_to_status_id_str":"1362589463080284160","in_reply_to_user_id":1281752328773808129,"in_reply_to_user_id_str":"1281752328773808129","in_reply_to_screen_name":"Bedlam_Squatter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329666613080174593\/9WScseMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329666613080174593\/9WScseMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785602488909037568\/1599342749","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1733572034,"id_str":"1733572034","name":"Garrett - Smith","screen_name":"sdga92","location":"","description":"PhD Student at - BYU, World Citizen, LDS, Utah State Alum, and Father. \ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\udded\ud83c\uddf9\ud83c\uddfc\nUtah - Jazz \u00b7 Privacy \u00b7 Security \u00b7 Politics \u00b7 Religion \u00b7 - History","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":341,"listed_count":2,"created_at":"Fri - Sep 06 01:02:36 +0000 2013","favourites_count":2132,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":500,"lang":null,"status":{"created_at":"Thu - Jan 07 19:18:06 +0000 2021","id":1347261247062900736,"id_str":"1347261247062900736","text":"RT - @betterutah: Resign","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"betterutah","name":"Better - Utah","id":237579250,"id_str":"237579250","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 07 19:00:24 +0000 2021","id":1347256792284160000,"id_str":"1347256792284160000","text":"Resign - https:\/\/t.co\/mn8s7anXtC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mn8s7anXtC","expanded_url":"https:\/\/twitter.com\/RepChrisStewart\/status\/1346927085080752130","display_url":"twitter.com\/RepChrisStewar\u2026","indices":[7,30]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1346927085080752130,"quoted_status_id_str":"1346927085080752130","retweet_count":18,"favorite_count":156,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1346927085080752130,"quoted_status_id_str":"1346927085080752130","retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181740251280068608\/mb-vslaH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181740251280068608\/mb-vslaH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1733572034\/1570583326","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2976379402,"id_str":"2976379402","name":"E - J","screen_name":"ejsean69","location":"Southfield, MI","description":"l like - being around people who love and have good vibes","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":58,"friends_count":2886,"listed_count":0,"created_at":"Tue - Jan 13 12:48:46 +0000 2015","favourites_count":19577,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6600,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/729645260821815298\/o9Vp5x1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/729645260821815298\/o9Vp5x1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2976379402\/1462795959","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1187247454292529152,"id_str":"1187247454292529152","name":"Gloria7685","screen_name":"GloMiqueias","location":"Luanda, - Angola","description":"God. Family. Nature. Politics. \nA figther for justice - and human rights. \ud83d\udcaa","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":290,"listed_count":0,"created_at":"Thu - Oct 24 06:00:54 +0000 2019","favourites_count":9432,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468270474048245763\/hQWYMwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468270474048245763\/hQWYMwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1187247454292529152\/1603874850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1200766829574152192,"id_str":"1200766829574152192","name":"Victor - Vicent","screen_name":"VictorV18027723","location":"","description":"enjoy - responsibility","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":460,"listed_count":0,"created_at":"Sat - Nov 30 13:22:04 +0000 2019","favourites_count":302,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Tue - Aug 31 20:42:42 +0000 2021","id":1432806072209846276,"id_str":"1432806072209846276","text":"RT - @Aggy192: 2yrs without dick ya mtoto wa mtuu\ud83d\ude0c\ud83d\ude0c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Aggy192","name":"Malipso\ud83d\udc8b","id":1219877727437758465,"id_str":"1219877727437758465","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Aug 31 12:33:28 +0000 2021","id":1432682953587441668,"id_str":"1432682953587441668","text":"2yrs - without dick ya mtoto wa mtuu\ud83d\ude0c\ud83d\ude0c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":1059,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":984641,"id_str":"984641","name":"Alex - Rosenblum","screen_name":"alex_rosenblum","location":"Los Angeles, CA","description":"mok\u1e63a - marga","url":"https:\/\/t.co\/jUt2noRPBp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jUt2noRPBp","expanded_url":"http:\/\/www.alexrosenblum.com","display_url":"alexrosenblum.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":317,"friends_count":1477,"listed_count":12,"created_at":"Mon - Mar 12 04:37:32 +0000 2007","favourites_count":1092,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6708,"lang":null,"status":{"created_at":"Sun - Mar 13 14:42:09 +0000 2022","id":1503018582862487555,"id_str":"1503018582862487555","text":"@jsnell - congrats on the Verge article!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jsnell","name":"Jason - Snell","id":784912,"id_str":"784912","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":784912,"in_reply_to_user_id_str":"784912","in_reply_to_screen_name":"jsnell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484012389587623936\/u-bWF4qW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484012389587623936\/u-bWF4qW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984641\/1404837074","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":490733689,"id_str":"490733689","name":"Judy - Jewel Duerr","screen_name":"Jewelinupnys","location":"Finger Lakes, NY","description":"Loving - life with my beautiful family in the Finger Lakes while rockin'' all day long - to #DMB . Good music is good music, and everything else can go to hell. -DM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":1137,"listed_count":2,"created_at":"Sun - Feb 12 21:16:55 +0000 2012","favourites_count":10010,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1839,"lang":null,"status":{"created_at":"Tue - Feb 23 01:16:54 +0000 2021","id":1364021380602339331,"id_str":"1364021380602339331","text":"Trump\u2019s - \u201ctragic big lie\u201d \ud83d\ude22\ud83d\ude22\ud83d\ude22\ud83d\ude37\ud83d\ude37\ud83d\ude37\nOpinion: - Donald Trump''s other, tragic big lie - CNN https:\/\/t.co\/ilPtv8b130","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ilPtv8b130","expanded_url":"https:\/\/apple.news\/AOJ4-sf1lRR2iDAFvqNBWWQ","display_url":"apple.news\/AOJ4-sf1lRR2iD\u2026","indices":[84,107]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438786874979540992\/zeCBSnsR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438786874979540992\/zeCBSnsR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490733689\/1424207718","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49487523,"id_str":"49487523","name":"\ud83c\udd73\ud83c\udd70\ud83c\udd85\ud83c\udd78\ud83c\udd73 - \ud83c\udd7f\ud83c\udd70\ud83c\udd81\ud83c\udd81","screen_name":"parrda","location":"","description":"\ud83c\uddfa\ud83c\udde6 - \ud835\udc00\ud835\udc0f \ud835\udc07\ud835\udc2e\ud835\udc26\ud835\udc1a\ud835\udc27\ud835\udc06\ud835\udc1e\ud835\udc28\ud835\udc20\ud835\udc2b\ud835\udc1a\ud835\udc29\ud835\udc21\ud835\udc32 - \ud835\udd52\ud835\udd5f\ud835\udd55 \ud835\udd38\u2119 \ud835\udd3e\ud835\udd60\ud835\udd67 - \ud83c\udd43\ud83c\udd34\ud83c\udd30\ud83c\udd32\ud83c\udd37\ud83c\udd34\ud83c\udd41.\n#\u2115\ud835\udd52\ud835\udd65\ud835\udd3e\ud835\udd56\ud835\udd60\u2102\ud835\udd56\ud835\udd63\ud835\udd65\ud835\udd5a\ud835\udd57\ud835\udd5a\ud835\udd56\ud835\udd55 - #explorermindset \ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":914,"listed_count":2,"created_at":"Mon - Jun 22 01:04:47 +0000 2009","favourites_count":1388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":834,"lang":null,"status":{"created_at":"Thu - Mar 17 01:10:03 +0000 2022","id":1504263763087790080,"id_str":"1504263763087790080","text":"@MarySkulich - @Teslaquest @IAmPoliticsGirl @mkraju Please. Double please.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarySkulich","name":"Mary","id":824471247736037376,"id_str":"824471247736037376","indices":[0,12]},{"screen_name":"Teslaquest","name":"sm","id":432574701,"id_str":"432574701","indices":[13,24]},{"screen_name":"IAmPoliticsGirl","name":"PoliticsGirl","id":3827830753,"id_str":"3827830753","indices":[25,41]},{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[42,49]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504254658369363969,"in_reply_to_status_id_str":"1504254658369363969","in_reply_to_user_id":824471247736037376,"in_reply_to_user_id_str":"824471247736037376","in_reply_to_screen_name":"MarySkulich","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333233941684359173\/1PmuklYU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333233941684359173\/1PmuklYU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49487523\/1357440340","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":789188797,"id_str":"789188797","name":"charlene - gordon","screen_name":"DaxieladyGordon","location":"Sarnia Ont","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":91,"listed_count":0,"created_at":"Wed - Aug 29 11:58:44 +0000 2012","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271168541618843648\/gMu3Kn4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271168541618843648\/gMu3Kn4o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723295433733361664,"id_str":"723295433733361664","name":"Mio - Caama\u00f1o Sabourin","screen_name":"MioSabourin","location":"United States","description":"Filmmaker, - Manager, Medicospine Center Co-owner, Women in Film and Television Board Member - of Directors.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":59,"friends_count":2972,"listed_count":0,"created_at":"Thu - Apr 21 23:40:44 +0000 2016","favourites_count":717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":322,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501678804904861696\/2cQc7-H-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501678804904861696\/2cQc7-H-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723295433733361664\/1646598376","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247635019486674944,"id_str":"1247635019486674944","name":"Ifeanyi - owoh","screen_name":"Ifeanyiowoh2","location":"Soul","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":25,"listed_count":0,"created_at":"Tue - Apr 07 21:20:06 +0000 2020","favourites_count":5839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5094,"lang":null,"status":{"created_at":"Sat - Jun 12 17:49:19 +0000 2021","id":1403771410087088147,"id_str":"1403771410087088147","text":"RT - @von_Bismack: one of the Protesters at freedoms park, Ojota went down on the - ground. Nigerians youths are tired of the sufferings.\n\nWe a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"von_Bismack","name":"DEMAGOGUE - PhD.\ud83d\udc98senior advocat","id":1059879763974766593,"id_str":"1059879763974766593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jun 12 10:08:23 +0000 2021","id":1403655411748655107,"id_str":"1403655411748655107","text":"one - of the Protesters at freedoms park, Ojota went down on the ground. Nigerians - youths are tired of the sufferings\u2026 https:\/\/t.co\/msVyUe2eMm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/msVyUe2eMm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1403655411748655107","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3842,"favorite_count":3210,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3842,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401195266728816640\/-whUn6Vr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401195266728816640\/-whUn6Vr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1247635019486674944\/1622906079","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":804741858,"id_str":"804741858","name":"Patrick - Fields","screen_name":"BoydPFields","location":"","description":"Gator \ud83d\udc0a - Nation! Go Gators!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":648,"listed_count":0,"created_at":"Wed - Sep 05 14:47:47 +0000 2012","favourites_count":437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Sat - Mar 19 20:46:03 +0000 2022","id":1505284487273406469,"id_str":"1505284487273406469","text":"@ProudAFAmerican - Since most of his speeches were just redundant repeats, I would assume there - is only minimal conte\u2026 https:\/\/t.co\/H1yO1yosPG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProudAFAmerican","name":"Terri - Loves America \ud83d\udc99\ud83c\uddfa\ud83c\uddf8","id":1085290065490632704,"id_str":"1085290065490632704","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/H1yO1yosPG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505284487273406469","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504899873526624256,"in_reply_to_status_id_str":"1504899873526624256","in_reply_to_user_id":1085290065490632704,"in_reply_to_user_id_str":"1085290065490632704","in_reply_to_screen_name":"ProudAFAmerican","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187840640123572229\/wonrrFpQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187840640123572229\/wonrrFpQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1040632052310319104,"id_str":"1040632052310319104","name":"nicola - toumeh","screen_name":"NicolaToumeh","location":"Abu Dhabi, United Arab Emirates","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":278,"listed_count":0,"created_at":"Fri - Sep 14 16:03:10 +0000 2018","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Tue - Oct 06 17:57:42 +0000 2020","id":1313538940264165384,"id_str":"1313538940264165384","text":"#realestate - #abudhabi #uae\ud83c\udde6\ud83c\uddea #reemisland #lifestyle #luxurylifestyle - #nationwide #dubai https:\/\/t.co\/k0RlsiJTRu","truncated":false,"entities":{"hashtags":[{"text":"realestate","indices":[0,11]},{"text":"abudhabi","indices":[12,21]},{"text":"uae","indices":[22,26]},{"text":"reemisland","indices":[29,40]},{"text":"lifestyle","indices":[41,51]},{"text":"luxurylifestyle","indices":[52,68]},{"text":"nationwide","indices":[69,80]},{"text":"dubai","indices":[81,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k0RlsiJTRu","expanded_url":"https:\/\/www.instagram.com\/p\/CGAuNs3lTBc\/?igshid=lc5bf6r3lscx","display_url":"instagram.com\/p\/CGAuNs3lTBc\/\u2026","indices":[88,111]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1106995838189035521\/mGH9jXQX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106995838189035521\/mGH9jXQX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1040632052310319104\/1552763410","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":717849206191366144,"id_str":"717849206191366144","name":"Celtics - to the Playoffs \ud83c\udf40\ud83c\udf40","screen_name":"falcons_celtics","location":"United - States","description":"#bleedgreen #dirtybirds","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":491,"friends_count":2409,"listed_count":0,"created_at":"Wed - Apr 06 22:59:22 +0000 2016","favourites_count":182843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63889,"lang":null,"status":{"created_at":"Fri - Mar 25 16:24:13 +0000 2022","id":1507392921204666372,"id_str":"1507392921204666372","text":"RT - @M_Ryan02: Humbled and inspired by the banners behind me. My family and I - are so excited for this next chapter of our lives. \n\nThank you\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"M_Ryan02","name":"Matt - Ryan","id":551405395,"id_str":"551405395","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:58:07 +0000 2022","id":1507008867720327173,"id_str":"1507008867720327173","text":"Humbled - and inspired by the banners behind me. My family and I are so excited for - this next chapter of our lives.\u2026 https:\/\/t.co\/6azbdCMLUw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6azbdCMLUw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507008867720327173","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":914,"favorite_count":14544,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":914,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497763842230792192\/2HPMdyLB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497763842230792192\/2HPMdyLB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717849206191366144\/1618161073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258889324965183489,"id_str":"1258889324965183489","name":"Arnold - Salazar","screen_name":"ArnoldS22418125","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":78,"listed_count":0,"created_at":"Fri - May 08 22:40:06 +0000 2020","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sun - Oct 31 01:11:23 +0000 2021","id":1454616960130379776,"id_str":"1454616960130379776","text":"Fe - https:\/\/t.co\/eW7SJPAxmd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1454616953838968832,"id_str":"1454616953838968832","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/FC_WaaHVIAAjH6c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FC_WaaHVIAAjH6c.jpg","url":"https:\/\/t.co\/eW7SJPAxmd","display_url":"pic.twitter.com\/eW7SJPAxmd","expanded_url":"https:\/\/twitter.com\/ArnoldS22418125\/status\/1454616960130379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"large":{"w":696,"h":869,"resize":"fit"},"medium":{"w":696,"h":869,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1454616953838968832,"id_str":"1454616953838968832","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/FC_WaaHVIAAjH6c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FC_WaaHVIAAjH6c.jpg","url":"https:\/\/t.co\/eW7SJPAxmd","display_url":"pic.twitter.com\/eW7SJPAxmd","expanded_url":"https:\/\/twitter.com\/ArnoldS22418125\/status\/1454616960130379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":545,"h":680,"resize":"fit"},"large":{"w":696,"h":869,"resize":"fit"},"medium":{"w":696,"h":869,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":301430628,"id_str":"301430628","name":"Ann - Saunders","screen_name":"asaund005","location":"North Carolina","description":"Alzheimer - disease molecular geneticist; swim mom; NOAA weather fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":177,"listed_count":0,"created_at":"Thu - May 19 13:18:33 +0000 2011","favourites_count":1270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Sat - Oct 23 02:05:40 +0000 2021","id":1451731518125117440,"id_str":"1451731518125117440","text":"@Sarah_Stierch - @cvspharmacy Great Sarah! And good choice.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sarah_Stierch","name":"Sarah - Stierch \ud83d\udd25\ud83d\udc81\ud83c\udffb\u200d\u2640\ufe0f \ud83c\udf3b","id":222959095,"id_str":"222959095","indices":[0,14]},{"screen_name":"cvspharmacy","name":"CVS - Pharmacy","id":110775353,"id_str":"110775353","indices":[15,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1451570693141712901,"in_reply_to_status_id_str":"1451570693141712901","in_reply_to_user_id":222959095,"in_reply_to_user_id_str":"222959095","in_reply_to_screen_name":"Sarah_Stierch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503429586936676353\/AMpxAsmk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503429586936676353\/AMpxAsmk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301430628\/1408862027","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3327576966,"id_str":"3327576966","name":"cvf","screen_name":"clarifry","location":"Los - Angeles, CA","description":"big fan of Stardust (2007) - she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":684,"listed_count":1,"created_at":"Mon - Aug 24 01:58:15 +0000 2015","favourites_count":50384,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1229,"lang":null,"status":{"created_at":"Thu - Mar 24 00:53:03 +0000 2022","id":1506796197486358529,"id_str":"1506796197486358529","text":"RT - @Casey_Mink: The Lost Daughter is a better film than 75 percent of the best - picture nominees but you all REALLY are not ready for THAT c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Casey_Mink","name":"Casey - Mink","id":20014551,"id_str":"20014551","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 13:09:06 +0000 2022","id":1506619043507224581,"id_str":"1506619043507224581","text":"The - Lost Daughter is a better film than 75 percent of the best picture nominees - but you all REALLY are not ready for THAT conversation","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":125,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140645762755416070\/Gl7dPJSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140645762755416070\/Gl7dPJSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3327576966\/1577635997","profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2935032270,"id_str":"2935032270","name":"Violeta - Sanchez","screen_name":"VFlower7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":27,"friends_count":1005,"listed_count":0,"created_at":"Thu - Dec 18 15:51:38 +0000 2014","favourites_count":162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3311,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545694182384205825\/53hE9gPU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545694182384205825\/53hE9gPU_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1029542837208207360,"id_str":"1029542837208207360","name":"Maryellenh1960","screen_name":"meph1960","location":"Anderson, - SC","description":"NBCT Science teacher, mom, wife, love my family, love my - dogs and cats, love the outdoors, camping, hiking and kayaking. Will be my - 36th year in the classroom.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":216,"friends_count":826,"listed_count":1,"created_at":"Wed - Aug 15 01:38:35 +0000 2018","favourites_count":16678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":361,"lang":null,"status":{"created_at":"Tue - Mar 22 14:16:43 +0000 2022","id":1506273674583855111,"id_str":"1506273674583855111","text":"@awbraxtonjr - USCG during WW II. Stationed in Elizabeth City NC. Flew Air Sea Rescue and - hunted for U-boats. He was\u2026 https:\/\/t.co\/V6cINCwJ20","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"awbraxtonjr","name":"Braxton","id":1165095578201669632,"id_str":"1165095578201669632","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/V6cINCwJ20","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506273674583855111","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505888845606400001,"in_reply_to_status_id_str":"1505888845606400001","in_reply_to_user_id":1165095578201669632,"in_reply_to_user_id_str":"1165095578201669632","in_reply_to_screen_name":"awbraxtonjr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1409596503392493571\/aQvJJD7W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1409596503392493571\/aQvJJD7W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029542837208207360\/1535914207","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":827452826,"id_str":"827452826","name":"Anonymou5\ud83c\udff4\u200d\u2620\ufe0f","screen_name":"RCILeaksOrg","location":"Reykjav\u00edk - || Vancouver \u2708 ","description":"Irreverent Whistleblowers against Banksters - & Bad Governments. Fighting injustice against animals, kids, women, elders, - poor & the downtrodden.","url":"https:\/\/t.co\/vuxrfnYAfo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vuxrfnYAfo","expanded_url":"http:\/\/RCILeaks.Org","display_url":"RCILeaks.Org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9179,"friends_count":12561,"listed_count":294,"created_at":"Sun - Sep 16 17:28:16 +0000 2012","favourites_count":9148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":156481,"lang":null,"status":{"created_at":"Sat - Mar 26 05:45:30 +0000 2022","id":1507594573580746753,"id_str":"1507594573580746753","text":"RT - @propublica: Some states\u2014Texas, Mississippi, Arkansas & Nebraska\u2014denied - about 90% of welfare applicants in 2020. \n\nTexas, where a single\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"propublica","name":"ProPublica","id":14606079,"id_str":"14606079","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:36:51 +0000 2022","id":1507592395155775488,"id_str":"1507592395155775488","text":"Some - states\u2014Texas, Mississippi, Arkansas & Nebraska\u2014denied about - 90% of welfare applicants in 2020. \n\nTexas, where\u2026 https:\/\/t.co\/IsiQl04enw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IsiQl04enw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507592395155775488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":176,"favorite_count":218,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":176,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631239434495655936\/qg5ui7Pe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631239434495655936\/qg5ui7Pe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/827452826\/1403117618","profile_link_color":"4FAD92","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"2B9971","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1142452417084235776,"id_str":"1142452417084235776","name":"kweku - Ananse","screen_name":"Rchardkwekuyor1","location":"Ta''di","description":"Critical - thinker","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":863,"listed_count":2,"created_at":"Sat - Jun 22 15:20:56 +0000 2019","favourites_count":1208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5013,"lang":null,"status":{"created_at":"Sat - Mar 26 10:45:07 +0000 2022","id":1507669973514211338,"id_str":"1507669973514211338","text":"@3fm927 - On point","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"3fm927","name":"Urban - Lifestyle Radio\ud83d\udcfb","id":4715413774,"id_str":"4715413774","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507635500542214149,"in_reply_to_status_id_str":"1507635500542214149","in_reply_to_user_id":4715413774,"in_reply_to_user_id_str":"4715413774","in_reply_to_screen_name":"3fm927","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183790534382575619\/kAYj0oy1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183790534382575619\/kAYj0oy1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1142452417084235776\/1598134132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1013082167646277632,"id_str":"1013082167646277632","name":"johann - smith","screen_name":"johannsmith18","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":324,"listed_count":0,"created_at":"Sat - Jun 30 15:29:45 +0000 2018","favourites_count":1448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":300,"lang":null,"status":{"created_at":"Sat - Mar 19 12:28:10 +0000 2022","id":1505159191178141700,"id_str":"1505159191178141700","text":"Before - Ukraine: Serbian Soccer Fans Remind World Of U.S. Invasions https:\/\/t.co\/U8H02r7Fkz - via @edmoloney48","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"edmoloney48","name":"Ed - Moloney","id":241272589,"id_str":"241272589","indices":[95,107]}],"urls":[{"url":"https:\/\/t.co\/U8H02r7Fkz","expanded_url":"https:\/\/thebrokenelbow.com\/2022\/03\/18\/before-ukraine-serbian-soccer-fans-remind-world-of-u-s-invasions\/","display_url":"thebrokenelbow.com\/2022\/03\/18\/bef\u2026","indices":[67,90]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":897654502534164480,"id_str":"897654502534164480","name":"Laurie - Black","screen_name":"lauriemblack","location":"California, USA","description":"After - all it was a great big world with lots of places to run to.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":624,"listed_count":0,"created_at":"Wed - Aug 16 03:01:25 +0000 2017","favourites_count":1416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331279885596147714\/pOF7ZAak_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331279885596147714\/pOF7ZAak_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/897654502534164480\/1606236834","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2926893096,"id_str":"2926893096","name":"Ken - Bubash","screen_name":"bubash_ken","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":270,"listed_count":0,"created_at":"Thu - Dec 11 14:55:02 +0000 2014","favourites_count":797,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":693,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300090403639549952,"id_str":"1300090403639549952","name":"Mathew - Lim","screen_name":"Mathewlim985","location":"Singapore","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":142,"listed_count":1,"created_at":"Sun - Aug 30 15:18:13 +0000 2020","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300096335119486976\/AkQDkA_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300096335119486976\/AkQDkA_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1300090403639549952\/1598801866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230619781235167232,"id_str":"1230619781235167232","name":"Yeslam533@gmail.com","screen_name":"yeslam533","location":"","description":"Born - 1958 in Tanzania of Yemen origin. I have finished my secondary education in1976.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":195,"listed_count":0,"created_at":"Thu - Feb 20 22:27:03 +0000 2020","favourites_count":101,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":196,"lang":null,"status":{"created_at":"Thu - Feb 10 18:37:19 +0000 2022","id":1491843740205473798,"id_str":"1491843740205473798","text":"@SimbaSCTanzania - @bvrbvra Nguvu moja.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SimbaSCTanzania","name":"Simba - Sports Club","id":3318397774,"id_str":"3318397774","indices":[0,16]},{"screen_name":"bvrbvra","name":"Barbara - Gonzalez","id":154455276,"id_str":"154455276","indices":[17,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1491719213551169543,"in_reply_to_status_id_str":"1491719213551169543","in_reply_to_user_id":3318397774,"in_reply_to_user_id_str":"3318397774","in_reply_to_screen_name":"SimbaSCTanzania","geo":null,"coordinates":null,"place":{"id":"017189e6700ad6cd","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/017189e6700ad6cd.json","place_type":"city","name":"Ahsa","full_name":"Ahsa, - Kingdom of Saudi Arabia","country_code":"SA","country":"Kingdom of Saudi Arabia","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[49.4166539,25.2096126],[49.8386985,25.2096126],[49.8386985,25.7076705],[49.4166539,25.7076705]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230620572482228230\/o-9ghsPD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230620572482228230\/o-9ghsPD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825818914911318017,"id_str":"825818914911318017","name":"james","screen_name":"litfigact","location":"United - States","description":"\ud83d\ude0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":1507,"listed_count":0,"created_at":"Sun - Jan 29 21:32:27 +0000 2017","favourites_count":103,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Nov 30 12:45:45 +0000 2020","id":1333391766695923713,"id_str":"1333391766695923713","text":"@openargs - if GOP senate won\u2019t confirm Biden cabinet members, can people who were - previously senate-confirmed (e.g.\u2026 https:\/\/t.co\/zyQKAZOoHL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"openargs","name":"Opening - Arguments","id":756526987192176641,"id_str":"756526987192176641","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/zyQKAZOoHL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1333391766695923713","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":756526987192176641,"in_reply_to_user_id_str":"756526987192176641","in_reply_to_screen_name":"openargs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":916006465319645184,"id_str":"916006465319645184","name":"Health - Communication Insights","screen_name":"healthcinsights","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":231,"listed_count":1,"created_at":"Thu - Oct 05 18:25:34 +0000 2017","favourites_count":734,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215,"lang":null,"status":{"created_at":"Sun - Mar 20 06:05:19 +0000 2022","id":1505425233699696640,"id_str":"1505425233699696640","text":"RT - @AdityaRajKaul: If you consider #TheKashmirFiles a lie or a fake story, please - unfollow or block me here on twitter. There is no reason\u2026","truncated":false,"entities":{"hashtags":[{"text":"TheKashmirFiles","indices":[35,51]}],"symbols":[],"user_mentions":[{"screen_name":"AdityaRajKaul","name":"Aditya - Raj Kaul","id":44425241,"id_str":"44425241","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 04:15:12 +0000 2022","id":1505397518997213184,"id_str":"1505397518997213184","text":"If - you consider #TheKashmirFiles a lie or a fake story, please unfollow or block - me here on twitter. There is no re\u2026 https:\/\/t.co\/7z0GIqPBLt","truncated":true,"entities":{"hashtags":[{"text":"TheKashmirFiles","indices":[16,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7z0GIqPBLt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505397518997213184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3206,"favorite_count":17762,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3206,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501108134550532096\/xIdfms4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501108134550532096\/xIdfms4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916006465319645184\/1625254877","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201158033939845121,"id_str":"1201158033939845121","name":"Miriam_7G","screen_name":"7gMiriam","location":"portharcourt - (+234-7063546156)","description":"loving God my All.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":1285,"listed_count":0,"created_at":"Sun - Dec 01 15:16:53 +0000 2019","favourites_count":569,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1069,"lang":null,"status":{"created_at":"Thu - Mar 10 00:34:12 +0000 2022","id":1501718024780492802,"id_str":"1501718024780492802","text":"RT - @EveningStandard: What is the history of the ship that sank in the Antarctic - 107 years ago and why has finding it been so important? h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EveningStandard","name":"Evening - Standard","id":1168472395,"id_str":"1168472395","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 18:39:18 +0000 2022","id":1501628712080584709,"id_str":"1501628712080584709","text":"What - is the history of the ship that sank in the Antarctic 107 years ago and why - has finding it been so important? https:\/\/t.co\/WTcAiKsu2G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WTcAiKsu2G","expanded_url":"https:\/\/www.standard.co.uk\/news\/world\/endurance-ship-found-antarctic-who-was-ernest-shackleton-history-death-b986968.html?utm_medium=Social&utm_source=Twitter#Echobox=1646833838-1","display_url":"standard.co.uk\/news\/world\/end\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207630336496164867\/l1qFXE1l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207630336496164867\/l1qFXE1l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201158033939845121\/1576756700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1160604596949147649,"id_str":"1160604596949147649","name":"\u06a9\u0644\u064a\u0648\u0627\u0644 - \u062e\u067c\u06a9","screen_name":"XubairLeftist","location":"\u06a9\u0648\u0632\u0647 - \u067e\u0634\u062a\u0648\u0646\u062e\u0648\u0627\u060c \u06a9\u0631\u06a9","description":"Pashteen - School of Thought | Girls Education | Stop Honor Killing | Peace and Conflict - Studies | Strictly not into romantic poetry | Nonviolence","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":32,"listed_count":0,"created_at":"Sun - Aug 11 17:31:13 +0000 2019","favourites_count":12726,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6140,"lang":null,"status":{"created_at":"Fri - Aug 06 10:27:15 +0000 2021","id":1423591490559913987,"id_str":"1423591490559913987","text":"RT - @moazamkhan13: #selected #niazi #\u062a\u0628\u062f\u06cc\u0644\u06cc https:\/\/t.co\/Bk7WrNWQeJ","truncated":false,"entities":{"hashtags":[{"text":"selected","indices":[18,27]},{"text":"niazi","indices":[28,34]},{"text":"\u062a\u0628\u062f\u06cc\u0644\u06cc","indices":[35,42]}],"symbols":[],"user_mentions":[{"screen_name":"moazamkhan13","name":"Moazzam - Durrani","id":1184787127,"id_str":"1184787127","indices":[3,16]}],"urls":[],"media":[{"id":1423403743387832322,"id_str":"1423403743387832322","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","url":"https:\/\/t.co\/Bk7WrNWQeJ","display_url":"pic.twitter.com\/Bk7WrNWQeJ","expanded_url":"https:\/\/twitter.com\/moazamkhan13\/status\/1423403805757124614\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":426,"h":426,"resize":"fit"},"large":{"w":426,"h":426,"resize":"fit"},"medium":{"w":426,"h":426,"resize":"fit"}},"source_status_id":1423403805757124614,"source_status_id_str":"1423403805757124614","source_user_id":1184787127,"source_user_id_str":"1184787127"}]},"extended_entities":{"media":[{"id":1423403743387832322,"id_str":"1423403743387832322","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","url":"https:\/\/t.co\/Bk7WrNWQeJ","display_url":"pic.twitter.com\/Bk7WrNWQeJ","expanded_url":"https:\/\/twitter.com\/moazamkhan13\/status\/1423403805757124614\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":426,"h":426,"resize":"fit"},"large":{"w":426,"h":426,"resize":"fit"},"medium":{"w":426,"h":426,"resize":"fit"}},"source_status_id":1423403805757124614,"source_status_id_str":"1423403805757124614","source_user_id":1184787127,"source_user_id_str":"1184787127","video_info":{"aspect_ratio":[1,1],"duration_millis":44979,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/vid\/426x426\/ZcEDAOAl3e2A4IsX.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/vid\/320x320\/5p17o4cF3x8HMyDP.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/pl\/nkZRTFdahRJq9Tnq.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Aug 05 22:01:27 +0000 2021","id":1423403805757124614,"id_str":"1423403805757124614","text":"#selected - #niazi #\u062a\u0628\u062f\u06cc\u0644\u06cc https:\/\/t.co\/Bk7WrNWQeJ","truncated":false,"entities":{"hashtags":[{"text":"selected","indices":[0,9]},{"text":"niazi","indices":[10,16]},{"text":"\u062a\u0628\u062f\u06cc\u0644\u06cc","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1423403743387832322,"id_str":"1423403743387832322","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","url":"https:\/\/t.co\/Bk7WrNWQeJ","display_url":"pic.twitter.com\/Bk7WrNWQeJ","expanded_url":"https:\/\/twitter.com\/moazamkhan13\/status\/1423403805757124614\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":426,"h":426,"resize":"fit"},"large":{"w":426,"h":426,"resize":"fit"},"medium":{"w":426,"h":426,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1423403743387832322,"id_str":"1423403743387832322","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1423403743387832322\/pu\/img\/MCM3lyY0YGFaNeHc.jpg","url":"https:\/\/t.co\/Bk7WrNWQeJ","display_url":"pic.twitter.com\/Bk7WrNWQeJ","expanded_url":"https:\/\/twitter.com\/moazamkhan13\/status\/1423403805757124614\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":426,"h":426,"resize":"fit"},"large":{"w":426,"h":426,"resize":"fit"},"medium":{"w":426,"h":426,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":44979,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/vid\/426x426\/ZcEDAOAl3e2A4IsX.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/vid\/320x320\/5p17o4cF3x8HMyDP.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1423403743387832322\/pu\/pl\/nkZRTFdahRJq9Tnq.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1420950608190771201\/0XQ3SvOG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1420950608190771201\/0XQ3SvOG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160604596949147649\/1625675339","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1036205391175143425,"id_str":"1036205391175143425","name":"@Rayhay04","screen_name":"rayhay04","location":"","description":"Humble, - Articulate and Resourceful","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":219,"listed_count":0,"created_at":"Sun - Sep 02 10:53:11 +0000 2018","favourites_count":938,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Fri - May 28 19:13:50 +0000 2021","id":1398356859820597252,"id_str":"1398356859820597252","text":"Chelsea - will be bringing the trophy home again #NeverWatchingAlone @Heineken_NG yes","truncated":false,"entities":{"hashtags":[{"text":"NeverWatchingAlone","indices":[47,66]}],"symbols":[],"user_mentions":[{"screen_name":"Heineken_NG","name":"Heineken - Nigeria","id":368230671,"id_str":"368230671","indices":[67,79]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246462432555479040\/mkWL0J6F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246462432555479040\/mkWL0J6F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1272588627134971904,"id_str":"1272588627134971904","name":"Ronald - Burgoyne","screen_name":"robert25665812","location":"Park City, Utah","description":"Outdoorsman, - dog liver. Fighter of liberal bullying. Doctor of philosophy, vegan cowboy.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":214,"listed_count":0,"created_at":"Mon - Jun 15 17:56:01 +0000 2020","favourites_count":428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":130,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349436973216268288\/EMzwTlc6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349436973216268288\/EMzwTlc6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1272588627134971904\/1604629095","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1164066516775690240,"id_str":"1164066516775690240","name":"Mendro - Chenketa","screen_name":"chenketa","location":"Zimbabwe Gweru","description":"#GGMU&For\u00e7a - Bar\u00e7a~For oll yor motor spares & Accessories","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":1757,"listed_count":0,"created_at":"Wed - Aug 21 06:48:16 +0000 2019","favourites_count":6565,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":254,"lang":null,"status":{"created_at":"Sun - Mar 13 11:28:15 +0000 2022","id":1502969784081727494,"id_str":"1502969784081727494","text":"@MISSCHINDIYA - \ud83d\ude02\ud83d\ude02 hanzvadzi zviriko here izvi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MISSCHINDIYA","name":"MISSCHINDIYA - \ud83c\uddff\ud83c\uddfc","id":238541521,"id_str":"238541521","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502909386158747651,"in_reply_to_status_id_str":"1502909386158747651","in_reply_to_user_id":238541521,"in_reply_to_user_id_str":"238541521","in_reply_to_screen_name":"MISSCHINDIYA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"sl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169572287588253696\/UV874oJu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169572287588253696\/UV874oJu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1164066516775690240\/1602667625","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":222167784,"id_str":"222167784","name":"The - great","screen_name":"aolutayoabiodun","location":"Ibadan","description":"I - am easy going guy that does not involve in anything that i cant say i am into - it.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":526,"friends_count":3195,"listed_count":0,"created_at":"Thu - Dec 02 17:06:14 +0000 2010","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Mon - Jan 31 20:19:15 +0000 2022","id":1488245512276955142,"id_str":"1488245512276955142","text":"@Nas07Nasir - @finegirljannah Which network","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nas07Nasir","name":"philanthropist - to be.","id":1165023075722641408,"id_str":"1165023075722641408","indices":[0,11]},{"screen_name":"finegirljannah","name":"jannah","id":1360639770544726022,"id_str":"1360639770544726022","indices":[12,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1488235758255329287,"in_reply_to_status_id_str":"1488235758255329287","in_reply_to_user_id":1165023075722641408,"in_reply_to_user_id_str":"1165023075722641408","in_reply_to_screen_name":"Nas07Nasir","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171735780739493888\/sVJw612q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171735780739493888\/sVJw612q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1179644026275975169,"id_str":"1179644026275975169","name":"Made - in Rwanda","screen_name":"SayinzogaB","location":"Kigali Rwanda","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":593,"listed_count":0,"created_at":"Thu - Oct 03 06:27:25 +0000 2019","favourites_count":223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":410,"lang":null,"status":{"created_at":"Thu - May 13 18:21:09 +0000 2021","id":1392907784291819523,"id_str":"1392907784291819523","text":"@reg_rwanda - @Nduba_Sector Mwabishyize mukinyarwanda bamwe tukabasha kubyunva, cyokora - menyemo Rwanda Energy Group (REG).","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"reg_rwanda","name":"Rwanda - Energy Group","id":478609910,"id_str":"478609910","indices":[0,11]},{"screen_name":"Nduba_Sector","name":"Nduba - Sector","id":1358817469591347202,"id_str":"1358817469591347202","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1392906859024162830,"in_reply_to_status_id_str":"1392906859024162830","in_reply_to_user_id":478609910,"in_reply_to_user_id_str":"478609910","in_reply_to_screen_name":"reg_rwanda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388568445206339585\/K4GDNutQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388568445206339585\/K4GDNutQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957680880,"id_str":"957680880","name":"Parampreet - Singh \ud83c\udf3b","screen_name":"singhp_p","location":"New York","description":"International - Justice Program associate director @HRW. Mostly Asia\/justice + animals. Opinions - my own, RTs not endorsements. She\/her.","url":"https:\/\/t.co\/NjpyPzBuxS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NjpyPzBuxS","expanded_url":"http:\/\/www.hrw.org\/topic\/international-justice","display_url":"hrw.org\/topic\/internat\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4506,"friends_count":1649,"listed_count":117,"created_at":"Mon - Nov 19 15:50:20 +0000 2012","favourites_count":3005,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4463,"lang":null,"status":{"created_at":"Fri - Mar 25 18:30:33 +0000 2022","id":1507424714586796034,"id_str":"1507424714586796034","text":"RT - @waiwainu: \u201cBut this Myanmar, inclusive and democratic, can only take - root through a pursuit of justice that will confront the country\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"waiwainu","name":"Wai - Wai Nu","id":1365169573,"id_str":"1365169573","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:55:21 +0000 2022","id":1507355461498064901,"id_str":"1507355461498064901","text":"\u201cBut - this Myanmar, inclusive and democratic, can only take root through a pursuit - of justice that will confront the\u2026 https:\/\/t.co\/83FzfrsUqm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/83FzfrsUqm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507355461498064901","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":91,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242839596955811840\/snV4s1R4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242839596955811840\/snV4s1R4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957680880\/1585150997","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1119798348414763009,"id_str":"1119798348414763009","name":"Sadeendradevan","screen_name":"Sadeendradevan1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":247,"listed_count":0,"created_at":"Sun - Apr 21 03:01:45 +0000 2019","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - Sep 18 13:44:05 +0000 2021","id":1439223703670198274,"id_str":"1439223703670198274","text":"RT - @ReallySwara: Nafrati Chintuon aur Sanghi bhakton ke weekend plans! Cho chweet! - In bechaaron ko koi party pe bhi nahi bulaata kya?! \ud83e\udd7a\ud83e\udd7a\ud83d\ude2d\ud83d\ude2d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallySwara","name":"Swara - Bhasker","id":1546101560,"id_str":"1546101560","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Sep 18 07:41:18 +0000 2021","id":1439132407442014210,"id_str":"1439132407442014210","text":"Nafrati - Chintuon aur Sanghi bhakton ke weekend plans! Cho chweet! In bechaaron ko - koi party pe bhi nahi bulaata kya\u2026 https:\/\/t.co\/UeAdOsAR7Z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UeAdOsAR7Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1439132407442014210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1184,"favorite_count":11236,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1184,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2775874323,"id_str":"2775874323","name":"emad","screen_name":"frmr1968","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":308,"listed_count":0,"created_at":"Fri - Sep 19 14:09:43 +0000 2014","favourites_count":165,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Mon - Feb 21 19:01:06 +0000 2022","id":1495835990988046341,"id_str":"1495835990988046341","text":"@we_konami - MESSI \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"we_konami","name":"eFootball\u2122\u516c\u5f0f","id":321798646,"id_str":"321798646","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1494225279027671040,"in_reply_to_status_id_str":"1494225279027671040","in_reply_to_user_id":321798646,"in_reply_to_user_id_str":"321798646","in_reply_to_screen_name":"we_konami","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512966962620952577\/JurGkagK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512966962620952577\/JurGkagK_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":100055129,"id_str":"100055129","name":"Gregg - Rice","screen_name":"RiceGregg","location":"Portland, Oregon","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":221,"friends_count":2914,"listed_count":2,"created_at":"Mon - Dec 28 21:45:11 +0000 2009","favourites_count":2175,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":766,"lang":null,"status":{"created_at":"Fri - Mar 18 22:04:01 +0000 2022","id":1504941720747724800,"id_str":"1504941720747724800","text":"RT - @CoachJonBeck: The announcers just shared an interesting stat during Loyola - Chicago vs. Ohio State\u2026 This season there are 430 players wh\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoachJonBeck","name":"Jon - Beck","id":85164967,"id_str":"85164967","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 17:05:19 +0000 2022","id":1504866553044602896,"id_str":"1504866553044602896","text":"The - announcers just shared an interesting stat during Loyola Chicago vs. Ohio - State\u2026 This season there are 430 play\u2026 https:\/\/t.co\/yI8BgFQqtS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yI8BgFQqtS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504866553044602896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":112,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1419308996771475462\/LJc0uToL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1419308996771475462\/LJc0uToL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823998653568319488,"id_str":"823998653568319488","name":"Vishal - Jain","screen_name":"VishalJain","location":"Summit, NJ","description":"Head - of #FinancialWellness Strategy & Development for @Prudential. Helping companies - & people create\/protect financial wellness. https:\/\/t.co\/htBzBFH72y","url":"https:\/\/t.co\/CmZZSrIQCx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CmZZSrIQCx","expanded_url":"https:\/\/www.prudential.com\/employers\/financial-wellness","display_url":"prudential.com\/employers\/fina\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/htBzBFH72y","expanded_url":"http:\/\/pru.us\/disclaimer","display_url":"pru.us\/disclaimer","indices":[129,152]}]}},"protected":false,"followers_count":3973,"friends_count":912,"listed_count":30,"created_at":"Tue - Jan 24 20:59:22 +0000 2017","favourites_count":1541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2174,"lang":null,"status":{"created_at":"Thu - Mar 24 15:07:24 +0000 2022","id":1507011204610359305,"id_str":"1507011204610359305","text":"Learn - more about the @Prudential Group Insurance product portfolio\u23e4as well - as how it can help protect employee\u2026 https:\/\/t.co\/QtQRSRotEd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Prudential","name":"Prudential","id":1194947442,"id_str":"1194947442","indices":[21,32]}],"urls":[{"url":"https:\/\/t.co\/QtQRSRotEd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507011204610359305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/hearsaysystems.com\" rel=\"nofollow\"\u003eHearsay Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/824000657975689216\/SME4aR3Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/824000657975689216\/SME4aR3Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823998653568319488\/1587502194","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1339176224,"id_str":"1339176224","name":"muhammad","screen_name":"muhamma98312170","location":"bida - niger state nigeria","description":"i was born in bida i atend all my school - in bida,and i travel all round the country from north to south i always pray - to meet good people in life.","url":"https:\/\/t.co\/b1Vg5Oy98H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b1Vg5Oy98H","expanded_url":"http:\/\/facebook.com\/twitter","display_url":"facebook.com\/twitter","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":2959,"listed_count":0,"created_at":"Tue - Apr 09 13:17:57 +0000 2013","favourites_count":2297,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1882,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393978945150853127\/poOPGeH-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393978945150853127\/poOPGeH-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1339176224\/1382273608","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292809077882486786,"id_str":"1292809077882486786","name":"Tom - ouma","screen_name":"Tomouma90885097","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":44,"listed_count":0,"created_at":"Mon - Aug 10 13:05:08 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Sep 24 14:06:14 +0000 2020","id":1309132035945095176,"id_str":"1309132035945095176","text":"@susankihika - Soon or later we know the truth","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susankihika","name":"Sen. - Susan Kihika","id":1554189314,"id_str":"1554189314","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1308838816086732803,"in_reply_to_status_id_str":"1308838816086732803","in_reply_to_user_id":1554189314,"in_reply_to_user_id_str":"1554189314","in_reply_to_screen_name":"susankihika","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292809416161599488\/cHskDX8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292809416161599488\/cHskDX8t_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2475245599,"id_str":"2475245599","name":"Ronggowarsito","screen_name":"ramadhank1440","location":"","description":"langkahku.. - ibadahku..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":1904,"listed_count":7,"created_at":"Sat - May 03 09:41:03 +0000 2014","favourites_count":14858,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2309,"lang":null,"status":{"created_at":"Fri - Mar 18 06:59:22 +0000 2022","id":1504714058221916160,"id_str":"1504714058221916160","text":"@DokterTifa - Kendil nya buat nyimpen minyak goreng..","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DokterTifa","name":"Dokter - Tifa","id":1502822366946402304,"id_str":"1502822366946402304","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504627500160516099,"in_reply_to_status_id_str":"1504627500160516099","in_reply_to_user_id":1502822366946402304,"in_reply_to_user_id_str":"1502822366946402304","in_reply_to_screen_name":"DokterTifa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424543059404984321\/NJeV7D9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424543059404984321\/NJeV7D9x_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":846371924636827648,"id_str":"846371924636827648","name":"katiba - mpya","screen_name":"bichwanene","location":"Lakes of the Four Seasons, IN","description":"Democracy, - Truth and freedom of speech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":480,"friends_count":349,"listed_count":0,"created_at":"Mon - Mar 27 14:42:46 +0000 2017","favourites_count":65606,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2597,"lang":null,"status":{"created_at":"Sun - Mar 20 17:18:58 +0000 2022","id":1505594759926136832,"id_str":"1505594759926136832","text":"@RussianEmbassy - @mfa_russia @RusembUkraine @RusMission_EU @RusEmbUSA @BBCWorld @SkyNewsBiz - @ftworldnews\u2026 https:\/\/t.co\/KNJz52L929","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RussianEmbassy","name":"Russian - Embassy, UK","id":114718372,"id_str":"114718372","indices":[0,15]},{"screen_name":"mfa_russia","name":"MFA - Russia \ud83c\uddf7\ud83c\uddfa","id":255471924,"id_str":"255471924","indices":[16,27]},{"screen_name":"RusembUkraine","name":"RusEmbassy - Ukraine","id":1256490685,"id_str":"1256490685","indices":[28,42]},{"screen_name":"RusMission_EU","name":"RussianMissionEU","id":3306657923,"id_str":"3306657923","indices":[43,57]},{"screen_name":"RusEmbUSA","name":"Russian - Embassy in USA \ud83c\uddf7\ud83c\uddfa","id":1267887043,"id_str":"1267887043","indices":[58,68]},{"screen_name":"BBCWorld","name":"BBC - News (World)","id":742143,"id_str":"742143","indices":[69,78]},{"screen_name":"SkyNewsBiz","name":"Sky - News Business","id":113050195,"id_str":"113050195","indices":[79,90]},{"screen_name":"ftworldnews","name":"FT - World News","id":312677640,"id_str":"312677640","indices":[91,103]}],"urls":[{"url":"https:\/\/t.co\/KNJz52L929","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505594759926136832","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505190096747864065,"in_reply_to_status_id_str":"1505190096747864065","in_reply_to_user_id":114718372,"in_reply_to_user_id_str":"114718372","in_reply_to_screen_name":"RussianEmbassy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421891574145880067\/jvwZT6GW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421891574145880067\/jvwZT6GW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846371924636827648\/1624090172","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251058379436548098,"id_str":"1251058379436548098","name":"Chibuzo","screen_name":"Chibuzo56516736","location":"aba - ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":253,"listed_count":0,"created_at":"Fri - Apr 17 08:02:27 +0000 2020","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Sun - Nov 22 20:35:25 +0000 2020","id":1330610861174644740,"id_str":"1330610861174644740","text":"RT - @MaziNnamdiKanu: \u2018In 2018, FGN was ORDERED by an international tribunal - to reverse the declaration of #IPOB and its members as TERRORIST\u2026","truncated":false,"entities":{"hashtags":[{"text":"IPOB","indices":[105,110]}],"symbols":[],"user_mentions":[{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 22 06:47:40 +0000 2020","id":1330402550416289795,"id_str":"1330402550416289795","text":"\u2018In - 2018, FGN was ORDERED by an international tribunal to reverse the declaration - of #IPOB and its members as TERRO\u2026 https:\/\/t.co\/evu5YxLcW4","truncated":true,"entities":{"hashtags":[{"text":"IPOB","indices":[85,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/evu5YxLcW4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1330402550416289795","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7198,"favorite_count":6417,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7198,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251059543049674753\/p9yGrt9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251059543049674753\/p9yGrt9b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2896038449,"id_str":"2896038449","name":"Elkan - Abramowitz","screen_name":"ElkanAbra","location":"","description":"white-collar - litigator, former federal prosecutor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":217,"listed_count":0,"created_at":"Fri - Nov 28 15:13:23 +0000 2014","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Mon - Oct 28 15:28:24 +0000 2019","id":1188839944334331905,"id_str":"1188839944334331905","text":"J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538352895675359232\/YhYkkKpd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538352895675359232\/YhYkkKpd_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":956976573973897216,"id_str":"956976573973897216","name":"Donald - Gandenberger","screen_name":"DGandenberger","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":731,"listed_count":0,"created_at":"Fri - Jan 26 19:46:09 +0000 2018","favourites_count":108185,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16613,"lang":null,"status":{"created_at":"Fri - Mar 25 19:26:10 +0000 2022","id":1507438710211559426,"id_str":"1507438710211559426","text":"RT - @PalmerReport: Fun fact: Supreme Court justices can be criminally indicted","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PalmerReport","name":"Palmer - Report","id":15115280,"id_str":"15115280","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:23:39 +0000 2022","id":1507166287104987138,"id_str":"1507166287104987138","text":"Fun - fact: Supreme Court justices can be criminally indicted","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3623,"favorite_count":21829,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3623,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2260408692,"id_str":"2260408692","name":"bobby - vijan","screen_name":"bobbyrodrix","location":"Dehradun, delhi","description":"COUNTRY - FIRST \ud83d\udea9 \nDangerous when In mood.\ud83d\ude09","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":56,"friends_count":304,"listed_count":1,"created_at":"Tue - Dec 24 15:37:10 +0000 2013","favourites_count":1393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":834,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313878446527844354\/gxLvGxmK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313878446527844354\/gxLvGxmK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2260408692\/1480179179","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3347520494,"id_str":"3347520494","name":"\u044f\u028c\u0448\u0438A$M\ud83c\udfad","screen_name":"MSAnwarsity","location":"\u06c1\u0646\u062f\u0648\u0633\u062a\u0627\u0646","description":"Only - cowards hide behind silence.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1435,"friends_count":2623,"listed_count":4,"created_at":"Wed - Aug 26 10:42:47 +0000 2015","favourites_count":16176,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9836,"lang":null,"status":{"created_at":"Sat - Mar 26 09:39:55 +0000 2022","id":1507653566127030274,"id_str":"1507653566127030274","text":"@rashmidTOI - @SurgujaDist @TS_SinghDeo Why complaining, everybody busy watching Kashmir - File.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rashmidTOI","name":"RASHMI - DROLIA","id":3580215554,"id_str":"3580215554","indices":[0,11]},{"screen_name":"SurgujaDist","name":"Surguja","id":856847361955565569,"id_str":"856847361955565569","indices":[12,24]},{"screen_name":"TS_SinghDeo","name":"T - S Singhdeo","id":470241578,"id_str":"470241578","indices":[25,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507593902668148741,"in_reply_to_status_id_str":"1507593902668148741","in_reply_to_user_id":3580215554,"in_reply_to_user_id_str":"3580215554","in_reply_to_screen_name":"rashmidTOI","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1B95E0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259794011042140161\/jmfHciJg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259794011042140161\/jmfHciJg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3347520494\/1622058713","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":360640739,"id_str":"360640739","name":"crIstina - benitez","screen_name":"crisbentas","location":"Panama","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":1205,"listed_count":0,"created_at":"Tue - Aug 23 14:46:01 +0000 2011","favourites_count":22530,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":336,"lang":null,"status":{"created_at":"Sat - Jan 22 15:19:54 +0000 2022","id":1484908687974178819,"id_str":"1484908687974178819","text":"RT - @rrarias: Ha muerto Hannia Woodman: mujer de teatro, directora, actriz, maestra - y, sobretodo, ser humano excepcional. Dedic\u00f3 muchos a\u00f1o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rrarias","name":"Ramon - R. Arias","id":33225931,"id_str":"33225931","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 22 14:57:17 +0000 2022","id":1484902999537463296,"id_str":"1484902999537463296","text":"Ha - muerto Hannia Woodman: mujer de teatro, directora, actriz, maestra y, sobretodo, ser - humano excepcional. Dedic\u00f3\u2026 https:\/\/t.co\/9KjiMitpxK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9KjiMitpxK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484902999537463296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":378,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":54,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295407292536565762\/JT5RB1qu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295407292536565762\/JT5RB1qu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1089444594260107264,"id_str":"1089444594260107264","name":"jared - osoro","screen_name":"jaredos02261408","location":"Nairobi, Kenya","description":"Detectivr","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":254,"listed_count":0,"created_at":"Sun - Jan 27 08:46:46 +0000 2019","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Wed - Feb 16 18:21:27 +0000 2022","id":1494014073733849091,"id_str":"1494014073733849091","text":"@Xiaomi_Kenya - 29000","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xiaomi_Kenya","name":"Xiaomi - Kenya","id":942170990288822274,"id_str":"942170990288822274","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1493894334076395524,"in_reply_to_status_id_str":"1493894334076395524","in_reply_to_user_id":942170990288822274,"in_reply_to_user_id_str":"942170990288822274","in_reply_to_screen_name":"Xiaomi_Kenya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090825487570608128\/qYly_EGN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090825487570608128\/qYly_EGN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2713946367,"id_str":"2713946367","name":"Milkman - SA addition","screen_name":"milligan_hein","location":"","description":"Love, - live en lekker braai..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":634,"listed_count":6,"created_at":"Wed - Jul 16 06:19:29 +0000 2014","favourites_count":2815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":618,"lang":null,"status":{"created_at":"Sat - Mar 26 06:25:43 +0000 2022","id":1507604691387092995,"id_str":"1507604691387092995","text":"RT - @OfficialTravlad: $10,000 ETH giveaway to buy a @CBCreepz ! ENDS IN ONLY 48HRS!\n\nI - will send $10,000 in #ETH to someone that retweets an\u2026","truncated":false,"entities":{"hashtags":[{"text":"ETH","indices":[107,111]}],"symbols":[],"user_mentions":[{"screen_name":"OfficialTravlad","name":"Travladd - Crypto","id":1103218563383549952,"id_str":"1103218563383549952","indices":[3,19]},{"screen_name":"CBCreepz","name":"Creepz - \ud83e\udd8e","id":1434827896875532291,"id_str":"1434827896875532291","indices":[51,60]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:47:55 +0000 2022","id":1507429086204989446,"id_str":"1507429086204989446","text":"$10,000 - ETH giveaway to buy a @CBCreepz ! ENDS IN ONLY 48HRS!\n\nI will send $10,000 - in #ETH to someone that retweets\u2026 https:\/\/t.co\/KNwenmzEDs","truncated":true,"entities":{"hashtags":[{"text":"ETH","indices":[86,90]}],"symbols":[],"user_mentions":[{"screen_name":"CBCreepz","name":"Creepz - \ud83e\udd8e","id":1434827896875532291,"id_str":"1434827896875532291","indices":[30,39]}],"urls":[{"url":"https:\/\/t.co\/KNwenmzEDs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507429086204989446","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4815,"favorite_count":3726,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4815,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364909006356160518\/pM5NRTXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364909006356160518\/pM5NRTXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2713946367\/1421821308","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307653468165996544,"id_str":"1307653468165996544","name":"Sibirinan - Zana Coulibaly","screen_name":"SibirinanC","location":"Mali","description":"husband, - father, teacher, Book writer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":220,"listed_count":0,"created_at":"Sun - Sep 20 12:11:45 +0000 2020","favourites_count":1870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Sat - Oct 09 13:45:37 +0000 2021","id":1446834235785060357,"id_str":"1446834235785060357","text":"https:\/\/t.co\/mwd2nheR9P","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1446834126728859650,"id_str":"1446834126728859650","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBQv-PyWEAIn-wb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBQv-PyWEAIn-wb.jpg","url":"https:\/\/t.co\/mwd2nheR9P","display_url":"pic.twitter.com\/mwd2nheR9P","expanded_url":"https:\/\/twitter.com\/SibirinanC\/status\/1446834235785060357\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":670,"h":1080,"resize":"fit"},"small":{"w":422,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1446834126728859650,"id_str":"1446834126728859650","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBQv-PyWEAIn-wb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBQv-PyWEAIn-wb.jpg","url":"https:\/\/t.co\/mwd2nheR9P","display_url":"pic.twitter.com\/mwd2nheR9P","expanded_url":"https:\/\/twitter.com\/SibirinanC\/status\/1446834235785060357\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":670,"h":1080,"resize":"fit"},"small":{"w":422,"h":680,"resize":"fit"}}},{"id":1446834139710251008,"id_str":"1446834139710251008","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBQv_AJWYAAoYYd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBQv_AJWYAAoYYd.jpg","url":"https:\/\/t.co\/mwd2nheR9P","display_url":"pic.twitter.com\/mwd2nheR9P","expanded_url":"https:\/\/twitter.com\/SibirinanC\/status\/1446834235785060357\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":798,"resize":"fit"},"large":{"w":2048,"h":1361,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":452,"resize":"fit"}}},{"id":1446834170685267968,"id_str":"1446834170685267968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBQwAziXoAAx19G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBQwAziXoAAx19G.jpg","url":"https:\/\/t.co\/mwd2nheR9P","display_url":"pic.twitter.com\/mwd2nheR9P","expanded_url":"https:\/\/twitter.com\/SibirinanC\/status\/1446834235785060357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":437,"h":680,"resize":"fit"},"medium":{"w":771,"h":1200,"resize":"fit"},"large":{"w":1316,"h":2048,"resize":"fit"}}},{"id":1446834201777655812,"id_str":"1446834201777655812","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBQwCnXX0AQsqFY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBQwCnXX0AQsqFY.jpg","url":"https:\/\/t.co\/mwd2nheR9P","display_url":"pic.twitter.com\/mwd2nheR9P","expanded_url":"https:\/\/twitter.com\/SibirinanC\/status\/1446834235785060357\/photo\/1","type":"photo","sizes":{"medium":{"w":748,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1277,"h":2048,"resize":"fit"},"small":{"w":424,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396004170155577344\/wmFVzagf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396004170155577344\/wmFVzagf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2232095628,"id_str":"2232095628","name":"Nathan - Hobson","screen_name":"147Hobson","location":"Ontario, Canada","description":"Proud - dad, husband and educator. Huge dog lover and Christian too. Crave justice - and compassion for all. Opinions are my own. Idiot comments will be blocked.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":915,"listed_count":0,"created_at":"Thu - Dec 05 22:25:01 +0000 2013","favourites_count":30148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10137,"lang":null,"status":{"created_at":"Sat - Mar 26 04:11:48 +0000 2022","id":1507570993669287941,"id_str":"1507570993669287941","text":"RT - @FPWellman: I love dogs so much.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FPWellman","name":"Fred - Wellman","id":42518865,"id_str":"42518865","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:57:33 +0000 2022","id":1507537207493595146,"id_str":"1507537207493595146","text":"I - love dogs so much. https:\/\/t.co\/FkwnNzfcRd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FkwnNzfcRd","expanded_url":"https:\/\/twitter.com\/jessi_asli\/status\/1507459159461036043","display_url":"twitter.com\/jessi_asli\/sta\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507459159461036043,"quoted_status_id_str":"1507459159461036043","retweet_count":170,"favorite_count":1725,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507459159461036043,"quoted_status_id_str":"1507459159461036043","retweet_count":170,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719597857196650496,"id_str":"719597857196650496","name":"Do - or Die","screen_name":"mustafhakm","location":"Lahore, Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":544,"friends_count":524,"listed_count":2,"created_at":"Mon - Apr 11 18:47:53 +0000 2016","favourites_count":20836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23248,"lang":null,"status":{"created_at":"Fri - Mar 25 23:02:06 +0000 2022","id":1507493054881673219,"id_str":"1507493054881673219","text":"RT - @SidraYameen1: Is it mahaatta palace??","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SidraYameen1","name":"Sidra - Yameen","id":1442093801778995207,"id_str":"1442093801778995207","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:57:36 +0000 2022","id":1507491921471709191,"id_str":"1507491921471709191","text":"Is - it mahaatta palace?? https:\/\/t.co\/o6WhvtmwdC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o6WhvtmwdC","expanded_url":"https:\/\/twitter.com\/PashaDaniyal1\/status\/1507457365486206976","display_url":"twitter.com\/PashaDaniyal1\/\u2026","indices":[24,47]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507457365486206976,"quoted_status_id_str":"1507457365486206976","retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},"is_quote_status":true,"quoted_status_id":1507457365486206976,"quoted_status_id_str":"1507457365486206976","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492172198995505152\/dJ_TgDdC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492172198995505152\/dJ_TgDdC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719597857196650496\/1640130638","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273576507525529600,"id_str":"1273576507525529600","name":"esha-abel","screen_name":"AbelEsha","location":"","description":"Think - twice about it!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":274,"listed_count":0,"created_at":"Thu - Jun 18 11:21:52 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":98,"lang":null,"status":{"created_at":"Fri - Jan 07 07:29:56 +0000 2022","id":1479354600167723008,"id_str":"1479354600167723008","text":"@LucasbrownTz - @Big0047 @kigogo2014 @iHumphreyz @NesiMkunga @babalao__ @Herculses @Maichagange - @FumboKhan2019\u2026 https:\/\/t.co\/zE1sGecLoB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LucasbrownTz","name":"Baharia\ud83d\ude0e","id":1132755506718806016,"id_str":"1132755506718806016","indices":[0,13]},{"screen_name":"Big0047","name":"Big - 007\u2744\ufe0f","id":1249687012698980353,"id_str":"1249687012698980353","indices":[14,22]},{"screen_name":"kigogo2014","name":"Kigogo\ud83c\uddf9\ud83c\uddff","id":2430656918,"id_str":"2430656918","indices":[23,34]},{"screen_name":"iHumphreyz","name":"Heir - of King David","id":2897439280,"id_str":"2897439280","indices":[35,46]},{"screen_name":"NesiMkunga","name":"Nesi - Mkunga","id":2249527923,"id_str":"2249527923","indices":[47,58]},{"screen_name":"babalao__","name":"Zee - la Vyeti (PhD)","id":1247933313106554883,"id_str":"1247933313106554883","indices":[59,69]},{"screen_name":"Herculses","name":"Hercules\ud83c\uddf0\ud83c\uddea","id":959525766991052810,"id_str":"959525766991052810","indices":[70,80]},{"screen_name":"Maichagange","name":"Man - Like Sule\u2122","id":1224632874407809025,"id_str":"1224632874407809025","indices":[81,93]},{"screen_name":"FumboKhan2019","name":"Fumbo - Khan\ud83c\uddf9\ud83c\uddff","id":1190938711967617025,"id_str":"1190938711967617025","indices":[94,108]}],"urls":[{"url":"https:\/\/t.co\/zE1sGecLoB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479354600167723008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1479145372761141251,"in_reply_to_status_id_str":"1479145372761141251","in_reply_to_user_id":1132755506718806016,"in_reply_to_user_id_str":"1132755506718806016","in_reply_to_screen_name":"LucasbrownTz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"pl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273577123198926851\/P5ObDLZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273577123198926851\/P5ObDLZd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226178586731831298,"id_str":"1226178586731831298","name":"Dan - Stangerup","screen_name":"DStangerup","location":"Denmark","description":"Media - tech","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":154,"listed_count":0,"created_at":"Sat - Feb 08 16:19:04 +0000 2020","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259431950093373440\/tSRPqv8B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259431950093373440\/tSRPqv8B_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1471721324,"id_str":"1471721324","name":"Eunice - Williams","screen_name":"eunidoo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":167,"listed_count":1,"created_at":"Fri - May 31 09:09:27 +0000 2013","favourites_count":1800,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1362,"lang":null,"status":{"created_at":"Thu - Mar 17 09:39:04 +0000 2022","id":1504391860822888459,"id_str":"1504391860822888459","text":"RT - @AdvoBarryRoux: Another failed experiment of the Stellenbosch gang Mbali Ntuli - has officially resigned as a member of the Democratic All\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdvoBarryRoux","name":"Man\u2019s - NOT Barry Roux \uf8ff","id":2449502355,"id_str":"2449502355","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 09:26:07 +0000 2022","id":1504388601706127366,"id_str":"1504388601706127366","text":"Another - failed experiment of the Stellenbosch gang Mbali Ntuli has officially resigned - as a member of the Democrati\u2026 https:\/\/t.co\/zwXPfQJf0C","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zwXPfQJf0C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504388601706127366","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":429,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560782596876304384\/9JYz4zJg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560782596876304384\/9JYz4zJg_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":214137240,"id_str":"214137240","name":"Lysa - Hansen","screen_name":"lysahansen","location":"Seattle","description":"Seattle - native, downtown denizen, perpetual marketing student","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":316,"listed_count":4,"created_at":"Wed - Nov 10 17:18:33 +0000 2010","favourites_count":9096,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442495377225179136\/-ya3QfjG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442495377225179136\/-ya3QfjG_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238190160606638081,"id_str":"1238190160606638081","name":"Deb - Kupa","screen_name":"DebKupa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":175,"listed_count":0,"created_at":"Thu - Mar 12 19:48:48 +0000 2020","favourites_count":2893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1063,"lang":null,"status":{"created_at":"Mon - Mar 14 15:34:47 +0000 2022","id":1503394214666805260,"id_str":"1503394214666805260","text":"RT - @BillKristol: This is, as George W. Bush put it, \u201csome weird shit.\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillKristol","name":"Bill - Kristol","id":2800581040,"id_str":"2800581040","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 01:54:36 +0000 2022","id":1503187812123910145,"id_str":"1503187812123910145","text":"This - is, as George W. Bush put it, \u201csome weird shit.\u201d https:\/\/t.co\/2bXrEOwAkf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2bXrEOwAkf","expanded_url":"https:\/\/twitter.com\/RonFilipkowski\/status\/1503095427805155329","display_url":"twitter.com\/RonFilipkowski\u2026","indices":[54,77]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503095427805155329,"quoted_status_id_str":"1503095427805155329","retweet_count":1066,"favorite_count":9084,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1503095427805155329,"quoted_status_id_str":"1503095427805155329","retweet_count":1066,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238191066102235136\/8ig5sCf3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238191066102235136\/8ig5sCf3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":761283805,"id_str":"761283805","name":"Weizoneshocks!","screen_name":"weiz_s","location":"Africa","description":"CEO - of Shocking Llc.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":448,"friends_count":2840,"listed_count":0,"created_at":"Thu - Aug 16 10:19:26 +0000 2012","favourites_count":7887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2350,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046807322952122370\/I6MVF_3L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046807322952122370\/I6MVF_3L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761283805\/1538413467","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":480599996,"id_str":"480599996","name":"andrea - aguilar","screen_name":"dreaaguilar21","location":"Washington, DC","description":"LA - native, binge-watch enthusiast, Corgi mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":903,"listed_count":0,"created_at":"Wed - Feb 01 17:43:44 +0000 2012","favourites_count":2186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"status":{"created_at":"Fri - Dec 24 08:27:51 +0000 2021","id":1474295744131584002,"id_str":"1474295744131584002","text":"RT - @ava: Reporter: Did the suspect have a gun?\n\nCop: No. We did not find a - gun. \n\nTranslation: We shot at someone who was unarmed inside of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ava","name":"Ava - DuVernay","id":14982804,"id_str":"14982804","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 24 07:40:25 +0000 2021","id":1474283807570227200,"id_str":"1474283807570227200","text":"Reporter: - Did the suspect have a gun?\n\nCop: No. We did not find a gun. \n\nTranslation: - We shot at someone who was un\u2026 https:\/\/t.co\/r9QzbDrC2R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r9QzbDrC2R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474283807570227200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1474180131270791179,"quoted_status_id_str":"1474180131270791179","retweet_count":6103,"favorite_count":18786,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1474180131270791179,"quoted_status_id_str":"1474180131270791179","retweet_count":6103,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203101461795737601\/dlhZEZBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203101461795737601\/dlhZEZBl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3252923117,"id_str":"3252923117","name":"Capital.eth","screen_name":"HECapitaljr","location":"Mars - ","description":"\u26a0\nNews*Politics*Finance*Humor*Occasional nonsense.\n - \nETH \ud83d\ude80\n\nNot investment advice, retweets are not endorsements. - Views are my own.\n\nDigital artist.","url":"https:\/\/t.co\/XzGpZRCDh5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XzGpZRCDh5","expanded_url":"https:\/\/www.patreon.com\/JrCapital","display_url":"patreon.com\/JrCapital","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":684,"friends_count":5004,"listed_count":0,"created_at":"Thu - May 14 00:29:24 +0000 2015","favourites_count":156743,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33720,"lang":null,"status":{"created_at":"Fri - Mar 25 21:27:24 +0000 2022","id":1507469219931299841,"id_str":"1507469219931299841","text":"RT - @alisterbull1: The cost of buying a home in Atlanta is now officially considered - to be unaffordable, according to the Atlanta Fed https:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alisterbull1","name":"Alister - Bull","id":126411852,"id_str":"126411852","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:22:54 +0000 2022","id":1507452991695167488,"id_str":"1507452991695167488","text":"The - cost of buying a home in Atlanta is now officially considered to be unaffordable, - according to the Atlanta Fed\u2026 https:\/\/t.co\/HuzL8yKMEq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HuzL8yKMEq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507452991695167488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":28,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464709227423936514\/I4v1SfbX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464709227423936514\/I4v1SfbX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252923117\/1641304935","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299537567470288896,"id_str":"1299537567470288896","name":"Richard - Gilpin","screen_name":"RichardGilpin9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":159,"listed_count":0,"created_at":"Sat - Aug 29 02:41:39 +0000 2020","favourites_count":289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1007,"lang":null,"status":{"created_at":"Fri - Mar 25 17:17:26 +0000 2022","id":1507406315001466893,"id_str":"1507406315001466893","text":"@JimmySecUK - Now the Russians are using Trump talking points.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JimmySecUK","name":"Jimmy","id":4645237240,"id_str":"4645237240","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507330369422782468,"in_reply_to_status_id_str":"1507330369422782468","in_reply_to_user_id":4645237240,"in_reply_to_user_id_str":"4645237240","in_reply_to_screen_name":"JimmySecUK","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279287542748254213,"id_str":"1279287542748254213","name":"Aman - Andu","screen_name":"andu_aman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":570,"listed_count":0,"created_at":"Sat - Jul 04 05:36:07 +0000 2020","favourites_count":284,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Sun - Nov 07 10:35:57 +0000 2021","id":1457295754083590145,"id_str":"1457295754083590145","text":"RT - @gerhelase: Tesfazion. \u1235\u1208\u121d\u1295\u1273\u12ed \u1295\u1215\u12cd\u1213\u1275\u1295 - \u12a2\u1275\u12ee\u1335\u1295 \u12ab\u1265 \u1218\u1243\u1265\u122d \u12d8\u12f5\u1215\u1290\u1295 - \u1213\u12ed\u120a \u12d8\u12e8\u1208? https:\/\/t.co\/hhhEvtgpJh via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gerhelase","name":"Tesfazion - Gerhelase","id":1379910855152766985,"id_str":"1379910855152766985","indices":[3,13]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[97,105]}],"urls":[{"url":"https:\/\/t.co\/hhhEvtgpJh","expanded_url":"https:\/\/youtu.be\/btZXL6al0lo","display_url":"youtu.be\/btZXL6al0lo","indices":[69,92]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 23 23:52:32 +0000 2021","id":1452060400711839748,"id_str":"1452060400711839748","text":"Tesfazion. - \u1235\u1208\u121d\u1295\u1273\u12ed \u1295\u1215\u12cd\u1213\u1275\u1295 - \u12a2\u1275\u12ee\u1335\u1295 \u12ab\u1265 \u1218\u1243\u1265\u122d \u12d8\u12f5\u1215\u1290\u1295 - \u1213\u12ed\u120a \u12d8\u12e8\u1208? https:\/\/t.co\/hhhEvtgpJh via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[82,90]}],"urls":[{"url":"https:\/\/t.co\/hhhEvtgpJh","expanded_url":"https:\/\/youtu.be\/btZXL6al0lo","display_url":"youtu.be\/btZXL6al0lo","indices":[54,77]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"am"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"am"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392382333681033217\/C0jaxWIL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392382333681033217\/C0jaxWIL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20000755,"id_str":"20000755","name":"Dave - Beasing","screen_name":"DaveBeasing","location":"Los Angeles","description":"Sound - That BRANDS - Podcasts that Connect People & Brands","url":"https:\/\/t.co\/HIVIpA351s","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HIVIpA351s","expanded_url":"http:\/\/www.soundthatbrands.com","display_url":"soundthatbrands.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1995,"friends_count":1759,"listed_count":46,"created_at":"Tue - Feb 03 20:25:17 +0000 2009","favourites_count":6738,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3169,"lang":null,"status":{"created_at":"Fri - Mar 25 10:09:58 +0000 2022","id":1507298739169357827,"id_str":"1507298739169357827","text":"\u201cAn - ad changes your opinion about a product, but a branded podcast changes your - opinion about the people who work f\u2026 https:\/\/t.co\/ZToFkXm56x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZToFkXm56x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507298739169357827","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367630861445701636\/r08Dg30I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367630861445701636\/r08Dg30I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20000755\/1567202633","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1208373993167822848,"id_str":"1208373993167822848","name":"rachelbaro","screen_name":"rachel57842950","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":960,"listed_count":0,"created_at":"Sat - Dec 21 13:10:13 +0000 2019","favourites_count":102,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":262,"lang":null,"status":{"created_at":"Thu - Apr 01 19:18:01 +0000 2021","id":1377701804230778880,"id_str":"1377701804230778880","text":"Check - out the latest trends https:\/\/t.co\/YFhY1M4dCR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YFhY1M4dCR","expanded_url":"https:\/\/www.facebook.com\/107175078133695\/posts\/114225054095364\/?d=n","display_url":"facebook.com\/10717507813369\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208374632182624256\/qf5pYsBo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208374632182624256\/qf5pYsBo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1424406648,"id_str":"1424406648","name":"meg","screen_name":"megan_stoppelli","location":"631","description":"be - you","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":708,"friends_count":737,"listed_count":0,"created_at":"Mon - May 13 02:02:33 +0000 2013","favourites_count":5810,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11640,"lang":null,"status":{"created_at":"Fri - Mar 25 20:21:56 +0000 2022","id":1507452748018913280,"id_str":"1507452748018913280","text":"RT - @machinegunkelly: 1 hour until the headphones go in and shut the noise off - .. #MainstreamSellout","truncated":false,"entities":{"hashtags":[{"text":"MainstreamSellout","indices":[81,99]}],"symbols":[],"user_mentions":[{"screen_name":"machinegunkelly","name":"blonde - don","id":17861062,"id_str":"17861062","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:02:35 +0000 2022","id":1507191185206648841,"id_str":"1507191185206648841","text":"1 - hour until the headphones go in and shut the noise off .. #MainstreamSellout","truncated":false,"entities":{"hashtags":[{"text":"MainstreamSellout","indices":[60,78]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1266,"favorite_count":10373,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1266,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417231639378333701\/vvbRNZZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417231639378333701\/vvbRNZZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1424406648\/1594671424","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19559459,"id_str":"19559459","name":"Nicholas - Isabella","screen_name":"NycStormChaser","location":"New York, NY","description":"Photographer - \/ Storm Chaser. Videos Featured on @Weatherchannel @Gma @abcwnn @cbseveningnews. - Appearances on @bbcworld. Contact me for photo workshops","url":"https:\/\/t.co\/zvGNqKOQVk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zvGNqKOQVk","expanded_url":"https:\/\/solo.to\/nycstormchaser","display_url":"solo.to\/nycstormchaser","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14066,"friends_count":4954,"listed_count":285,"created_at":"Mon - Jan 26 21:33:36 +0000 2009","favourites_count":10618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58409,"lang":null,"status":{"created_at":"Sat - Mar 26 02:02:10 +0000 2022","id":1507538370431442948,"id_str":"1507538370431442948","text":"@WxLiz - That''s wild and totally uncalled for","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WxLiz","name":"Elizabeth - Leitman","id":735348997,"id_str":"735348997","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507537922068787204,"in_reply_to_status_id_str":"1507537922068787204","in_reply_to_user_id":735348997,"in_reply_to_user_id_str":"735348997","in_reply_to_screen_name":"WxLiz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503888306194558982\/ymWQX4tr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503888306194558982\/ymWQX4tr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19559459\/1639313669","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"2C6DA3","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":444540511,"id_str":"444540511","name":"OluOmo....","screen_name":"deartubby","location":"ABUJA,NIGERIA","description":"Regional - Manager (Abuja & North) @ Sunnet Systems & Datacom Services Ltd.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":1212,"listed_count":0,"created_at":"Fri - Dec 23 11:00:03 +0000 2011","favourites_count":632,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3175,"lang":null,"status":{"created_at":"Sat - Mar 19 14:51:51 +0000 2022","id":1505195351057252359,"id_str":"1505195351057252359","text":"one - person followed me \/\/ automatically checked by https:\/\/t.co\/H5qmnAXoKy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H5qmnAXoKy","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366476775056957443\/uL0Cjfxz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366476775056957443\/uL0Cjfxz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444540511\/1618422283","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221807088420229121,"id_str":"1221807088420229121","name":"Eric - Mangala","screen_name":"mangala_eric","location":"","description":"the king - himself","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":818,"listed_count":0,"created_at":"Mon - Jan 27 14:49:16 +0000 2020","favourites_count":4093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Sat - Mar 14 17:31:09 +0000 2020","id":1238880358181015552,"id_str":"1238880358181015552","text":"RT - @LivEchoLFC: The latest Analysing Anfield podcast is in! \ud83c\udfa7\ud83d\udd34\n\nJoin - @DistanceCovered and @DAHughes_ as they look back on Atletico Madrid a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LivEchoLFC","name":"Liverpool - FC News","id":26743580,"id_str":"26743580","indices":[3,14]},{"screen_name":"DistanceCovered","name":"Josh - Williams","id":805555220545765380,"id_str":"805555220545765380","indices":[69,85]},{"screen_name":"DAHughes_","name":"David - Hughes","id":241950034,"id_str":"241950034","indices":[90,100]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 12 18:30:00 +0000 2020","id":1238170393640349698,"id_str":"1238170393640349698","text":"The - latest Analysing Anfield podcast is in! \ud83c\udfa7\ud83d\udd34\n\nJoin @DistanceCovered - and @DAHughes_ as they look back on Atletico\u2026 https:\/\/t.co\/81CrCHg6aK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DistanceCovered","name":"Josh - Williams","id":805555220545765380,"id_str":"805555220545765380","indices":[53,69]},{"screen_name":"DAHughes_","name":"David - Hughes","id":241950034,"id_str":"241950034","indices":[74,84]}],"urls":[{"url":"https:\/\/t.co\/81CrCHg6aK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238170393640349698","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":220096776,"id_str":"220096776","name":"Philip - Byrne \ud83c\uddee\ud83c\uddea\ud83c\uddfa\ud83c\udde6","screen_name":"PhilipAByrne","location":"dublin","description":"Manchester - united supporter season ticket holder. legacy Fan since 1960","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3672,"friends_count":4308,"listed_count":7,"created_at":"Fri - Nov 26 19:36:21 +0000 2010","favourites_count":24873,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18068,"lang":null,"status":{"created_at":"Sat - Mar 26 10:34:36 +0000 2022","id":1507667328686772231,"id_str":"1507667328686772231","text":"@Marylaw59112593 - Good morning Mary","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Marylaw59112593","name":"Mary - Lawless\ud83c\uddee\ud83c\uddea\ud83c\uddfa\ud83c\udde6","id":1246916470724005888,"id_str":"1246916470724005888","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507603828237127681,"in_reply_to_status_id_str":"1507603828237127681","in_reply_to_user_id":1246916470724005888,"in_reply_to_user_id_str":"1246916470724005888","in_reply_to_screen_name":"Marylaw59112593","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504547778374115329\/wf1niztq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504547778374115329\/wf1niztq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220096776\/1613499247","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21233637,"id_str":"21233637","name":"Matt - Zopf","screen_name":"Mattzopf","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":2648,"listed_count":0,"created_at":"Wed - Feb 18 19:53:27 +0000 2009","favourites_count":10384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":155,"lang":null,"status":{"created_at":"Fri - Dec 10 18:47:03 +0000 2021","id":1469378143844765696,"id_str":"1469378143844765696","text":"RT - @ProfFeynman: Quantum Physics. https:\/\/t.co\/9aZSohC5AQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProfFeynman","name":"Prof. - Feynman","id":823518894182846464,"id_str":"823518894182846464","indices":[3,15]}],"urls":[],"media":[{"id":1469371231472263179,"id_str":"1469371231472263179","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","url":"https:\/\/t.co\/9aZSohC5AQ","display_url":"pic.twitter.com\/9aZSohC5AQ","expanded_url":"https:\/\/twitter.com\/ProfFeynman\/status\/1469371235540688901\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1172,"resize":"fit"},"medium":{"w":1125,"h":1172,"resize":"fit"},"small":{"w":653,"h":680,"resize":"fit"}},"source_status_id":1469371235540688901,"source_status_id_str":"1469371235540688901","source_user_id":823518894182846464,"source_user_id_str":"823518894182846464"}]},"extended_entities":{"media":[{"id":1469371231472263179,"id_str":"1469371231472263179","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","url":"https:\/\/t.co\/9aZSohC5AQ","display_url":"pic.twitter.com\/9aZSohC5AQ","expanded_url":"https:\/\/twitter.com\/ProfFeynman\/status\/1469371235540688901\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1172,"resize":"fit"},"medium":{"w":1125,"h":1172,"resize":"fit"},"small":{"w":653,"h":680,"resize":"fit"}},"source_status_id":1469371235540688901,"source_status_id_str":"1469371235540688901","source_user_id":823518894182846464,"source_user_id_str":"823518894182846464"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 10 18:19:36 +0000 2021","id":1469371235540688901,"id_str":"1469371235540688901","text":"Quantum - Physics. https:\/\/t.co\/9aZSohC5AQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1469371231472263179,"id_str":"1469371231472263179","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","url":"https:\/\/t.co\/9aZSohC5AQ","display_url":"pic.twitter.com\/9aZSohC5AQ","expanded_url":"https:\/\/twitter.com\/ProfFeynman\/status\/1469371235540688901\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1172,"resize":"fit"},"medium":{"w":1125,"h":1172,"resize":"fit"},"small":{"w":653,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1469371231472263179,"id_str":"1469371231472263179","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGRBWZcVIAspjZb.jpg","url":"https:\/\/t.co\/9aZSohC5AQ","display_url":"pic.twitter.com\/9aZSohC5AQ","expanded_url":"https:\/\/twitter.com\/ProfFeynman\/status\/1469371235540688901\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1172,"resize":"fit"},"medium":{"w":1125,"h":1172,"resize":"fit"},"small":{"w":653,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3761,"favorite_count":26396,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3761,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"262CCF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405165655771344900\/W9pJrMhK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405165655771344900\/W9pJrMhK_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"131211","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":161640743,"id_str":"161640743","name":"ThomasSchmitz","screen_name":"TNHASchmitz","location":"Brussels","description":"Attach\u00e9 - Digital, Telecoms, Audiovisual for Luxembourg","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":654,"friends_count":2466,"listed_count":38,"created_at":"Thu - Jul 01 10:55:14 +0000 2010","favourites_count":3970,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2225,"lang":null,"status":{"created_at":"Thu - Mar 24 16:14:38 +0000 2022","id":1507028125162651661,"id_str":"1507028125162651661","text":"RT - @Arcom_fr: \ud83d\udce3 Le 1er tour de la #Pr\u00e9sidentielle2022 approche: - l\u2019@Arcom_fr propose une rubrique qui regroupe les mesures prises par - les pl\u2026","truncated":false,"entities":{"hashtags":[{"text":"Pr\u00e9sidentielle2022","indices":[34,53]}],"symbols":[],"user_mentions":[{"screen_name":"Arcom_fr","name":"Arcom","id":314480253,"id_str":"314480253","indices":[3,12]},{"screen_name":"Arcom_fr","name":"Arcom","id":314480253,"id_str":"314480253","indices":[66,75]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:48:50 +0000 2022","id":1507006532528979971,"id_str":"1507006532528979971","text":"\ud83d\udce3 - Le 1er tour de la #Pr\u00e9sidentielle2022 approche: l\u2019@Arcom_fr propose - une rubrique qui regroupe les mesures prises\u2026 https:\/\/t.co\/OEliybdJsb","truncated":true,"entities":{"hashtags":[{"text":"Pr\u00e9sidentielle2022","indices":[20,39]}],"symbols":[],"user_mentions":[{"screen_name":"Arcom_fr","name":"Arcom","id":314480253,"id_str":"314480253","indices":[52,61]}],"urls":[{"url":"https:\/\/t.co\/OEliybdJsb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507006532528979971","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"09070A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326209802519924738\/6jLaE1x1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326209802519924738\/6jLaE1x1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161640743\/1585678138","profile_link_color":"2B33CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174381807594287105,"id_str":"1174381807594287105","name":"Koby","screen_name":"GordonKoby","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":115,"listed_count":0,"created_at":"Wed - Sep 18 17:57:00 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381977983032815617\/WKCvEqxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381977983032815617\/WKCvEqxr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311041282333192202,"id_str":"1311041282333192202","name":"THEMASTEROFTHEGALAXY","screen_name":"I997363839","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":276,"friends_count":4914,"listed_count":0,"created_at":"Tue - Sep 29 20:33:06 +0000 2020","favourites_count":17836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6382,"lang":null,"status":{"created_at":"Mon - Apr 12 19:30:52 +0000 2021","id":1381691305026277382,"id_str":"1381691305026277382","text":"@B1iz4rd - \ud83d\udd25\u2714\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"B1iz4rd","name":"Blizzard\u2744\ufe0f","id":1016711117715005441,"id_str":"1016711117715005441","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1381594435948060672,"in_reply_to_status_id_str":"1381594435948060672","in_reply_to_user_id":1016711117715005441,"in_reply_to_user_id_str":"1016711117715005441","in_reply_to_screen_name":"B1iz4rd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354628190308855808\/UXMTxmc9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354628190308855808\/UXMTxmc9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311041282333192202\/1604603177","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1067321059811229697,"id_str":"1067321059811229697","name":"Lawrence - \u201cLee\u201d Shepherd","screen_name":"Lawrenc35242679","location":"Washington, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":533,"listed_count":0,"created_at":"Tue - Nov 27 07:35:45 +0000 2018","favourites_count":1596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Fri - Mar 05 14:16:38 +0000 2021","id":1367841486016892937,"id_str":"1367841486016892937","text":"@seahavvks - The beginning of the end...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1367567380159864838,"in_reply_to_status_id_str":"1367567380159864838","in_reply_to_user_id":1363937774286569475,"in_reply_to_user_id_str":"1363937774286569475","in_reply_to_screen_name":"EIiAppIe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1067323238261407744\/SC7kV9IC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1067323238261407744\/SC7kV9IC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238515370266370050,"id_str":"1238515370266370050","name":"MD - Parvez Mosharof","screen_name":"MDParve10670182","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":97,"listed_count":0,"created_at":"Fri - Mar 13 17:21:47 +0000 2020","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Tue - Feb 22 18:01:29 +0000 2022","id":1496183376218554368,"id_str":"1496183376218554368","text":"Great - app @Dingtone, call for free. #talku #freecall https:\/\/t.co\/mHgzsAFGRw","truncated":false,"entities":{"hashtags":[{"text":"talku","indices":[36,42]},{"text":"freecall","indices":[43,52]}],"symbols":[],"user_mentions":[{"screen_name":"dingtone","name":"Dingtone","id":405185660,"id_str":"405185660","indices":[10,19]}],"urls":[{"url":"https:\/\/t.co\/mHgzsAFGRw","expanded_url":"http:\/\/dingtone.me\/ft33?i=","display_url":"dingtone.me\/ft33?i=","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/www.dingtone.me\" rel=\"nofollow\"\u003eDingtone - Free Calls - \u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238515701922631681\/YPHMgQCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238515701922631681\/YPHMgQCk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58813251,"id_str":"58813251","name":"Laurie - W","screen_name":"Nolawatt","location":"Asheville, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":741,"listed_count":1,"created_at":"Tue - Jul 21 14:46:00 +0000 2009","favourites_count":28877,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":182,"lang":null,"status":{"created_at":"Wed - Mar 23 23:21:01 +0000 2022","id":1506773039853285382,"id_str":"1506773039853285382","text":"RT - @NickKnudsenUS: Heads up: @ZelenskyyUa is making a direct appeal to us.\n\nHe - asks that on March 24th - one month after Putin\u2019s invasion b\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickKnudsenUS","name":"Nick - Knudsen \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":798953701972938752,"id_str":"798953701972938752","indices":[3,17]},{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[29,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:35:27 +0000 2022","id":1506761569799090176,"id_str":"1506761569799090176","text":"Heads - up: @ZelenskyyUa is making a direct appeal to us.\n\nHe asks that on March - 24th - one month after Putin\u2019s invas\u2026 https:\/\/t.co\/h8C93fzoXl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[10,22]}],"urls":[{"url":"https:\/\/t.co\/h8C93fzoXl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506761569799090176","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9032,"favorite_count":20193,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9032,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083203067284283392\/on4EgxZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083203067284283392\/on4EgxZJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58813251\/1477781189","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172994836061970439,"id_str":"1172994836061970439","name":"Meme - man","screen_name":"archiver57474","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":889,"listed_count":0,"created_at":"Sat - Sep 14 22:05:46 +0000 2019","favourites_count":13915,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":585,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323440162559434752\/SpoBBuQ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323440162559434752\/SpoBBuQ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172994836061970439\/1617138720","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":149629744,"id_str":"149629744","name":"XX","screen_name":"Kimmunist","location":"Texas, - USA","description":"Sexually attracted to justice and motorcycles. Married - to a mechanic. Wrangler of dogs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":346,"listed_count":1,"created_at":"Sat - May 29 19:56:49 +0000 2010","favourites_count":265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Thu - Apr 01 22:54:22 +0000 2021","id":1377756253066301444,"id_str":"1377756253066301444","text":"@seryfortexas - @NorthwesternU @TexasExes @nytimes He\u2019s wrong. You\u2019re a goddamn - fool.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NorthwesternU","name":"Northwestern","id":33639255,"id_str":"33639255","indices":[14,28]},{"screen_name":"TexasExes","name":"Texas - Exes","id":18945029,"id_str":"18945029","indices":[29,39]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[40,48]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362403397450792965\/RjwNiJVk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362403397450792965\/RjwNiJVk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149629744\/1591131047","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":842095368,"id_str":"842095368","name":"Zhino - Omar Fattah","screen_name":"zheno_omar","location":"As sulaimanyah","description":"","url":"https:\/\/t.co\/eO1WPICiLT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eO1WPICiLT","expanded_url":"https:\/\/www.avestagroup.net","display_url":"avestagroup.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":64,"friends_count":1016,"listed_count":0,"created_at":"Sun - Sep 23 17:36:15 +0000 2012","favourites_count":337,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/980926008600776706\/6riNJUfg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/980926008600776706\/6riNJUfg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842095368\/1522706004","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252891300568764417,"id_str":"1252891300568764417","name":"Rakesh - Yadav","screen_name":"RakeshY04474624","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":787,"friends_count":4462,"listed_count":0,"created_at":"Wed - Apr 22 09:27:29 +0000 2020","favourites_count":16079,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13112,"lang":null,"status":{"created_at":"Mon - Mar 29 13:45:40 +0000 2021","id":1376531004060409862,"id_str":"1376531004060409862","text":"RT - @RakeshY04474624: #GyanGanga \nBest spiritual knowledge Book Gyan Ganga is - available on free of cost.\nVisit satlok ashram YouTube channel\u2026","truncated":false,"entities":{"hashtags":[{"text":"GyanGanga","indices":[21,31]}],"symbols":[],"user_mentions":[{"screen_name":"RakeshY04474624","name":"Rakesh - Yadav","id":1252891300568764417,"id_str":"1252891300568764417","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 29 07:48:53 +0000 2021","id":1376441214711386113,"id_str":"1376441214711386113","text":"#GyanGanga - \nBest spiritual knowledge Book Gyan Ganga is available on free of cost.\nVisit - satlok ashram YouTube chan\u2026 https:\/\/t.co\/JQ6SLXLIlh","truncated":true,"entities":{"hashtags":[{"text":"GyanGanga","indices":[0,10]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JQ6SLXLIlh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1376441214711386113","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181294481766834177,"id_str":"1181294481766834177","name":"Hope-B","screen_name":"HopeB46951485","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":1674,"listed_count":1,"created_at":"Mon - Oct 07 19:45:46 +0000 2019","favourites_count":78,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Sun - May 24 16:20:33 +0000 2020","id":1264592132339314690,"id_str":"1264592132339314690","text":"RT - @UyapoNdadi: Ke tsewa ke sedidi sa madi a diaparo tsa bana. Ke togetse cashier - a ntse a itaya. Gents, bo Babymama ha gongwe ga ba itire,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UyapoNdadi","name":"Uyapo - Ndadi","id":243800821,"id_str":"243800821","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - May 24 10:39:07 +0000 2020","id":1264506205285879808,"id_str":"1264506205285879808","text":"Ke - tsewa ke sedidi sa madi a diaparo tsa bana. Ke togetse cashier a ntse a itaya. - Gents, bo Babymama ha gongwe ga b\u2026 https:\/\/t.co\/enXMafiO3x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/enXMafiO3x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1264506205285879808","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":521,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":54,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486221946295570438\/ARr75luv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486221946295570438\/ARr75luv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19755287,"id_str":"19755287","name":"HenryMCFC","screen_name":"Orchid121480","location":"St - Augustine, FL","description":"Husband, GirlDad, #MCFC fan, lifelong Dem, I - live on the corner of Grey St.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":827,"listed_count":4,"created_at":"Fri - Jan 30 05:11:08 +0000 2009","favourites_count":8912,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2849,"lang":null,"status":{"created_at":"Tue - Mar 22 16:57:36 +0000 2022","id":1506314162322001924,"id_str":"1506314162322001924","text":"@wjxt4 - Good politics here. Pretty sure Dear Leader would fail it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wjxt4","name":"News4JAX","id":16462068,"id_str":"16462068","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506296598145470483,"in_reply_to_status_id_str":"1506296598145470483","in_reply_to_user_id":16462068,"in_reply_to_user_id_str":"16462068","in_reply_to_screen_name":"wjxt4","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318318536801005568\/x_Nl0xvo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318318536801005568\/x_Nl0xvo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19755287\/1636390830","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306402371388542976,"id_str":"1306402371388542976","name":"veronica","screen_name":"veronicamsime","location":"Callao, - Peru","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":151,"listed_count":0,"created_at":"Thu - Sep 17 01:19:40 +0000 2020","favourites_count":2878,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Wed - Mar 09 06:13:26 +0000 2022","id":1501441009854652442,"id_str":"1501441009854652442","text":"RT - @gabyoyervidesb: Mi momento favorito del d\u00eda es cuando me vuelvo a dormir","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gabyoyervidesb","name":"gaby - \u263b","id":1003694656373194752,"id_str":"1003694656373194752","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 06:22:46 +0000 2022","id":1501080969406824448,"id_str":"1501080969406824448","text":"Mi - momento favorito del d\u00eda es cuando me vuelvo a dormir","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47991,"favorite_count":176974,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":47991,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424211960690847746\/NqmKsGvK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424211960690847746\/NqmKsGvK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":772747184697647104,"id_str":"772747184697647104","name":"Roy","screen_name":"Royamuni","location":"Somewhere - Peaceful ","description":"Maverick || Immigration Officer || Christian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":303,"listed_count":0,"created_at":"Mon - Sep 05 10:44:20 +0000 2016","favourites_count":661,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":168,"lang":null,"status":{"created_at":"Tue - Feb 01 00:08:08 +0000 2022","id":1488303116437143556,"id_str":"1488303116437143556","text":"@mensadonkor - @MetaB10nicNFT Definitely, ei dey be pass","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mensadonkor","name":"donkor - \ud83c\uddec\ud83c\udded","id":193740899,"id_str":"193740899","indices":[0,12]},{"screen_name":"MetaB10nicNFT","name":"Meta - B10nic NFT","id":1457572528759656449,"id_str":"1457572528759656449","indices":[13,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488302990100467715,"in_reply_to_status_id_str":"1488302990100467715","in_reply_to_user_id":193740899,"in_reply_to_user_id_str":"193740899","in_reply_to_screen_name":"mensadonkor","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325379448439533570\/L9j6BSrN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325379448439533570\/L9j6BSrN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772747184697647104\/1483875520","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3397046157,"id_str":"3397046157","name":"Zinf - FALL","screen_name":"zinfbianconero","location":"Senegal","description":"Professional - Translator EN-FR.\n\nAny opportunity to practice my English is welcome... - Constantly trying to improve my French as well.\n\n#Juventus #ForzaJuve\n#xl8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":413,"friends_count":707,"listed_count":11,"created_at":"Fri - Jul 31 13:08:23 +0000 2015","favourites_count":9884,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5909,"lang":null,"status":{"created_at":"Tue - Jun 22 17:13:47 +0000 2021","id":1407386345488662532,"id_str":"1407386345488662532","text":"RT - @ahmadou_doudou: B\u00ebg binu b\u00ebg ludul Yallah Yallah bumu dox sunu - diggante ag Yallah.\nYallah nanu Yallah teggil nattu b\u00ebg ludul moom ndax\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ahmadou_doudou","name":"\u26ab\ud83d\udd34\u26aa - A SELF-BLAMING SOUL\ud83d\udd07 \u2600\ufe0f\u26f0\ufe0f\u2764\ufe0f","id":2373319126,"id_str":"2373319126","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 22 12:40:14 +0000 2021","id":1407317505736126472,"id_str":"1407317505736126472","text":"B\u00ebg - binu b\u00ebg ludul Yallah Yallah bumu dox sunu diggante ag Yallah.\nYallah - nanu Yallah teggil nattu b\u00ebg ludul moom n\u2026 https:\/\/t.co\/aO1x64EDtn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aO1x64EDtn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1407317505736126472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":30,"favorited":false,"retweeted":false,"lang":"et"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226643535190994945\/FXyV_6mW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226643535190994945\/FXyV_6mW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3397046157\/1439810258","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221526530666438656,"id_str":"1221526530666438656","name":"Amanda - CS","screen_name":"acsorens","location":"","description":"Fervent advocate - and caregiver. Product enthusiast. Canine aficionado. NMDP\/Be The Match Advocacy - Ambassador. Unreservedly and profoundly grateful. she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":417,"listed_count":0,"created_at":"Sun - Jan 26 20:13:35 +0000 2020","favourites_count":10655,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":202,"lang":null,"status":{"created_at":"Wed - Mar 23 17:14:01 +0000 2022","id":1506680681908342786,"id_str":"1506680681908342786","text":"RT - @lyonsroar94: Let''s help this student find a match, calling in all my fellow - @BTMPublicPolicy advocates. #bethematch #drewscrew #SpreadT\u2026","truncated":false,"entities":{"hashtags":[{"text":"bethematch","indices":[108,119]},{"text":"drewscrew","indices":[120,130]}],"symbols":[],"user_mentions":[{"screen_name":"lyonsroar94","name":"Chris - Lyons","id":1280909342745800710,"id_str":"1280909342745800710","indices":[3,15]},{"screen_name":"BTMPublicPolicy","name":"NMDP\/Be - The Match Advocacy","id":978341039076495360,"id_str":"978341039076495360","indices":[80,96]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 00:02:33 +0000 2022","id":1506421101387259909,"id_str":"1506421101387259909","text":"Let''s - help this student find a match, calling in all my fellow @BTMPublicPolicy - advocates. #bethematch #drewscrew\u2026 https:\/\/t.co\/d0bymdpMmk","truncated":true,"entities":{"hashtags":[{"text":"bethematch","indices":[91,102]},{"text":"drewscrew","indices":[103,113]}],"symbols":[],"user_mentions":[{"screen_name":"BTMPublicPolicy","name":"NMDP\/Be - The Match Advocacy","id":978341039076495360,"id_str":"978341039076495360","indices":[63,79]}],"urls":[{"url":"https:\/\/t.co\/d0bymdpMmk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506421101387259909","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497739625397473280\/_6xi0J2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497739625397473280\/_6xi0J2j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221526530666438656\/1631994016","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4368480140,"id_str":"4368480140","name":"Fred - Galloway","screen_name":"Odicker1Fred","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":64,"listed_count":0,"created_at":"Thu - Nov 26 16:29:47 +0000 2015","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Sep 09 23:32:13 +0000 2021","id":1436110224050511872,"id_str":"1436110224050511872","text":"RT - @OccupyDemocrats: If you\u2019re a Democrat who is glad that @thatdaneshguy - identified \u201cCoughing Karen\u201d and got her fired from her job, and - a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]},{"screen_name":"thatdaneshguy","name":"Danesh","id":1391386607555682306,"id_str":"1391386607555682306","indices":[59,73]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 09 19:19:00 +0000 2021","id":1436046499394179108,"id_str":"1436046499394179108","text":"If - you\u2019re a Democrat who is glad that @thatdaneshguy identified \u201cCoughing - Karen\u201d and got her fired from her job, an\u2026 https:\/\/t.co\/6qpQkLsuUA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thatdaneshguy","name":"Danesh","id":1391386607555682306,"id_str":"1391386607555682306","indices":[38,52]}],"urls":[{"url":"https:\/\/t.co\/6qpQkLsuUA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1436046499394179108","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1436043956400246810,"in_reply_to_status_id_str":"1436043956400246810","in_reply_to_user_id":878284831,"in_reply_to_user_id_str":"878284831","in_reply_to_screen_name":"OccupyDemocrats","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":657,"favorite_count":2274,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":657,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":81047061,"id_str":"81047061","name":"Corina","screen_name":"stalks7","location":"Tucson, - AZ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":914,"listed_count":0,"created_at":"Fri - Oct 09 06:48:09 +0000 2009","favourites_count":7261,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Mon - Jul 12 01:27:38 +0000 2021","id":1414395997447278600,"id_str":"1414395997447278600","text":"@ImNotChris06 - Kobe was a great basketball player one of the 5 tops mr. Sharpe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ImNotChris06","name":"\ud83d\ude07","id":1305959584360796161,"id_str":"1305959584360796161","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1413918430919643142,"in_reply_to_status_id_str":"1413918430919643142","in_reply_to_user_id":1305959584360796161,"in_reply_to_user_id_str":"1305959584360796161","in_reply_to_screen_name":"ImNotChris06","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308407450945687553,"id_str":"1308407450945687553","name":"Charlotte - Jakes","screen_name":"CharlotteJakes1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":492,"listed_count":0,"created_at":"Tue - Sep 22 14:07:12 +0000 2020","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":236,"lang":null,"status":{"created_at":"Wed - Oct 13 12:07:18 +0000 2021","id":1448259043718541312,"id_str":"1448259043718541312","text":"Lunchtime - Chronicles: Red Moscato #giveaway #win https:\/\/t.co\/tQZVJjDCx3","truncated":false,"entities":{"hashtags":[{"text":"giveaway","indices":[34,43]},{"text":"win","indices":[44,48]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tQZVJjDCx3","expanded_url":"https:\/\/kingsumo.com\/g\/hk5wno\/lunchtime-chronicles-red-moscato\/d4nj7l5","display_url":"kingsumo.com\/g\/hk5wno\/lunch\u2026","indices":[49,72]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308407640821817346\/oBqyX6gH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308407640821817346\/oBqyX6gH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084470593859260416,"id_str":"1084470593859260416","name":"Sasquatch - Hunter \ud83c\uddfa\ud83c\uddf8","screen_name":"amy25676316","location":"Minnesota, - USA","description":"God bless our men and women in blue!! \ud83d\udc99\ud83d\udda4\ud83d\udc99 - Trump45\ud83c\uddfa\ud83c\uddf8 KAG! \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8 - Trust the plan! Buckle Up! I don\u2019t read my messages.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2619,"friends_count":4896,"listed_count":2,"created_at":"Sun - Jan 13 15:21:52 +0000 2019","favourites_count":11714,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6002,"lang":null,"status":{"created_at":"Sat - Mar 26 05:03:40 +0000 2022","id":1507584045160583169,"id_str":"1507584045160583169","text":"@MatthewJshow - Yup. And more. #LetsGoBrandon \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","truncated":false,"entities":{"hashtags":[{"text":"LetsGoBrandon","indices":[29,43]}],"symbols":[],"user_mentions":[{"screen_name":"MatthewJshow","name":"MatthewJshow","id":762932101,"id_str":"762932101","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507494514910543879,"in_reply_to_status_id_str":"1507494514910543879","in_reply_to_user_id":762932101,"in_reply_to_user_id_str":"762932101","in_reply_to_screen_name":"MatthewJshow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1406436395946741766\/ZQttpqRF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1406436395946741766\/ZQttpqRF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084470593859260416\/1604851030","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":196573545,"id_str":"196573545","name":"Jake - from Oregon \ud83c\uddfa\ud83c\udde6","screen_name":"AndyJacob7","location":"Pacific - Northwest","description":"Never-Trumper, Scorpio, Father of grown Sons, Dog - Dad, Erstwhile Oenophile, Postmodern Jukebox fan. My views are my own. Born - in the year of the Mustang.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":972,"friends_count":4985,"listed_count":8,"created_at":"Wed - Sep 29 12:43:16 +0000 2010","favourites_count":27906,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1570,"lang":null,"status":{"created_at":"Sat - Mar 26 02:25:56 +0000 2022","id":1507544348132446209,"id_str":"1507544348132446209","text":"RT - @Emywinst: Lindsey Graham took $800,000 from a Russian oligarch\nBut not to - be out done Scott Walker took 1.1 million. But he was not to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:10:53 +0000 2022","id":1507480164380327937,"id_str":"1507480164380327937","text":"Lindsey - Graham took $800,000 from a Russian oligarch\nBut not to be out done Scott - Walker took 1.1 million. But he w\u2026 https:\/\/t.co\/3EUTs6ghoa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3EUTs6ghoa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507480164380327937","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":870,"favorite_count":1033,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":870,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921725283316539394\/nsBoQIqT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921725283316539394\/nsBoQIqT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196573545\/1645711734","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":78426035,"id_str":"78426035","name":"Maura - Kate","screen_name":"Mauralesss","location":"St Louis, MO","description":"I - like carbs and going outside. She\/Her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":688,"listed_count":0,"created_at":"Tue - Sep 29 21:51:12 +0000 2009","favourites_count":4056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6475,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:41 +0000 2022","id":1507559136917176327,"id_str":"1507559136917176327","text":"@ReputaSianLaura - Made this for New Years this year \ud83d\ude0e\ud83e\udd70 https:\/\/t.co\/z9bxR7fW3i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReputaSianLaura","name":"\ud83e\udde3 - Si\u00e2n & Laura \ud83e\udde3","id":928346713089245185,"id_str":"928346713089245185","indices":[0,16]}],"urls":[],"media":[{"id":1507559130369863680,"id_str":"1507559130369863680","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvtCquXsAAUVK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvtCquXsAAUVK3.jpg","url":"https:\/\/t.co\/z9bxR7fW3i","display_url":"pic.twitter.com\/z9bxR7fW3i","expanded_url":"https:\/\/twitter.com\/Mauralesss\/status\/1507559136917176327\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1440,"h":1800,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507559130369863680,"id_str":"1507559130369863680","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvtCquXsAAUVK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvtCquXsAAUVK3.jpg","url":"https:\/\/t.co\/z9bxR7fW3i","display_url":"pic.twitter.com\/z9bxR7fW3i","expanded_url":"https:\/\/twitter.com\/Mauralesss\/status\/1507559136917176327\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1440,"h":1800,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507325522866491395,"in_reply_to_status_id_str":"1507325522866491395","in_reply_to_user_id":928346713089245185,"in_reply_to_user_id_str":"928346713089245185","in_reply_to_screen_name":"ReputaSianLaura","geo":null,"coordinates":null,"place":{"id":"7f7d58e5229c6b6c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7f7d58e5229c6b6c.json","place_type":"admin","name":"Tennessee","full_name":"Tennessee, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-90.310298,34.982924],[-81.646901,34.982924],[-81.646901,36.678119],[-90.310298,36.678119]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417200429654552581\/u9EUnovG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417200429654552581\/u9EUnovG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78426035\/1626721888","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227342443,"id_str":"227342443","name":"Mavis","screen_name":"Mavin167","location":"","description":"I - peaked at age 10.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1806,"listed_count":0,"created_at":"Thu - Dec 16 15:54:20 +0000 2010","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Wed - May 19 16:03:35 +0000 2021","id":1395047493466001413,"id_str":"1395047493466001413","text":"Happy - Birthday @KevinGarnett5KG. You share the same birthday as my 11 year old - twins! May 19 is a great day.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KevinGarnett5KG","name":"Kevin - Garnett","id":1234015050,"id_str":"1234015050","indices":[15,31]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"610048","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192014561\/enhanced-buzz-24230-1289589849-16_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192014561\/enhanced-buzz-24230-1289589849-16_normal.jpg","profile_link_color":"7125FF","profile_sidebar_border_color":"83E8ED","profile_sidebar_fill_color":"3E98FF","profile_text_color":"AD009C","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":295861141,"id_str":"295861141","name":"Dina - Consolino","screen_name":"DinaConsolino","location":"Seattle, WA","description":"Are - you going to finish eating that?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":964,"listed_count":4,"created_at":"Mon - May 09 19:50:07 +0000 2011","favourites_count":400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":164,"lang":null,"status":{"created_at":"Wed - Jan 20 16:40:50 +0000 2021","id":1351932709187301380,"id_str":"1351932709187301380","text":"RT - @KatyTurNBC: \"You look so wonderful,\" Gaga says to Michelle Obama.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KatyTurNBC","name":"Katy - Tur","id":39000115,"id_str":"39000115","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 20 16:39:34 +0000 2021","id":1351932390109814784,"id_str":"1351932390109814784","text":"\"You - look so wonderful,\" Gaga says to Michelle Obama.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":507,"favorite_count":8715,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":507,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345929119\/Orchestra_Banquet_2009_052__2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345929119\/Orchestra_Banquet_2009_052__2__normal.jpg","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1202542320249376769,"id_str":"1202542320249376769","name":"wandaessler3","screen_name":"wandaessler3","location":"Temple, - TX","description":"Grandma Christian Veteran Democrat. Believe in laws & CONSTITUTION - Believe Science doctors speaking up to lies\nCounty Music \ud83c\udfb6\ud83c\udfbc\nTEXAN - WEAR MASKS GET VACCINES","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2052,"friends_count":3745,"listed_count":1,"created_at":"Thu - Dec 05 10:57:07 +0000 2019","favourites_count":26702,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40136,"lang":null,"status":{"created_at":"Wed - Mar 16 23:58:19 +0000 2022","id":1504245708811120645,"id_str":"1504245708811120645","text":"@CourtTV - Good News I believe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CourtTV","name":"Court - TV","id":1031946753510203392,"id_str":"1031946753510203392","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504233609879764994,"in_reply_to_status_id_str":"1504233609879764994","in_reply_to_user_id":1031946753510203392,"in_reply_to_user_id_str":"1031946753510203392","in_reply_to_screen_name":"CourtTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323661483553730560\/p53QXyz3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323661483553730560\/p53QXyz3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":902256339522596864,"id_str":"902256339522596864","name":"Afolabi - hammed","screen_name":"Afolabi50203664","location":"Sierra Leone","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":238,"friends_count":2112,"listed_count":0,"created_at":"Mon - Aug 28 19:47:29 +0000 2017","favourites_count":3886,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46,"lang":null,"status":{"created_at":"Thu - Feb 17 07:07:48 +0000 2022","id":1494206933229834240,"id_str":"1494206933229834240","text":"#NewProfilePic - https:\/\/t.co\/ftWG08I9nL","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1494206927173214209,"id_str":"1494206927173214209","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FLx9SJsWYAEP5Ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLx9SJsWYAEP5Ob.jpg","url":"https:\/\/t.co\/ftWG08I9nL","display_url":"pic.twitter.com\/ftWG08I9nL","expanded_url":"https:\/\/twitter.com\/Afolabi50203664\/status\/1494206933229834240\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1494206927173214209,"id_str":"1494206927173214209","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FLx9SJsWYAEP5Ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLx9SJsWYAEP5Ob.jpg","url":"https:\/\/t.co\/ftWG08I9nL","display_url":"pic.twitter.com\/ftWG08I9nL","expanded_url":"https:\/\/twitter.com\/Afolabi50203664\/status\/1494206933229834240\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494206894050844672\/8g0gpOoY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494206894050844672\/8g0gpOoY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/902256339522596864\/1645081671","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":932287241140961280,"id_str":"932287241140961280","name":"Nathan - Meller","screen_name":"MellerNathan","location":"Union Beach, NJ","description":"Me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":884,"listed_count":0,"created_at":"Sun - Nov 19 16:39:34 +0000 2017","favourites_count":74269,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31126,"lang":null,"status":{"created_at":"Sun - Sep 05 18:28:48 +0000 2021","id":1434584313140555780,"id_str":"1434584313140555780","text":"January - 6 select committee refutes claim by McCarthy that the Justice Department cleared - Trump of any role in insur\u2026 https:\/\/t.co\/GuDQDrYeig","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GuDQDrYeig","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1434584313140555780","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"19d790a2eb34f4e9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/19d790a2eb34f4e9.json","place_type":"city","name":"Union - Beach","full_name":"Union Beach, NJ","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-74.189687,40.437516],[-74.146795,40.437516],[-74.146795,40.458778],[-74.189687,40.458778]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/967729900873502721\/bwuONofm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967729900873502721\/bwuONofm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/932287241140961280\/1519559761","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":914288818747998208,"id_str":"914288818747998208","name":"Zelda","screen_name":"ZeldaDeee","location":"USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":1450,"listed_count":0,"created_at":"Sun - Oct 01 00:40:15 +0000 2017","favourites_count":15265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12094,"lang":null,"status":{"created_at":"Thu - Mar 24 13:55:55 +0000 2022","id":1506993215592931338,"id_str":"1506993215592931338","text":"RT - @MeidasTouch: This can\u2019t be retweeted enough https:\/\/t.co\/ww6yYPazn2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/ww6yYPazn2","display_url":"pic.twitter.com\/ww6yYPazn2","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086"}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/ww6yYPazn2","display_url":"pic.twitter.com\/ww6yYPazn2","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086","video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 03:59:20 +0000 2022","id":1506843078899863556,"id_str":"1506843078899863556","text":"This - can\u2019t be retweeted enough https:\/\/t.co\/ww6yYPazn2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/ww6yYPazn2","display_url":"pic.twitter.com\/ww6yYPazn2","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086"}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/ww6yYPazn2","display_url":"pic.twitter.com\/ww6yYPazn2","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086","video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8443,"favorite_count":22867,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8443,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283825648520302657\/7im0aroo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283825648520302657\/7im0aroo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":8256812,"id_str":"8256812","name":"charlesdclimer","screen_name":"charlesdclimer","location":"Russellville, - AR","description":"firefighting days","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":221,"listed_count":1,"created_at":"Fri - Aug 17 23:43:59 +0000 2007","favourites_count":2110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":968,"lang":null,"status":{"created_at":"Tue - Sep 28 17:39:47 +0000 2021","id":1442906900077580289,"id_str":"1442906900077580289","text":"https:\/\/t.co\/SgnogKL1q8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SgnogKL1q8","expanded_url":"https:\/\/tmblr.co\/ZcFWvparZJj5CW00","display_url":"tmblr.co\/ZcFWvparZJj5CW\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/19250722\/1380996212_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/19250722\/1380996212_l_normal.jpg","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":730934538,"id_str":"730934538","name":"Abu - turky","screen_name":"tawfeek_sdn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":516,"friends_count":2096,"listed_count":0,"created_at":"Wed - Aug 01 15:53:53 +0000 2012","favourites_count":531,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1425,"lang":null,"status":{"created_at":"Thu - Mar 24 14:24:38 +0000 2022","id":1507000439585259521,"id_str":"1507000439585259521","text":"@3bood_itti_18 - @Fax18_ \u0646\u0628\u063a\u0649 \u0627\u0644\u062b\u0644\u0627\u062b\u0629 - \u0643\u0644\u0647\u0645 \u0648\u064a\u0644\u0639\u0628\u0648\u0627 \u0628\u0643\u0623\u0633 - \u0627\u0644\u0639\u0627\u0644\u0645 \u0628\u0627\u0644\u062f\u0648\u062d\u0629","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"3bood_itti_18","name":"\u0627\u062e\u0628\u0627\u0631 - \u0646\u0627\u062f\u064a \u0627\u0644\u0627\u062a\u062d\u0627\u062f","id":557630794,"id_str":"557630794","indices":[0,14]},{"screen_name":"Fax18_","name":"\u0641\u0640\u064a\u0640\u0640\u0635\u0640\u0640\u0644\ud83c\uddf8\ud83c\udde6 - |\u0646\u0645\u0634\u064a Q14","id":1218958442863505409,"id_str":"1218958442863505409","indices":[15,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506998047523459072,"in_reply_to_status_id_str":"1506998047523459072","in_reply_to_user_id":557630794,"in_reply_to_user_id_str":"557630794","in_reply_to_screen_name":"3bood_itti_18","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1139982723160924160\/iTjzdi0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139982723160924160\/iTjzdi0B_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1159708765,"id_str":"1159708765","name":"Cheryl - Tuckett","screen_name":"cltkidlit","location":"","description":"Currently - wishing I could do a little time-travelling. \n\nRT is not necessarily an - endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":594,"friends_count":1417,"listed_count":13,"created_at":"Fri - Feb 08 09:45:46 +0000 2013","favourites_count":38624,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43374,"lang":null,"status":{"created_at":"Fri - Mar 25 12:59:57 +0000 2022","id":1507341517337382915,"id_str":"1507341517337382915","text":"RT - @thetimes: \"I have been told that I was the worst person in the world,\u201d - says Renate Reinsve, recalling the words of an ex-boyfriend.\n\nMe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thetimes","name":"The - Times","id":6107422,"id_str":"6107422","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:47:06 +0000 2022","id":1507323183908720640,"id_str":"1507323183908720640","text":"\"I - have been told that I was the worst person in the world,\u201d says Renate - Reinsve, recalling the words of an ex-boyf\u2026 https:\/\/t.co\/GHE7SM7BjM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GHE7SM7BjM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507323183908720640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":59,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488650438496952320\/g_Nrx2BU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488650438496952320\/g_Nrx2BU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159708765\/1643756898","profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1001311712,"id_str":"1001311712","name":"Braw - drouth","screen_name":"BDrouth","location":"England, United Kingdom","description":"Yes","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":4740,"listed_count":1,"created_at":"Mon - Dec 10 09:30:56 +0000 2012","favourites_count":6665,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":556,"lang":null,"status":{"created_at":"Wed - Dec 15 22:13:00 +0000 2021","id":1471241910664708099,"id_str":"1471241910664708099","text":"@ByDonkeys - @metpoliceuk Brilliant","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ByDonkeys","name":"Led - By Donkeys","id":1073606435580325889,"id_str":"1073606435580325889","indices":[0,10]},{"screen_name":"metpoliceuk","name":"Metropolitan - Police","id":66967746,"id_str":"66967746","indices":[11,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1471125380228653060,"in_reply_to_status_id_str":"1471125380228653060","in_reply_to_user_id":1073606435580325889,"in_reply_to_user_id_str":"1073606435580325889","in_reply_to_screen_name":"ByDonkeys","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279122865082810368\/8WHG8wkq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279122865082810368\/8WHG8wkq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":119880988,"id_str":"119880988","name":"JAHFFER - SYED","screen_name":"Jahffer","location":"Haripur Pakistan","description":"MBA - finance.. MA English.. MA International Relations.. M. Ed Sciences.\nPrivate - Sector Educational Service.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":961,"listed_count":0,"created_at":"Thu - Mar 04 21:16:48 +0000 2010","favourites_count":197,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":967,"lang":null,"status":{"created_at":"Tue - Mar 15 13:39:36 +0000 2022","id":1503727615856758795,"id_str":"1503727615856758795","text":"https:\/\/t.co\/uD7TEA7LpH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1503727612425904129,"id_str":"1503727612425904129","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FN5QS-GXoAEAftM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN5QS-GXoAEAftM.jpg","url":"https:\/\/t.co\/uD7TEA7LpH","display_url":"pic.twitter.com\/uD7TEA7LpH","expanded_url":"https:\/\/twitter.com\/Jahffer\/status\/1503727615856758795\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":961,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":720,"h":961,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503727612425904129,"id_str":"1503727612425904129","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FN5QS-GXoAEAftM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN5QS-GXoAEAftM.jpg","url":"https:\/\/t.co\/uD7TEA7LpH","display_url":"pic.twitter.com\/uD7TEA7LpH","expanded_url":"https:\/\/twitter.com\/Jahffer\/status\/1503727615856758795\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":961,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":720,"h":961,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243829441668820993\/Py1WDLf5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243829441668820993\/Py1WDLf5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119880988\/1449087596","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253177866159828998,"id_str":"1253177866159828998","name":"Khalid - Alizai\ud83c\uddf5\ud83c\uddf0","screen_name":"KhalidAlizai1","location":"","description":"reporter - 22news. work swat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":703,"friends_count":1863,"listed_count":0,"created_at":"Thu - Apr 23 04:25:22 +0000 2020","favourites_count":1055,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1200,"lang":null,"status":{"created_at":"Thu - Mar 24 17:04:10 +0000 2022","id":1507040587425406982,"id_str":"1507040587425406982","text":"https:\/\/t.co\/3F1kMkighG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507040582287429634,"id_str":"1507040582287429634","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoVbMlXEAIZyBT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoVbMlXEAIZyBT.jpg","url":"https:\/\/t.co\/3F1kMkighG","display_url":"pic.twitter.com\/3F1kMkighG","expanded_url":"https:\/\/twitter.com\/KhalidAlizai1\/status\/1507040587425406982\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507040582287429634,"id_str":"1507040582287429634","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoVbMlXEAIZyBT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoVbMlXEAIZyBT.jpg","url":"https:\/\/t.co\/3F1kMkighG","display_url":"pic.twitter.com\/3F1kMkighG","expanded_url":"https:\/\/twitter.com\/KhalidAlizai1\/status\/1507040587425406982\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":720,"h":360,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1394711724297699328\/d6XZurv7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1394711724297699328\/d6XZurv7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253177866159828998\/1647527132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792480728307032066,"id_str":"792480728307032066","name":"Spackle - And Glue","screen_name":"SpackleandGlue","location":"Orange, CA","description":"Cosmetic - Consultations, Workshops & Services","url":"https:\/\/t.co\/kwvsE0RlKw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kwvsE0RlKw","expanded_url":"http:\/\/www.spackleandglue.com","display_url":"spackleandglue.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":336,"listed_count":4,"created_at":"Sat - Oct 29 21:38:24 +0000 2016","favourites_count":582,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1340,"lang":null,"status":{"created_at":"Sun - Feb 13 15:48:37 +0000 2022","id":1492888448377573378,"id_str":"1492888448377573378","text":"RT - @mymuggleaccount: Honestly, how does this not get old? #lawyercat \ud83d\ude02\ud83d\ude02 - https:\/\/t.co\/l7PTMknefJ","truncated":false,"entities":{"hashtags":[{"text":"lawyercat","indices":[58,68]}],"symbols":[],"user_mentions":[{"screen_name":"mymuggleaccount","name":"sassypants - mcgee","id":385221975,"id_str":"385221975","indices":[3,19]}],"urls":[],"media":[{"id":1360252713678872576,"id_str":"1360252713678872576","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","url":"https:\/\/t.co\/l7PTMknefJ","display_url":"pic.twitter.com\/l7PTMknefJ","expanded_url":"https:\/\/twitter.com\/mymuggleaccount\/status\/1360252750374830087\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1360252750374830087,"source_status_id_str":"1360252750374830087","source_user_id":385221975,"source_user_id_str":"385221975"}]},"extended_entities":{"media":[{"id":1360252713678872576,"id_str":"1360252713678872576","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","url":"https:\/\/t.co\/l7PTMknefJ","display_url":"pic.twitter.com\/l7PTMknefJ","expanded_url":"https:\/\/twitter.com\/mymuggleaccount\/status\/1360252750374830087\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1360252750374830087,"source_status_id_str":"1360252750374830087","source_user_id":385221975,"source_user_id_str":"385221975","video_info":{"aspect_ratio":[9,16],"duration_millis":35345,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/576x1024\/HT3U7CB3G9AXsHKB.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/pl\/XrLzHKVFzd9mR1IT.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/360x640\/F8u1cqmvCxw_zyZF.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/320x568\/piiR4JmPUgESc2e1.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 12 15:41:42 +0000 2021","id":1360252750374830087,"id_str":"1360252750374830087","text":"Honestly, - how does this not get old? #lawyercat \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/l7PTMknefJ","truncated":false,"entities":{"hashtags":[{"text":"lawyercat","indices":[37,47]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1360252713678872576,"id_str":"1360252713678872576","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","url":"https:\/\/t.co\/l7PTMknefJ","display_url":"pic.twitter.com\/l7PTMknefJ","expanded_url":"https:\/\/twitter.com\/mymuggleaccount\/status\/1360252750374830087\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1360252713678872576,"id_str":"1360252713678872576","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1360252713678872576\/pu\/img\/vX6gvxzSi8hPvyIE.jpg","url":"https:\/\/t.co\/l7PTMknefJ","display_url":"pic.twitter.com\/l7PTMknefJ","expanded_url":"https:\/\/twitter.com\/mymuggleaccount\/status\/1360252750374830087\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":35345,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/576x1024\/HT3U7CB3G9AXsHKB.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/pl\/XrLzHKVFzd9mR1IT.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/360x640\/F8u1cqmvCxw_zyZF.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1360252713678872576\/pu\/vid\/320x568\/piiR4JmPUgESc2e1.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":26,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/821121488786898944\/YABl5Cpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/821121488786898944\/YABl5Cpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792480728307032066\/1543567582","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253348271919005696,"id_str":"1253348271919005696","name":"Vaishnavi","screen_name":"Vaishna87915449","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":313,"listed_count":0,"created_at":"Thu - Apr 23 15:42:01 +0000 2020","favourites_count":1065,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198850933150629888,"id_str":"1198850933150629888","name":"MLT72","screen_name":"mlt72","location":"North - Carolina, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":147,"listed_count":0,"created_at":"Mon - Nov 25 06:29:10 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Nov 02 02:40:53 +0000 2020","id":1323092686878904322,"id_str":"1323092686878904322","text":"RT - @neiltyson: Would indeed be ironic if Donald Trump lost the presidential election - by a margin of votes equal to the number of his suppor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"neiltyson","name":"Neil - deGrasse Tyson","id":19725644,"id_str":"19725644","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 01 19:05:47 +0000 2020","id":1322978159449509897,"id_str":"1322978159449509897","text":"Would - indeed be ironic if Donald Trump lost the presidential election by a margin - of votes equal to the number of h\u2026 https:\/\/t.co\/b6N8Y8kJWO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b6N8Y8kJWO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1322978159449509897","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9168,"favorite_count":85780,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9168,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198851634123722753\/5oNxIrXM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198851634123722753\/5oNxIrXM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":993987602901622785,"id_str":"993987602901622785","name":"RealworldAria","screen_name":"RealworldA","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":895,"listed_count":0,"created_at":"Tue - May 08 22:54:46 +0000 2018","favourites_count":750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Aug 31 20:30:25 +0000 2020","id":1300531408461537281,"id_str":"1300531408461537281","text":"@YouHiwa - \u062f\u0642\u062f\u0642\u0647 \u0641\u062e\u0633 \u062f\u0627\u0634\u062a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouHiwa","name":"Hiwa - Yousefi","id":730518618530787329,"id_str":"730518618530787329","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1300528459735760896,"in_reply_to_status_id_str":"1300528459735760896","in_reply_to_user_id":730518618530787329,"in_reply_to_user_id_str":"730518618530787329","in_reply_to_screen_name":"YouHiwa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/993992311016128512\/rzJEJ_wU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/993992311016128512\/rzJEJ_wU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2598393192,"id_str":"2598393192","name":"Kelly - Peterson","screen_name":"KellyPeterson_j","location":"Green Bay, WI","description":"Emmy-award-winning - journalist. College Instructor, Former News Director WFRV, Former Assistant - News Director WDAZ","url":"https:\/\/t.co\/ZYIpZ2UXJz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZYIpZ2UXJz","expanded_url":"http:\/\/produceshows.biz","display_url":"produceshows.biz","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":1441,"listed_count":1,"created_at":"Tue - Jul 01 18:59:13 +0000 2014","favourites_count":2579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":231,"lang":null,"status":{"created_at":"Sat - Mar 26 01:31:36 +0000 2022","id":1507530677050347525,"id_str":"1507530677050347525","text":"@IAPonomarenko - \ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\u2764\ufe0f\ud83d\udc95","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAPonomarenko","name":"Illia - Ponomarenko \ud83c\uddfa\ud83c\udde6","id":262219168,"id_str":"262219168","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507512060971782149,"in_reply_to_status_id_str":"1507512060971782149","in_reply_to_user_id":262219168,"in_reply_to_user_id_str":"262219168","in_reply_to_screen_name":"IAPonomarenko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524545799833653248\/s4l6eGp3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524545799833653248\/s4l6eGp3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2598393192\/1413896529","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":990861800336863233,"id_str":"990861800336863233","name":"Siddhant - Ashtekar","screen_name":"Siddhant7277","location":"Shirala, India","description":"we - all are one proud to be Indian \ud83c\uddee\ud83c\uddf3\u2764\ufe0f. \n Computer - science engineer\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":497,"listed_count":0,"created_at":"Mon - Apr 30 07:53:57 +0000 2018","favourites_count":1217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":200,"lang":null,"status":{"created_at":"Sun - Feb 06 04:53:54 +0000 2022","id":1490186967341879297,"id_str":"1490186967341879297","text":"\u090f\u0915 - \u0926\u093f\u0928 \u0939\u092e \u092d\u0940 \u0915\u092b\u093c\u0928 \u0913\u0922\u093c - \u091c\u093e\u092f\u0947\u0902\u0917\u0947,\n\u0938\u092c \u0930\u093f\u0936\u094d\u0924\u0947 - \u0907\u0938 \u091c\u092e\u0940\u0928 \u0915\u0947 \u0924\u094b\u0921\u093c - \u091c\u093e\u092f\u0947\u0902\u0917\u0947,\n\u091c\u093f\u0924\u0928\u093e - \u091c\u0940 \u091a\u093e\u0939\u0947 \u0938\u0924\u093e \u0932\u094b \u092e\u0941\u091d\u0915\u094b,\n\u090f\u0915 - \u0926\u093f\u0928 \u0930\u094b\u0924\u093e \u0939\u0941\u0906 \u0938\u092c\u0915\u094b\u2026 - https:\/\/t.co\/TSieWSjkmL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TSieWSjkmL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490186967341879297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311535113247682561\/6cnTE7DE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311535113247682561\/6cnTE7DE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990861800336863233\/1626029561","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":234394211,"id_str":"234394211","name":"JS","screen_name":"Joseph_Edwinn","location":"Jatiasih - - Kanagawa","description":"Coffee, A Single Fighter. Will anything possible - in 2019?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":297,"listed_count":0,"created_at":"Wed - Jan 05 15:12:14 +0000 2011","favourites_count":529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7835,"lang":null,"status":{"created_at":"Fri - Mar 25 18:50:23 +0000 2022","id":1507429706681188352,"id_str":"1507429706681188352","text":"@tanyakanrl - Got my first kiss on my ex, the second one and the after wasn''t in a relationship.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tanyakanrl","name":"Tanyarl - : ON \ud83d\udc9a","id":1331650559518990336,"id_str":"1331650559518990336","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507155309324046337,"in_reply_to_status_id_str":"1507155309324046337","in_reply_to_user_id":1331650559518990336,"in_reply_to_user_id_str":"1331650559518990336","in_reply_to_screen_name":"tanyakanrl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339888834130034689\/q-3v_Unj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339888834130034689\/q-3v_Unj_normal.jpg","profile_link_color":"111111","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":190842010,"id_str":"190842010","name":"Jenny - Hottle","screen_name":"JennyHottle","location":"Brooklyn, NY","description":"designer - of newsroom tools @nytimes. tea connoisseur, dogspotter, greeting card maker.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":683,"friends_count":954,"listed_count":0,"created_at":"Tue - Sep 14 23:54:09 +0000 2010","favourites_count":14582,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6349,"lang":null,"status":{"created_at":"Fri - Mar 04 03:01:14 +0000 2022","id":1499580701838037022,"id_str":"1499580701838037022","text":"RT - @jacknicas: Look at these taglines from two recent @nytimes stories on the - war in Ukraine.\n\nTwenty cities between them. In case there wa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jacknicas","name":"Jack - Nicas","id":17892496,"id_str":"17892496","indices":[3,13]},{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[54,62]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 23:03:24 +0000 2022","id":1499520845718425606,"id_str":"1499520845718425606","text":"Look - at these taglines from two recent @nytimes stories on the war in Ukraine.\n\nTwenty - cities between them. In case\u2026 https:\/\/t.co\/xMbE7tBbSy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[39,47]}],"urls":[{"url":"https:\/\/t.co\/xMbE7tBbSy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499520845718425606","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":105,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417605870528180226\/YcsDrB6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417605870528180226\/YcsDrB6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190842010\/1526655531","profile_link_color":"12A9E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219381440,"id_str":"1219381440","name":"Misty - Cone''","screen_name":"Misty_Cone","location":"Houston, Texas","description":"I''m - an Aggie, a Mom, a Wife, and a lawyer. I\u2019m a proud member of the #resistance - and believe the world needs to be a little more kind.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":238,"friends_count":990,"listed_count":1,"created_at":"Mon - Feb 25 17:32:23 +0000 2013","favourites_count":48503,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4250,"lang":null,"status":{"created_at":"Thu - Mar 24 19:41:37 +0000 2022","id":1507080213309665294,"id_str":"1507080213309665294","text":"@Out5p0ken - @u2_randy Fairly certain these claims not only lack merit but any viable claim - would be barred by limitations.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Out5p0ken","name":"Outspoken\u2122\ufe0f","id":3930472251,"id_str":"3930472251","indices":[0,10]},{"screen_name":"u2_randy","name":"Randy","id":4872519219,"id_str":"4872519219","indices":[11,20]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507053889446629386,"in_reply_to_status_id_str":"1507053889446629386","in_reply_to_user_id":3930472251,"in_reply_to_user_id_str":"3930472251","in_reply_to_screen_name":"Out5p0ken","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372740447190257671\/xWdnorgt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372740447190257671\/xWdnorgt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219381440\/1569292814","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":10322842,"id_str":"10322842","name":"Jen - Druckman","screen_name":"JenDruckman","location":"Alexandria, VA","description":"Interested - in all things health policy and literary.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":206,"friends_count":4176,"listed_count":2,"created_at":"Sat - Nov 17 03:02:12 +0000 2007","favourites_count":2604,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":105,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/984970120991621121\/LIEwa7bT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/984970120991621121\/LIEwa7bT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10322842\/1493560934","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293523941772767232,"id_str":"1293523941772767232","name":"Faith - Shook","screen_name":"FaithShook11","location":"","description":"my great - personality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":64,"listed_count":0,"created_at":"Wed - Aug 12 12:25:32 +0000 2020","favourites_count":1109,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1700,"lang":null,"status":{"created_at":"Mon - Nov 30 14:11:10 +0000 2020","id":1333413264365998084,"id_str":"1333413264365998084","text":"@TIME - JOE BIDEN!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TIME","name":"TIME","id":14293310,"id_str":"14293310","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1333335421137408000,"in_reply_to_status_id_str":"1333335421137408000","in_reply_to_user_id":14293310,"in_reply_to_user_id_str":"14293310","in_reply_to_screen_name":"TIME","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1049285956602396673,"id_str":"1049285956602396673","name":"S.M - Belue","screen_name":"belue_m","location":"","description":"Take the middle - road.\nI''m no one, do not follow me.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":328,"listed_count":0,"created_at":"Mon - Oct 08 13:10:41 +0000 2018","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107,"lang":null,"status":{"created_at":"Tue - Dec 29 01:00:08 +0000 2020","id":1343723442802204674,"id_str":"1343723442802204674","text":"can - you hack the box? I just entered to win a VIP+ Annual membership to @hackthebox_eu - -----> ENTER HERE:\u2026 https:\/\/t.co\/5oz99kSk1U","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hackthebox_eu","name":"Hack - The Box","id":859377203242426368,"id_str":"859377203242426368","indices":[72,86]}],"urls":[{"url":"https:\/\/t.co\/5oz99kSk1U","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1343723442802204674","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1049323655858192385\/GiOITylc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1049323655858192385\/GiOITylc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1049285956602396673\/1541711858","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":867575606782775296,"id_str":"867575606782775296","name":"Zack - Zbacnik","screen_name":"zjzbacnik","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":739,"listed_count":2,"created_at":"Thu - May 25 02:58:38 +0000 2017","favourites_count":1541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Jun 28 23:43:39 +0000 2021","id":1409658784713084930,"id_str":"1409658784713084930","text":"@Broncos - Love you DT - you the man","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Broncos","name":"Denver - Broncos","id":18734310,"id_str":"18734310","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1409533186346946566,"in_reply_to_status_id_str":"1409533186346946566","in_reply_to_user_id":18734310,"in_reply_to_user_id_str":"18734310","in_reply_to_screen_name":"Broncos","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":908687975604801542,"id_str":"908687975604801542","name":"Connie - Huff","screen_name":"HuffRoberta6036","location":"Florida, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":127,"listed_count":0,"created_at":"Fri - Sep 15 13:44:30 +0000 2017","favourites_count":13355,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":507,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308549716829966337\/2_IwdYr0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308549716829966337\/2_IwdYr0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33237474,"id_str":"33237474","name":"Loren - Aho","screen_name":"lorenkaho","location":"","description":"Policy Advisor - at Top 50 Law Firm in DC, Former Senior Legislative Assistant at U.S. House - of Representatives, Part Owner of the Green Bay Packers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":826,"listed_count":3,"created_at":"Sun - Apr 19 16:16:53 +0000 2009","favourites_count":1345,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2088,"lang":null,"status":{"created_at":"Fri - Mar 25 21:03:33 +0000 2022","id":1507463218645585922,"id_str":"1507463218645585922","text":"RT - @Erin_Joy: In #Iowa we take protecting our freedoms seriously. Whilst @KimReynoldsIA - espouses #parentalchoice in schools, my toddler\u2019s C\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iowa","indices":[17,22]},{"text":"parentalchoice","indices":[97,112]}],"symbols":[],"user_mentions":[{"screen_name":"Erin_Joy","name":"Erin - Joy","id":16419588,"id_str":"16419588","indices":[3,12]},{"screen_name":"KimReynoldsIA","name":"Kim - Reynolds","id":31591773,"id_str":"31591773","indices":[73,87]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:52:58 +0000 2022","id":1507460556202119174,"id_str":"1507460556202119174","text":"In - #Iowa we take protecting our freedoms seriously. Whilst @KimReynoldsIA espouses - #parentalchoice in schools, my t\u2026 https:\/\/t.co\/mixc3OiOaJ","truncated":true,"entities":{"hashtags":[{"text":"Iowa","indices":[3,8]},{"text":"parentalchoice","indices":[83,98]}],"symbols":[],"user_mentions":[{"screen_name":"KimReynoldsIA","name":"Kim - Reynolds","id":31591773,"id_str":"31591773","indices":[59,73]}],"urls":[{"url":"https:\/\/t.co\/mixc3OiOaJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507460556202119174","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1475605411713601539,"quoted_status_id_str":"1475605411713601539","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1475605411713601539,"quoted_status_id_str":"1475605411713601539","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2725521902\/d3a148f1adf637a4591c9bf128f02f2d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2725521902\/d3a148f1adf637a4591c9bf128f02f2d_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":436658632,"id_str":"436658632","name":"Prabhaker - Mateti","screen_name":"pmateti","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":408,"listed_count":0,"created_at":"Wed - Dec 14 12:06:34 +0000 2011","favourites_count":289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Mon - Sep 28 15:06:50 +0000 2020","id":1310596836328198144,"id_str":"1310596836328198144","text":"@Navachola - Wish you had not placed the watermark!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Navachola","name":"Navachola - ASS''s Arts","id":2945837970,"id_str":"2945837970","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1310540829329506305,"in_reply_to_status_id_str":"1310540829329506305","in_reply_to_user_id":2945837970,"in_reply_to_user_id_str":"2945837970","in_reply_to_screen_name":"Navachola","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2348245160,"id_str":"2348245160","name":"BaBashamal","screen_name":"drkesfandiar","location":"Tehran,Iran","description":"Quo - Vadis","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":336,"friends_count":1265,"listed_count":3,"created_at":"Mon - Feb 17 10:04:12 +0000 2014","favourites_count":3753,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":648,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494549519836463105\/xxepJQ5m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494549519836463105\/xxepJQ5m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2348245160\/1548746551","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":565782670,"id_str":"565782670","name":"D. - Lo","screen_name":"lit_4_life1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":304,"listed_count":1,"created_at":"Sat - Apr 28 22:11:11 +0000 2012","favourites_count":1664,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1244,"lang":null,"status":{"created_at":"Sat - Apr 10 18:11:14 +0000 2021","id":1380946490705600514,"id_str":"1380946490705600514","text":"Great - place! Love the atmosphere! (@ Cafe 6855) on #Yelp https:\/\/t.co\/nJ1IQK5ug8","truncated":false,"entities":{"hashtags":[{"text":"Yelp","indices":[51,56]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nJ1IQK5ug8","expanded_url":"https:\/\/www.yelp.com\/biz\/cafe-6855-los-ranchos-de-albuquerque?pt=check_in&ref=twitter&utm_campaign=CheckIn&utm_medium=twitter&utm_source=ishare&v=4b","display_url":"yelp.com\/biz\/cafe-6855-\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/www.yelp.com\/\" rel=\"nofollow\"\u003eYelp\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1087003234928025602\/k91rcG23_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1087003234928025602\/k91rcG23_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565782670\/1486556071","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":457780454,"id_str":"457780454","name":"Joy","screen_name":"crashpatty","location":"","description":"","url":"https:\/\/t.co\/XAvoWfH1DH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XAvoWfH1DH","expanded_url":"http:\/\/www.joycunningham.com","display_url":"joycunningham.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":687,"listed_count":0,"created_at":"Sat - Jan 07 20:21:56 +0000 2012","favourites_count":3017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2368,"lang":null,"status":{"created_at":"Fri - Mar 25 23:32:37 +0000 2022","id":1507500733683351554,"id_str":"1507500733683351554","text":"@NoLieWithBTC - Because whatever is reasonable and decent a Republican can\u2019t get behind?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507492833665728517,"in_reply_to_status_id_str":"1507492833665728517","in_reply_to_user_id":1268223690480615424,"in_reply_to_user_id_str":"1268223690480615424","in_reply_to_screen_name":"NoLieWithBTC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227717920794562563\/MtG6iDho_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227717920794562563\/MtG6iDho_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1953374906,"id_str":"1953374906","name":"John - Gates","screen_name":"praise94984009","location":"United London","description":"Life - is a reality to be experienced and God is concerned about ur thought.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1940,"listed_count":0,"created_at":"Fri - Oct 11 05:27:59 +0000 2013","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":399,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312775094511505408\/8-M-Rwlx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312775094511505408\/8-M-Rwlx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227116857,"id_str":"227116857","name":"Hamidah - ARahman","screen_name":"hammyrahman","location":"Malaysia","description":"I''m - a Malaysian Malay female. I''m a Muslim. I treasure HONESTY IN FRIENDSHIP! - I''m smart, jovial, open-minded & anti-racism.","url":"http:\/\/t.co\/Yqmqg6qcJ5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Yqmqg6qcJ5","expanded_url":"https:\/\/twitter.com\/hammyrahman","display_url":"twitter.com\/hammyrahman","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":642,"listed_count":0,"created_at":"Wed - Dec 15 23:46:11 +0000 2010","favourites_count":6284,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Sat - Nov 27 21:26:06 +0000 2021","id":1464707124273893376,"id_str":"1464707124273893376","text":"@saifuddinabd - @norlinshamsul Assalamu\u2019alaykum wbt Dato\u2019 @Shaifuddinabd & Datin - @norlinshamsul \ud83c\udf39\ud83d\udc90\ud83e\udd70Congratulations\u2026 \ud83d\udc4d\u2026 - https:\/\/t.co\/zKcqfkcB3H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"saifuddinabd","name":"Saifuddin - Abdullah \ud83c\uddf2\ud83c\uddfe","id":32309113,"id_str":"32309113","indices":[0,13]},{"screen_name":"norlinshamsul","name":"norlin - shamsul bahri","id":103903265,"id_str":"103903265","indices":[14,28]},{"screen_name":"norlinshamsul","name":"norlin - shamsul bahri","id":103903265,"id_str":"103903265","indices":[83,97]}],"urls":[{"url":"https:\/\/t.co\/zKcqfkcB3H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1464707124273893376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1464444126900850698,"in_reply_to_status_id_str":"1464444126900850698","in_reply_to_user_id":32309113,"in_reply_to_user_id_str":"32309113","in_reply_to_screen_name":"saifuddinabd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221708091927887872\/8FJkyskk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221708091927887872\/8FJkyskk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227116857\/1580112803","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":368483608,"id_str":"368483608","name":"Meredith - Gilchrist","screen_name":"merej213","location":"Michigan, USA","description":"Love - is love is love is love is love.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":869,"listed_count":0,"created_at":"Mon - Sep 05 18:24:12 +0000 2011","favourites_count":1383,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Mon - Mar 01 01:27:17 +0000 2021","id":1366198322499899397,"id_str":"1366198322499899397","text":"@Lin_Manuel - @VAMNit Can we make that a thing? All seat fillers are dogs?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lin_Manuel","name":"Lin-Manuel - Miranda","id":79923701,"id_str":"79923701","indices":[0,11]},{"screen_name":"VAMNit","name":"Vanessa - A M Nadal","id":813929797,"id_str":"813929797","indices":[12,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1366197933671124995,"in_reply_to_status_id_str":"1366197933671124995","in_reply_to_user_id":79923701,"in_reply_to_user_id_str":"79923701","in_reply_to_screen_name":"Lin_Manuel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/812134740224593922\/4g_FicPN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/812134740224593922\/4g_FicPN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368483608\/1468078263","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":75393322,"id_str":"75393322","name":"Dom - Mingo","screen_name":"Dom_Mingo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":304,"friends_count":4619,"listed_count":7,"created_at":"Fri - Sep 18 21:40:58 +0000 2009","favourites_count":281,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":204,"lang":null,"status":{"created_at":"Fri - Jan 04 01:26:29 +0000 2019","id":1080998872548143105,"id_str":"1080998872548143105","text":"@anaclarachavez - 100%","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anaclarachavez","name":"Anaclara","id":1429287016961875968,"id_str":"1429287016961875968","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871519727444566016\/Cvpt49oR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871519727444566016\/Cvpt49oR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75393322\/1515045210","profile_link_color":"ABB8C2","profile_sidebar_border_color":"121212","profile_sidebar_fill_color":"FFFCFF","profile_text_color":"080008","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242526663566557184,"id_str":"1242526663566557184","name":"Gina","screen_name":"Gina10169618","location":"Oklahoma, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":820,"listed_count":0,"created_at":"Tue - Mar 24 19:00:35 +0000 2020","favourites_count":20173,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493803031288328193\/QJNDDhcx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493803031288328193\/QJNDDhcx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1000110178677731328,"id_str":"1000110178677731328","name":"Anita - Frank","screen_name":"AnitaFr240","location":"Minnesota, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":43,"friends_count":2513,"listed_count":0,"created_at":"Fri - May 25 20:23:42 +0000 2018","favourites_count":84680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20481,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":342823738,"id_str":"342823738","name":"Lynnette - Northup","screen_name":"Lynsline","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":396,"listed_count":0,"created_at":"Tue - Jul 26 16:53:14 +0000 2011","favourites_count":3696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Fri - Jan 08 01:24:55 +0000 2021","id":1347353558874783744,"id_str":"1347353558874783744","text":"@Cleavon_MD - @lauferlaw @SpeakerPelosi @FBI Shameful","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cleavon_MD","name":"Cleavon - MD \ud83d\udc89 \ud83d\udc89 \ud83d\udc89","id":953924228306305024,"id_str":"953924228306305024","indices":[0,11]},{"screen_name":"lauferlaw","name":"Andrew - C Laufer, Esq","id":160244947,"id_str":"160244947","indices":[12,22]},{"screen_name":"SpeakerPelosi","name":"Nancy - Pelosi","id":15764644,"id_str":"15764644","indices":[23,37]},{"screen_name":"FBI","name":"FBI","id":17629860,"id_str":"17629860","indices":[38,42]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1347334743323394048,"in_reply_to_status_id_str":"1347334743323394048","in_reply_to_user_id":953924228306305024,"in_reply_to_user_id_str":"953924228306305024","in_reply_to_screen_name":"Cleavon_MD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":978375366669688832,"id_str":"978375366669688832","name":"Linda - Mastriana","screen_name":"LMastriana","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1175,"listed_count":0,"created_at":"Mon - Mar 26 20:57:19 +0000 2018","favourites_count":52937,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":90,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29067087,"id_str":"29067087","name":"Don - Poorleone","screen_name":"bet29","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":2471,"listed_count":0,"created_at":"Sun - Apr 05 21:22:25 +0000 2009","favourites_count":31395,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":236,"lang":null,"status":{"created_at":"Fri - Mar 18 01:29:24 +0000 2022","id":1504631019584036871,"id_str":"1504631019584036871","text":"RT - @OstapYarysh: Just heard from someone: \"We thought that Russia had the #2 - army in the world. Turns out, that it has the #2 army in Ukrai\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OstapYarysh","name":"Ostap - Yarysh","id":383986280,"id_str":"383986280","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 19:20:26 +0000 2022","id":1504538164454694912,"id_str":"1504538164454694912","text":"Just - heard from someone: \"We thought that Russia had the #2 army in the world. - Turns out, that it has the #2 army in Ukraine\".","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7701,"favorite_count":58058,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7701,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300026813486374913\/qoYilHOF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300026813486374913\/qoYilHOF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29067087\/1598795345","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":435524898,"id_str":"435524898","name":"Mia`chel - Tipps","screen_name":"Lifewarriores75","location":"Texas","description":"Audacious, - auburn-haired hazel-eyed petite female in the Sensational Sixties who\nloves - life, football, music, mtns., beaches, Elvis and MEN. More to come.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":64,"friends_count":1134,"listed_count":1,"created_at":"Tue - Dec 13 04:48:24 +0000 2011","favourites_count":133,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5430,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2773128580\/5c7b5508d0f9e22f1995215abccc7a32_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2773128580\/5c7b5508d0f9e22f1995215abccc7a32_normal.jpeg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1925326146,"id_str":"1925326146","name":"John - Murray","screen_name":"JohnMur0513","location":"Scranton, PA","description":"Democrat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":930,"listed_count":0,"created_at":"Wed - Oct 02 02:23:10 +0000 2013","favourites_count":4974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1022,"lang":null,"status":{"created_at":"Wed - Mar 16 12:29:06 +0000 2022","id":1504072261317275655,"id_str":"1504072261317275655","text":"@LondonMontgom11 - @UMDCoachBrooks Congratulations!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LondonMontgom11","name":"London - Montgomery","id":1396554154231967745,"id_str":"1396554154231967745","indices":[0,16]},{"screen_name":"UMDCoachBrooks","name":"Elijah - Brooks","id":208675673,"id_str":"208675673","indices":[17,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503799465966292992,"in_reply_to_status_id_str":"1503799465966292992","in_reply_to_user_id":1396554154231967745,"in_reply_to_user_id_str":"1396554154231967745","in_reply_to_screen_name":"LondonMontgom11","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275431402784395265\/a10I6Mxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275431402784395265\/a10I6Mxo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1925326146\/1592921518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1061695993530474497,"id_str":"1061695993530474497","name":"\u03bbhmad","screen_name":"MAAARRRTIIIIIIN","location":"Israel","description":"Electrical - Engineering .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":773,"listed_count":0,"created_at":"Sun - Nov 11 19:03:44 +0000 2018","favourites_count":157385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Sat - Nov 06 21:55:59 +0000 2021","id":1457104500548935682,"id_str":"1457104500548935682","text":"@LIVEpositivity - False , Humans change , Grow .. Everyday \u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LIVEpositivity","name":"Power - of Positivity \u2728","id":111166747,"id_str":"111166747","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1457094853926457346,"in_reply_to_status_id_str":"1457094853926457346","in_reply_to_user_id":111166747,"in_reply_to_user_id_str":"111166747","in_reply_to_screen_name":"LIVEpositivity","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477399287310991368\/EGJJUXXr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477399287310991368\/EGJJUXXr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061695993530474497\/1577043298","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279106677996957697,"id_str":"1279106677996957697","name":"Ehyoo - Quincy Ugo Duru","screen_name":"EhyooQuincy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":517,"listed_count":0,"created_at":"Fri - Jul 03 17:36:56 +0000 2020","favourites_count":4073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3437,"lang":null,"status":{"created_at":"Thu - Mar 24 10:24:06 +0000 2022","id":1506939909445201926,"id_str":"1506939909445201926","text":"RT - @AloyEjimakor: Dear #Ndigbo, especially the POLITICIANS: Why are you talking - about 2023 Elections & not the rising violence & injustice\u2026","truncated":false,"entities":{"hashtags":[{"text":"Ndigbo","indices":[23,30]}],"symbols":[],"user_mentions":[{"screen_name":"AloyEjimakor","name":"aloy - ejimakor","id":200921896,"id_str":"200921896","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 08:51:35 +0000 2022","id":1506916627983618049,"id_str":"1506916627983618049","text":"Dear - #Ndigbo, especially the POLITICIANS: Why are you talking about 2023 Elections - & not the rising violence & inju\u2026 https:\/\/t.co\/qj5J5yeHdy","truncated":true,"entities":{"hashtags":[{"text":"Ndigbo","indices":[5,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qj5J5yeHdy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506916627983618049","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[125,148]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1763,"favorite_count":1321,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1763,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340779099703439363\/E25XufzX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340779099703439363\/E25XufzX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1279106677996957697\/1608496923","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47883529,"id_str":"47883529","name":"BENJA","screen_name":"BenjaNjoro","location":"Nairobi - Kenya","description":"Family comes 1st. its a sacrifice one has to make. Be - 100% human in all you do #ArsenalFC @arsenal [#COYG] #YOLO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1286,"friends_count":1551,"listed_count":9,"created_at":"Wed - Jun 17 06:57:01 +0000 2009","favourites_count":1191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10288,"lang":null,"status":{"created_at":"Fri - Mar 25 08:43:03 +0000 2022","id":1507276868139073547,"id_str":"1507276868139073547","text":"RT - @KenyanHunk_: I rarely post personal stuff online but my brother''s story - is something that has haunted me for most of my adult life or f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KenyanHunk_","name":"Debonair","id":1376441549127565316,"id_str":"1376441549127565316","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 10:28:35 +0000 2022","id":1506941038702829569,"id_str":"1506941038702829569","text":"I - rarely post personal stuff online but my brother''s story is something that - has haunted me for most of my adult li\u2026 https:\/\/t.co\/j6Ps5rFhK8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j6Ps5rFhK8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506941038702829569","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1277,"favorite_count":2145,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1277,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"70CEEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1431632811023286272\/Cr_JKNMq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1431632811023286272\/Cr_JKNMq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47883529\/1630162926","profile_link_color":"707038","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"362720","profile_text_color":"B40B43","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":84454475,"id_str":"84454475","name":"Kate - English","screen_name":"KWEnglish","location":"Arlington, VA","description":"\u201cEducation - is the most powerful weapon which you can use to change the world.\u201d --Nelson - Mandela. Personal acct. *Follows\/RTs not endorsements* (she\/her)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":391,"friends_count":1062,"listed_count":13,"created_at":"Thu - Oct 22 23:42:36 +0000 2009","favourites_count":8523,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2990,"lang":null,"status":{"created_at":"Thu - Mar 24 19:18:06 +0000 2022","id":1507074294316154893,"id_str":"1507074294316154893","text":"RT - @Lawrence: For the 1st 127 years when only white Christian men were allowed - to be Supreme Court Justices, there were zero confirmation h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lawrence","name":"Lawrence - O''Donnell","id":158426909,"id_str":"158426909","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:59:40 +0000 2022","id":1506284480268492806,"id_str":"1506284480268492806","text":"For - the 1st 127 years when only white Christian men were allowed to be Supreme - Court Justices, there were zero conf\u2026 https:\/\/t.co\/3QWWxfHmnq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3QWWxfHmnq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506284480268492806","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506282762935967757,"quoted_status_id_str":"1506282762935967757","retweet_count":5995,"favorite_count":13880,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506282762935967757,"quoted_status_id_str":"1506282762935967757","retweet_count":5995,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338242116548440064\/cGlObDWk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338242116548440064\/cGlObDWk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84454475\/1534546783","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":834522401446752257,"id_str":"834522401446752257","name":"Abdirahman - kasim","screen_name":"amaaniyoow","location":"Mogadisho somalia","description":"Young - Activist | Entrepreneur | Politician |Vivid reader |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":695,"listed_count":0,"created_at":"Wed - Feb 22 21:56:59 +0000 2017","favourites_count":6313,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Sat - Mar 05 19:27:53 +0000 2022","id":1500191385571450885,"id_str":"1500191385571450885","text":"RT - @Hon_Khalif: Glad to be part of \ud83c\uddf8\ud83c\uddf4 delegation to #Qatar, - led by H.E @M_Farmaajo, during our stay we will negotiate on building stronger\u2026","truncated":false,"entities":{"hashtags":[{"text":"Qatar","indices":[52,58]}],"symbols":[],"user_mentions":[{"screen_name":"Hon_Khalif","name":"Khalif - Abdi Omar","id":755118126203805702,"id_str":"755118126203805702","indices":[3,14]},{"screen_name":"M_Farmaajo","name":"Mohamed - Farmaajo","id":812627249446780928,"id_str":"812627249446780928","indices":[71,82]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 17:36:17 +0000 2022","id":1500163301946589185,"id_str":"1500163301946589185","text":"Glad - to be part of \ud83c\uddf8\ud83c\uddf4 delegation to #Qatar, led by H.E @M_Farmaajo, - during our stay we will negotiate on building s\u2026 https:\/\/t.co\/i3eJRIMvqF","truncated":true,"entities":{"hashtags":[{"text":"Qatar","indices":[36,42]}],"symbols":[],"user_mentions":[{"screen_name":"M_Farmaajo","name":"Mohamed - Farmaajo","id":812627249446780928,"id_str":"812627249446780928","indices":[55,66]}],"urls":[{"url":"https:\/\/t.co\/i3eJRIMvqF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500163301946589185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":504,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":77,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080248587278319616\/SqH_QeLK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080248587278319616\/SqH_QeLK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307351028497551363,"id_str":"1307351028497551363","name":"Patricia - Taylor","screen_name":"Patrici51363851","location":"Jamaica","description":"Democrat - for life. #FBR \nCALIFORNIA MY HOME","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":1745,"listed_count":0,"created_at":"Sat - Sep 19 16:09:36 +0000 2020","favourites_count":11694,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7253,"lang":null,"status":{"created_at":"Fri - Jan 14 16:43:03 +0000 2022","id":1482030510197161988,"id_str":"1482030510197161988","text":"RT - @davidmweissman: I can\u2019t believe this guy is choosing to ignore that - sedition is a crime. You wonder why so many people continue to sup\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidmweissman","name":"David - Weissman","id":880018682,"id_str":"880018682","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 14 16:40:39 +0000 2022","id":1482029906401837059,"id_str":"1482029906401837059","text":"I - can\u2019t believe this guy is choosing to ignore that sedition is a crime. You - wonder why so many people continue to\u2026 https:\/\/t.co\/5PE2LOB14z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5PE2LOB14z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1482029906401837059","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1481981282213146631,"quoted_status_id_str":"1481981282213146631","retweet_count":15,"favorite_count":142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1481981282213146631,"quoted_status_id_str":"1481981282213146631","retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315749173308911618\/9rRLA3OZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315749173308911618\/9rRLA3OZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307351028497551363\/1600533012","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":361102241,"id_str":"361102241","name":"Bagus - Satrio","screen_name":"bagusdus","location":"Old Trafford, Manchester.","description":"Awas - galak","url":"https:\/\/t.co\/Y697clC3GX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y697clC3GX","expanded_url":"http:\/\/www.youtube.com\/user\/HDFootbal","display_url":"youtube.com\/user\/HDFootbal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":417,"listed_count":3,"created_at":"Wed - Aug 24 07:42:17 +0000 2011","favourites_count":2314,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15901,"lang":null,"status":{"created_at":"Sat - Mar 26 09:57:09 +0000 2022","id":1507657900864712707,"id_str":"1507657900864712707","text":"RT - @FootballFunnnys: 5 years ago, Jos\u00e9 Mourinho said:\n\n\u2022 Pogba is - a virus, not a team player.\n\u2022 Martial is lazy and needs to leave the - club\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FootballFunnnys","name":"FootballFunnys","id":985172054,"id_str":"985172054","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:23:47 +0000 2022","id":1507649506313224195,"id_str":"1507649506313224195","text":"5 - years ago, Jos\u00e9 Mourinho said:\n\n\u2022 Pogba is a virus, not a team - player.\n\u2022 Martial is lazy and needs to leave the c\u2026 https:\/\/t.co\/gIm6wzMtkU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gIm6wzMtkU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507649506313224195","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":203,"favorite_count":899,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":203,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/708553645797675008\/rJjvNNfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/708553645797675008\/rJjvNNfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361102241\/1399713384","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110236430,"id_str":"110236430","name":"Elisabete - Duzs","screen_name":"elisabeteduzs","location":"London, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":454,"listed_count":0,"created_at":"Sun - Jan 31 21:11:32 +0000 2010","favourites_count":5183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Wed - Jan 26 08:05:49 +0000 2022","id":1486248998214197250,"id_str":"1486248998214197250","text":"@AxieInfinity - \ud83e\udd71\ud83e\udd71\ud83d\ude44\ud83d\ude44\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\udcb8\ud83d\udcb8\ud83d\udcb8\ud83d\udc4e\ud83c\udffb\ud83d\udc4e\ud83c\udffb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AxieInfinity","name":"Axie - Infinity\ud83e\udd87\ud83d\udd0a","id":957716432430641152,"id_str":"957716432430641152","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1486150159209742339,"in_reply_to_status_id_str":"1486150159209742339","in_reply_to_user_id":957716432430641152,"in_reply_to_user_id_str":"957716432430641152","in_reply_to_screen_name":"AxieInfinity","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/886561234669142016\/sruj8mKU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/886561234669142016\/sruj8mKU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110236430\/1500207646","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":130926562,"id_str":"130926562","name":"Lord - Langley","screen_name":"ballylangley","location":"Gtown Ireland","description":"Alpine - Skier\/Serial Marathon Runner\/consumer of Alpin Cereal..Peregrino ..(I would - walk 500 miles....)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":235,"listed_count":5,"created_at":"Thu - Apr 08 19:13:30 +0000 2010","favourites_count":1100,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":720,"lang":null,"status":{"created_at":"Sat - Jan 01 20:01:48 +0000 2022","id":1477369486416224261,"id_str":"1477369486416224261","text":"T] - u77#NewYearsEve","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899684375041847296\/ZrWFRJIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899684375041847296\/ZrWFRJIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130926562\/1523105498","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230172794786283522,"id_str":"1230172794786283522","name":"Robert - Michaels RIBA","screen_name":"RobertM68191528","location":"London, England","description":"Chartered - architect\/interior designer(retired), academic, writer\nAdditional (secondary) - twitter account. Primary twitter account @ukarchitect","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":334,"listed_count":0,"created_at":"Wed - Feb 19 16:50:46 +0000 2020","favourites_count":2713,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":583,"lang":null,"status":{"created_at":"Thu - Nov 05 12:24:42 +0000 2020","id":1324326775061651456,"id_str":"1324326775061651456","text":"Seems - Trump attempting a coup and involving Supreme Court on order to beat Biden. - Surely Trump must rate as the most obnoxious in politics!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"460c5314e8a33c64","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/460c5314e8a33c64.json","place_type":"city","name":"Wandsworth","full_name":"Wandsworth, - London","country_code":"GB","country":"United Kingdom","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-0.259465,51.417277],[-0.127974,51.417277],[-0.127974,51.486036],[-0.259465,51.486036]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288498006296268801\/qQ6RlLgk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288498006296268801\/qQ6RlLgk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230172794786283522\/1583426523","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858989035980771328,"id_str":"858989035980771328","name":"JM - Nelson, MLS","screen_name":"NellyJackNJ","location":"United States","description":"St. - John\u2019s U, WashU Law. Legally Speaking. Forever NYer. #getvaxxed \ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":1904,"listed_count":0,"created_at":"Mon - May 01 10:18:40 +0000 2017","favourites_count":18749,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5429,"lang":null,"status":{"created_at":"Sat - Mar 26 01:16:57 +0000 2022","id":1507526989867008004,"id_str":"1507526989867008004","text":"@donwinslow - *boom*","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507498719922442243,"in_reply_to_status_id_str":"1507498719922442243","in_reply_to_user_id":255812611,"in_reply_to_user_id_str":"255812611","in_reply_to_screen_name":"donwinslow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354278089241538569\/GDWJ4H4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354278089241538569\/GDWJ4H4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858989035980771328\/1605213149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107418814,"id_str":"1107418814","name":"debby - hawk","screen_name":"debby_hawk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":243,"friends_count":783,"listed_count":1,"created_at":"Sun - Jan 20 22:05:22 +0000 2013","favourites_count":1940,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":728,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3137247192\/fca621f2e7b65f7a1107fa57350dc7b7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3137247192\/fca621f2e7b65f7a1107fa57350dc7b7_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":64894622,"id_str":"64894622","name":"Rahul - Muralidharan","screen_name":"RahulM29","location":"","description":"PhD candidate, - exploring the political ecology of marine conservation in coastal Tamil Nadu, - India.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1012,"friends_count":1092,"listed_count":58,"created_at":"Wed - Aug 12 01:38:14 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2757,"lang":null,"status":{"created_at":"Sat - Mar 26 01:01:55 +0000 2022","id":1507523207812636672,"id_str":"1507523207812636672","text":"RT - @NayanikaM: Statement by Filippo Osella on his astounding deportation from - Kerala. Like a good anthropologist he ends it with a message\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NayanikaM","name":"Nayanika - Mathur","id":1102206595,"id_str":"1102206595","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:39:46 +0000 2022","id":1507457232933371910,"id_str":"1507457232933371910","text":"Statement - by Filippo Osella on his astounding deportation from Kerala. Like a good anthropologist - he ends it with a\u2026 https:\/\/t.co\/n77P3N8oe1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/n77P3N8oe1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507457232933371910","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":143,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133989882316017664\/hw_dD8y5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133989882316017664\/hw_dD8y5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64894622\/1638466059","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":758647382686957568,"id_str":"758647382686957568","name":"Sad - American","screen_name":"Keilakoo64Lee","location":"Asheville, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":548,"friends_count":1790,"listed_count":2,"created_at":"Thu - Jul 28 12:56:45 +0000 2016","favourites_count":21696,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23905,"lang":null,"status":{"created_at":"Sat - Mar 06 00:16:44 +0000 2021","id":1367992506919616517,"id_str":"1367992506919616517","text":"@EspuelasVox - @funder Who cares ? I DON''T !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EspuelasVox","name":"Fernando - Espuelas","id":51520631,"id_str":"51520631","indices":[0,12]},{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[13,20]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1367832416178540557,"in_reply_to_status_id_str":"1367832416178540557","in_reply_to_user_id":51520631,"in_reply_to_user_id_str":"51520631","in_reply_to_screen_name":"EspuelasVox","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273617256782667777\/JpA_uu5U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273617256782667777\/JpA_uu5U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/758647382686957568\/1537177599","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":392171294,"id_str":"392171294","name":"mush","screen_name":"mo_cobb","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":4443,"listed_count":0,"created_at":"Sun - Oct 16 17:05:27 +0000 2011","favourites_count":18886,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11816,"lang":null,"status":{"created_at":"Thu - Feb 11 21:14:44 +0000 2021","id":1359974171627905031,"id_str":"1359974171627905031","text":"RT - @ggreenwald: More here: I\u2019ll bet anything most people still believe the - PULSE shooting was motivated by anti-LGBT hatred. It\u2019s wasn\u2019t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ggreenwald","name":"Glenn - Greenwald","id":16076032,"id_str":"16076032","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 11 21:11:42 +0000 2021","id":1359973409157955584,"id_str":"1359973409157955584","text":"More - here: I\u2019ll bet anything most people still believe the PULSE shooting - was motivated by anti-LGBT hatred. It\u2019s w\u2026 https:\/\/t.co\/HYcjZJQDrE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HYcjZJQDrE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1359973409157955584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1359972606871564293,"in_reply_to_status_id_str":"1359972606871564293","in_reply_to_user_id":16076032,"in_reply_to_user_id_str":"16076032","in_reply_to_screen_name":"ggreenwald","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":410,"favorite_count":1537,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":410,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322933145013047296\/BXpp0Il6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322933145013047296\/BXpp0Il6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392171294\/1579825106","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191841577225859078,"id_str":"1191841577225859078","name":"Trump - Who","screen_name":"TrumpWho3","location":"","description":"45s biggest fear - is to be a \"nobody\u201d I am a gay mom, pharmacist and CBD educator LWCC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":200,"listed_count":0,"created_at":"Tue - Nov 05 22:16:15 +0000 2019","favourites_count":1648,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1137,"lang":null,"status":{"created_at":"Wed - Mar 23 00:43:59 +0000 2022","id":1506431530649985025,"id_str":"1506431530649985025","text":"@election_every - @MaryLTrump That we know of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"election_every","name":"VOTE - IN EVERY ELECTION!","id":606907410,"id_str":"606907410","indices":[0,15]},{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[16,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506383346288451595,"in_reply_to_status_id_str":"1506383346288451595","in_reply_to_user_id":606907410,"in_reply_to_user_id_str":"606907410","in_reply_to_screen_name":"election_every","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191841804783640578\/fhrWY_3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191841804783640578\/fhrWY_3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191841577225859078\/1573068828","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1008424168763904000,"id_str":"1008424168763904000","name":"Princessfrank","screen_name":"princessfraken","location":"","description":"CEO - of my life!!! \u201cWell-behaved women seldom make history!\u201d #TheResistance - #Bluewave","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":643,"listed_count":0,"created_at":"Sun - Jun 17 19:00:32 +0000 2018","favourites_count":5649,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368392120189419524\/0SPzoNOX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368392120189419524\/0SPzoNOX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008424168763904000\/1529266025","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":501725210,"id_str":"501725210","name":"Liam - Baird","screen_name":"BairdLiam","location":"Canada","description":"McMaster - BComm","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":225,"listed_count":1,"created_at":"Fri - Feb 24 12:22:10 +0000 2012","favourites_count":3945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":220,"lang":null,"status":{"created_at":"Tue - Jan 25 13:36:36 +0000 2022","id":1485969858181357570,"id_str":"1485969858181357570","text":"RT - @StoolGametime: There is nothing that ruins a gaming session more than horrible - ping","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StoolGametime","name":"Barstool - Gametime","id":832720691577417728,"id_str":"832720691577417728","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 25 04:27:11 +0000 2022","id":1485831593331728388,"id_str":"1485831593331728388","text":"There - is nothing that ruins a gaming session more than horrible ping","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":54,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215393472850489345\/JP9wdP7D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215393472850489345\/JP9wdP7D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501725210\/1561614320","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3314233318,"id_str":"3314233318","name":"Jessica - Lewis","screen_name":"JessLewis918","location":"Harrah, OK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":519,"listed_count":0,"created_at":"Tue - Jun 09 00:09:22 +0000 2015","favourites_count":38762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1313,"lang":null,"status":{"created_at":"Thu - Jun 17 00:53:49 +0000 2021","id":1405327790182969344,"id_str":"1405327790182969344","text":"@POTUS - You did great! Thank you Mr. President!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1405315253315964933,"in_reply_to_status_id_str":"1405315253315964933","in_reply_to_user_id":1349149096909668363,"in_reply_to_user_id_str":"1349149096909668363","in_reply_to_screen_name":"POTUS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396858101383507971\/rTUFVurr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396858101383507971\/rTUFVurr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243115683422011392,"id_str":"1243115683422011392","name":"@nasroj - snailery@","screen_name":"nasroj3339","location":"Ibadan, Nigeria","description":"Free - minded","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":1129,"listed_count":0,"created_at":"Thu - Mar 26 10:01:11 +0000 2020","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu - Nov 12 11:43:02 +0000 2020","id":1326853005644165120,"id_str":"1326853005644165120","text":"https:\/\/t.co\/20zvlUSbXm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1326852993677996032,"id_str":"1326852993677996032","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EmntxI1XMAAzZC4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EmntxI1XMAAzZC4.jpg","url":"https:\/\/t.co\/20zvlUSbXm","display_url":"pic.twitter.com\/20zvlUSbXm","expanded_url":"https:\/\/twitter.com\/laji04\/status\/1326853005644165120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1026,"h":771,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1026,"h":771,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1326852993677996032,"id_str":"1326852993677996032","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EmntxI1XMAAzZC4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EmntxI1XMAAzZC4.jpg","url":"https:\/\/t.co\/20zvlUSbXm","display_url":"pic.twitter.com\/20zvlUSbXm","expanded_url":"https:\/\/twitter.com\/laji04\/status\/1326853005644165120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1026,"h":771,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1026,"h":771,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1281124735363973123\/xdo0cZhA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1281124735363973123\/xdo0cZhA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":135877348,"id_str":"135877348","name":"Herzog''s - Child","screen_name":"Herzogschild","location":"","description":"Deceased.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4366,"friends_count":514,"listed_count":102,"created_at":"Thu - Apr 22 13:13:23 +0000 2010","favourites_count":9562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45707,"lang":null,"status":{"created_at":"Sun - Aug 18 10:53:26 +0000 2013","id":369049394802212864,"id_str":"369049394802212864","text":"RT - @Fino76: @Herzogschild \u201cwhy did this guy have 12 pairs of nipple tassels?\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fino76","name":"fino","id":23621671,"id_str":"23621671","indices":[3,10]},{"screen_name":"Herzogschild","name":"Herzog''s - Child","id":135877348,"id_str":"135877348","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 18 10:50:19 +0000 2013","id":369048609376837632,"id_str":"369048609376837632","text":"@Herzogschild - \u201cwhy did this guy have 12 pairs of nipple tassels?\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Herzogschild","name":"Herzog''s - Child","id":135877348,"id_str":"135877348","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - iOS\u003c\/a\u003e","in_reply_to_status_id":369048032857186305,"in_reply_to_status_id_str":"369048032857186305","in_reply_to_user_id":135877348,"in_reply_to_user_id_str":"135877348","in_reply_to_screen_name":"Herzogschild","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477038288898109440\/WR6uBUNr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477038288898109440\/WR6uBUNr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135877348\/1360891333","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295308091051966465,"id_str":"1295308091051966465","name":"Daniel - Isuwa Ndirmbita","screen_name":"DanielIsuwa3","location":"Maiduguri, Nigeria","description":"Success - is a product of honesty and hardworking.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":216,"friends_count":625,"listed_count":0,"created_at":"Mon - Aug 17 10:35:23 +0000 2020","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Wed - Oct 07 09:34:28 +0000 2020","id":1313774687575515136,"id_str":"1313774687575515136","text":"@realDonaldTrump - Thank U Jesus for healing our beloved Donald J. Trump","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1313267615083761665,"in_reply_to_status_id_str":"1313267615083761665","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297100085638160385\/KEgkI6eP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297100085638160385\/KEgkI6eP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1339101409,"id_str":"1339101409","name":"santanu - banerjee","screen_name":"banerjeegl","location":"kolkata","description":"A - senior Journalist was associated with several national dailies. presently - working as chief of bureau Bengal for http:\/\/t.co\/5qi29e32CF","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/5qi29e32CF","expanded_url":"http:\/\/Newstrack24x7.com","display_url":"Newstrack24x7.com","indices":[114,136]}]}},"protected":false,"followers_count":7,"friends_count":76,"listed_count":0,"created_at":"Tue - Apr 09 12:39:13 +0000 2013","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Wed - Oct 21 12:10:46 +0000 2020","id":1318887449054089218,"id_str":"1318887449054089218","text":"Let - RSS, Modi, Jogi read Ramayan again, they wud find `even'' a dog cud approach - Raman in court and lodge complain a\u2026 https:\/\/t.co\/LxaH9mWTQR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LxaH9mWTQR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1318887449054089218","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1257732849773318150,"id_str":"1257732849773318150","name":"jov","screen_name":"jov00587317","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":130,"listed_count":0,"created_at":"Tue - May 05 18:04:53 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291614043497795585,"id_str":"1291614043497795585","name":"Marianne - Shipton","screen_name":"MarianneShipton","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":438,"listed_count":0,"created_at":"Fri - Aug 07 05:56:20 +0000 2020","favourites_count":1156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Tue - Apr 13 05:24:26 +0000 2021","id":1381840681581297667,"id_str":"1381840681581297667","text":"@wfcouncil - please please stop bin men coming to residential streets like Brighton avenue - at 06:30am! It wakes up th\u2026 https:\/\/t.co\/VK9GIEAofK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wfcouncil","name":"Waltham - Forest Council","id":15748493,"id_str":"15748493","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/VK9GIEAofK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1381840681581297667","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":15748493,"in_reply_to_user_id_str":"15748493","in_reply_to_screen_name":"wfcouncil","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":31794809,"id_str":"31794809","name":"Patty - Ras","screen_name":"patoh66","location":"Ohio","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":111,"listed_count":0,"created_at":"Thu - Apr 16 13:42:23 +0000 2009","favourites_count":641,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Wed - Sep 22 09:18:26 +0000 2021","id":1440606405816295429,"id_str":"1440606405816295429","text":"@ArdianMolla - @EarthWindFire Loved them! Still do. Weddings","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArdianMolla","name":"Ardian - Mollabeciri","id":406368068,"id_str":"406368068","indices":[0,12]},{"screen_name":"EarthWindFire","name":"Earth, - Wind & Fire","id":76678010,"id_str":"76678010","indices":[13,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1440261807617155078,"in_reply_to_status_id_str":"1440261807617155078","in_reply_to_user_id":406368068,"in_reply_to_user_id_str":"406368068","in_reply_to_screen_name":"ArdianMolla","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306432358195789829,"id_str":"1306432358195789829","name":"Wolfe - B Goode","screen_name":"wolfebgoode","location":"San Antonio, TX","description":"USAF - Veteran, Liberal, Mind of a Mad Scientist, Heart of an Activist, Soul of a - Warrior Poet. Breast Cancer Survivor,\nI block fanatics & I do not suffer - fools","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":354,"friends_count":1399,"listed_count":2,"created_at":"Thu - Sep 17 03:18:55 +0000 2020","favourites_count":22496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22420,"lang":null,"status":{"created_at":"Sat - Mar 26 00:06:52 +0000 2022","id":1507509352407736327,"id_str":"1507509352407736327","text":"RT - @joncoopertweets: If Republicans take back the House they will shut down the - January 6 Committee and launch an investigation into Hunter\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:34:15 +0000 2022","id":1507501145954127880,"id_str":"1507501145954127880","text":"If - Republicans take back the House they will shut down the January 6 Committee - and launch an investigation into Hun\u2026 https:\/\/t.co\/ZjrNwgld2q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZjrNwgld2q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507501145954127880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":2022,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":445,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306435049382969346\/uDTEHyik_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306435049382969346\/uDTEHyik_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306432358195789829\/1600317165","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":274152903,"id_str":"274152903","name":"kristina - summerlin","screen_name":"kristinasummer1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1524,"listed_count":0,"created_at":"Tue - Mar 29 20:48:02 +0000 2011","favourites_count":3095,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":711,"lang":null,"status":{"created_at":"Mon - Mar 15 12:47:31 +0000 2021","id":1371442938006413313,"id_str":"1371442938006413313","text":"#45TransitionToPrison","truncated":false,"entities":{"hashtags":[{"text":"45TransitionToPrison","indices":[0,21]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":836625194215145473,"id_str":"836625194215145473","name":"AbiesAlba","screen_name":"AbiesSilver","location":"New - York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":663,"listed_count":0,"created_at":"Tue - Feb 28 17:12:44 +0000 2017","favourites_count":468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Mon - Mar 08 13:03:20 +0000 2021","id":1368910204050567168,"id_str":"1368910204050567168","text":"@joytomlinson - @missy.aprea \n\nThese anchors or the next tweet.\nhttps:\/\/t.co\/Gk0jZfFtty","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyTomlinson","name":"joyce - marie","id":703619268,"id_str":"703619268","indices":[0,13]},{"screen_name":"missy","name":"relatable","id":2462651,"id_str":"2462651","indices":[14,20]}],"urls":[{"url":"https:\/\/t.co\/Gk0jZfFtty","expanded_url":"https:\/\/www.amazon.com\/MTB-Anchor-Ground-Powder-Coated\/dp\/B072BMZB8G\/ref=sr_1_2?dchild=1&hvadid=73942314837982&hvbmt=be&hvdev=m&hvqmt=e&keywords=4x4+post+anchors&qid=1615208313&sr=8-2","display_url":"amazon.com\/MTB-Anchor-Gro\u2026","indices":[62,85]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":703619268,"in_reply_to_user_id_str":"703619268","in_reply_to_screen_name":"JoyTomlinson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338884958182645760\/UHrdqPj5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338884958182645760\/UHrdqPj5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836625194215145473\/1608049518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1222011611914747905,"id_str":"1222011611914747905","name":"dfwang","screen_name":"dfwang8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":333,"friends_count":369,"listed_count":0,"created_at":"Tue - Jan 28 04:21:07 +0000 2020","favourites_count":98,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":293,"lang":null,"status":{"created_at":"Mon - May 17 23:23:24 +0000 2021","id":1394433400124055552,"id_str":"1394433400124055552","text":"@DrLiMengYAN1 - Happy day. https:\/\/t.co\/wuBaTJIj9X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrLiMengYAN1","name":"Dr. - Li-Meng YAN","id":1313128625680592896,"id_str":"1313128625680592896","indices":[0,13]}],"urls":[],"media":[{"id":1394433303315243008,"id_str":"1394433303315243008","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/E1oFs4sUYAA7CN-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E1oFs4sUYAA7CN-.jpg","url":"https:\/\/t.co\/wuBaTJIj9X","display_url":"pic.twitter.com\/wuBaTJIj9X","expanded_url":"https:\/\/twitter.com\/dfwang8\/status\/1394433400124055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1394433303315243008,"id_str":"1394433303315243008","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/E1oFs4sUYAA7CN-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E1oFs4sUYAA7CN-.jpg","url":"https:\/\/t.co\/wuBaTJIj9X","display_url":"pic.twitter.com\/wuBaTJIj9X","expanded_url":"https:\/\/twitter.com\/dfwang8\/status\/1394433400124055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1394386086084886530,"in_reply_to_status_id_str":"1394386086084886530","in_reply_to_user_id":1313128625680592896,"in_reply_to_user_id_str":"1313128625680592896","in_reply_to_screen_name":"DrLiMengYAN1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222018784271073280\/_miU2k8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222018784271073280\/_miU2k8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1222011611914747905\/1580186913","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282168540917710848,"id_str":"1282168540917710848","name":"GMT - VIJAY","screen_name":"gmt_vijay","location":"","description":"GMT VIJAY","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":499,"listed_count":0,"created_at":"Sun - Jul 12 04:23:15 +0000 2020","favourites_count":230,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - Jan 11 04:38:09 +0000 2022","id":1480760921764990979,"id_str":"1480760921764990979","text":"@bbctamil - \u0ba8\u0bbe\u0bae\u0bcd \u0bb5\u0bc8\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd - \u0baa\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bc1\u0bae\u0bcd \u0b87\u0ba8\u0bcd\u0ba4\u0bbf - \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bbctamil","name":"BBC - News Tamil","id":23763445,"id_str":"23763445","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1480755835647107079,"in_reply_to_status_id_str":"1480755835647107079","in_reply_to_user_id":23763445,"in_reply_to_user_id_str":"23763445","in_reply_to_screen_name":"bbctamil","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"ta"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481118175660212232\/St2aPpXK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481118175660212232\/St2aPpXK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":365114015,"id_str":"365114015","name":"Ana","screen_name":"ana0128_ana","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":32,"listed_count":0,"created_at":"Tue - Aug 30 21:52:13 +0000 2011","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Nov 12 00:08:27 +0000 2020","id":1326678206448099329,"id_str":"1326678206448099329","text":"Biden - fans dance to YMCA in Philly as Alex Jones protests in Arizona https:\/\/t.co\/zsJoyNtFJq - via @MailOnline","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MailOnline","name":"Daily - Mail Online","id":15438913,"id_str":"15438913","indices":[97,108]}],"urls":[{"url":"https:\/\/t.co\/zsJoyNtFJq","expanded_url":"https:\/\/www.dailymail.co.uk\/news\/article-8922517\/Biden-supporters-dance-YMCA-Philadelphia-Alex-Jones-joins-Arizona-protest.html?ito=amp_twitter_share-top","display_url":"dailymail.co.uk\/news\/article-8\u2026","indices":[69,92]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4745804838,"id_str":"4745804838","name":"Julie - Jones","screen_name":"JulieJo0787","location":"Salt Lake City, UT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":832,"listed_count":0,"created_at":"Tue - Jan 12 01:46:39 +0000 2016","favourites_count":4005,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":440,"lang":null,"status":{"created_at":"Mon - Jan 31 12:42:02 +0000 2022","id":1488130452334338053,"id_str":"1488130452334338053","text":"@kimseverson - Nosh can go, as well!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kimseverson","name":"Kim - Severson","id":16588095,"id_str":"16588095","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487788609348452354,"in_reply_to_status_id_str":"1487788609348452354","in_reply_to_user_id":16588095,"in_reply_to_user_id_str":"16588095","in_reply_to_screen_name":"kimseverson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/686867660953419776\/w68WoQQB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/686867660953419776\/w68WoQQB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":296919782,"id_str":"296919782","name":"Mohamed - Atef","screen_name":"m_atef94","location":"Cairo, Egypt","description":"\u0645\u0647\u0646\u062f\u0633 - \u0628\u062a\u0631\u0648\u0644 \u0645\u0639 \u0627\u0644\u0634\u063a\u0644 - \u0648 \u0627\u0644\u0646\u0641\u0627\u0630","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":2567,"listed_count":0,"created_at":"Wed - May 11 16:26:19 +0000 2011","favourites_count":30691,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":839,"lang":null,"status":{"created_at":"Thu - Mar 24 19:57:52 +0000 2022","id":1507084300914774026,"id_str":"1507084300914774026","text":"RT - @N2RR1: \ufd3f\u0641\u064e\u0627\u0633\u0652\u062a\u064e\u062c\u064e\u0628\u0652\u0646\u064e\u0627 - \u0644\u064e\u0647\u064f\ufd3e https:\/\/t.co\/zw824YtQIS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"N2RR1","name":"\u0646\u0648\u0631 - \u062d\u064a\u0627\u062a\u0643","id":2721170100,"id_str":"2721170100","indices":[3,9]}],"urls":[],"media":[{"id":1504178712752926724,"id_str":"1504178712752926724","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","url":"https:\/\/t.co\/zw824YtQIS","display_url":"pic.twitter.com\/zw824YtQIS","expanded_url":"https:\/\/twitter.com\/N2RR1\/status\/1504178721644761101\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":381,"h":680,"resize":"fit"},"large":{"w":851,"h":1518,"resize":"fit"},"medium":{"w":673,"h":1200,"resize":"fit"}},"source_status_id":1504178721644761101,"source_status_id_str":"1504178721644761101","source_user_id":2721170100,"source_user_id_str":"2721170100"}]},"extended_entities":{"media":[{"id":1504178712752926724,"id_str":"1504178712752926724","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","url":"https:\/\/t.co\/zw824YtQIS","display_url":"pic.twitter.com\/zw824YtQIS","expanded_url":"https:\/\/twitter.com\/N2RR1\/status\/1504178721644761101\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":381,"h":680,"resize":"fit"},"large":{"w":851,"h":1518,"resize":"fit"},"medium":{"w":673,"h":1200,"resize":"fit"}},"source_status_id":1504178721644761101,"source_status_id_str":"1504178721644761101","source_user_id":2721170100,"source_user_id_str":"2721170100"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 19:32:08 +0000 2022","id":1504178721644761101,"id_str":"1504178721644761101","text":"\ufd3f\u0641\u064e\u0627\u0633\u0652\u062a\u064e\u062c\u064e\u0628\u0652\u0646\u064e\u0627 - \u0644\u064e\u0647\u064f\ufd3e https:\/\/t.co\/zw824YtQIS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504178712752926724,"id_str":"1504178712752926724","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","url":"https:\/\/t.co\/zw824YtQIS","display_url":"pic.twitter.com\/zw824YtQIS","expanded_url":"https:\/\/twitter.com\/N2RR1\/status\/1504178721644761101\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":381,"h":680,"resize":"fit"},"large":{"w":851,"h":1518,"resize":"fit"},"medium":{"w":673,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504178712752926724,"id_str":"1504178712752926724","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN_qkdxXsAQj2P5.jpg","url":"https:\/\/t.co\/zw824YtQIS","display_url":"pic.twitter.com\/zw824YtQIS","expanded_url":"https:\/\/twitter.com\/N2RR1\/status\/1504178721644761101\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":381,"h":680,"resize":"fit"},"large":{"w":851,"h":1518,"resize":"fit"},"medium":{"w":673,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1332,"favorite_count":4004,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":1332,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499040171488165888\/iMEfZyLp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499040171488165888\/iMEfZyLp_normal.jpg","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3247631852,"id_str":"3247631852","name":"carrie - friedman","screen_name":"carrie_carrief","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":357,"listed_count":0,"created_at":"Wed - Jun 17 07:47:12 +0000 2015","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14402160,"id_str":"14402160","name":"Jeffie - Nicholson","screen_name":"jeffieruth","location":"Franklin, TN","description":"Public - services librarian & manager, wife and mother. Keeping in touch with family, - friends and co-workers.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1195,"friends_count":1226,"listed_count":73,"created_at":"Tue - Apr 15 22:56:10 +0000 2008","favourites_count":119386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":69026,"lang":null,"status":{"created_at":"Sat - Mar 26 01:51:59 +0000 2022","id":1507535806390489091,"id_str":"1507535806390489091","text":"RT - @HHSGov: If you test positive for COVID-19 & are at risk of becoming very - sick, contact a health professional right away to determine if\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HHSGov","name":"HHS.gov","id":44783853,"id_str":"44783853","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:00:02 +0000 2022","id":1507341537834844160,"id_str":"1507341537834844160","text":"If - you test positive for COVID-19 & are at risk of becoming very sick, contact - a health professional right away to\u2026 https:\/\/t.co\/LQE8LWxj7x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LQE8LWxj7x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507341537834844160","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"https:\/\/prod1.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr Publishing\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":70,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":53,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F1B15","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340096480430964743\/6NchpSfP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340096480430964743\/6NchpSfP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14402160\/1604785695","profile_link_color":"A60000","profile_sidebar_border_color":"4D3F2C","profile_sidebar_fill_color":"F2E9DC","profile_text_color":"A66408","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":706863020,"id_str":"706863020","name":"gilnockie","screen_name":"gilnockie110","location":"Melbourne","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":398,"listed_count":0,"created_at":"Fri - Jul 20 09:59:32 +0000 2012","favourites_count":6006,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":217,"lang":null,"status":{"created_at":"Sat - Feb 12 14:36:47 +0000 2022","id":1492507984613691396,"id_str":"1492507984613691396","text":"@JoeDoesNews - Great News Joe.\nCongrats to you and the family.\nExciting. \ud83d\udc4d\ud83d\ude00","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeDoesNews","name":"Joe - O''Brien","id":337382401,"id_str":"337382401","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1492335892651921409,"in_reply_to_status_id_str":"1492335892651921409","in_reply_to_user_id":337382401,"in_reply_to_user_id_str":"337382401","in_reply_to_screen_name":"JoeDoesNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/681357192134430720\/6izNGJo2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/681357192134430720\/6izNGJo2_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822967576976297984,"id_str":"822967576976297984","name":"C - RAMIREZ LIONARONS","screen_name":"cmrl4205","location":"","description":"#NeverTrumper - #RESIST #VoteBlue Boricua #PleaseGetVaccinated #BLM Biden \ud83c\udf3b\ud83c\udf3b\ud83c\udf3b - \ud83c\uddf5\ud83c\uddf7 \ud83c\uddfa\ud83c\uddf8\ud83c\udde8\ud83c\uddfc \u270a\ud83c\udffe - \ud83c\udff3\ufe0f\u200d\ud83c\udf08 ally \u267b\ufe0f \ud83d\udc89 Anthony - Bourdain is my spirit animal .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":945,"friends_count":2583,"listed_count":2,"created_at":"Sun - Jan 22 00:42:15 +0000 2017","favourites_count":46793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6909,"lang":null,"status":{"created_at":"Fri - Mar 25 15:30:33 +0000 2022","id":1507379418938941454,"id_str":"1507379418938941454","text":"RT - @SusanRev: @LeaderMcConnell Why does Judge Jackson have too much experience - for your taste? Is it because she\u2019s never said \u201cI like beer\u201d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SusanRev","name":"SusanRez - \ud83c\udf3b\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83d\udcaa","id":33272572,"id_str":"33272572","indices":[3,12]},{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[14,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:19:23 +0000 2022","id":1507346409061765125,"id_str":"1507346409061765125","text":"@LeaderMcConnell - Why does Judge Jackson have too much experience for your taste? Is it because - she\u2019s never said \u201cI\u2026 https:\/\/t.co\/PU30OtdGIm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/PU30OtdGIm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507346409061765125","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507092040617762818,"in_reply_to_status_id_str":"1507092040617762818","in_reply_to_user_id":1249982359,"in_reply_to_user_id_str":"1249982359","in_reply_to_screen_name":"LeaderMcConnell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1433940195993341952\/CAEx5uEc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1433940195993341952\/CAEx5uEc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822967576976297984\/1604656140","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34967095,"id_str":"34967095","name":"alinRadzali","screen_name":"alinradzali","location":"Malaysia, - Kuala Lumpur","description":"little diary \ud83c\udf39 #teamsingle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":467,"listed_count":2,"created_at":"Fri - Apr 24 16:22:18 +0000 2009","favourites_count":23901,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56880,"lang":null,"status":{"created_at":"Sat - Mar 26 07:25:11 +0000 2022","id":1507619660212346882,"id_str":"1507619660212346882","text":"RT - @zatemah_t: Dah tu kena kau viralkan diri kau dengan cara bodoh. Padan muka - kau. Kau diam kau muhasabah lah. https:\/\/t.co\/9AKDBiRYd1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zatemah_t","name":"Zatemah - Paujin Retno Chuer Septian Aziz\ud83c\udf78","id":1468114491162316800,"id_str":"1468114491162316800","indices":[3,13]}],"urls":[],"media":[{"id":1507399470572785665,"id_str":"1507399470572785665","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","url":"https:\/\/t.co\/9AKDBiRYd1","display_url":"pic.twitter.com\/9AKDBiRYd1","expanded_url":"https:\/\/twitter.com\/zatemah_t\/status\/1507399590819274753\/video\/1","type":"photo","sizes":{"medium":{"w":238,"h":426,"resize":"fit"},"small":{"w":238,"h":426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":238,"h":426,"resize":"fit"}},"source_status_id":1507399590819274753,"source_status_id_str":"1507399590819274753","source_user_id":1468114491162316800,"source_user_id_str":"1468114491162316800"}]},"extended_entities":{"media":[{"id":1507399470572785665,"id_str":"1507399470572785665","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","url":"https:\/\/t.co\/9AKDBiRYd1","display_url":"pic.twitter.com\/9AKDBiRYd1","expanded_url":"https:\/\/twitter.com\/zatemah_t\/status\/1507399590819274753\/video\/1","type":"video","sizes":{"medium":{"w":238,"h":426,"resize":"fit"},"small":{"w":238,"h":426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":238,"h":426,"resize":"fit"}},"source_status_id":1507399590819274753,"source_status_id_str":"1507399590819274753","source_user_id":1468114491162316800,"source_user_id_str":"1468114491162316800","video_info":{"aspect_ratio":[119,213],"duration_millis":49033,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507399470572785665\/pu\/pl\/gRKuSDak28bxyw8F.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507399470572785665\/pu\/vid\/238x426\/1KBj5CUPfHkDKrhf.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:50:43 +0000 2022","id":1507399590819274753,"id_str":"1507399590819274753","text":"Dah - tu kena kau viralkan diri kau dengan cara bodoh. Padan muka kau. Kau diam - kau muhasabah lah. https:\/\/t.co\/9AKDBiRYd1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507399470572785665,"id_str":"1507399470572785665","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","url":"https:\/\/t.co\/9AKDBiRYd1","display_url":"pic.twitter.com\/9AKDBiRYd1","expanded_url":"https:\/\/twitter.com\/zatemah_t\/status\/1507399590819274753\/video\/1","type":"photo","sizes":{"medium":{"w":238,"h":426,"resize":"fit"},"small":{"w":238,"h":426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":238,"h":426,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507399470572785665,"id_str":"1507399470572785665","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507399470572785665\/pu\/img\/-dgnl4vMScZPd84W.jpg","url":"https:\/\/t.co\/9AKDBiRYd1","display_url":"pic.twitter.com\/9AKDBiRYd1","expanded_url":"https:\/\/twitter.com\/zatemah_t\/status\/1507399590819274753\/video\/1","type":"video","sizes":{"medium":{"w":238,"h":426,"resize":"fit"},"small":{"w":238,"h":426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":238,"h":426,"resize":"fit"}},"video_info":{"aspect_ratio":[119,213],"duration_millis":49033,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507399470572785665\/pu\/pl\/gRKuSDak28bxyw8F.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507399470572785665\/pu\/vid\/238x426\/1KBj5CUPfHkDKrhf.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4222,"favorite_count":5979,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":4222,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507376535728455683\/i3_BMD0R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507376535728455683\/i3_BMD0R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34967095\/1612407288","profile_link_color":"F58EA8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":316173141,"id_str":"316173141","name":"Christy - Erickson","screen_name":"woodshome7","location":"Wisconsin","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":68,"listed_count":0,"created_at":"Mon - Jun 13 01:53:27 +0000 2011","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1192747206261927937,"id_str":"1192747206261927937","name":"has - (Taylor''s version)","screen_name":"haz7jk","location":"","description":"marklee - di hati sentiasa \ud83e\udd70","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":173,"listed_count":0,"created_at":"Fri - Nov 08 10:14:55 +0000 2019","favourites_count":28516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15495,"lang":null,"status":{"created_at":"Sat - Mar 26 00:20:23 +0000 2022","id":1507512753719676934,"id_str":"1507512753719676934","text":"RT - @JAMNXZ: Cousin friendships are a big flex.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JAMNXZ","name":"Jane\ud83e\uddda","id":1501807580498251776,"id_str":"1501807580498251776","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:55:15 +0000 2022","id":1506993047418114053,"id_str":"1506993047418114053","text":"Cousin - friendships are a big flex.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24330,"favorite_count":91894,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":24330,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501922136734068742\/bqzZCwBN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501922136734068742\/bqzZCwBN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192747206261927937\/1640600069","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305874918958141440,"id_str":"1305874918958141440","name":"Dee - Jay","screen_name":"DeeJay91912169","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":36,"friends_count":255,"listed_count":0,"created_at":"Tue - Sep 15 14:23:56 +0000 2020","favourites_count":319,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":587,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328357549322670082\/Rnfd1aeN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328357549322670082\/Rnfd1aeN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246679732596305920,"id_str":"1246679732596305920","name":"Dung - Nguyen","screen_name":"DungNgu69344122","location":"","description":"Ng\u01b0\u1eddi - \u0111\u00e0n \u00f4ng hi\u1ec7n \u0111\u1ea1i. Suy ngh\u0129 nhanh, l\u00e0m - nhi\u1ec1u, n\u00f3i \u00edt","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":67,"listed_count":5,"created_at":"Sun - Apr 05 06:03:16 +0000 2020","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Mon - Nov 22 08:05:17 +0000 2021","id":1462693655341195264,"id_str":"1462693655341195264","text":"RT - @Trendspider_J: Homework tonight:\n\nThese are all the tools I use on my charts. - \n\nUsing %R, RSI, & MACD for reversals:\nhttps:\/\/t.co\/F8skV\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Trendspider_j","name":"Jake - Wujastyk","id":1322182095024889857,"id_str":"1322182095024889857","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 22 03:17:31 +0000 2021","id":1462621237868306437,"id_str":"1462621237868306437","text":"Homework - tonight:\n\nThese are all the tools I use on my charts. \n\nUsing %R, RSI, - & MACD for reversals:\u2026 https:\/\/t.co\/ZnlQhmyf2H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZnlQhmyf2H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1462621237868306437","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":197,"favorite_count":1041,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":197,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246679974716686336\/SpsKhif__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246679974716686336\/SpsKhif__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":264294647,"id_str":"264294647","name":"Jagath - Gunasekara","screen_name":"JagathGuna","location":"Doha","description":"Professional - Electrical Engineer, Environmental and Nature Lover, Sports Fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":614,"listed_count":7,"created_at":"Fri - Mar 11 17:24:23 +0000 2011","favourites_count":11145,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1888,"lang":null,"status":{"created_at":"Thu - Mar 24 02:53:23 +0000 2022","id":1506826482475315204,"id_str":"1506826482475315204","text":"one - person followed me \/\/ automatically checked by https:\/\/t.co\/dBgdPoft1N","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dBgdPoft1N","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474093428468240395\/2saug0yr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474093428468240395\/2saug0yr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264294647\/1613919605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":925603120305946625,"id_str":"925603120305946625","name":"R","screen_name":"philantrophyyy","location":"","description":"semua - cuitan saya jangan didengarkan, apalagi sampai dipikirkan, karena saya hanyalah - mitos dan legenda","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":1154,"listed_count":0,"created_at":"Wed - Nov 01 05:59:15 +0000 2017","favourites_count":4846,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490749002417328129\/hl8Pp-Uo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490749002417328129\/hl8Pp-Uo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925603120305946625\/1599642928","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308496393821192197,"id_str":"1308496393821192197","name":"Igooy","screen_name":"Igooy4","location":"Nairobi, - Kenya","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":94,"listed_count":0,"created_at":"Tue - Sep 22 20:00:49 +0000 2020","favourites_count":462,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":398,"lang":null,"status":{"created_at":"Sun - Feb 20 23:24:44 +0000 2022","id":1495539951236227074,"id_str":"1495539951236227074","text":"@fadumaSuni - \ud83d\ude02 \ud83d\ude02 \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fadumaSuni","name":"faduma - Sunni","id":1289510687090319360,"id_str":"1289510687090319360","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495474472027099138,"in_reply_to_status_id_str":"1495474472027099138","in_reply_to_user_id":1289510687090319360,"in_reply_to_user_id_str":"1289510687090319360","in_reply_to_screen_name":"fadumaSuni","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308503429162110976\/79cuIuHS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308503429162110976\/79cuIuHS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308496393821192197\/1600807334","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":123238152,"id_str":"123238152","name":"OLUMUYIWA - \ud83c\uddf3\ud83c\uddec\ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf8","screen_name":"damkore","location":"Lagos, - Nigeria","description":"Be kind and respect everyone. #Activist, DM for Digital - marketing strategies & Adverts\ud83e\udd17 @ManUtd @GScouted @wisdom_applied - #BlackLivesmatter #SayNoToRacism","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1154,"friends_count":906,"listed_count":1,"created_at":"Mon - Mar 15 12:51:10 +0000 2010","favourites_count":14820,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4754,"lang":null,"status":{"created_at":"Fri - Mar 18 20:31:45 +0000 2022","id":1504918500921561091,"id_str":"1504918500921561091","text":"RT - @NathnaelKebede: Cristiano Ronaldo''s 2008\/09 version was just unplayable!\nhttps:\/\/t.co\/Bx5AXTg6TY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NathnaelKebede","name":"\ud835\udc0d\ud835\udc0a\ud835\udc27\ud835\udc1a\ud835\udc25\ud835\udc1d\ud835\udc28\u26a1(Fan)","id":962298924970233856,"id_str":"962298924970233856","indices":[3,18]}],"urls":[],"media":[{"id":1502989458723024898,"id_str":"1502989458723024898","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","url":"https:\/\/t.co\/Bx5AXTg6TY","display_url":"pic.twitter.com\/Bx5AXTg6TY","expanded_url":"https:\/\/twitter.com\/Sendo922\/status\/1502989813007458307\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1502989813007458307,"source_status_id_str":"1502989813007458307","source_user_id":1356990795883102215,"source_user_id_str":"1356990795883102215"}]},"extended_entities":{"media":[{"id":1502989458723024898,"id_str":"1502989458723024898","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","url":"https:\/\/t.co\/Bx5AXTg6TY","display_url":"pic.twitter.com\/Bx5AXTg6TY","expanded_url":"https:\/\/twitter.com\/Sendo922\/status\/1502989813007458307\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1502989813007458307,"source_status_id_str":"1502989813007458307","source_user_id":1356990795883102215,"source_user_id_str":"1356990795883102215","video_info":{"aspect_ratio":[16,9],"duration_millis":139506,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/640x360\/5XlDasWAZcHn1atU.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/480x270\/poXUrWEDiVleskPT.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/1280x720\/XDt_yufLs60VKY0L.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/pl\/tlctOT39UH3YE0Nv.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 09:29:48 +0000 2022","id":1504751915674095629,"id_str":"1504751915674095629","text":"Cristiano - Ronaldo''s 2008\/09 version was just unplayable!\nhttps:\/\/t.co\/Bx5AXTg6TY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1502989458723024898,"id_str":"1502989458723024898","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","url":"https:\/\/t.co\/Bx5AXTg6TY","display_url":"pic.twitter.com\/Bx5AXTg6TY","expanded_url":"https:\/\/twitter.com\/Sendo922\/status\/1502989813007458307\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1502989813007458307,"source_status_id_str":"1502989813007458307","source_user_id":1356990795883102215,"source_user_id_str":"1356990795883102215"}]},"extended_entities":{"media":[{"id":1502989458723024898,"id_str":"1502989458723024898","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502989458723024898\/pu\/img\/Ef9HK7YhNLRdgV8R.jpg","url":"https:\/\/t.co\/Bx5AXTg6TY","display_url":"pic.twitter.com\/Bx5AXTg6TY","expanded_url":"https:\/\/twitter.com\/Sendo922\/status\/1502989813007458307\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1502989813007458307,"source_status_id_str":"1502989813007458307","source_user_id":1356990795883102215,"source_user_id_str":"1356990795883102215","video_info":{"aspect_ratio":[16,9],"duration_millis":139506,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/640x360\/5XlDasWAZcHn1atU.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/480x270\/poXUrWEDiVleskPT.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/vid\/1280x720\/XDt_yufLs60VKY0L.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502989458723024898\/pu\/pl\/tlctOT39UH3YE0Nv.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1876,"favorite_count":7957,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1876,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408211803679690760\/rfoNzvnE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408211803679690760\/rfoNzvnE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123238152\/1586603942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":274211043,"id_str":"274211043","name":"James - Bramnick","screen_name":"JamesBramnick","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":4520,"listed_count":0,"created_at":"Tue - Mar 29 23:21:39 +0000 2011","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1675281403\/James_Bramnick_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1675281403\/James_Bramnick_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":101855882,"id_str":"101855882","name":"JLA","screen_name":"jla64","location":"London","description":"e - c l e c t i c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":1467,"listed_count":0,"created_at":"Mon - Jan 04 20:31:40 +0000 2010","favourites_count":3953,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":581,"lang":null,"status":{"created_at":"Sun - Aug 23 21:04:54 +0000 2020","id":1297640985539891200,"id_str":"1297640985539891200","text":"@hubrsso - \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83e\udd23 https:\/\/t.co\/yYaHDqCA32","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hubrsso","name":"H. - Rss\u0646 \ud83c\udf1f\ud83c\udf1f","id":187943630,"id_str":"187943630","indices":[0,8]}],"urls":[],"media":[{"id":1297640964966830082,"id_str":"1297640964966830082","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EgIllRrX0AIWwqN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EgIllRrX0AIWwqN.jpg","url":"https:\/\/t.co\/yYaHDqCA32","display_url":"pic.twitter.com\/yYaHDqCA32","expanded_url":"https:\/\/twitter.com\/jla64\/status\/1297640985539891200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1310,"h":1310,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1297640964966830082,"id_str":"1297640964966830082","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EgIllRrX0AIWwqN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EgIllRrX0AIWwqN.jpg","url":"https:\/\/t.co\/yYaHDqCA32","display_url":"pic.twitter.com\/yYaHDqCA32","expanded_url":"https:\/\/twitter.com\/jla64\/status\/1297640985539891200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1310,"h":1310,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1297462239834800132,"in_reply_to_status_id_str":"1297462239834800132","in_reply_to_user_id":101855882,"in_reply_to_user_id_str":"101855882","in_reply_to_screen_name":"jla64","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871775123967270912\/6lJU8Jnd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871775123967270912\/6lJU8Jnd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101855882\/1488195464","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":757470770,"id_str":"757470770","name":"VK - Kota joint","screen_name":"vkkotajoint","location":"Pretoria","description":"","url":"https:\/\/t.co\/Wg4HNYiNbp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Wg4HNYiNbp","expanded_url":"http:\/\/www.vkkotajoint.co.za","display_url":"vkkotajoint.co.za","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":56,"friends_count":756,"listed_count":0,"created_at":"Tue - Aug 14 16:40:19 +0000 2012","favourites_count":685,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":991,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470775700433035275\/NxXm6XVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470775700433035275\/NxXm6XVt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757470770\/1591668430","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":390458019,"id_str":"390458019","name":"not - taking it anymore","screen_name":"amyh437","location":"New York, USA","description":"feminist, - resister, dog mom, human mom, wife, daughter, sister","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":557,"listed_count":0,"created_at":"Fri - Oct 14 00:51:18 +0000 2011","favourites_count":4111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1081,"lang":null,"status":{"created_at":"Fri - Mar 25 10:18:59 +0000 2022","id":1507301010183757827,"id_str":"1507301010183757827","text":"RT - @News12WC: LADIES: Have you seen women''s products listed at a higher price - than men''s even though they are nearly identical? Let us know\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"News12WC","name":"News12WC","id":38167858,"id_str":"38167858","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:01:58 +0000 2022","id":1507296726557810697,"id_str":"1507296726557810697","text":"LADIES: - Have you seen women''s products listed at a higher price than men''s even - though they are nearly identical? L\u2026 https:\/\/t.co\/ydzRMaH02z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ydzRMaH02z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507296726557810697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226994834780622850\/mswOagdm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226994834780622850\/mswOagdm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390458019\/1581373341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3021312934,"id_str":"3021312934","name":"C. - Agostini","screen_name":"cagostini_c","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":637,"listed_count":0,"created_at":"Fri - Feb 06 10:46:29 +0000 2015","favourites_count":150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Mar 18 17:55:22 +0000 2019","id":1107702046499713025,"id_str":"1107702046499713025","text":"@kurteichenwald - Those who forget history are doomed to repeat it. (At their peril.)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kurteichenwald","name":"Kurt - Eichenwald","id":215207998,"id_str":"215207998","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1107386107551989760,"in_reply_to_status_id_str":"1107386107551989760","in_reply_to_user_id":215207998,"in_reply_to_user_id_str":"215207998","in_reply_to_screen_name":"kurteichenwald","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306832981026373632,"id_str":"1306832981026373632","name":"E - Dickinson","screen_name":"LouwrinaD","location":"Tzaneen, South Africa","description":"Avocado - Farmer \ud83e\udd51, Naturalist \ud83c\udf0d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":66,"listed_count":0,"created_at":"Fri - Sep 18 05:50:49 +0000 2020","favourites_count":272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Sun - Apr 18 07:06:03 +0000 2021","id":1383678193559695365,"id_str":"1383678193559695365","text":"RT - @washingtonpost: U.S. Poet Laureate Joy Harjo reflects on the lessons, rituals - and gifts of the pandemic year https:\/\/t.co\/zaLt30q4y5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/zaLt30q4y5","expanded_url":"https:\/\/wapo.st\/3e3raSw","display_url":"wapo.st\/3e3raSw","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Apr 17 16:45:39 +0000 2021","id":1383461665828610049,"id_str":"1383461665828610049","text":"U.S. - Poet Laureate Joy Harjo reflects on the lessons, rituals and gifts of the - pandemic year https:\/\/t.co\/zaLt30q4y5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zaLt30q4y5","expanded_url":"https:\/\/wapo.st\/3e3raSw","display_url":"wapo.st\/3e3raSw","indices":[93,116]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":155,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382054842617716736\/B0lKEFep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382054842617716736\/B0lKEFep_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243643042759872512,"id_str":"1243643042759872512","name":"minnie - may \u2728\ud83e\uddda\ud83c\udffd\u200d\u2640\ufe0f\u2665\ufe0f\ud83c\udf3a\ud83d\udca1","screen_name":"wakeupbubbles","location":"Karachi, - Pakistan.","description":"due to personal reasons i''m now into sunsets, books, - waves, stargazing and pretty eyes only. crying in med school. \/\/ feminist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1373,"friends_count":682,"listed_count":5,"created_at":"Fri - Mar 27 20:56:37 +0000 2020","favourites_count":114577,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94342,"lang":null,"status":{"created_at":"Fri - Mar 25 19:23:45 +0000 2022","id":1507438103656644617,"id_str":"1507438103656644617","text":"RT - @_robpatt: omg waseem badami with british asian actor ahsan khan who lives - here and there as well \ud83d\ude33\ud83d\ude33\ud83d\ude33 https:\/\/t.co\/Xzg0ezcDao","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_robpatt","name":"\u2661","id":1228909863062908928,"id_str":"1228909863062908928","indices":[3,12]}],"urls":[],"media":[{"id":1507103995738968064,"id_str":"1507103995738968064","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","url":"https:\/\/t.co\/Xzg0ezcDao","display_url":"pic.twitter.com\/Xzg0ezcDao","expanded_url":"https:\/\/twitter.com\/_robpatt\/status\/1507104047484002308\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1170,"resize":"fit"},"small":{"w":595,"h":680,"resize":"fit"},"large":{"w":1024,"h":1170,"resize":"fit"}},"source_status_id":1507104047484002308,"source_status_id_str":"1507104047484002308","source_user_id":1228909863062908928,"source_user_id_str":"1228909863062908928"}]},"extended_entities":{"media":[{"id":1507103995738968064,"id_str":"1507103995738968064","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","url":"https:\/\/t.co\/Xzg0ezcDao","display_url":"pic.twitter.com\/Xzg0ezcDao","expanded_url":"https:\/\/twitter.com\/_robpatt\/status\/1507104047484002308\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1170,"resize":"fit"},"small":{"w":595,"h":680,"resize":"fit"},"large":{"w":1024,"h":1170,"resize":"fit"}},"source_status_id":1507104047484002308,"source_status_id_str":"1507104047484002308","source_user_id":1228909863062908928,"source_user_id_str":"1228909863062908928"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:16:20 +0000 2022","id":1507104047484002308,"id_str":"1507104047484002308","text":"omg - waseem badami with british asian actor ahsan khan who lives here and there - as well \ud83d\ude33\ud83d\ude33\ud83d\ude33 https:\/\/t.co\/Xzg0ezcDao","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507103995738968064,"id_str":"1507103995738968064","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","url":"https:\/\/t.co\/Xzg0ezcDao","display_url":"pic.twitter.com\/Xzg0ezcDao","expanded_url":"https:\/\/twitter.com\/_robpatt\/status\/1507104047484002308\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1170,"resize":"fit"},"small":{"w":595,"h":680,"resize":"fit"},"large":{"w":1024,"h":1170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507103995738968064,"id_str":"1507103995738968064","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpPGWGX0AAMslM.jpg","url":"https:\/\/t.co\/Xzg0ezcDao","display_url":"pic.twitter.com\/Xzg0ezcDao","expanded_url":"https:\/\/twitter.com\/_robpatt\/status\/1507104047484002308\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1170,"resize":"fit"},"small":{"w":595,"h":680,"resize":"fit"},"large":{"w":1024,"h":1170,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":218,"favorite_count":2542,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":218,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442516035446378496\/6a9cSzi0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442516035446378496\/6a9cSzi0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243643042759872512\/1631373515","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1658981342,"id_str":"1658981342","name":"Wahed","screen_name":"wahedEzi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":414,"listed_count":0,"created_at":"Sat - Aug 10 01:26:25 +0000 2013","favourites_count":1727,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488143771632123908\/5_ZxCy3U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488143771632123908\/5_ZxCy3U_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304693741727485954,"id_str":"1304693741727485954","name":"Cllr - Jill Bonetto","screen_name":"bonetto_jill","location":"","description":"Non - judgemental,Good listener, enjoy working with people. Love books. Cabinet - member for Education & Inclusion","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":163,"listed_count":0,"created_at":"Sat - Sep 12 08:10:35 +0000 2020","favourites_count":958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":422,"lang":null,"status":{"created_at":"Fri - Mar 25 16:16:49 +0000 2022","id":1507391061899071489,"id_str":"1507391061899071489","text":"From - Monday 28 March, the current evening Sunday to Thursday rail replacement bus - service between Pontypridd and Ra\u2026 https:\/\/t.co\/Pv2QLDDEKI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Pv2QLDDEKI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507391061899071489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312140436560121857\/7uZxCoiM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312140436560121857\/7uZxCoiM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304693741727485954\/1603542328","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822278512488779776,"id_str":"822278512488779776","name":"DarkArts","screen_name":"DarkArtsYouTube","location":"Dusty - Depot","description":"Epic Minecraft YouTuber for 5k subs ~ Contact me at - dark.arts.business@gmail.com ~ registered clan @gamersgalactica for tourneys","url":"https:\/\/t.co\/5tqMUUNRmE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5tqMUUNRmE","expanded_url":"http:\/\/www.youtube.com\/c\/DarkArtsGaming","display_url":"youtube.com\/c\/DarkArtsGami\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":377,"friends_count":1177,"listed_count":3,"created_at":"Fri - Jan 20 03:04:09 +0000 2017","favourites_count":27325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4787,"lang":null,"status":{"created_at":"Fri - Mar 25 20:54:09 +0000 2022","id":1507460853230043136,"id_str":"1507460853230043136","text":"@hapsisonline - ^","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hapsisonline","name":"Haps","id":1487464148799737870,"id_str":"1487464148799737870","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507201947312398338,"in_reply_to_status_id_str":"1507201947312398338","in_reply_to_user_id":822278512488779776,"in_reply_to_user_id_str":"822278512488779776","in_reply_to_screen_name":"DarkArtsYouTube","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1105964817615970305\/aYqJm2qH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105964817615970305\/aYqJm2qH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822278512488779776\/1552517693","profile_link_color":"0F0601","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797833533901406208,"id_str":"797833533901406208","name":"Whatever","screen_name":"vivianebg75","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":660,"listed_count":0,"created_at":"Sun - Nov 13 16:08:32 +0000 2016","favourites_count":13973,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3520,"lang":null,"status":{"created_at":"Sat - Mar 26 05:46:16 +0000 2022","id":1507594766866915329,"id_str":"1507594766866915329","text":"RT - @YourAnonNews: Good morning Gaza \ud83c\udf3b \ud83c\udf49\u0635\u0628\u0627\u062d - \u0627\u0644\u062e\u064a\u0631 \u063a\u0632\u0629 https:\/\/t.co\/MhnOfLwm2G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YourAnonNews","name":"Anonymous","id":279390084,"id_str":"279390084","indices":[3,16]}],"urls":[],"media":[{"id":1507552423874813952,"id_str":"1507552423874813952","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","url":"https:\/\/t.co\/MhnOfLwm2G","display_url":"pic.twitter.com\/MhnOfLwm2G","expanded_url":"https:\/\/twitter.com\/YourAnonNews\/status\/1507594194117820421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":537,"resize":"fit"},"small":{"w":539,"h":537,"resize":"fit"},"medium":{"w":539,"h":537,"resize":"fit"}},"source_status_id":1507594194117820421,"source_status_id_str":"1507594194117820421","source_user_id":279390084,"source_user_id_str":"279390084"}]},"extended_entities":{"media":[{"id":1507552423874813952,"id_str":"1507552423874813952","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","url":"https:\/\/t.co\/MhnOfLwm2G","display_url":"pic.twitter.com\/MhnOfLwm2G","expanded_url":"https:\/\/twitter.com\/YourAnonNews\/status\/1507594194117820421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":537,"resize":"fit"},"small":{"w":539,"h":537,"resize":"fit"},"medium":{"w":539,"h":537,"resize":"fit"}},"source_status_id":1507594194117820421,"source_status_id_str":"1507594194117820421","source_user_id":279390084,"source_user_id_str":"279390084"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:44:00 +0000 2022","id":1507594194117820421,"id_str":"1507594194117820421","text":"Good - morning Gaza \ud83c\udf3b \ud83c\udf49\u0635\u0628\u0627\u062d \u0627\u0644\u062e\u064a\u0631 - \u063a\u0632\u0629 https:\/\/t.co\/MhnOfLwm2G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507552423874813952,"id_str":"1507552423874813952","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","url":"https:\/\/t.co\/MhnOfLwm2G","display_url":"pic.twitter.com\/MhnOfLwm2G","expanded_url":"https:\/\/twitter.com\/YourAnonNews\/status\/1507594194117820421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":537,"resize":"fit"},"small":{"w":539,"h":537,"resize":"fit"},"medium":{"w":539,"h":537,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507552423874813952,"id_str":"1507552423874813952","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvm8TFWYAATmrS.jpg","url":"https:\/\/t.co\/MhnOfLwm2G","display_url":"pic.twitter.com\/MhnOfLwm2G","expanded_url":"https:\/\/twitter.com\/YourAnonNews\/status\/1507594194117820421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":537,"resize":"fit"},"small":{"w":539,"h":537,"resize":"fit"},"medium":{"w":539,"h":537,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":1790,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":181,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319445310352089090\/Dm8Plera_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319445310352089090\/Dm8Plera_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242481306790809600,"id_str":"1242481306790809600","name":"Alfred - Kyalo kilonzoalfredchallo@gmail.com","screen_name":"AlfredKyalokil1","location":"Nairobi, - Kenya","description":"better for best","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":425,"listed_count":0,"created_at":"Tue - Mar 24 16:02:18 +0000 2020","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Tue - Nov 03 13:40:27 +0000 2020","id":1323621060626030592,"id_str":"1323621060626030592","text":"https:\/\/t.co\/pptFnbKkPZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pptFnbKkPZ","expanded_url":"https:\/\/s.trychances.com\/win_push?round=1&tid=kh20p64y9n3gm4gertgc88cg4,15083156,5,8413&ctrack=1604410688.2398650960&p=8413&pi=15089&click_id=egfjv5fa15d3fa057a297747259","display_url":"s.trychances.com\/win_push?round\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244173068211191809\/EW0D-RXs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244173068211191809\/EW0D-RXs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1242481306790809600\/1585469003","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":703333870138163200,"id_str":"703333870138163200","name":"Trump - and Dumber","screen_name":"Trumpbits","location":"A safe place","description":"Phew!!!!!! - THAT was close!! But we can''t relax. 2 of the 3 are still in the chair with - the Orange One waiting for a another turn at bat #theresistance\ud83d\udd75\ufe0f\u200d\u2640\ufe0f\ud83c\udf0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6255,"friends_count":3949,"listed_count":36,"created_at":"Fri - Feb 26 21:40:36 +0000 2016","favourites_count":48090,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36466,"lang":null,"status":{"created_at":"Sun - Mar 20 12:56:59 +0000 2022","id":1505528831100211201,"id_str":"1505528831100211201","text":"RT - @HarryYorke1: EXCLUSIVE: PM attended a secret Tory fundraising dinner attended - by at least one donor with Russian links on the night Put\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HarryYorke1","name":"Harry - Yorke","id":519813577,"id_str":"519813577","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 18:18:31 +0000 2022","id":1505247361613844483,"id_str":"1505247361613844483","text":"EXCLUSIVE: - PM attended a secret Tory fundraising dinner attended by at least one donor - with Russian links on the ni\u2026 https:\/\/t.co\/ww2UsEpIFP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ww2UsEpIFP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505247361613844483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7660,"favorite_count":14004,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7660,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704410214775320576\/uUmVoEUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704410214775320576\/uUmVoEUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703333870138163200\/1621102728","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18679940,"id_str":"18679940","name":"matthew_schell","screen_name":"matthew_schell","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":136,"listed_count":0,"created_at":"Tue - Jan 06 15:41:05 +0000 2009","favourites_count":1262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1048,"lang":null,"status":{"created_at":"Wed - Mar 23 15:28:20 +0000 2022","id":1506654083335299072,"id_str":"1506654083335299072","text":"@DurhamHealth - But if you look around most people are still masking! Guess those truckers - didn''t represent the major\u2026 https:\/\/t.co\/uTuhRL6f65","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DurhamHealth","name":"Durham - Region Health Department","id":415773218,"id_str":"415773218","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/uTuhRL6f65","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506654083335299072","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506632111561883657,"in_reply_to_status_id_str":"1506632111561883657","in_reply_to_user_id":415773218,"in_reply_to_user_id_str":"415773218","in_reply_to_screen_name":"DurhamHealth","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"385152","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493040021913358340\/XxbCVLUk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493040021913358340\/XxbCVLUk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18679940\/1644803455","profile_link_color":"284C71","profile_sidebar_border_color":"0E3C4E","profile_sidebar_fill_color":"DEF6DA","profile_text_color":"470B0B","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297394164670193664,"id_str":"1297394164670193664","name":"killasoul","screen_name":"aljnnta","location":"","description":"\u1d1b\u0280\u028f - \u1d1b\u1d0f \u0274\u1d0f\u1d1b \u1d0b\u026a\u029f\u029f \u1d00 \u1d05\u1d07\u1d00\u1d05 - \ua731\u1d0f\u1d1c\u029f.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":197,"listed_count":0,"created_at":"Sun - Aug 23 04:44:33 +0000 2020","favourites_count":1187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Sat - Mar 26 07:01:52 +0000 2022","id":1507613792477532168,"id_str":"1507613792477532168","text":"@imateeny - Kek mukanya komuk kali","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"imateeny","name":"Nadnad","id":1054882929875148800,"id_str":"1054882929875148800","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507291791485145090,"in_reply_to_status_id_str":"1507291791485145090","in_reply_to_user_id":1054882929875148800,"in_reply_to_user_id_str":"1054882929875148800","in_reply_to_screen_name":"imateeny","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427272144761679873\/0qUATUE0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427272144761679873\/0qUATUE0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1297394164670193664\/1602991159","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1076744993623011330,"id_str":"1076744993623011330","name":"Muhammad - Nazif Musa","screen_name":"MuhammadNazifM1","location":"Bauchi state","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":336,"listed_count":0,"created_at":"Sun - Dec 23 07:43:06 +0000 2018","favourites_count":4716,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":994,"lang":null,"status":{"created_at":"Sat - Mar 26 10:16:34 +0000 2022","id":1507662787354501123,"id_str":"1507662787354501123","text":"RT - @bbchausa: \u0198ungiyar Izala ta ro\u0199i Buhari ya bu\u0257e rumbunan abinci - albarkacin Ramadan https:\/\/t.co\/BZ22wn7CWD https:\/\/t.co\/Tzyu7HXvRo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bbchausa","name":"BBC - News Hausa","id":18168536,"id_str":"18168536","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/BZ22wn7CWD","expanded_url":"https:\/\/bbc.in\/3L8aiZY","display_url":"bbc.in\/3L8aiZY","indices":[87,110]}],"media":[{"id":1507625945758416899,"id_str":"1507625945758416899","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","url":"https:\/\/t.co\/Tzyu7HXvRo","display_url":"pic.twitter.com\/Tzyu7HXvRo","expanded_url":"https:\/\/twitter.com\/bbchausa\/status\/1507625951521386501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507625951521386501,"source_status_id_str":"1507625951521386501","source_user_id":18168536,"source_user_id_str":"18168536"}]},"extended_entities":{"media":[{"id":1507625945758416899,"id_str":"1507625945758416899","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","url":"https:\/\/t.co\/Tzyu7HXvRo","display_url":"pic.twitter.com\/Tzyu7HXvRo","expanded_url":"https:\/\/twitter.com\/bbchausa\/status\/1507625951521386501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507625951521386501,"source_status_id_str":"1507625951521386501","source_user_id":18168536,"source_user_id_str":"18168536"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:50:11 +0000 2022","id":1507625951521386501,"id_str":"1507625951521386501","text":"\u0198ungiyar - Izala ta ro\u0199i Buhari ya bu\u0257e rumbunan abinci albarkacin Ramadan - https:\/\/t.co\/BZ22wn7CWD https:\/\/t.co\/Tzyu7HXvRo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BZ22wn7CWD","expanded_url":"https:\/\/bbc.in\/3L8aiZY","display_url":"bbc.in\/3L8aiZY","indices":[73,96]}],"media":[{"id":1507625945758416899,"id_str":"1507625945758416899","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","url":"https:\/\/t.co\/Tzyu7HXvRo","display_url":"pic.twitter.com\/Tzyu7HXvRo","expanded_url":"https:\/\/twitter.com\/bbchausa\/status\/1507625951521386501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507625945758416899,"id_str":"1507625945758416899","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwpz1cXwAMTo52.jpg","url":"https:\/\/t.co\/Tzyu7HXvRo","display_url":"pic.twitter.com\/Tzyu7HXvRo","expanded_url":"https:\/\/twitter.com\/bbchausa\/status\/1507625951521386501\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1365,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":481,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309081821020409858\/0OCJUYUu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309081821020409858\/0OCJUYUu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1076744993623011330\/1592494410","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":324864993,"id_str":"324864993","name":"kalhoro - salam","screen_name":"kalhoro73","location":"Karachi","description":"Educator,Philanthropist, - Social, Human Right Activitist ,Passaionable spirit of work, Diginity and - Honest Believe in ALLAH And his Messenger Muhammam SAWW.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":714,"listed_count":0,"created_at":"Mon - Jun 27 10:28:30 +0000 2011","favourites_count":2463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4403,"lang":null,"status":{"created_at":"Sat - Mar 26 10:34:38 +0000 2022","id":1507667336064606215,"id_str":"1507667336064606215","text":"@Xadeejournalist - @khalidkoree @PPP_Org Is ko kis ne bhagaya high Court ne ya cm sindh ne? Qatlon - ko protect kon deta ha? Courts","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xadeejournalist","name":"Mubashir - Zaidi","id":286613468,"id_str":"286613468","indices":[0,16]},{"screen_name":"khalidkoree","name":"khaled - hossein","id":388768658,"id_str":"388768658","indices":[17,29]},{"screen_name":"PPP_Org","name":"Pakistan - Peoples Party - PPP","id":1194559248,"id_str":"1194559248","indices":[30,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507642789034668033,"in_reply_to_status_id_str":"1507642789034668033","in_reply_to_user_id":286613468,"in_reply_to_user_id_str":"286613468","in_reply_to_screen_name":"Xadeejournalist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495032638255546373\/WDIXMeWC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495032638255546373\/WDIXMeWC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":311461496,"id_str":"311461496","name":"Joanna - Fauzi","screen_name":"JoannaFz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":1588,"listed_count":0,"created_at":"Sun - Jun 05 14:02:23 +0000 2011","favourites_count":1159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":216445496,"id_str":"216445496","name":"Nila - Novotny MD","screen_name":"nilanovotny","location":"Nebraska, USA","description":"Otolaryngologist, - Medical Missionary","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":440,"listed_count":7,"created_at":"Tue - Nov 16 19:07:12 +0000 2010","favourites_count":1209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":289,"lang":null,"status":{"created_at":"Wed - Mar 09 01:17:10 +0000 2022","id":1501366450463911938,"id_str":"1501366450463911938","text":"@TraitorTrumpKFC - @washingtonpost This is just sick! \ud83e\udd2e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TraitorTrumpKFC","name":"\u27a1\ufe0fCrooked - Donald","id":96856149,"id_str":"96856149","indices":[0,16]},{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[17,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501334214582554624,"in_reply_to_status_id_str":"1501334214582554624","in_reply_to_user_id":96856149,"in_reply_to_user_id_str":"96856149","in_reply_to_screen_name":"TraitorTrumpKFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354987364880424962\/cdRo_vh7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354987364880424962\/cdRo_vh7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216445496\/1598054422","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":122302245,"id_str":"122302245","name":"Lee - Newcomb","screen_name":"LeeNewcomb","location":"Washington, DC Metro Area","description":"Working - in Business Development & Sales; Devoted to Animal Rescue, A Clean Environment, - Minimalist Thinking & Celtic Music.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":557,"friends_count":1311,"listed_count":5,"created_at":"Fri - Mar 12 07:38:02 +0000 2010","favourites_count":3416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3551,"lang":null,"status":{"created_at":"Wed - Feb 23 20:00:55 +0000 2022","id":1496575822588743686,"id_str":"1496575822588743686","text":"@LadyTeapots - B is my choice!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LadyTeapots","name":"LadyTeapots\ud83e\uded6","id":958812372,"id_str":"958812372","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1496152257838170116,"in_reply_to_status_id_str":"1496152257838170116","in_reply_to_user_id":958812372,"in_reply_to_user_id_str":"958812372","in_reply_to_screen_name":"LadyTeapots","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000324926119\/e023d2802fa3a6f05c33ecc663aeb99a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000324926119\/e023d2802fa3a6f05c33ecc663aeb99a_normal.jpeg","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269246426418163713,"id_str":"1269246426418163713","name":"Smurf","screen_name":"AaronMo82343074","location":"he\/him - | 17 ","description":"\u201ccubitum eamus\u201d \u201cwhat?\u201d \u201cnothing.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":474,"listed_count":0,"created_at":"Sat - Jun 06 12:35:24 +0000 2020","favourites_count":6076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1199,"lang":null,"status":{"created_at":"Wed - Mar 23 23:27:53 +0000 2022","id":1506774767503921158,"id_str":"1506774767503921158","text":"RT - @DeepFriedToes_: Everybody start running \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d - https:\/\/t.co\/Eq1Go8TJRu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeepFriedToes_","name":"Maury - Cameraman","id":3408716145,"id_str":"3408716145","indices":[3,18]}],"urls":[],"media":[{"id":1506059314489876483,"id_str":"1506059314489876483","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","url":"https:\/\/t.co\/Eq1Go8TJRu","display_url":"pic.twitter.com\/Eq1Go8TJRu","expanded_url":"https:\/\/twitter.com\/DeepFriedToes_\/status\/1506059410963156997\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":371,"h":680,"resize":"fit"},"large":{"w":672,"h":1232,"resize":"fit"},"medium":{"w":655,"h":1200,"resize":"fit"}},"source_status_id":1506059410963156997,"source_status_id_str":"1506059410963156997","source_user_id":3408716145,"source_user_id_str":"3408716145"}]},"extended_entities":{"media":[{"id":1506059314489876483,"id_str":"1506059314489876483","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","url":"https:\/\/t.co\/Eq1Go8TJRu","display_url":"pic.twitter.com\/Eq1Go8TJRu","expanded_url":"https:\/\/twitter.com\/DeepFriedToes_\/status\/1506059410963156997\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":371,"h":680,"resize":"fit"},"large":{"w":672,"h":1232,"resize":"fit"},"medium":{"w":655,"h":1200,"resize":"fit"}},"source_status_id":1506059410963156997,"source_status_id_str":"1506059410963156997","source_user_id":3408716145,"source_user_id_str":"3408716145","video_info":{"aspect_ratio":[6,11],"duration_millis":20200,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/672x1232\/5KhT3HnXzsBbEuyp.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/320x586\/H0yOA4ph-ChYUJru.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/480x880\/eGLAR1J6xOffpPq1.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/pl\/J6sR_fq7ayftkKfY.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:05:19 +0000 2022","id":1506059410963156997,"id_str":"1506059410963156997","text":"Everybody - start running \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/Eq1Go8TJRu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506059314489876483,"id_str":"1506059314489876483","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","url":"https:\/\/t.co\/Eq1Go8TJRu","display_url":"pic.twitter.com\/Eq1Go8TJRu","expanded_url":"https:\/\/twitter.com\/DeepFriedToes_\/status\/1506059410963156997\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":371,"h":680,"resize":"fit"},"large":{"w":672,"h":1232,"resize":"fit"},"medium":{"w":655,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506059314489876483,"id_str":"1506059314489876483","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506059314489876483\/pu\/img\/tA3tRm0_W-PeqV0_.jpg","url":"https:\/\/t.co\/Eq1Go8TJRu","display_url":"pic.twitter.com\/Eq1Go8TJRu","expanded_url":"https:\/\/twitter.com\/DeepFriedToes_\/status\/1506059410963156997\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":371,"h":680,"resize":"fit"},"large":{"w":672,"h":1232,"resize":"fit"},"medium":{"w":655,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[6,11],"duration_millis":20200,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/672x1232\/5KhT3HnXzsBbEuyp.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/320x586\/H0yOA4ph-ChYUJru.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/vid\/480x880\/eGLAR1J6xOffpPq1.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506059314489876483\/pu\/pl\/J6sR_fq7ayftkKfY.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28085,"favorite_count":237935,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28085,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489007008095289344\/6BqCHB4v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489007008095289344\/6BqCHB4v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269246426418163713\/1636810009","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":187948709,"id_str":"187948709","name":"ead","screen_name":"eadnaead","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":411,"listed_count":1,"created_at":"Tue - Sep 07 15:18:21 +0000 2010","favourites_count":879,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Tue - Sep 07 03:32:18 +0000 2021","id":1435083478920429580,"id_str":"1435083478920429580","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary wishing - everyone have a happy day https:\/\/t.co\/Uft1ZUzJg9","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1435083472595390467,"id_str":"1435083472595390467","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/E-pw0J8VEAMo3wz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-pw0J8VEAMo3wz.jpg","url":"https:\/\/t.co\/Uft1ZUzJg9","display_url":"pic.twitter.com\/Uft1ZUzJg9","expanded_url":"https:\/\/twitter.com\/eadnaead\/status\/1435083478920429580\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1435083472595390467,"id_str":"1435083472595390467","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/E-pw0J8VEAMo3wz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-pw0J8VEAMo3wz.jpg","url":"https:\/\/t.co\/Uft1ZUzJg9","display_url":"pic.twitter.com\/Uft1ZUzJg9","expanded_url":"https:\/\/twitter.com\/eadnaead\/status\/1435083478920429580\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187948709\/1379672934","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1073507956308623365,"id_str":"1073507956308623365","name":"Jupiter\u2077","screen_name":"Ppp91714358","location":"","description":"\u0e19\u0e49\u0e2d\u0e07\u0e22\u0e39\u0e21\u0e01\u0e34\u0e1b\u0e39\u0e4a\u0e1b\u0e1b\u0e34\u0e4a\u0e1b\u2661\u2728\ud83d\udc9c\ud83c\udf37\n\n@ppp090393","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":253,"listed_count":0,"created_at":"Fri - Dec 14 09:20:16 +0000 2018","favourites_count":55454,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28189,"lang":null,"status":{"created_at":"Fri - Oct 22 02:55:48 +0000 2021","id":1451381747602505733,"id_str":"1451381747602505733","text":"RT - @oilSGTH: \u0e22\u0e38\u0e19\u0e01\u0e34\u0e40\u0e27\u0e25\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e2a\u0e2d\u0e07\u0e04\u0e34\u0e21\u0e01\u0e47\u0e04\u0e37\u0e2d\u0e40\u0e1b\u0e47\u0e19\u0e19\u0e49\u0e2d\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e44\u0e1b\u0e40\u0e25\u0e22\u0e2d\u0e48\u0e32 - \u0e41\u0e07\u0e40\u0e2d\u0e47\u0e19\u0e14\u0e39\ud83e\udd7a https:\/\/t.co\/xHXW4VXVWS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oilSGTH","name":"\ud83d\udc31\ud83c\udf4a - \u029f\u026a\u029f \u1d0d\u1d07\u1d0f\u1d21 \u1d0d\u1d07\u1d0f\u1d21 \ud83c\udf53\ud83d\udc2f#\u0e04\u0e23\u0e32\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e44\u0e27\u0e49\u0e44\u0e1b\u0e41\u0e14\u0e01\u0e39\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e19\u0e30","id":416198660,"id_str":"416198660","indices":[3,11]}],"urls":[],"media":[{"id":1451058175151468546,"id_str":"1451058175151468546","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1242,"h":698,"resize":"fit"}},"source_status_id":1451058182604746753,"source_status_id_str":"1451058182604746753","source_user_id":416198660,"source_user_id_str":"416198660"}]},"extended_entities":{"media":[{"id":1451058175151468546,"id_str":"1451058175151468546","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1242,"h":698,"resize":"fit"}},"source_status_id":1451058182604746753,"source_status_id_str":"1451058182604746753","source_user_id":416198660,"source_user_id_str":"416198660"},{"id":1451058175138951172,"id_str":"1451058175138951172","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOWVcAQwCZa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOWVcAQwCZa.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1488,"h":837,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1451058182604746753,"source_status_id_str":"1451058182604746753","source_user_id":416198660,"source_user_id_str":"416198660"},{"id":1451058175147331589,"id_str":"1451058175147331589","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOYVUAU4nZQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOYVUAU4nZQ.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":763,"h":429,"resize":"fit"},"medium":{"w":763,"h":429,"resize":"fit"}},"source_status_id":1451058182604746753,"source_status_id_str":"1451058182604746753","source_user_id":416198660,"source_user_id_str":"416198660"},{"id":1451058175147331591,"id_str":"1451058175147331591","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOYVUAcoPKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOYVUAcoPKp.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":946,"h":532,"resize":"fit"},"large":{"w":946,"h":532,"resize":"fit"}},"source_status_id":1451058182604746753,"source_status_id_str":"1451058182604746753","source_user_id":416198660,"source_user_id_str":"416198660"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 21 05:30:04 +0000 2021","id":1451058182604746753,"id_str":"1451058182604746753","text":"\u0e22\u0e38\u0e19\u0e01\u0e34\u0e40\u0e27\u0e25\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e2a\u0e2d\u0e07\u0e04\u0e34\u0e21\u0e01\u0e47\u0e04\u0e37\u0e2d\u0e40\u0e1b\u0e47\u0e19\u0e19\u0e49\u0e2d\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e44\u0e1b\u0e40\u0e25\u0e22\u0e2d\u0e48\u0e32 - \u0e41\u0e07\u0e40\u0e2d\u0e47\u0e19\u0e14\u0e39\ud83e\udd7a https:\/\/t.co\/xHXW4VXVWS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1451058175151468546,"id_str":"1451058175151468546","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1242,"h":698,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1451058175151468546,"id_str":"1451058175151468546","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOZUcAIM1T5.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1242,"h":698,"resize":"fit"}}},{"id":1451058175138951172,"id_str":"1451058175138951172","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOWVcAQwCZa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOWVcAQwCZa.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1488,"h":837,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}},{"id":1451058175147331589,"id_str":"1451058175147331589","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOYVUAU4nZQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOYVUAU4nZQ.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":763,"h":429,"resize":"fit"},"medium":{"w":763,"h":429,"resize":"fit"}}},{"id":1451058175147331591,"id_str":"1451058175147331591","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FCMxuOYVUAcoPKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCMxuOYVUAcoPKp.jpg","url":"https:\/\/t.co\/xHXW4VXVWS","display_url":"pic.twitter.com\/xHXW4VXVWS","expanded_url":"https:\/\/twitter.com\/oilSGTH\/status\/1451058182604746753\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":946,"h":532,"resize":"fit"},"large":{"w":946,"h":532,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":45,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322540507587702784\/iCh5NxJO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322540507587702784\/iCh5NxJO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073507956308623365\/1606670310","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18039488,"id_str":"18039488","name":"Chris - Losnegard","screen_name":"losnegard","location":"Fullerton, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":365,"listed_count":10,"created_at":"Thu - Dec 11 03:26:38 +0000 2008","favourites_count":1471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":195,"lang":null,"status":{"created_at":"Mon - Dec 27 17:02:33 +0000 2021","id":1475512436539097090,"id_str":"1475512436539097090","text":"RT - @KlotzBarone: FoodNetwork: Which of these displays do YOU think is worthy - of the $25,000 prize?! #HolidayWars https:\/\/t.co\/ADkBvhj6FO","truncated":false,"entities":{"hashtags":[{"text":"HolidayWars","indices":[100,112]}],"symbols":[],"user_mentions":[{"screen_name":"KlotzBarone","name":"Barone - Klotz","id":711925672919363584,"id_str":"711925672919363584","indices":[3,15]}],"urls":[],"media":[{"id":1472755517995036675,"id_str":"1472755517995036675","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"}]},"extended_entities":{"media":[{"id":1472755517995036675,"id_str":"1472755517995036675","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"},{"id":1472755518057984005,"id_str":"1472755518057984005","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzbXsAUphXH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzbXsAUphXH.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Dec 20 08:10:46 +0000 2021","id":1472841893025357826,"id_str":"1472841893025357826","text":"FoodNetwork: - Which of these displays do YOU think is worthy of the $25,000 prize?! #HolidayWars - https:\/\/t.co\/ADkBvhj6FO","truncated":false,"entities":{"hashtags":[{"text":"HolidayWars","indices":[83,95]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1472755517995036675,"id_str":"1472755517995036675","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"}]},"extended_entities":{"media":[{"id":1472755517995036675,"id_str":"1472755517995036675","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzMXMAMy-rR.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"},{"id":1472755518057984005,"id_str":"1472755518057984005","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FHBHVzbXsAUphXH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHBHVzbXsAUphXH.jpg","url":"https:\/\/t.co\/ADkBvhj6FO","display_url":"pic.twitter.com\/ADkBvhj6FO","expanded_url":"https:\/\/twitter.com\/FoodNetwork\/status\/1472769978357018628\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"source_status_id":1472769978357018628,"source_status_id_str":"1472769978357018628","source_user_id":20710809,"source_user_id_str":"20710809"}]},"source":"\u003ca - href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460371091642191874\/5DRZlP-A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460371091642191874\/5DRZlP-A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18039488\/1485748601","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2842233120,"id_str":"2842233120","name":"Sheikh.Arslan","screen_name":"Arslan123Irfan","location":"Pakistan - karachi ","description":"Just ! My heart in Allah .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":1238,"listed_count":0,"created_at":"Mon - Oct 06 11:24:54 +0000 2014","favourites_count":2179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":200,"lang":null,"status":{"created_at":"Mon - Feb 14 23:54:17 +0000 2022","id":1493373058626859011,"id_str":"1493373058626859011","text":"@shaanzeBasharat - Nice","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"shaanzeBasharat","name":"Shaanze - \ud83c\uddf5\ud83c\uddf0","id":913794931172442114,"id_str":"913794931172442114","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493224966158004230,"in_reply_to_status_id_str":"1493224966158004230","in_reply_to_user_id":913794931172442114,"in_reply_to_user_id_str":"913794931172442114","in_reply_to_screen_name":"shaanzeBasharat","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245055041523892224\/oDUvvHDR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245055041523892224\/oDUvvHDR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2842233120\/1624059347","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24311499,"id_str":"24311499","name":"Matt - Kopald","screen_name":"Mkopald","location":"California, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":398,"listed_count":0,"created_at":"Sat - Mar 14 02:31:01 +0000 2009","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Fri - Jan 07 08:32:23 +0000 2022","id":1479370316337987584,"id_str":"1479370316337987584","text":"@united - - it\u2019s been a bad week for us. First you cancel our flight 2 hours before - we are set to take off, and now I\u2026 https:\/\/t.co\/s1Iby0MoIP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"united","name":"United - Airlines","id":260907612,"id_str":"260907612","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/s1Iby0MoIP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479370316337987584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":260907612,"in_reply_to_user_id_str":"260907612","in_reply_to_screen_name":"united","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449813298614968324\/a20-c1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449813298614968324\/a20-c1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24311499\/1634497402","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1050389543709339649,"id_str":"1050389543709339649","name":"Jar!","screen_name":"Jarlkacobs__","location":"hehe","description":"\ud83d\ude04","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":137,"friends_count":151,"listed_count":0,"created_at":"Thu - Oct 11 14:15:57 +0000 2018","favourites_count":37773,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491207178090258433\/yUG7uSm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491207178090258433\/yUG7uSm9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050389543709339649\/1644367507","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1106633117672960000,"id_str":"1106633117672960000","name":"Dennis - the Menace","screen_name":"Dennist17841611","location":"Puyallup, WA","description":"Just - here to hear a few Folks.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":196,"listed_count":0,"created_at":"Fri - Mar 15 19:07:50 +0000 2019","favourites_count":761,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":80,"lang":null,"status":{"created_at":"Tue - Jan 19 11:45:38 +0000 2021","id":1351496031578386433,"id_str":"1351496031578386433","text":"@BernieSanders - I cannot believe the hypocrisy in the trump family tweets today as we celebrate - the life and legacy of Dr. King.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1351274558079303680,"in_reply_to_status_id_str":"1351274558079303680","in_reply_to_user_id":216776631,"in_reply_to_user_id_str":"216776631","in_reply_to_screen_name":"BernieSanders","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1106633564546699264\/fbJsNHs1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106633564546699264\/fbJsNHs1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1106633117672960000\/1562540850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":824327279622885376,"id_str":"824327279622885376","name":"\u2728MiLLy - J BliGe\ud83c\udf6d","screen_name":"MajorSidei","location":"New York, USA","description":"PEACH - | laugh! damn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1268,"friends_count":1391,"listed_count":0,"created_at":"Wed - Jan 25 18:45:13 +0000 2017","favourites_count":24006,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10094,"lang":null,"status":{"created_at":"Sat - Mar 26 03:00:13 +0000 2022","id":1507552977229389826,"id_str":"1507552977229389826","text":"RT - @sheeks25559829: Annie is the woman that stayed.. Zari is the woman that left - . There is always gonna be conflict with the two because t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sheeks25559829","name":"sheeks","id":1136442471246946304,"id_str":"1136442471246946304","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 23:59:44 +0000 2022","id":1504970841712439302,"id_str":"1504970841712439302","text":"Annie - is the woman that stayed.. Zari is the woman that left . There is always gonna - be conflict with the two becau\u2026 https:\/\/t.co\/zIY2l7Yl06","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zIY2l7Yl06","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504970841712439302","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1033,"favorite_count":6296,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1033,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507279844501073926\/jpO0noto_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507279844501073926\/jpO0noto_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824327279622885376\/1590142306","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":70329575,"id_str":"70329575","name":"Jarle - \u00d8degaard","screen_name":"joedegaa","location":"Bergen, Norway","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":991,"listed_count":5,"created_at":"Mon - Aug 31 06:36:28 +0000 2009","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Fri - Mar 18 09:29:13 +0000 2022","id":1504751768919592978,"id_str":"1504751768919592978","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492124183366709248\/LztgBE1o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492124183366709248\/LztgBE1o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1425652032,"id_str":"1425652032","name":"Muhenga - Gabriel\ud83d\udd06","screen_name":"MuhengaG","location":"Amsterdam, Nederland","description":"medical - personnel | IT | Entrepreneur | Activist |","url":"https:\/\/t.co\/QihOpenHo1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QihOpenHo1","expanded_url":"http:\/\/www.muhengagabriel.wordpress.com","display_url":"muhengagabriel.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":165,"listed_count":0,"created_at":"Mon - May 13 14:53:43 +0000 2013","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":281,"lang":null,"status":{"created_at":"Wed - Mar 23 14:48:01 +0000 2022","id":1506643936231710730,"id_str":"1506643936231710730","text":"Ni - kitu gani umewahi kuambiwa ukabisha sana na ukakataa kabisa kwamba sio kweli?\n\nMimi: - Ndege inatumia mafuta ya taa as a fuel.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439629654697156609\/B2EJgtG3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439629654697156609\/B2EJgtG3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1425652032\/1603972134","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195519902360096768,"id_str":"1195519902360096768","name":"Stu","screen_name":"opinionatedStu","location":"","description":"Opinionated - and not bothering colleagues. He\/him. I always follow back (but might not - stay long if you make me wish I wasn\u2019t on twitter)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":647,"friends_count":2416,"listed_count":1,"created_at":"Sat - Nov 16 01:52:32 +0000 2019","favourites_count":26099,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7702,"lang":null,"status":{"created_at":"Fri - Mar 25 00:53:07 +0000 2022","id":1507158602808655875,"id_str":"1507158602808655875","text":"RT - @marquelawyers: The only thing anyone should be saying about the government - accepting NZ''s refugee offer after nine years is that our na\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marquelawyers","name":"marquelawyers","id":41218263,"id_str":"41218263","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:21:07 +0000 2022","id":1507135453098438686,"id_str":"1507135453098438686","text":"The - only thing anyone should be saying about the government accepting NZ''s refugee - offer after nine years is that o\u2026 https:\/\/t.co\/uGEFgNzvEK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uGEFgNzvEK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507135453098438686","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1368,"favorite_count":6072,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1368,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195528047413215233\/Rmxnzg5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195528047413215233\/Rmxnzg5S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27130279,"id_str":"27130279","name":"Cristiana - Nazzaro","screen_name":"CristianaNazz","location":"\u2600\ufe0f","description":"AWS. - Dog lady. Nutella lover.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":1161,"listed_count":5,"created_at":"Fri - Mar 27 23:46:14 +0000 2009","favourites_count":1251,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1258,"lang":null,"status":{"created_at":"Sun - Mar 13 01:17:47 +0000 2022","id":1502816155563667466,"id_str":"1502816155563667466","text":"@TiffanyDCross - @TiffanyDCross https:\/\/t.co\/aRy8taImkg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TiffanyDCross","name":"@tiffanydcross","id":200846651,"id_str":"200846651","indices":[0,14]},{"screen_name":"TiffanyDCross","name":"@tiffanydcross","id":200846651,"id_str":"200846651","indices":[15,29]}],"urls":[],"media":[{"id":1502816150442287110,"id_str":"1502816150442287110","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FNsTU5nVIAYibq5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNsTU5nVIAYibq5.jpg","url":"https:\/\/t.co\/aRy8taImkg","display_url":"pic.twitter.com\/aRy8taImkg","expanded_url":"https:\/\/twitter.com\/CristianaNazz\/status\/1502816155563667466\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1502816150442287110,"id_str":"1502816150442287110","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FNsTU5nVIAYibq5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNsTU5nVIAYibq5.jpg","url":"https:\/\/t.co\/aRy8taImkg","display_url":"pic.twitter.com\/aRy8taImkg","expanded_url":"https:\/\/twitter.com\/CristianaNazz\/status\/1502816155563667466\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1502816150664609793,"id_str":"1502816150664609793","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FNsTU6cVgAEqvEp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNsTU6cVgAEqvEp.jpg","url":"https:\/\/t.co\/aRy8taImkg","display_url":"pic.twitter.com\/aRy8taImkg","expanded_url":"https:\/\/twitter.com\/CristianaNazz\/status\/1502816155563667466\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1502816150702411785,"id_str":"1502816150702411785","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FNsTU6lWUAkTka6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNsTU6lWUAkTka6.jpg","url":"https:\/\/t.co\/aRy8taImkg","display_url":"pic.twitter.com\/aRy8taImkg","expanded_url":"https:\/\/twitter.com\/CristianaNazz\/status\/1502816155563667466\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502649362039508993,"in_reply_to_status_id_str":"1502649362039508993","in_reply_to_user_id":200846651,"in_reply_to_user_id_str":"200846651","in_reply_to_screen_name":"TiffanyDCross","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/835863447682355200\/VK7gOYVR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835863447682355200\/VK7gOYVR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27130279\/1488120183","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":146914439,"id_str":"146914439","name":"Rodrigo - Taboada","screen_name":"ro_taboada","location":"Sao Paulo, Brazil","description":"Software - Engineer @ @nubankbrasil","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":1877,"listed_count":7,"created_at":"Sat - May 22 17:41:15 +0000 2010","favourites_count":8934,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":545,"lang":null,"status":{"created_at":"Tue - Mar 08 22:49:21 +0000 2022","id":1501329252926603274,"id_str":"1501329252926603274","text":"RT - @EngineerRabbit: Ser\u00e1 que voc\u00ea tem tomado atitudes ruins com as - mulheres no trabalho? \n\nChega mais! Eu vou te contar o que incomoda as m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EngineerRabbit","name":"Engenheira - Coelho \ud83d\udc30 \ud83d\udc1d","id":1398106430398513152,"id_str":"1398106430398513152","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 14:17:04 +0000 2022","id":1501200330767351817,"id_str":"1501200330767351817","text":"Ser\u00e1 - que voc\u00ea tem tomado atitudes ruins com as mulheres no trabalho? \n\nChega - mais! Eu vou te contar o que incomoda\u2026 https:\/\/t.co\/ssTv78xM3f","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ssTv78xM3f","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501200330767351817","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":110,"favorite_count":513,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":110,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299325964741009408,"id_str":"1299325964741009408","name":"Sir - Forhad Sumon","screen_name":"SirForhad","location":"","description":"M 52 - , Zex , UFO & tweet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":1373,"listed_count":0,"created_at":"Fri - Aug 28 12:40:47 +0000 2020","favourites_count":8549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5421,"lang":null,"status":{"created_at":"Sun - Nov 08 07:16:30 +0000 2020","id":1325336376099758081,"id_str":"1325336376099758081","text":"RT - @welovecongress_: \"\ud835\udde2\ud835\ude02\ud835\uddff \ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\uddfc\ud835\uddfa\ud835\ude06 - \ud835\uddf5\ud835\uddee\ud835\ude00 \ud835\uddfb\ud835\uddfc\ud835\ude01 - \ud835\uddff\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddff\ud835\uddf2\ud835\uddf1 - \ud835\uddf3\ud835\uddff\ud835\uddfc\ud835\uddfa \ud835\ude01\ud835\uddf5\ud835\uddf2 - \ud835\uddfa\ud835\uddee\ud835\uddfb \ud835\uddfa\ud835\uddee\ud835\uddf1\ud835\uddf2 - \ud835\uddef\ud835\uddf9\ud835\ude02\ud835\uddfb\ud835\uddf1\ud835\uddf2\ud835\uddff\ud835\ude00 - \ud835\uddfc\ud835\uddf3 \ud835\uddf1\ud835\uddf2\ud835\uddfa\ud835\uddfc\ud835\uddfb\ud835\uddf2\ud835\ude01\ud835\uddf6\ud835\ude00\ud835\uddee\ud835\ude01\ud835\uddf6\ud835\uddfc\ud835\uddfb - & \ud835\uddee \ud835\uddf5\ud835\uddee\ud835\ude00\ud835\ude01\ud835\uddf6\ud835\uddf9\ud835\ude06 - \ud835\uddf6\ud835\uddfa\ud835\uddfd\ud835\uddf9\ud835\uddf2\ud835\uddfa\ud835\uddf2\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddf1 - \ud835\uddda\ud835\udde6\ud835\udde7...\" \n#SpeakUpA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"welovecongress_","name":"we - love Congress","id":1108566101103910912,"id_str":"1108566101103910912","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 08 06:08:11 +0000 2020","id":1325319186378227713,"id_str":"1325319186378227713","text":"\"\ud835\udde2\ud835\ude02\ud835\uddff - \ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddfb\ud835\uddfc\ud835\uddfa\ud835\ude06 - \ud835\uddf5\ud835\uddee\ud835\ude00 \ud835\uddfb\ud835\uddfc\ud835\ude01 - \ud835\uddff\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\ude03\ud835\uddf2\ud835\uddff\ud835\uddf2\ud835\uddf1 - \ud835\uddf3\ud835\uddff\ud835\uddfc\ud835\uddfa \ud835\ude01\ud835\uddf5\ud835\uddf2 - \ud835\uddfa\ud835\uddee\ud835\uddfb \ud835\uddfa\ud835\uddee\ud835\uddf1\ud835\uddf2 - \ud835\uddef\ud835\uddf9\ud835\ude02\ud835\uddfb\ud835\uddf1\ud835\uddf2\ud835\uddff\ud835\ude00 - \ud835\uddfc\ud835\uddf3 \ud835\uddf1\ud835\uddf2\ud835\uddfa\ud835\uddfc\ud835\uddfb\ud835\uddf2\ud835\ude01\ud835\uddf6\ud835\ude00\ud835\uddee\ud835\ude01\ud835\uddf6\ud835\uddfc\ud835\uddfb - & \ud835\uddee \ud835\uddf5\ud835\uddee\ud835\ude00\ud835\ude01\ud835\uddf6\ud835\uddf9\ud835\ude06 - \ud835\uddf6\ud835\uddfa\ud835\uddfd\ud835\uddf9\ud835\uddf2\ud835\uddfa\ud835\uddf2\ud835\uddfb\ud835\ude01\ud835\uddf2\ud835\uddf1 - \ud835\uddda\ud835\udde6\ud835\udde7...\"\u2026 https:\/\/t.co\/fjOOh2yf5a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fjOOh2yf5a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1325319186378227713","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318188514014457857\/LVHUHzG3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318188514014457857\/LVHUHzG3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299325964741009408\/1599143172","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2985916150,"id_str":"2985916150","name":"bmhlanga\ud83e\udd93","screen_name":"mhlangabornie","location":"Zimbabwe","description":"focus - and determination","url":"https:\/\/t.co\/0EPCAShrSJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0EPCAShrSJ","expanded_url":"https:\/\/youthsandpolitics.wordpress.com\/","display_url":"youthsandpolitics.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":303,"friends_count":495,"listed_count":0,"created_at":"Mon - Jan 19 14:54:02 +0000 2015","favourites_count":21908,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1101,"lang":null,"status":{"created_at":"Fri - Feb 18 19:13:34 +0000 2022","id":1494751966890795012,"id_str":"1494751966890795012","text":"RT - @263Chat: New #263Chat Article: New Mobile Money Transaction Limits: How Much - Does The Public Know? https:\/\/t.co\/XS6L92zjlR #Twimbos #Zi\u2026","truncated":false,"entities":{"hashtags":[{"text":"263Chat","indices":[17,25]},{"text":"Twimbos","indices":[127,135]}],"symbols":[],"user_mentions":[{"screen_name":"263Chat","name":"263Chat.com - \ud83c\uddff\ud83c\uddfc","id":892792496,"id_str":"892792496","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/XS6L92zjlR","expanded_url":"https:\/\/ift.tt\/G93pwza","display_url":"ift.tt\/G93pwza","indices":[103,126]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 18 17:16:27 +0000 2022","id":1494722491599704073,"id_str":"1494722491599704073","text":"New - #263Chat Article: New Mobile Money Transaction Limits: How Much Does The Public - Know? https:\/\/t.co\/XS6L92zjlR #Twimbos #Zimbabwe","truncated":false,"entities":{"hashtags":[{"text":"263Chat","indices":[4,12]},{"text":"Twimbos","indices":[114,122]},{"text":"Zimbabwe","indices":[123,132]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XS6L92zjlR","expanded_url":"https:\/\/ift.tt\/G93pwza","display_url":"ift.tt\/G93pwza","indices":[90,113]}]},"source":"\u003ca - href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":65,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457745896586817536\/0LIKnm06_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457745896586817536\/0LIKnm06_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985916150\/1636388967","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220428468397232128,"id_str":"1220428468397232128","name":"Satkyes - \u2696\ufe0f","screen_name":"PlanetSlim1","location":"Planet slim","description":"I - shine, u shine, we shine together. #YouthForYouthSupportAfrica. Love politics, - for cars, landed properties, house for rent or buy in Abuja, I''m here 24\/7..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1299,"friends_count":1289,"listed_count":1,"created_at":"Thu - Jan 23 19:31:00 +0000 2020","favourites_count":43795,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23348,"lang":null,"status":{"created_at":"Sat - Mar 26 07:36:12 +0000 2022","id":1507622430298230784,"id_str":"1507622430298230784","text":"RT - @New_Love_Ltd: #John\n\nhttps:\/\/t.co\/ZRuiW1IOYS","truncated":false,"entities":{"hashtags":[{"text":"John","indices":[18,23]}],"symbols":[],"user_mentions":[{"screen_name":"New_Love_Ltd","name":"Love\u2661","id":1324630703993225217,"id_str":"1324630703993225217","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/ZRuiW1IOYS","expanded_url":"https:\/\/twitter.com\/i\/spaces\/1DXxyDyyBpgJM","display_url":"twitter.com\/i\/spaces\/1DXxy\u2026","indices":[25,48]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:08:28 +0000 2022","id":1507615452494987264,"id_str":"1507615452494987264","text":"#John\n\nhttps:\/\/t.co\/ZRuiW1IOYS","truncated":false,"entities":{"hashtags":[{"text":"John","indices":[0,5]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZRuiW1IOYS","expanded_url":"https:\/\/twitter.com\/i\/spaces\/1DXxyDyyBpgJM","display_url":"twitter.com\/i\/spaces\/1DXxy\u2026","indices":[7,30]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392900223689793537\/ogBO5C8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392900223689793537\/ogBO5C8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220428468397232128\/1615582332","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3824253808,"id_str":"3824253808","name":"Utta - Tuttlies","screen_name":"UTuttlies","location":"Brussels, Belgium","description":"Head - of Press and Communications\/Spokesperson for S&D Group (@TheProgressives). - Views personal. Retweets \u2260 endorsement. #Progressives4Europe","url":"https:\/\/t.co\/BUMPHl0soy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BUMPHl0soy","expanded_url":"http:\/\/www.socialistsanddemocrats.eu\/","display_url":"socialistsanddemocrats.eu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2162,"friends_count":1587,"listed_count":50,"created_at":"Wed - Sep 30 12:48:52 +0000 2015","favourites_count":2180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":8510,"lang":null,"status":{"created_at":"Fri - Mar 25 22:12:21 +0000 2022","id":1507480535030976516,"id_str":"1507480535030976516","text":"RT - @IratxeGarper: Today #EUCO urged the @EU_Commission to urgently explore all - options to effectively cut electricity prices and mitigate t\u2026","truncated":false,"entities":{"hashtags":[{"text":"EUCO","indices":[24,29]}],"symbols":[],"user_mentions":[{"screen_name":"IratxeGarper","name":"Iratxe - Garcia Perez\/\u2665\ufe0f","id":900231078,"id_str":"900231078","indices":[3,16]},{"screen_name":"EU_Commission","name":"European - Commission \ud83c\uddea\ud83c\uddfa","id":157981564,"id_str":"157981564","indices":[40,54]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:12:44 +0000 2022","id":1507450431680749571,"id_str":"1507450431680749571","text":"Today - #EUCO urged the @EU_Commission to urgently explore all options to effectively - cut electricity prices and miti\u2026 https:\/\/t.co\/imRyLJJJ84","truncated":true,"entities":{"hashtags":[{"text":"EUCO","indices":[6,11]}],"symbols":[],"user_mentions":[{"screen_name":"EU_Commission","name":"European - Commission \ud83c\uddea\ud83c\uddfa","id":157981564,"id_str":"157981564","indices":[22,36]}],"urls":[{"url":"https:\/\/t.co\/imRyLJJJ84","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507450431680749571","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":30,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140928701493862405\/7pZWACYA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140928701493862405\/7pZWACYA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3824253808\/1647107925","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235314556022464512,"id_str":"1235314556022464512","name":"JM","screen_name":"JM38980579","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":4730,"listed_count":0,"created_at":"Wed - Mar 04 21:23:05 +0000 2020","favourites_count":5424,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Thu - Jan 28 10:54:07 +0000 2021","id":1354744559784370185,"id_str":"1354744559784370185","text":"@philipnolan1 - Lea & Perrin\u2019s sauce","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"philipnolan1","name":"Philip - Nolan","id":345714138,"id_str":"345714138","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1354738432845766658,"in_reply_to_status_id_str":"1354738432845766658","in_reply_to_user_id":345714138,"in_reply_to_user_id_str":"345714138","in_reply_to_screen_name":"philipnolan1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284389852470022144,"id_str":"1284389852470022144","name":"Benard - Ogwaro","screen_name":"BenardOgwaro1","location":"","description":"believe - you can","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":202,"listed_count":0,"created_at":"Sat - Jul 18 07:30:49 +0000 2020","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Fri - Nov 13 03:59:10 +0000 2020","id":1327098655887724544,"id_str":"1327098655887724544","text":"RT - @JoeBiden: When I\u2019m speaking to foreign leaders, I\u2019m telling them: - America is going to be back. We\u2019re going to be back in the game.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 10 23:30:00 +0000 2020","id":1326306141056364544,"id_str":"1326306141056364544","text":"When - I\u2019m speaking to foreign leaders, I\u2019m telling them: America is going - to be back. We\u2019re going to be back in the game.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34761,"favorite_count":599806,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":34761,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308470051364835331\/oVGpb7P0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308470051364835331\/oVGpb7P0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33751064,"id_str":"33751064","name":"Susan - Cumby","screen_name":"katladyfpd","location":"Florida","description":"Retired - from the Federal Public Defender\u2019s Office","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":619,"listed_count":0,"created_at":"Tue - Apr 21 01:16:01 +0000 2009","favourites_count":23559,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":128,"lang":null,"status":{"created_at":"Fri - Feb 18 03:11:44 +0000 2022","id":1494509914760302604,"id_str":"1494509914760302604","text":"@NathanMackBrown - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NathanMackBrown","name":"Nathan - Mackenzie Brown \ud83c\uddfa\ud83c\uddf8 \ud83c\uddfa\ud83c\udde6","id":993137216309383169,"id_str":"993137216309383169","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1494397368120352773,"in_reply_to_status_id_str":"1494397368120352773","in_reply_to_user_id":993137216309383169,"in_reply_to_user_id_str":"993137216309383169","in_reply_to_screen_name":"NathanMackBrown","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455405895124783104\/xQy3P2Cw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455405895124783104\/xQy3P2Cw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33751064\/1397412197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":887731053611294720,"id_str":"887731053611294720","name":"Ted - Brown","screen_name":"TedCharlesBrown","location":"New York, NY","description":"Emphatically - reluctant to be on Twitter for the news updates.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":162,"listed_count":0,"created_at":"Wed - Jul 19 17:49:11 +0000 2017","favourites_count":996,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":223,"lang":null,"status":{"created_at":"Wed - Dec 22 15:59:15 +0000 2021","id":1473684569106825240,"id_str":"1473684569106825240","text":"RT - @markconiglio: @AppleSupport This security \"enhancement\" has rendered all - software used for live-event projections (Isadora, QLab, Touch\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"markconiglio","name":"Mark - Coniglio","id":27589664,"id_str":"27589664","indices":[3,16]},{"screen_name":"AppleSupport","name":"Apple - Support","id":3309375033,"id_str":"3309375033","indices":[18,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Dec 20 05:55:41 +0000 2021","id":1472807898925305857,"id_str":"1472807898925305857","text":"@AppleSupport - This security \"enhancement\" has rendered all software used for live-event - projections (Isadora, QLab,\u2026 https:\/\/t.co\/bx0pcz3TSx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AppleSupport","name":"Apple - Support","id":3309375033,"id_str":"3309375033","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/bx0pcz3TSx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1472807898925305857","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1454202118336811015,"in_reply_to_status_id_str":"1454202118336811015","in_reply_to_user_id":3309375033,"in_reply_to_user_id_str":"3309375033","in_reply_to_screen_name":"AppleSupport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":48,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243575431359606788\/MygSxv_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243575431359606788\/MygSxv_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887731053611294720\/1545769398","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2366009792,"id_str":"2366009792","name":"Tristan - Dorn","screen_name":"carpediem2267","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":215,"listed_count":0,"created_at":"Fri - Feb 28 19:02:29 +0000 2014","favourites_count":8677,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3922,"lang":null,"status":{"created_at":"Fri - Mar 25 21:48:15 +0000 2022","id":1507474467160989701,"id_str":"1507474467160989701","text":"RT - @CalltoActivism: BREAKING: Sen. Richard Blumenthal calls on Clarence Thomas - to voluntarily appear before January 6 Committee to resolve\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalltoActivism","name":"CALL - TO ACTIVISM","id":819994707061248001,"id_str":"819994707061248001","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:28:34 +0000 2022","id":1507409117723475973,"id_str":"1507409117723475973","text":"BREAKING: - Sen. Richard Blumenthal calls on Clarence Thomas to voluntarily appear before - January 6 Committee to reso\u2026 https:\/\/t.co\/CZ8TmFatau","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CZ8TmFatau","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507409117723475973","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5384,"favorite_count":33079,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5384,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302922917970403328,"id_str":"1302922917970403328","name":"Dope - or Nope","screen_name":"dopeornope254","location":"Nairobi, Kenya","description":"Neither - Native Nor Settler","url":"https:\/\/t.co\/pcrsqxtpXd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pcrsqxtpXd","expanded_url":"http:\/\/Dopeornope.website2.me","display_url":"Dopeornope.website2.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":927,"listed_count":0,"created_at":"Mon - Sep 07 10:54:07 +0000 2020","favourites_count":2815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":374,"lang":null,"status":{"created_at":"Fri - Jul 30 16:03:29 +0000 2021","id":1421139394929610752,"id_str":"1421139394929610752","text":"#NewProfilePic - https:\/\/t.co\/RF5Ne0JnXD","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1421139392211693573,"id_str":"1421139392211693573","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E7jmv2kXsAUqeyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7jmv2kXsAUqeyP.jpg","url":"https:\/\/t.co\/RF5Ne0JnXD","display_url":"pic.twitter.com\/RF5Ne0JnXD","expanded_url":"https:\/\/twitter.com\/nabiilcorona\/status\/1421139394929610752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1421139392211693573,"id_str":"1421139392211693573","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E7jmv2kXsAUqeyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7jmv2kXsAUqeyP.jpg","url":"https:\/\/t.co\/RF5Ne0JnXD","display_url":"pic.twitter.com\/RF5Ne0JnXD","expanded_url":"https:\/\/twitter.com\/nabiilcorona\/status\/1421139394929610752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421139217892130817\/5Ngb1ddk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421139217892130817\/5Ngb1ddk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1302922917970403328\/1627660967","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1089194319527972864,"id_str":"1089194319527972864","name":"Dr - Sina Arowosaye","screen_name":"ArowosayeSina","location":"Lagos, Nigeria","description":"Consultant - Orthopaedic and Trauma Surgeon, an Anatomist and a Pastor. He has a passion - to lead people to serve God and also live healthily.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":639,"listed_count":0,"created_at":"Sat - Jan 26 16:12:16 +0000 2019","favourites_count":108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Wed - Mar 09 12:25:04 +0000 2022","id":1501534532406853636,"id_str":"1501534532406853636","text":"RT - @lollypeezle: The sum of 105,000 was removed from my in-law''s @myaccessbank - account while her card and phone were with her. She didn''t s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lollypeezle","name":"Lola - Okunrin","id":720110442,"id_str":"720110442","indices":[3,15]},{"screen_name":"myaccessbank","name":"Access - Bank Plc","id":190615522,"id_str":"190615522","indices":[65,78]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 14:58:18 +0000 2022","id":1501210707290951687,"id_str":"1501210707290951687","text":"The - sum of 105,000 was removed from my in-law''s @myaccessbank account while her - card and phone were with her. She d\u2026 https:\/\/t.co\/At29uGETvr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"myaccessbank","name":"Access - Bank Plc","id":190615522,"id_str":"190615522","indices":[48,61]}],"urls":[{"url":"https:\/\/t.co\/At29uGETvr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501210707290951687","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1736,"favorite_count":1676,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1736,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268485030168481794\/9a78xBmO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268485030168481794\/9a78xBmO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":292690700,"id_str":"292690700","name":"Vanessa","screen_name":"VdazzleMe","location":"SunnyInTexas","description":"celebrate - the small victories and lead with positivity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":623,"listed_count":1,"created_at":"Wed - May 04 02:11:09 +0000 2011","favourites_count":1265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10145,"lang":null,"status":{"created_at":"Tue - Mar 22 17:35:39 +0000 2022","id":1506323736689061888,"id_str":"1506323736689061888","text":"I - don\u2019t need a gas stimulus check. Maybe it\u2019s insensitive to say.. - maybe other people do need it. But I think cance\u2026 https:\/\/t.co\/iHMTDtsRGh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iHMTDtsRGh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506323736689061888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506307468456042498,"quoted_status_id_str":"1506307468456042498","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8D374","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/807827370237456386\/JWDTFRAv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/807827370237456386\/JWDTFRAv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292690700\/1476256799","profile_link_color":"E89574","profile_sidebar_border_color":"DD6587","profile_sidebar_fill_color":"E87974","profile_text_color":"E8B574","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":882665395227906048,"id_str":"882665395227906048","name":"Dr - Babatunde I.Shuai","screen_name":"i_shuai","location":"Abuja, Nigeria","description":"Dr - Babatunde is a frank and honest personality.He loves sincere and honourable - people, he gives his best in all he does and make God first in everything.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":126,"listed_count":0,"created_at":"Wed - Jul 05 18:20:04 +0000 2017","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Sat - Mar 26 07:27:15 +0000 2022","id":1507620176912687105,"id_str":"1507620176912687105","text":"@burnaboy - Omo make you guys no rest https:\/\/t.co\/4i4UZG8Smt fact I love to start - my day like https:\/\/t.co\/RbqK4LRmg9 fun!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"burnaboy","name":"Burna - Boy","id":215052012,"id_str":"215052012","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/4i4UZG8Smt","expanded_url":"http:\/\/oo.In","display_url":"oo.In","indices":[36,59]},{"url":"https:\/\/t.co\/RbqK4LRmg9","expanded_url":"http:\/\/this.Fun","display_url":"this.Fun","indices":[93,116]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507543896280207365,"in_reply_to_status_id_str":"1507543896280207365","in_reply_to_user_id":215052012,"in_reply_to_user_id_str":"215052012","in_reply_to_screen_name":"burnaboy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/882717342563807232\/UnqrtND-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882717342563807232\/UnqrtND-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882665395227906048\/1499291187","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2938029904,"id_str":"2938029904","name":"nafula - clare","screen_name":"clare_nafula","location":"Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":347,"listed_count":0,"created_at":"Tue - Dec 23 06:16:13 +0000 2014","favourites_count":8805,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":920,"lang":null,"status":{"created_at":"Fri - Mar 25 10:39:58 +0000 2022","id":1507306291689054223,"id_str":"1507306291689054223","text":"RT - @dfkm1970: https:\/\/t.co\/pEzkiZKAXM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dfkm1970","name":"David - F.K. Mpanga","id":254145152,"id_str":"254145152","indices":[3,12]}],"urls":[],"media":[{"id":1506986411039338499,"id_str":"1506986411039338499","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","url":"https:\/\/t.co\/pEzkiZKAXM","display_url":"pic.twitter.com\/pEzkiZKAXM","expanded_url":"https:\/\/twitter.com\/dfkm1970\/status\/1506986422259097601\/photo\/1","type":"photo","sizes":{"large":{"w":850,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":400,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"}},"source_status_id":1506986422259097601,"source_status_id_str":"1506986422259097601","source_user_id":254145152,"source_user_id_str":"254145152"}]},"extended_entities":{"media":[{"id":1506986411039338499,"id_str":"1506986411039338499","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","url":"https:\/\/t.co\/pEzkiZKAXM","display_url":"pic.twitter.com\/pEzkiZKAXM","expanded_url":"https:\/\/twitter.com\/dfkm1970\/status\/1506986422259097601\/photo\/1","type":"photo","sizes":{"large":{"w":850,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":400,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"}},"source_status_id":1506986422259097601,"source_status_id_str":"1506986422259097601","source_user_id":254145152,"source_user_id_str":"254145152"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:28:56 +0000 2022","id":1506986422259097601,"id_str":"1506986422259097601","text":"https:\/\/t.co\/pEzkiZKAXM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506986411039338499,"id_str":"1506986411039338499","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","url":"https:\/\/t.co\/pEzkiZKAXM","display_url":"pic.twitter.com\/pEzkiZKAXM","expanded_url":"https:\/\/twitter.com\/dfkm1970\/status\/1506986422259097601\/photo\/1","type":"photo","sizes":{"large":{"w":850,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":400,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506986411039338499,"id_str":"1506986411039338499","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnkKA9XMAM_NKs.jpg","url":"https:\/\/t.co\/pEzkiZKAXM","display_url":"pic.twitter.com\/pEzkiZKAXM","expanded_url":"https:\/\/twitter.com\/dfkm1970\/status\/1506986422259097601\/photo\/1","type":"photo","sizes":{"large":{"w":850,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":400,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":487,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":138,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1413161873613144064\/-Xbg-tuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1413161873613144064\/-Xbg-tuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938029904\/1625759051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":423484271,"id_str":"423484271","name":"ALISON - BEADSWORTH","screen_name":"AJBEADSWORTH","location":"Doha, Qatar","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":1173,"listed_count":1,"created_at":"Mon - Nov 28 15:26:01 +0000 2011","favourites_count":2690,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":462,"lang":null,"status":{"created_at":"Thu - Mar 24 06:27:20 +0000 2022","id":1506880325003141121,"id_str":"1506880325003141121","text":"RT - @JDMQuin: Out in paperback from today.\ud83c\udfc4\u200d\u2642\ufe0f\nVery - grateful if you could consider retweeting to the entire \ud83c\udf0e population. - https:\/\/t.co\/wZTBF\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JDMQuin","name":"John - Quin","id":1973030516,"id_str":"1973030516","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 06:15:21 +0000 2022","id":1506877306974912512,"id_str":"1506877306974912512","text":"Out - in paperback from today.\ud83c\udfc4\u200d\u2642\ufe0f\nVery grateful if you - could consider retweeting to the entire \ud83c\udf0e population. https:\/\/t.co\/wZTBFjUB3B","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506877300515692544,"id_str":"1506877300515692544","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOmA68lWYAA1wTv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOmA68lWYAA1wTv.jpg","url":"https:\/\/t.co\/wZTBFjUB3B","display_url":"pic.twitter.com\/wZTBFjUB3B","expanded_url":"https:\/\/twitter.com\/JDMQuin\/status\/1506877306974912512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506877300515692544,"id_str":"1506877300515692544","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOmA68lWYAA1wTv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOmA68lWYAA1wTv.jpg","url":"https:\/\/t.co\/wZTBFjUB3B","display_url":"pic.twitter.com\/wZTBFjUB3B","expanded_url":"https:\/\/twitter.com\/JDMQuin\/status\/1506877306974912512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1014913911265476609\/UbCjE_1F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1014913911265476609\/UbCjE_1F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284397017742168065,"id_str":"1284397017742168065","name":"Lianne - Burton","screen_name":"LianneBurtonCT","location":"Cape Town, South Africa","description":"Communications - Strategist, Content Editor and Researcher for Social Change Organizations - \/ Empathy Advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":835,"listed_count":0,"created_at":"Sat - Jul 18 07:58:41 +0000 2020","favourites_count":11976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":453,"lang":null,"status":{"created_at":"Sun - Nov 14 20:01:22 +0000 2021","id":1459974762122338305,"id_str":"1459974762122338305","text":"RT - @ArtForOurPlanet: Artists must confront the climate crisis \u2013 we must - write as if these are the last days \n\nThe response to our most urge\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArtForOurPlanet","name":"Art - For Our Planet","id":1064581692269228037,"id_str":"1064581692269228037","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 14 16:47:12 +0000 2021","id":1459925897864175622,"id_str":"1459925897864175622","text":"Artists - must confront the climate crisis \u2013 we must write as if these are the - last days \n\nThe response to our most u\u2026 https:\/\/t.co\/C3rG9JZLfk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C3rG9JZLfk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1459925897864175622","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370662559309819906\/9yArSEVb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370662559309819906\/9yArSEVb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1284397017742168065\/1595059520","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":709178829294608384,"id_str":"709178829294608384","name":"Brian - Holdeman\u267f\ufe0f\ud83c\uddfa\ud83c\uddf8\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","screen_name":"ur1bro","location":"South - Bend, IN","description":"#disabled #gay #happilymarried #LoveisNotaSin #BeTheDifference - #VoteBlue2022 #FullyVaccinated \ud83d\udc89\ud83d\udc89#Boosted \ud83d\udc89 - I block\ud83e\udd2call solicitation requests \ud83d\uded1Bitcoin","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1021,"friends_count":4896,"listed_count":0,"created_at":"Mon - Mar 14 00:46:23 +0000 2016","favourites_count":14836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11441,"lang":null,"status":{"created_at":"Sat - Mar 26 06:05:41 +0000 2022","id":1507599653256183808,"id_str":"1507599653256183808","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary cool \ud83d\ude0e\ud83d\udc4d\ud83d\ude0a - https:\/\/t.co\/xCEIOeScfY","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507599649561104384,"id_str":"1507599649561104384","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwR5MeX0AAn3Sy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwR5MeX0AAn3Sy.jpg","url":"https:\/\/t.co\/xCEIOeScfY","display_url":"pic.twitter.com\/xCEIOeScfY","expanded_url":"https:\/\/twitter.com\/ur1bro\/status\/1507599653256183808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507599649561104384,"id_str":"1507599649561104384","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwR5MeX0AAn3Sy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwR5MeX0AAn3Sy.jpg","url":"https:\/\/t.co\/xCEIOeScfY","display_url":"pic.twitter.com\/xCEIOeScfY","expanded_url":"https:\/\/twitter.com\/ur1bro\/status\/1507599653256183808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430371625028014081\/IoMX4szg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430371625028014081\/IoMX4szg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709178829294608384\/1646561149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":965991743287189504,"id_str":"965991743287189504","name":"khalid - hassani baloch","screen_name":"KhalidMamsani","location":"Balochistan, Pakistan","description":"Feminist| Trainer| - Journalist| Filmmaker| Short Story Writer| | ULC Alumni| Being Human| Love - Nature| Escort.","url":"https:\/\/t.co\/zrGiqcnDmB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zrGiqcnDmB","expanded_url":"http:\/\/instagram.com\/khalid.mamsani","display_url":"instagram.com\/khalid.mamsani","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11043,"friends_count":5334,"listed_count":11,"created_at":"Tue - Feb 20 16:49:13 +0000 2018","favourites_count":1575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4489,"lang":null,"status":{"created_at":"Sat - Mar 26 06:41:30 +0000 2022","id":1507608667138531335,"id_str":"1507608667138531335","text":"A - picture from 1955 during the French occupation of the Congo - Brazzaville, - when a father brought an African child\u2026 https:\/\/t.co\/DUcM3ULGkG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DUcM3ULGkG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507608667138531335","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479060381750411269\/XALRMP7Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479060381750411269\/XALRMP7Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/965991743287189504\/1630593284","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2377336004,"id_str":"2377336004","name":"Niki - Cooper","screen_name":"DBL_OH_7","location":"west of the Mississippi","description":"Stop! - Dont just retweet, or repeat what someone else ''says''.. bc that makes you - look real dumb! Try at least, to protect you own dignity! Don''t b a \ud83d\udc0f\ud83d\udc0f!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":400,"listed_count":0,"created_at":"Fri - Mar 07 16:17:16 +0000 2014","favourites_count":243,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1065,"lang":null,"status":{"created_at":"Fri - Mar 18 03:39:34 +0000 2022","id":1504663775516893185,"id_str":"1504663775516893185","text":"@dpakman - when discussing the voting record of @RepBoebert (R) CO, please remember this. - \nhttps:\/\/t.co\/fYXaOFw59Q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dpakman","name":"David - Pakman","id":21514744,"id_str":"21514744","indices":[0,8]},{"screen_name":"RepBoebert","name":"Rep. - Lauren Boebert","id":1342989756611907584,"id_str":"1342989756611907584","indices":[46,57]}],"urls":[{"url":"https:\/\/t.co\/fYXaOFw59Q","expanded_url":"https:\/\/twitter.com\/KyleClark\/status\/1504584673736994822?t=kx_nhCu-fuu6LfaUYid9Yg&s=09","display_url":"twitter.com\/KyleClark\/stat\u2026","indices":[89,112]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21514744,"in_reply_to_user_id_str":"21514744","in_reply_to_screen_name":"dpakman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504584673736994822,"quoted_status_id_str":"1504584673736994822","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321555368586080258\/BRxiyG82_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321555368586080258\/BRxiyG82_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377336004\/1603918584","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":862163469289873408,"id_str":"862163469289873408","name":"Londyn - B.","screen_name":"Londynb34","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":469,"listed_count":1,"created_at":"Wed - May 10 04:32:44 +0000 2017","favourites_count":1027,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"status":{"created_at":"Sat - Oct 02 02:02:21 +0000 2021","id":1444120539723751430,"id_str":"1444120539723751430","text":"@BabyLyssaC - Someone in his family was and is still helping him!! The parents and sister - without question helped him.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BabyLyssaC","name":"Lyssa - Chapman","id":156359111,"id_str":"156359111","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1444120259288436739,"in_reply_to_status_id_str":"1444120259288436739","in_reply_to_user_id":156359111,"in_reply_to_user_id_str":"156359111","in_reply_to_screen_name":"BabyLyssaC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":144,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283236373713969152\/pIlC6LkR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283236373713969152\/pIlC6LkR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298928518689099777,"id_str":"1298928518689099777","name":"Kimberly - Monic","screen_name":"kimberly_monic","location":"New York","description":"I - very smart and caring person......i am very loving person.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":1410,"listed_count":0,"created_at":"Thu - Aug 27 10:21:45 +0000 2020","favourites_count":20494,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":180,"lang":null,"status":{"created_at":"Thu - Mar 24 13:03:37 +0000 2022","id":1506980050972954630,"id_str":"1506980050972954630","text":"@thenanaaba - Your leaders are too foolish including you\u2026how many escort car do you - see leading a team bars.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thenanaaba","name":"n.a","id":459033261,"id_str":"459033261","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506974246127472644,"in_reply_to_status_id_str":"1506974246127472644","in_reply_to_user_id":459033261,"in_reply_to_user_id_str":"459033261","in_reply_to_screen_name":"thenanaaba","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298939659523940352\/ngaLiwvi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298939659523940352\/ngaLiwvi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1298928518689099777\/1598526325","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280126037028978688,"id_str":"1280126037028978688","name":"olunga - jibril","screen_name":"jibril_olunga","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":436,"listed_count":0,"created_at":"Mon - Jul 06 13:06:59 +0000 2020","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Tue - Mar 22 05:30:25 +0000 2022","id":1506141223664377856,"id_str":"1506141223664377856","text":"RT - @citizentvkenya: 2022 Election Dynamics:\n\nI want a leader who has mercy, - respect, and forgiveness; that is not in my Deputy President Wi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"citizentvkenya","name":"Citizen - TV Kenya","id":70394965,"id_str":"70394965","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 05:19:53 +0000 2022","id":1506138573900324866,"id_str":"1506138573900324866","text":"2022 - Election Dynamics:\n\nI want a leader who has mercy, respect, and forgiveness; - that is not in my Deputy Presiden\u2026 https:\/\/t.co\/N0C1Lc6WhR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N0C1Lc6WhR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506138573900324866","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.twitter.com\/\" rel=\"nofollow\"\u003eTwitter Media Studio - - LiveCut\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":60,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298143098225205249\/MC--d1F2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298143098225205249\/MC--d1F2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4853116573,"id_str":"4853116573","name":"Ann","screen_name":"lovey09_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":318,"listed_count":1,"created_at":"Wed - Feb 03 07:51:16 +0000 2016","favourites_count":1864,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":768,"lang":null,"status":{"created_at":"Tue - Feb 22 07:09:58 +0000 2022","id":1496019418555760641,"id_str":"1496019418555760641","text":"RT - @Angelo_Mikha: Never too late to learn something new!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angelo_Mikha","name":"Mikha - Angelo","id":610163421,"id_str":"610163421","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 22 06:41:41 +0000 2022","id":1496012301052575744,"id_str":"1496012301052575744","text":"Never - too late to learn something new!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121,"favorite_count":623,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":121,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495622934043721728\/htAAQbGM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495622934043721728\/htAAQbGM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4853116573\/1642416369","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":437065541,"id_str":"437065541","name":"Monique - West","screen_name":"Moewest1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":562,"listed_count":0,"created_at":"Wed - Dec 14 23:42:31 +0000 2011","favourites_count":1196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"status":{"created_at":"Sun - Mar 14 05:01:21 +0000 2021","id":1370963237236318211,"id_str":"1370963237236318211","text":"RT - @VP: Today, I #SayHerName. Breonna Taylor. Her life and her dreams were needlessly - cut short. @POTUS and I will continue to push for pol\u2026","truncated":false,"entities":{"hashtags":[{"text":"SayHerName","indices":[17,28]}],"symbols":[],"user_mentions":[{"screen_name":"VP","name":"Vice - President Kamala Harris","id":803694179079458816,"id_str":"803694179079458816","indices":[3,6]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[97,103]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 14 01:52:08 +0000 2021","id":1370915616962535425,"id_str":"1370915616962535425","text":"Today, - I #SayHerName. Breonna Taylor. Her life and her dreams were needlessly cut - short. @POTUS and I will continue\u2026 https:\/\/t.co\/uS41EHhEef","truncated":true,"entities":{"hashtags":[{"text":"SayHerName","indices":[9,20]}],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[89,95]}],"urls":[{"url":"https:\/\/t.co\/uS41EHhEef","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1370915616962535425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13492,"favorite_count":120000,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13492,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/828754170643636224\/EGT5rPw1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/828754170643636224\/EGT5rPw1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437065541\/1486425451","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23904349,"id_str":"23904349","name":"Suzanne - Baker","screen_name":"suzbaker","location":"Atlanta, GA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":77,"listed_count":0,"created_at":"Thu - Mar 12 05:27:13 +0000 2009","favourites_count":366,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Sat - Jan 09 06:02:12 +0000 2021","id":1347785727170519040,"id_str":"1347785727170519040","text":"RT - @RepScottHolcomb: If Republicans in the Georgia General Assembly move to restrict - absentee voting as it now operates, I will feel the sa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepScottHolcomb","name":"Scott - Holcomb","id":230217212,"id_str":"230217212","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 07 13:51:23 +0000 2021","id":1347179025551290370,"id_str":"1347179025551290370","text":"If - Republicans in the Georgia General Assembly move to restrict absentee voting - as it now operates, I will feel the\u2026 https:\/\/t.co\/9P1esLulT4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9P1esLulT4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347179025551290370","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":184,"favorite_count":748,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":184,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1145419171431440384\/TosQxUW1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1145419171431440384\/TosQxUW1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23904349\/1561923747","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":937705721365348352,"id_str":"937705721365348352","name":"MooMoo","screen_name":"DaODaOMoo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":1413,"listed_count":0,"created_at":"Mon - Dec 04 15:30:40 +0000 2017","favourites_count":3233,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":780,"lang":null,"status":{"created_at":"Wed - Dec 01 16:27:43 +0000 2021","id":1466081587989073927,"id_str":"1466081587989073927","text":"RT - @newwwp: https:\/\/t.co\/ibWAHTUZPV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newwwp","name":"\u0e19\u0e34\u0e27\u0e19\u0e34\u0e27","id":103566046,"id_str":"103566046","indices":[3,10]}],"urls":[],"media":[{"id":1465929685976506370,"id_str":"1465929685976506370","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","url":"https:\/\/t.co\/ibWAHTUZPV","display_url":"pic.twitter.com\/ibWAHTUZPV","expanded_url":"https:\/\/twitter.com\/newwwp\/status\/1465929691303317510\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":322,"resize":"fit"},"medium":{"w":1200,"h":568,"resize":"fit"},"large":{"w":1351,"h":640,"resize":"fit"}},"source_status_id":1465929691303317510,"source_status_id_str":"1465929691303317510","source_user_id":103566046,"source_user_id_str":"103566046"}]},"extended_entities":{"media":[{"id":1465929685976506370,"id_str":"1465929685976506370","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","url":"https:\/\/t.co\/ibWAHTUZPV","display_url":"pic.twitter.com\/ibWAHTUZPV","expanded_url":"https:\/\/twitter.com\/newwwp\/status\/1465929691303317510\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":322,"resize":"fit"},"medium":{"w":1200,"h":568,"resize":"fit"},"large":{"w":1351,"h":640,"resize":"fit"}},"source_status_id":1465929691303317510,"source_status_id_str":"1465929691303317510","source_user_id":103566046,"source_user_id_str":"103566046"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 01 06:24:08 +0000 2021","id":1465929691303317510,"id_str":"1465929691303317510","text":"https:\/\/t.co\/ibWAHTUZPV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1465929685976506370,"id_str":"1465929685976506370","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","url":"https:\/\/t.co\/ibWAHTUZPV","display_url":"pic.twitter.com\/ibWAHTUZPV","expanded_url":"https:\/\/twitter.com\/newwwp\/status\/1465929691303317510\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":322,"resize":"fit"},"medium":{"w":1200,"h":568,"resize":"fit"},"large":{"w":1351,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1465929685976506370,"id_str":"1465929685976506370","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFgHSFZUYAIeKpa.jpg","url":"https:\/\/t.co\/ibWAHTUZPV","display_url":"pic.twitter.com\/ibWAHTUZPV","expanded_url":"https:\/\/twitter.com\/newwwp\/status\/1465929691303317510\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":322,"resize":"fit"},"medium":{"w":1200,"h":568,"resize":"fit"},"large":{"w":1351,"h":640,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79054,"favorite_count":20777,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":79054,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296991433019150336\/fx8PGKqK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296991433019150336\/fx8PGKqK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937705721365348352\/1630844971","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":229704660,"id_str":"229704660","name":"Javier - Mejia Jr-Juno","screen_name":"javier2555","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":184,"friends_count":4182,"listed_count":0,"created_at":"Thu - Dec 23 03:26:04 +0000 2010","favourites_count":15178,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":230,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584408196405526528\/h_f1cPFS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584408196405526528\/h_f1cPFS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229704660\/1507515408","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271651754040582144,"id_str":"1271651754040582144","name":"Queenskylar20angel","screen_name":"Queenskylar20a1","location":"","description":"Angels - Star love is beautiful and power bless in heart","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":276,"listed_count":0,"created_at":"Sat - Jun 13 03:53:13 +0000 2020","favourites_count":187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":140,"lang":null,"status":{"created_at":"Sun - Apr 18 18:13:23 +0000 2021","id":1383846134502674443,"id_str":"1383846134502674443","text":"Princess - https:\/\/t.co\/hAVHUPuyju","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1383846122741895175,"id_str":"1383846122741895175","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/EzRot3nVEAcTqor.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzRot3nVEAcTqor.jpg","url":"https:\/\/t.co\/hAVHUPuyju","display_url":"pic.twitter.com\/hAVHUPuyju","expanded_url":"https:\/\/twitter.com\/Queenskylar20a1\/status\/1383846134502674443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1397,"h":1863,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1383846122741895175,"id_str":"1383846122741895175","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/EzRot3nVEAcTqor.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EzRot3nVEAcTqor.jpg","url":"https:\/\/t.co\/hAVHUPuyju","display_url":"pic.twitter.com\/hAVHUPuyju","expanded_url":"https:\/\/twitter.com\/Queenskylar20a1\/status\/1383846134502674443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1397,"h":1863,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361482343442243591\/0PreaZBb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361482343442243591\/0PreaZBb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1271651754040582144\/1613437625","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":908924503786446848,"id_str":"908924503786446848","name":"Carys","screen_name":"carysbrennan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":211,"listed_count":0,"created_at":"Sat - Sep 16 05:24:23 +0000 2017","favourites_count":1993,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316925218175307778\/g-01HStR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316925218175307778\/g-01HStR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2246057659,"id_str":"2246057659","name":"SANDY - LUCAS","screen_name":"SANDYLUCAS12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":117,"listed_count":0,"created_at":"Sat - Dec 14 19:35:34 +0000 2013","favourites_count":7703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1969,"lang":null,"status":{"created_at":"Fri - Mar 25 23:30:23 +0000 2022","id":1507500169427709955,"id_str":"1507500169427709955","text":"@thehill - Trump was in love with the dictator. You didnt stand up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507345339363307525,"in_reply_to_status_id_str":"1507345339363307525","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253863241882701825,"id_str":"1253863241882701825","name":"\u0623\u062d\u0645\u062f - \u0631\u0636\u0627","screen_name":"RmPrD4RqwDm8a1j","location":"","description":"\u0627\u0644\u0623\u062e\u0628\u0627\u0631 - \u0648\u0627\u0644\u0623\u062d\u062f\u0627\u062b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":2024,"listed_count":0,"created_at":"Sat - Apr 25 01:48:19 +0000 2020","favourites_count":2436,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Sat - Mar 27 01:28:23 +0000 2021","id":1375620684962013189,"id_str":"1375620684962013189","text":"@sultanalazawy - \u062e\u0627\u0641 \u0643\u062a\u0644\u0647 \u0647\u062f\u0627\u0645","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1375447420990021634,"in_reply_to_status_id_str":"1375447420990021634","in_reply_to_user_id":1315703671137751053,"in_reply_to_user_id_str":"1315703671137751053","in_reply_to_screen_name":"sultanalazawy1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253863489438994433\/TWkKKzqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253863489438994433\/TWkKKzqj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1095568263277408257,"id_str":"1095568263277408257","name":"alanpayne","screen_name":"alanpayneD2","location":"Cleveland, - OH","description":"My name is Alan Payne. I''m from Cleveland,Ohio. My birthday - is December 2, 1995( 25 years old.)","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":79,"friends_count":3355,"listed_count":0,"created_at":"Wed - Feb 13 06:20:03 +0000 2019","favourites_count":11504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1095568449949106176\/pI2BJbk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095568449949106176\/pI2BJbk7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271829936190480385,"id_str":"1271829936190480385","name":"Raymond - Chinhowo","screen_name":"ChinhowoRaymond","location":"","description":"my - interlect","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":59,"listed_count":0,"created_at":"Sat - Jun 13 15:41:27 +0000 2020","favourites_count":27,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Dec 04 05:42:16 +0000 2020","id":1334734747793305601,"id_str":"1334734747793305601","text":"@pro_feeds - how much is broiler growers","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pro_feeds","name":"Profeeds","id":366581018,"id_str":"366581018","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":366581018,"in_reply_to_user_id_str":"366581018","in_reply_to_screen_name":"pro_feeds","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271830215682121729\/k_SgO7Lb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271830215682121729\/k_SgO7Lb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278167384851791873,"id_str":"1278167384851791873","name":"Morning@Star","screen_name":"Morning_Star696","location":"","description":"Make - it easy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":1167,"listed_count":0,"created_at":"Wed - Jul 01 03:23:58 +0000 2020","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":200,"lang":null,"status":{"created_at":"Wed - Mar 23 16:44:52 +0000 2022","id":1506673345315872771,"id_str":"1506673345315872771","text":"RT - @zbsxzg: \u5144\u5f1f\u4eec\u8fd9\u745c\u4f3d\u8001\u5e08\u80a5\u4e0d\u80a5\uff1f\uff01 - https:\/\/t.co\/sjD4Nl58f2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zbsxzg","name":"\u76f4\u64ad\u7cbe\u5f69\u77ac\u95f4\u6536\u96c6\u8005","id":1315970482395664384,"id_str":"1315970482395664384","indices":[3,10]}],"urls":[],"media":[{"id":1474644049931821056,"id_str":"1474644049931821056","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","url":"https:\/\/t.co\/sjD4Nl58f2","display_url":"pic.twitter.com\/sjD4Nl58f2","expanded_url":"https:\/\/twitter.com\/zbfx200\/status\/1474644147412041733\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"source_status_id":1474644147412041733,"source_status_id_str":"1474644147412041733","source_user_id":1315970482395664384,"source_user_id_str":"1315970482395664384"}]},"extended_entities":{"media":[{"id":1474644049931821056,"id_str":"1474644049931821056","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","url":"https:\/\/t.co\/sjD4Nl58f2","display_url":"pic.twitter.com\/sjD4Nl58f2","expanded_url":"https:\/\/twitter.com\/zbfx200\/status\/1474644147412041733\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"source_status_id":1474644147412041733,"source_status_id_str":"1474644147412041733","source_user_id":1315970482395664384,"source_user_id_str":"1315970482395664384","video_info":{"aspect_ratio":[37,80],"duration_millis":53233,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/480x1036\/gY13PMTKvvwjLZg_.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/pl\/cpW276YFcRRuyRRi.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/320x690\/3wR4DGZ_rxHRtRJX.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/592x1280\/GYXRGwE4w9vfNnI2.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 25 07:32:16 +0000 2021","id":1474644147412041733,"id_str":"1474644147412041733","text":"\u5144\u5f1f\u4eec\u8fd9\u745c\u4f3d\u8001\u5e08\u80a5\u4e0d\u80a5\uff1f\uff01 - https:\/\/t.co\/sjD4Nl58f2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1474644049931821056,"id_str":"1474644049931821056","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","url":"https:\/\/t.co\/sjD4Nl58f2","display_url":"pic.twitter.com\/sjD4Nl58f2","expanded_url":"https:\/\/twitter.com\/zbfx200\/status\/1474644147412041733\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1474644049931821056,"id_str":"1474644049931821056","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1474644049931821056\/pu\/img\/YwnLIveSoW_k_sdK.jpg","url":"https:\/\/t.co\/sjD4Nl58f2","display_url":"pic.twitter.com\/sjD4Nl58f2","expanded_url":"https:\/\/twitter.com\/zbfx200\/status\/1474644147412041733\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":53233,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/480x1036\/gY13PMTKvvwjLZg_.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/pl\/cpW276YFcRRuyRRi.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/320x690\/3wR4DGZ_rxHRtRJX.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1474644049931821056\/pu\/vid\/592x1280\/GYXRGwE4w9vfNnI2.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":657,"favorite_count":3888,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"zh"},"is_quote_status":false,"retweet_count":657,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432347038675472391\/QIGXU5nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432347038675472391\/QIGXU5nc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309724500846694400,"id_str":"1309724500846694400","name":"nduhiu","screen_name":"nduhiu14","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":407,"listed_count":0,"created_at":"Sat - Sep 26 05:20:40 +0000 2020","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Mon - Nov 09 16:47:44 +0000 2020","id":1325842520643940352,"id_str":"1325842520643940352","text":"@jumaf3_ - You will, soon. Very soon.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jumaf3_","name":"Juma - G \ud83c\uddf0\ud83c\uddea","id":1461966002351128577,"id_str":"1461966002351128577","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1325839205877092353,"in_reply_to_status_id_str":"1325839205877092353","in_reply_to_user_id":880001756947722240,"in_reply_to_user_id_str":"880001756947722240","in_reply_to_screen_name":"jumaf3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":956086433416069121,"id_str":"956086433416069121","name":"Rahul - Kumar","screen_name":"mentalchatter1","location":"India","description":"Trying - to understand.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":4920,"listed_count":4,"created_at":"Wed - Jan 24 08:49:03 +0000 2018","favourites_count":6090,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1967,"lang":null,"status":{"created_at":"Mon - Mar 21 03:50:17 +0000 2022","id":1505753637250760704,"id_str":"1505753637250760704","text":"Now - we have entered the time where algorithm will decide our emotions. Be attentive - when you are \"ONLINE\" not just\u2026 https:\/\/t.co\/EvsitDhA6R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EvsitDhA6R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505753637250760704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505495833281953792\/PzmWres3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505495833281953792\/PzmWres3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/956086433416069121\/1517912642","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":905677676932997120,"id_str":"905677676932997120","name":"Akeem","screen_name":"realhakym","location":"Lagos, - Nigeria","description":"Trustworthiness. pls follow @adevanity on IG to get - your fashion accessories.... web\ud83d\udc49 https:\/\/t.co\/2aQOYrvlPA","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/2aQOYrvlPA","expanded_url":"http:\/\/adevanity.com","display_url":"adevanity.com","indices":[88,111]}]}},"protected":false,"followers_count":109,"friends_count":419,"listed_count":0,"created_at":"Thu - Sep 07 06:22:39 +0000 2017","favourites_count":255,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":948,"lang":null,"status":{"created_at":"Sat - Mar 26 08:00:48 +0000 2022","id":1507628621049081856,"id_str":"1507628621049081856","text":"@FoxNews - War Against Russia by America and West","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507628423384125444,"in_reply_to_status_id_str":"1507628423384125444","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361314991048114179\/vOA3lPr7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361314991048114179\/vOA3lPr7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905677676932997120\/1613397761","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297708914881056773,"id_str":"1297708914881056773","name":"Jean - Rankin","screen_name":"jeanrankin70","location":"Clive, IA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":550,"listed_count":0,"created_at":"Mon - Aug 24 01:35:00 +0000 2020","favourites_count":22021,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Wed - Mar 23 19:21:10 +0000 2022","id":1506712676189286405,"id_str":"1506712676189286405","text":"RT - @TheDailyShow: tfw the Ted Cruz in your life won''t stop talking \ud83d\ude44\ud83d\ude0f\ud83d\ude12 - https:\/\/t.co\/H2PvqytVRB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDailyShow","name":"The - Daily Show","id":158414847,"id_str":"158414847","indices":[3,16]}],"urls":[],"media":[{"id":1506380305070010371,"id_str":"1506380305070010371","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","url":"https:\/\/t.co\/H2PvqytVRB","display_url":"pic.twitter.com\/H2PvqytVRB","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1506380631156133892\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1506380631156133892,"source_status_id_str":"1506380631156133892","source_user_id":158414847,"source_user_id_str":"158414847"}]},"extended_entities":{"media":[{"id":1506380305070010371,"id_str":"1506380305070010371","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","url":"https:\/\/t.co\/H2PvqytVRB","display_url":"pic.twitter.com\/H2PvqytVRB","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1506380631156133892\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1506380631156133892,"source_status_id_str":"1506380631156133892","source_user_id":158414847,"source_user_id_str":"158414847","video_info":{"aspect_ratio":[1,1],"duration_millis":29596,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/720x720\/XLi15sM6GIJgLMcr.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/pl\/F31mCTcqhA1_1au_.m3u8?tag=14&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/320x320\/bLo-70lmDe4DmAVj.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/540x540\/sSH0KAZiluBaHyrv.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:21:44 +0000 2022","id":1506380631156133892,"id_str":"1506380631156133892","text":"tfw - the Ted Cruz in your life won''t stop talking \ud83d\ude44\ud83d\ude0f\ud83d\ude12 - https:\/\/t.co\/H2PvqytVRB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506380305070010371,"id_str":"1506380305070010371","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","url":"https:\/\/t.co\/H2PvqytVRB","display_url":"pic.twitter.com\/H2PvqytVRB","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1506380631156133892\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506380305070010371,"id_str":"1506380305070010371","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtSjq3XIA0tKPf.jpg","url":"https:\/\/t.co\/H2PvqytVRB","display_url":"pic.twitter.com\/H2PvqytVRB","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1506380631156133892\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29596,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/720x720\/XLi15sM6GIJgLMcr.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/pl\/F31mCTcqhA1_1au_.m3u8?tag=14&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/320x320\/bLo-70lmDe4DmAVj.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1506380305070010371\/vid\/540x540\/sSH0KAZiluBaHyrv.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3837,"favorite_count":27449,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3837,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":932469179726401536,"id_str":"932469179726401536","name":"Zachary - Katznelson","screen_name":"ZacharyKatznel1","location":"Brooklyn, New York","description":"Husband, - father, Jew. Executive Director @MoreJustNYC. Former @LegalAidNYC, @eji_org, - @Reprieve. Dismantling Racism Team @CBEBK.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":969,"listed_count":2,"created_at":"Mon - Nov 20 04:42:31 +0000 2017","favourites_count":1424,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":213,"lang":null,"status":{"created_at":"Thu - Mar 03 03:06:18 +0000 2022","id":1499219588608843777,"id_str":"1499219588608843777","text":"RT - @Jan_Ransom: NEW STORY\ud83d\udea8 +\ud83e\uddf5: Hours after arriving at - Rikers Island in August, Khaled Eltahan was beaten so badly by another detainee - that\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jan_Ransom","name":"Jan - Ransom","id":234631693,"id_str":"234631693","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 16:58:36 +0000 2022","id":1499066656638783494,"id_str":"1499066656638783494","text":"NEW - STORY\ud83d\udea8 +\ud83e\uddf5: Hours after arriving at Rikers Island in - August, Khaled Eltahan was beaten so badly by another detai\u2026 https:\/\/t.co\/CwINKjexvF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CwINKjexvF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499066656638783494","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":415,"favorite_count":1152,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":415,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188096311842787328\/DbfGZGm3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188096311842787328\/DbfGZGm3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1224245673018695680,"id_str":"1224245673018695680","name":"Jo","screen_name":"josfwasala","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":54,"listed_count":0,"created_at":"Mon - Feb 03 08:18:34 +0000 2020","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Mon - Sep 06 06:23:41 +0000 2021","id":1434764220588072961,"id_str":"1434764220588072961","text":"@ThatEricAlper - -\"What do we say to the God of death ? \"\n\n-\"Not today \"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1434712978033684485,"in_reply_to_status_id_str":"1434712978033684485","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317516097130725381\/JO3dzVsg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317516097130725381\/JO3dzVsg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267961796314443776,"id_str":"1267961796314443776","name":"Noah - Yenealem","screen_name":"NoahYenealem","location":"","description":"GP@UOGH","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":1351,"listed_count":0,"created_at":"Tue - Jun 02 23:30:54 +0000 2020","favourites_count":2165,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Thu - May 27 16:05:00 +0000 2021","id":1397946951539335173,"id_str":"1397946951539335173","text":"@AlainAmharic - We don''t need neither z election nor them, they could have a plan to put - us in trouble post election.\u2026 https:\/\/t.co\/7CNZK29FFM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlainAmharic","name":"Al - Ain Amharic \u12a0\u120d \u12d0\u12ed\u1295 \u12a0\u121b\u122d\u129b","id":1029000696971124739,"id_str":"1029000696971124739","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/7CNZK29FFM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1397946951539335173","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1391042872636547074,"in_reply_to_status_id_str":"1391042872636547074","in_reply_to_user_id":1029000696971124739,"in_reply_to_user_id_str":"1029000696971124739","in_reply_to_screen_name":"AlainAmharic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328297130570690560\/XoG_nDWs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328297130570690560\/XoG_nDWs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":108622100,"id_str":"108622100","name":"Mel","screen_name":"meli_es_","location":"","description":"Eat - that up, it''s good for you","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":361,"listed_count":0,"created_at":"Tue - Jan 26 14:42:09 +0000 2010","favourites_count":1249,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":345,"lang":null,"status":{"created_at":"Tue - Mar 01 00:59:36 +0000 2022","id":1498462927916961793,"id_str":"1498462927916961793","text":"RT - @soylajefita: @doctormacias S\u00ed sirve. Al sistema inmune no se le va ning\u00fan - est\u00edmulo. Voy a hacer un hilo de eso.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"soylajefita","name":"La - Jefita","id":1016509788652482562,"id_str":"1016509788652482562","indices":[3,15]},{"screen_name":"doctormacias","name":"Alejandro - Macias","id":316273207,"id_str":"316273207","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 16:59:30 +0000 2022","id":1498342104782753794,"id_str":"1498342104782753794","text":"@doctormacias - S\u00ed sirve. Al sistema inmune no se le va ning\u00fan est\u00edmulo. Voy - a hacer un hilo de eso.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"doctormacias","name":"Alejandro - Macias","id":316273207,"id_str":"316273207","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498161339763765252,"in_reply_to_status_id_str":"1498161339763765252","in_reply_to_user_id":316273207,"in_reply_to_user_id_str":"316273207","in_reply_to_screen_name":"doctormacias","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":501,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368970023079792640\/rl2JmNMH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368970023079792640\/rl2JmNMH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108622100\/1607055087","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1106567723201396736,"id_str":"1106567723201396736","name":"Dya\ud83e\udd40","screen_name":"Dyadystn","location":"","description":"P - U N Y E T A !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":81,"listed_count":0,"created_at":"Fri - Mar 15 14:47:59 +0000 2019","favourites_count":5408,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2845,"lang":null,"status":{"created_at":"Fri - Mar 25 07:27:33 +0000 2022","id":1507257866587340808,"id_str":"1507257866587340808","text":"Hihi - so lucky to have josh \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481531466245087233\/QztH3x9x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481531466245087233\/QztH3x9x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1106567723201396736\/1619254406","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1486487179,"id_str":"1486487179","name":"Alex - George","screen_name":"AWGeorge315","location":"","description":"DOB MHU Examiner; - Fmr NYS Assembly Dems; Fmr @SenatorCarlucci; #UAlbany MPA \u201819; @SUNYOswego - \u201817. Opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":1024,"listed_count":0,"created_at":"Thu - Jun 06 01:09:13 +0000 2013","favourites_count":2533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":991,"lang":null,"status":{"created_at":"Sat - Feb 19 14:50:36 +0000 2022","id":1495048176126025735,"id_str":"1495048176126025735","text":"RT - @KateLeigh_Wood: Drove to Saratoga to spend our Friday night at @chowbellasarat1 - and grab some dinner in Glens Falls at Davidson Bros. B\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KateLeigh_Wood","name":"Kate - Wood","id":998985004087676929,"id_str":"998985004087676929","indices":[3,18]},{"screen_name":"chowbellasarat1","name":"chowbellasaratogasprings","id":1195010563014897666,"id_str":"1195010563014897666","indices":[67,83]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 19 00:16:31 +0000 2022","id":1494828203931844610,"id_str":"1494828203931844610","text":"Drove - to Saratoga to spend our Friday night at @chowbellasarat1 and grab some dinner - in Glens Falls at Davidson Bro\u2026 https:\/\/t.co\/xKIiOzmi6y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chowbellasarat1","name":"chowbellasaratogasprings","id":1195010563014897666,"id_str":"1195010563014897666","indices":[47,63]}],"urls":[{"url":"https:\/\/t.co\/xKIiOzmi6y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494828203931844610","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"07d9f32a98082000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9f32a98082000.json","place_type":"poi","name":"Davidson - Brothers Brewing Company","full_name":"Davidson Brothers Brewing Company","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-73.64480600894498,43.3097370604942],[-73.64480600894498,43.3097370604942],[-73.64480600894498,43.3097370604942],[-73.64480600894498,43.3097370604942]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1112318652144074753\/UGPZAkIA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112318652144074753\/UGPZAkIA_normal.jpg","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274292611747139584,"id_str":"1274292611747139584","name":"Ed","screen_name":"_Yardee","location":"Pompeii, - Italy","description":"Get your Shit together ||\nPolitical in Nature ||\nPatience - is a Virtue \ud83e\udd13","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":734,"friends_count":1509,"listed_count":1,"created_at":"Sat - Jun 20 10:47:16 +0000 2020","favourites_count":24118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2385,"lang":null,"status":{"created_at":"Fri - Sep 17 14:12:40 +0000 2021","id":1438868510483095554,"id_str":"1438868510483095554","text":"RT - @JoelOsteen: Don\u2019t live only focused on yourself: my goals, my problems, - my trouble at work. Get your mind off yourself and go be a bles\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoelOsteen","name":"Joel - Osteen","id":20545055,"id_str":"20545055","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 17 13:55:01 +0000 2021","id":1438864068207693825,"id_str":"1438864068207693825","text":"Don\u2019t - live only focused on yourself: my goals, my problems, my trouble at work. - Get your mind off yourself and go be a blessing. Sow a seed.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2297,"favorite_count":12298,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2297,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350775684625530880\/Xn3M0sIy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350775684625530880\/Xn3M0sIy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1274292611747139584\/1601557112","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206829263220948995,"id_str":"1206829263220948995","name":"JANAKI - RANJAN DASH","screen_name":"janaki_ranjan","location":"","description":"lnnovator,Educationist,Social - activist &Patriotic.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":158,"listed_count":1,"created_at":"Tue - Dec 17 06:52:43 +0000 2019","favourites_count":5850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6368,"lang":null,"status":{"created_at":"Sat - Mar 26 06:16:38 +0000 2022","id":1507602406950854658,"id_str":"1507602406950854658","text":"@DrPramodPSawant - A person without the quality of empathy is unfit to be a leader,more so a - CM.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrPramodPSawant","name":"Dr. - Pramod Sawant","id":785783685937295360,"id_str":"785783685937295360","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507249588645728256,"in_reply_to_status_id_str":"1507249588645728256","in_reply_to_user_id":785783685937295360,"in_reply_to_user_id_str":"785783685937295360","in_reply_to_screen_name":"DrPramodPSawant","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206829659092127762\/ZMtHgmJg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206829659092127762\/ZMtHgmJg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195558221018103810,"id_str":"1195558221018103810","name":"erin - stutin","screen_name":"ErinStutin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":69,"listed_count":0,"created_at":"Sat - Nov 16 04:24:40 +0000 2019","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195558453655175169\/oDkoece4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195558453655175169\/oDkoece4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":902066327132700672,"id_str":"902066327132700672","name":"Karen - Robertson","screen_name":"karenr4911","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":625,"friends_count":4982,"listed_count":1,"created_at":"Mon - Aug 28 07:12:26 +0000 2017","favourites_count":1138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":202,"lang":null,"status":{"created_at":"Sun - Mar 06 05:30:58 +0000 2022","id":1500343159510945793,"id_str":"1500343159510945793","text":"@FPLSteve - 65","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FPLSteve","name":"FPL - Steve\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb","id":2365313505,"id_str":"2365313505","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500190852706193410,"in_reply_to_status_id_str":"1500190852706193410","in_reply_to_user_id":2365313505,"in_reply_to_user_id_str":"2365313505","in_reply_to_screen_name":"FPLSteve","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/902069521430835200\/QCrKdybQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902069521430835200\/QCrKdybQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1703242124,"id_str":"1703242124","name":"James - E. Baugh","screen_name":"JE_Baugh","location":"Houston, TX","description":"Thinker, - reader, investigator, teacher, father.","url":"https:\/\/t.co\/upPle5ni0f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/upPle5ni0f","expanded_url":"http:\/\/www.jebaugh.com","display_url":"jebaugh.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":120,"listed_count":2,"created_at":"Mon - Aug 26 23:52:02 +0000 2013","favourites_count":2784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1911,"lang":null,"status":{"created_at":"Sat - Feb 26 22:17:29 +0000 2022","id":1497697352932601858,"id_str":"1497697352932601858","text":"RT - @Amy_Siskind: That Ukraine has not fallen already shows Putin is not only - a madman but also incompetent. Morale of Russian troops is fal\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Amy_Siskind","name":"Amy - Siskind \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":15976705,"id_str":"15976705","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 22:08:43 +0000 2022","id":1497695145277497352,"id_str":"1497695145277497352","text":"That - Ukraine has not fallen already shows Putin is not only a madman but also incompetent. - Morale of Russian troops\u2026 https:\/\/t.co\/NpI1l3n8rU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NpI1l3n8rU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497695145277497352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":623,"favorite_count":3846,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":623,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1E2446","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034238985176903681\/li4ceWXk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034238985176903681\/li4ceWXk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1703242124\/1536700351","profile_link_color":"1B95E0","profile_sidebar_border_color":"F1DDB3","profile_sidebar_fill_color":"D4E1A0","profile_text_color":"6AD09F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14072531,"id_str":"14072531","name":"patcs2","screen_name":"patcs2","location":"Arizona, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":1151,"listed_count":1,"created_at":"Mon - Mar 03 13:44:19 +0000 2008","favourites_count":625,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Fri - Oct 23 18:16:15 +0000 2020","id":1319704201895628801,"id_str":"1319704201895628801","text":"https:\/\/t.co\/2QMN6iYplw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2QMN6iYplw","expanded_url":"https:\/\/www.nytimes.com\/2020\/10\/21\/opinion\/evangelicals-election-biden.html#click=https:\/\/t.co\/o2Ish6gYAU","display_url":"nytimes.com\/2020\/10\/21\/opi\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899747888556904452\/I4zCkRG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899747888556904452\/I4zCkRG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14072531\/1503352269","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3845436569,"id_str":"3845436569","name":"ejo","screen_name":"elizabethjolson","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":86,"friends_count":1314,"listed_count":1,"created_at":"Fri - Oct 02 18:57:27 +0000 2015","favourites_count":3269,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4421,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280271182621802499\/YVbeSX5a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280271182621802499\/YVbeSX5a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3845436569\/1621869601","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":281957658,"id_str":"281957658","name":"Honourable - Dare Abey","screen_name":"dare_abey","location":"kADUNA","description":"\u0648\u064e\u0627\u062a\u064e\u0651\u0642\u064f\u0648\u0627 - \u064a\u064e\u0648\u0652\u0645\u064b\u0627 \u0644\u064e\u0627 \u062a\u064e\u062c\u0652\u0632\u0650\u064a - \u0646\u064e\u0641\u0652\u0633\u064c \u0639\u064e\u0646\u0652 \u0646\u064e\u0641\u0652\u0633\u064d - \u0634\u064e\u064a\u0652\u0626\u064b\u0627 \u0648\u064e\u0644\u064e\u0627 - \u064a\u064f\u0642\u0652\u0628\u064e\u0644\u064f \u0645\u0650\u0646\u0652\u0647\u064e\u0627 - \u0639\u064e\u062f\u0652\u0644\u064c \u0648\u064e\u0644\u064e\u0627 \u062a\u064e\u0646\u0652\u0641\u064e\u0639\u064f\u0647\u064e\u0627 - \u0634\u064e\u0641\u064e\u0627\u0639\u064e\u0629\u064c","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":206,"friends_count":1361,"listed_count":1,"created_at":"Thu - Apr 14 09:24:15 +0000 2011","favourites_count":29929,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2034,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478601136299032577\/NfqRkkNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478601136299032577\/NfqRkkNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281957658\/1601961844","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":824458574327738368,"id_str":"824458574327738368","name":"Frederique","screen_name":"gardenallies","location":"","description":"Author, - Garden Allies. Love nature - wilderness, ocean, plants, insects. Hiking, biking. - Gardening with natives. Cooking farm to table. Photography. Origami.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":402,"listed_count":0,"created_at":"Thu - Jan 26 03:26:56 +0000 2017","favourites_count":1689,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":175,"lang":null,"status":{"created_at":"Tue - Mar 01 10:00:38 +0000 2022","id":1498599082440687617,"id_str":"1498599082440687617","text":"An - honor from my alma mater! https:\/\/t.co\/YPPUj8oUGi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YPPUj8oUGi","expanded_url":"https:\/\/twitter.com\/KandisGilmore\/status\/1498511914581692421","display_url":"twitter.com\/KandisGilmore\/\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498511914581692421,"quoted_status_id_str":"1498511914581692421","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321184890235174912\/4zrHEUkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321184890235174912\/4zrHEUkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824458574327738368\/1603830042","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":936828461016068096,"id_str":"936828461016068096","name":"Comr. - Abdurrashid Abubakar","screen_name":"AbdurrashidAbu6","location":"Nigeria","description":"Alhamdulillahi - ala kulli halin.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":261,"friends_count":1256,"listed_count":0,"created_at":"Sat - Dec 02 05:24:45 +0000 2017","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Tue - Apr 20 20:25:41 +0000 2021","id":1384604202706644996,"id_str":"1384604202706644996","text":"@SAIDUAB71676996 - Assalamaalaikum dafan ansha ruwa lpy, Allah yakarbi ibada","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SAIDUAB71676996","name":"SAIDU - ABUBAKAR","id":999018986720366593,"id_str":"999018986720366593","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":999018986720366593,"in_reply_to_user_id_str":"999018986720366593","in_reply_to_screen_name":"SAIDUAB71676996","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308814914778271745\/_CoRHzoh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308814914778271745\/_CoRHzoh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936828461016068096\/1600880790","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":232559561,"id_str":"232559561","name":"Andres - Triana","screen_name":"andresmtr","location":"","description":"ingeniero de - sistemas \ud83d\udcbb amante del rock y los videojuegoshttps:\/\/andresmtr.github.io\/Andres_Triana_HV\/index.htmlb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":2115,"listed_count":6,"created_at":"Fri - Dec 31 14:16:35 +0000 2010","favourites_count":1078,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":851,"lang":null,"status":{"created_at":"Fri - Mar 25 21:29:16 +0000 2022","id":1507469692742553600,"id_str":"1507469692742553600","text":"RT - @alt227Joydeep: without context data is just random information\n\nsource - linkedin: https:\/\/t.co\/C6nHP8EBnH https:\/\/t.co\/eaRz8x1NuR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alt227Joydeep","name":"Joydeep","id":459440677,"id_str":"459440677","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/C6nHP8EBnH","expanded_url":"https:\/\/www.linkedin.com\/posts\/ralph-aboujaoude-diaz-40838313_technology-artificialintelligence-computervision-activity-6912446088364875776-h-Iq?utm_source=linkedin_share&utm_medium=member_desktop_web","display_url":"linkedin.com\/posts\/ralph-ab\u2026","indices":[85,108]}],"media":[{"id":1507276063784812566,"id_str":"1507276063784812566","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","url":"https:\/\/t.co\/eaRz8x1NuR","display_url":"pic.twitter.com\/eaRz8x1NuR","expanded_url":"https:\/\/twitter.com\/alt227Joydeep\/status\/1507276186858274834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1117,"h":1200,"resize":"fit"},"large":{"w":1430,"h":1536,"resize":"fit"},"small":{"w":633,"h":680,"resize":"fit"}},"source_status_id":1507276186858274834,"source_status_id_str":"1507276186858274834","source_user_id":459440677,"source_user_id_str":"459440677"}]},"extended_entities":{"media":[{"id":1507276063784812566,"id_str":"1507276063784812566","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","url":"https:\/\/t.co\/eaRz8x1NuR","display_url":"pic.twitter.com\/eaRz8x1NuR","expanded_url":"https:\/\/twitter.com\/alt227Joydeep\/status\/1507276186858274834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1117,"h":1200,"resize":"fit"},"large":{"w":1430,"h":1536,"resize":"fit"},"small":{"w":633,"h":680,"resize":"fit"}},"source_status_id":1507276186858274834,"source_status_id_str":"1507276186858274834","source_user_id":459440677,"source_user_id_str":"459440677"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 08:40:21 +0000 2022","id":1507276186858274834,"id_str":"1507276186858274834","text":"without - context data is just random information\n\nsource linkedin: https:\/\/t.co\/C6nHP8EBnH - https:\/\/t.co\/eaRz8x1NuR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C6nHP8EBnH","expanded_url":"https:\/\/www.linkedin.com\/posts\/ralph-aboujaoude-diaz-40838313_technology-artificialintelligence-computervision-activity-6912446088364875776-h-Iq?utm_source=linkedin_share&utm_medium=member_desktop_web","display_url":"linkedin.com\/posts\/ralph-ab\u2026","indices":[66,89]}],"media":[{"id":1507276063784812566,"id_str":"1507276063784812566","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","url":"https:\/\/t.co\/eaRz8x1NuR","display_url":"pic.twitter.com\/eaRz8x1NuR","expanded_url":"https:\/\/twitter.com\/alt227Joydeep\/status\/1507276186858274834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1117,"h":1200,"resize":"fit"},"large":{"w":1430,"h":1536,"resize":"fit"},"small":{"w":633,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507276063784812566,"id_str":"1507276063784812566","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrrmBhXwBYTbo5.jpg","url":"https:\/\/t.co\/eaRz8x1NuR","display_url":"pic.twitter.com\/eaRz8x1NuR","expanded_url":"https:\/\/twitter.com\/alt227Joydeep\/status\/1507276186858274834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1117,"h":1200,"resize":"fit"},"large":{"w":1430,"h":1536,"resize":"fit"},"small":{"w":633,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1566,"favorite_count":7137,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1566,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368601845774573568\/261yo13v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368601845774573568\/261yo13v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232559561\/1429377216","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311167935218622464,"id_str":"1311167935218622464","name":"Mia","screen_name":"notmia183","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":27,"listed_count":0,"created_at":"Wed - Sep 30 04:56:20 +0000 2020","favourites_count":241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Fri - Oct 23 06:23:12 +0000 2020","id":1319524756585091072,"id_str":"1319524756585091072","text":"RT - @JoeBiden: Learning to live with it? Come on. People are dying with it, Mr. - President.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Oct 23 01:20:00 +0000 2020","id":1319448453911441408,"id_str":"1319448453911441408","text":"Learning - to live with it? Come on. People are dying with it, Mr. President.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18726,"favorite_count":164934,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18726,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311168096586039301\/cCtjFdvm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311168096586039301\/cCtjFdvm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34713628,"id_str":"34713628","name":"\ud83e\udd96 - \ud83c\udd83\ud83c\udd77\ud83c\udd78\ud83c\udd82 \ud83c\udd79\ud83c\udd84\ud83c\udd82\ud83c\udd83\ud83c\udd78\ud83c\udd7d - \ud83e\udd95","screen_name":"jsdonathan","location":"St Louis, MO","description":"father - \ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67, book lover \ud83d\udcda, - tea enthusiast \u2615\ufe0f, amateur cook \ud83d\udc68\ud83c\udffb\u200d\ud83c\udf73, - economic developer \ud83d\udcb8, INFJ \ud83e\uddd4\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":276,"friends_count":2533,"listed_count":2,"created_at":"Thu - Apr 23 20:06:20 +0000 2009","favourites_count":5388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Thu - Mar 24 18:12:49 +0000 2022","id":1507057863390339076,"id_str":"1507057863390339076","text":"RT - @rinanpakkala: How did the Russians ever think these people could be conquered, - my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rinanpakkala","name":"Rina","id":826477293472251904,"id_str":"826477293472251904","indices":[3,16]}],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904"}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904","video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 01:07:31 +0000 2022","id":1506799839509725196,"id_str":"1506799839509725196","text":"How - did the Russians ever think these people could be conquered, my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30519,"favorite_count":151738,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30519,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494437075227131911\/3cH0sAZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494437075227131911\/3cH0sAZp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34713628\/1582945969","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9EDBF7","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267314811408351239,"id_str":"1267314811408351239","name":"Ryan","screen_name":"Ryan13818596","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":89,"listed_count":0,"created_at":"Mon - Jun 01 04:39:53 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Jul 10 02:39:59 +0000 2020","id":1281417857243533314,"id_str":"1281417857243533314","text":"@JoeConchaTV - Definitely dry rolling","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeConchaTV","name":"Joe - Concha","id":245441097,"id_str":"245441097","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1281329230257819650,"in_reply_to_status_id_str":"1281329230257819650","in_reply_to_user_id":245441097,"in_reply_to_user_id_str":"245441097","in_reply_to_screen_name":"JoeConchaTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1134054811291267072,"id_str":"1134054811291267072","name":"Ojwang - steve.","screen_name":"SportsOjwang","location":"NAIROBI ","description":"Para - sport Coach. An inclusive world through sports.\u267f\ud83c\udff8\ud83c\udfd3\ud83c\udfaf\ud83c\udfd1\ud83c\udfc0\ud83c\udf96\ufe0f\ud83c\udfc6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":330,"listed_count":0,"created_at":"Thu - May 30 11:11:51 +0000 2019","favourites_count":5759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Tue - Mar 15 16:19:56 +0000 2022","id":1503767966747406336,"id_str":"1503767966747406336","text":"RT - @_bethburgess: I had a fantastic couple of days at the @includesummit last - week, and had the pleasure of meeting some amazing people str\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_bethburgess","name":"Beth - Burgess","id":3898301139,"id_str":"3898301139","indices":[3,16]},{"screen_name":"includesummit","name":"@IncludeSummit","id":1437736783882686468,"id_str":"1437736783882686468","indices":[58,72]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 15:12:01 +0000 2022","id":1503750876133044229,"id_str":"1503750876133044229","text":"I - had a fantastic couple of days at the @includesummit last week, and had the - pleasure of meeting some amazing peop\u2026 https:\/\/t.co\/zu3tUU19BU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"includesummit","name":"@IncludeSummit","id":1437736783882686468,"id_str":"1437736783882686468","indices":[40,54]}],"urls":[{"url":"https:\/\/t.co\/zu3tUU19BU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503750876133044229","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":27,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308658872807313408\/Oy7a3_wZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308658872807313408\/Oy7a3_wZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":903245077,"id_str":"903245077","name":"carey - naluai","screen_name":"CNaluai","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":68,"listed_count":0,"created_at":"Thu - Oct 25 05:01:32 +0000 2012","favourites_count":1107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Dec 13 21:00:18 +0000 2019","id":1205593309550272515,"id_str":"1205593309550272515","text":"@TMZ - @TooFab \ud83e\udd23\ud83e\udd23OMG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TMZ","name":"TMZ","id":16331010,"id_str":"16331010","indices":[0,4]},{"screen_name":"TooFab","name":"TooFab","id":116547240,"id_str":"116547240","indices":[5,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1205585743273439232,"in_reply_to_status_id_str":"1205585743273439232","in_reply_to_user_id":16331010,"in_reply_to_user_id_str":"16331010","in_reply_to_screen_name":"TMZ","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612823417398530052\/QMgqkBJp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612823417398530052\/QMgqkBJp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/903245077\/1545549473","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310189890571841536,"id_str":"1310189890571841536","name":"Joseph - Mutave","screen_name":"JosephMutave","location":"","description":"mine and - me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":304,"listed_count":0,"created_at":"Sun - Sep 27 12:10:30 +0000 2020","favourites_count":1371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Mon - Nov 09 07:46:05 +0000 2020","id":1325706209232609280,"id_str":"1325706209232609280","text":"RT - @saloe2398: The realization that you have to appreciate people you love whilst - they are alive only strikes when somebody dies and eventu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"saloe2398","name":"Rich - Auntie To Be\ud83d\udc51\ud83e\udd71\ud83e\udd11","id":991322422505861120,"id_str":"991322422505861120","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 09 07:15:27 +0000 2020","id":1325698499988639747,"id_str":"1325698499988639747","text":"The - realization that you have to appreciate people you love whilst they are alive - only strikes when somebody dies a\u2026 https:\/\/t.co\/wimSnKPi3B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wimSnKPi3B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1325698499988639747","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":220,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310190245380526081\/0RedWchS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310190245380526081\/0RedWchS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300200379573915648,"id_str":"1300200379573915648","name":"\ud835\udc00\ud835\udc27\ud835\udc1e\ud835\udc1e\ud835\udc2c - \ud83e\udd8b","screen_name":"Aneesmeliysa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":797,"listed_count":0,"created_at":"Sun - Aug 30 22:35:25 +0000 2020","favourites_count":19088,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":425,"lang":null,"status":{"created_at":"Sat - Feb 27 14:21:36 +0000 2021","id":1365668410747588609,"id_str":"1365668410747588609","text":"RT - @DrRedzaZainol: Mak ayah patut risau bila:\n\n- anak takut badan basah kena - air\n- takut pegang ais\n- geli pegang pasir\n- tak boleh makan m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrRedzaZainol","name":"Redza - Zainol","id":1231943573907492865,"id_str":"1231943573907492865","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 27 03:26:55 +0000 2021","id":1365503652148834304,"id_str":"1365503652148834304","text":"Mak - ayah patut risau bila:\n\n- anak takut badan basah kena air\n- takut pegang - ais\n- geli pegang pasir\n- tak boleh ma\u2026 https:\/\/t.co\/wCbyHuwRYF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wCbyHuwRYF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1365503652148834304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15272,"favorite_count":22287,"favorited":false,"retweeted":false,"lang":"in"},"is_quote_status":false,"retweet_count":15272,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354618782409322497\/4wx-HB_s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354618782409322497\/4wx-HB_s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1300200379573915648\/1598827136","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":542955244,"id_str":"542955244","name":"Who - Do I Think I Think I Am","screen_name":"WatchJalex","location":"Middle Earth","description":"dickhead - with pink hair and pronouns in his bio -my favorite review of me so far\n\nGuitar - for @gunpointalibi\n he\/him","url":"https:\/\/t.co\/hSckYMZtfy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hSckYMZtfy","expanded_url":"https:\/\/youtube.com\/channel\/UCyMlQAq0UjM1899NtCOf9mw","display_url":"youtube.com\/channel\/UCyMlQ\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":323,"listed_count":8,"created_at":"Mon - Apr 02 00:03:05 +0000 2012","favourites_count":19764,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13575,"lang":null,"status":{"created_at":"Fri - Mar 25 15:05:59 +0000 2022","id":1507373236132012037,"id_str":"1507373236132012037","text":"This - song is an absolute banger btw https:\/\/t.co\/QNuWcAbDpA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QNuWcAbDpA","expanded_url":"https:\/\/twitter.com\/GunpointAlibi\/status\/1507372987275567107","display_url":"twitter.com\/GunpointAlibi\/\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507372987275567107,"quoted_status_id_str":"1507372987275567107","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428904191469125633\/pjw2qutI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428904191469125633\/pjw2qutI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542955244\/1629512282","profile_link_color":"AB4B02","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301821182224859136,"id_str":"1301821182224859136","name":"Divine - Mercy","screen_name":"DivineM70402900","location":"","description":"always - moving forward","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":728,"friends_count":4174,"listed_count":1,"created_at":"Fri - Sep 04 09:56:14 +0000 2020","favourites_count":1841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - May 25 05:49:37 +0000 2021","id":1397067307541835779,"id_str":"1397067307541835779","text":"It''s - well with Africa https:\/\/t.co\/BJpbwcqZwT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BJpbwcqZwT","expanded_url":"https:\/\/twitter.com\/Opresii\/status\/1396767618481238017","display_url":"twitter.com\/Opresii\/status\u2026","indices":[22,45]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1396767618481238017,"quoted_status_id_str":"1396767618481238017","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822649841318817794,"id_str":"822649841318817794","name":"Ross - Warkenthien","screen_name":"hrwarkenthien","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":408,"listed_count":0,"created_at":"Sat - Jan 21 03:39:41 +0000 2017","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1030178854558564353\/INlV_zLc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1030178854558564353\/INlV_zLc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822649841318817794\/1534448779","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311925008218775552,"id_str":"1311925008218775552","name":"tejas - sonawane","screen_name":"tejasso02105497","location":"Pune, India","description":"Nature - lover \ud83c\udf3f\ud83c\udf3f,moody,\nLv to hangout with friends,\nlike to - explore new things and places,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":88,"listed_count":0,"created_at":"Fri - Oct 02 07:05:37 +0000 2020","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu - Mar 17 16:18:32 +0000 2022","id":1504492389720727554,"id_str":"1504492389720727554","text":"@aajtak - @SwetaSinghAT Tv9 Bharatvarsh said its no.1 news challenge according to BARC - and also you are saying that you are no.1 whom to trust","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aajtak","name":"AajTak","id":42606652,"id_str":"42606652","indices":[0,7]},{"screen_name":"SwetaSinghAT","name":"Sweta - Singh","id":824893826066034688,"id_str":"824893826066034688","indices":[8,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504482471374888965,"in_reply_to_status_id_str":"1504482471374888965","in_reply_to_user_id":42606652,"in_reply_to_user_id_str":"42606652","in_reply_to_screen_name":"aajtak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504272835732439040\/vkG563e1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504272835732439040\/vkG563e1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86454370,"id_str":"86454370","name":"Sheila - Kaplan","screen_name":"BySheilaKaplan","location":"CA","description":"Signal - & WhatsApp. 4153057305. Former NYT, now writing bio of late Cold War spy - Dasha Stapleton with @vjn, Dasha''s daughter. Also freelancing on public health.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6442,"friends_count":1298,"listed_count":281,"created_at":"Sat - Oct 31 03:30:57 +0000 2009","favourites_count":4564,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8952,"lang":null,"status":{"created_at":"Fri - Mar 25 16:36:24 +0000 2022","id":1507395990474694664,"id_str":"1507395990474694664","text":"RT - @1CeliaGreen: So as a parent am I supposed to just accept my kids will be - repeatedly infected with a virus that increases risk of heart\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"1CeliaGreen","name":"Celia - Green","id":3272484319,"id_str":"3272484319","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 08:33:19 +0000 2022","id":1507274418472427527,"id_str":"1507274418472427527","text":"So - as a parent am I supposed to just accept my kids will be repeatedly infected - with a virus that increases risk of\u2026 https:\/\/t.co\/Ph6AdMdu2Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ph6AdMdu2Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507274418472427527","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4834,"favorite_count":20184,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4834,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643198725502976000\/Iuu67JI__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643198725502976000\/Iuu67JI__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267306945049841664,"id_str":"1267306945049841664","name":"FLACO - CORREL\u00d3N.","screen_name":"MANUEL02147655","location":"Rialto, CA","description":"MARATHON - RUNNER, BUT MOSTLY RUNNING FOR FUN.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":404,"listed_count":1,"created_at":"Mon - Jun 01 04:08:53 +0000 2020","favourites_count":1812,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"status":{"created_at":"Sat - Mar 05 06:15:06 +0000 2022","id":1499991875071078404,"id_str":"1499991875071078404","text":"@AngeJayne77 - Just my strides and heavy breathing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AngeJayne77","name":"Angela - JL","id":229863931,"id_str":"229863931","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499838846904770572,"in_reply_to_status_id_str":"1499838846904770572","in_reply_to_user_id":229863931,"in_reply_to_user_id_str":"229863931","in_reply_to_screen_name":"AngeJayne77","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267307836867874817\/Ih3Q-AbS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267307836867874817\/Ih3Q-AbS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2359998814,"id_str":"2359998814","name":"Meredith - Guillot","screen_name":"Meredithguillot","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":76,"listed_count":0,"created_at":"Sun - Feb 23 03:24:16 +0000 2014","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Wed - Jan 20 02:50:45 +0000 2021","id":1351723811138375682,"id_str":"1351723811138375682","text":"@ratemyskyperoom - @gtconway3d Would be an 11\/10 if a corgi was visible!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ratemyskyperoom","name":"Room - Rater","id":1248996730940448774,"id_str":"1248996730940448774","indices":[0,16]},{"screen_name":"gtconway3d","name":"George - Conway\ud83c\udf3b","id":471677441,"id_str":"471677441","indices":[17,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1351706772936007681,"in_reply_to_status_id_str":"1351706772936007681","in_reply_to_user_id":1248996730940448774,"in_reply_to_user_id_str":"1248996730940448774","in_reply_to_screen_name":"ratemyskyperoom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":449838206,"id_str":"449838206","name":"Cathy - M.","screen_name":"_cmacaroni","location":"stony brook university","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":657,"listed_count":3,"created_at":"Thu - Dec 29 15:17:38 +0000 2011","favourites_count":3839,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1269,"lang":null,"status":{"created_at":"Wed - Mar 23 18:28:42 +0000 2022","id":1506699472813834253,"id_str":"1506699472813834253","text":"RT - @SBUCommunity: Vote for Wolfie in SUNY Mascot Madness https:\/\/t.co\/LpE6JZXVer - @StonyBrookU @StonyBrookMed @StonyBrookAlum","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SBUCommunity","name":"Community - Relations","id":285252217,"id_str":"285252217","indices":[3,16]},{"screen_name":"stonybrooku","name":"Stony - Brook University","id":50762782,"id_str":"50762782","indices":[81,93]},{"screen_name":"StonyBrookMed","name":"Stony - Brook Medicine","id":212260641,"id_str":"212260641","indices":[94,108]},{"screen_name":"stonybrookalum","name":"Stony - Brook Alumni","id":151163548,"id_str":"151163548","indices":[109,124]}],"urls":[{"url":"https:\/\/t.co\/LpE6JZXVer","expanded_url":"https:\/\/news.stonybrook.edu\/university\/vote-for-wolfie-in-suny-mascot-madness\/","display_url":"news.stonybrook.edu\/university\/vot\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:28:10 +0000 2022","id":1506699341033099265,"id_str":"1506699341033099265","text":"Vote - for Wolfie in SUNY Mascot Madness https:\/\/t.co\/LpE6JZXVer @StonyBrookU - @StonyBrookMed @StonyBrookAlum","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stonybrooku","name":"Stony - Brook University","id":50762782,"id_str":"50762782","indices":[63,75]},{"screen_name":"StonyBrookMed","name":"Stony - Brook Medicine","id":212260641,"id_str":"212260641","indices":[76,90]},{"screen_name":"stonybrookalum","name":"Stony - Brook Alumni","id":151163548,"id_str":"151163548","indices":[91,106]}],"urls":[{"url":"https:\/\/t.co\/LpE6JZXVer","expanded_url":"https:\/\/news.stonybrook.edu\/university\/vote-for-wolfie-in-suny-mascot-madness\/","display_url":"news.stonybrook.edu\/university\/vot\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246045458532728832\/2K9m1DKY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246045458532728832\/2K9m1DKY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449838206\/1493577835","profile_link_color":"009999","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":183479281,"id_str":"183479281","name":"Larry - Thompson","screen_name":"LT54","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":1583,"listed_count":0,"created_at":"Fri - Aug 27 02:48:35 +0000 2010","favourites_count":77801,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":708,"lang":null,"status":{"created_at":"Sun - Mar 20 03:07:47 +0000 2022","id":1505380556598652933,"id_str":"1505380556598652933","text":"RT - @pmarca: WHO DID THIS https:\/\/t.co\/EkvuFXD9Bn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pmarca","name":"Marc - Andreessen","id":5943622,"id_str":"5943622","indices":[3,10]}],"urls":[],"media":[{"id":1505045125654671361,"id_str":"1505045125654671361","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","url":"https:\/\/t.co\/EkvuFXD9Bn","display_url":"pic.twitter.com\/EkvuFXD9Bn","expanded_url":"https:\/\/twitter.com\/pmarca\/status\/1505045128175529989\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":752,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":752,"resize":"fit"},"small":{"w":680,"h":639,"resize":"fit"}},"source_status_id":1505045128175529989,"source_status_id_str":"1505045128175529989","source_user_id":5943622,"source_user_id_str":"5943622"}]},"extended_entities":{"media":[{"id":1505045125654671361,"id_str":"1505045125654671361","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","url":"https:\/\/t.co\/EkvuFXD9Bn","display_url":"pic.twitter.com\/EkvuFXD9Bn","expanded_url":"https:\/\/twitter.com\/pmarca\/status\/1505045128175529989\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":752,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":752,"resize":"fit"},"small":{"w":680,"h":639,"resize":"fit"}},"source_status_id":1505045128175529989,"source_status_id_str":"1505045128175529989","source_user_id":5943622,"source_user_id_str":"5943622"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 04:54:55 +0000 2022","id":1505045128175529989,"id_str":"1505045128175529989","text":"WHO - DID THIS https:\/\/t.co\/EkvuFXD9Bn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505045125654671361,"id_str":"1505045125654671361","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","url":"https:\/\/t.co\/EkvuFXD9Bn","display_url":"pic.twitter.com\/EkvuFXD9Bn","expanded_url":"https:\/\/twitter.com\/pmarca\/status\/1505045128175529989\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":752,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":752,"resize":"fit"},"small":{"w":680,"h":639,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505045125654671361,"id_str":"1505045125654671361","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOL-kVWUcAEvSGB.jpg","url":"https:\/\/t.co\/EkvuFXD9Bn","display_url":"pic.twitter.com\/EkvuFXD9Bn","expanded_url":"https:\/\/twitter.com\/pmarca\/status\/1505045128175529989\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":752,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":752,"resize":"fit"},"small":{"w":680,"h":639,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2805,"favorite_count":20656,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2805,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":290374185,"id_str":"290374185","name":"Jan - Cuyco","screen_name":"janfelicia_","location":"","description":"amy santiago - personified | associate editor for @tinigngplaridel | \ud83d\udd8a\ufe0f @pcijdotorg - @rapplerdotcom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":900,"friends_count":921,"listed_count":2,"created_at":"Sat - Apr 30 05:21:15 +0000 2011","favourites_count":27412,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94237,"lang":null,"status":{"created_at":"Sat - Mar 26 08:22:34 +0000 2022","id":1507634099393298435,"id_str":"1507634099393298435","text":"RT - @challsrman: Gusto ko lang naman magtapon ng basura bakit may pag call out - https:\/\/t.co\/ukJ0JokNYa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"challsrman","name":"chuck - moneyfesting era \u2122 and 104 others \uea00","id":95641845,"id_str":"95641845","indices":[3,14]}],"urls":[],"media":[{"id":1507381323262218246,"id_str":"1507381323262218246","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","url":"https:\/\/t.co\/ukJ0JokNYa","display_url":"pic.twitter.com\/ukJ0JokNYa","expanded_url":"https:\/\/twitter.com\/challsrman\/status\/1507381332179296258\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1507381332179296258,"source_status_id_str":"1507381332179296258","source_user_id":95641845,"source_user_id_str":"95641845"}]},"extended_entities":{"media":[{"id":1507381323262218246,"id_str":"1507381323262218246","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","url":"https:\/\/t.co\/ukJ0JokNYa","display_url":"pic.twitter.com\/ukJ0JokNYa","expanded_url":"https:\/\/twitter.com\/challsrman\/status\/1507381332179296258\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1507381332179296258,"source_status_id_str":"1507381332179296258","source_user_id":95641845,"source_user_id_str":"95641845"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:38:10 +0000 2022","id":1507381332179296258,"id_str":"1507381332179296258","text":"Gusto - ko lang naman magtapon ng basura bakit may pag call out https:\/\/t.co\/ukJ0JokNYa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507381323262218246,"id_str":"1507381323262218246","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","url":"https:\/\/t.co\/ukJ0JokNYa","display_url":"pic.twitter.com\/ukJ0JokNYa","expanded_url":"https:\/\/twitter.com\/challsrman\/status\/1507381332179296258\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507381323262218246,"id_str":"1507381323262218246","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtLU7oaUAY7jmV.jpg","url":"https:\/\/t.co\/ukJ0JokNYa","display_url":"pic.twitter.com\/ukJ0JokNYa","expanded_url":"https:\/\/twitter.com\/challsrman\/status\/1507381332179296258\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":469,"favorite_count":2837,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":469,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1450342435712819203\/Ew8SvaPj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1450342435712819203\/Ew8SvaPj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290374185\/1639719885","profile_link_color":"FFB8C9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9EFFF4","profile_text_color":"A6444C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22212995,"id_str":"22212995","name":"Karina","screen_name":"OCcubanita","location":"Lake - Forest, CA","description":"Feminist, liberal, first-gen Cuban-American. I - also tweet about romance books so if you\u2019re a pearl clutcher or snob, - just go ahead an unfollow me now.","url":"https:\/\/t.co\/DAvHyAGudM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DAvHyAGudM","expanded_url":"http:\/\/www.facebook.com\/OCcubanita","display_url":"facebook.com\/OCcubanita","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":380,"friends_count":2138,"listed_count":12,"created_at":"Sat - Feb 28 00:57:43 +0000 2009","favourites_count":40873,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7599,"lang":null,"status":{"created_at":"Sat - Mar 26 04:09:29 +0000 2022","id":1507570408911900679,"id_str":"1507570408911900679","text":"Devastated. - RIP. https:\/\/t.co\/RtrQ8Abm8r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RtrQ8Abm8r","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234","display_url":"twitter.com\/foofighters\/st\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507552958988255234,"quoted_status_id_str":"1507552958988255234","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351253010358308866\/FB_TVPuw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351253010358308866\/FB_TVPuw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22212995\/1610998798","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792921008080650240,"id_str":"792921008080650240","name":"Deeeen","screen_name":"yangadabadaknye","location":"Purwokerto - Utara, Indonesia","description":"Gapunya Ayang","url":"https:\/\/t.co\/KimzKgEFX0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KimzKgEFX0","expanded_url":"http:\/\/www.gautamadeden.wordpress.com","display_url":"gautamadeden.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":161,"listed_count":0,"created_at":"Mon - Oct 31 02:47:54 +0000 2016","favourites_count":1580,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"status":{"created_at":"Sat - Mar 26 02:00:07 +0000 2022","id":1507537851831169025,"id_str":"1507537851831169025","text":"Ada - yang bangun lebih awal sebelum kita bangun? Apakah itu? \n\nAyam woyyyyyy - jangan ovt wkwk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375389482837364739\/7pQkYKIH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375389482837364739\/7pQkYKIH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792921008080650240\/1597971420","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303947631736033281,"id_str":"1303947631736033281","name":"Mazi - Nwagod","screen_name":"MaziReuben","location":"","description":"simple going","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":212,"listed_count":0,"created_at":"Thu - Sep 10 06:45:38 +0000 2020","favourites_count":281,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":733,"lang":null,"status":{"created_at":"Thu - Mar 03 01:36:57 +0000 2022","id":1499197101095403523,"id_str":"1499197101095403523","text":"RT - @SLukako: Is like CAN is repenting Small small https:\/\/t.co\/rLn9ILm8nb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SLukako","name":"Sim - Lukako","id":1435887294569922562,"id_str":"1435887294569922562","indices":[3,11]}],"urls":[],"media":[{"id":1499027525485445121,"id_str":"1499027525485445121","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","url":"https:\/\/t.co\/rLn9ILm8nb","display_url":"pic.twitter.com\/rLn9ILm8nb","expanded_url":"https:\/\/twitter.com\/SLukako\/status\/1499027528668884994\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1332,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":973,"h":1200,"resize":"fit"}},"source_status_id":1499027528668884994,"source_status_id_str":"1499027528668884994","source_user_id":1435887294569922562,"source_user_id_str":"1435887294569922562"}]},"extended_entities":{"media":[{"id":1499027525485445121,"id_str":"1499027525485445121","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","url":"https:\/\/t.co\/rLn9ILm8nb","display_url":"pic.twitter.com\/rLn9ILm8nb","expanded_url":"https:\/\/twitter.com\/SLukako\/status\/1499027528668884994\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1332,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":973,"h":1200,"resize":"fit"}},"source_status_id":1499027528668884994,"source_status_id_str":"1499027528668884994","source_user_id":1435887294569922562,"source_user_id_str":"1435887294569922562"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 14:23:08 +0000 2022","id":1499027528668884994,"id_str":"1499027528668884994","text":"Is - like CAN is repenting Small small https:\/\/t.co\/rLn9ILm8nb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499027525485445121,"id_str":"1499027525485445121","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","url":"https:\/\/t.co\/rLn9ILm8nb","display_url":"pic.twitter.com\/rLn9ILm8nb","expanded_url":"https:\/\/twitter.com\/SLukako\/status\/1499027528668884994\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1332,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":973,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499027525485445121,"id_str":"1499027525485445121","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2dl50XwAElBw8.jpg","url":"https:\/\/t.co\/rLn9ILm8nb","display_url":"pic.twitter.com\/rLn9ILm8nb","expanded_url":"https:\/\/twitter.com\/SLukako\/status\/1499027528668884994\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1332,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":973,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":131,"favorite_count":93,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":131,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481707660361842693\/SXSqAFA1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481707660361842693\/SXSqAFA1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2890081080,"id_str":"2890081080","name":"Jessica - Colburn","screen_name":"jcolburn1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":110,"friends_count":311,"listed_count":7,"created_at":"Tue - Nov 04 20:08:18 +0000 2014","favourites_count":76,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529857080862052352\/cQDQnr5l_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529857080862052352\/cQDQnr5l_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2567808150,"id_str":"2567808150","name":"Zena - Keita","screen_name":"itszenakeita","location":"Oakland, CA","description":"Partnerships - at @TheAthletic by day. Sideline Reporter for the @gleaguewarriors by night. - Yale and WF alumnae\n\nThoughts are my own. Retweets\/Likes \u2260 Endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":923,"listed_count":9,"created_at":"Sat - Jun 14 21:41:52 +0000 2014","favourites_count":3786,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":816,"lang":null,"status":{"created_at":"Sat - Mar 26 04:26:43 +0000 2022","id":1507574746652635137,"id_str":"1507574746652635137","text":"FINAL: - SCW 116 - IAW 112\n\nAfter a slow start, Seadubs w\/ a resilient win in thrilling - game against Iowa in overtime\u2026 https:\/\/t.co\/kOdVmz8jH1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kOdVmz8jH1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507574746652635137","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422231706371715074\/-BRmCQFs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422231706371715074\/-BRmCQFs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2567808150\/1541629633","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1105222754792554498,"id_str":"1105222754792554498","name":"OKd - \ud83c\uddec \ud83c\udded","screen_name":"kofi_okd","location":"Ekwamkrom, - Ghana","description":"Timing isn''t everything. It''s the only thing. Be patient. - Be prepared. Continue to work hard. Your time will eventually come.A disciplined - life leads to wealth.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":4267,"listed_count":2,"created_at":"Mon - Mar 11 21:43:33 +0000 2019","favourites_count":15817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15334,"lang":null,"status":{"created_at":"Sat - Mar 26 10:39:18 +0000 2022","id":1507668507722457088,"id_str":"1507668507722457088","text":"RT - @BarcaFem: \ud83d\udd25DIA DE PARTIT\ud83d\udd25\n\ud83c\udfc6 Primera Iberdrola - | Round 25\n\ud83c\udd9a\ufe0f Madrid CFF \n\u231a 12:00h\n\ud83c\udfdf Municipal - Nuevo Matapi\u00f1onera \n\ud83d\udcbb Bar\u00e7aTV+\n#For\u00e7aBar\u00e7a\u2026","truncated":false,"entities":{"hashtags":[{"text":"For\u00e7aBar\u00e7a","indices":[128,139]}],"symbols":[],"user_mentions":[{"screen_name":"BarcaFem","name":"Bar\u00e7a - Femen\u00ed","id":1198542219868876800,"id_str":"1198542219868876800","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:01:11 +0000 2022","id":1507628719518715906,"id_str":"1507628719518715906","text":"\ud83d\udd25DIA - DE PARTIT\ud83d\udd25\n\ud83c\udfc6 Primera Iberdrola | Round 25\n\ud83c\udd9a\ufe0f - Madrid CFF \n\u231a 12:00h\n\ud83c\udfdf Municipal Nuevo Matapi\u00f1onera - \n\ud83d\udcbb Bar\u00e7aTV+\u2026 https:\/\/t.co\/plBpf8giS1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/plBpf8giS1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507628719518715906","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":165,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351739135036420101\/wFCiHGe-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351739135036420101\/wFCiHGe-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105222754792554498\/1611114700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26285885,"id_str":"26285885","name":"Bob - Kyler","screen_name":"bobkyler","location":" Welland On","description":"My - home town is Saskatoon, Sk. ..I live in Welland, On....and am a Transit Operator - with Welland Transit...huge fan of Habs...Blue Jays...Tiger Woods...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1246,"friends_count":4391,"listed_count":9,"created_at":"Tue - Mar 24 18:01:49 +0000 2009","favourites_count":21704,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31020,"lang":null,"status":{"created_at":"Sat - Mar 26 10:00:40 +0000 2022","id":1507658788995624960,"id_str":"1507658788995624960","text":"Wearing - your heart on your sleeves could be easier than usual ... More for Scorpio - https:\/\/t.co\/YEZ22Ci6uu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YEZ22Ci6uu","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077570162281377794\/ZWBDhxKA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077570162281377794\/ZWBDhxKA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26285885\/1371241677","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1012029029736644608,"id_str":"1012029029736644608","name":"rahul - chapagain","screen_name":"RahulChapagain2","location":"Nepal","description":"practicing - law \u2696\ufe0f first generation lawyer \ud83d\udc68\u200d\u2696\ufe0f linking - law & finance \ud83e\ude99\na conscious breather\ud83c\udf2c\ufe0f non conformist - non dualist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":1628,"listed_count":0,"created_at":"Wed - Jun 27 17:44:58 +0000 2018","favourites_count":5218,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2248,"lang":null,"status":{"created_at":"Mon - Mar 07 12:50:00 +0000 2022","id":1500816033828859905,"id_str":"1500816033828859905","text":"@ValueStockGeek - Are they saying they will sell to weaken the dollar further ?\nSell increases - supply, or was it literal ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ValueStockGeek","name":"ValueStockGeek","id":904344810512941056,"id_str":"904344810512941056","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500806536943357952,"in_reply_to_status_id_str":"1500806536943357952","in_reply_to_user_id":904344810512941056,"in_reply_to_user_id_str":"904344810512941056","in_reply_to_screen_name":"ValueStockGeek","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308646505641779201\/7jACU5H2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308646505641779201\/7jACU5H2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012029029736644608\/1596459628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1037485163301621760,"id_str":"1037485163301621760","name":"Dan - Bodanis","screen_name":"DBodanis","location":"Mississauga, Ontario","description":"Dad, - Husband, Pro Photographer, Writer, Consultant, Pro Drummer, Bander Leader - - The Dan Bodanis Band, A very ''punny'' guy!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":1909,"listed_count":1,"created_at":"Wed - Sep 05 23:38:33 +0000 2018","favourites_count":25252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":336,"lang":null,"status":{"created_at":"Mon - Mar 21 23:04:32 +0000 2022","id":1506044116240633856,"id_str":"1506044116240633856","text":"@BonnieCrombie - \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BonnieCrombie","name":"Bonnie - Crombie \ud83c\udde8\ud83c\udde6","id":442026896,"id_str":"442026896","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506035689770598406,"in_reply_to_status_id_str":"1506035689770598406","in_reply_to_user_id":442026896,"in_reply_to_user_id_str":"442026896","in_reply_to_screen_name":"BonnieCrombie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037487182464790528\/ZhocP19l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037487182464790528\/ZhocP19l_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1203729938,"id_str":"1203729938","name":"Mike - Salda\u00f1a","screen_name":"Buckeye_Mike007","location":"Los Angeles, CA","description":"The - Ohio State University Moritz College of Law; University of California, Riverside","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":2307,"listed_count":4,"created_at":"Thu - Feb 21 09:45:07 +0000 2013","favourites_count":909,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Fri - Mar 13 05:22:13 +0000 2020","id":1238334528063561729,"id_str":"1238334528063561729","text":"RT - @BLaw: DOL says states can pay unemployment insurance benefits to workers - who miss time on the job because of the spread of the new coro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BLaw","name":"Bloomberg - Law","id":34613951,"id_str":"34613951","indices":[3,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 13 04:51:05 +0000 2020","id":1238326695796637702,"id_str":"1238326695796637702","text":"DOL - says states can pay unemployment insurance benefits to workers who miss time - on the job because of the spread o\u2026 https:\/\/t.co\/aJDRocuHUX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aJDRocuHUX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1238326695796637702","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1012351534708002817\/plJmZorf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1012351534708002817\/plJmZorf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1203729938\/1556922318","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1197949371570118656,"id_str":"1197949371570118656","name":"M0msta: - Still Waiting for the Perp Walk!","screen_name":"M0msta","location":"New York","description":"Displaced - Californian, retired teacher, grandmother, dog lover, Vespa enthusiast.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":295,"listed_count":0,"created_at":"Fri - Nov 22 18:46:46 +0000 2019","favourites_count":6575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1788,"lang":null,"status":{"created_at":"Sat - Mar 26 00:17:37 +0000 2022","id":1507512058224558091,"id_str":"1507512058224558091","text":"@jesflres - I am one!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223102746666004480\/z2YTbbhP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223102746666004480\/z2YTbbhP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1197949371570118656\/1598710826","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313603336139149317,"id_str":"1313603336139149317","name":"toast","screen_name":"sleepytoast_","location":"","description":"don\u2019t - touch me I DEFINITELY will scream","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":69,"friends_count":744,"listed_count":0,"created_at":"Tue - Oct 06 22:13:49 +0000 2020","favourites_count":16352,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":495,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327824126422167553\/kwhJz2U__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327824126422167553\/kwhJz2U__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1313603336139149317\/1602821457","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253775555805302788,"id_str":"1253775555805302788","name":"Carmem - Luiza Montier","screen_name":"MontierLuiza","location":"","description":"como - assim especial?kkk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":808,"listed_count":0,"created_at":"Fri - Apr 24 20:02:52 +0000 2020","favourites_count":15270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7084,"lang":null,"status":{"created_at":"Fri - Mar 25 23:37:01 +0000 2022","id":1507501841503842304,"id_str":"1507501841503842304","text":"RT - @Reuters: Sitting in front of a destroyed building, cellist Denys Karachevtsev - brings a moment of serenity to the war-torn streets of Uk\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:45:00 +0000 2022","id":1507488749092962305,"id_str":"1507488749092962305","text":"Sitting - in front of a destroyed building, cellist Denys Karachevtsev brings a moment - of serenity to the war-torn st\u2026 https:\/\/t.co\/Tk7giDEmB4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Tk7giDEmB4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507488749092962305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":549,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":175,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306379037619752960\/UwrapRkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306379037619752960\/UwrapRkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253775555805302788\/1600300156","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295616360660078593,"id_str":"1295616360660078593","name":"LannaDude","screen_name":"SommitchT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":180,"listed_count":0,"created_at":"Tue - Aug 18 07:00:07 +0000 2020","favourites_count":1643,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2176,"lang":null,"status":{"created_at":"Mon - Oct 25 14:04:20 +0000 2021","id":1452637153960161286,"id_str":"1452637153960161286","text":"RT - @thisisanfield: \ud83d\udd34 \ud83d\udc4f\ud83c\udffd This group and era of - players are writing some incredible chapters into the history of Liverpool - FC. https:\/\/t.co\/x\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thisisanfield","name":"This - Is Anfield","id":18060630,"id_str":"18060630","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 25 10:30:00 +0000 2021","id":1452583213000323074,"id_str":"1452583213000323074","text":"\ud83d\udd34 - \ud83d\udc4f\ud83c\udffd This group and era of players are writing some incredible - chapters into the history of Liverpool FC. https:\/\/t.co\/xDVS3TzucB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1452564578542489605,"id_str":"1452564578542489605","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FCiLycVXEAU7nFO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCiLycVXEAU7nFO.jpg","url":"https:\/\/t.co\/xDVS3TzucB","display_url":"pic.twitter.com\/xDVS3TzucB","expanded_url":"https:\/\/twitter.com\/thisisanfield\/status\/1452583213000323074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1452564578542489605,"id_str":"1452564578542489605","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FCiLycVXEAU7nFO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FCiLycVXEAU7nFO.jpg","url":"https:\/\/t.co\/xDVS3TzucB","display_url":"pic.twitter.com\/xDVS3TzucB","expanded_url":"https:\/\/twitter.com\/thisisanfield\/status\/1452583213000323074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":619,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":40,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374028554724274177\/i10TWkL0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374028554724274177\/i10TWkL0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295616360660078593\/1599531299","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306584071204753409,"id_str":"1306584071204753409","name":"\ud83d\udda4\uc5d8 - \/ \ucf00\uc774\ud2f0\ud83d\udda4","screen_name":"officialcxt91","location":"Chicago, - IL","description":"Music lover and photographer. supporter of #fromfriendsjaeandjed - IG: officialcxt SC: \u010cXT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":233,"listed_count":0,"created_at":"Thu - Sep 17 13:21:44 +0000 2020","favourites_count":1350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Sat - Jun 05 18:10:35 +0000 2021","id":1401240046250991621,"id_str":"1401240046250991621","text":"My - phone played Zombie by @day6official @Jae_Day6 in the car... my mom turns - it to full volume!!!! #zombie @Jae_Day6","truncated":false,"entities":{"hashtags":[{"text":"zombie","indices":[99,106]}],"symbols":[],"user_mentions":[{"screen_name":"day6official","name":"DAY6","id":3390133696,"id_str":"3390133696","indices":[26,39]},{"screen_name":"Jae_Day6","name":"J","id":1492182669538775040,"id_str":"1492182669538775040","indices":[40,49]},{"screen_name":"Jae_Day6","name":"J","id":1492182669538775040,"id_str":"1492182669538775040","indices":[107,116]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397232163913932801\/9AV6aD7y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397232163913932801\/9AV6aD7y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306584071204753409\/1600350928","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792793633468669953,"id_str":"792793633468669953","name":"Toyia - Tucker","screen_name":"ToyiaTucker_D4","location":"Columbus, GA","description":"Wife, - Mom, USAF Veteran, Columbus, Ga City Councilor District 4 \ud83d\udda4\ud83d\udcab","url":"https:\/\/t.co\/BUUEgjQFsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BUUEgjQFsm","expanded_url":"http:\/\/electtoyiatucker.com","display_url":"electtoyiatucker.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":1538,"listed_count":2,"created_at":"Sun - Oct 30 18:21:46 +0000 2016","favourites_count":13274,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3319,"lang":null,"status":{"created_at":"Sat - Mar 26 03:50:58 +0000 2022","id":1507565751053529089,"id_str":"1507565751053529089","text":"@monsieurmoscato - She\u2019s beautiful \ud83d\ude0d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"monsieurmoscato","name":"brandon - w \ud83e\udde6\ud83c\udfdb","id":1185046638,"id_str":"1185046638","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507561022411968513,"in_reply_to_status_id_str":"1507561022411968513","in_reply_to_user_id":1185046638,"in_reply_to_user_id_str":"1185046638","in_reply_to_screen_name":"monsieurmoscato","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506063730475479044\/sSr5sAFH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506063730475479044\/sSr5sAFH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792793633468669953\/1618954791","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":295794019,"id_str":"295794019","name":"sue - justice","screen_name":"bbqcajuncook","location":"willard, mo","description":"cajun - cook","url":"https:\/\/t.co\/AhLTXbfUv0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AhLTXbfUv0","expanded_url":"http:\/\/bestcajunbbq.com","display_url":"bestcajunbbq.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1222,"friends_count":1821,"listed_count":0,"created_at":"Mon - May 09 17:36:08 +0000 2011","favourites_count":225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16527,"lang":null,"status":{"created_at":"Fri - Mar 25 22:03:35 +0000 2022","id":1507478325467709443,"id_str":"1507478325467709443","text":"RT - @muadhrezi: Corporate greed is causing inflation. Pass it on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"muadhrezi","name":"Muad - Hrezi","id":1332513411306057728,"id_str":"1332513411306057728","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:14:55 +0000 2022","id":1507028196470009858,"id_str":"1507028196470009858","text":"Corporate - greed is causing inflation. Pass it on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11813,"favorite_count":35438,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11813,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496335012375953408\/buheYyZk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496335012375953408\/buheYyZk_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1139637468611973120,"id_str":"1139637468611973120","name":"JulesTov7*23","screen_name":"JulesTov7_23","location":"New - York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":1001,"listed_count":0,"created_at":"Fri - Jun 14 20:55:20 +0000 2019","favourites_count":1136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":291,"lang":null,"status":{"created_at":"Sat - Mar 12 19:46:00 +0000 2022","id":1502732660438937605,"id_str":"1502732660438937605","text":"I - need @taylorswift13 and @50cent on a colllab. I\u2019ve said it for so long - and I see the vision !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taylorswift13","name":"Taylor - Swift","id":17919972,"id_str":"17919972","indices":[7,21]},{"screen_name":"50cent","name":"50cent","id":18222378,"id_str":"18222378","indices":[26,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225582929285459969\/kDw-YR1S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225582929285459969\/kDw-YR1S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1139637468611973120\/1560547767","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1222088440130478080,"id_str":"1222088440130478080","name":"Sauti - ya matumaini","screen_name":"Sautiyangu_","location":"KENYA","description":"Introverted - Kenyan Citizen,philathropist, minding my own business.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":622,"listed_count":0,"created_at":"Tue - Jan 28 09:26:22 +0000 2020","favourites_count":493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":521,"lang":null,"status":{"created_at":"Fri - Mar 25 08:18:48 +0000 2022","id":1507270762176167940,"id_str":"1507270762176167940","text":"RT - @OPLMKe: President Daniel arap Moi and his entourage hitch a ride with a tipper - lorry after heavy rains forced his chopper to land kilom\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OPLMKe","name":"Presidential - Library, Museum and Exhibitions","id":1399282044002263043,"id_str":"1399282044002263043","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:21:18 +0000 2022","id":1507256294381604879,"id_str":"1507256294381604879","text":"President - Daniel arap Moi and his entourage hitch a ride with a tipper lorry after heavy - rains forced his chopper t\u2026 https:\/\/t.co\/78ungWhM6c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/78ungWhM6c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507256294381604879","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2830,"favorite_count":6194,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2830,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497846430261727233\/ijWRZg48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497846430261727233\/ijWRZg48_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298663836434812929,"id_str":"1298663836434812929","name":"Tk..monti","screen_name":"tesekamonti","location":"","description":"my - little family an my boo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":296,"listed_count":0,"created_at":"Wed - Aug 26 16:49:36 +0000 2020","favourites_count":149,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Sat - Nov 27 23:59:55 +0000 2021","id":1464745835338600457,"id_str":"1464745835338600457","text":"@BeautifulMonti - Take gud care of my little cuz nw...safe trip\u2764","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeautifulMonti","name":"Chantelle''","id":242528276,"id_str":"242528276","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1464737950789419009,"in_reply_to_status_id_str":"1464737950789419009","in_reply_to_user_id":242528276,"in_reply_to_user_id_str":"242528276","in_reply_to_screen_name":"BeautifulMonti","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298778100419960833\/ID_HzToV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298778100419960833\/ID_HzToV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":104669752,"id_str":"104669752","name":"Patrick - Butler","screen_name":"plb2SB","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":559,"listed_count":0,"created_at":"Thu - Jan 14 01:23:57 +0000 2010","favourites_count":50314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5912,"lang":null,"status":{"created_at":"Tue - Feb 16 18:35:16 +0000 2021","id":1361745979217645568,"id_str":"1361745979217645568","text":"@JRubinBlogger - @GUPolitics Still think Teddy\u2019s eulogy was one of the greatest ever!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JRubinBlogger","name":"Jennifer - ''I stand with Ukraine'' Rubin \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":218975278,"id_str":"218975278","indices":[0,14]},{"screen_name":"GUPolitics","name":"Georgetown - Institute of Politics & Public Service","id":3386436927,"id_str":"3386436927","indices":[15,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1361732484363395073,"in_reply_to_status_id_str":"1361732484363395073","in_reply_to_user_id":218975278,"in_reply_to_user_id_str":"218975278","in_reply_to_screen_name":"JRubinBlogger","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":70900287,"id_str":"70900287","name":"Sachin - Hariharan","screen_name":"Sachin1992","location":"London, England","description":"Engineering - Lead at Moneybox","url":"https:\/\/t.co\/MVQCHm0Ujw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MVQCHm0Ujw","expanded_url":"http:\/\/www.facebook.com\/sachin.hariharan","display_url":"facebook.com\/sachin.harihar\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":385,"friends_count":4240,"listed_count":2,"created_at":"Wed - Sep 02 06:31:16 +0000 2009","favourites_count":18322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":89,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/813528599600959488\/Vl1hGeCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/813528599600959488\/Vl1hGeCw_normal.jpg","profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302271589547991041,"id_str":"1302271589547991041","name":"Diana - Renee Baker 1961 Psalms23","screen_name":"DianaReneeBake4","location":"Bronx, - NY","description":"\ud83d\ude4f\ud83e\udd14\ud83c\udfc0\ud83d\udd25Up\ud83d\ude4f\ud83d\uddfd\ud83e\udd70\ud83e\udd1a\ud83d\udde3#Mama - #Grandmama #FACTS #TRUTH #GoodTrouble\ud83c\udfc0I\ud83d\udc41#Rise\ud83d\ude4f#INTEGRITY\u231a - #BlackLivesMatter #ACA\ud83e\udd1d @BarackObama @POTUS @VP @FLOTUS @MichelleObama","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":635,"friends_count":4385,"listed_count":0,"created_at":"Sat - Sep 05 15:45:39 +0000 2020","favourites_count":83756,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":128292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499094177522532362\/-D7prxJO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499094177522532362\/-D7prxJO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4876127671,"id_str":"4876127671","name":"Cherry - blossoms \ud83c\udf38","screen_name":"asjlkp3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":192,"listed_count":1,"created_at":"Mon - Feb 08 00:13:42 +0000 2016","favourites_count":54788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Sun - Feb 07 00:55:19 +0000 2021","id":1358217743456165891,"id_str":"1358217743456165891","text":"@okaykenji - Lol \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"okaykenji","name":"OKAY! - KENJI","id":217575628,"id_str":"217575628","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1358194149837725696,"in_reply_to_status_id_str":"1358194149837725696","in_reply_to_user_id":217575628,"in_reply_to_user_id_str":"217575628","in_reply_to_screen_name":"okaykenji","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206255677049577472\/bxj1UVEG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206255677049577472\/bxj1UVEG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4876127671\/1502749074","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2970329236,"id_str":"2970329236","name":"Yossarian - was right","screen_name":"turkmacleod","location":"Austin, TX","description":"Old - English teacher. Hate Trump viscerally. Engineering brat. Loves God but not - the church.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":1367,"listed_count":0,"created_at":"Fri - Jan 09 19:49:06 +0000 2015","favourites_count":29349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13958,"lang":null,"status":{"created_at":"Wed - Feb 03 15:24:07 +0000 2021","id":1356986835667456004,"id_str":"1356986835667456004","text":"@Acyn - Why are we still covering these twats? Who carrrrres!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Acyn","name":"Acyn","id":16635277,"id_str":"16635277","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1356791749738328064,"in_reply_to_status_id_str":"1356791749738328064","in_reply_to_user_id":16635277,"in_reply_to_user_id_str":"16635277","in_reply_to_screen_name":"Acyn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296298679280840704\/koJOvFtS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296298679280840704\/koJOvFtS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1051801406,"id_str":"1051801406","name":"Heifer - Hotline","screen_name":"Kay545Woods","location":"","description":"UK 22. she\/they\/babes. - I bully men. pen aficionado. Openly Black. Ethereal bisexual. Amateur wine - expert.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":575,"friends_count":3094,"listed_count":0,"created_at":"Tue - Jan 01 04:24:27 +0000 2013","favourites_count":96032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22021,"lang":null,"status":{"created_at":"Fri - Mar 25 17:58:51 +0000 2022","id":1507416739121872908,"id_str":"1507416739121872908","text":"RT - @mgrace1179: a weighted blanket is not enough i need to be compressed into - a .zip file","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mgrace1179","name":"rev. - mary \u2728","id":1431141586297970695,"id_str":"1431141586297970695","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:13:09 +0000 2022","id":1506816355416227842,"id_str":"1506816355416227842","text":"a - weighted blanket is not enough i need to be compressed into a .zip file","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49113,"favorite_count":274439,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":49113,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313635431947350016\/7j728qys_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313635431947350016\/7j728qys_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1051801406\/1464402736","profile_link_color":"593C85","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":31616104,"id_str":"31616104","name":"Tasha - Hardy","screen_name":"TashaHardy","location":"eagle point ","description":"Having - fun on the Farm. love my German shorthaired pointers. proud to be married - to my hubby! work hard, play hard, travel often adventure is my love \ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":920,"listed_count":0,"created_at":"Thu - Apr 16 02:53:15 +0000 2009","favourites_count":2688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1148,"lang":null,"status":{"created_at":"Sun - Mar 20 14:58:16 +0000 2022","id":1505559352769331201,"id_str":"1505559352769331201","text":"Busy - week on the farm! We had our first kids born. I am able to milk both of my - does and I have made cheese!!!\u2026 https:\/\/t.co\/2KnnFeazBZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2KnnFeazBZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505559352769331201","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441588297197768705\/24NSE1-O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441588297197768705\/24NSE1-O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31616104\/1632536409","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248974828285112320,"id_str":"1248974828285112320","name":"MommaBiss","screen_name":"BissMomma","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":150,"listed_count":0,"created_at":"Sat - Apr 11 14:03:19 +0000 2020","favourites_count":1387,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":164,"lang":null,"status":{"created_at":"Thu - Sep 09 23:22:55 +0000 2021","id":1436107884295868416,"id_str":"1436107884295868416","text":"RT - @robreiner: When you hear Trump say that Robert E. Lee would have been victorious - in Afghanistan, you are once again reminded what a hug\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robreiner","name":"Rob - Reiner","id":738080573365702657,"id_str":"738080573365702657","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 09 00:25:53 +0000 2021","id":1435761340514111497,"id_str":"1435761340514111497","text":"When - you hear Trump say that Robert E. Lee would have been victorious in Afghanistan, - you are once again reminded w\u2026 https:\/\/t.co\/dbzKyDSkbv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dbzKyDSkbv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1435761340514111497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13390,"favorite_count":85498,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3135496443,"id_str":"3135496443","name":"hemant","screen_name":"torzihp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":2808,"listed_count":0,"created_at":"Sun - Apr 05 01:36:25 +0000 2015","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Wed - Mar 09 11:43:31 +0000 2022","id":1501524076904554499,"id_str":"1501524076904554499","text":"RT - @saurabh16702593: Sant Shri Asharamji Bapu has been framed under a well planned - conspiracy! Girl was a major at time of reported inciden\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"saurabh16702593","name":"Saurabh - Bhatnagar","id":1384308117387694080,"id_str":"1384308117387694080","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 02:30:12 +0000 2022","id":1501384829270732804,"id_str":"1501384829270732804","text":"Sant - Shri Asharamji Bapu has been framed under a well planned conspiracy! Girl - was a major at time of reported inci\u2026 https:\/\/t.co\/JDM1dSmPn3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JDM1dSmPn3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501384829270732804","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"5c43cbdfce4d3247","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5c43cbdfce4d3247.json","place_type":"city","name":"Mississauga","full_name":"Mississauga, - Ontario","country_code":"CA","country":"Canada","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.810142,43.373074],[-79.422004,43.373074],[-79.422004,43.737414],[-79.810142,43.737414]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":215,"favorite_count":227,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":215,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584531406421889024\/7_qkWZg6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584531406421889024\/7_qkWZg6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":253201133,"id_str":"253201133","name":"Adam","screen_name":"beergutty","location":"washington - dc","description":"Tunes&Brews.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":608,"listed_count":0,"created_at":"Wed - Feb 16 19:23:24 +0000 2011","favourites_count":1083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Thu - Mar 17 18:44:42 +0000 2022","id":1504529173313957892,"id_str":"1504529173313957892","text":"@930Club - @NotTodayBros","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"930Club","name":"9:30 - Club","id":20257611,"id_str":"20257611","indices":[0,8]},{"screen_name":"NotTodayBros","name":"Short - Stack","id":823187750820204544,"id_str":"823187750820204544","indices":[9,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504467603430928392,"in_reply_to_status_id_str":"1504467603430928392","in_reply_to_user_id":20257611,"in_reply_to_user_id_str":"20257611","in_reply_to_screen_name":"930Club","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2677987489\/6d634a16d331a8fdd9a23285f7231aa6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2677987489\/6d634a16d331a8fdd9a23285f7231aa6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253201133\/1349302048","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":257604460,"id_str":"257604460","name":"Chris - Habiby","screen_name":"chabiby","location":"Bethesda, MD","description":"Legislative - and Policy Coordinator @adc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":1210,"listed_count":0,"created_at":"Fri - Feb 25 19:53:18 +0000 2011","favourites_count":2001,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":475,"lang":null,"status":{"created_at":"Sat - Mar 26 00:56:11 +0000 2022","id":1507521765592993802,"id_str":"1507521765592993802","text":"RT - @aayoub: Couple white guys pledge allegiance to ISIS and plan terror attacks. - \n\nTheir targets? Shia mosques in the Chicago area. \n\nA ver\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aayoub","name":"Abed - A. Ayoub #DebtJubilee","id":22657082,"id_str":"22657082","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:34:34 +0000 2022","id":1507516321885569030,"id_str":"1507516321885569030","text":"Couple - white guys pledge allegiance to ISIS and plan terror attacks. \n\nTheir targets? - Shia mosques in the Chicago a\u2026 https:\/\/t.co\/EnBLknplDj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EnBLknplDj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507516321885569030","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444360038768861184\/hRuhuyU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444360038768861184\/hRuhuyU9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1214153071799885824,"id_str":"1214153071799885824","name":"vital","screen_name":"Vital113","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":66,"listed_count":0,"created_at":"Mon - Jan 06 11:54:01 +0000 2020","favourites_count":168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Wed - Jun 16 21:40:16 +0000 2021","id":1405279082015719427,"id_str":"1405279082015719427","text":"RT - @ShehuSani: Under GEJ,our northern clerics prayed and cursed the leaders and - spared the terrorists;Under PMB,Our northern clerics prayed\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShehuSani","name":"Senator - Shehu Sani","id":117042662,"id_str":"117042662","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 16 14:58:10 +0000 2021","id":1405177889251807244,"id_str":"1405177889251807244","text":"Under - GEJ,our northern clerics prayed and cursed the leaders and spared the terrorists;Under - PMB,Our northern cleri\u2026 https:\/\/t.co\/6CtmS4LmPE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6CtmS4LmPE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1405177889251807244","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2397,"favorite_count":5072,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2397,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319011527589023745\/TeOqXYt__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319011527589023745\/TeOqXYt__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":834086813006458884,"id_str":"834086813006458884","name":"\u2727\uff65\uff9f:*\u1d35\u2019\u1d50 - \u1d47\u1d49\u1d43\u1d58\u1d57\u1da6\u1da0\u1d58\u02e1 (\ua20d \ua4b3 \ua20d\u273f)*:\uff65\uff9f\u2727*","screen_name":"BloorAnastazja","location":"nie - interere sie","description":"League queen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1045,"listed_count":2,"created_at":"Tue - Feb 21 17:06:07 +0000 2017","favourites_count":940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72,"lang":null,"status":{"created_at":"Sun - Mar 20 00:40:19 +0000 2022","id":1505343445434515459,"id_str":"1505343445434515459","text":"@memes_bot - 21st Century Digital Girl by Groove Coverage","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"memes_bot","name":"\ufe0f","id":886255180249014274,"id_str":"886255180249014274","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505263159992623104,"in_reply_to_status_id_str":"1505263159992623104","in_reply_to_user_id":886255180249014274,"in_reply_to_user_id_str":"886255180249014274","in_reply_to_screen_name":"memes_bot","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424149029508816897\/CnnYMdPw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424149029508816897\/CnnYMdPw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834086813006458884\/1610042086","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218578426,"id_str":"1218578426","name":"Kate - Diffenderfer","screen_name":"Meantightjeans","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":1059,"listed_count":0,"created_at":"Mon - Feb 25 13:37:16 +0000 2013","favourites_count":21148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Thu - Feb 17 15:04:03 +0000 2022","id":1494326783365107721,"id_str":"1494326783365107721","text":"@EITMonline - Lead from your seat!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EITMonline","name":"ELLIOT - IN THE MORNING","id":16665960,"id_str":"16665960","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1494323779417219084,"in_reply_to_status_id_str":"1494323779417219084","in_reply_to_user_id":16665960,"in_reply_to_user_id_str":"16665960","in_reply_to_screen_name":"EITMonline","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3362703691\/2b4bb76325c12acc540d949f1c995c74_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3362703691\/2b4bb76325c12acc540d949f1c995c74_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1573577671,"id_str":"1573577671","name":"al - fichaud","screen_name":"alfichaud","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":545,"listed_count":1,"created_at":"Sat - Jul 06 20:04:55 +0000 2013","favourites_count":3764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11468,"lang":null,"status":{"created_at":"Thu - Mar 24 23:12:22 +0000 2022","id":1507133250195628036,"id_str":"1507133250195628036","text":"@baladorje - I''m surprised she can even read or write She is a disgrace and embarrassment - .","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baladorje","name":"Bala - Dorje","id":1337754019163496450,"id_str":"1337754019163496450","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506971478146707460,"in_reply_to_status_id_str":"1506971478146707460","in_reply_to_user_id":1337754019163496450,"in_reply_to_user_id_str":"1337754019163496450","in_reply_to_screen_name":"baladorje","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348337583345053696\/hUTkh3ye_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348337583345053696\/hUTkh3ye_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1285198748042362881,"id_str":"1285198748042362881","name":"yvette","screen_name":"yvette79659958","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":174,"listed_count":0,"created_at":"Mon - Jul 20 13:05:03 +0000 2020","favourites_count":263,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Tue - Feb 01 05:21:38 +0000 2022","id":1488382008015400960,"id_str":"1488382008015400960","text":"@janiaabaniaaaa - \ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"janiaabaniaaaa","name":"miss - BITCH","id":2896114309,"id_str":"2896114309","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488182141934620677,"in_reply_to_status_id_str":"1488182141934620677","in_reply_to_user_id":2896114309,"in_reply_to_user_id_str":"2896114309","in_reply_to_screen_name":"janiaabaniaaaa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285200171261886470\/vIJQ0Hn1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285200171261886470\/vIJQ0Hn1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32375800,"id_str":"32375800","name":"Kathy","screen_name":"kaerrera","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":625,"listed_count":0,"created_at":"Fri - Apr 17 11:51:14 +0000 2009","favourites_count":3757,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3004,"lang":null,"status":{"created_at":"Fri - Mar 18 01:11:23 +0000 2022","id":1504626484304039944,"id_str":"1504626484304039944","text":"RT - @robreiner: The freedom loving world owes President Zelensky and the people - of Ukraine whatever it takes to restore peace and allow Demo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robreiner","name":"Rob - Reiner","id":738080573365702657,"id_str":"738080573365702657","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 13:34:07 +0000 2022","id":1504088627097202694,"id_str":"1504088627097202694","text":"The - freedom loving world owes President Zelensky and the people of Ukraine whatever - it takes to restore peace and a\u2026 https:\/\/t.co\/7c2636cmbY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7c2636cmbY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504088627097202694","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4499,"favorite_count":29492,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4499,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/812046528948731906\/6vuLxTy7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/812046528948731906\/6vuLxTy7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32375800\/1483709314","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284728986392621058,"id_str":"1284728986392621058","name":"Pranesh","screen_name":"Pranesh1806","location":"India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":137,"listed_count":0,"created_at":"Sun - Jul 19 05:57:29 +0000 2020","favourites_count":263,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352100529355145216\/-1vmSH4i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352100529355145216\/-1vmSH4i_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":31161295,"id_str":"31161295","name":"montana_court","screen_name":"MontanaCourt","location":"Washington","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":33,"friends_count":400,"listed_count":0,"created_at":"Tue - Apr 14 16:34:45 +0000 2009","favourites_count":3887,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":343,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338224131221856256\/-5DWXRjo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338224131221856256\/-5DWXRjo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31161295\/1607892471","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":169273759,"id_str":"169273759","name":"Kendra - V","screen_name":"Oh4theLove","location":"","description":"journalist(WFTW, - WCOA, WALA, WBRC) \ud83d\udcfa\ud83c\udfa4current travel writer \ud83c\udf0e\ud83c\udfd6","url":"https:\/\/t.co\/1Txl7haFNN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1Txl7haFNN","expanded_url":"http:\/\/www.iLoveDestin.com","display_url":"iLoveDestin.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":32,"friends_count":1121,"listed_count":2,"created_at":"Wed - Jul 21 23:35:57 +0000 2010","favourites_count":21121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1680,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286115899649425411\/DaC5kb5b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286115899649425411\/DaC5kb5b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169273759\/1519612754","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17710109,"id_str":"17710109","name":"\ud83c\udd83\ud83c\udd7e\ud83c\udd73\ud83c\udd73 - \ud83c\udd77\ud83c\udd78\ud83c\udd7b\ud83c\udd7b\ud83c\udd7c\ud83c\udd74\ud83c\udd81","screen_name":"hillmert","location":"Waukesha, - WI","description":"62-year-old library media specialist, father, husband, - Spartans, Packers, Brewers, and Bucks fan. Love YA fantasy. Opinions are my - own. #resist #bluewave \ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":431,"friends_count":2225,"listed_count":9,"created_at":"Fri - Nov 28 15:09:52 +0000 2008","favourites_count":8714,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1873,"lang":null,"status":{"created_at":"Mon - Mar 14 17:25:23 +0000 2022","id":1503422051276709894,"id_str":"1503422051276709894","text":"@ItsMeHenning - https:\/\/t.co\/HIuVZq1hrX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ItsMeHenning","name":"\u029c\u1d07\u0274\u0274\u026a\u0274\u0262","id":321457527,"id_str":"321457527","indices":[0,13]}],"urls":[],"media":[{"id":1503421995945496579,"id_str":"1503421995945496579","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FN06Vv_XEAMa-BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN06Vv_XEAMa-BN.jpg","url":"https:\/\/t.co\/HIuVZq1hrX","display_url":"pic.twitter.com\/HIuVZq1hrX","expanded_url":"https:\/\/twitter.com\/hillmert\/status\/1503422051276709894\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":316,"h":316,"resize":"fit"},"medium":{"w":316,"h":316,"resize":"fit"},"large":{"w":316,"h":316,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503421995945496579,"id_str":"1503421995945496579","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FN06Vv_XEAMa-BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN06Vv_XEAMa-BN.jpg","url":"https:\/\/t.co\/HIuVZq1hrX","display_url":"pic.twitter.com\/HIuVZq1hrX","expanded_url":"https:\/\/twitter.com\/hillmert\/status\/1503422051276709894\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":316,"h":316,"resize":"fit"},"medium":{"w":316,"h":316,"resize":"fit"},"large":{"w":316,"h":316,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1503421575458136065,"in_reply_to_status_id_str":"1503421575458136065","in_reply_to_user_id":17710109,"in_reply_to_user_id_str":"17710109","in_reply_to_screen_name":"hillmert","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/281742250\/ToddSimpson8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/281742250\/ToddSimpson8_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2766910702,"id_str":"2766910702","name":"Jessica - Mercer","screen_name":"Miami_Diva","location":"Miami","description":"Southern-Belle - Pieces, Lovin the \"Salt Life\", fitness, model, professional, making Rainbows - & Butterflies one wink at a time...;)","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":226,"friends_count":1306,"listed_count":3,"created_at":"Thu - Sep 11 04:20:21 +0000 2014","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1262,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007802753664585730\/SyjNR1wQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007802753664585730\/SyjNR1wQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766910702\/1492256348","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1074707682,"id_str":"1074707682","name":"Lisa","screen_name":"lnikeda","location":"Washington, - DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":1282,"listed_count":0,"created_at":"Wed - Jan 09 19:50:04 +0000 2013","favourites_count":4172,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":127,"lang":null,"status":{"created_at":"Wed - Jan 20 10:43:55 +0000 2021","id":1351842890478190598,"id_str":"1351842890478190598","text":"RT - @KateBennett_DC: Good morning from the White House, where lights are coming - on ... https:\/\/t.co\/mQ9BxzK6gi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KateBennett_DC","name":"Kate - Bennett","id":55369810,"id_str":"55369810","indices":[3,18]}],"urls":[],"media":[{"id":1351840591236231168,"id_str":"1351840591236231168","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","url":"https:\/\/t.co\/mQ9BxzK6gi","display_url":"pic.twitter.com\/mQ9BxzK6gi","expanded_url":"https:\/\/twitter.com\/KateBennett_DC\/status\/1351840595153727488\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1456,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":483,"resize":"fit"},"medium":{"w":1200,"h":853,"resize":"fit"}},"source_status_id":1351840595153727488,"source_status_id_str":"1351840595153727488","source_user_id":55369810,"source_user_id_str":"55369810"}]},"extended_entities":{"media":[{"id":1351840591236231168,"id_str":"1351840591236231168","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","url":"https:\/\/t.co\/mQ9BxzK6gi","display_url":"pic.twitter.com\/mQ9BxzK6gi","expanded_url":"https:\/\/twitter.com\/KateBennett_DC\/status\/1351840595153727488\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1456,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":483,"resize":"fit"},"medium":{"w":1200,"h":853,"resize":"fit"}},"source_status_id":1351840595153727488,"source_status_id_str":"1351840595153727488","source_user_id":55369810,"source_user_id_str":"55369810"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 20 10:34:48 +0000 2021","id":1351840595153727488,"id_str":"1351840595153727488","text":"Good - morning from the White House, where lights are coming on ... https:\/\/t.co\/mQ9BxzK6gi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1351840591236231168,"id_str":"1351840591236231168","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","url":"https:\/\/t.co\/mQ9BxzK6gi","display_url":"pic.twitter.com\/mQ9BxzK6gi","expanded_url":"https:\/\/twitter.com\/KateBennett_DC\/status\/1351840595153727488\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1456,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":483,"resize":"fit"},"medium":{"w":1200,"h":853,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1351840591236231168,"id_str":"1351840591236231168","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsKz2vmW8AAMkOX.jpg","url":"https:\/\/t.co\/mQ9BxzK6gi","display_url":"pic.twitter.com\/mQ9BxzK6gi","expanded_url":"https:\/\/twitter.com\/KateBennett_DC\/status\/1351840595153727488\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1456,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":483,"resize":"fit"},"medium":{"w":1200,"h":853,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":1361,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":116,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763018095036362753\/O63EBDBs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763018095036362753\/O63EBDBs_normal.jpg","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":716707828040392704,"id_str":"716707828040392704","name":"Sharon","screen_name":"sammivonscott","location":"","description":"Maine - science geek in a balsam & pine forest.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":957,"listed_count":0,"created_at":"Sun - Apr 03 19:23:56 +0000 2016","favourites_count":34647,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11031,"lang":null,"status":{"created_at":"Fri - Mar 25 21:55:09 +0000 2022","id":1507476203644637185,"id_str":"1507476203644637185","text":"RT - @OccupyDemocrats: BREAKING: Democratic Senator Ron Wyden blasts Supreme Court - Justice Clarence Thomas, accusing of \u201ccorruption\u201d and dema\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:46:03 +0000 2022","id":1507443717367599125,"id_str":"1507443717367599125","text":"BREAKING: - Democratic Senator Ron Wyden blasts Supreme Court Justice Clarence Thomas, - accusing of \u201ccorruption\u201d and d\u2026 https:\/\/t.co\/ithn5pTH4e","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ithn5pTH4e","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507443717367599125","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2790,"favorite_count":7470,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2790,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2148625216,"id_str":"2148625216","name":"Seeking - Peace","screen_name":"Jenny_4676","location":"Michigan, USA","description":"Human - most of the time","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":282,"listed_count":0,"created_at":"Tue - Oct 22 16:02:36 +0000 2013","favourites_count":18348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":569,"lang":null,"status":{"created_at":"Thu - Sep 09 16:15:25 +0000 2021","id":1436000297621626881,"id_str":"1436000297621626881","text":"@KellyannePolls - Yikes, wish you showed some grace and go before the escort out.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KellyannePolls","name":"Kellyanne - Conway","id":471672239,"id_str":"471672239","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1435702026458083328,"in_reply_to_status_id_str":"1435702026458083328","in_reply_to_user_id":471672239,"in_reply_to_user_id_str":"471672239","in_reply_to_screen_name":"KellyannePolls","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285672749239869441\/5OLn3Nod_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285672749239869441\/5OLn3Nod_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1060698411089850368,"id_str":"1060698411089850368","name":"Phyllis - Schreiber","screen_name":"PhyllisSchreib6","location":"Westminster, CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":168,"listed_count":0,"created_at":"Fri - Nov 09 00:59:42 +0000 2018","favourites_count":107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1447,"lang":null,"status":{"created_at":"Wed - Dec 22 02:39:05 +0000 2021","id":1473483198373892098,"id_str":"1473483198373892098","text":"@patriottakes - Lauren Boebert you\u2019re talking about yourself, you sound like a record - on high speed. Your an embarras\u2026 https:\/\/t.co\/jOAS42abux","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patriottakes","name":"PatriotTakes - \ud83c\uddfa\ud83c\uddf8","id":978265628426432512,"id_str":"978265628426432512","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/jOAS42abux","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1473483198373892098","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1473418061130747908,"in_reply_to_status_id_str":"1473418061130747908","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1060707706384728064\/083JJru7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060707706384728064\/083JJru7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1134430346739453953,"id_str":"1134430346739453953","name":"Finance","screen_name":"Finance61750877","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":2168,"listed_count":0,"created_at":"Fri - May 31 12:04:06 +0000 2019","favourites_count":102,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Mon - Aug 23 04:28:12 +0000 2021","id":1429661727520555009,"id_str":"1429661727520555009","text":"@ptcnews - Yes,. Haan \ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ptcnews","name":"\u0a2a\u0a40\u0a1f\u0a40\u0a38\u0a40 - \u0a28\u0a3f\u0a0a\u0a5b | PTC News","id":852553470,"id_str":"852553470","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1429474830030495745,"in_reply_to_status_id_str":"1429474830030495745","in_reply_to_user_id":852553470,"in_reply_to_user_id_str":"852553470","in_reply_to_screen_name":"ptcnews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":890146519,"id_str":"890146519","name":"Esther - Santiago","screen_name":"EstherSantiag15","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":102,"friends_count":483,"listed_count":19,"created_at":"Fri - Oct 19 02:22:03 +0000 2012","favourites_count":10146,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44165,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1717260132,"id_str":"1717260132","name":"you - got no jams","screen_name":"Adorepurple","location":"","description":"Army, - OT7, Jin bias \/ Every tweets was muted retweet \u2260 agree","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":1007,"listed_count":0,"created_at":"Sun - Sep 01 01:12:30 +0000 2013","favourites_count":20788,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":49434,"lang":null,"status":{"created_at":"Sat - Mar 26 10:24:32 +0000 2022","id":1507664792189763584,"id_str":"1507664792189763584","text":"RT - @ARMYLAND_TH: \u0e41\u0e1f\u0e19\u0e46\u0e02\u0e2d\u0e07\u0e08\u0e34\u0e19@BTS_twt\u200b - \u0e08\u0e30\u0e17\u0e33\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e42\u0e06\u0e29\u0e13\u0e32\u200b\u0e02\u0e2d\u0e07\u0e08\u0e34\u0e19\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e2d\u0e2d\u0e01\u0e2d\u0e32\u0e01\u0e32\u0e28\u200b - \u200b\u0e02\u0e2d\u0e07\u0e07\u0e32\u0e19\u0e1b\u0e23\u0e30\u0e01\u0e32\u0e28\u200b\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25\u200b - ''GRAMMY AWARDS''\u200b \u0e01\u0e31\u0e1a\u0e17\u0e32\u0e07TV \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e09\u0e25\u0e2d\u0e07\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ARMYLAND_TH","name":"\u00b0\u2022ARMYLAND\u200b\u2022\u00b0","id":753897683924856832,"id_str":"753897683924856832","indices":[3,15]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[27,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:05:49 +0000 2022","id":1507629882809151488,"id_str":"1507629882809151488","text":"\u0e41\u0e1f\u0e19\u0e46\u0e02\u0e2d\u0e07\u0e08\u0e34\u0e19@BTS_twt\u200b - \u0e08\u0e30\u0e17\u0e33\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e42\u0e06\u0e29\u0e13\u0e32\u200b\u0e02\u0e2d\u0e07\u0e08\u0e34\u0e19\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e2d\u0e2d\u0e01\u0e2d\u0e32\u0e01\u0e32\u0e28\u200b - \u200b\u0e02\u0e2d\u0e07\u0e07\u0e32\u0e19\u0e1b\u0e23\u0e30\u0e01\u0e32\u0e28\u200b\u0e23\u0e32\u0e07\u0e27\u0e31\u0e25\u200b - ''GRAMMY AWARDS''\u200b \u0e01\u0e31\u0e1a\u0e17\u0e32\u0e07TV \u0e40\u2026 - https:\/\/t.co\/B22XcSXZsK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[10,18]}],"urls":[{"url":"https:\/\/t.co\/B22XcSXZsK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507629882809151488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":554,"favorite_count":334,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":554,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500309333929697288\/lZO7IpC9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500309333929697288\/lZO7IpC9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1717260132\/1645889063","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1380818280,"id_str":"1380818280","name":"Cameron - Hill","screen_name":"CameronCHC","location":"MA","description":"I write a - lot of emails.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":1785,"listed_count":1,"created_at":"Fri - Apr 26 01:53:53 +0000 2013","favourites_count":29518,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1095,"lang":null,"status":{"created_at":"Tue - Mar 15 19:39:35 +0000 2022","id":1503818208243036172,"id_str":"1503818208243036172","text":"RT - @chrislhayes: There was literally no reason to not confirm her other than - the fact fossil fuel companies hated her because she believes\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chrislhayes","name":"Chris - Hayes","id":4207961,"id_str":"4207961","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 19:23:22 +0000 2022","id":1503814128300957705,"id_str":"1503814128300957705","text":"There - was literally no reason to not confirm her other than the fact fossil fuel - companies hated her because she be\u2026 https:\/\/t.co\/FBfsJPCKqv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FBfsJPCKqv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503814128300957705","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503810984942657540,"quoted_status_id_str":"1503810984942657540","retweet_count":2177,"favorite_count":8720,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1503810984942657540,"quoted_status_id_str":"1503810984942657540","retweet_count":2177,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484381258800984067\/lA4XyTeo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484381258800984067\/lA4XyTeo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1380818280\/1609700534","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301684937515569155,"id_str":"1301684937515569155","name":"mclaughlin1612@students.d211.org","screen_name":"mclaughlin16121","location":"","description":"i - am a kind person\ni help my peers at school","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":132,"listed_count":0,"created_at":"Fri - Sep 04 00:54:21 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Mon - May 17 20:37:32 +0000 2021","id":1394391659576795137,"id_str":"1394391659576795137","text":"@funder - sausage pizza","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1393550752132567040,"in_reply_to_status_id_str":"1393550752132567040","in_reply_to_user_id":14247236,"in_reply_to_user_id_str":"14247236","in_reply_to_screen_name":"funder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303111687776735238\/6W_mwSsN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303111687776735238\/6W_mwSsN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1146898902274252801,"id_str":"1146898902274252801","name":"klconover","screen_name":"jrzgrlexit8a","location":"South - Boston, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":210,"listed_count":0,"created_at":"Thu - Jul 04 21:49:41 +0000 2019","favourites_count":4370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":999,"lang":null,"status":{"created_at":"Fri - Mar 25 20:22:26 +0000 2022","id":1507452873491324932,"id_str":"1507452873491324932","text":"RT - @JanColl88208190: @EverzJohn @KaivanShroff https:\/\/t.co\/IpfVg5JxQm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JanColl88208190","name":"Jan - Collins","id":1335735847925198849,"id_str":"1335735847925198849","indices":[3,19]},{"screen_name":"EverzJohn","name":"John - Everz","id":1363334349643517953,"id_str":"1363334349643517953","indices":[21,31]},{"screen_name":"KaivanShroff","name":"Kaivan - Shroff","id":2289770467,"id_str":"2289770467","indices":[32,45]}],"urls":[],"media":[{"id":1507087592814223366,"id_str":"1507087592814223366","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","url":"https:\/\/t.co\/IpfVg5JxQm","display_url":"pic.twitter.com\/IpfVg5JxQm","expanded_url":"https:\/\/twitter.com\/JanColl88208190\/status\/1507087600984731658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":907,"h":616,"resize":"fit"},"medium":{"w":907,"h":616,"resize":"fit"}},"source_status_id":1507087600984731658,"source_status_id_str":"1507087600984731658","source_user_id":1335735847925198849,"source_user_id_str":"1335735847925198849"}]},"extended_entities":{"media":[{"id":1507087592814223366,"id_str":"1507087592814223366","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","url":"https:\/\/t.co\/IpfVg5JxQm","display_url":"pic.twitter.com\/IpfVg5JxQm","expanded_url":"https:\/\/twitter.com\/JanColl88208190\/status\/1507087600984731658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":907,"h":616,"resize":"fit"},"medium":{"w":907,"h":616,"resize":"fit"}},"source_status_id":1507087600984731658,"source_status_id_str":"1507087600984731658","source_user_id":1335735847925198849,"source_user_id_str":"1335735847925198849"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:10:59 +0000 2022","id":1507087600984731658,"id_str":"1507087600984731658","text":"@EverzJohn - @KaivanShroff https:\/\/t.co\/IpfVg5JxQm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EverzJohn","name":"John - Everz","id":1363334349643517953,"id_str":"1363334349643517953","indices":[0,10]},{"screen_name":"KaivanShroff","name":"Kaivan - Shroff","id":2289770467,"id_str":"2289770467","indices":[11,24]}],"urls":[],"media":[{"id":1507087592814223366,"id_str":"1507087592814223366","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","url":"https:\/\/t.co\/IpfVg5JxQm","display_url":"pic.twitter.com\/IpfVg5JxQm","expanded_url":"https:\/\/twitter.com\/JanColl88208190\/status\/1507087600984731658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":907,"h":616,"resize":"fit"},"medium":{"w":907,"h":616,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507087592814223366,"id_str":"1507087592814223366","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpALkcXIAYa6Ja.jpg","url":"https:\/\/t.co\/IpfVg5JxQm","display_url":"pic.twitter.com\/IpfVg5JxQm","expanded_url":"https:\/\/twitter.com\/JanColl88208190\/status\/1507087600984731658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":907,"h":616,"resize":"fit"},"medium":{"w":907,"h":616,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507066950698127360,"in_reply_to_status_id_str":"1507066950698127360","in_reply_to_user_id":1363334349643517953,"in_reply_to_user_id_str":"1363334349643517953","in_reply_to_screen_name":"EverzJohn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":73,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317996807771836416\/iCVM0KyR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317996807771836416\/iCVM0KyR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":743216537805295618,"id_str":"743216537805295618","name":"FARHAD - MIAH","screen_name":"farhadm03","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":528,"listed_count":0,"created_at":"Wed - Jun 15 23:00:05 +0000 2016","favourites_count":22205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":139,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285349156333260803\/p_FUYyHZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285349156333260803\/p_FUYyHZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743216537805295618\/1610913938","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":336622222,"id_str":"336622222","name":"Nutty1\ufe0f\u20e35\ufe0f\u20e36\ufe0f\u20e35\ufe0f\u20e3","screen_name":"INuttyy","location":"Thailand","description":"All - by myself","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":949,"listed_count":1,"created_at":"Sat - Jul 16 16:23:43 +0000 2011","favourites_count":3695,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295049691147546624\/k4o6xw9Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295049691147546624\/k4o6xw9Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336622222\/1576134366","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":611293000,"id_str":"611293000","name":"daisy - lopez","screen_name":"leedaisy12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":647,"listed_count":0,"created_at":"Mon - Jun 18 01:44:23 +0000 2012","favourites_count":6135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":287,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424944127083532289\/xTHePDYX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424944127083532289\/xTHePDYX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":966961478,"id_str":"966961478","name":"Cat","screen_name":"daisydukekelly","location":"Nova - Scotia, Canada","description":"sommelier","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":574,"listed_count":0,"created_at":"Fri - Nov 23 22:40:44 +0000 2012","favourites_count":12334,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7736,"lang":null,"status":{"created_at":"Thu - Feb 17 23:18:19 +0000 2022","id":1494451172404518914,"id_str":"1494451172404518914","text":"Sign - the petition calling on MPs and Senators to reject the Emergencies \/ War - Measures Act: https:\/\/t.co\/7ZLfwPwPwv via @AB_Institute","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AB_Institute","name":"Alberta - Institute","id":948406216299982848,"id_str":"948406216299982848","indices":[120,133]}],"urls":[{"url":"https:\/\/t.co\/7ZLfwPwPwv","expanded_url":"https:\/\/www.albertainstitute.ca\/reject_the_emergencies_war_measures_act?recruiter_id=398977","display_url":"albertainstitute.ca\/reject_the_eme\u2026","indices":[92,115]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362577342124728321\/0nfUKD2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362577342124728321\/0nfUKD2K_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":117700573,"id_str":"117700573","name":"Suraiya - Kapoor","screen_name":"suraiyakapoor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":292,"listed_count":1,"created_at":"Fri - Feb 26 09:52:51 +0000 2010","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Sep 23 20:46:47 +0000 2021","id":1441142019204681731,"id_str":"1441142019204681731","text":"RT - @priyankac19: Just saw the most horrific& depressing video from Assam. - We are becoming a blood thirsty society: the cameraman,cops&treat\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"priyankac19","name":"Priyanka - Chaturvedi\ud83c\uddee\ud83c\uddf3","id":19760270,"id_str":"19760270","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 23 15:18:20 +0000 2021","id":1441059365545521153,"id_str":"1441059365545521153","text":"Just - saw the most horrific& depressing video from Assam. We are becoming a - blood thirsty society: the cameraman,cop\u2026 https:\/\/t.co\/RgVbLFnT5s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RgVbLFnT5s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1441059365545521153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1616,"favorite_count":7548,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1616,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":732018505,"id_str":"732018505","name":"lauren - cierpial","screen_name":"laurencierpial","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":247,"listed_count":0,"created_at":"Thu - Aug 02 03:00:48 +0000 2012","favourites_count":206,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":194,"lang":null,"status":{"created_at":"Fri - Feb 12 15:23:19 +0000 2021","id":1360248122165895170,"id_str":"1360248122165895170","text":"RT - @ConcedingTrump: #ConvictHim is trending #3 in America. This is dangerous, - possibly even illegal! https:\/\/t.co\/Hf28avHLVf","truncated":false,"entities":{"hashtags":[{"text":"ConvictHim","indices":[20,31]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hf28avHLVf","expanded_url":"https:\/\/twitter.com\/ReallyAmerican1\/status\/1360031343107743747","display_url":"twitter.com\/ReallyAmerican\u2026","indices":[101,124]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 12 01:15:13 +0000 2021","id":1360034691932323842,"id_str":"1360034691932323842","text":"#ConvictHim - is trending #3 in America. This is dangerous, possibly even illegal! https:\/\/t.co\/Hf28avHLVf","truncated":false,"entities":{"hashtags":[{"text":"ConvictHim","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hf28avHLVf","expanded_url":"https:\/\/twitter.com\/ReallyAmerican1\/status\/1360031343107743747","display_url":"twitter.com\/ReallyAmerican\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1360031343107743747,"quoted_status_id_str":"1360031343107743747","retweet_count":750,"favorite_count":1146,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1360031343107743747,"quoted_status_id_str":"1360031343107743747","retweet_count":750,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230533572664139776,"id_str":"1230533572664139776","name":"Cosmic - Enigma Explorer \ud83c\uddfa\ud83c\udde6","screen_name":"EnigmaCosmic","location":"","description":"Always - searching for answers! \"Knowledge is an unending adventure at the edge of - uncertainty\" - Jacob Bronowski, Scientist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":5003,"listed_count":0,"created_at":"Thu - Feb 20 16:44:14 +0000 2020","favourites_count":26376,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18029,"lang":null,"status":{"created_at":"Sat - Mar 26 02:13:43 +0000 2022","id":1507541273791631363,"id_str":"1507541273791631363","text":"RT - @RadioFreeTom: All caps justified in this case","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:47:36 +0000 2022","id":1507519604955955210,"id_str":"1507519604955955210","text":"All - caps justified in this case https:\/\/t.co\/QtPFtUVB0H","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QtPFtUVB0H","expanded_url":"https:\/\/twitter.com\/SRuhle\/status\/1507220828861214760","display_url":"twitter.com\/SRuhle\/status\/\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507220828861214760,"quoted_status_id_str":"1507220828861214760","retweet_count":851,"favorite_count":5100,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507220828861214760,"quoted_status_id_str":"1507220828861214760","retweet_count":851,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230533742634192897\/LxdyhfZO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230533742634192897\/LxdyhfZO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":59275404,"id_str":"59275404","name":"rob - metko","screen_name":"robmetko","location":" Canada","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":277,"listed_count":0,"created_at":"Wed - Jul 22 22:42:15 +0000 2009","favourites_count":172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340862421930561536\/0YQciwyT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340862421930561536\/0YQciwyT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1272984387781623808,"id_str":"1272984387781623808","name":"killacammi - \ud83c\udf0a","screen_name":"killacammi","location":"","description":"millennial - \u270c\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":617,"listed_count":0,"created_at":"Tue - Jun 16 20:08:31 +0000 2020","favourites_count":23847,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":951,"lang":null,"status":{"created_at":"Sat - Nov 13 01:00:42 +0000 2021","id":1459325315591856135,"id_str":"1459325315591856135","text":"RT - @brian2grimey: we really turned \u201c\ud83d\udc80\u201d and \u201c\ud83d\ude2d\u201d - into laughing emojis.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brian2grimey","name":"Bri\ud835\ude70n\ud83c\udf47","id":1276666154216353793,"id_str":"1276666154216353793","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 12 17:41:50 +0000 2021","id":1459214868947607553,"id_str":"1459214868947607553","text":"we - really turned \u201c\ud83d\udc80\u201d and \u201c\ud83d\ude2d\u201d into laughing - emojis.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33934,"favorite_count":234815,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":33934,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272984626848505864\/N285AVVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272984626848505864\/N285AVVB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90887600,"id_str":"90887600","name":"shirley - j.wagle","screen_name":"siddhipeople","location":"Indianapolis","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":185,"friends_count":3109,"listed_count":1,"created_at":"Wed - Nov 18 15:04:57 +0000 2009","favourites_count":72461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5508,"lang":null,"status":{"created_at":"Sat - Mar 26 02:28:40 +0000 2022","id":1507545035759394826,"id_str":"1507545035759394826","text":"RT - @rinanpakkala: How did the Russians ever think these people could be conquered, - my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rinanpakkala","name":"Rina","id":826477293472251904,"id_str":"826477293472251904","indices":[3,16]}],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904"}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904","video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 01:07:31 +0000 2022","id":1506799839509725196,"id_str":"1506799839509725196","text":"How - did the Russians ever think these people could be conquered, my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30519,"favorite_count":151738,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30519,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205730531\/DSC02630_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205730531\/DSC02630_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90887600\/1430453928","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":884887394176032768,"id_str":"884887394176032768","name":"savanna - mesch","screen_name":"savannamesch","location":"Los Angeles, CA","description":"writer - in Los Angeles \u2728 formerly: @uscannenberg @uscviterbi @sbindynews USC - grad \ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93 \ud83d\udc9b\u2764\ufe0f personal - account, personal views","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":800,"listed_count":4,"created_at":"Tue - Jul 11 21:29:29 +0000 2017","favourites_count":7798,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":978,"lang":null,"status":{"created_at":"Thu - Mar 24 23:34:34 +0000 2022","id":1507138834336608287,"id_str":"1507138834336608287","text":"@HuffPost - Not reading the replies is \u2728self care \u2728","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HuffPost","name":"HuffPost","id":14511951,"id_str":"14511951","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506672186819457025,"in_reply_to_status_id_str":"1506672186819457025","in_reply_to_user_id":14511951,"in_reply_to_user_id_str":"14511951","in_reply_to_screen_name":"HuffPost","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452013155584909312\/btssM87M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452013155584909312\/btssM87M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/884887394176032768\/1639557437","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1194142233232101376,"id_str":"1194142233232101376","name":"\u26a0\ufe0f\ud83c\udfdd^^**Lusizooh_\ud83d\ude0b^^**\u26a0\ufe0f","screen_name":"lusizooh","location":"Pietermaritzburg","description":"Candidates - Graduate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":331,"friends_count":2619,"listed_count":0,"created_at":"Tue - Nov 12 06:38:16 +0000 2019","favourites_count":4640,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3266,"lang":null,"status":{"created_at":"Sat - Mar 26 09:00:17 +0000 2022","id":1507643592185110528,"id_str":"1507643592185110528","text":"RT - @ProjectLincoln: https:\/\/t.co\/HqTDvkvl5t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[],"media":[{"id":1507454800224522273,"id_str":"1507454800224522273","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","url":"https:\/\/t.co\/HqTDvkvl5t","display_url":"pic.twitter.com\/HqTDvkvl5t","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507454802409754669\/photo\/1","type":"photo","sizes":{"medium":{"w":780,"h":603,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":526,"resize":"fit"},"large":{"w":780,"h":603,"resize":"fit"}},"source_status_id":1507454802409754669,"source_status_id_str":"1507454802409754669","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1507454800224522273,"id_str":"1507454800224522273","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","url":"https:\/\/t.co\/HqTDvkvl5t","display_url":"pic.twitter.com\/HqTDvkvl5t","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507454802409754669\/photo\/1","type":"photo","sizes":{"medium":{"w":780,"h":603,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":526,"resize":"fit"},"large":{"w":780,"h":603,"resize":"fit"}},"source_status_id":1507454802409754669,"source_status_id_str":"1507454802409754669","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:30:06 +0000 2022","id":1507454802409754669,"id_str":"1507454802409754669","text":"https:\/\/t.co\/HqTDvkvl5t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507454800224522273,"id_str":"1507454800224522273","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","url":"https:\/\/t.co\/HqTDvkvl5t","display_url":"pic.twitter.com\/HqTDvkvl5t","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507454802409754669\/photo\/1","type":"photo","sizes":{"medium":{"w":780,"h":603,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":526,"resize":"fit"},"large":{"w":780,"h":603,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507454800224522273,"id_str":"1507454800224522273","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuOJ2pXECEUVvV.jpg","url":"https:\/\/t.co\/HqTDvkvl5t","display_url":"pic.twitter.com\/HqTDvkvl5t","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507454802409754669\/photo\/1","type":"photo","sizes":{"medium":{"w":780,"h":603,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":526,"resize":"fit"},"large":{"w":780,"h":603,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3031,"favorite_count":9784,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":3031,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415096493363585025\/OOOuOykW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415096493363585025\/OOOuOykW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194142233232101376\/1628820965","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883880888806907904,"id_str":"883880888806907904","name":"Mike - Maloni","screen_name":"MikeMaloni30","location":"Massachusetts, USA","description":"Writer, - photographer, quiet guy. People liker, New England fan, from foliage to sports! - Arts & Culture, Follower of Jesus. Likes women.","url":"https:\/\/t.co\/ujjm7TeOkm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ujjm7TeOkm","expanded_url":"http:\/\/www.sbpra.com\/MichaelJMaloni","display_url":"sbpra.com\/MichaelJMaloni","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":2155,"listed_count":2,"created_at":"Sun - Jul 09 02:50:00 +0000 2017","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":688,"lang":null,"status":{"created_at":"Sat - Feb 26 05:07:54 +0000 2022","id":1497438249006125056,"id_str":"1497438249006125056","text":"Defenseman: - A Hockey Player\u2019s Story by Michael J. Maloni A great story about the - relationship between two brothers\u2026 https:\/\/t.co\/PUOVoCWMJs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PUOVoCWMJs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497438249006125056","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1966777028,"id_str":"1966777028","name":"Susan - Leavey","screen_name":"leaveyz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":289,"listed_count":0,"created_at":"Thu - Oct 17 12:49:57 +0000 2013","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Jan 04 02:18:49 +0000 2019","id":1081012040842514432,"id_str":"1081012040842514432","text":"Alexandra","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"no"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":925715587,"id_str":"925715587","name":"Mailyn","screen_name":"mailynf51","location":"Miami, - FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":2351,"listed_count":4,"created_at":"Sun - Nov 04 16:55:12 +0000 2012","favourites_count":1163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":316,"lang":null,"status":{"created_at":"Sat - Mar 19 05:20:11 +0000 2022","id":1505051484324614148,"id_str":"1505051484324614148","text":"RT - @prchovanec: A lot of people who say they don\u2019t want a unipolar world - don\u2019t seem to either remember or like what a multipolar world actu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"prchovanec","name":"Patrick - Chovanec","id":64657863,"id_str":"64657863","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 05:18:50 +0000 2022","id":1505051144879587328,"id_str":"1505051144879587328","text":"A - lot of people who say they don\u2019t want a unipolar world don\u2019t seem - to either remember or like what a multipolar world actually looks like.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":94,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2806494538\/28a87abcf8cf23147ecf683b1d8d3692_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2806494538\/28a87abcf8cf23147ecf683b1d8d3692_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925715587\/1395197545","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1210167561305894915,"id_str":"1210167561305894915","name":"bob - johnson","screen_name":"bobjohn83869058","location":"Toronto CA","description":"Divorced - dad, retired. Into skiing and fishing. Freezing up here in Canada! ex-prop - trader. Focus on bio and option plays. Liverpool fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":161,"friends_count":2783,"listed_count":0,"created_at":"Thu - Dec 26 11:57:10 +0000 2019","favourites_count":15919,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4003,"lang":null,"status":{"created_at":"Fri - Mar 25 22:03:30 +0000 2022","id":1507478308216262660,"id_str":"1507478308216262660","text":"@Maximus_Holla - It was Oct 15,2021! Approval could be any moment.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Maximus_Holla","name":"HODOR","id":1180701690,"id_str":"1180701690","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506715252037140480,"in_reply_to_status_id_str":"1506715252037140480","in_reply_to_user_id":1180701690,"in_reply_to_user_id_str":"1180701690","in_reply_to_screen_name":"Maximus_Holla","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858366432,"id_str":"858366432","name":"BPorter","screen_name":"ThePorter7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":832,"listed_count":3,"created_at":"Tue - Oct 02 17:03:51 +0000 2012","favourites_count":11196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":337,"lang":null,"status":{"created_at":"Mon - Feb 28 21:01:12 +0000 2022","id":1498402931443322882,"id_str":"1498402931443322882","text":"@seattletimes - @D5Juarez @bruceharrell @kcexec @SeattleCouncil I don\u2019t think we rate - as a third world country but\u2026 https:\/\/t.co\/CvUUQXqTZK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"seattletimes","name":"The - Seattle Times","id":14352556,"id_str":"14352556","indices":[0,13]},{"screen_name":"D5Juarez","name":"Seattle - City Council President Debora Juarez","id":4729348790,"id_str":"4729348790","indices":[14,23]},{"screen_name":"bruceharrell","name":"Bruce - A. Harrell","id":43047693,"id_str":"43047693","indices":[24,37]},{"screen_name":"kcexec","name":"Dow - Constantine","id":50718079,"id_str":"50718079","indices":[38,45]},{"screen_name":"SeattleCouncil","name":"Seattle - City Council","id":58544943,"id_str":"58544943","indices":[46,61]}],"urls":[{"url":"https:\/\/t.co\/CvUUQXqTZK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498402931443322882","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14352556,"in_reply_to_user_id_str":"14352556","in_reply_to_screen_name":"seattletimes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498133142917447684,"quoted_status_id_str":"1498133142917447684","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429218061173788674\/3CLStnnX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429218061173788674\/3CLStnnX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858366432\/1495668034","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34395098,"id_str":"34395098","name":"Isabel - Marques","screen_name":"isabelle17a","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":354,"friends_count":912,"listed_count":0,"created_at":"Wed - Apr 22 20:56:00 +0000 2009","favourites_count":12350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":661,"lang":null,"status":{"created_at":"Sat - Mar 26 01:24:56 +0000 2022","id":1507528998804410373,"id_str":"1507528998804410373","text":"RT - @freifallspoile1: @KD84921011 @AlexandruC4 https:\/\/t.co\/atcsdIBWGJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"freifallspoile1","name":"\ud83d\udd0b - freifallspoiler \ud83d\udd0b","id":1009494344645136384,"id_str":"1009494344645136384","indices":[3,19]},{"screen_name":"KD84921011","name":"KD","id":1232091282811453440,"id_str":"1232091282811453440","indices":[21,32]},{"screen_name":"AlexandruC4","name":"AlexandruC4","id":2397890569,"id_str":"2397890569","indices":[33,45]}],"urls":[],"media":[{"id":1507513920722018308,"id_str":"1507513920722018308","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","url":"https:\/\/t.co\/atcsdIBWGJ","display_url":"pic.twitter.com\/atcsdIBWGJ","expanded_url":"https:\/\/twitter.com\/freifallspoile1\/status\/1507513929823571969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":543,"resize":"fit"},"medium":{"w":750,"h":543,"resize":"fit"},"small":{"w":680,"h":492,"resize":"fit"}},"source_status_id":1507513929823571969,"source_status_id_str":"1507513929823571969","source_user_id":1009494344645136384,"source_user_id_str":"1009494344645136384"}]},"extended_entities":{"media":[{"id":1507513920722018308,"id_str":"1507513920722018308","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","url":"https:\/\/t.co\/atcsdIBWGJ","display_url":"pic.twitter.com\/atcsdIBWGJ","expanded_url":"https:\/\/twitter.com\/freifallspoile1\/status\/1507513929823571969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":543,"resize":"fit"},"medium":{"w":750,"h":543,"resize":"fit"},"small":{"w":680,"h":492,"resize":"fit"}},"source_status_id":1507513929823571969,"source_status_id_str":"1507513929823571969","source_user_id":1009494344645136384,"source_user_id_str":"1009494344645136384"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:25:03 +0000 2022","id":1507513929823571969,"id_str":"1507513929823571969","text":"@KD84921011 - @AlexandruC4 https:\/\/t.co\/atcsdIBWGJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KD84921011","name":"KD","id":1232091282811453440,"id_str":"1232091282811453440","indices":[0,11]},{"screen_name":"AlexandruC4","name":"AlexandruC4","id":2397890569,"id_str":"2397890569","indices":[12,24]}],"urls":[],"media":[{"id":1507513920722018308,"id_str":"1507513920722018308","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","url":"https:\/\/t.co\/atcsdIBWGJ","display_url":"pic.twitter.com\/atcsdIBWGJ","expanded_url":"https:\/\/twitter.com\/freifallspoile1\/status\/1507513929823571969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":543,"resize":"fit"},"medium":{"w":750,"h":543,"resize":"fit"},"small":{"w":680,"h":492,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507513920722018308,"id_str":"1507513920722018308","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvD7HqXoAQke6Z.jpg","url":"https:\/\/t.co\/atcsdIBWGJ","display_url":"pic.twitter.com\/atcsdIBWGJ","expanded_url":"https:\/\/twitter.com\/freifallspoile1\/status\/1507513929823571969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":543,"resize":"fit"},"medium":{"w":750,"h":543,"resize":"fit"},"small":{"w":680,"h":492,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507485023024271371,"in_reply_to_status_id_str":"1507485023024271371","in_reply_to_user_id":1232091282811453440,"in_reply_to_user_id_str":"1232091282811453440","in_reply_to_screen_name":"KD84921011","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":188,"favorite_count":1998,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":188,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094915238418362369\/r3D397OZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094915238418362369\/r3D397OZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47796040,"id_str":"47796040","name":"Quilt","screen_name":"nhfamily","location":"New - Hampshire, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":801,"listed_count":0,"created_at":"Wed - Jun 17 00:50:36 +0000 2009","favourites_count":23635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7103,"lang":null,"status":{"created_at":"Sat - Mar 26 00:48:29 +0000 2022","id":1507519824922042376,"id_str":"1507519824922042376","text":"RT - @CREWcrew: Despite Donald Trump\u2019s staggering record of likely criminal - misconduct as president and candidate for that office, he has not\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CREWcrew","name":"Citizens - for Ethics","id":22187085,"id_str":"22187085","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:00:23 +0000 2022","id":1507507722840948741,"id_str":"1507507722840948741","text":"Despite - Donald Trump\u2019s staggering record of likely criminal misconduct as president - and candidate for that office,\u2026 https:\/\/t.co\/jiEwedicWT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jiEwedicWT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507507722840948741","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/gainapp.com\" rel=\"nofollow\"\u003eGain Platform\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":565,"favorite_count":1334,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":565,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288845812844367880\/Nz1fv5Jb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288845812844367880\/Nz1fv5Jb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47796040\/1498260089","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":943972243293564928,"id_str":"943972243293564928","name":"Bonnie - Kaster","screen_name":"bonnie_kaster","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":95,"listed_count":0,"created_at":"Thu - Dec 21 22:31:35 +0000 2017","favourites_count":46232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20981,"lang":null,"status":{"created_at":"Sat - Mar 26 01:36:49 +0000 2022","id":1507531990505078793,"id_str":"1507531990505078793","text":"RT - @SimonWDC: It will be very hard to write an accurate history of early 21st - century America without a long discussion of how the tossing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SimonWDC","name":"Simon - Rosenberg","id":37738073,"id_str":"37738073","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:00:51 +0000 2022","id":1507281346372288524,"id_str":"1507281346372288524","text":"It - will be very hard to write an accurate history of early 21st century America - without a long discussion of how th\u2026 https:\/\/t.co\/OesrXLBbuM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OesrXLBbuM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507281346372288524","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":2669,"favorite_count":7566,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":2669,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2317323594,"id_str":"2317323594","name":"Jey - 23","screen_name":"JeySan1969","location":"","description":"Sports fan, love - fishing and food!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":160,"listed_count":0,"created_at":"Wed - Jan 29 15:22:21 +0000 2014","favourites_count":1397,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292,"lang":null,"status":{"created_at":"Wed - Mar 02 19:39:57 +0000 2022","id":1499107258839490567,"id_str":"1499107258839490567","text":"@HeyNav135 - @flowinsd @MitziForPelosi @taradublinrocks @JewishResister Chimps are smarter - than those two","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HeyNav135","name":"Hey - Nav - Major, USAF, Retired","id":872871203836379136,"id_str":"872871203836379136","indices":[0,10]},{"screen_name":"flowinsd","name":"F - L O W er C H I L D","id":57196223,"id_str":"57196223","indices":[11,20]},{"screen_name":"MitziForPelosi","name":"Leetesgirl2\ud83c\uddfa\ud83c\uddf8","id":1053628074145865729,"id_str":"1053628074145865729","indices":[21,36]},{"screen_name":"taradublinrocks","name":"Tara - Dublin \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":51241418,"id_str":"51241418","indices":[37,53]},{"screen_name":"JewishResister","name":"The - Jewish Ginger Resister","id":237045706,"id_str":"237045706","indices":[54,69]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499026051749625856,"in_reply_to_status_id_str":"1499026051749625856","in_reply_to_user_id":872871203836379136,"in_reply_to_user_id_str":"872871203836379136","in_reply_to_screen_name":"HeyNav135","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428554538354610178\/iltqIQ7w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428554538354610178\/iltqIQ7w_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":102795308,"id_str":"102795308","name":"abs - \ud83e\udd8b","screen_name":"abbiiieeee","location":"seattle, wa\/rgv, tx","description":"rose-colored - girl","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":725,"friends_count":700,"listed_count":1,"created_at":"Thu - Jan 07 21:25:55 +0000 2010","favourites_count":32028,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1536,"lang":null,"status":{"created_at":"Fri - Mar 25 01:22:03 +0000 2022","id":1507165886859280396,"id_str":"1507165886859280396","text":"@lacroix_boix - i got time \ud83d\udcde","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lacroix_boix","name":"Alex - \ud83c\udf38","id":1225351460700864512,"id_str":"1225351460700864512","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506987184603107329,"in_reply_to_status_id_str":"1506987184603107329","in_reply_to_user_id":1225351460700864512,"in_reply_to_user_id_str":"1225351460700864512","in_reply_to_screen_name":"lacroix_boix","geo":null,"coordinates":null,"place":{"id":"300bcc6e23a88361","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/300bcc6e23a88361.json","place_type":"city","name":"Seattle","full_name":"Seattle, - WA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.436232,47.4953154],[-122.2249728,47.4953154],[-122.2249728,47.734319],[-122.436232,47.734319]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380991927651209216\/9BI4KsNL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380991927651209216\/9BI4KsNL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102795308\/1644041687","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2824732022,"id_str":"2824732022","name":"Ryan - Sedgwick","screen_name":"Sledghamma","location":"Lehi, UT","description":"Father, - Husband, Utah Man and Yankee Fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":627,"listed_count":1,"created_at":"Sun - Sep 21 17:58:22 +0000 2014","favourites_count":2744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":257,"lang":null,"status":{"created_at":"Wed - Mar 23 13:11:05 +0000 2022","id":1506619543019397120,"id_str":"1506619543019397120","text":"RT - @brit_covey2: Wanted to pay tribute to a few of my so-called \u201cundersized\u201d - heroes who paved the way \ud83c\udfc8 thank you for inspiring me and many\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brit_covey2","name":"Britain - Covey","id":1698419239,"id_str":"1698419239","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 01:27:21 +0000 2022","id":1506442444795129869,"id_str":"1506442444795129869","text":"Wanted - to pay tribute to a few of my so-called \u201cundersized\u201d heroes who - paved the way \ud83c\udfc8 thank you for inspiring me a\u2026 https:\/\/t.co\/GtBnhUE72m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GtBnhUE72m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506442444795129869","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121,"favorite_count":1526,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":121,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/684422019815886849\/8uZOpeQJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/684422019815886849\/8uZOpeQJ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1026502687855128581,"id_str":"1026502687855128581","name":"trashman","screen_name":"mistakia","location":"Around","description":"I - like building things","url":"https:\/\/t.co\/Lg9kjsbiFt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Lg9kjsbiFt","expanded_url":"http:\/\/github.com\/mistakia","display_url":"github.com\/mistakia","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":55,"listed_count":1,"created_at":"Mon - Aug 06 16:18:07 +0000 2018","favourites_count":7110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":218,"lang":null,"status":{"created_at":"Fri - Mar 25 17:04:38 +0000 2022","id":1507403092509306884,"id_str":"1507403092509306884","text":"@buchmanster - Context?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"buchmanster","name":"Ethan - Buchman","id":64954849,"id_str":"64954849","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507372587751550980,"in_reply_to_status_id_str":"1507372587751550980","in_reply_to_user_id":64954849,"in_reply_to_user_id_str":"64954849","in_reply_to_screen_name":"buchmanster","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366632025113903107\/eXLw1TUh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366632025113903107\/eXLw1TUh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305925063825174534,"id_str":"1305925063825174534","name":"Kristin","screen_name":"Kristin59183478","location":"","description":"Person - with morals and values who has empathy for others. Weird, huh?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":230,"listed_count":0,"created_at":"Tue - Sep 15 17:43:06 +0000 2020","favourites_count":1464,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Fri - Jan 08 09:09:43 +0000 2021","id":1347470530421551105,"id_str":"1347470530421551105","text":"Throw - My Arms Around The World - LeAnn Rimes (FOX NYE 2021) https:\/\/t.co\/tnb7Y00ZOi - via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[88,96]}],"urls":[{"url":"https:\/\/t.co\/tnb7Y00ZOi","expanded_url":"https:\/\/youtu.be\/kDcTQz6bZhE","display_url":"youtu.be\/kDcTQz6bZhE","indices":[60,83]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314603447480512514\/L73ztqIb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314603447480512514\/L73ztqIb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305925063825174534\/1602260861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":999330271,"id_str":"999330271","name":"rabi - \ud83d\udd25","screen_name":"RabiRabisharma","location":"Nepal","description":"Location: - \ud83c\uddf3\ud83c\uddf5 blood type: #coffee; Profession: #jack_of_all religion - : #\u0928\u093e\u0938\u094d\u0924\u093f\u0915","url":"https:\/\/t.co\/oqGtSKWz1k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oqGtSKWz1k","expanded_url":"https:\/\/www.linkedin.com\/in\/rabisharma\/","display_url":"linkedin.com\/in\/rabisharma\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3625,"friends_count":4977,"listed_count":201,"created_at":"Sun - Dec 09 13:50:40 +0000 2012","favourites_count":83031,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15289,"lang":null,"status":{"created_at":"Fri - Mar 25 10:00:03 +0000 2022","id":1507296245924397062,"id_str":"1507296245924397062","text":"https:\/\/t.co\/EftqLE3moG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EftqLE3moG","expanded_url":"https:\/\/www.medicalnewstoday.com\/articles\/314376","display_url":"medicalnewstoday.com\/articles\/314376","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502232944177737731\/lVNy3nx5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502232944177737731\/lVNy3nx5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/999330271\/1622076797","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858519088800215040,"id_str":"858519088800215040","name":"ancient - gayliens","screen_name":"cyan_adams","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":1292,"listed_count":0,"created_at":"Sun - Apr 30 03:11:16 +0000 2017","favourites_count":119323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6174,"lang":null,"status":{"created_at":"Fri - Mar 25 21:40:43 +0000 2022","id":1507472573994471432,"id_str":"1507472573994471432","text":"RT - @majordouzie: dressing emo in 2022 is the zoomer equivalent of rockabilly","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"majordouzie","name":"christina","id":1420154401201790981,"id_str":"1420154401201790981","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:29:43 +0000 2022","id":1507107417632522245,"id_str":"1507107417632522245","text":"dressing - emo in 2022 is the zoomer equivalent of rockabilly","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1606,"favorite_count":22946,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1606,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1363700147230633988\/kxWHb9Hf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1363700147230633988\/kxWHb9Hf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858519088800215040\/1613966516","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":13387482,"id_str":"13387482","name":"TaraMc.","screen_name":"tmcrae04","location":"MA, - USA","description":"sports \/\/ shoes \/\/ travellife","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":515,"listed_count":5,"created_at":"Tue - Feb 12 13:14:37 +0000 2008","favourites_count":1907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":350,"lang":null,"status":{"created_at":"Fri - Feb 04 00:05:07 +0000 2022","id":1489389517215838215,"id_str":"1489389517215838215","text":"RT - @RonnieFieg: 8th St. Season 3. https:\/\/t.co\/IrkWdHYZKz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonnieFieg","name":"Ronnie - Fieg","id":28990676,"id_str":"28990676","indices":[3,14]}],"urls":[],"media":[{"id":1488942529466843143,"id_str":"1488942529466843143","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","url":"https:\/\/t.co\/IrkWdHYZKz","display_url":"pic.twitter.com\/IrkWdHYZKz","expanded_url":"https:\/\/twitter.com\/RonnieFieg\/status\/1488942532088184837\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1488942532088184837,"source_status_id_str":"1488942532088184837","source_user_id":28990676,"source_user_id_str":"28990676"}]},"extended_entities":{"media":[{"id":1488942529466843143,"id_str":"1488942529466843143","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","url":"https:\/\/t.co\/IrkWdHYZKz","display_url":"pic.twitter.com\/IrkWdHYZKz","expanded_url":"https:\/\/twitter.com\/RonnieFieg\/status\/1488942532088184837\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1488942532088184837,"source_status_id_str":"1488942532088184837","source_user_id":28990676,"source_user_id_str":"28990676"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 02 18:28:57 +0000 2022","id":1488942532088184837,"id_str":"1488942532088184837","text":"8th - St. Season 3. https:\/\/t.co\/IrkWdHYZKz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1488942529466843143,"id_str":"1488942529466843143","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","url":"https:\/\/t.co\/IrkWdHYZKz","display_url":"pic.twitter.com\/IrkWdHYZKz","expanded_url":"https:\/\/twitter.com\/RonnieFieg\/status\/1488942532088184837\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1488942529466843143,"id_str":"1488942529466843143","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKnJV3_XwAcS4_J.jpg","url":"https:\/\/t.co\/IrkWdHYZKz","display_url":"pic.twitter.com\/IrkWdHYZKz","expanded_url":"https:\/\/twitter.com\/RonnieFieg\/status\/1488942532088184837\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":1160,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":63,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506419081901223936\/-ZnEuVUe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506419081901223936\/-ZnEuVUe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13387482\/1585011785","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":986451200,"id_str":"986451200","name":"sarah","screen_name":"saucysarahcha","location":"Cairo, - Egypt","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1386,"friends_count":136,"listed_count":7,"created_at":"Mon - Dec 03 11:34:31 +0000 2012","favourites_count":1562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4919,"lang":null,"status":{"created_at":"Tue - Mar 22 19:57:46 +0000 2022","id":1506359502441955330,"id_str":"1506359502441955330","text":"RT - @The_Cyrenian: 19 years ago today, the U.S. Government illegally invaded #Iraq, - and killed over a million Iraqis - 500,000 of who were c\u2026","truncated":false,"entities":{"hashtags":[{"text":"Iraq","indices":[76,81]}],"symbols":[],"user_mentions":[{"screen_name":"The_Cyrenian","name":"Hannibal - Khoury \u2790","id":860299547968364545,"id_str":"860299547968364545","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 15:35:53 +0000 2022","id":1505568819716141057,"id_str":"1505568819716141057","text":"19 - years ago today, the U.S. Government illegally invaded #Iraq, and killed over - a million Iraqis - 500,000 of who\u2026 https:\/\/t.co\/ChFWj7qoa3","truncated":true,"entities":{"hashtags":[{"text":"Iraq","indices":[58,63]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ChFWj7qoa3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505568819716141057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10287,"favorite_count":18361,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":10287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1425247608256225287\/QYShBOvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1425247608256225287\/QYShBOvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/986451200\/1565501674","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145305692,"id_str":"145305692","name":"Michael - Koslap","screen_name":"MikeKoslap","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":263,"friends_count":250,"listed_count":0,"created_at":"Tue - May 18 16:50:11 +0000 2010","favourites_count":17152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/959177105148846081\/rp4FOyB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959177105148846081\/rp4FOyB8_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":702893171425075201,"id_str":"702893171425075201","name":"Lou","screen_name":"Lou09997030","location":"Philadelphia, - PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":551,"listed_count":0,"created_at":"Thu - Feb 25 16:29:26 +0000 2016","favourites_count":16328,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Sat - Mar 27 00:43:23 +0000 2021","id":1375609357254148107,"id_str":"1375609357254148107","text":"@morethanmySLE - \ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"morethanmySLE","name":"Peter - Morley","id":812361923304034304,"id_str":"812361923304034304","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1375483501068353538,"in_reply_to_status_id_str":"1375483501068353538","in_reply_to_user_id":812361923304034304,"in_reply_to_user_id_str":"812361923304034304","in_reply_to_screen_name":"morethanmySLE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/726523002150608897\/Kyreh-f-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/726523002150608897\/Kyreh-f-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702893171425075201\/1462051496","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297314970804391937,"id_str":"1297314970804391937","name":"Julie","screen_name":"Julie98614170","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":1790,"listed_count":0,"created_at":"Sat - Aug 22 23:30:22 +0000 2020","favourites_count":1441,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2618,"lang":null,"status":{"created_at":"Sat - Aug 14 10:30:24 +0000 2021","id":1426491387416043521,"id_str":"1426491387416043521","text":"RT - @TraceyOMahony81: https:\/\/t.co\/TmPrIyCYRI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TraceyOMahony81","name":"Tracey - O''Mahony","id":1149770531459256321,"id_str":"1149770531459256321","indices":[3,19]}],"urls":[],"media":[{"id":1426488176982609921,"id_str":"1426488176982609921","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","url":"https:\/\/t.co\/TmPrIyCYRI","display_url":"pic.twitter.com\/TmPrIyCYRI","expanded_url":"https:\/\/twitter.com\/TraceyOMahony81\/status\/1426488185790545923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":466,"h":330,"resize":"fit"},"large":{"w":466,"h":330,"resize":"fit"},"medium":{"w":466,"h":330,"resize":"fit"}},"source_status_id":1426488185790545923,"source_status_id_str":"1426488185790545923","source_user_id":1149770531459256321,"source_user_id_str":"1149770531459256321"}]},"extended_entities":{"media":[{"id":1426488176982609921,"id_str":"1426488176982609921","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","url":"https:\/\/t.co\/TmPrIyCYRI","display_url":"pic.twitter.com\/TmPrIyCYRI","expanded_url":"https:\/\/twitter.com\/TraceyOMahony81\/status\/1426488185790545923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":466,"h":330,"resize":"fit"},"large":{"w":466,"h":330,"resize":"fit"},"medium":{"w":466,"h":330,"resize":"fit"}},"source_status_id":1426488185790545923,"source_status_id_str":"1426488185790545923","source_user_id":1149770531459256321,"source_user_id_str":"1149770531459256321"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 14 10:17:41 +0000 2021","id":1426488185790545923,"id_str":"1426488185790545923","text":"https:\/\/t.co\/TmPrIyCYRI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1426488176982609921,"id_str":"1426488176982609921","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","url":"https:\/\/t.co\/TmPrIyCYRI","display_url":"pic.twitter.com\/TmPrIyCYRI","expanded_url":"https:\/\/twitter.com\/TraceyOMahony81\/status\/1426488185790545923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":466,"h":330,"resize":"fit"},"large":{"w":466,"h":330,"resize":"fit"},"medium":{"w":466,"h":330,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1426488176982609921,"id_str":"1426488176982609921","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8vncGlX0AEACV2.jpg","url":"https:\/\/t.co\/TmPrIyCYRI","display_url":"pic.twitter.com\/TmPrIyCYRI","expanded_url":"https:\/\/twitter.com\/TraceyOMahony81\/status\/1426488185790545923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":466,"h":330,"resize":"fit"},"large":{"w":466,"h":330,"resize":"fit"},"medium":{"w":466,"h":330,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":129,"favorite_count":526,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":129,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2899953268,"id_str":"2899953268","name":"kavya","screen_name":"kavyanumburi","location":"","description":"mitten - #BlackLivesMatter | @sahilbhullar24","url":"https:\/\/t.co\/kEX6LVL0ky","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kEX6LVL0ky","expanded_url":"http:\/\/vsco.co\/kavyanumburi\/images\/1","display_url":"vsco.co\/kavyanumburi\/i\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":442,"friends_count":406,"listed_count":1,"created_at":"Sun - Nov 30 23:40:20 +0000 2014","favourites_count":31423,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3144,"lang":null,"status":{"created_at":"Thu - Mar 24 22:56:53 +0000 2022","id":1507129353829822466,"id_str":"1507129353829822466","text":"RT - @fibulaa: My mom doesn\u2019t think I have adhd bc it doesn\u2019t run in - the family https:\/\/t.co\/qIOOSSxyHp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fibulaa","name":"connor - Wood","id":1291247166598479872,"id_str":"1291247166598479872","indices":[3,11]}],"urls":[],"media":[{"id":1507088807065108480,"id_str":"1507088807065108480","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","url":"https:\/\/t.co\/qIOOSSxyHp","display_url":"pic.twitter.com\/qIOOSSxyHp","expanded_url":"https:\/\/twitter.com\/fibulaa\/status\/1507088811133583361\/photo\/1","type":"photo","sizes":{"medium":{"w":945,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1169,"h":1485,"resize":"fit"}},"source_status_id":1507088811133583361,"source_status_id_str":"1507088811133583361","source_user_id":1291247166598479872,"source_user_id_str":"1291247166598479872"}]},"extended_entities":{"media":[{"id":1507088807065108480,"id_str":"1507088807065108480","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","url":"https:\/\/t.co\/qIOOSSxyHp","display_url":"pic.twitter.com\/qIOOSSxyHp","expanded_url":"https:\/\/twitter.com\/fibulaa\/status\/1507088811133583361\/photo\/1","type":"photo","sizes":{"medium":{"w":945,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1169,"h":1485,"resize":"fit"}},"source_status_id":1507088811133583361,"source_status_id_str":"1507088811133583361","source_user_id":1291247166598479872,"source_user_id_str":"1291247166598479872"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:15:47 +0000 2022","id":1507088811133583361,"id_str":"1507088811133583361","text":"My - mom doesn\u2019t think I have adhd bc it doesn\u2019t run in the family https:\/\/t.co\/qIOOSSxyHp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507088807065108480,"id_str":"1507088807065108480","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","url":"https:\/\/t.co\/qIOOSSxyHp","display_url":"pic.twitter.com\/qIOOSSxyHp","expanded_url":"https:\/\/twitter.com\/fibulaa\/status\/1507088811133583361\/photo\/1","type":"photo","sizes":{"medium":{"w":945,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1169,"h":1485,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507088807065108480,"id_str":"1507088807065108480","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpBSP4VQAAwbdT.jpg","url":"https:\/\/t.co\/qIOOSSxyHp","display_url":"pic.twitter.com\/qIOOSSxyHp","expanded_url":"https:\/\/twitter.com\/fibulaa\/status\/1507088811133583361\/photo\/1","type":"photo","sizes":{"medium":{"w":945,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1169,"h":1485,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13954,"favorite_count":327978,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13954,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498477080383787008\/oqIRt6V7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498477080383787008\/oqIRt6V7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899953268\/1646099766","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":596202100,"id_str":"596202100","name":"Johnred","screen_name":"agagaone","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":219,"listed_count":0,"created_at":"Fri - Jun 01 06:50:58 +0000 2012","favourites_count":554,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Nov 15 10:19:17 +0000 2020","id":1327919092129361920,"id_str":"1327919092129361920","text":"RT - @EWTNVatican: Live from Saint Peter''s Basilica Join us for the Holy Mass - presided over by Pope Francis to mark the World Day of the Poor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EWTNVatican","name":"EWTN - Vatican","id":1005882189752557573,"id_str":"1005882189752557573","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 15 08:49:41 +0000 2020","id":1327896542569668608,"id_str":"1327896542569668608","text":"Live - from Saint Peter''s Basilica Join us for the Holy Mass presided over by Pope - Francis to mark the World Day of t\u2026 https:\/\/t.co\/JyQBmZCPNa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JyQBmZCPNa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1327896542569668608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":41,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228143772661272577\/K0m3AwNh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228143772661272577\/K0m3AwNh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4161516314,"id_str":"4161516314","name":"Sara - Norman","screen_name":"NormanSaraD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":3306,"listed_count":1,"created_at":"Sat - Nov 07 22:11:32 +0000 2015","favourites_count":3164,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3359,"lang":null,"status":{"created_at":"Fri - Mar 25 00:03:36 +0000 2022","id":1507146140986318855,"id_str":"1507146140986318855","text":"Just - posted a photo https:\/\/t.co\/65byc3I89E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/65byc3I89E","expanded_url":"https:\/\/www.instagram.com\/p\/CbgYkpwvOpY\/?utm_medium=twitter","display_url":"instagram.com\/p\/CbgYkpwvOpY\/\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/665321789233360896\/F-2nri9c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/665321789233360896\/F-2nri9c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4161516314\/1447695840","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1075159440666607616,"id_str":"1075159440666607616","name":"Jerry - Young","screen_name":"JerryYo08134090","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":319,"listed_count":1,"created_at":"Tue - Dec 18 22:42:40 +0000 2018","favourites_count":51915,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2895,"lang":null,"status":{"created_at":"Sat - Mar 26 02:03:45 +0000 2022","id":1507538766335983620,"id_str":"1507538766335983620","text":"@MrAndyNgo - Get well","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrAndyNgo","name":"Andy - Ng\u00f4 \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":2835451658,"id_str":"2835451658","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507374448525328388,"in_reply_to_status_id_str":"1507374448525328388","in_reply_to_user_id":2835451658,"in_reply_to_user_id_str":"2835451658","in_reply_to_screen_name":"MrAndyNgo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1075159760230526976\/-QHbDDN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075159760230526976\/-QHbDDN0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":106035940,"id_str":"106035940","name":"Marina - M","screen_name":"MarinaMmorales","location":"San Diego, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":690,"listed_count":0,"created_at":"Mon - Jan 18 08:36:53 +0000 2010","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127399252471185410\/f1CRr22b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127399252471185410\/f1CRr22b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106035940\/1557626543","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4424067076,"id_str":"4424067076","name":"Victoria - Gonzalez-Rivera, PhD","screen_name":"vcgonzalez2","location":"","description":"Ph.D. - in Latin American history. Author of Before the Revolution. Women\u2019s Rights - and Right-Wing Politics in Nicaragua (Penn State, 2011). SDSU prof. (she\/her)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":2832,"listed_count":5,"created_at":"Wed - Dec 09 06:52:57 +0000 2015","favourites_count":142,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Wed - Nov 24 09:43:34 +0000 2021","id":1463443166200152065,"id_str":"1463443166200152065","text":"RT - @LopezBunyasi: 6 tenure-track Ethnic Studies jobs at @SDSU:\n1 Africana Studies - (asst: Africa or Caribbean)\n1 American Indian Studies (as\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LopezBunyasi","name":"Tehama - Lopez Bunyasi","id":1163428085993213953,"id_str":"1163428085993213953","indices":[3,16]},{"screen_name":"SDSU","name":"San - Diego State University","id":16739786,"id_str":"16739786","indices":[56,61]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 17 22:32:47 +0000 2021","id":1461100030601961477,"id_str":"1461100030601961477","text":"6 - tenure-track Ethnic Studies jobs at @SDSU:\n1 Africana Studies (asst: Africa - or Caribbean)\n1 American Indian Studi\u2026 https:\/\/t.co\/xunk2zD8eS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SDSU","name":"San - Diego State University","id":16739786,"id_str":"16739786","indices":[38,43]}],"urls":[{"url":"https:\/\/t.co\/xunk2zD8eS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1461100030601961477","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":171,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":139,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270899075668250624\/29QwwnRz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270899075668250624\/29QwwnRz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4424067076\/1591841049","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29473865,"id_str":"29473865","name":"Katie - Marie","screen_name":"kamm_marie","location":"Des Moines, IA","description":"Iowa - native. Mama. Advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":830,"listed_count":0,"created_at":"Tue - Apr 07 15:46:06 +0000 2009","favourites_count":4465,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":295,"lang":null,"status":{"created_at":"Wed - Oct 27 20:15:23 +0000 2021","id":1453455303954026497,"id_str":"1453455303954026497","text":"RT - @liuba4congress: This was 2 wks postpartum, a few hrs before I spiked a 105 - fever & nearly fell unconscious home alone with 2 babies.\n\nI\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"liuba4congress","name":"Liuba - Grechen Shirley \ud83c\uddfa\ud83c\udde6","id":80370806,"id_str":"80370806","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 27 02:31:09 +0000 2021","id":1453187484519739392,"id_str":"1453187484519739392","text":"This - was 2 wks postpartum, a few hrs before I spiked a 105 fever & nearly fell - unconscious home alone with 2 babies\u2026 https:\/\/t.co\/jPse3ZP7GH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jPse3ZP7GH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1453187484519739392","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":470,"favorite_count":1796,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":470,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/127051921\/TwitterPic3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/127051921\/TwitterPic3_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298194224173797376,"id_str":"1298194224173797376","name":"Adelabu - Olumide -Olulogic","screen_name":"AdelabuOlumide1","location":"","description":"An - Economist, a Teacher\/Instructor, a great thinker, Writer and loyal Chelsea - Fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":379,"listed_count":0,"created_at":"Tue - Aug 25 09:44:24 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":436,"lang":null,"status":{"created_at":"Fri - Feb 11 23:37:18 +0000 2022","id":1492281621415968769,"id_str":"1492281621415968769","text":"@DavidOyedepoMin - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidOyedepoMin","name":"@davidoyedepomin","id":232428933,"id_str":"232428933","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1486996490748899331,"in_reply_to_status_id_str":"1486996490748899331","in_reply_to_user_id":232428933,"in_reply_to_user_id_str":"232428933","in_reply_to_screen_name":"DavidOyedepoMin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341781296377450501\/Abty5rXg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341781296377450501\/Abty5rXg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3523591409,"id_str":"3523591409","name":"Fernando - Sanz \ud83c\uddea\ud83c\uddf8","screen_name":"Fernando78Sanz","location":"Mallorca, - Spain","description":"UFC fan, photographer, father of three #WhiteLivesMatter - because #AllLivesMatter","url":"https:\/\/t.co\/mxynjO2utm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mxynjO2utm","expanded_url":"https:\/\/parler.com\/profile\/Sanzmoller\/posts","display_url":"parler.com\/profile\/Sanzmo\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":208,"listed_count":0,"created_at":"Wed - Sep 02 13:22:19 +0000 2015","favourites_count":7073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1231,"lang":null,"status":{"created_at":"Wed - May 12 17:31:13 +0000 2021","id":1392532831352524811,"id_str":"1392532831352524811","text":"@y_diestro - Qu\u00e9 capacidad tienes de sintetizar tanto sentimiento en tan pocas palabras, - el Cervantes del 2021.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"y_diestro","name":"\ud83c\uddea\ud83c\uddf8 - A Diestro... y Siniestra \ud83c\uddea\ud83c\uddf8","id":1174083665971818501,"id_str":"1174083665971818501","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1392531658297987072,"in_reply_to_status_id_str":"1392531658297987072","in_reply_to_user_id":1174083665971818501,"in_reply_to_user_id_str":"1174083665971818501","in_reply_to_screen_name":"y_diestro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327383548559548422\/Pl1l8KM1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327383548559548422\/Pl1l8KM1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3523591409\/1444090515","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":716692011668082688,"id_str":"716692011668082688","name":"nick","screen_name":"nicknapoli67","location":"New - Hampshire","description":"DemSoc. Musician. He\/him. Former @EdMarkey Fellow. - #GOCOUGS \ud83c\udf39\ud83c\udf5e","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":99,"friends_count":644,"listed_count":0,"created_at":"Sun - Apr 03 18:21:05 +0000 2016","favourites_count":3717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":312,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335436871757934593\/SQ5a60W9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335436871757934593\/SQ5a60W9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/716692011668082688\/1602531264","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":142142777,"id_str":"142142777","name":"Isabelle - Leal","screen_name":"isabellelealm","location":"Sao Paulo, Brazil","description":"","url":"https:\/\/t.co\/LSvkA4CDdi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LSvkA4CDdi","expanded_url":"http:\/\/www.konsuu.com","display_url":"konsuu.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":89,"friends_count":966,"listed_count":6,"created_at":"Mon - May 10 02:49:59 +0000 2010","favourites_count":56193,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429966807729856513\/5j_bjijF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429966807729856513\/5j_bjijF_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":269303589,"id_str":"269303589","name":"Biran - limbu","screen_name":"Biranlimbu","location":"Nepal","description":"Lecturer","url":"https:\/\/t.co\/1k5e7l7gnL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1k5e7l7gnL","expanded_url":"http:\/\/computingsciblog.blogspot.com","display_url":"computingsciblog.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":938,"listed_count":1,"created_at":"Sun - Mar 20 14:07:56 +0000 2011","favourites_count":633,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4820,"lang":null,"status":{"created_at":"Mon - Jan 31 16:06:20 +0000 2022","id":1488181865236549634,"id_str":"1488181865236549634","text":"Chapter - 10 Distributed Database Management System - ppt video online download https:\/\/t.co\/WrOmMhSDeo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WrOmMhSDeo","expanded_url":"https:\/\/slideplayer.com\/slide\/8433343\/#.YfgIxtWWjjw.twitter","display_url":"slideplayer.com\/slide\/8433343\/\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0E538F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290987226696839169\/2nzxmzCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290987226696839169\/2nzxmzCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269303589\/1483968033","profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110701955,"id_str":"110701955","name":"Puneet - Oberoi","screen_name":"15PO22","location":"Noida, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":1284,"listed_count":0,"created_at":"Tue - Feb 02 13:40:46 +0000 2010","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":127,"lang":null,"status":{"created_at":"Tue - Mar 01 18:09:39 +0000 2022","id":1498722146868076544,"id_str":"1498722146868076544","text":"@jagograhakjago - @AdaniOnline It''s been 4 months we have paid for a png connection at my father''s - new home & still w\u2026 https:\/\/t.co\/U0mex8cj3m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jagograhakjago","name":"Consumer - Affairs","id":772674808878342144,"id_str":"772674808878342144","indices":[0,15]},{"screen_name":"AdaniOnline","name":"Adani - Group","id":980145571,"id_str":"980145571","indices":[16,28]}],"urls":[{"url":"https:\/\/t.co\/U0mex8cj3m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498722146868076544","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":772674808878342144,"in_reply_to_user_id_str":"772674808878342144","in_reply_to_screen_name":"jagograhakjago","geo":null,"coordinates":null,"place":{"id":"2281169281a9d3a2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2281169281a9d3a2.json","place_type":"city","name":"Faridabad","full_name":"Faridabad, - India","country_code":"IN","country":"India","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[77.149786,28.156842],[77.551977,28.156842],[77.551977,28.505585],[77.149786,28.505585]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314414407464574977\/S7aQsB1D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314414407464574977\/S7aQsB1D_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":220047970,"id_str":"220047970","name":"Hank - Nusbaum","screen_name":"EliteJetGlobal","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":936,"friends_count":5000,"listed_count":8,"created_at":"Fri - Nov 26 16:43:14 +0000 2010","favourites_count":16612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"415C69","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599947256259706880\/pipkQ_eY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599947256259706880\/pipkQ_eY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220047970\/1610419920","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":302878996,"id_str":"302878996","name":"Kirsty - and Alex","screen_name":"mudgeestella","location":"","description":"We currently - live in Canada renovating and flipping houses \ud83c\udfe0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":102,"listed_count":0,"created_at":"Sat - May 21 22:35:06 +0000 2011","favourites_count":1492,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":181,"lang":null,"status":{"created_at":"Tue - Jul 27 20:24:18 +0000 2021","id":1420117866549071872,"id_str":"1420117866549071872","text":"@BetteMidler - You can''t help stupid....\ud83d\ude14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BetteMidler","name":"bettemidler","id":139823781,"id_str":"139823781","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1420061789421588483,"in_reply_to_status_id_str":"1420061789421588483","in_reply_to_user_id":139823781,"in_reply_to_user_id_str":"139823781","in_reply_to_screen_name":"BetteMidler","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374678262937481220\/p5jo6GT9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374678262937481220\/p5jo6GT9_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243546844715724800,"id_str":"1243546844715724800","name":"Rae - Cole","screen_name":"RaeCole40576717","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":447,"listed_count":0,"created_at":"Fri - Mar 27 14:34:29 +0000 2020","favourites_count":2326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Nov 09 23:12:17 +0000 2020","id":1325939296436674566,"id_str":"1325939296436674566","text":"RT - @realkingsreturn: Congratulations to @JoeBiden & @KamalaHarris \ud83c\uddfa\ud83c\uddf8\n\nIf - you need anyone to sing at the inauguration, we\u2019d be honored to do\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realkingsreturn","name":"Kings - Return","id":1151298510496718848,"id_str":"1151298510496718848","indices":[3,19]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[40,49]},{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[56,69]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Nov 08 02:33:55 +0000 2020","id":1325265263269474311,"id_str":"1325265263269474311","text":"Congratulations - to @JoeBiden & @KamalaHarris \ud83c\uddfa\ud83c\uddf8\n\nIf you need anyone - to sing at the inauguration, we\u2019d be honored to\u2026 https:\/\/t.co\/J4HpfrCdHE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[19,28]},{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[35,48]}],"urls":[{"url":"https:\/\/t.co\/J4HpfrCdHE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1325265263269474311","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15179,"favorite_count":77139,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15179,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243548737705738242\/7sRRIbbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243548737705738242\/7sRRIbbv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2815478761,"id_str":"2815478761","name":"Linz","screen_name":"lindseylaforest","location":"Ann - Arbor, MI","description":"she\/her future lawyer @waynestate Law 2022 @umich - Sport Management 2019 @UMSBC Co-President 2018","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":466,"friends_count":1078,"listed_count":6,"created_at":"Wed - Sep 17 19:39:26 +0000 2014","favourites_count":66268,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11338,"lang":null,"status":{"created_at":"Thu - Mar 24 18:57:00 +0000 2022","id":1507068984981663750,"id_str":"1507068984981663750","text":"RT - @NBCOlympics: \u2018@TeamUSA is GOLDEN! \ud83e\udd47 \n\nCheck out all of - the gold medalists from the 2022 #WinterOlympics and #WinterParalympics. https:\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"WinterOlympics","indices":[92,107]},{"text":"WinterParalympics","indices":[112,130]}],"symbols":[],"user_mentions":[{"screen_name":"NBCOlympics","name":"NBC - Olympics","id":14955353,"id_str":"14955353","indices":[3,15]},{"screen_name":"TeamUSA","name":"Team - USA","id":21870081,"id_str":"21870081","indices":[18,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 20:49:15 +0000 2022","id":1505647679908593670,"id_str":"1505647679908593670","text":"\u2018@TeamUSA - is GOLDEN! \ud83e\udd47 \n\nCheck out all of the gold medalists from the 2022 - #WinterOlympics and #WinterParalympics. https:\/\/t.co\/CVxdnQNvRu","truncated":false,"entities":{"hashtags":[{"text":"WinterOlympics","indices":[75,90]},{"text":"WinterParalympics","indices":[95,113]}],"symbols":[],"user_mentions":[{"screen_name":"TeamUSA","name":"Team - USA","id":21870081,"id_str":"21870081","indices":[1,9]}],"urls":[],"media":[{"id":1505647674254671876,"id_str":"1505647674254671876","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FOUilRzXwAQdXD6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOUilRzXwAQdXD6.jpg","url":"https:\/\/t.co\/CVxdnQNvRu","display_url":"pic.twitter.com\/CVxdnQNvRu","expanded_url":"https:\/\/twitter.com\/NBCOlympics\/status\/1505647679908593670\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1500,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505647674254671876,"id_str":"1505647674254671876","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/FOUilRzXwAQdXD6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOUilRzXwAQdXD6.jpg","url":"https:\/\/t.co\/CVxdnQNvRu","display_url":"pic.twitter.com\/CVxdnQNvRu","expanded_url":"https:\/\/twitter.com\/NBCOlympics\/status\/1505647679908593670\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1500,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":683,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":120,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307195016255864832\/h3US2cIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307195016255864832\/h3US2cIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2815478761\/1521420197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246138256531562496,"id_str":"1246138256531562496","name":"Fayza - Ahmed","screen_name":"Fayzaabdelsalam","location":"cairo ","description":"\u0635\u064e\u062d\u064e\u0641\u0650\u064a\u0651\u0629 - \u0645\u0635\u0631\u064a\u0629-journalist","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":164,"friends_count":1865,"listed_count":0,"created_at":"Fri - Apr 03 18:11:49 +0000 2020","favourites_count":4118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3335,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503156988972511233\/jejmDVIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503156988972511233\/jejmDVIr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1359663618,"id_str":"1359663618","name":"Charles - W. Artis","screen_name":"ArtisThe","location":"New York, N.Y.","description":"Author - and editor of \"Believing Is Seeing\" \nBy Charles W. Artis Heterosexual.\nBorn - Again Christian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":1453,"listed_count":2,"created_at":"Wed - Apr 17 15:26:20 +0000 2013","favourites_count":1019,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8236,"lang":null,"status":{"created_at":"Wed - Mar 23 17:48:08 +0000 2022","id":1506689265689890817,"id_str":"1506689265689890817","text":"Anita - Hill would be a nice bookend to Clarence Thomas https:\/\/t.co\/l0thtFzJkN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l0thtFzJkN","expanded_url":"https:\/\/twitter.com\/ArtisThe\/status\/1506629005910413312","display_url":"twitter.com\/ArtisThe\/statu\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506629005910413312,"quoted_status_id_str":"1506629005910413312","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/699294533201178624\/zZTdq9QG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/699294533201178624\/zZTdq9QG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1359663618\/1557345047","profile_link_color":"291708","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3051785792,"id_str":"3051785792","name":"Angela - Abouhassan","screen_name":"angieabouhassan","location":"Edmonton, Alberta,Canada","description":"\ud83c\udde8\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":367,"listed_count":0,"created_at":"Sun - Mar 01 03:40:57 +0000 2015","favourites_count":2272,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214347943941033984\/FngYn5Au_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214347943941033984\/FngYn5Au_normal.jpg","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1228365726328729601,"id_str":"1228365726328729601","name":"Jade","screen_name":"jadenkno","location":"","description":"\ud83c\udde7\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":64,"listed_count":0,"created_at":"Fri - Feb 14 17:09:59 +0000 2020","favourites_count":17883,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3210,"lang":null,"status":{"created_at":"Thu - Mar 24 19:23:46 +0000 2022","id":1507075722224947208,"id_str":"1507075722224947208","text":"RT - @MissTeeOfficial: I\u2019ve learnt to be gentler to Black women who bleach - their skin. We are all aware of the currency lighter skin has in t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MissTeeOfficial","name":"MissTeeOfficial","id":16276137,"id_str":"16276137","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 13:46:31 +0000 2022","id":1506628462253068294,"id_str":"1506628462253068294","text":"I\u2019ve - learnt to be gentler to Black women who bleach their skin. We are all aware - of the currency lighter skin has i\u2026 https:\/\/t.co\/Ss1cKmRaqc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ss1cKmRaqc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506628462253068294","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505514056471527426,"quoted_status_id_str":"1505514056471527426","retweet_count":5603,"favorite_count":29585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1505514056471527426,"quoted_status_id_str":"1505514056471527426","retweet_count":5603,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495902700948451330\/bX2NQVa9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495902700948451330\/bX2NQVa9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228365726328729601\/1612841225","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238931036131688448,"id_str":"1238931036131688448","name":"Judy - Jamack","screen_name":"JamackJudith","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":183,"listed_count":0,"created_at":"Sat - Mar 14 20:52:54 +0000 2020","favourites_count":12219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2397,"lang":null,"status":{"created_at":"Fri - Mar 25 09:16:48 +0000 2022","id":1507285361164271637,"id_str":"1507285361164271637","text":"@lldubs - What a great show written so well and the cast is awesome.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lldubs","name":"Laura - Wright","id":48951248,"id_str":"48951248","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507174693781979136,"in_reply_to_status_id_str":"1507174693781979136","in_reply_to_user_id":48951248,"in_reply_to_user_id_str":"48951248","in_reply_to_screen_name":"lldubs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384865658240999429\/DpsRA7JZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384865658240999429\/DpsRA7JZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2201548866,"id_str":"2201548866","name":"Tornell - Moore","screen_name":"TMoore1906","location":"","description":"God, Family, - Raiders, Lakers, A''s and Go Blue!! Life is good!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":896,"listed_count":5,"created_at":"Mon - Nov 18 16:09:06 +0000 2013","favourites_count":25392,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":252,"lang":null,"status":{"created_at":"Sat - Mar 19 16:37:01 +0000 2022","id":1505221816842964994,"id_str":"1505221816842964994","text":"@MoeMoton - https:\/\/t.co\/BOjyAX6Emn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MoeMoton","name":"Maurice - Moton","id":2236537028,"id_str":"2236537028","indices":[0,9]}],"urls":[],"media":[{"id":1505221810467577857,"id_str":"1505221810467577857","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOOfQvkXIAEn4C3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOOfQvkXIAEn4C3.jpg","url":"https:\/\/t.co\/BOjyAX6Emn","display_url":"pic.twitter.com\/BOjyAX6Emn","expanded_url":"https:\/\/twitter.com\/TMoore1906\/status\/1505221816842964994\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":372,"h":200,"resize":"fit"},"small":{"w":372,"h":200,"resize":"fit"},"medium":{"w":372,"h":200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505221810467577857,"id_str":"1505221810467577857","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOOfQvkXIAEn4C3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOOfQvkXIAEn4C3.jpg","url":"https:\/\/t.co\/BOjyAX6Emn","display_url":"pic.twitter.com\/BOjyAX6Emn","expanded_url":"https:\/\/twitter.com\/TMoore1906\/status\/1505221816842964994\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":372,"h":200,"resize":"fit"},"small":{"w":372,"h":200,"resize":"fit"},"medium":{"w":372,"h":200,"resize":"fit"}},"video_info":{"aspect_ratio":[93,50],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOOfQvkXIAEn4C3.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505221460515860486,"in_reply_to_status_id_str":"1505221460515860486","in_reply_to_user_id":2236537028,"in_reply_to_user_id_str":"2236537028","in_reply_to_screen_name":"MoeMoton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158164361078366209\/Q5u4b36f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158164361078366209\/Q5u4b36f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267970522484051968,"id_str":"1267970522484051968","name":"Katie","screen_name":"miss_katielove","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":259,"listed_count":0,"created_at":"Wed - Jun 03 00:05:19 +0000 2020","favourites_count":8777,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1055,"lang":null,"status":{"created_at":"Wed - Jan 26 03:17:14 +0000 2022","id":1486176373911654400,"id_str":"1486176373911654400","text":"RT - @angk03: Me after watching #Dexter #DexterNewBloodFinale https:\/\/t.co\/9TwvhMSDYF","truncated":false,"entities":{"hashtags":[{"text":"Dexter","indices":[30,37]},{"text":"DexterNewBloodFinale","indices":[38,59]}],"symbols":[],"user_mentions":[{"screen_name":"angk03","name":"Angelo - Kanellopoulos","id":88300967,"id_str":"88300967","indices":[3,10]}],"urls":[],"media":[{"id":1484369952207355914,"id_str":"1484369952207355914","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","url":"https:\/\/t.co\/9TwvhMSDYF","display_url":"pic.twitter.com\/9TwvhMSDYF","expanded_url":"https:\/\/twitter.com\/angk03\/status\/1484369961015414786\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}},"source_status_id":1484369961015414786,"source_status_id_str":"1484369961015414786","source_user_id":88300967,"source_user_id_str":"88300967"}]},"extended_entities":{"media":[{"id":1484369952207355914,"id_str":"1484369952207355914","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","url":"https:\/\/t.co\/9TwvhMSDYF","display_url":"pic.twitter.com\/9TwvhMSDYF","expanded_url":"https:\/\/twitter.com\/angk03\/status\/1484369961015414786\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}},"source_status_id":1484369961015414786,"source_status_id_str":"1484369961015414786","source_user_id":88300967,"source_user_id_str":"88300967","video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FJmKm2SVQAo3N5Y.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 21 03:39:11 +0000 2022","id":1484369961015414786,"id_str":"1484369961015414786","text":"Me - after watching #Dexter #DexterNewBloodFinale https:\/\/t.co\/9TwvhMSDYF","truncated":false,"entities":{"hashtags":[{"text":"Dexter","indices":[18,25]},{"text":"DexterNewBloodFinale","indices":[26,47]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1484369952207355914,"id_str":"1484369952207355914","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","url":"https:\/\/t.co\/9TwvhMSDYF","display_url":"pic.twitter.com\/9TwvhMSDYF","expanded_url":"https:\/\/twitter.com\/angk03\/status\/1484369961015414786\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1484369952207355914,"id_str":"1484369952207355914","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJmKm2SVQAo3N5Y.jpg","url":"https:\/\/t.co\/9TwvhMSDYF","display_url":"pic.twitter.com\/9TwvhMSDYF","expanded_url":"https:\/\/twitter.com\/angk03\/status\/1484369961015414786\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FJmKm2SVQAo3N5Y.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482509167826923521\/NkldmUsK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482509167826923521\/NkldmUsK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267970522484051968\/1642292705","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2417027480,"id_str":"2417027480","name":"JT","screen_name":"hainault1960","location":"","description":"Have - I paid my dues ? yep, the cheque\u2019s in the post","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":392,"friends_count":2254,"listed_count":2,"created_at":"Sat - Mar 29 06:05:26 +0000 2014","favourites_count":21805,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19465,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505806165604052993\/h5C-rLi0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505806165604052993\/h5C-rLi0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2417027480\/1456547311","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1135317691127013376,"id_str":"1135317691127013376","name":"Asghar - Abdolpour","screen_name":"AsgharAbdolpour","location":"","description":"Research - Sincetific","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":594,"listed_count":0,"created_at":"Sun - Jun 02 22:50:05 +0000 2019","favourites_count":1575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":646,"lang":null,"status":{"created_at":"Tue - Mar 09 23:30:24 +0000 2021","id":1369430399219343361,"id_str":"1369430399219343361","text":"https:\/\/t.co\/csTbEOXxl9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1369430362565271564,"id_str":"1369430362565271564","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1369430362565271564\/pu\/img\/XnHNPuidn3_i7aNc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1369430362565271564\/pu\/img\/XnHNPuidn3_i7aNc.jpg","url":"https:\/\/t.co\/csTbEOXxl9","display_url":"pic.twitter.com\/csTbEOXxl9","expanded_url":"https:\/\/twitter.com\/AsgharAbdolpour\/status\/1369430399219343361\/video\/1","type":"photo","sizes":{"medium":{"w":848,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":449,"resize":"fit"},"large":{"w":848,"h":560,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1369430362565271564,"id_str":"1369430362565271564","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1369430362565271564\/pu\/img\/XnHNPuidn3_i7aNc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1369430362565271564\/pu\/img\/XnHNPuidn3_i7aNc.jpg","url":"https:\/\/t.co\/csTbEOXxl9","display_url":"pic.twitter.com\/csTbEOXxl9","expanded_url":"https:\/\/twitter.com\/AsgharAbdolpour\/status\/1369430399219343361\/video\/1","type":"video","sizes":{"medium":{"w":848,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":449,"resize":"fit"},"large":{"w":848,"h":560,"resize":"fit"}},"video_info":{"aspect_ratio":[53,35],"duration_millis":6160,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1369430362565271564\/pu\/vid\/408x270\/xwV4Dw8C2dg-324b.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1369430362565271564\/pu\/pl\/lvZFP_M4-Bg3Ir3X.m3u8?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1369430362565271564\/pu\/vid\/848x560\/hMtSOiU9IXY1nuI4.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1369430362565271564\/pu\/vid\/544x360\/ZIIaojoi_rnXdhvC.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218595935233568769\/mTjTAvFY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218595935233568769\/mTjTAvFY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135317691127013376\/1579370892","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723171027560333316,"id_str":"723171027560333316","name":"\u54df\u5982\u5427 - \u7684\u6a21\u62df \ud83c\uddf3\ud83c\uddf1 \u2664\u2667\u00a4\u2606\u2022\u00b0 - \ud83d\udd3a\ufe0f","screen_name":"olayinka_aminex","location":"space","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1140,"friends_count":1268,"listed_count":2,"created_at":"Thu - Apr 21 15:26:23 +0000 2016","favourites_count":43552,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7755,"lang":null,"status":{"created_at":"Fri - Mar 25 21:09:39 +0000 2022","id":1507464752699686912,"id_str":"1507464752699686912","text":"RT - @Alex_Houseof308: https:\/\/t.co\/S9bkVlYjN4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Alex_Houseof308","name":"Four-eyed - Edo Boy\u2122","id":385986859,"id_str":"385986859","indices":[3,19]}],"urls":[],"media":[{"id":1507457608407519259,"id_str":"1507457608407519259","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","url":"https:\/\/t.co\/S9bkVlYjN4","display_url":"pic.twitter.com\/S9bkVlYjN4","expanded_url":"https:\/\/twitter.com\/_aLeckz\/status\/1507457625151180834\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":224,"resize":"fit"},"medium":{"w":320,"h":224,"resize":"fit"},"large":{"w":320,"h":224,"resize":"fit"}},"source_status_id":1507457625151180834,"source_status_id_str":"1507457625151180834","source_user_id":974187988577071104,"source_user_id_str":"974187988577071104"}]},"extended_entities":{"media":[{"id":1507457608407519259,"id_str":"1507457608407519259","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","url":"https:\/\/t.co\/S9bkVlYjN4","display_url":"pic.twitter.com\/S9bkVlYjN4","expanded_url":"https:\/\/twitter.com\/_aLeckz\/status\/1507457625151180834\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":224,"resize":"fit"},"medium":{"w":320,"h":224,"resize":"fit"},"large":{"w":320,"h":224,"resize":"fit"}},"source_status_id":1507457625151180834,"source_status_id_str":"1507457625151180834","source_user_id":974187988577071104,"source_user_id_str":"974187988577071104","video_info":{"aspect_ratio":[10,7],"duration_millis":7366,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507457608407519259\/pu\/pl\/gamb2MQE9qXRtfLo.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507457608407519259\/pu\/vid\/320x224\/z4z-JpUktMq5Jc9D.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:02:26 +0000 2022","id":1507462936574545922,"id_str":"1507462936574545922","text":"https:\/\/t.co\/S9bkVlYjN4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507457608407519259,"id_str":"1507457608407519259","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","url":"https:\/\/t.co\/S9bkVlYjN4","display_url":"pic.twitter.com\/S9bkVlYjN4","expanded_url":"https:\/\/twitter.com\/_aLeckz\/status\/1507457625151180834\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":224,"resize":"fit"},"medium":{"w":320,"h":224,"resize":"fit"},"large":{"w":320,"h":224,"resize":"fit"}},"source_status_id":1507457625151180834,"source_status_id_str":"1507457625151180834","source_user_id":974187988577071104,"source_user_id_str":"974187988577071104"}]},"extended_entities":{"media":[{"id":1507457608407519259,"id_str":"1507457608407519259","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507457608407519259\/pu\/img\/1DUt5gkQRhwQBO8A.jpg","url":"https:\/\/t.co\/S9bkVlYjN4","display_url":"pic.twitter.com\/S9bkVlYjN4","expanded_url":"https:\/\/twitter.com\/_aLeckz\/status\/1507457625151180834\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":224,"resize":"fit"},"medium":{"w":320,"h":224,"resize":"fit"},"large":{"w":320,"h":224,"resize":"fit"}},"source_status_id":1507457625151180834,"source_status_id_str":"1507457625151180834","source_user_id":974187988577071104,"source_user_id_str":"974187988577071104","video_info":{"aspect_ratio":[10,7],"duration_millis":7366,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507457608407519259\/pu\/pl\/gamb2MQE9qXRtfLo.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507457608407519259\/pu\/vid\/320x224\/z4z-JpUktMq5Jc9D.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":262,"favorite_count":540,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":262,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482811605473767425\/az8irCdA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482811605473767425\/az8irCdA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723171027560333316\/1644868215","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":968205621668470785,"id_str":"968205621668470785","name":"Heather - Skelly (she, her)","screen_name":"teacherfeather","location":"","description":"Wife, - Mother, Aunt, Sister, and Daughter Former Early Childhood Special Educator, - current advocate for children and our public schools.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":319,"friends_count":736,"listed_count":2,"created_at":"Mon - Feb 26 19:26:23 +0000 2018","favourites_count":66926,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5489,"lang":null,"status":{"created_at":"Sat - Mar 26 04:16:54 +0000 2022","id":1507572275129688065,"id_str":"1507572275129688065","text":"RT - @KyleBJorrey: Mark those calendars politicos: @acornnewspaper and @TOAcornNews - are partnering with @ConejoChamber1 to host a forum May\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyleBJorrey","name":"Kyle - Jorrey","id":2279665783,"id_str":"2279665783","indices":[3,15]},{"screen_name":"acornnewspaper","name":"The - Acorn","id":2911182662,"id_str":"2911182662","indices":[49,64]},{"screen_name":"TOAcornNews","name":"Thousand - Oaks Acorn","id":462382474,"id_str":"462382474","indices":[69,81]},{"screen_name":"ConejoChamber1","name":"Greater - Conejo Valley Chamber of Commerce","id":1362247310,"id_str":"1362247310","indices":[102,117]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:27:59 +0000 2022","id":1507454267489103878,"id_str":"1507454267489103878","text":"Mark - those calendars politicos: @acornnewspaper and @TOAcornNews are partnering - with @ConejoChamber1 to host a for\u2026 https:\/\/t.co\/AhI0wq3Eof","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"acornnewspaper","name":"The - Acorn","id":2911182662,"id_str":"2911182662","indices":[32,47]},{"screen_name":"TOAcornNews","name":"Thousand - Oaks Acorn","id":462382474,"id_str":"462382474","indices":[52,64]},{"screen_name":"ConejoChamber1","name":"Greater - Conejo Valley Chamber of Commerce","id":1362247310,"id_str":"1362247310","indices":[85,100]}],"urls":[{"url":"https:\/\/t.co\/AhI0wq3Eof","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507454267489103878","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/968209107416113152\/FKbaBTVr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/968209107416113152\/FKbaBTVr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968205621668470785\/1519674068","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":486088930,"id_str":"486088930","name":"Maria - V Yermoli","screen_name":"MYermoli","location":"Miami, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":222,"listed_count":0,"created_at":"Tue - Feb 07 22:27:19 +0000 2012","favourites_count":2585,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1175,"lang":null,"status":{"created_at":"Thu - Aug 19 15:16:12 +0000 2021","id":1428375253261168648,"id_str":"1428375253261168648","text":"@MaryM96095506 - @thehill \ud83d\ude4b\u200d\u2640\ufe0f\ud83d\ude4b\u200d\u2640\ufe0f\ud83d\ude4b\u200d\u2640\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryM96095506","name":"Mary - M","id":1237803379516112897,"id_str":"1237803379516112897","indices":[0,14]},{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[15,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1428182783889915911,"in_reply_to_status_id_str":"1428182783889915911","in_reply_to_user_id":1237803379516112897,"in_reply_to_user_id_str":"1237803379516112897","in_reply_to_screen_name":"MaryM96095506","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295076194589827075\/MbEeKUcQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295076194589827075\/MbEeKUcQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/486088930\/1597605201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":893884318082314240,"id_str":"893884318082314240","name":"Princechiseke\ud83c\uddff\ud83c\uddf2","screen_name":"princechiseke","location":"Zambia","description":"Believe - God''s not dead","url":"https:\/\/t.co\/ihIYDH5VU8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ihIYDH5VU8","expanded_url":"http:\/\/www.prince.zm","display_url":"prince.zm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":337,"friends_count":1177,"listed_count":0,"created_at":"Sat - Aug 05 17:20:03 +0000 2017","favourites_count":5004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":300,"lang":null,"status":{"created_at":"Fri - Mar 18 18:15:54 +0000 2022","id":1504884315896881152,"id_str":"1504884315896881152","text":"I''d - rather be addicted to work than be addicted to alcohol!!! https:\/\/t.co\/qf3CyZIcU1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qf3CyZIcU1","expanded_url":"https:\/\/twitter.com\/alxberman\/status\/1504882834154139653","display_url":"twitter.com\/alxberman\/stat\u2026","indices":[62,85]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504882834154139653,"quoted_status_id_str":"1504882834154139653","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458528897834835970\/yXLpAmlS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458528897834835970\/yXLpAmlS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/893884318082314240\/1633279755","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":874712102,"id_str":"874712102","name":"Phuong - Tran","screen_name":"indibug2001","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":155,"listed_count":0,"created_at":"Fri - Oct 12 01:42:19 +0000 2012","favourites_count":561,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":288,"lang":null,"status":{"created_at":"Thu - Mar 24 01:48:18 +0000 2022","id":1506810104351322113,"id_str":"1506810104351322113","text":"@sahilkapur - I would just be embarrassed to say that out loud.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sahilkapur","name":"Sahil - Kapur","id":19847765,"id_str":"19847765","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506635233415897100,"in_reply_to_status_id_str":"1506635233415897100","in_reply_to_user_id":19847765,"in_reply_to_user_id_str":"19847765","in_reply_to_screen_name":"sahilkapur","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52639286,"id_str":"52639286","name":"Deb - Manulak","screen_name":"Msmandaem","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":76,"friends_count":4487,"listed_count":0,"created_at":"Wed - Jul 01 05:02:27 +0000 2009","favourites_count":24809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7155,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316125062857068544\/BYqtQRIJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316125062857068544\/BYqtQRIJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52639286\/1602623651","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":618860333,"id_str":"618860333","name":"GOAT - Sage","screen_name":"reccos_14","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":254,"friends_count":567,"listed_count":1,"created_at":"Tue - Jun 26 08:15:33 +0000 2012","favourites_count":3155,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1466,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/943546804003639296\/UQL3ZQY3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/943546804003639296\/UQL3ZQY3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618860333\/1622784049","profile_link_color":"2FC2EF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302677012809756676,"id_str":"1302677012809756676","name":"Andrea - Yeates","screen_name":"yeates_andrea","location":"","description":"Independent - woman","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":629,"listed_count":0,"created_at":"Sun - Sep 06 18:36:42 +0000 2020","favourites_count":4333,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"status":{"created_at":"Mon - Dec 06 22:03:44 +0000 2021","id":1467978086331424772,"id_str":"1467978086331424772","text":"@ChrisCuomo - Will miss that chemistry between you and Don Lemon !!! Walk good \ud83c\uddef\ud83c\uddf2\ud83c\uddef\ud83c\uddf2\ud83c\uddef\ud83c\uddf2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChrisCuomo","name":"Christopher - C. Cuomo","id":22799750,"id_str":"22799750","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1467948881099038721,"in_reply_to_status_id_str":"1467948881099038721","in_reply_to_user_id":22799750,"in_reply_to_user_id_str":"22799750","in_reply_to_screen_name":"ChrisCuomo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":7768952,"id_str":"7768952","name":"Kelly - Baldassarri","screen_name":"kellyshannon","location":"Salem, Mass","description":"I - once met Buzz Aldrin.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":1281,"listed_count":4,"created_at":"Fri - Jul 27 19:27:03 +0000 2007","favourites_count":15986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2233,"lang":null,"status":{"created_at":"Fri - Mar 25 13:44:09 +0000 2022","id":1507352642040774657,"id_str":"1507352642040774657","text":"RT - @silentmoviegifs: The influence of Buster Keaton https:\/\/t.co\/hOTsVH2lmD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"silentmoviegifs","name":"Silent - Movie GIFs","id":2993751197,"id_str":"2993751197","indices":[3,19]}],"urls":[],"media":[{"id":1507263232247054348,"id_str":"1507263232247054348","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","url":"https:\/\/t.co\/hOTsVH2lmD","display_url":"pic.twitter.com\/hOTsVH2lmD","expanded_url":"https:\/\/twitter.com\/silentmoviegifs\/status\/1507344046213140487\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507344046213140487,"source_status_id_str":"1507344046213140487","source_user_id":2993751197,"source_user_id_str":"2993751197"}]},"extended_entities":{"media":[{"id":1507263232247054348,"id_str":"1507263232247054348","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","url":"https:\/\/t.co\/hOTsVH2lmD","display_url":"pic.twitter.com\/hOTsVH2lmD","expanded_url":"https:\/\/twitter.com\/silentmoviegifs\/status\/1507344046213140487\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507344046213140487,"source_status_id_str":"1507344046213140487","source_user_id":2993751197,"source_user_id_str":"2993751197","video_info":{"aspect_ratio":[1,1],"duration_millis":26560,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/720x720\/Aq3uGqMT8bVsgLYg.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/320x320\/m4r3qxq7i89fcUtC.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/pl\/3zagB6DUKsFQYyRp.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/540x540\/vSIl_mKMyw5yaw1Y.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:10:00 +0000 2022","id":1507344046213140487,"id_str":"1507344046213140487","text":"The - influence of Buster Keaton https:\/\/t.co\/hOTsVH2lmD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507263232247054348,"id_str":"1507263232247054348","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","url":"https:\/\/t.co\/hOTsVH2lmD","display_url":"pic.twitter.com\/hOTsVH2lmD","expanded_url":"https:\/\/twitter.com\/silentmoviegifs\/status\/1507344046213140487\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507263232247054348,"id_str":"1507263232247054348","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507263232247054348\/pu\/img\/2vJaZMRLNg8ruKY3.jpg","url":"https:\/\/t.co\/hOTsVH2lmD","display_url":"pic.twitter.com\/hOTsVH2lmD","expanded_url":"https:\/\/twitter.com\/silentmoviegifs\/status\/1507344046213140487\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":26560,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/720x720\/Aq3uGqMT8bVsgLYg.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/320x320\/m4r3qxq7i89fcUtC.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/pl\/3zagB6DUKsFQYyRp.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507263232247054348\/pu\/vid\/540x540\/vSIl_mKMyw5yaw1Y.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4264,"favorite_count":21374,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4264,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B462B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370526026053398530\/9hvgLhOi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370526026053398530\/9hvgLhOi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7768952\/1595642073","profile_link_color":"9D582E","profile_sidebar_border_color":"B6D97E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40193574,"id_str":"40193574","name":"Doctor - Rock","screen_name":"TheGoodDocRock","location":"Oakwood, OH","description":"Dennis - Stewart Xavier B-ball, A Course in Miracles, Urantia, oldies DJ https:\/\/t.co\/LORxEgjZhN - Aka Muncie long-time friend of Bill W.","url":"https:\/\/t.co\/LORxEgjZhN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LORxEgjZhN","expanded_url":"http:\/\/daytonoldies.org","display_url":"daytonoldies.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/LORxEgjZhN","expanded_url":"http:\/\/daytonoldies.org","display_url":"daytonoldies.org","indices":[71,94]}]}},"protected":false,"followers_count":1268,"friends_count":3772,"listed_count":3,"created_at":"Fri - May 15 06:56:58 +0000 2009","favourites_count":85869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25701,"lang":null,"status":{"created_at":"Sat - Mar 26 10:12:41 +0000 2022","id":1507661810203336710,"id_str":"1507661810203336710","text":"RT - @CalebNoeTV: \"On March 25, 2022 \u2013 When he came back to Xavier \u2013 - that was the best years that he ever had.\"\n\nI asked Sean Miller what he\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalebNoeTV","name":"Caleb - Noe","id":838087049496375296,"id_str":"838087049496375296","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:11:14 +0000 2022","id":1507495351451717632,"id_str":"1507495351451717632","text":"\"On - March 25, 2022 \u2013 When he came back to Xavier \u2013 that was the best - years that he ever had.\"\n\nI asked Sean Miller\u2026 https:\/\/t.co\/0sxyaj1sV4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0sxyaj1sV4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507495351451717632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":64,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505736095119593474\/RubSoWO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505736095119593474\/RubSoWO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40193574\/1648236614","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145003082037596162,"id_str":"1145003082037596162","name":"Maiko - Shigematsu She\/Her","screen_name":"MaikoShigematsu","location":"\u6771\u4eac\u90fd","description":"A - girl with big dream and hope. \ud83c\udfadActor based in Tokyo, Japan Training: - Ivana Chubbuck Studio \ud83d\udcf7 Photography \ud83c\udfa4Singer \ud83c\udfebAGU - @voiceupjapanagu","url":"https:\/\/t.co\/VmolgUFeT9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VmolgUFeT9","expanded_url":"https:\/\/www.instagram.com\/maiko.shigematsu","display_url":"instagram.com\/maiko.shigemat\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":190,"friends_count":750,"listed_count":0,"created_at":"Sat - Jun 29 16:16:22 +0000 2019","favourites_count":13662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":248,"lang":null,"status":{"created_at":"Fri - Oct 15 01:42:09 +0000 2021","id":1448826498857668611,"id_str":"1448826498857668611","text":"RT - @MoulinRougeBway: Welcome back to Broadway, @RealHughJackman! It was simply - spectacular to share the evening with a fellow Aussie and we\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MoulinRougeBway","name":"Moulin - Rouge The Musical - Broadway","id":915138791454756864,"id_str":"915138791454756864","indices":[3,19]},{"screen_name":"RealHughJackman","name":"Hugh - Jackman","id":27042513,"id_str":"27042513","indices":[47,63]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 14 15:34:57 +0000 2021","id":1448673689893998594,"id_str":"1448673689893998594","text":"Welcome - back to Broadway, @RealHughJackman! It was simply spectacular to share the - evening with a fellow Aussie and\u2026 https:\/\/t.co\/9DnvdUvdCM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealHughJackman","name":"Hugh - Jackman","id":27042513,"id_str":"27042513","indices":[26,42]}],"urls":[{"url":"https:\/\/t.co\/9DnvdUvdCM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1448673689893998594","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":360,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395230424402522122\/F8aReMAx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395230424402522122\/F8aReMAx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1145003082037596162\/1619393416","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30137319,"id_str":"30137319","name":"Mike - Deininger","screen_name":"mdeininger","location":"iPhone: 39.125809,-84.527406","description":"Retired - Sailor, Small Business Owner, Cincinnatian. Usually working the corner of - 12th & Vine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":1064,"listed_count":6,"created_at":"Fri - Apr 10 02:33:19 +0000 2009","favourites_count":100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46,"lang":null,"status":{"created_at":"Fri - May 07 22:40:36 +0000 2021","id":1390798749467873284,"id_str":"1390798749467873284","text":"RT - @DavidPepper: Apparently, the Ohio GOP doesn\u2019t need you to resign if - you\u2019re at the center of the largest bribery scandal in the history\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidPepper","name":"David - Pepper","id":19638751,"id_str":"19638751","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 07 16:17:40 +0000 2021","id":1390702381915066375,"id_str":"1390702381915066375","text":"Apparently, - the Ohio GOP doesn\u2019t need you to resign if you\u2019re at the center - of the largest bribery scandal in the h\u2026 https:\/\/t.co\/A0INwriSBo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A0INwriSBo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1390702381915066375","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1390691771923959813,"quoted_status_id_str":"1390691771923959813","retweet_count":577,"favorite_count":1574,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1390691771923959813,"quoted_status_id_str":"1390691771923959813","retweet_count":577,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D4C27F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1139492799\/Mr_Redlegs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139492799\/Mr_Redlegs_normal.jpg","profile_link_color":"ED4D34","profile_sidebar_border_color":"9CCC4F","profile_sidebar_fill_color":"9CCC4F","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213970715256295424,"id_str":"1213970715256295424","name":"Shmurda - Laflare","screen_name":"Shmurdashiro","location":"Kumerica","description":"5\u2b50\ufe0f - G, After all slow and steady wins . \u267f\ufe0f@Geelifemusic. https:\/\/youtu.:\/distrokid. - Yaba na yaba on all platforms#","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1048,"friends_count":1456,"listed_count":0,"created_at":"Sun - Jan 05 23:49:25 +0000 2020","favourites_count":8198,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":541,"lang":null,"status":{"created_at":"Thu - Mar 24 23:24:03 +0000 2022","id":1507136190243172353,"id_str":"1507136190243172353","text":"It - hurts when we lost the real ones everyday, fuck the world \ud83c\udf0e and - everything in it.\n@GeeLifeMusic1 https:\/\/t.co\/j4eENyvAyi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GeeLifeMusic1","name":"Gee - Life Music","id":1352975457755533312,"id_str":"1352975457755533312","indices":[85,99]}],"urls":[],"media":[{"id":1507136181921882114,"id_str":"1507136181921882114","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsX0-XoAINo5F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsX0-XoAINo5F.jpg","url":"https:\/\/t.co\/j4eENyvAyi","display_url":"pic.twitter.com\/j4eENyvAyi","expanded_url":"https:\/\/twitter.com\/Shmurdashiro\/status\/1507136190243172353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507136181921882114,"id_str":"1507136181921882114","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsX0-XoAINo5F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsX0-XoAINo5F.jpg","url":"https:\/\/t.co\/j4eENyvAyi","display_url":"pic.twitter.com\/j4eENyvAyi","expanded_url":"https:\/\/twitter.com\/Shmurdashiro\/status\/1507136190243172353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502613633708310530\/xe0ltMXX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502613633708310530\/xe0ltMXX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213970715256295424\/1622568445","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":311523283,"id_str":"311523283","name":"Tom - Conklin","screen_name":"tjconkster","location":"Albuquerque, NM","description":"SAG - Actor...Liberal...Volunteer, community organizer, team leader NM Democratic - Party! Cowboy For Biden! \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4012,"friends_count":5001,"listed_count":4,"created_at":"Sun - Jun 05 16:07:22 +0000 2011","favourites_count":64647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":35695,"lang":null,"status":{"created_at":"Sat - Mar 26 00:49:15 +0000 2022","id":1507520018224975872,"id_str":"1507520018224975872","text":"Who - the fuck is this asshole?\n\n''America will fall'' unless GOP voters adopt - new litmus test of defunding ''gov ed'': N\u2026 https:\/\/t.co\/OPv3sG325Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OPv3sG325Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507520018224975872","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473825220540600320\/Pi64og7P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473825220540600320\/Pi64og7P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311523283\/1640222291","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":473228049,"id_str":"473228049","name":"Bob - Wallace","screen_name":"BobWallace40","location":"Newport Beach, CA","description":"","url":"http:\/\/t.co\/aNObnngluQ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/aNObnngluQ","expanded_url":"http:\/\/www.coretechleasing.com","display_url":"coretechleasing.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":1292,"listed_count":1,"created_at":"Tue - Jan 24 19:25:56 +0000 2012","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":315,"lang":null,"status":{"created_at":"Sat - Jan 09 17:19:26 +0000 2021","id":1347956157185286144,"id_str":"1347956157185286144","text":"RT - @SportsNetLA: \"You might have played with other teams, that''s the big leagues. - But when you come with the Dodgers it''s the major leagues\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportsNetLA","name":"SportsNet - LA","id":2233347469,"id_str":"2233347469","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 08 19:45:00 +0000 2021","id":1347630402089832448,"id_str":"1347630402089832448","text":"\"You - might have played with other teams, that''s the big leagues. But when you - come with the Dodgers it''s the major\u2026 https:\/\/t.co\/kaDapSbvPT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kaDapSbvPT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347630402089832448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1019,"favorite_count":4159,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1019,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149847460237283328\/G-60Ez8__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149847460237283328\/G-60Ez8__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473228049\/1562979890","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":920271870,"id_str":"920271870","name":"michele - f ross","screen_name":"michelefross","location":"","description":"Welllesley - College 2014 \nPeace and Justice","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":133,"listed_count":0,"created_at":"Fri - Nov 02 03:09:17 +0000 2012","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Sun - Nov 08 14:19:14 +0000 2020","id":1325442761701658627,"id_str":"1325442761701658627","text":"@TevinWooten - @weatherchannel Felt in Jamaica plain","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TevinWooten","name":"Tevin - Wooten","id":779149093,"id_str":"779149093","indices":[0,12]},{"screen_name":"weatherchannel","name":"The - Weather Channel","id":20998647,"id_str":"20998647","indices":[13,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325442205868290049,"in_reply_to_status_id_str":"1325442205868290049","in_reply_to_user_id":779149093,"in_reply_to_user_id_str":"779149093","in_reply_to_screen_name":"TevinWooten","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472774917843189760\/AqWJbJb9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472774917843189760\/AqWJbJb9_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":67913575,"id_str":"67913575","name":"Thiago","screen_name":"thiagogasser","location":"","description":"Flamenguista, - cientista pol\u00edtico e internacionalista @SorbonneParis1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":1073,"listed_count":0,"created_at":"Sat - Aug 22 15:40:28 +0000 2009","favourites_count":5365,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2282,"lang":null,"status":{"created_at":"Wed - Mar 16 21:51:38 +0000 2022","id":1504213829416325124,"id_str":"1504213829416325124","text":"@goleada_euro - Ihhh rapaz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"goleada_euro","name":"Goleada - Euro","id":1436370814631391236,"id_str":"1436370814631391236","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504213155626590215,"in_reply_to_status_id_str":"1504213155626590215","in_reply_to_user_id":1436370814631391236,"in_reply_to_user_id_str":"1436370814631391236","in_reply_to_screen_name":"goleada_euro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418019757811539969\/DOrbKYH-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418019757811539969\/DOrbKYH-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67913575\/1527602852","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":297884954,"id_str":"297884954","name":"Rita - Sirkia Zachari","screen_name":"RitaSirkia","location":"","description":"Enlloc - com a casa \/ There\u2019s no place like home \ud83c\udde6\ud83c\udde9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":692,"friends_count":180,"listed_count":19,"created_at":"Fri - May 13 08:53:58 +0000 2011","favourites_count":28760,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9510,"lang":null,"status":{"created_at":"Fri - Mar 25 17:14:27 +0000 2022","id":1507405563734417419,"id_str":"1507405563734417419","text":"@SandraTomasM - @FCarlemany \ud83e\udd0d\ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SandraTomasM","name":"Sandra - Tom\u00e0s Marot \ud83c\udde6\ud83c\udde9","id":415107241,"id_str":"415107241","indices":[0,13]},{"screen_name":"FCarlemany","name":"Fill - de Carlemany \ud83c\udde6\ud83c\udde9\ud83c\uddfa\ud83c\udde6","id":1088553033926098945,"id_str":"1088553033926098945","indices":[14,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507381597980475399,"in_reply_to_status_id_str":"1507381597980475399","in_reply_to_user_id":415107241,"in_reply_to_user_id_str":"415107241","in_reply_to_screen_name":"SandraTomasM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDF5F1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500599331027623945\/ddxPKWzv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500599331027623945\/ddxPKWzv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297884954\/1643152818","profile_link_color":"0B268F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"67B4E0","profile_text_color":"400F96","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":964972817841311749,"id_str":"964972817841311749","name":"T - Finn","screen_name":"TFinn91744967","location":"Liverpool, England","description":"Life - is for living so enjoy it ...\ud83d\ude00","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":393,"listed_count":0,"created_at":"Sat - Feb 17 21:20:22 +0000 2018","favourites_count":439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":226,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":194530486,"id_str":"194530486","name":"charmaine - hogan","screen_name":"charmainehogan","location":"","description":"policy - & regulatory affairs. digital. gambling. ex diplomat. own tweets.","url":"https:\/\/t.co\/7P3XJLUSap","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7P3XJLUSap","expanded_url":"https:\/\/www.linkedin.com\/in\/charmaine-hogan-003b3913\/","display_url":"linkedin.com\/in\/charmaine-h\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":261,"friends_count":436,"listed_count":4,"created_at":"Fri - Sep 24 10:58:00 +0000 2010","favourites_count":4637,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3380,"lang":null,"status":{"created_at":"Fri - Mar 25 21:03:51 +0000 2022","id":1507463295107837957,"id_str":"1507463295107837957","text":"RT - @MaximEristavi: mariupol residents slaughtered by russians while cooking food - over an open fire in the yard of their own apartment build\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaximEristavi","name":"maksym.eristavi - \ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":19500405,"id_str":"19500405","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:44:27 +0000 2022","id":1507458410958184455,"id_str":"1507458410958184455","text":"mariupol - residents slaughtered by russians while cooking food over an open fire in - the yard of their own apartment\u2026 https:\/\/t.co\/suuNWT1po0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/suuNWT1po0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507458410958184455","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21898,"favorite_count":51825,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21898,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1677103504\/profile_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1677103504\/profile_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":812407068342763520,"id_str":"812407068342763520","name":"chil","screen_name":"chiiilllooo","location":"-_-","description":"Nothing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":676,"listed_count":0,"created_at":"Fri - Dec 23 21:18:33 +0000 2016","favourites_count":17787,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1211,"lang":null,"status":{"created_at":"Tue - Mar 22 19:04:45 +0000 2022","id":1506346159773790214,"id_str":"1506346159773790214","text":"@xazande - \u0622\u0642\u0627 \u062a\u0627 \u062d\u062f\u0648\u062f\u06cc \u062f\u0631\u0633\u062a\u0647\n\u0634\u062f\u0647 - \u06cc\u0647 \u0646\u0642\u0637\u0647 \u062c\u0627 \u062a\u0648\u06cc \u062e\u06cc\u0627\u0628\u0648\u0646 - \u0627\u0645\u0627\u0645 \u0628\u0648\u062f\u0647 \u0648 \u0645\u0646 \u0648 - \u0628\u0627\u0628\u0627\u0645 \u0631\u0648 \u062f\u06cc\u0648\u06cc\u0633\u062a - \u0628\u0627\u0631 \u067e\u06cc\u0627\u062f\u0647 \u0628\u0627\u0644\u0627 - \u067e\u0627\u06cc\u06cc\u0646 \u06a9\u0631\u062f\u0646! \u0648\u2026 https:\/\/t.co\/QTnfYH6LAs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xazande","name":"\ud83c\uddfa\ud83c\udde6\u062e\u0632\u0646\u062f\u0647 - \u0633\u0628\u0632\u0631\u0646\u06af \u062f\u0648\u067e\u0627\u06cc \u0633\u0627\u0645\u0648\u0631\u0627\u06cc\u06cc","id":980350194360479745,"id_str":"980350194360479745","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/QTnfYH6LAs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506346159773790214","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506274045343449088,"in_reply_to_status_id_str":"1506274045343449088","in_reply_to_user_id":980350194360479745,"in_reply_to_user_id_str":"980350194360479745","in_reply_to_screen_name":"xazande","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1023603224832606208\/lSmQmB4z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1023603224832606208\/lSmQmB4z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812407068342763520\/1532880998","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":832458210,"id_str":"832458210","name":"; - enthusiast","screen_name":"mrsa_frogperson","location":"Portland, OR","description":"she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":379,"listed_count":0,"created_at":"Wed - Sep 19 03:29:29 +0000 2012","favourites_count":3987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1177,"lang":null,"status":{"created_at":"Sun - Dec 05 04:28:33 +0000 2021","id":1467350153015312384,"id_str":"1467350153015312384","text":"@YetChannel - @smack_the_sun @kat_blaque *cancel culture doesn\u2019t exist for rich, famous - people","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YetChannel","name":"YetUnnamedMusicArchivingChannel","id":1331477306603413505,"id_str":"1331477306603413505","indices":[0,11]},{"screen_name":"smack_the_sun","name":"CANNIBAL - MAN","id":794910911303544833,"id_str":"794910911303544833","indices":[12,26]},{"screen_name":"kat_blaque","name":"\u26a1Voltage\u26a1","id":1706101310,"id_str":"1706101310","indices":[27,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1467301298156576771,"in_reply_to_status_id_str":"1467301298156576771","in_reply_to_user_id":1331477306603413505,"in_reply_to_user_id_str":"1331477306603413505","in_reply_to_screen_name":"YetChannel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":15,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318646061766823938\/5UpsRidK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318646061766823938\/5UpsRidK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832458210\/1478720497","profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":972863866001657856,"id_str":"972863866001657856","name":"Muhammad - Abba Aji","screen_name":"Abba_Aji01","location":"Maiduguri, Nigeria","description":"Always - value who you are...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":559,"listed_count":0,"created_at":"Sun - Mar 11 15:56:35 +0000 2018","favourites_count":887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":287,"lang":null,"status":{"created_at":"Thu - Mar 24 14:12:48 +0000 2022","id":1506997461910536194,"id_str":"1506997461910536194","text":"@OfficialShehu - Congratulations Allah ya raya","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OfficialShehu","name":"Shehu - Abdullahi","id":854454011822575627,"id_str":"854454011822575627","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506991654691082247,"in_reply_to_status_id_str":"1506991654691082247","in_reply_to_user_id":854454011822575627,"in_reply_to_user_id_str":"854454011822575627","in_reply_to_screen_name":"OfficialShehu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1105008192403263488\/ZHmPjKUW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105008192403263488\/ZHmPjKUW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972863866001657856\/1550344927","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312947152692277253,"id_str":"1312947152692277253","name":"Bob - chess","screen_name":"Bobchess5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":0,"listed_count":0,"created_at":"Mon - Oct 05 02:46:55 +0000 2020","favourites_count":12322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3500,"lang":null,"status":{"created_at":"Sat - Dec 04 23:15:15 +0000 2021","id":1467271310678056967,"id_str":"1467271310678056967","text":"@antonioabogado - @JeannetteAguil1 @AsambleaSV QUE LOS ESCUCHE CRISTIANI Y CEREN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"antonioabogado","name":"Antonio - Aguilar Mart\u00ednez","id":846028674,"id_str":"846028674","indices":[0,15]},{"screen_name":"JeannetteAguil1","name":"Jeannette - Aguilar","id":517010682,"id_str":"517010682","indices":[16,32]},{"screen_name":"AsambleaSV","name":"Asamblea - Legislativa \ud83c\uddf8\ud83c\uddfb","id":762345164,"id_str":"762345164","indices":[33,44]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1467109973071220741,"in_reply_to_status_id_str":"1467109973071220741","in_reply_to_user_id":846028674,"in_reply_to_user_id_str":"846028674","in_reply_to_screen_name":"antonioabogado","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451376418923827201\/0XMX_3id_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451376418923827201\/0XMX_3id_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312947152692277253\/1634772590","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3438877996,"id_str":"3438877996","name":"Rahul","screen_name":"rahulxc","location":"Seattle, - WA","description":"Opinions are my own only. Data Science\/Research @Meta. - Ex: @amazon","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":573,"friends_count":1715,"listed_count":6,"created_at":"Tue - Aug 25 05:04:20 +0000 2015","favourites_count":6770,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13171,"lang":null,"status":{"created_at":"Sat - Mar 26 09:12:58 +0000 2022","id":1507646784289779721,"id_str":"1507646784289779721","text":"Some - really cool rooftop spots have opened up in Delhi. https:\/\/t.co\/JBnmcOpW7E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507646737863053312,"id_str":"1507646737863053312","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw8uGEakAAtPMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw8uGEakAAtPMn.jpg","url":"https:\/\/t.co\/JBnmcOpW7E","display_url":"pic.twitter.com\/JBnmcOpW7E","expanded_url":"https:\/\/twitter.com\/rahulxc\/status\/1507646784289779721\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507646737863053312,"id_str":"1507646737863053312","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw8uGEakAAtPMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw8uGEakAAtPMn.jpg","url":"https:\/\/t.co\/JBnmcOpW7E","display_url":"pic.twitter.com\/JBnmcOpW7E","expanded_url":"https:\/\/twitter.com\/rahulxc\/status\/1507646784289779721\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":1507646737829474305,"id_str":"1507646737829474305","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw8uF8aMAEBvfW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw8uF8aMAEBvfW.jpg","url":"https:\/\/t.co\/JBnmcOpW7E","display_url":"pic.twitter.com\/JBnmcOpW7E","expanded_url":"https:\/\/twitter.com\/rahulxc\/status\/1507646784289779721\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1507646737867243520,"id_str":"1507646737867243520","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw8uGFagAApk4f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw8uGFagAApk4f.jpg","url":"https:\/\/t.co\/JBnmcOpW7E","display_url":"pic.twitter.com\/JBnmcOpW7E","expanded_url":"https:\/\/twitter.com\/rahulxc\/status\/1507646784289779721\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"317fcc4b21a604d5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/317fcc4b21a604d5.json","place_type":"city","name":"New - Delhi","full_name":"New Delhi, India","country_code":"IN","country":"India","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[76.84252,28.397657],[77.347652,28.397657],[77.347652,28.879322],[76.84252,28.879322]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/798044332838227968\/y_gWkq_h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/798044332838227968\/y_gWkq_h_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1136368298059321344,"id_str":"1136368298059321344","name":"jmbeaucroft","screen_name":"jmbeaucroft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":122,"listed_count":0,"created_at":"Wed - Jun 05 20:24:49 +0000 2019","favourites_count":1351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1674,"lang":null,"status":{"created_at":"Sun - May 09 17:27:52 +0000 2021","id":1391444823819829249,"id_str":"1391444823819829249","text":"@MattNegrin - Please backup ur remarks Matt so we can make proper choices ....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattNegrin","name":"Matt - Negrin, HOST OF HARDBALL AT 7PM ON MSNBC","id":15751676,"id_str":"15751676","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1391405732105494539,"in_reply_to_status_id_str":"1391405732105494539","in_reply_to_user_id":15751676,"in_reply_to_user_id_str":"15751676","in_reply_to_screen_name":"MattNegrin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1204749705013530624,"id_str":"1204749705013530624","name":"20 - . 10 . 20","screen_name":"Boogie57663119","location":"Nigeria","description":"Proudly - among the 5% who want a better homeland.\nA Mathematician in love with robots - and Chelsea.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":874,"friends_count":1530,"listed_count":0,"created_at":"Wed - Dec 11 13:09:10 +0000 2019","favourites_count":11209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11397,"lang":null,"status":{"created_at":"Tue - Jan 05 12:33:44 +0000 2021","id":1346434705839845378,"id_str":"1346434705839845378","text":"RT - @olushola_shola: Hope the Buharindins have different electricity rates?! APC - \u1eb9gb\u1eb9\u0301k\u1eb9\u0301gb\u1eb9\u0301 \u1eb9\u0300k\u00e0re","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"olushola_shola","name":"Olushola - Olufolabi","id":1197325068,"id_str":"1197325068","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 05 11:31:06 +0000 2021","id":1346418944240975878,"id_str":"1346418944240975878","text":"Hope - the Buharindins have different electricity rates?! APC \u1eb9gb\u1eb9\u0301k\u1eb9\u0301gb\u1eb9\u0301 - \u1eb9\u0300k\u00e0re","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":191,"favorited":false,"retweeted":false,"lang":"ca"},"is_quote_status":false,"retweet_count":52,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324554214777999360\/WMYLKu15_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324554214777999360\/WMYLKu15_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204749705013530624\/1603788268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1007331,"id_str":"1007331","name":"jennifer","screen_name":"jenkinsforprez","location":"miami","description":"Ain\u2019t - nothing nice","url":"https:\/\/t.co\/u1wzo4Z8vk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/u1wzo4Z8vk","expanded_url":"http:\/\/beingjenniferjenkins.com","display_url":"beingjenniferjenkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1590,"friends_count":2237,"listed_count":40,"created_at":"Mon - Mar 12 12:59:20 +0000 2007","favourites_count":8440,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7240,"lang":null,"status":{"created_at":"Fri - Mar 25 15:24:03 +0000 2022","id":1507377782376079366,"id_str":"1507377782376079366","text":"RT - @jaiyagill: i\u2019m not ghosting you, i\u2019m ghosting everyone","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jaiyagill","name":"jaiya","id":768077874,"id_str":"768077874","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:20:57 +0000 2022","id":1507135410299760676,"id_str":"1507135410299760676","text":"i\u2019m - not ghosting you, i\u2019m ghosting everyone","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":591,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":44,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D1D1D1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209381959262253056\/DW_3xq-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209381959262253056\/DW_3xq-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007331\/1571699161","profile_link_color":"444444","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250818020622036992,"id_str":"1250818020622036992","name":"Willquim","screen_name":"willquim","location":"","description":"Country - Over Party","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":210,"listed_count":0,"created_at":"Thu - Apr 16 16:07:25 +0000 2020","favourites_count":3894,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4679,"lang":null,"status":{"created_at":"Thu - May 27 17:16:49 +0000 2021","id":1397965023188713475,"id_str":"1397965023188713475","text":"@ProjectLincoln - Why TF is this former guy always squinting?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1397907976875347973,"in_reply_to_status_id_str":"1397907976875347973","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360773557521838081\/RvwWwT1R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360773557521838081\/RvwWwT1R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242962793319538694,"id_str":"1242962793319538694","name":"NSAWAM - STADIUM \ud83c\udfdf","screen_name":"itz_kay_Joy","location":"Manitoba, Canada","description":"Mijoy - \ud83c\udf39","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1201,"friends_count":1362,"listed_count":0,"created_at":"Wed - Mar 25 23:56:15 +0000 2020","favourites_count":30418,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6189,"lang":null,"status":{"created_at":"Fri - Mar 25 21:37:37 +0000 2022","id":1507471793996673025,"id_str":"1507471793996673025","text":"RT - @alex_djiku: Last Settings \u2699\ufe0f \ud83c\uddec\ud83c\udded\n#AD23 #BlackStars - #Ghana https:\/\/t.co\/HBU6AcJWyp","truncated":false,"entities":{"hashtags":[{"text":"AD23","indices":[36,41]},{"text":"BlackStars","indices":[42,53]},{"text":"Ghana","indices":[54,60]}],"symbols":[],"user_mentions":[{"screen_name":"alex_djiku","name":"Alexander - Djiku","id":762617753618542592,"id_str":"762617753618542592","indices":[3,14]}],"urls":[],"media":[{"id":1507066015934521351,"id_str":"1507066015934521351","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":455,"resize":"fit"},"large":{"w":683,"h":455,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507066050613067785,"source_status_id_str":"1507066050613067785","source_user_id":762617753618542592,"source_user_id_str":"762617753618542592"}]},"extended_entities":{"media":[{"id":1507066015934521351,"id_str":"1507066015934521351","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":455,"resize":"fit"},"large":{"w":683,"h":455,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1507066050613067785,"source_status_id_str":"1507066050613067785","source_user_id":762617753618542592,"source_user_id_str":"762617753618542592"},{"id":1507066015938715656,"id_str":"1507066015938715656","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoUXIAgyraa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoUXIAgyraa.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":684,"h":457,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":684,"h":457,"resize":"fit"}},"source_status_id":1507066050613067785,"source_status_id_str":"1507066050613067785","source_user_id":762617753618542592,"source_user_id_str":"762617753618542592"},{"id":1507066015947055110,"id_str":"1507066015947055110","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoWWYAY6uh0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoWWYAY6uh0.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":457,"resize":"fit"},"medium":{"w":684,"h":457,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"source_status_id":1507066050613067785,"source_status_id_str":"1507066050613067785","source_user_id":762617753618542592,"source_user_id_str":"762617753618542592"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:45:21 +0000 2022","id":1507066050613067785,"id_str":"1507066050613067785","text":"Last - Settings \u2699\ufe0f \ud83c\uddec\ud83c\udded\n#AD23 #BlackStars #Ghana https:\/\/t.co\/HBU6AcJWyp","truncated":false,"entities":{"hashtags":[{"text":"AD23","indices":[20,25]},{"text":"BlackStars","indices":[26,37]},{"text":"Ghana","indices":[38,44]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507066015934521351,"id_str":"1507066015934521351","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":455,"resize":"fit"},"large":{"w":683,"h":455,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507066015934521351,"id_str":"1507066015934521351","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoTXIAcT7hz.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":455,"resize":"fit"},"large":{"w":683,"h":455,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}},{"id":1507066015938715656,"id_str":"1507066015938715656","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoUXIAgyraa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoUXIAgyraa.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":684,"h":457,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":684,"h":457,"resize":"fit"}}},{"id":1507066015947055110,"id_str":"1507066015947055110","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/FOosjoWWYAY6uh0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOosjoWWYAY6uh0.jpg","url":"https:\/\/t.co\/HBU6AcJWyp","display_url":"pic.twitter.com\/HBU6AcJWyp","expanded_url":"https:\/\/twitter.com\/alex_djiku\/status\/1507066050613067785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":457,"resize":"fit"},"medium":{"w":684,"h":457,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":651,"favorite_count":7655,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":651,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1407414704750968842\/7Zo-1P-z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1407414704750968842\/7Zo-1P-z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1242962793319538694\/1614765533","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4050942826,"id_str":"4050942826","name":"Bruno - Andrade","screen_name":"PortoBESA","location":"Montr\u00e9al, Qu\u00e9bec","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":513,"listed_count":1,"created_at":"Tue - Oct 27 04:12:07 +0000 2015","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Tue - Oct 19 13:36:49 +0000 2021","id":1450455899412258821,"id_str":"1450455899412258821","text":"@Nuck - Same for the apple tv app. What a fail...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nuck","name":"Mark - \ud83c\udde8\ud83c\udde6\ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":17725189,"id_str":"17725189","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1450447933363703809,"in_reply_to_status_id_str":"1450447933363703809","in_reply_to_user_id":17725189,"in_reply_to_user_id_str":"17725189","in_reply_to_screen_name":"Nuck","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775376156044455937\/B1De3uXK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775376156044455937\/B1De3uXK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4050942826\/1473699039","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889370138193121280,"id_str":"889370138193121280","name":"Gideon","screen_name":"Gideonmasta","location":"New - York, USA","description":"Hip-Hop\/Rap Politics Music R&B\/Soul Pop Health - NBA eSports Hip-Hop\/Rap Music Soccer Travel Games Television NBA","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":21,"friends_count":1634,"listed_count":0,"created_at":"Mon - Jul 24 06:22:19 +0000 2017","favourites_count":4514,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479575866862718982\/yguUmFbG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479575866862718982\/yguUmFbG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/889370138193121280\/1573641324","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1894522104,"id_str":"1894522104","name":"Jessica - Alcorn","screen_name":"JessicaLAlcorn","location":"","description":"A southern - girl navigating her way through the ins and outs of Madrid.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":222,"listed_count":1,"created_at":"Sun - Sep 22 17:53:46 +0000 2013","favourites_count":109,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Fri - Jul 31 15:44:04 +0000 2015","id":627142692938625025,"id_str":"627142692938625025","text":"@Skyd_LiamRosen - Saludos desde Espa\u00f1a Liam!! Una predicci\u00f3n para el puesto final - de Espa\u00f1a mixto?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Skyd_LiamRosen","name":"Liam - Rosen","id":849528672,"id_str":"849528672","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":849528672,"in_reply_to_user_id_str":"849528672","in_reply_to_screen_name":"Skyd_LiamRosen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000494002025\/66d0e393d5e7e944ae1ac52bfa1665ca_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000494002025\/66d0e393d5e7e944ae1ac52bfa1665ca_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2764516613,"id_str":"2764516613","name":"lily","screen_name":"lilswannk","location":"h","description":"#V","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":393,"listed_count":1,"created_at":"Mon - Sep 08 04:14:52 +0000 2014","favourites_count":8562,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6357,"lang":null,"status":{"created_at":"Sat - Feb 05 11:23:12 +0000 2022","id":1489922550297726978,"id_str":"1489922550297726978","text":"RT - @VERTEXISO2: them niggas was sliding the tahoe??? https:\/\/t.co\/zuLhWNYkT3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VERTEXISO2","name":"1221","id":1377031803802951685,"id_str":"1377031803802951685","indices":[3,14]}],"urls":[],"media":[{"id":1489306483825205252,"id_str":"1489306483825205252","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","url":"https:\/\/t.co\/zuLhWNYkT3","display_url":"pic.twitter.com\/zuLhWNYkT3","expanded_url":"https:\/\/twitter.com\/VERTEXISO2\/status\/1489306513915224064\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":560,"h":560,"resize":"fit"},"small":{"w":560,"h":560,"resize":"fit"},"large":{"w":560,"h":560,"resize":"fit"}},"source_status_id":1489306513915224064,"source_status_id_str":"1489306513915224064","source_user_id":1377031803802951685,"source_user_id_str":"1377031803802951685"}]},"extended_entities":{"media":[{"id":1489306483825205252,"id_str":"1489306483825205252","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","url":"https:\/\/t.co\/zuLhWNYkT3","display_url":"pic.twitter.com\/zuLhWNYkT3","expanded_url":"https:\/\/twitter.com\/VERTEXISO2\/status\/1489306513915224064\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":560,"h":560,"resize":"fit"},"small":{"w":560,"h":560,"resize":"fit"},"large":{"w":560,"h":560,"resize":"fit"}},"source_status_id":1489306513915224064,"source_status_id_str":"1489306513915224064","source_user_id":1377031803802951685,"source_user_id_str":"1377031803802951685","video_info":{"aspect_ratio":[1,1],"duration_millis":20465,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/vid\/560x560\/DsQ_jwTcOBzat0qZ.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/vid\/320x320\/e-8RloEwpHQgHn7r.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/pl\/W7zjDMkafnX_X44d.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 03 18:35:17 +0000 2022","id":1489306513915224064,"id_str":"1489306513915224064","text":"them - niggas was sliding the tahoe??? https:\/\/t.co\/zuLhWNYkT3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1489306483825205252,"id_str":"1489306483825205252","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","url":"https:\/\/t.co\/zuLhWNYkT3","display_url":"pic.twitter.com\/zuLhWNYkT3","expanded_url":"https:\/\/twitter.com\/VERTEXISO2\/status\/1489306513915224064\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":560,"h":560,"resize":"fit"},"small":{"w":560,"h":560,"resize":"fit"},"large":{"w":560,"h":560,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1489306483825205252,"id_str":"1489306483825205252","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1489306483825205252\/pu\/img\/jPOKk_SpqFY4gcLa.jpg","url":"https:\/\/t.co\/zuLhWNYkT3","display_url":"pic.twitter.com\/zuLhWNYkT3","expanded_url":"https:\/\/twitter.com\/VERTEXISO2\/status\/1489306513915224064\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":560,"h":560,"resize":"fit"},"small":{"w":560,"h":560,"resize":"fit"},"large":{"w":560,"h":560,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":20465,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/vid\/560x560\/DsQ_jwTcOBzat0qZ.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/vid\/320x320\/e-8RloEwpHQgHn7r.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1489306483825205252\/pu\/pl\/W7zjDMkafnX_X44d.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7563,"favorite_count":46024,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7563,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329289795714027520\/KbcIVqnj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329289795714027520\/KbcIVqnj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2764516613\/1575431516","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":748209032322637824,"id_str":"748209032322637824","name":"Matt - Furber","screen_name":"matt_furber","location":"Minneapolis","description":"freelance - reporter and feature writer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":323,"friends_count":1791,"listed_count":0,"created_at":"Wed - Jun 29 17:38:29 +0000 2016","favourites_count":790,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1339,"lang":null,"status":{"created_at":"Wed - Mar 23 13:41:47 +0000 2022","id":1506627271620276237,"id_str":"1506627271620276237","text":"RT - @timkmak: Good morning from Ukraine. \n\nKyiv remains in Ukrainian hands, - but was shelled overnight in the Svyiatoshynsky and Shevchenkivs\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"timkmak","name":"Tim - Mak","id":17907987,"id_str":"17907987","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 11:54:57 +0000 2022","id":1506600385204695046,"id_str":"1506600385204695046","text":"Good - morning from Ukraine. \n\nKyiv remains in Ukrainian hands, but was shelled - overnight in the Svyiatoshynsky and S\u2026 https:\/\/t.co\/G1v4OoEwlb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/G1v4OoEwlb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506600385204695046","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3165,"favorite_count":19650,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3165,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/751966614036189184\/TNBNyJ7T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/751966614036189184\/TNBNyJ7T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/748209032322637824\/1468141040","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":244016774,"id_str":"244016774","name":"Dinesh - Chandra","screen_name":"dinesh728","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":758,"listed_count":0,"created_at":"Fri - Jan 28 09:35:16 +0000 2011","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3244977402,"id_str":"3244977402","name":"C\u20b3rdano$ky\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83c\udf4d","screen_name":"DigitalCoins4me","location":"Redmond, - WA","description":"Space Lover Vegan Resistor World Traveler \u2708\ufe0fCrypto - Investor.\ud83d\udcb0\ud83c\udf0e #Cardano is the Way.\ud83d\ude80\u20b3D\u20b3 - #Cardano #EGLD herotag @skydancer ada handle= $cardanosky \ud83c\uddfa\ud83c\udde6","url":"https:\/\/t.co\/txHYCtRLoz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txHYCtRLoz","expanded_url":"https:\/\/greenpoweredliving.com","display_url":"greenpoweredliving.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1443,"friends_count":3544,"listed_count":17,"created_at":"Sun - Jun 14 10:10:16 +0000 2015","favourites_count":16686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6560,"lang":null,"status":{"created_at":"Fri - Mar 25 13:45:04 +0000 2022","id":1507352872685502469,"id_str":"1507352872685502469","text":"@EerikNKross - That guy must have been really \"on track\" with his unit","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EerikNKross","name":"Eerik - N Kross","id":45641327,"id_str":"45641327","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506929081614581767,"in_reply_to_status_id_str":"1506929081614581767","in_reply_to_user_id":45641327,"in_reply_to_user_id_str":"45641327","in_reply_to_screen_name":"EerikNKross","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490873397965774853\/TP-3ES8J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490873397965774853\/TP-3ES8J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244977402\/1591497677","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288586172005056514,"id_str":"1288586172005056514","name":"NSM - OH-GEEZ\ud83d\udca6\ud83c\uddf2\ud83c\uddfe\ud83c\uddf3\ud83c\uddec","screen_name":"OHGEEZ19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":247,"listed_count":0,"created_at":"Wed - Jul 29 21:24:44 +0000 2020","favourites_count":169,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Thu - Oct 08 19:29:23 +0000 2020","id":1314286788563927044,"id_str":"1314286788563927044","text":"RT - @i_am_koranteng: A woman had 3 children, Pat, Mat & Tat.\nMat sucked from - the right and Pat sucked from the left.\nMoral of the story: Som\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"i_am_koranteng","name":"STEPHEN\u2122 - \ud83c\uddec\ud83c\udded\u264f\ufe0f","id":637439826,"id_str":"637439826","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 08 19:17:36 +0000 2020","id":1314283822800941056,"id_str":"1314283822800941056","text":"A - woman had 3 children, Pat, Mat & Tat.\nMat sucked from the right and Pat - sucked from the left.\nMoral of the story:\u2026 https:\/\/t.co\/XHQAlr6pjA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XHQAlr6pjA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1314283822800941056","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":202,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":108,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300871684044607490\/9Ebgi9px_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300871684044607490\/9Ebgi9px_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823233191473463298,"id_str":"823233191473463298","name":"Dez - Miller | Art \ud83e\udd96\ud83c\udf4b","screen_name":"DinoLimes","location":"Who - knows? \ud83d\ude43 ","description":"BG\/Visdev Artist \ud83e\udeb4 | SCAD - ILLU \u201823 \ud83d\udc1d | Comms: OPEN","url":"https:\/\/t.co\/jJEitzajEc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jJEitzajEc","expanded_url":"http:\/\/dinolimes.carrd.co","display_url":"dinolimes.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":554,"friends_count":942,"listed_count":9,"created_at":"Sun - Jan 22 18:17:42 +0000 2017","favourites_count":4365,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1355,"lang":null,"status":{"created_at":"Tue - Dec 14 22:09:52 +0000 2021","id":1470878732726542336,"id_str":"1470878732726542336","text":"@Deka_Boomz - This man is worth the world and I will never let him go lol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Deka_Boomz","name":"Deka__ - -\u30a4\u30e9\u30b9\u30c8pokemon artguy- (art classes in bio)","id":1037976516548866048,"id_str":"1037976516548866048","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470865670422237187,"in_reply_to_status_id_str":"1470865670422237187","in_reply_to_user_id":1037976516548866048,"in_reply_to_user_id_str":"1037976516548866048","in_reply_to_screen_name":"Deka_Boomz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469510828885958660\/6Tk8C80o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469510828885958660\/6Tk8C80o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823233191473463298\/1626300127","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1102556504165679104,"id_str":"1102556504165679104","name":"shellya918","screen_name":"shellya918","location":"Philadelphia, - PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":197,"listed_count":0,"created_at":"Mon - Mar 04 13:08:49 +0000 2019","favourites_count":3613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Dec 26 02:55:06 +0000 2020","id":1342665211384356866,"id_str":"1342665211384356866","text":"@KFILE - So very sorry for your loss. She is now an angel in heaven. I pray that you - will be blessed with the faith a\u2026 https:\/\/t.co\/rfIAWaWvD5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KFILE","name":"andrew - kaczynski","id":326255267,"id_str":"326255267","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/rfIAWaWvD5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1342665211384356866","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1342523811535712258,"in_reply_to_status_id_str":"1342523811535712258","in_reply_to_user_id":326255267,"in_reply_to_user_id_str":"326255267","in_reply_to_screen_name":"KFILE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2467139815,"id_str":"2467139815","name":"FBR\ud83d\udd25","screen_name":"micheletristan","location":"United - States","description":"RESISTOR \ud83d\udd25\ud83d\udc99! Veteran husband. - #climatechange \ud83c\udf0a\ud83c\udf0e WE MUST ACT NOW!!!! Love under\ud83d\udc36 - \ud83e\udd13 \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff4\u200d\u2620\ufe0f. - GEOLOGY RULES THE UNIVERSE, what is your eutectic?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":1648,"listed_count":0,"created_at":"Mon - Apr 28 03:14:35 +0000 2014","favourites_count":8797,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5150,"lang":null,"status":{"created_at":"Thu - Mar 10 12:38:17 +0000 2022","id":1501900246921719814,"id_str":"1501900246921719814","text":"RT - @AmoneyResists: @MollyJongFast P.S. Stop doing drugs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmoneyResists","name":"Andrew - Wortman \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8","id":739844197935644672,"id_str":"739844197935644672","indices":[3,17]},{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[19,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 00:33:31 +0000 2022","id":1501717852834914308,"id_str":"1501717852834914308","text":"@MollyJongFast - P.S. Stop doing drugs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501716228297179138,"in_reply_to_status_id_str":"1501716228297179138","in_reply_to_user_id":739844197935644672,"in_reply_to_user_id_str":"739844197935644672","in_reply_to_screen_name":"AmoneyResists","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":1192,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350756485089918976\/JqjwPO6Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350756485089918976\/JqjwPO6Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467139815\/1611225940","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2264349255,"id_str":"2264349255","name":"Michael","screen_name":"mikenjnyc","location":"Union - County, New Jersey","description":"In fantasy I see a just world.There everyone - lives in peace and honesty.I dream of souls that are always free. Like the - clouds that fly full of humanity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":416,"friends_count":1005,"listed_count":1,"created_at":"Sun - Jan 05 22:39:21 +0000 2014","favourites_count":4802,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4559,"lang":null,"status":{"created_at":"Thu - Mar 24 16:39:21 +0000 2022","id":1507034343495057408,"id_str":"1507034343495057408","text":"RT - @martyargyle1: The Dallas News reported that Lindsey Graham took $800,000 - from a Russian oligarch. But not to be out done Scott Walker t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"martyargyle1","name":"martyargyle - \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":947432040860934144,"id_str":"947432040860934144","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:43:25 +0000 2022","id":1506703178682798088,"id_str":"1506703178682798088","text":"The - Dallas News reported that Lindsey Graham took $800,000 from a Russian oligarch. - But not to be out done Scott Wa\u2026 https:\/\/t.co\/s0byqNlIXF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s0byqNlIXF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506703178682798088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20334,"favorite_count":43250,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":20334,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479136240222015489\/l841xZdb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479136240222015489\/l841xZdb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264349255\/1638283105","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2998767646,"id_str":"2998767646","name":"kikitataxaliamas","screen_name":"kikostel69","location":"Greece!","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1933,"friends_count":1405,"listed_count":4,"created_at":"Sun - Jan 25 22:14:03 +0000 2015","favourites_count":287493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123596,"lang":null,"status":{"created_at":"Sat - Mar 26 07:12:42 +0000 2022","id":1507616516187033603,"id_str":"1507616516187033603","text":"RT - @stelpliakis: \u0397 \u0398\u03b5\u03b1\u03bd\u03ce \u03a6\u03c9\u03c4\u03af\u03bf\u03c5 - \u03b1\u03c0\u03b1\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 - \u03c4\u03b7\u03c2 \u039d\u0394 \u03cc\u03c4\u03b9 \u03b4\u03b9\u03ad\u03b8\u03b5\u03c3\u03b5 - \u03c4\u03b7\u03bb\u03b5\u03c6\u03c9\u03bd\u03b9\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae - \u03c3\u03c4\u03b7\u03bd \u00ab\u0391\u03bb\u03bb\u03b7\u03bb\u03b5\u03b3\u03b3\u03cd\u03b7 - \u03b3\u03b9\u03b1 \u038c\u03bb\u03bf\u03c5\u03c2\u00bb \u03bf\u03b9 \u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03ad\u03c2 - \u03c4\u03bf\u03c5 \u03a3\u03a5\u03a1\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stelpliakis","name":"\u03a0\u03bb\u03b9\u03ac\u03ba\u03b7\u03c2 - \u03a3\u03c4\u03ad\u03bb\u03b9\u03bf\u03c2","id":1426963204543033347,"id_str":"1426963204543033347","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:40:23 +0000 2022","id":1507412089450680334,"id_str":"1507412089450680334","text":"\u0397 - \u0398\u03b5\u03b1\u03bd\u03ce \u03a6\u03c9\u03c4\u03af\u03bf\u03c5 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ac - \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 - \u03c4\u03b7\u03c2 \u039d\u0394 \u03cc\u03c4\u03b9 \u03b4\u03b9\u03ad\u03b8\u03b5\u03c3\u03b5 - \u03c4\u03b7\u03bb\u03b5\u03c6\u03c9\u03bd\u03b9\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae - \u03c3\u03c4\u03b7\u03bd \u00ab\u0391\u03bb\u03bb\u03b7\u03bb\u03b5\u03b3\u03b3\u03cd\u03b7 - \u03b3\u03b9\u03b1 \u038c\u03bb\u03bf\u03c5\u03c2\u00bb \u03bf\u03b9 \u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03ad\u03c2\u2026 - https:\/\/t.co\/tmoXV9DLhA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tmoXV9DLhA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507412089450680334","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"el"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649188884048441344\/-8NN6HiS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649188884048441344\/-8NN6HiS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998767646\/1443598520","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":258590390,"id_str":"258590390","name":"Nancy - Heffernan","screen_name":"pagecoffey","location":"Hanover, NH","description":"One - time teacher more recently a writer of history and fiction. Lover of family, - friends, literature, and art, and liberal politics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1412,"friends_count":1625,"listed_count":6,"created_at":"Mon - Feb 28 01:47:46 +0000 2011","favourites_count":22486,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11645,"lang":null,"status":{"created_at":"Fri - Mar 25 19:30:52 +0000 2022","id":1507439894393761806,"id_str":"1507439894393761806","text":"RT - @AdamParkhomenko: This one needs more views: https:\/\/t.co\/vxxeZ2NNE3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamParkhomenko","name":"Adam - Parkhomenko","id":18382184,"id_str":"18382184","indices":[3,19]}],"urls":[],"media":[{"id":1494807026777706502,"id_str":"1494807026777706502","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","url":"https:\/\/t.co\/vxxeZ2NNE3","display_url":"pic.twitter.com\/vxxeZ2NNE3","expanded_url":"https:\/\/twitter.com\/HRC\/status\/1496175453870170113\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1496175453870170113,"source_status_id_str":"1496175453870170113","source_user_id":19608297,"source_user_id_str":"19608297"}]},"extended_entities":{"media":[{"id":1494807026777706502,"id_str":"1494807026777706502","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","url":"https:\/\/t.co\/vxxeZ2NNE3","display_url":"pic.twitter.com\/vxxeZ2NNE3","expanded_url":"https:\/\/twitter.com\/HRC\/status\/1496175453870170113\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1496175453870170113,"source_status_id_str":"1496175453870170113","source_user_id":19608297,"source_user_id_str":"19608297","video_info":{"aspect_ratio":[1,1],"duration_millis":226083,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/540x540\/_BXJkp59rIn4ZIBR.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/320x320\/zvl-LQwsmJb4QTp_.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/720x720\/3hefVeb3UmcifV24.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/pl\/slHwGfg4PWrso-XB.m3u8?tag=14&container=fmp4"}]},"additional_media_info":{"title":"Kentucky - Legislator & Mom Speaks Out Against Anti-Trans Bill","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:58:07 +0000 2022","id":1507220261061419009,"id_str":"1507220261061419009","text":"This - one needs more views: https:\/\/t.co\/vxxeZ2NNE3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1494807026777706502,"id_str":"1494807026777706502","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","url":"https:\/\/t.co\/vxxeZ2NNE3","display_url":"pic.twitter.com\/vxxeZ2NNE3","expanded_url":"https:\/\/twitter.com\/HRC\/status\/1496175453870170113\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1496175453870170113,"source_status_id_str":"1496175453870170113","source_user_id":19608297,"source_user_id_str":"19608297"}]},"extended_entities":{"media":[{"id":1494807026777706502,"id_str":"1494807026777706502","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1494807026777706502\/img\/3ocZNmvhI75GyRwS.jpg","url":"https:\/\/t.co\/vxxeZ2NNE3","display_url":"pic.twitter.com\/vxxeZ2NNE3","expanded_url":"https:\/\/twitter.com\/HRC\/status\/1496175453870170113\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1496175453870170113,"source_status_id_str":"1496175453870170113","source_user_id":19608297,"source_user_id_str":"19608297","video_info":{"aspect_ratio":[1,1],"duration_millis":226083,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/540x540\/_BXJkp59rIn4ZIBR.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/320x320\/zvl-LQwsmJb4QTp_.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/vid\/720x720\/3hefVeb3UmcifV24.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1494807026777706502\/pl\/slHwGfg4PWrso-XB.m3u8?tag=14&container=fmp4"}]},"additional_media_info":{"title":"Kentucky - Legislator & Mom Speaks Out Against Anti-Trans Bill","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507205678942900225,"in_reply_to_status_id_str":"1507205678942900225","in_reply_to_user_id":18382184,"in_reply_to_user_id_str":"18382184","in_reply_to_screen_name":"AdamParkhomenko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":427,"favorite_count":1121,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":427,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/933863167062609920\/VmMAgSB7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/933863167062609920\/VmMAgSB7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258590390\/1511485305","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3101459387,"id_str":"3101459387","name":"Mmm","screen_name":"meabbm","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":427,"listed_count":0,"created_at":"Sat - Mar 21 09:58:34 +0000 2015","favourites_count":203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":77,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":905048828818141185,"id_str":"905048828818141185","name":"Adeeko - Oluyemi","screen_name":"AdeekoOluyemi2","location":"Ibadan","description":"adeekooluyemi@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":113,"listed_count":0,"created_at":"Tue - Sep 05 12:43:50 +0000 2017","favourites_count":394,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Wed - Jun 02 07:52:55 +0000 2021","id":1399997443228438529,"id_str":"1399997443228438529","text":"@kayodeadaramodu - Happy new Month to you. May the Lord guide and guard you at all times.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kayodeadaramodu","name":"Kayode - Adaramodu","id":174761911,"id_str":"174761911","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1399691134658658306,"in_reply_to_status_id_str":"1399691134658658306","in_reply_to_user_id":174761911,"in_reply_to_user_id_str":"174761911","in_reply_to_screen_name":"kayodeadaramodu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340423907996786689\/TW45ZZxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340423907996786689\/TW45ZZxe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1009815914,"id_str":"1009815914","name":"GuyFawkes","screen_name":"AdamsAvril","location":"","description":"Author","url":"http:\/\/t.co\/q7lDFXwMra","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/q7lDFXwMra","expanded_url":"http:\/\/avriladamsfiction.com\/","display_url":"avriladamsfiction.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":510,"listed_count":2,"created_at":"Thu - Dec 13 22:01:06 +0000 2012","favourites_count":1803,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16217,"lang":null,"status":{"created_at":"Thu - Mar 24 23:48:31 +0000 2022","id":1507142345711448090,"id_str":"1507142345711448090","text":"Wonder - how much they paid her. https:\/\/t.co\/clZ0SG0zLL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/clZ0SG0zLL","expanded_url":"https:\/\/twitter.com\/forthecomments1\/status\/1507008525838389260","display_url":"twitter.com\/forthecomments\u2026","indices":[31,54]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507008525838389260,"quoted_status_id_str":"1507008525838389260","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009815914\/1509755878","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":127427697,"id_str":"127427697","name":"Just - \"Bear\"","screen_name":"67chevota","location":"91770","description":"Motorhead - Fan, Legal Grower, Cat Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1833,"friends_count":4942,"listed_count":3,"created_at":"Mon - Mar 29 04:53:39 +0000 2010","favourites_count":92614,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14306,"lang":null,"status":{"created_at":"Fri - Mar 25 15:07:50 +0000 2022","id":1507373699590070275,"id_str":"1507373699590070275","text":"Wendy - O. Williams - Bump ''n'' Grind (Live In London, 1985) https:\/\/t.co\/v70ENeukcL - via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[86,94]}],"urls":[{"url":"https:\/\/t.co\/v70ENeukcL","expanded_url":"https:\/\/youtu.be\/s1kHZLfCcEw","display_url":"youtu.be\/s1kHZLfCcEw","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"e6fc035b8939bd3b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e6fc035b8939bd3b.json","place_type":"city","name":"Arcadia","full_name":"Arcadia, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-118.0694603,34.0870588],[-117.9921804,34.0870588],[-117.9921804,34.1805068],[-118.0694603,34.1805068]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477747343076184067\/OUuS17h3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477747343076184067\/OUuS17h3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127427697\/1611720280","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":192689627,"id_str":"192689627","name":"Ludi - \ud83d\udc3a","screen_name":"LudinLdn","location":"Up The Bracket","description":"misanthropic - humanist, polytheist, music addict, tech junkie, & proud Lyondoner \ud83c\uddeb\ud83c\uddf7\ud83c\uddec\ud83c\udde7\ud83d\udda4\ud83c\udfb6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":815,"friends_count":1128,"listed_count":299,"created_at":"Sun - Sep 19 21:52:07 +0000 2010","favourites_count":10114,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14730,"lang":null,"status":{"created_at":"Thu - Mar 10 14:39:00 +0000 2022","id":1501930628102574086,"id_str":"1501930628102574086","text":"RT - @CWStoneman: Ok we\u2019re back to where we started. What\u2019s next? Exciting. - https:\/\/t.co\/HHZxdf0Xst","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CWStoneman","name":"Chris - Stoneman","id":34255870,"id_str":"34255870","indices":[3,14]}],"urls":[],"media":[{"id":1501679695951183876,"id_str":"1501679695951183876","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","url":"https:\/\/t.co\/HHZxdf0Xst","display_url":"pic.twitter.com\/HHZxdf0Xst","expanded_url":"https:\/\/twitter.com\/CWStoneman\/status\/1501679702016147467\/photo\/1","type":"photo","sizes":{"large":{"w":2038,"h":1426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":476,"resize":"fit"},"medium":{"w":1200,"h":840,"resize":"fit"}},"source_status_id":1501679702016147467,"source_status_id_str":"1501679702016147467","source_user_id":34255870,"source_user_id_str":"34255870"}]},"extended_entities":{"media":[{"id":1501679695951183876,"id_str":"1501679695951183876","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","url":"https:\/\/t.co\/HHZxdf0Xst","display_url":"pic.twitter.com\/HHZxdf0Xst","expanded_url":"https:\/\/twitter.com\/CWStoneman\/status\/1501679702016147467\/photo\/1","type":"photo","sizes":{"large":{"w":2038,"h":1426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":476,"resize":"fit"},"medium":{"w":1200,"h":840,"resize":"fit"}},"source_status_id":1501679702016147467,"source_status_id_str":"1501679702016147467","source_user_id":34255870,"source_user_id_str":"34255870"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 22:01:55 +0000 2022","id":1501679702016147467,"id_str":"1501679702016147467","text":"Ok - we\u2019re back to where we started. What\u2019s next? Exciting. https:\/\/t.co\/HHZxdf0Xst","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501679695951183876,"id_str":"1501679695951183876","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","url":"https:\/\/t.co\/HHZxdf0Xst","display_url":"pic.twitter.com\/HHZxdf0Xst","expanded_url":"https:\/\/twitter.com\/CWStoneman\/status\/1501679702016147467\/photo\/1","type":"photo","sizes":{"large":{"w":2038,"h":1426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":476,"resize":"fit"},"medium":{"w":1200,"h":840,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501679695951183876,"id_str":"1501679695951183876","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNcJuiuWQAQKuRx.jpg","url":"https:\/\/t.co\/HHZxdf0Xst","display_url":"pic.twitter.com\/HHZxdf0Xst","expanded_url":"https:\/\/twitter.com\/CWStoneman\/status\/1501679702016147467\/photo\/1","type":"photo","sizes":{"large":{"w":2038,"h":1426,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":476,"resize":"fit"},"medium":{"w":1200,"h":840,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496828135261757445\/KcKly9vm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496828135261757445\/KcKly9vm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192689627\/1490655249","profile_link_color":"7928A1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":323817402,"id_str":"323817402","name":"Adesanya - michael","screen_name":"michaelbobbyy","location":"Nigeria","description":"am - easy going person...from family of three","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":562,"listed_count":0,"created_at":"Sat - Jun 25 13:46:42 +0000 2011","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Mon - Jan 31 09:42:33 +0000 2022","id":1488085282977112065,"id_str":"1488085282977112065","text":"@OrdegaF - This Swag no b small thing","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OrdegaF","name":"ordega - francisca","id":2313023074,"id_str":"2313023074","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1488054669607948290,"in_reply_to_status_id_str":"1488054669607948290","in_reply_to_user_id":2313023074,"in_reply_to_user_id_str":"2313023074","in_reply_to_screen_name":"OrdegaF","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1087057328640278529\/SU4xF6HF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1087057328640278529\/SU4xF6HF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4370836156,"id_str":"4370836156","name":"POLITICAL - MESSIAH \ud83c\uddf3\ud83c\uddec S.O.H \ud83c\udf0d","screen_name":"emjayunit","location":"Abuja, - Nigeria","description":"Our thought is who We Are","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":456,"friends_count":4979,"listed_count":1,"created_at":"Fri - Dec 04 09:40:11 +0000 2015","favourites_count":25377,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26503,"lang":null,"status":{"created_at":"Fri - Mar 25 17:01:57 +0000 2022","id":1507402418723643407,"id_str":"1507402418723643407","text":"RT - @romeospizzang: Hey Romeos Fam!!!\n\nThe WorldCup Qualifications is here, - Watch the action today with a Delicious Box of Romeos Pizza\ud83c\udf55.\n\nP\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"romeospizzang","name":"Romeo''s - Pizza Nigeria","id":1384808926261223424,"id_str":"1384808926261223424","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:47:14 +0000 2022","id":1507353416250667008,"id_str":"1507353416250667008","text":"Hey - Romeos Fam!!!\n\nThe WorldCup Qualifications is here, Watch the action today - with a Delicious Box of Romeos Pizza\u2026 https:\/\/t.co\/GzTlcB93p6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GzTlcB93p6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507353416250667008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506510566013161473\/_uLgSIGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506510566013161473\/_uLgSIGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4370836156\/1516189876","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1040682948444516352,"id_str":"1040682948444516352","name":"YUSUF - ismaila mamza","screen_name":"yusuf_mamza","location":"Federal Capital Territory, - Nig","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":376,"friends_count":4364,"listed_count":2,"created_at":"Fri - Sep 14 19:25:24 +0000 2018","favourites_count":1442,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3260,"lang":null,"status":{"created_at":"Sat - Mar 26 08:21:48 +0000 2022","id":1507633908212510723,"id_str":"1507633908212510723","text":"RT - @APCNigeria: How to access up to 3 Million Naira collateral-free CBN loans - for Small Businesses and Individuals\n\nInterest: 5% per annum\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"APCNigeria","name":"APC - \ud83c\uddf3\ud83c\uddec Support","id":1162687218,"id_str":"1162687218","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 18 09:01:03 +0000 2022","id":1494597822519332865,"id_str":"1494597822519332865","text":"How - to access up to 3 Million Naira collateral-free CBN loans for Small Businesses - and Individuals\n\nInterest: 5% pe\u2026 https:\/\/t.co\/xacluvjiIe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xacluvjiIe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494597822519332865","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":103,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":39,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184729654340530176\/CrpgaxOB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184729654340530176\/CrpgaxOB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1411574822,"id_str":"1411574822","name":"Nancy - Barron","screen_name":"NKeenanBarron","location":"","description":"Mom, art-maker, - believer in community and fierce yard saler. I''ve also been known to swear - a bit.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":637,"friends_count":1894,"listed_count":10,"created_at":"Wed - May 08 00:18:45 +0000 2013","favourites_count":17489,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10994,"lang":null,"status":{"created_at":"Sat - Mar 26 06:53:56 +0000 2022","id":1507611795711746050,"id_str":"1507611795711746050","text":"RT - @PaulCogan: BREAKING: In a HUGE loss for Republican Senators Tom Cotton, Ted - Cruz, Lindsay Graham, and Josh Hawley, officials from the A\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulCogan","name":"Paul - Cogan","id":110194870,"id_str":"110194870","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:05:55 +0000 2022","id":1507388317150683145,"id_str":"1507388317150683145","text":"BREAKING: - In a HUGE loss for Republican Senators Tom Cotton, Ted Cruz, Lindsay Graham, - and Josh Hawley, officials f\u2026 https:\/\/t.co\/Je0CuiekXe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Je0CuiekXe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507388317150683145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8106,"favorite_count":35821,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8106,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/747237591880241152\/cUC4IVP7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747237591880241152\/cUC4IVP7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1411574822\/1466990301","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792260112,"id_str":"792260112","name":"Samandar","screen_name":"SamandarAli1","location":"Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":554,"friends_count":1779,"listed_count":13,"created_at":"Thu - Aug 30 19:42:11 +0000 2012","favourites_count":14950,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4009,"lang":null,"status":{"created_at":"Fri - Mar 25 10:04:45 +0000 2022","id":1507297426033500165,"id_str":"1507297426033500165","text":"RT - @TZM_Official: \u0636\u0644\u0639 \u062f\u0627\u062f\u0648 \u06fe \u0647\u06aa - \u0639\u0648\u0631\u062a \u067e\u0646\u0647\u0646\u062c\u064a \u0645\u0699\u0633 - \u062c\u064a \u0642\u062a\u0644 \u062e\u0644\u0627\u0641 \u0627\u0646\u0635\u0627\u0641 - \u0644\u0627\u0621\u0650 DIG \u062d\u064a\u062f\u0631\u0622\u0628\u0627\u062f - \u062c\u064a \u06af\u0627\u068f\u064a \u067e\u067a\u064a\u0627\u0646 \u0680\u0684\u0646\u062f\u064a - \u0631\u0647\u064a \u067e\u0631 DIG \u0635\u0627\u062d\u0628 \u06af\u0627\u068f\u064a - \u0628\u064a\u0647\u0627\u0631\u064a \u0645\u0638\u0644\u0648\u0645 \u06a9\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TZM_Official","name":"Toufique - Zaman","id":208964156,"id_str":"208964156","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:00:32 +0000 2022","id":1507100071716073472,"id_str":"1507100071716073472","text":"\u0636\u0644\u0639 - \u062f\u0627\u062f\u0648 \u06fe \u0647\u06aa \u0639\u0648\u0631\u062a \u067e\u0646\u0647\u0646\u062c\u064a - \u0645\u0699\u0633 \u062c\u064a \u0642\u062a\u0644 \u062e\u0644\u0627\u0641 - \u0627\u0646\u0635\u0627\u0641 \u0644\u0627\u0621\u0650 DIG \u062d\u064a\u062f\u0631\u0622\u0628\u0627\u062f - \u062c\u064a \u06af\u0627\u068f\u064a \u067e\u067a\u064a\u0627\u0646 \u0680\u0684\u0646\u062f\u064a - \u0631\u0647\u064a \u067e\u0631 DIG \u0635\u0627\u062d\u0628 \u06af\u0627\u068f\u064a - \u0628\u064a\u0647\u0627\u0631\u064a \u0645\u2026 https:\/\/t.co\/KkMO5Z6HpC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KkMO5Z6HpC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507100071716073472","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":173,"favorite_count":293,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"sd"},"is_quote_status":false,"retweet_count":173,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"sd"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016691351503720448\/eULOhlg5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016691351503720448\/eULOhlg5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107386900,"id_str":"1107386900","name":"Rastee10","screen_name":"Rastee10","location":"Accra","description":"A - die hard Chelsea fan who promotes the good name and everything about the club. - Let''s follow each other to grow our fan base together. You follow me, i follow","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":2257,"listed_count":0,"created_at":"Sun - Jan 20 21:47:41 +0000 2013","favourites_count":7295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1272,"lang":null,"status":{"created_at":"Fri - Mar 25 20:36:31 +0000 2022","id":1507456416138903558,"id_str":"1507456416138903558","text":"We - just need to be more clinical in front of goal.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282002415366135810\/SJ5IXt2h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282002415366135810\/SJ5IXt2h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1107386900\/1601734746","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":121009748,"id_str":"121009748","name":"Kerry - McGraw","screen_name":"ciarraieire","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":64,"listed_count":0,"created_at":"Mon - Mar 08 06:33:22 +0000 2010","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sat - Nov 14 19:34:05 +0000 2020","id":1327696324544835585,"id_str":"1327696324544835585","text":"@funder - I\n.n, yomjuw\n \nUv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14247236,"in_reply_to_user_id_str":"14247236","in_reply_to_screen_name":"funder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1082990689602945024,"id_str":"1082990689602945024","name":"Obariance\ud83c\uddf0\ud83c\uddea","screen_name":"felixobash","location":"Nairobi, - Kenya","description":"Am just an enthusiast of change,living life unapologetically || - Lets engange fam","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":292,"listed_count":1,"created_at":"Wed - Jan 09 13:21:16 +0000 2019","favourites_count":6829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":527,"lang":null,"status":{"created_at":"Thu - Feb 03 10:52:18 +0000 2022","id":1489190000067588097,"id_str":"1489190000067588097","text":"@privatefigure_ - Eish \ud83d\ude2d so sorry take heart","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"privatefigure_","name":"Private - Figure","id":906409801,"id_str":"906409801","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1489097656429330433,"in_reply_to_status_id_str":"1489097656429330433","in_reply_to_user_id":906409801,"in_reply_to_user_id_str":"906409801","in_reply_to_screen_name":"privatefigure_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322776876860035074\/IHyJSHW7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322776876860035074\/IHyJSHW7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082990689602945024\/1599936193","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14293417,"id_str":"14293417","name":"Kevin - Brumit","screen_name":"baseballkevin","location":"","description":"Lives in - the original Dodgertown with a Braves fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":228,"listed_count":1,"created_at":"Thu - Apr 03 14:08:32 +0000 2008","favourites_count":769,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":606,"lang":null,"status":{"created_at":"Sat - Dec 04 14:25:33 +0000 2021","id":1467138006788329473,"id_str":"1467138006788329473","text":"@MlbQuarantine - 1985 gm2 NLCS. 19 game winner Orel Hershiser opens and closes the game to - help the Dodgers go 2 up o\u2026 https:\/\/t.co\/gskxiBj8Gs","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MlbQuarantine","name":"MLB - Blackout (fka MLBQuarantine)","id":1241824874693263360,"id_str":"1241824874693263360","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/gskxiBj8Gs","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1467138006788329473","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1466186220195692544,"in_reply_to_status_id_str":"1466186220195692544","in_reply_to_user_id":1241824874693263360,"in_reply_to_user_id_str":"1241824874693263360","in_reply_to_screen_name":"MlbQuarantine","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABF3F5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3189413174\/868f71986127e84b92df79ea348a5b28_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3189413174\/868f71986127e84b92df79ea348a5b28_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14293417\/1410652637","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":918111078550327296,"id_str":"918111078550327296","name":"Bastian\ud83d\udd4a","screen_name":"SanKhid8o8","location":"Accra, - Ghana","description":"Auditor\/ songwriter\/ commercial actor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":1096,"listed_count":0,"created_at":"Wed - Oct 11 13:48:33 +0000 2017","favourites_count":26159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":713,"lang":null,"status":{"created_at":"Wed - Mar 23 09:08:23 +0000 2022","id":1506558464260198403,"id_str":"1506558464260198403","text":"Lol - child\u2019s play https:\/\/t.co\/FUGxoPhDCE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FUGxoPhDCE","expanded_url":"https:\/\/twitter.com\/gambo_ii\/status\/1506223260719063040","display_url":"twitter.com\/gambo_ii\/statu\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506223260719063040,"quoted_status_id_str":"1506223260719063040","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498336485690556416\/RYkGt0Ev_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498336485690556416\/RYkGt0Ev_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918111078550327296\/1609628979","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":976503795864752128,"id_str":"976503795864752128","name":"Andrea - Van Orsouw","screen_name":"AndreaVanOrsouw","location":"Carlsbad, NM","description":"Small - business owner who can\u2019t pronounce \u201centrepreneur\u201d. Living in - New Mexico but can\u2019t do spicy food.","url":"https:\/\/t.co\/07cSxvAad2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/07cSxvAad2","expanded_url":"http:\/\/www.andreavanorsouw.com","display_url":"andreavanorsouw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":229,"listed_count":1,"created_at":"Wed - Mar 21 17:00:22 +0000 2018","favourites_count":997,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":190,"lang":null,"status":{"created_at":"Mon - Mar 21 18:35:39 +0000 2022","id":1505976448976310277,"id_str":"1505976448976310277","text":"@kevinsagirl - The further back you go in our relationship, the lower the bar was \ud83d\ude1c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kevinsagirl","name":"kevin","id":320546714,"id_str":"320546714","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505976016388251651,"in_reply_to_status_id_str":"1505976016388251651","in_reply_to_user_id":320546714,"in_reply_to_user_id_str":"320546714","in_reply_to_screen_name":"kevinsagirl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360737600785498113\/x35dagLS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360737600785498113\/x35dagLS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976503795864752128\/1613260104","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16135726,"id_str":"16135726","name":"eboreland","screen_name":"eboreland","location":"New - York","description":"Politically engaged, people centered, and the ultimate - insurance professional","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":259,"friends_count":1388,"listed_count":0,"created_at":"Thu - Sep 04 21:35:48 +0000 2008","favourites_count":2455,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2178,"lang":null,"status":{"created_at":"Wed - Mar 16 14:55:39 +0000 2022","id":1504109143245869069,"id_str":"1504109143245869069","text":"@Toure - Dumb as a dam doornail, and I hope that the doornail doesn''t feel offended. - This is what happen to people wh\u2026 https:\/\/t.co\/Gev3YTjzCb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Toure","name":"Tour\u00e9","id":18766459,"id_str":"18766459","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/Gev3YTjzCb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504109143245869069","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504107988872798225,"in_reply_to_status_id_str":"1504107988872798225","in_reply_to_user_id":18766459,"in_reply_to_user_id_str":"18766459","in_reply_to_screen_name":"Toure","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046822707491491842\/ukwUbgtk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046822707491491842\/ukwUbgtk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16135726\/1539565414","profile_link_color":"65A88D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3328750797,"id_str":"3328750797","name":"Ishmael - Motlhale","screen_name":"IshmaelMotlhale","location":"South Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":12,"friends_count":592,"listed_count":0,"created_at":"Tue - Jun 16 06:20:01 +0000 2015","favourites_count":119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247154432120426496\/lrqU2zHd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247154432120426496\/lrqU2zHd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328750797\/1586179763","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176248404105674754,"id_str":"1176248404105674754","name":"Veronica - Deutsch","screen_name":"verondeu1","location":"London, UK","description":"Researcher - \u2022 Founder & Director @nannysolidarity \u2022 Organiser @postpandemicch1 - \u2022 WNB Officer @IWGBnannies \u2022 Writing @dopemagazine @novaramedia - @NEF @TheSocReview","url":"https:\/\/t.co\/GfMaUIlRcW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GfMaUIlRcW","expanded_url":"http:\/\/nannysolidaritynetwork.co.uk","display_url":"nannysolidaritynetwork.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":164,"friends_count":176,"listed_count":0,"created_at":"Mon - Sep 23 21:34:16 +0000 2019","favourites_count":2748,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":796,"lang":null,"status":{"created_at":"Fri - Mar 25 15:53:31 +0000 2022","id":1507385198526275627,"id_str":"1507385198526275627","text":"RT - @ApsanaBegumMP: \ud83d\udca5Support Zarah by joining her campaign here\ud83d\udc47\ud83c\udffe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ApsanaBegumMP","name":"Apsana - Begum MP","id":1184537212303630336,"id_str":"1184537212303630336","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:31:06 +0000 2022","id":1507379556382089217,"id_str":"1507379556382089217","text":"\ud83d\udca5Support - Zarah by joining her campaign here\ud83d\udc47\ud83c\udffe https:\/\/t.co\/qVgncLKtlW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qVgncLKtlW","expanded_url":"https:\/\/twitter.com\/zarahsultana\/status\/1507289258461118466","display_url":"twitter.com\/zarahsultana\/s\u2026","indices":[46,69]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507289258461118466,"quoted_status_id_str":"1507289258461118466","retweet_count":84,"favorite_count":343,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507289258461118466,"quoted_status_id_str":"1507289258461118466","retweet_count":84,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263124392030150659\/z3m-NDPA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263124392030150659\/z3m-NDPA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176248404105674754\/1589988176","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":730155907728953348,"id_str":"730155907728953348","name":"Dogslife","screen_name":"jettyratt","location":"Florida, - USA","description":"Retired Insurance Professional","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":356,"listed_count":0,"created_at":"Tue - May 10 22:01:48 +0000 2016","favourites_count":9871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8439,"lang":null,"status":{"created_at":"Fri - Jan 29 12:36:53 +0000 2021","id":1355132807106990080,"id_str":"1355132807106990080","text":"RT - @JohnWDean: Jordan could never win statewide in Ohio. Indeed, he may have - trouble getting reelected in his Gerrymandered district. Jorda\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnWDean","name":"John - W. Dean","id":160010755,"id_str":"160010755","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 29 06:20:51 +0000 2021","id":1355038178193723393,"id_str":"1355038178193723393","text":"Jordan - could never win statewide in Ohio. Indeed, he may have trouble getting reelected - in his Gerrymandered distri\u2026 https:\/\/t.co\/uscqVQwJWy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uscqVQwJWy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1355038178193723393","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter - for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1355034210520727553,"quoted_status_id_str":"1355034210520727553","retweet_count":238,"favorite_count":1173,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1355034210520727553,"quoted_status_id_str":"1355034210520727553","retweet_count":238,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310930879292870656\/nn3DzR_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310930879292870656\/nn3DzR_y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252737696218451977,"id_str":"1252737696218451977","name":"OGKheights","screen_name":"OKheights","location":"","description":"Entropy!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":124,"listed_count":0,"created_at":"Tue - Apr 21 23:15:34 +0000 2020","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Feb 17 11:36:52 +0000 2022","id":1494274646476312580,"id_str":"1494274646476312580","text":"@OccupyDemocrats - Meaningless for millions of others","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1494088035029463041,"in_reply_to_status_id_str":"1494088035029463041","in_reply_to_user_id":878284831,"in_reply_to_user_id_str":"878284831","in_reply_to_screen_name":"OccupyDemocrats","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252738046858067968\/tMKCXRWT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252738046858067968\/tMKCXRWT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":277655409,"id_str":"277655409","name":"Eyup - Ekici","screen_name":"eyekici","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":95,"friends_count":2871,"listed_count":2,"created_at":"Tue - Apr 05 20:13:05 +0000 2011","favourites_count":7079,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1243,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1038478874345123840\/hdWWsw31_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1038478874345123840\/hdWWsw31_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277655409\/1536427851","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":873251168549576704,"id_str":"873251168549576704","name":"Frenchie - Thunderbird","screen_name":"FrenchieThunder","location":"Boston, MA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":762,"listed_count":0,"created_at":"Fri - Jun 09 18:51:17 +0000 2017","favourites_count":17794,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":298,"lang":null,"status":{"created_at":"Wed - Mar 23 22:27:48 +0000 2022","id":1506759647482597379,"id_str":"1506759647482597379","text":"@nicolejusttweet - I choose to believe this is about me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolejusttweet","name":"nico\ud83d\udef8","id":2235311397,"id_str":"2235311397","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506693977042571271,"in_reply_to_status_id_str":"1506693977042571271","in_reply_to_user_id":2235311397,"in_reply_to_user_id_str":"2235311397","in_reply_to_screen_name":"nicolejusttweet","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297134990199750656\/mN0G_hvr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297134990199750656\/mN0G_hvr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873251168549576704\/1533217278","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":69185254,"id_str":"69185254","name":"Angel - R Colon","screen_name":"osocolon","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":744,"listed_count":0,"created_at":"Thu - Aug 27 03:13:30 +0000 2009","favourites_count":3954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Sun - Jan 17 19:32:28 +0000 2021","id":1350888738835095557,"id_str":"1350888738835095557","text":"RT - @CNNPolitics: \"I''m not going to lose my son at the end of 2020 and lose - my country and my republic in 2021,\" Rep. Jamie Raskin says as h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNPolitics","name":"CNN - Politics","id":13850422,"id_str":"13850422","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 17 14:46:10 +0000 2021","id":1350816690112749570,"id_str":"1350816690112749570","text":"\"I''m - not going to lose my son at the end of 2020 and lose my country and my republic - in 2021,\" Rep. Jamie Raskin sa\u2026 https:\/\/t.co\/s7hSUlQOjM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s7hSUlQOjM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1350816690112749570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.snapstream.com\" rel=\"nofollow\"\u003eSnapStream TV Search\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6298,"favorite_count":35916,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6298,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000701244405\/4d81096a8726c4f513fae3cfba7e661f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000701244405\/4d81096a8726c4f513fae3cfba7e661f_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242577644266254336,"id_str":"1242577644266254336","name":"Robert - Corness","screen_name":"corness_robert","location":"","description":"I''m - very curious","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":356,"listed_count":0,"created_at":"Tue - Mar 24 22:23:05 +0000 2020","favourites_count":7041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8638,"lang":null,"status":{"created_at":"Fri - Mar 25 20:56:55 +0000 2022","id":1507461548125483008,"id_str":"1507461548125483008","text":"https:\/\/t.co\/pcU6M341W9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507461536264044545,"id_str":"1507461536264044545","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuUR8WVQAEXhZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuUR8WVQAEXhZb.jpg","url":"https:\/\/t.co\/pcU6M341W9","display_url":"pic.twitter.com\/pcU6M341W9","expanded_url":"https:\/\/twitter.com\/corness_robert\/status\/1507461548125483008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":479,"resize":"fit"},"medium":{"w":960,"h":676,"resize":"fit"},"large":{"w":960,"h":676,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507461536264044545,"id_str":"1507461536264044545","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuUR8WVQAEXhZb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuUR8WVQAEXhZb.jpg","url":"https:\/\/t.co\/pcU6M341W9","display_url":"pic.twitter.com\/pcU6M341W9","expanded_url":"https:\/\/twitter.com\/corness_robert\/status\/1507461548125483008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":479,"resize":"fit"},"medium":{"w":960,"h":676,"resize":"fit"},"large":{"w":960,"h":676,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369703091407265795\/We-HuFCh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369703091407265795\/We-HuFCh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243594256431882242,"id_str":"1243594256431882242","name":"ElCrypto","screen_name":"TheImmigrantBCN","location":"Barcelona, - Spain","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":716,"listed_count":9,"created_at":"Fri - Mar 27 17:42:46 +0000 2020","favourites_count":1732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":356,"lang":null,"status":{"created_at":"Mon - Feb 07 22:04:55 +0000 2022","id":1490808819831783432,"id_str":"1490808819831783432","text":"@playtrolpt - Obrigado hehe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"playtrolpt","name":"\u00a5 - INDRA \u00a5 \ud83c\uddfa\ud83c\udde6","id":2318955341,"id_str":"2318955341","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1490802515398512642,"in_reply_to_status_id_str":"1490802515398512642","in_reply_to_user_id":2318955341,"in_reply_to_user_id_str":"2318955341","in_reply_to_screen_name":"playtrolpt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446771061287161857\/b3IO0X0N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446771061287161857\/b3IO0X0N_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243202260185657346,"id_str":"1243202260185657346","name":"Peace - Islam","screen_name":"PeaceIslam9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":556,"listed_count":0,"created_at":"Thu - Mar 26 15:45:15 +0000 2020","favourites_count":15327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"status":{"created_at":"Sat - Mar 26 10:30:53 +0000 2022","id":1507666391482003458,"id_str":"1507666391482003458","text":"@rtvonline - \u0993\u09af\u09bc\u09be\u09b8\u09be\u09b0 \u09aa\u09be\u09a8\u09bf \u09b9\u09a0\u09be\u09ce - \u0985\u09a8\u09c7\u0995 \u0996\u09be\u09b0\u09be\u09aa\u0964 \u09af\u09c7\u09a8 - \u0987\u099a\u09cd\u099b\u09be\u0995\u09c3\u09a4 \u098f\u09b8\u09ac \u0995\u09b0\u09be - \u09b9\u09af\u09bc\u0964","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rtvonline","name":"Rtv","id":60875303,"id_str":"60875303","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507665869388005382,"in_reply_to_status_id_str":"1507665869388005382","in_reply_to_user_id":60875303,"in_reply_to_user_id_str":"60875303","in_reply_to_screen_name":"rtvonline","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"bn"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243939053814157312\/_M5gvITV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243939053814157312\/_M5gvITV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243202260185657346\/1585413314","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048368445,"id_str":"1048368445","name":"Tracy - Burns","screen_name":"TracyBurns25","location":"Prague","description":"Writer - who publishes in Czech and English, avid traveler, mother of cat named after - First First Lady of Czechoslovakia,\nloves art and reading mysteries","url":"https:\/\/t.co\/vMD2YpNKAg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vMD2YpNKAg","expanded_url":"http:\/\/www.taburns25.com","display_url":"taburns25.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6957,"friends_count":7102,"listed_count":117,"created_at":"Sun - Dec 30 17:08:41 +0000 2012","favourites_count":86052,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42352,"lang":null,"status":{"created_at":"Sat - Mar 26 09:40:32 +0000 2022","id":1507653722268225541,"id_str":"1507653722268225541","text":"@Elizabe29713381 - I am glad it is not bothering her!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Elizabe29713381","name":"Elizabeth - & Victoria","id":1116323947065368576,"id_str":"1116323947065368576","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507652164763721733,"in_reply_to_status_id_str":"1507652164763721733","in_reply_to_user_id":1116323947065368576,"in_reply_to_user_id_str":"1116323947065368576","in_reply_to_screen_name":"Elizabe29713381","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261575820125\/ad66af6d06c71ee9ac3c34c69ab390ef_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261575820125\/ad66af6d06c71ee9ac3c34c69ab390ef_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048368445\/1388231259","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2359093219,"id_str":"2359093219","name":"Antoinette","screen_name":"Antoinette12468","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":971,"listed_count":0,"created_at":"Mon - Feb 24 06:48:19 +0000 2014","favourites_count":108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Tue - Apr 28 03:09:18 +0000 2020","id":1254970920638218245,"id_str":"1254970920638218245","text":"This - cause is close to my heart - please sign: https:\/\/t.co\/74kvEOb3ZC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/74kvEOb3ZC","expanded_url":"https:\/\/sign.moveon.org\/petitions\/essential-workers-getting-600-hazardous-pay?bucket=&source=twitter-share-button&utm_campaign=&utm_source=twitter&share=e4ffdff1-e33f-443a-a34c-629ae9dc6c9d","display_url":"sign.moveon.org\/petitions\/esse\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/437849198264733696\/81YE_WW4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/437849198264733696\/81YE_WW4_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243108198401429505,"id_str":"1243108198401429505","name":"Egbeomo","screen_name":"Egbeomo1","location":"","description":"Designed - for Designs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":28,"listed_count":0,"created_at":"Thu - Mar 26 09:31:33 +0000 2020","favourites_count":158,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sun - Mar 21 14:26:11 +0000 2021","id":1373642094590443522,"id_str":"1373642094590443522","text":"@vanguardngrnews - There other 15 were possible put on black men + the vulnerable!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vanguardngrnews","name":"Vanguard - Newspapers","id":39975533,"id_str":"39975533","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1373502912022736900,"in_reply_to_status_id_str":"1373502912022736900","in_reply_to_user_id":39975533,"in_reply_to_user_id_str":"39975533","in_reply_to_screen_name":"vanguardngrnews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243108691412430849\/vG7JFpTm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243108691412430849\/vG7JFpTm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3414845344,"id_str":"3414845344","name":"Jeremiah - Mnanka","screen_name":"mnankajeremiah","location":"Tanzania","description":"The - best way to find yourself is to lose yourself in the service of others","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":321,"listed_count":0,"created_at":"Tue - Aug 11 09:36:34 +0000 2015","favourites_count":272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sun - Aug 29 07:53:49 +0000 2021","id":1431887800463470597,"id_str":"1431887800463470597","text":"@Nnauye_Nape - \ud83d\udd25\ud83d\udd25\ud83d\udd25\ud83d\udd25\ud83d\udd25\ud83d\udd25","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nnauye_Nape","name":"Nape - Moses Nnauye","id":3435205457,"id_str":"3435205457","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1431883690930589698,"in_reply_to_status_id_str":"1431883690930589698","in_reply_to_user_id":3435205457,"in_reply_to_user_id_str":"3435205457","in_reply_to_screen_name":"Nnauye_Nape","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631038038496399360\/qHFD5MtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631038038496399360\/qHFD5MtB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219935917529497601,"id_str":"1219935917529497601","name":"Jay - Foster\ud83c\udf0d\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udded","screen_name":"fosoter70030","location":"Ghana","description":"I - love\ud83d\udc99\ud83d\udc99\ud83d\udc99 Chelsea and kotoko\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1188,"friends_count":3996,"listed_count":0,"created_at":"Wed - Jan 22 10:52:55 +0000 2020","favourites_count":2306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1013,"lang":null,"status":{"created_at":"Sat - Mar 26 07:48:36 +0000 2022","id":1507625550403280897,"id_str":"1507625550403280897","text":"RT - @King__Eben: Akabenezer acting like King Eben \ud83d\ude02 https:\/\/t.co\/04ZEL5kIE1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"King__Eben","name":"King - Eben","id":1270448627396329472,"id_str":"1270448627396329472","indices":[3,14]}],"urls":[],"media":[{"id":1507607835391234051,"id_str":"1507607835391234051","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","url":"https:\/\/t.co\/04ZEL5kIE1","display_url":"pic.twitter.com\/04ZEL5kIE1","expanded_url":"https:\/\/twitter.com\/King__Eben\/status\/1507608242691653638\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":1280,"h":588,"resize":"fit"},"medium":{"w":1200,"h":551,"resize":"fit"}},"source_status_id":1507608242691653638,"source_status_id_str":"1507608242691653638","source_user_id":1270448627396329472,"source_user_id_str":"1270448627396329472"}]},"extended_entities":{"media":[{"id":1507607835391234051,"id_str":"1507607835391234051","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","url":"https:\/\/t.co\/04ZEL5kIE1","display_url":"pic.twitter.com\/04ZEL5kIE1","expanded_url":"https:\/\/twitter.com\/King__Eben\/status\/1507608242691653638\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":1280,"h":588,"resize":"fit"},"medium":{"w":1200,"h":551,"resize":"fit"}},"source_status_id":1507608242691653638,"source_status_id_str":"1507608242691653638","source_user_id":1270448627396329472,"source_user_id_str":"1270448627396329472","video_info":{"aspect_ratio":[320,147],"duration_millis":140012,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/586x270\/Xto6Gxz9MLn4WwPS.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/1280x588\/um9xuO3YDlqEER22.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/pl\/-rjsmkHf0iBUxhWt.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/782x360\/g7z1WK4BIPsRLuzZ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:39:49 +0000 2022","id":1507608242691653638,"id_str":"1507608242691653638","text":"Akabenezer - acting like King Eben \ud83d\ude02 https:\/\/t.co\/04ZEL5kIE1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507607835391234051,"id_str":"1507607835391234051","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","url":"https:\/\/t.co\/04ZEL5kIE1","display_url":"pic.twitter.com\/04ZEL5kIE1","expanded_url":"https:\/\/twitter.com\/King__Eben\/status\/1507608242691653638\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":1280,"h":588,"resize":"fit"},"medium":{"w":1200,"h":551,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507607835391234051,"id_str":"1507607835391234051","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507607835391234051\/pu\/img\/vXbILussZPm1o067.jpg","url":"https:\/\/t.co\/04ZEL5kIE1","display_url":"pic.twitter.com\/04ZEL5kIE1","expanded_url":"https:\/\/twitter.com\/King__Eben\/status\/1507608242691653638\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":312,"resize":"fit"},"large":{"w":1280,"h":588,"resize":"fit"},"medium":{"w":1200,"h":551,"resize":"fit"}},"video_info":{"aspect_ratio":[320,147],"duration_millis":140012,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/586x270\/Xto6Gxz9MLn4WwPS.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/1280x588\/um9xuO3YDlqEER22.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/pl\/-rjsmkHf0iBUxhWt.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507607835391234051\/pu\/vid\/782x360\/g7z1WK4BIPsRLuzZ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":709,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":96,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507300707656949770\/1XsqZom7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507300707656949770\/1XsqZom7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219935917529497601\/1634099450","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242236831619371009,"id_str":"1242236831619371009","name":"Veronica","screen_name":"Veronic05998086","location":"","description":"Love - to read\nLove people\nInterested in humanity. \nAdore my family","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":244,"listed_count":0,"created_at":"Mon - Mar 23 23:49:07 +0000 2020","favourites_count":42049,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":185839032,"id_str":"185839032","name":"Heather - Herczak","screen_name":"heatherherczak","location":"Pittsburgh","description":"I - design things \ud83d\udc69\ud83c\udffb\u200d\ud83d\udcbb","url":"https:\/\/t.co\/Dh5xzERBzB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dh5xzERBzB","expanded_url":"http:\/\/www.heatherherczakdesign.com","display_url":"heatherherczakdesign.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":262,"friends_count":1666,"listed_count":46,"created_at":"Wed - Sep 01 23:35:08 +0000 2010","favourites_count":3560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3906,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1072633215964332032\/rOWolMga_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072633215964332032\/rOWolMga_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298432128141660160,"id_str":"1298432128141660160","name":"norm - son of a gunderson","screen_name":"OfNorm","location":"","description":"twins - mom + Minnesotan + Democrat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":745,"listed_count":0,"created_at":"Wed - Aug 26 01:28:53 +0000 2020","favourites_count":6979,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Sat - Dec 11 06:05:34 +0000 2021","id":1469548895751528451,"id_str":"1469548895751528451","text":"@JohnWilson14 - will you marry me? I\u2019m down on one knee here. I\u2019m convinced that - you\u2019re my soulmate","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnWilson14","name":"John - Wilson","id":50719956,"id_str":"50719956","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":50719956,"in_reply_to_user_id_str":"50719956","in_reply_to_screen_name":"JohnWilson14","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298432371067195392\/uT3Sh_Y7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298432371067195392\/uT3Sh_Y7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3282784237,"id_str":"3282784237","name":"connienavare","screen_name":"connienavare4","location":"Hilton - Head Island, SC","description":"mother, grandmother, teacher, former local - politician, child of God, independent thinker & opposer of all weapons, BLM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":312,"listed_count":0,"created_at":"Fri - Jul 17 21:15:26 +0000 2015","favourites_count":32987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5532,"lang":null,"status":{"created_at":"Fri - Mar 25 13:20:47 +0000 2022","id":1507346758627696640,"id_str":"1507346758627696640","text":"RT - @CharlieCrist: Ron DeSantis wants to \u201cstop woke.\u201d Floridians want - to stop Ron. Like and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CharlieCrist","name":"Charlie - Crist","id":38970940,"id_str":"38970940","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:30:09 +0000 2022","id":1506065659419107331,"id_str":"1506065659419107331","text":"Ron - DeSantis wants to \u201cstop woke.\u201d Floridians want to stop Ron. Like - and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/tweepsmap.com\" rel=\"nofollow\"\u003eTweepsmap\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8570,"favorite_count":23562,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8570,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65739529,"id_str":"65739529","name":"Bill - Bradnock","screen_name":"BillBradnock","location":"Mid Calder, Scotland","description":"Just - retired, love being with my dear wife Cath, our Jack Russell terrier, Fudge - and staying at our holiday home in the Scottish Borders for some peace & quiet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":1914,"listed_count":4,"created_at":"Fri - Aug 14 21:22:23 +0000 2009","favourites_count":326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":835,"lang":null,"status":{"created_at":"Sun - Feb 27 02:18:37 +0000 2022","id":1497758035149791233,"id_str":"1497758035149791233","text":"RT - @GBNEWS: William and Kate \u2018stand with the president and people of Ukraine\u2019\nhttps:\/\/t.co\/Ifvji9aN6L","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GBNEWS","name":"GB - News","id":1339166129110065152,"id_str":"1339166129110065152","indices":[3,10]}],"urls":[{"url":"https:\/\/t.co\/Ifvji9aN6L","expanded_url":"https:\/\/www.gbnews.uk\/news\/william-and-kate-stand-with-the-president-and-people-of-ukraine\/235454","display_url":"gbnews.uk\/news\/william-a\u2026","indices":[78,101]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 02:14:00 +0000 2022","id":1497756873272946688,"id_str":"1497756873272946688","text":"William - and Kate \u2018stand with the president and people of Ukraine\u2019\nhttps:\/\/t.co\/Ifvji9aN6L","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ifvji9aN6L","expanded_url":"https:\/\/www.gbnews.uk\/news\/william-and-kate-stand-with-the-president-and-people-of-ukraine\/235454","display_url":"gbnews.uk\/news\/william-a\u2026","indices":[66,89]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":254,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506752723949133824\/yevbsn92_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506752723949133824\/yevbsn92_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65739529\/1629297977","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":913095220471975936,"id_str":"913095220471975936","name":"Lesselv","screen_name":"lesselv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":1127,"listed_count":0,"created_at":"Wed - Sep 27 17:37:19 +0000 2017","favourites_count":7160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Sat - Jun 26 18:19:25 +0000 2021","id":1408852412882952196,"id_str":"1408852412882952196","text":"@SkyJacquie - Fabulous \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SkyJacquie","name":"Jacquie - Beltrao","id":82313393,"id_str":"82313393","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1408794729802878984,"in_reply_to_status_id_str":"1408794729802878984","in_reply_to_user_id":82313393,"in_reply_to_user_id_str":"82313393","in_reply_to_screen_name":"SkyJacquie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923443617615802368\/9CyoZpKk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923443617615802368\/9CyoZpKk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301517028390580230,"id_str":"1301517028390580230","name":"Dhaavhi - yhayhra","screen_name":"irenetorgbenya","location":"Lapaz","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":563,"listed_count":0,"created_at":"Thu - Sep 03 13:47:14 +0000 2020","favourites_count":5841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - Mar 22 10:34:32 +0000 2022","id":1506217757444038658,"id_str":"1506217757444038658","text":"@francis_abban - Happy birthday","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"francis_abban","name":"Francis - Abban","id":229062777,"id_str":"229062777","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506120683557957641,"in_reply_to_status_id_str":"1506120683557957641","in_reply_to_user_id":229062777,"in_reply_to_user_id_str":"229062777","in_reply_to_screen_name":"francis_abban","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472653383114928128\/0flSMRtL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472653383114928128\/0flSMRtL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":408739265,"id_str":"408739265","name":"Jean - Carl","screen_name":"JeanCarl10","location":"Harrisonville Mo","description":"I''m - an old woman who likes to talk!! I vote blue and always have!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2335,"friends_count":4961,"listed_count":0,"created_at":"Wed - Nov 09 20:38:22 +0000 2011","favourites_count":32305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4971,"lang":null,"status":{"created_at":"Sat - Mar 26 02:42:46 +0000 2022","id":1507548584480284672,"id_str":"1507548584480284672","text":"@ErieNotEerie - Good night","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ErieNotEerie","name":"Erie - Siobhan \ud83c\uddfa\ud83c\uddf8","id":1286084038596464642,"id_str":"1286084038596464642","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507519851954380806,"in_reply_to_status_id_str":"1507519851954380806","in_reply_to_user_id":1286084038596464642,"in_reply_to_user_id_str":"1286084038596464642","in_reply_to_screen_name":"ErieNotEerie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481396379868188675\/6lAuc_4k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481396379868188675\/6lAuc_4k_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37221626,"id_str":"37221626","name":"Jacqueline - I. Wands","screen_name":"Wands1","location":"Florida, USA","description":"New - York Girl Living A Florida Life! A Seeker, Artist, Actor, Writer, Explorer - \ud83d\udca5\ud83d\udca5 Instagram: Jackewnz","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":506,"friends_count":3296,"listed_count":3,"created_at":"Sat - May 02 15:54:04 +0000 2009","favourites_count":10072,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9642,"lang":null,"status":{"created_at":"Fri - Mar 25 17:35:31 +0000 2022","id":1507410866081509377,"id_str":"1507410866081509377","text":"RT - @OccupyDemocrats: BREAKING NEWS: Georgia voters file a lawsuit to block Trumper - Congresswoman Marjorie Taylor Green from running reelect\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:24:46 +0000 2022","id":1507181668989349896,"id_str":"1507181668989349896","text":"BREAKING - NEWS: Georgia voters file a lawsuit to block Trumper Congresswoman Marjorie - Taylor Green from running reel\u2026 https:\/\/t.co\/4IOaQ2uj7F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4IOaQ2uj7F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507181668989349896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16216,"favorite_count":51473,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16216,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444422194046640137\/iodabrU1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444422194046640137\/iodabrU1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37221626\/1596242744","profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CD7AEE","profile_text_color":"382938","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1200430971390189568,"id_str":"1200430971390189568","name":"Rebecca - Tait","screen_name":"bextait9","location":"","description":"Clinical Manager - NHS...with a side of running","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":627,"listed_count":0,"created_at":"Fri - Nov 29 15:07:10 +0000 2019","favourites_count":844,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":89,"lang":null,"status":{"created_at":"Sat - Jan 29 11:17:38 +0000 2022","id":1487384435108593666,"id_str":"1487384435108593666","text":"RT - @joelycett: \ud83e\udd2a https:\/\/t.co\/OPI0tlXl47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joelycett","name":"Joe - Lycett","id":17948810,"id_str":"17948810","indices":[3,13]}],"urls":[],"media":[{"id":1487075704806195202,"id_str":"1487075704806195202","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","url":"https:\/\/t.co\/OPI0tlXl47","display_url":"pic.twitter.com\/OPI0tlXl47","expanded_url":"https:\/\/twitter.com\/joelycett\/status\/1487076326196535308\/photo\/1","type":"photo","sizes":{"small":{"w":620,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1744,"h":1912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1487076326196535308,"source_status_id_str":"1487076326196535308","source_user_id":17948810,"source_user_id_str":"17948810"}]},"extended_entities":{"media":[{"id":1487075704806195202,"id_str":"1487075704806195202","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","url":"https:\/\/t.co\/OPI0tlXl47","display_url":"pic.twitter.com\/OPI0tlXl47","expanded_url":"https:\/\/twitter.com\/joelycett\/status\/1487076326196535308\/photo\/1","type":"photo","sizes":{"small":{"w":620,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1744,"h":1912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1487076326196535308,"source_status_id_str":"1487076326196535308","source_user_id":17948810,"source_user_id_str":"17948810"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 28 14:53:19 +0000 2022","id":1487076326196535308,"id_str":"1487076326196535308","text":"\ud83e\udd2a - https:\/\/t.co\/OPI0tlXl47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1487075704806195202,"id_str":"1487075704806195202","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","url":"https:\/\/t.co\/OPI0tlXl47","display_url":"pic.twitter.com\/OPI0tlXl47","expanded_url":"https:\/\/twitter.com\/joelycett\/status\/1487076326196535308\/photo\/1","type":"photo","sizes":{"small":{"w":620,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1744,"h":1912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1487075704806195202,"id_str":"1487075704806195202","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKMneYMWQAIBm4Z.png","url":"https:\/\/t.co\/OPI0tlXl47","display_url":"pic.twitter.com\/OPI0tlXl47","expanded_url":"https:\/\/twitter.com\/joelycett\/status\/1487076326196535308\/photo\/1","type":"photo","sizes":{"small":{"w":620,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1744,"h":1912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43171,"favorite_count":239684,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":43171,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284268170694533122\/BGlGxPxD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284268170694533122\/BGlGxPxD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1200430971390189568\/1575047410","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242485806796877825,"id_str":"1242485806796877825","name":"\ud83c\uddfa\ud83c\udde6\ud83d\ude9c\ud83c\udf3bFrances - Lakey\ud83c\uddfa\ud83c\udde6\ud83d\ude9c\ud83c\udf3b","screen_name":"AintEzyBeinChzy","location":"Onslow - County, North Carolina ","description":"The crafter your mom never warned - you about. \ud83d\ude45\ud83c\udffb\u200d\u2640\ufe0fDMs, FFS, just no. #MilSpouse - #usmc #blm #NPRnerd #quilter #GregMurphySucks #SayGayAndVote #StandWithUkraine","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":2911,"listed_count":0,"created_at":"Tue - Mar 24 16:18:14 +0000 2020","favourites_count":29693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6144,"lang":null,"status":{"created_at":"Sat - Mar 26 10:28:04 +0000 2022","id":1507665680690302982,"id_str":"1507665680690302982","text":"RT - @mentnelson: As a child I watched my mother partake in communion service once - a month in our 15-member Holiness church. Church members w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mentnelson","name":"ment - nelson","id":1607408977,"id_str":"1607408977","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:21:15 +0000 2022","id":1507512973702615041,"id_str":"1507512973702615041","text":"As - a child I watched my mother partake in communion service once a month in our - 15-member Holiness church. Church m\u2026 https:\/\/t.co\/UI3g12Aq8Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UI3g12Aq8Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507512973702615041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":86,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446745377730871296\/GkZspxuD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446745377730871296\/GkZspxuD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1242485806796877825\/1625948257","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280025507824906242,"id_str":"1280025507824906242","name":"Sageer - Ahmad Goda","screen_name":"goda_sageer","location":"Nigeria","description":"respect - and humanity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":288,"listed_count":0,"created_at":"Mon - Jul 06 06:29:01 +0000 2020","favourites_count":138,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Mon - Mar 21 11:44:33 +0000 2022","id":1505872989115785217,"id_str":"1505872989115785217","text":"RT - @__munaaya: Hi\ud83d\ude42 https:\/\/t.co\/heibtNyeg1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"__munaaya","name":"Fatima.","id":1015016781885460480,"id_str":"1015016781885460480","indices":[3,13]}],"urls":[],"media":[{"id":1505533055645143041,"id_str":"1505533055645143041","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","url":"https:\/\/t.co\/heibtNyeg1","display_url":"pic.twitter.com\/heibtNyeg1","expanded_url":"https:\/\/twitter.com\/__munaaya\/status\/1505533065623388164\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":643,"h":1200,"resize":"fit"},"large":{"w":1097,"h":2048,"resize":"fit"},"small":{"w":364,"h":680,"resize":"fit"}},"source_status_id":1505533065623388164,"source_status_id_str":"1505533065623388164","source_user_id":1015016781885460480,"source_user_id_str":"1015016781885460480"}]},"extended_entities":{"media":[{"id":1505533055645143041,"id_str":"1505533055645143041","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","url":"https:\/\/t.co\/heibtNyeg1","display_url":"pic.twitter.com\/heibtNyeg1","expanded_url":"https:\/\/twitter.com\/__munaaya\/status\/1505533065623388164\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":643,"h":1200,"resize":"fit"},"large":{"w":1097,"h":2048,"resize":"fit"},"small":{"w":364,"h":680,"resize":"fit"}},"source_status_id":1505533065623388164,"source_status_id_str":"1505533065623388164","source_user_id":1015016781885460480,"source_user_id_str":"1015016781885460480"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 13:13:48 +0000 2022","id":1505533065623388164,"id_str":"1505533065623388164","text":"Hi\ud83d\ude42 - https:\/\/t.co\/heibtNyeg1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505533055645143041,"id_str":"1505533055645143041","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","url":"https:\/\/t.co\/heibtNyeg1","display_url":"pic.twitter.com\/heibtNyeg1","expanded_url":"https:\/\/twitter.com\/__munaaya\/status\/1505533065623388164\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":643,"h":1200,"resize":"fit"},"large":{"w":1097,"h":2048,"resize":"fit"},"small":{"w":364,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505533055645143041,"id_str":"1505533055645143041","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOS6VmNWUAElDp9.jpg","url":"https:\/\/t.co\/heibtNyeg1","display_url":"pic.twitter.com\/heibtNyeg1","expanded_url":"https:\/\/twitter.com\/__munaaya\/status\/1505533065623388164\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":643,"h":1200,"resize":"fit"},"large":{"w":1097,"h":2048,"resize":"fit"},"small":{"w":364,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":292,"favorite_count":2349,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":292,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280027122099200000\/5rUTnBb3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280027122099200000\/5rUTnBb3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220857704547110914,"id_str":"1220857704547110914","name":"Lisa","screen_name":"lisaraeml","location":"Los - Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":162,"listed_count":0,"created_at":"Fri - Jan 24 23:55:47 +0000 2020","favourites_count":1305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":506,"lang":null,"status":{"created_at":"Sat - May 29 00:44:47 +0000 2021","id":1398440147281072131,"id_str":"1398440147281072131","text":"RT - @SethAbramson: HARD FACT: a *bipartisan majority* in *both* the U.S. House - *and* the U.S. Senate wanted to go forward with a bipartisan,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SethAbramson","name":"Seth - Abramson","id":3223426134,"id_str":"3223426134","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 28 23:34:07 +0000 2021","id":1398422362077417473,"id_str":"1398422362077417473","text":"HARD - FACT: a *bipartisan majority* in *both* the U.S. House *and* the U.S. Senate - wanted to go forward with a bipar\u2026 https:\/\/t.co\/SYOfoMVYQe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYOfoMVYQe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1398422362077417473","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5669,"favorite_count":17491,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5669,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354535469191671808\/qZ8Qm6ox_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354535469191671808\/qZ8Qm6ox_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220857704547110914\/1590826887","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":398552656,"id_str":"398552656","name":"Juma - Malyunga Jr","screen_name":"jaymalyunga","location":"Under The Dome","description":"Husband\u00b6Father\u00b6|Insurance - Expert\u00b6Financial Consultant\u00b6Marketing Strategist\u00b6Diehard fan - @ChelseaFC & @SimbaSC\ud83e\udd81","url":"https:\/\/t.co\/tdgMg89ePb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tdgMg89ePb","expanded_url":"https:\/\/www.linkedin.com\/in\/juma-malyunga-896a29b1","display_url":"linkedin.com\/in\/juma-malyun\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6791,"friends_count":6420,"listed_count":3,"created_at":"Wed - Oct 26 06:57:19 +0000 2011","favourites_count":25415,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10227,"lang":null,"status":{"created_at":"Tue - Mar 08 16:48:44 +0000 2022","id":1501238500959608833,"id_str":"1501238500959608833","text":"RT - @POTUS: Today, I\u2019m announcing that the United States is targeting a main - artery of Russia\u2019s economy.\n\nWe are banning all imports of Russ\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 16:44:48 +0000 2022","id":1501237509853962242,"id_str":"1501237509853962242","text":"Today, - I\u2019m announcing that the United States is targeting a main artery of Russia\u2019s - economy.\n\nWe are banning all im\u2026 https:\/\/t.co\/LHpEpzgz8y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LHpEpzgz8y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501237509853962242","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32906,"favorite_count":239307,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":32906,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1404068140666044419\/cq5EK2SI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1404068140666044419\/cq5EK2SI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398552656\/1543959707","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":743707469143150592,"id_str":"743707469143150592","name":"jxtcalmeBROWN","screen_name":"BrownMaivaisse","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":54,"friends_count":552,"listed_count":0,"created_at":"Fri - Jun 17 07:30:52 +0000 2016","favourites_count":1105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449322333580283906\/vUHpImZX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449322333580283906\/vUHpImZX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743707469143150592\/1604292694","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3355559837,"id_str":"3355559837","name":"dalton - flatt","screen_name":"FlattDalton","location":"College Station, TX","description":"TAMU - \u201823","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1258,"friends_count":1240,"listed_count":1,"created_at":"Thu - Jul 02 18:39:57 +0000 2015","favourites_count":16757,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9637,"lang":null,"status":{"created_at":"Sat - Mar 19 16:17:17 +0000 2022","id":1505216849319014403,"id_str":"1505216849319014403","text":"RT - @RODEOHOUSTON: Houston Livestock Show and Rodeo Executive Committee member - Don Jordan makes historic $1 million purchase of Grand Champi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RODEOHOUSTON","name":"RODEOHOUSTON","id":74486139,"id_str":"74486139","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 16:14:17 +0000 2022","id":1505216096051380225,"id_str":"1505216096051380225","text":"Houston - Livestock Show and Rodeo Executive Committee member Don Jordan makes historic - $1 million purchase of Grand\u2026 https:\/\/t.co\/yHXGQMQu8W","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yHXGQMQu8W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505216096051380225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":178,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241553897870757891\/TKO_Avil_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241553897870757891\/TKO_Avil_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3355559837\/1610857762","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244451590964117509,"id_str":"1244451590964117509","name":"Han - \u2661","screen_name":"ashensky03","location":"United States","description":"I - stream sometimes :)","url":"https:\/\/t.co\/gGPKwIdMSW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gGPKwIdMSW","expanded_url":"https:\/\/m.twitch.tv\/hannah_32103\/profile","display_url":"m.twitch.tv\/hannah_32103\/p\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":1205,"listed_count":2,"created_at":"Mon - Mar 30 02:29:23 +0000 2020","favourites_count":10008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1408,"lang":null,"status":{"created_at":"Fri - Mar 25 23:16:33 +0000 2022","id":1507496689694822407,"id_str":"1507496689694822407","text":"RT - @Ph1LzA: Open twitter and this is all I see @Ranboosaysstuff you''ve broken - bird app lmao https:\/\/t.co\/1j1dqfb79W","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ph1LzA","name":"Ph1LzA","id":127954853,"id_str":"127954853","indices":[3,10]},{"screen_name":"Ranboosaysstuff","name":"Ranboo","id":1222961028926824450,"id_str":"1222961028926824450","indices":[47,63]}],"urls":[],"media":[{"id":1507495962771697679,"id_str":"1507495962771697679","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","url":"https:\/\/t.co\/1j1dqfb79W","display_url":"pic.twitter.com\/1j1dqfb79W","expanded_url":"https:\/\/twitter.com\/Ph1LzA\/status\/1507496554151690242\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":588,"h":736,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":588,"h":736,"resize":"fit"}},"source_status_id":1507496554151690242,"source_status_id_str":"1507496554151690242","source_user_id":127954853,"source_user_id_str":"127954853"}]},"extended_entities":{"media":[{"id":1507495962771697679,"id_str":"1507495962771697679","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","url":"https:\/\/t.co\/1j1dqfb79W","display_url":"pic.twitter.com\/1j1dqfb79W","expanded_url":"https:\/\/twitter.com\/Ph1LzA\/status\/1507496554151690242\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":588,"h":736,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":588,"h":736,"resize":"fit"}},"source_status_id":1507496554151690242,"source_status_id_str":"1507496554151690242","source_user_id":127954853,"source_user_id_str":"127954853"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:16:01 +0000 2022","id":1507496554151690242,"id_str":"1507496554151690242","text":"Open - twitter and this is all I see @Ranboosaysstuff you''ve broken bird app lmao - https:\/\/t.co\/1j1dqfb79W","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ranboosaysstuff","name":"Ranboo","id":1222961028926824450,"id_str":"1222961028926824450","indices":[35,51]}],"urls":[],"media":[{"id":1507495962771697679,"id_str":"1507495962771697679","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","url":"https:\/\/t.co\/1j1dqfb79W","display_url":"pic.twitter.com\/1j1dqfb79W","expanded_url":"https:\/\/twitter.com\/Ph1LzA\/status\/1507496554151690242\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":588,"h":736,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":588,"h":736,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507495962771697679,"id_str":"1507495962771697679","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuzl1FXsA8lh5y.png","url":"https:\/\/t.co\/1j1dqfb79W","display_url":"pic.twitter.com\/1j1dqfb79W","expanded_url":"https:\/\/twitter.com\/Ph1LzA\/status\/1507496554151690242\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"medium":{"w":588,"h":736,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":588,"h":736,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":668,"favorite_count":44501,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":668,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245148885225476102\/CYCvCoq1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245148885225476102\/CYCvCoq1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1244451590964117509\/1585853097","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3281420810,"id_str":"3281420810","name":"masood - afzal","screen_name":"1080e2541b38400","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":5002,"listed_count":2,"created_at":"Thu - Jul 16 08:39:59 +0000 2015","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Sat - Mar 19 15:00:05 +0000 2022","id":1505197423156772873,"id_str":"1505197423156772873","text":"@ZilayHumaDar - Kis kae haen yeah jhoumkae , kahan sae aaie yeah jhoumkae","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZilayHumaDar","name":"Zilay - Huma Dar","id":1289794705,"id_str":"1289794705","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505180723732533248,"in_reply_to_status_id_str":"1505180723732533248","in_reply_to_user_id":1289794705,"in_reply_to_user_id_str":"1289794705","in_reply_to_screen_name":"ZilayHumaDar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623793903196467200\/RRJGMjOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623793903196467200\/RRJGMjOM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":463106126,"id_str":"463106126","name":"Patricia - Yaden","screen_name":"PatYaden","location":"USA\\Kentucky","description":"Retired - from KY State Government, Democrat, Love Classic Rock and UK basketball. No - DM''s plz and List will get you blocked!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1633,"friends_count":5004,"listed_count":11,"created_at":"Fri - Jan 13 18:41:34 +0000 2012","favourites_count":32436,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25689,"lang":null,"status":{"created_at":"Sat - Mar 26 03:56:51 +0000 2022","id":1507567228853620736,"id_str":"1507567228853620736","text":"Seems - I have a few new followers. Thank you. It''s my birthday :-)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"2a39cded7c6fc606","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2a39cded7c6fc606.json","place_type":"city","name":"Frankfort","full_name":"Frankfort, - KY","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-84.930744,38.143682],[-84.77634,38.143682],[-84.77634,38.231254],[-84.930744,38.231254]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269089170074619910\/BoRenCXy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269089170074619910\/BoRenCXy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463106126\/1553236247","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2240121746,"id_str":"2240121746","name":"Ahab - and Erol \ud83c\udf0a\ud83c\udf0a","screen_name":"Im_Eiri","location":"Washington, - USA","description":"We are obligated to disobey unjust laws and to stand up - to tyranny. Member of #TheResistance. Obsessed with my dog, tiny homes, and - simplicity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":842,"friends_count":0,"listed_count":4,"created_at":"Wed - Dec 11 03:27:15 +0000 2013","favourites_count":21030,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11360,"lang":null,"status":{"created_at":"Fri - Feb 05 20:08:32 +0000 2021","id":1357783185040441346,"id_str":"1357783185040441346","text":"RT - @AndrewDisco_433: @JuddLegum @TexasGOP The party that likes to thump their - chest about loving this country and being Patriots sure seem\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewDisco_433","name":"Andrew - Disque","id":3022541777,"id_str":"3022541777","indices":[3,19]},{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[21,31]},{"screen_name":"TexasGOP","name":"Texas - GOP","id":37760670,"id_str":"37760670","indices":[32,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 05 14:07:01 +0000 2021","id":1357692208997158913,"id_str":"1357692208997158913","text":"@JuddLegum - @TexasGOP The party that likes to thump their chest about loving this country - and being Patriots sure se\u2026 https:\/\/t.co\/woaVL75EjI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuddLegum","name":"Judd - Legum","id":15464697,"id_str":"15464697","indices":[0,10]},{"screen_name":"TexasGOP","name":"Texas - GOP","id":37760670,"id_str":"37760670","indices":[11,20]}],"urls":[{"url":"https:\/\/t.co\/woaVL75EjI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1357692208997158913","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1357685421770215430,"in_reply_to_status_id_str":"1357685421770215430","in_reply_to_user_id":15464697,"in_reply_to_user_id_str":"15464697","in_reply_to_screen_name":"JuddLegum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":460,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":43,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354127325093216257\/BEv8rjvC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354127325093216257\/BEv8rjvC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240121746\/1536630234","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1185603915892613121,"id_str":"1185603915892613121","name":"Rob","screen_name":"Rob01401073","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":1332,"listed_count":0,"created_at":"Sat - Oct 19 17:09:45 +0000 2019","favourites_count":503,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213197956821606400,"id_str":"1213197956821606400","name":"Jonty - kamaa","screen_name":"Jontykamaa2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":958,"listed_count":0,"created_at":"Fri - Jan 03 20:38:42 +0000 2020","favourites_count":290,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Thu - Nov 25 04:33:11 +0000 2021","id":1463727439780237317,"id_str":"1463727439780237317","text":"@HonWangari - All the best Mhesh......and am inviting you @ace prestige motors kiambu road.. - .came&see our cars...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HonWangari","name":"Hon - Martha Wangari","id":1555984939,"id_str":"1555984939","indices":[0,11]},{"screen_name":"ace","name":"Aldryn - Estacio","id":68183,"id_str":"68183","indices":[56,60]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1463542176437059590,"in_reply_to_status_id_str":"1463542176437059590","in_reply_to_user_id":1555984939,"in_reply_to_user_id_str":"1555984939","in_reply_to_screen_name":"HonWangari","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213198304395366400\/3OJXh57g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213198304395366400\/3OJXh57g_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":905559361690386432,"id_str":"905559361690386432","name":"Cyclegal","screen_name":"Cyclegal3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":177,"listed_count":0,"created_at":"Wed - Sep 06 22:32:31 +0000 2017","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905562663479984128\/iYcV---W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905562663479984128\/iYcV---W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905559361690386432\/1504737976","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1197252863166238721,"id_str":"1197252863166238721","name":"Kofane - Mr","screen_name":"MrKofane","location":"Lesotho","description":"Kind religious - young man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":173,"listed_count":0,"created_at":"Wed - Nov 20 20:38:45 +0000 2019","favourites_count":959,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":380,"lang":null,"status":{"created_at":"Sat - Mar 05 15:06:02 +0000 2022","id":1500125488198692864,"id_str":"1500125488198692864","text":"RT - @AtiKayel: These commandments that I give you today are to be on your hearts. - Impress them on your children. Talk about them when you si\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AtiKayel","name":"Pst. - LE. Khutlane \ud83c\uddf1\ud83c\uddf8","id":1144119933355352066,"id_str":"1144119933355352066","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 04:24:54 +0000 2022","id":1499964144459649027,"id_str":"1499964144459649027","text":"These - commandments that I give you today are to be on your hearts. Impress them - on your children. Talk about them w\u2026 https:\/\/t.co\/ob34joIuEr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ob34joIuEr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499964144459649027","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367324173345906696\/221y5_yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367324173345906696\/221y5_yQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":552140014,"id_str":"552140014","name":"Richard - H. Pollock","screen_name":"RichardHpollock","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":732,"listed_count":0,"created_at":"Thu - Apr 12 20:17:23 +0000 2012","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Sun - Mar 29 13:17:59 +0000 2020","id":1244252467405230081,"id_str":"1244252467405230081","text":"@CNBC - Mr.richardhp@gmail.com","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNBC","name":"CNBC","id":20402945,"id_str":"20402945","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1244219274350268424,"in_reply_to_status_id_str":"1244219274350268424","in_reply_to_user_id":20402945,"in_reply_to_user_id_str":"20402945","in_reply_to_screen_name":"CNBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":74758422,"id_str":"74758422","name":"Erin - A","screen_name":"iloveallmyboys","location":"Tualatin, OR","description":"Wife - \u2764\ufe0f Momma \ud83d\udc99 Nurse \ud83e\udd0d #GoDucks","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":351,"listed_count":1,"created_at":"Wed - Sep 16 15:35:33 +0000 2009","favourites_count":472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Thu - Jan 20 04:11:02 +0000 2022","id":1484015585889439744,"id_str":"1484015585889439744","text":"@RyanTClarke - Sad day for Newberg. I\u2019m thankful my (Sherwood) kids are graduated.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RyanTClarke","name":"Ryan - Clarke","id":326913251,"id_str":"326913251","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1483689594700713985,"in_reply_to_status_id_str":"1483689594700713985","in_reply_to_user_id":326913251,"in_reply_to_user_id_str":"326913251","in_reply_to_screen_name":"RyanTClarke","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1147689221777346560\/gk3zLSMa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147689221777346560\/gk3zLSMa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74758422\/1643030643","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27197981,"id_str":"27197981","name":"Kevin","screen_name":"DREWANDRE","location":"Nairobi","description":"Self.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":386,"friends_count":1887,"listed_count":3,"created_at":"Sat - Mar 28 07:58:34 +0000 2009","favourites_count":173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9588,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:04 +0000 2022","id":1507551934340816907,"id_str":"1507551934340816907","text":"RT - @bjagero23: @evannakita This is great!! Alafu we have leaders who always go - abroad and spend millions of shillings for bench marking!\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bjagero23","name":"Don - Corleone Al Pacino\ud83c\uddf0\ud83c\uddea\ud83c\udde6\ud83c\uddea\ud83c\udde7\ud83c\udded\ud83c\uddef\ud83c\uddf2","id":1352981827,"id_str":"1352981827","indices":[3,13]},{"screen_name":"evannakita","name":"Evannakita","id":1365703073906196482,"id_str":"1365703073906196482","indices":[15,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 12:31:06 +0000 2022","id":1505159931300823040,"id_str":"1505159931300823040","text":"@evannakita - This is great!! Alafu we have leaders who always go abroad and spend millions - of shillings for bench ma\u2026 https:\/\/t.co\/LggYvQmVu7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"evannakita","name":"Evannakita","id":1365703073906196482,"id_str":"1365703073906196482","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/LggYvQmVu7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505159931300823040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504955100476977155,"in_reply_to_status_id_str":"1504955100476977155","in_reply_to_user_id":1365703073906196482,"in_reply_to_user_id_str":"1365703073906196482","in_reply_to_screen_name":"evannakita","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000859031190\/9N9t2T4f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000859031190\/9N9t2T4f_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":435533227,"id_str":"435533227","name":"Meg - S","screen_name":"megsullivanMD","location":"Columbia, MD","description":"Former - teacher turned massage therapist, word nerd, traveler, mama of 2, wife to - an amazing man, political junkie, empath, breast cancer survivor x2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":214,"listed_count":0,"created_at":"Tue - Dec 13 05:04:05 +0000 2011","favourites_count":10205,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2338,"lang":null,"status":{"created_at":"Fri - Mar 25 19:37:09 +0000 2022","id":1507441475159789587,"id_str":"1507441475159789587","text":"@ProjectLincoln - Racist babies","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507425844905525268,"in_reply_to_status_id_str":"1507425844905525268","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442836987770200065\/a-sxoNmt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442836987770200065\/a-sxoNmt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/435533227\/1594135237","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":975454330580033538,"id_str":"975454330580033538","name":"Amy - Cain","screen_name":"AmyCain32604476","location":"Nashville, TN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":278,"listed_count":0,"created_at":"Sun - Mar 18 19:30:10 +0000 2018","favourites_count":4710,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Sun - Mar 20 02:16:16 +0000 2022","id":1505367590130044928,"id_str":"1505367590130044928","text":"How - do I explain that Trump is bad person to my sister who thinks he hung the - moon? I\u2019m so disappointed:(","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":166548953,"id_str":"166548953","name":"Bob - Eckert","screen_name":"Manhattan1980","location":"NYC","description":"Demographer; - educator; marketer of mashable media strategies.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1236,"friends_count":7093,"listed_count":11,"created_at":"Wed - Jul 14 12:40:41 +0000 2010","favourites_count":4552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":205,"lang":null,"status":{"created_at":"Sat - Aug 07 18:52:49 +0000 2021","id":1424081108606586889,"id_str":"1424081108606586889","text":"RT - @Sweets_tweets__: https:\/\/t.co\/o9XQkHLzYZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sweets_tweets__","name":"\ud83c\udf6d\ud83c\udf6cSweets\ud83c\udf6c\ud83c\udf6d","id":1105846459373682688,"id_str":"1105846459373682688","indices":[3,19]}],"urls":[],"media":[{"id":1359322188743024647,"id_str":"1359322188743024647","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","url":"https:\/\/t.co\/o9XQkHLzYZ","display_url":"pic.twitter.com\/o9XQkHLzYZ","expanded_url":"https:\/\/twitter.com\/Sweets_tweets__\/status\/1359322190584287233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":424,"resize":"fit"},"large":{"w":480,"h":424,"resize":"fit"},"small":{"w":480,"h":424,"resize":"fit"}},"source_status_id":1359322190584287233,"source_status_id_str":"1359322190584287233","source_user_id":1105846459373682688,"source_user_id_str":"1105846459373682688"}]},"extended_entities":{"media":[{"id":1359322188743024647,"id_str":"1359322188743024647","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","url":"https:\/\/t.co\/o9XQkHLzYZ","display_url":"pic.twitter.com\/o9XQkHLzYZ","expanded_url":"https:\/\/twitter.com\/Sweets_tweets__\/status\/1359322190584287233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":424,"resize":"fit"},"large":{"w":480,"h":424,"resize":"fit"},"small":{"w":480,"h":424,"resize":"fit"}},"source_status_id":1359322190584287233,"source_status_id_str":"1359322190584287233","source_user_id":1105846459373682688,"source_user_id_str":"1105846459373682688"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 10 02:03:59 +0000 2021","id":1359322190584287233,"id_str":"1359322190584287233","text":"https:\/\/t.co\/o9XQkHLzYZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1359322188743024647,"id_str":"1359322188743024647","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","url":"https:\/\/t.co\/o9XQkHLzYZ","display_url":"pic.twitter.com\/o9XQkHLzYZ","expanded_url":"https:\/\/twitter.com\/Sweets_tweets__\/status\/1359322190584287233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":424,"resize":"fit"},"large":{"w":480,"h":424,"resize":"fit"},"small":{"w":480,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1359322188743024647,"id_str":"1359322188743024647","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Et1IVCNVoAcy5Qo.jpg","url":"https:\/\/t.co\/o9XQkHLzYZ","display_url":"pic.twitter.com\/o9XQkHLzYZ","expanded_url":"https:\/\/twitter.com\/Sweets_tweets__\/status\/1359322190584287233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":424,"resize":"fit"},"large":{"w":480,"h":424,"resize":"fit"},"small":{"w":480,"h":424,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":444,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":101,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3030574832\/93a69246cd1e959c560afd29f0abbea3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3030574832\/93a69246cd1e959c560afd29f0abbea3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166548953\/1357508315","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48741082,"id_str":"48741082","name":"De - Da","screen_name":"azhouseholder","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":284,"friends_count":2707,"listed_count":1,"created_at":"Fri - Jun 19 15:52:40 +0000 2009","favourites_count":36814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17590,"lang":null,"status":{"created_at":"Wed - Mar 23 01:54:21 +0000 2022","id":1506449238628061185,"id_str":"1506449238628061185","text":"RT - @MaryLTrump: The fact that two seditionists still sit on the Judiciary Committee - and have the opportunity to ask this brilliant woman an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:30:15 +0000 2022","id":1506382776257466370,"id_str":"1506382776257466370","text":"The - fact that two seditionists still sit on the Judiciary Committee and have the - opportunity to ask this brilliant\u2026 https:\/\/t.co\/h3QRXJywVk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h3QRXJywVk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506382776257466370","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12566,"favorite_count":73409,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12566,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1039979811412824065,"id_str":"1039979811412824065","name":"SPINTEX - ROAD LIL DURK","screen_name":"OntarioSparta","location":"Accra, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":1022,"listed_count":0,"created_at":"Wed - Sep 12 20:51:23 +0000 2018","favourites_count":30933,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Sun - Jan 23 15:32:56 +0000 2022","id":1485274358130036739,"id_str":"1485274358130036739","text":"@_Payola_ - Congrats \ud83c\udf89\ud83c\udf7e \u2764\ufe0f\ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_Payola_","name":"8.24","id":134262555,"id_str":"134262555","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484845965215469574,"in_reply_to_status_id_str":"1484845965215469574","in_reply_to_user_id":134262555,"in_reply_to_user_id_str":"134262555","in_reply_to_screen_name":"_Payola_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302612063718703104\/TIzKEX5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302612063718703104\/TIzKEX5y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039979811412824065\/1579615540","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3720210614,"id_str":"3720210614","name":"Darktionary","screen_name":"Darktionary","location":"Middle - Ring of the 7th Circle","description":"Excruciate Your Vocabulary","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":348,"friends_count":2762,"listed_count":15,"created_at":"Tue - Sep 29 00:33:25 +0000 2015","favourites_count":35054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27991,"lang":null,"status":{"created_at":"Wed - Mar 23 01:27:18 +0000 2022","id":1506442431440560134,"id_str":"1506442431440560134","text":"@jimcramer - Where might I find it?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jimcramer","name":"Jim - Cramer","id":14216123,"id_str":"14216123","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506438021398343686,"in_reply_to_status_id_str":"1506438021398343686","in_reply_to_user_id":14216123,"in_reply_to_user_id_str":"14216123","in_reply_to_screen_name":"jimcramer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648658224774647808\/sz4079_m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648658224774647808\/sz4079_m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3720210614\/1445280173","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":347145473,"id_str":"347145473","name":"Ahmad - Abdulwahab","screen_name":"babba2020","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":1417,"listed_count":0,"created_at":"Tue - Aug 02 10:28:16 +0000 2011","favourites_count":161,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Dec 07 17:11:21 +0000 2012","id":277097981084332032,"id_str":"277097981084332032","text":"We - got 135 in 2 hrs. Proof http:\/\/t.co\/DpMZrons & made 925 yesterday Click - and drop 10 ASAP http:\/\/t.co\/mzEZIYI5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/DpMZrons","expanded_url":"http:\/\/i.imgur.com\/OFuMk.jpg","display_url":"i.imgur.com\/OFuMk.jpg","indices":[27,47]},{"url":"http:\/\/t.co\/mzEZIYI5","expanded_url":"http:\/\/www.cbsnews9.com\/?401-70179\/making-money-online-the-easy-way\/?2253","display_url":"cbsnews9.com\/?401-70179\/mak\u2026","indices":[96,116]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251826719897649152\/rGT96YpX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251826719897649152\/rGT96YpX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289267041963311107,"id_str":"1289267041963311107","name":"Isaiah - Ogwang","screen_name":"IsaiahOgwang","location":"","description":"you only - live once","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":151,"listed_count":0,"created_at":"Fri - Jul 31 18:30:19 +0000 2020","favourites_count":455,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":119,"lang":null,"status":{"created_at":"Thu - Dec 16 08:18:56 +0000 2021","id":1471394400580349953,"id_str":"1471394400580349953","text":"That - is the voice of an https:\/\/t.co\/M2pPVYA74h sad. https:\/\/t.co\/9SI3xqkCo7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M2pPVYA74h","expanded_url":"http:\/\/elder.So","display_url":"elder.So","indices":[24,47]},{"url":"https:\/\/t.co\/9SI3xqkCo7","expanded_url":"https:\/\/twitter.com\/ItsMutai\/status\/1471347902618476544","display_url":"twitter.com\/ItsMutai\/statu\u2026","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1471347902618476544,"quoted_status_id_str":"1471347902618476544","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300144596207521795\/RpLD9lDo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300144596207521795\/RpLD9lDo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":808934622977552389,"id_str":"808934622977552389","name":"Irungu - Wa Mwaura","screen_name":"mykomwaura","location":"","description":"Everything - Regress Toward The Mean. Prosperity Holds No Guarantees.#KaizenApproachAlways.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":1045,"listed_count":0,"created_at":"Wed - Dec 14 07:20:18 +0000 2016","favourites_count":3052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":496,"lang":null,"status":{"created_at":"Wed - Mar 09 18:10:27 +0000 2022","id":1501621452818325507,"id_str":"1501621452818325507","text":"RT - @MarthaKarua: On the @keroche_ltd issue all they are asking for is more time - not a waiver, yet we recall @KRACorporate @KRACare in uncle\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarthaKarua","name":"Martha - Karua SC","id":119958687,"id_str":"119958687","indices":[3,15]},{"screen_name":"keroche_ltd","name":"Keroche_Ltd","id":1466724013099651082,"id_str":"1466724013099651082","indices":[24,36]},{"screen_name":"KRACorporate","name":"Kenya - Revenue Authority","id":766518164762992640,"id_str":"766518164762992640","indices":[108,121]},{"screen_name":"KRACare","name":"KRA - Care","id":2327093641,"id_str":"2327093641","indices":[122,130]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 10:17:01 +0000 2022","id":1501502308080828423,"id_str":"1501502308080828423","text":"On - the @keroche_ltd issue all they are asking for is more time not a waiver, - yet we recall @KRACorporate @KRACare i\u2026 https:\/\/t.co\/TDTrmX4szD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"keroche_ltd","name":"Keroche_Ltd","id":1466724013099651082,"id_str":"1466724013099651082","indices":[7,19]},{"screen_name":"KRACorporate","name":"Kenya - Revenue Authority","id":766518164762992640,"id_str":"766518164762992640","indices":[91,104]},{"screen_name":"KRACare","name":"KRA - Care","id":2327093641,"id_str":"2327093641","indices":[105,113]}],"urls":[{"url":"https:\/\/t.co\/TDTrmX4szD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501502308080828423","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1287,"favorite_count":4753,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1419770178062229508\/V3PcLB3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1419770178062229508\/V3PcLB3F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":290863403,"id_str":"290863403","name":"LeE - Montgomery","screen_name":"bcast_version","location":"Albuquerque, NM","description":"someone - that makes new things and thinks about them. Also: union; anti fascist; noise; - glitch; thermal photography... teaching Experimental Art and Tech at UNM.","url":"https:\/\/t.co\/UaeLnvEce3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UaeLnvEce3","expanded_url":"http:\/\/www.lee-web.net","display_url":"lee-web.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":1150,"listed_count":5,"created_at":"Sun - May 01 02:26:56 +0000 2011","favourites_count":37984,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4018,"lang":null,"status":{"created_at":"Sat - Mar 26 00:02:32 +0000 2022","id":1507508264182837249,"id_str":"1507508264182837249","text":"@jsdpharmd - I\u2019m in my early 50\u2019s and have always felt dems were a compromise - and feel duped now by the last election\u2026 https:\/\/t.co\/DfAxGbKJij","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jsdpharmd","name":"Defund - Politics - Campaign Finance Reform","id":154322248,"id_str":"154322248","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/DfAxGbKJij","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507508264182837249","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507323806158831622,"in_reply_to_status_id_str":"1507323806158831622","in_reply_to_user_id":154322248,"in_reply_to_user_id_str":"154322248","in_reply_to_screen_name":"jsdpharmd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333782708\/LeeAntenna_sml_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333782708\/LeeAntenna_sml_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":834097474801385472,"id_str":"834097474801385472","name":"Yummyland - special cakes and Pastries \u2665","screen_name":"AdizaBawah","location":"Accra, - Ghana","description":"I am a baker .i love baking and learning amazing new - stuffs about baking . i make all types of cakes .My cakes are simply sugar - free and yummy. call 0277133793","url":"https:\/\/t.co\/FoWuXQqHNS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FoWuXQqHNS","expanded_url":"http:\/\/adizakhamisbawah.wixsite.com","display_url":"adizakhamisbawah.wixsite.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":2021,"listed_count":0,"created_at":"Tue - Feb 21 17:48:29 +0000 2017","favourites_count":4409,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1155,"lang":null,"status":{"created_at":"Fri - Jan 01 20:01:16 +0000 2021","id":1345097782433095682,"id_str":"1345097782433095682","text":"@Pan_Phord - @GetVideoBot","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pan_phord","name":"Panford - \ud83c\udf31\ud83d\udc9a\ud83d\udc51","id":1385315250241773574,"id_str":"1385315250241773574","indices":[0,10]},{"screen_name":"GetVideoBot","name":"GetVideoBot","id":708564331332444160,"id_str":"708564331332444160","indices":[11,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1345029950710177793,"in_reply_to_status_id_str":"1345029950710177793","in_reply_to_user_id":1208763558563110912,"in_reply_to_user_id_str":"1208763558563110912","in_reply_to_screen_name":"jackson_Fx55","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206181633214144512\/PtMMybbk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206181633214144512\/PtMMybbk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834097474801385472\/1547839627","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4837554652,"id_str":"4837554652","name":"Usman - Doguru.\ud83c\uddf3\ud83c\uddec(Architect)","screen_name":"UsmanDoguru","location":"Federal - Capital Territory, Nig","description":"Dream to Create, Create to Change, - change to challenge, challenge to Stand-out, stand-out because Nigerians deserves - the Best...","url":"https:\/\/t.co\/n8sSY2Sk0e","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n8sSY2Sk0e","expanded_url":"http:\/\/C4designs.org.Ng","display_url":"C4designs.org.Ng","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":901,"friends_count":763,"listed_count":0,"created_at":"Sat - Jan 23 05:34:52 +0000 2016","favourites_count":1213,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1032,"lang":null,"status":{"created_at":"Sun - Mar 13 12:30:33 +0000 2022","id":1502985463145111556,"id_str":"1502985463145111556","text":"@ADSdezign - Whats hdri?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ADSdezign","name":"Micheal - David","id":237275291,"id_str":"237275291","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502984843797409793,"in_reply_to_status_id_str":"1502984843797409793","in_reply_to_user_id":237275291,"in_reply_to_user_id_str":"237275291","in_reply_to_screen_name":"ADSdezign","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492803690691977216\/pcYzBXhr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492803690691977216\/pcYzBXhr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4837554652\/1643183885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":154973793,"id_str":"154973793","name":"keenan - davis","screen_name":"kmoney5631","location":"Pottstown, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":412,"friends_count":5001,"listed_count":2,"created_at":"Sat - Jun 12 19:08:06 +0000 2010","favourites_count":14001,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":255,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498149666671714306\/1AZvS-bt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498149666671714306\/1AZvS-bt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154973793\/1646021700","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1043907145023016961,"id_str":"1043907145023016961","name":"phoebe","screen_name":"phoebeemmans","location":"East - Midlands, England","description":"\ud83d\udc1d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":177,"listed_count":1,"created_at":"Sun - Sep 23 16:57:13 +0000 2018","favourites_count":4961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Mon - Mar 21 06:58:46 +0000 2022","id":1505801072165765122,"id_str":"1505801072165765122","text":"RT - @Marthaj_b: U18 Tier 1 plate National finalists! Great to be a part of this - amazing team \ud83c\udf89\ud83d\udc1d #coyb @OfficialBeeHC @OBOhockeyUK @Fortitude\u2026","truncated":false,"entities":{"hashtags":[{"text":"coyb","indices":[95,100]}],"symbols":[],"user_mentions":[{"screen_name":"Marthaj_b","name":"Martha - Broderick","id":1095263042504413185,"id_str":"1095263042504413185","indices":[3,13]},{"screen_name":"OfficialBeeHC","name":"Beeston - Hockey Club","id":413811583,"id_str":"413811583","indices":[101,115]},{"screen_name":"OBOhockeyUK","name":"OBOhockeyUK","id":1057255506622996482,"id_str":"1057255506622996482","indices":[116,128]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 21:02:01 +0000 2022","id":1505650896079839239,"id_str":"1505650896079839239","text":"U18 - Tier 1 plate National finalists! Great to be a part of this amazing team \ud83c\udf89\ud83d\udc1d - #coyb @OfficialBeeHC @OBOhockeyUK\u2026 https:\/\/t.co\/PO7f61Jd45","truncated":true,"entities":{"hashtags":[{"text":"coyb","indices":[80,85]}],"symbols":[],"user_mentions":[{"screen_name":"OfficialBeeHC","name":"Beeston - Hockey Club","id":413811583,"id_str":"413811583","indices":[86,100]},{"screen_name":"OBOhockeyUK","name":"OBOhockeyUK","id":1057255506622996482,"id_str":"1057255506622996482","indices":[101,113]}],"urls":[{"url":"https:\/\/t.co\/PO7f61Jd45","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505650896079839239","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388560759119130624\/I7_9txEk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388560759119130624\/I7_9txEk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1043907145023016961\/1647869016","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":880970210630610946,"id_str":"880970210630610946","name":"Laura - Grandas","screen_name":"nstblqulbrm","location":"Bogot\u00e1, D.C., Colombia","description":"Econom\u00eda-derecho-matem\u00e1ticas - | Ghostwriter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":376,"friends_count":315,"listed_count":1,"created_at":"Sat - Jul 01 02:04:00 +0000 2017","favourites_count":10654,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1015,"lang":null,"status":{"created_at":"Tue - Mar 22 19:31:14 +0000 2022","id":1506352824048881675,"id_str":"1506352824048881675","text":"@J0dalavida - @musictrendscol @EntradaAmarilla Ya la vendiste?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"J0dalavida","name":"Oscar - TexTex","id":340661249,"id_str":"340661249","indices":[0,11]},{"screen_name":"musictrendscol","name":"MUSICTRENDS - Colombia","id":862832569288622082,"id_str":"862832569288622082","indices":[12,27]},{"screen_name":"EntradaAmarilla","name":"Entradas - Amarillas","id":1144327852030119938,"id_str":"1144327852030119938","indices":[28,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506350084581208074,"in_reply_to_status_id_str":"1506350084581208074","in_reply_to_user_id":340661249,"in_reply_to_user_id_str":"340661249","in_reply_to_screen_name":"J0dalavida","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422602954431946755\/nGTNHAAK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422602954431946755\/nGTNHAAK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880970210630610946\/1598296978","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23030624,"id_str":"23030624","name":"Ilene - D\ud83c\uddfa\ud83c\udde6","screen_name":"Ilene_CD","location":"New Jersey","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":1186,"listed_count":0,"created_at":"Fri - Mar 06 04:33:11 +0000 2009","favourites_count":15143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3882,"lang":null,"status":{"created_at":"Sun - Mar 20 13:36:31 +0000 2022","id":1505538779536363523,"id_str":"1505538779536363523","text":"@joncoopertweets - @KyivIndependent If this is true, is the replacement going to pull out of - Ukrain or is he going to\u2026 https:\/\/t.co\/V6ku7FELo0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]},{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[17,33]}],"urls":[{"url":"https:\/\/t.co\/V6ku7FELo0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505538779536363523","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1505522404340248579,"in_reply_to_status_id_str":"1505522404340248579","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/798991460167192576\/IyfJyatw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/798991460167192576\/IyfJyatw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23030624\/1492919289","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1162233587925565441,"id_str":"1162233587925565441","name":"Nakawungu - Sylvia Kiyemba","screen_name":"NakawunguK","location":"Kampala, Uganda","description":"my - attitude and nature","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":301,"listed_count":0,"created_at":"Fri - Aug 16 05:24:54 +0000 2019","favourites_count":389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Sun - Nov 21 16:35:53 +0000 2021","id":1462459762960916487,"id_str":"1462459762960916487","text":"@TurkishAirlines - Hello ,I would want to know about the covid19 Testing rules under Turkish - airlines ,am I supposed\u2026 https:\/\/t.co\/kQfCiq2Nb4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TurkishAirlines","name":"Turkish - Airlines","id":18909186,"id_str":"18909186","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/kQfCiq2Nb4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1462459762960916487","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1461047221043044354,"in_reply_to_status_id_str":"1461047221043044354","in_reply_to_user_id":18909186,"in_reply_to_user_id_str":"18909186","in_reply_to_screen_name":"TurkishAirlines","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345286738089009152\/B--6fYEv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345286738089009152\/B--6fYEv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1111307815442882560,"id_str":"1111307815442882560","name":"Leonard. - N. Mbugua","screen_name":"LeonardNMbugua2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":89,"listed_count":0,"created_at":"Thu - Mar 28 16:43:25 +0000 2019","favourites_count":343,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":530,"lang":null,"status":{"created_at":"Fri - Mar 04 12:13:16 +0000 2022","id":1499719625717727235,"id_str":"1499719625717727235","text":"@Murathe_David_ - mind you party business.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Murathe_David_","name":"Hon.David - Murathe","id":1380109732996866048,"id_str":"1380109732996866048","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499418548350902279,"in_reply_to_status_id_str":"1499418548350902279","in_reply_to_user_id":1380109732996866048,"in_reply_to_user_id_str":"1380109732996866048","in_reply_to_screen_name":"Murathe_David_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1111308009878237184\/i8RO6Lf__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1111308009878237184\/i8RO6Lf__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":860779490,"id_str":"860779490","name":"Rhonda - Forston","screen_name":"rhondalforston","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":315,"listed_count":0,"created_at":"Thu - Oct 04 03:15:45 +0000 2012","favourites_count":1346,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":460,"lang":null,"status":{"created_at":"Thu - Mar 03 04:59:46 +0000 2022","id":1499248144030257157,"id_str":"1499248144030257157","text":"RT - @afshineemrani: Pfizer vaccine data. Pfizer wanted you to wait till 2085 - to know that the vaccine you took has 9 PAGES of side effects.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"afshineemrani","name":"Afshine - Emrani MD FACC","id":73937639,"id_str":"73937639","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 23:06:29 +0000 2022","id":1498796849116823556,"id_str":"1498796849116823556","text":"Pfizer - vaccine data. Pfizer wanted you to wait till 2085 to know that the vaccine - you took has 9 PAGES of side eff\u2026 https:\/\/t.co\/H15d0CfAPE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H15d0CfAPE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498796849116823556","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21382,"favorite_count":41555,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21382,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262229233507733511,"id_str":"1262229233507733511","name":"cmsfotos123@gmail.com","screen_name":"cmsfotos123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":64,"listed_count":0,"created_at":"Mon - May 18 03:51:25 +0000 2020","favourites_count":37,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Thu - Dec 03 13:52:29 +0000 2020","id":1334495728056606721,"id_str":"1334495728056606721","text":"RT - @MarisaKabas: a drunk woman is trump team\u2019s star witness in michigan - https:\/\/t.co\/qGxEI3hp2G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarisaKabas","name":"Marisa - Kabas","id":30808826,"id_str":"30808826","indices":[3,15]}],"urls":[],"media":[{"id":1334310555855806468,"id_str":"1334310555855806468","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","url":"https:\/\/t.co\/qGxEI3hp2G","display_url":"pic.twitter.com\/qGxEI3hp2G","expanded_url":"https:\/\/twitter.com\/ryanjreilly\/status\/1334311448340795396\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1334311448340795396,"source_status_id_str":"1334311448340795396","source_user_id":7768402,"source_user_id_str":"7768402"}]},"extended_entities":{"media":[{"id":1334310555855806468,"id_str":"1334310555855806468","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","url":"https:\/\/t.co\/qGxEI3hp2G","display_url":"pic.twitter.com\/qGxEI3hp2G","expanded_url":"https:\/\/twitter.com\/ryanjreilly\/status\/1334311448340795396\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1334311448340795396,"source_status_id_str":"1334311448340795396","source_user_id":7768402,"source_user_id_str":"7768402","video_info":{"aspect_ratio":[80,37],"duration_millis":126903,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/1280x592\/mQBvsGT4MHjRLsux.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/pl\/kO7s40HXvwVUvFt5.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/582x270\/erlUNmM9dR2qh27I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/778x360\/_vq_Kdu0Y7usIAkl.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 03 01:55:13 +0000 2020","id":1334315220815278080,"id_str":"1334315220815278080","text":"a - drunk woman is trump team\u2019s star witness in michigan https:\/\/t.co\/qGxEI3hp2G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1334310555855806468,"id_str":"1334310555855806468","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","url":"https:\/\/t.co\/qGxEI3hp2G","display_url":"pic.twitter.com\/qGxEI3hp2G","expanded_url":"https:\/\/twitter.com\/ryanjreilly\/status\/1334311448340795396\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1334311448340795396,"source_status_id_str":"1334311448340795396","source_user_id":7768402,"source_user_id_str":"7768402"}]},"extended_entities":{"media":[{"id":1334310555855806468,"id_str":"1334310555855806468","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1334310555855806468\/pu\/img\/Lp262x9Q9kz7MSza.jpg","url":"https:\/\/t.co\/qGxEI3hp2G","display_url":"pic.twitter.com\/qGxEI3hp2G","expanded_url":"https:\/\/twitter.com\/ryanjreilly\/status\/1334311448340795396\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1334311448340795396,"source_status_id_str":"1334311448340795396","source_user_id":7768402,"source_user_id_str":"7768402","video_info":{"aspect_ratio":[80,37],"duration_millis":126903,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/1280x592\/mQBvsGT4MHjRLsux.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/pl\/kO7s40HXvwVUvFt5.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/582x270\/erlUNmM9dR2qh27I.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1334310555855806468\/pu\/vid\/778x360\/_vq_Kdu0Y7usIAkl.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25864,"favorite_count":186059,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25864,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299933284537901056,"id_str":"1299933284537901056","name":"Mirror - Flower","screen_name":"TheMirrorFlower","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":917,"listed_count":0,"created_at":"Sun - Aug 30 04:54:23 +0000 2020","favourites_count":3237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Jun 03 03:25:06 +0000 2021","id":1400292429882966020,"id_str":"1400292429882966020","text":"@yashar - I hear u & hold space for u. (also, your insight and sense for the news - is awesome. You help keep people\u2019s\u2026 https:\/\/t.co\/bqvFlpi4dM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yashar","name":"Yashar - Ali \ud83d\udc18","id":11744152,"id_str":"11744152","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/bqvFlpi4dM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1400292429882966020","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1399959112729784322,"in_reply_to_status_id_str":"1399959112729784322","in_reply_to_user_id":11744152,"in_reply_to_user_id_str":"11744152","in_reply_to_screen_name":"yashar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299933639355105285\/OEaXnsZg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299933639355105285\/OEaXnsZg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2318155179,"id_str":"2318155179","name":"Keith","screen_name":"wolfiekeith","location":"Kingswinford - ,West Midlands.","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":1381,"listed_count":1,"created_at":"Sat - Feb 01 14:06:41 +0000 2014","favourites_count":152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":444,"lang":null,"status":{"created_at":"Sun - Mar 13 08:01:30 +0000 2022","id":1502917757112832012,"id_str":"1502917757112832012","text":"RT - @pedalsingh: Happy Birthday @rubendsneves_ \nThe Best we''ve ever had in our - lifetime, he wows every game now. Off the pitch this human is\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pedalsingh","name":"Singhwhenyourewinning - \ud83d\udc99","id":2389097759,"id_str":"2389097759","indices":[3,14]},{"screen_name":"rubendsneves_","name":"Ruben - Neves","id":943101694732316672,"id_str":"943101694732316672","indices":[31,45]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 06:33:36 +0000 2022","id":1502895636361977859,"id_str":"1502895636361977859","text":"Happy - Birthday @rubendsneves_ \nThe Best we''ve ever had in our lifetime, he wows - every game now. Off the pitch this\u2026 https:\/\/t.co\/iOKtrn32td","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rubendsneves_","name":"Ruben - Neves","id":943101694732316672,"id_str":"943101694732316672","indices":[15,29]}],"urls":[{"url":"https:\/\/t.co\/iOKtrn32td","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502895636361977859","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":397,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546292160191299584\/D_QW53fX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546292160191299584\/D_QW53fX_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":548482464,"id_str":"548482464","name":"Roy - Daniels","screen_name":"OldShadowrider","location":"Canada","description":"I\u2019m - 84 now. Dad was at Dunkirk. Lived through Blitz for a time in London. Left - for Canada in 1949. Became printer at 15. Brother Keith, Marine. No DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8494,"friends_count":9121,"listed_count":1,"created_at":"Sun - Apr 08 12:47:12 +0000 2012","favourites_count":18202,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10238,"lang":null,"status":{"created_at":"Fri - Mar 25 18:52:04 +0000 2022","id":1507430130376921092,"id_str":"1507430130376921092","text":"RT - @Sputnik_Not: Ukrainian farmer holds yard sale https:\/\/t.co\/XV4TspAMsb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sputnik_Not","name":"Sputnik","id":4382006968,"id_str":"4382006968","indices":[3,15]}],"urls":[],"media":[{"id":1506669135580876803,"id_str":"1506669135580876803","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","url":"https:\/\/t.co\/XV4TspAMsb","display_url":"pic.twitter.com\/XV4TspAMsb","expanded_url":"https:\/\/twitter.com\/Sputnik_Not\/status\/1506669178668953603\/photo\/1","type":"photo","sizes":{"large":{"w":1123,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1123,"h":649,"resize":"fit"},"small":{"w":680,"h":393,"resize":"fit"}},"source_status_id":1506669178668953603,"source_status_id_str":"1506669178668953603","source_user_id":4382006968,"source_user_id_str":"4382006968"}]},"extended_entities":{"media":[{"id":1506669135580876803,"id_str":"1506669135580876803","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","url":"https:\/\/t.co\/XV4TspAMsb","display_url":"pic.twitter.com\/XV4TspAMsb","expanded_url":"https:\/\/twitter.com\/Sputnik_Not\/status\/1506669178668953603\/photo\/1","type":"photo","sizes":{"large":{"w":1123,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1123,"h":649,"resize":"fit"},"small":{"w":680,"h":393,"resize":"fit"}},"source_status_id":1506669178668953603,"source_status_id_str":"1506669178668953603","source_user_id":4382006968,"source_user_id_str":"4382006968"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:28:19 +0000 2022","id":1506669178668953603,"id_str":"1506669178668953603","text":"Ukrainian - farmer holds yard sale https:\/\/t.co\/XV4TspAMsb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506669135580876803,"id_str":"1506669135580876803","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","url":"https:\/\/t.co\/XV4TspAMsb","display_url":"pic.twitter.com\/XV4TspAMsb","expanded_url":"https:\/\/twitter.com\/Sputnik_Not\/status\/1506669178668953603\/photo\/1","type":"photo","sizes":{"large":{"w":1123,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1123,"h":649,"resize":"fit"},"small":{"w":680,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506669135580876803,"id_str":"1506669135580876803","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjDmJxX0AM3a81.jpg","url":"https:\/\/t.co\/XV4TspAMsb","display_url":"pic.twitter.com\/XV4TspAMsb","expanded_url":"https:\/\/twitter.com\/Sputnik_Not\/status\/1506669178668953603\/photo\/1","type":"photo","sizes":{"large":{"w":1123,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1123,"h":649,"resize":"fit"},"small":{"w":680,"h":393,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8116,"favorite_count":52580,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8116,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2818697077\/3318b50a49366f96d95a6bf906cfc865_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2818697077\/3318b50a49366f96d95a6bf906cfc865_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/548482464\/1348664869","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1082423314549821444,"id_str":"1082423314549821444","name":"jbor","screen_name":"jbor99917222","location":"Ottawa - ","description":"Restaurant owner, Dad, husband, fan of the ByWard Market.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":317,"listed_count":0,"created_at":"Mon - Jan 07 23:46:43 +0000 2019","favourites_count":3644,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":638,"lang":null,"status":{"created_at":"Sat - Mar 26 03:45:33 +0000 2022","id":1507564387388825609,"id_str":"1507564387388825609","text":"@MrAhmednurAli - Nothing is free. Someone is paying.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrAhmednurAli","name":"Ahmed - Ali","id":369307681,"id_str":"369307681","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507454426746863617,"in_reply_to_status_id_str":"1507454426746863617","in_reply_to_user_id":369307681,"in_reply_to_user_id_str":"369307681","in_reply_to_screen_name":"MrAhmednurAli","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336484704942436352\/c6sJ3YNf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336484704942436352\/c6sJ3YNf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260725276214001664,"id_str":"1260725276214001664","name":"thyra_ltd","screen_name":"thyra_ltd","location":"Poole, - UK","description":"Ultra-comfortable, breathable masks with a high-purity - filter made in the UK from sustainable materials. Available across EU & USA. - Donations made from sales.","url":"https:\/\/t.co\/H5CZ3erbzl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H5CZ3erbzl","expanded_url":"https:\/\/www.thyraltd.com\/","display_url":"thyraltd.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":201,"listed_count":0,"created_at":"Thu - May 14 00:15:42 +0000 2020","favourites_count":349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":121,"lang":null,"status":{"created_at":"Tue - Sep 28 12:32:22 +0000 2021","id":1442829537105137668,"id_str":"1442829537105137668","text":"Prenez - un grip @BorisJohnson #petrolcrisis #PetrolShortages #petrolpanic","truncated":false,"entities":{"hashtags":[{"text":"petrolcrisis","indices":[29,42]},{"text":"PetrolShortages","indices":[43,59]},{"text":"petrolpanic","indices":[60,72]}],"symbols":[],"user_mentions":[{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[15,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303626300922437633\/p9iRpNuX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303626300922437633\/p9iRpNuX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260725276214001664\/1592245135","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243122246,"id_str":"243122246","name":"Morag - Balfour \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f\ud83c\uddea\ud83c\uddfa - \ud83c\uddf5\ud83c\uddf8\u267f\ud83d\udc99","screen_name":"peacenikmo","location":"","description":"Scottish, - European, disabled, socialist, and feminist. I''m a Quaker, and a member of - the Iona Community. Black Lives Matter.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":93,"friends_count":3400,"listed_count":0,"created_at":"Wed - Jan 26 10:32:38 +0000 2011","favourites_count":16167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2078,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316791689642684416\/jqdpdEpq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316791689642684416\/jqdpdEpq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243122246\/1602782772","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":867396580499968000,"id_str":"867396580499968000","name":"Lisa - Shnayder, MD","screen_name":"lshnayderMD","location":"","description":"Head - and neck surgeon, educator, mentor to residents, fellows and junior faculty\n#KU_ENT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":572,"friends_count":1018,"listed_count":9,"created_at":"Wed - May 24 15:07:15 +0000 2017","favourites_count":6419,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":506,"lang":null,"status":{"created_at":"Wed - Mar 09 16:46:52 +0000 2022","id":1501600416122998787,"id_str":"1501600416122998787","text":"RT - @KyivIndependent: Volunteers place sandbags around one of Odesa\u2019s landmarks, - the monument to Duke of Richelieu, to protect it from poten\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 14:11:09 +0000 2022","id":1501561231869677568,"id_str":"1501561231869677568","text":"Volunteers - place sandbags around one of Odesa\u2019s landmarks, the monument to Duke - of Richelieu, to protect it from po\u2026 https:\/\/t.co\/eC4BKesjA9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eC4BKesjA9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501561231869677568","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2089,"favorite_count":11936,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2089,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867491066630606849\/MDUfzMCs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867491066630606849\/MDUfzMCs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/867396580499968000\/1633300005","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3062409968,"id_str":"3062409968","name":"Shakil - Ahmed \ud83c\udde7\ud83c\udde9","screen_name":"shakilahmedran2","location":"Dhaka, - Bangladesh","description":"Bangladesh University of Engineering ans Technology(BUET)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":652,"friends_count":4807,"listed_count":1,"created_at":"Thu - Mar 05 07:08:14 +0000 2015","favourites_count":16578,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":202,"lang":null,"status":{"created_at":"Thu - Feb 10 15:27:08 +0000 2022","id":1491795879040524300,"id_str":"1491795879040524300","text":"https:\/\/t.co\/b81rsM9qJa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1491795866923188225,"id_str":"1491795866923188225","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FLPsb-VaQAEpP-Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLPsb-VaQAEpP-Q.jpg","url":"https:\/\/t.co\/b81rsM9qJa","display_url":"pic.twitter.com\/b81rsM9qJa","expanded_url":"https:\/\/twitter.com\/shakilahmedran2\/status\/1491795879040524300\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":960,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":718,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1491795866923188225,"id_str":"1491795866923188225","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FLPsb-VaQAEpP-Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLPsb-VaQAEpP-Q.jpg","url":"https:\/\/t.co\/b81rsM9qJa","display_url":"pic.twitter.com\/b81rsM9qJa","expanded_url":"https:\/\/twitter.com\/shakilahmedran2\/status\/1491795879040524300\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":718,"h":960,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":718,"h":960,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"016638620dd7b5f5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/016638620dd7b5f5.json","place_type":"city","name":"Cox''s - Bazar","full_name":"Cox''s Bazar, Bangladesh","country_code":"BD","country":"Bangladesh","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[91.9670563,21.4226112],[92.0070038,21.4226112],[92.0070038,21.4404716],[91.9670563,21.4404716]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316818965339881472\/AjnLlAbD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316818965339881472\/AjnLlAbD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3062409968\/1489761086","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":288772937,"id_str":"288772937","name":"Ahmet - Bayram Ahmeto\u011flu","screen_name":"AhmetBAhmetolu","location":"Strasbourg, - France","description":"S\u0131ras\u0131yla Tunceli Ovac\u0131k(2012), Bo\u011fazl\u0131yan(2014) - Cumhuriyet Savc\u0131s\u0131, Adalet Bakanl\u0131\u011f\u0131 Tetkik H\u00e2kimi(2018), - halen A\u0130HM''de Hukuk\u00e7u(2020-). Kastamonulu.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":453,"listed_count":0,"created_at":"Wed - Apr 27 13:03:09 +0000 2011","favourites_count":2443,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"status":{"created_at":"Sat - Mar 19 23:33:39 +0000 2022","id":1505326667757203463,"id_str":"1505326667757203463","text":"@algalitsky - @TheNatlInterest :)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"algalitsky","name":"Alex - Galitsky","id":3141265194,"id_str":"3141265194","indices":[0,11]},{"screen_name":"TheNatlInterest","name":"National - Interest","id":152311372,"id_str":"152311372","indices":[12,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503848946061365248,"in_reply_to_status_id_str":"1503848946061365248","in_reply_to_user_id":3141265194,"in_reply_to_user_id_str":"3141265194","in_reply_to_screen_name":"algalitsky","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486824841483366400\/Hon--kr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486824841483366400\/Hon--kr__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":536979321,"id_str":"536979321","name":"Ivan - Friedman","screen_name":"ifriedman11","location":"","description":"Gamer | - Coder | Dog-Father","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":193,"listed_count":0,"created_at":"Mon - Mar 26 03:43:19 +0000 2012","favourites_count":580,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123,"lang":null,"status":{"created_at":"Wed - Jan 05 21:52:49 +0000 2022","id":1478846974879166465,"id_str":"1478846974879166465","text":"@fwarg - Graphic novels and D&D rulebooks would disagree \ud83e\udd13","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fwarg","name":"Sophie - Nunberg","id":14102160,"id_str":"14102160","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478806198728249345,"in_reply_to_status_id_str":"1478806198728249345","in_reply_to_user_id":14102160,"in_reply_to_user_id_str":"14102160","in_reply_to_screen_name":"fwarg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660531014951763968\/j2rtU7Pe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660531014951763968\/j2rtU7Pe_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282124380391317506,"id_str":"1282124380391317506","name":"Neeti - Parekh","screen_name":"neeti_parekh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":771,"listed_count":0,"created_at":"Sun - Jul 12 01:27:50 +0000 2020","favourites_count":27219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":605,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314783206495973377\/V9jr1Mhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314783206495973377\/V9jr1Mhq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":916549489023954944,"id_str":"916549489023954944","name":"Mohamed","screen_name":"HonMohamedHass","location":"Nairobi, - Kenya","description":"Simple. down to earth. happy .father .businessman","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":406,"friends_count":4315,"listed_count":0,"created_at":"Sat - Oct 07 06:23:21 +0000 2017","favourites_count":34816,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":692,"lang":null,"status":{"created_at":"Tue - Feb 08 18:06:24 +0000 2022","id":1491111182354497536,"id_str":"1491111182354497536","text":"@s_saynis - M.a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"s_saynis","name":"Saida - Osman","id":1223614821175898118,"id_str":"1223614821175898118","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1490927600046272513,"in_reply_to_status_id_str":"1490927600046272513","in_reply_to_user_id":1223614821175898118,"in_reply_to_user_id_str":"1223614821175898118","in_reply_to_screen_name":"s_saynis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451956337592655878\/zNHQt-qZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451956337592655878\/zNHQt-qZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248707634422824967,"id_str":"1248707634422824967","name":"Thompson","screen_name":"mdeee231","location":"","description":"Tom - Jay Jay \u270c\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":78,"listed_count":0,"created_at":"Fri - Apr 10 20:21:40 +0000 2020","favourites_count":78516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1219,"lang":null,"status":{"created_at":"Fri - Mar 25 12:57:53 +0000 2022","id":1507340996983590916,"id_str":"1507340996983590916","text":"RT - @jayythedope: While talking to a chic you find attractive, asking her if she - has a boyfriend is very unnecessary, that\u2019s none of your bu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jayythedope","name":"Shola","id":1448745376324915203,"id_str":"1448745376324915203","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:47:00 +0000 2022","id":1507323158222807042,"id_str":"1507323158222807042","text":"While - talking to a chic you find attractive, asking her if she has a boyfriend is - very unnecessary, that\u2019s none of your business.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1761,"favorite_count":9383,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1761,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443708005938249729\/TpLLfGYa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443708005938249729\/TpLLfGYa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1018227294006009856,"id_str":"1018227294006009856","name":"Ashley - Ocallaghan","screen_name":"AshleyOcallagh6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":63,"listed_count":0,"created_at":"Sat - Jul 14 20:14:39 +0000 2018","favourites_count":704,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Sat - Feb 05 07:28:56 +0000 2022","id":1489863596238520323,"id_str":"1489863596238520323","text":"RT - @isaiahsgrave: the urge to say \"i''m fine\" instead of expressing myself - hahaha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"isaiahsgrave","name":"''","id":1212799484628832256,"id_str":"1212799484628832256","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 04 22:46:13 +0000 2022","id":1489732051653722114,"id_str":"1489732051653722114","text":"the - urge to say \"i''m fine\" instead of expressing myself hahaha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29083,"favorite_count":148366,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":29083,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386484705634131969\/kRq14_7y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386484705634131969\/kRq14_7y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1018227294006009856\/1607502073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":795790273217339392,"id_str":"795790273217339392","name":"Wendy - Lewis","screen_name":"PeaceHope_Love","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":23,"friends_count":288,"listed_count":0,"created_at":"Tue - Nov 08 00:49:21 +0000 2016","favourites_count":17279,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":916,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294587142899937281\/j6yQiJNL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294587142899937281\/j6yQiJNL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/795790273217339392\/1589108043","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15539187,"id_str":"15539187","name":"John - Turano","screen_name":"jrturan","location":"East Hampton, NY","description":"Retired","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":519,"listed_count":0,"created_at":"Tue - Jul 22 22:51:06 +0000 2008","favourites_count":6348,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638412729448050688\/mINwqqbG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638412729448050688\/mINwqqbG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":903421626125090816,"id_str":"903421626125090816","name":"John - Sun","screen_name":"peptide612","location":"New Orleans, LA","description":"biologist - in drug R&D, cancer, immune diseases","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":405,"listed_count":0,"created_at":"Fri - Sep 01 00:57:55 +0000 2017","favourites_count":465,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340333754485776384\/iSekS6-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340333754485776384\/iSekS6-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/903421626125090816\/1583950323","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":988922477337198592,"id_str":"988922477337198592","name":"lujayne - D","screen_name":"DLujayne","location":"","description":"Impossible means - try again :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":122,"listed_count":0,"created_at":"Tue - Apr 24 23:27:46 +0000 2018","favourites_count":622,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Thu - Apr 01 14:22:52 +0000 2021","id":1377627527963947011,"id_str":"1377627527963947011","text":"@dimsumplingg - @cuchallain Is it good ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dimsumplingg","name":"dim - | 729\u58f0\u5de5\u573ayyds","id":1242230975989526531,"id_str":"1242230975989526531","indices":[0,13]},{"screen_name":"cuchallain","name":"Cuchallain","id":2921297152,"id_str":"2921297152","indices":[14,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1377621782048432132,"in_reply_to_status_id_str":"1377621782048432132","in_reply_to_user_id":1242230975989526531,"in_reply_to_user_id_str":"1242230975989526531","in_reply_to_screen_name":"dimsumplingg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082323020356698112\/FS2IsYu-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082323020356698112\/FS2IsYu-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29965572,"id_str":"29965572","name":"Thomas - William Lucas","screen_name":"tommowlucas","location":"Esher, Surrey","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":191,"friends_count":1545,"listed_count":2,"created_at":"Thu - Apr 09 11:34:38 +0000 2009","favourites_count":5791,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6231,"lang":null,"status":{"created_at":"Fri - Mar 25 22:09:19 +0000 2022","id":1507479770921152512,"id_str":"1507479770921152512","text":"RT - @Clark1995Clark: Two legends. \n\n https:\/\/t.co\/GL6UpmjFtX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Clark1995Clark","name":"Daniel","id":2859023885,"id_str":"2859023885","indices":[3,18]}],"urls":[],"media":[{"id":1498019367308648458,"id_str":"1498019367308648458","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","url":"https:\/\/t.co\/GL6UpmjFtX","display_url":"pic.twitter.com\/GL6UpmjFtX","expanded_url":"https:\/\/twitter.com\/Clark1995Clark\/status\/1498019513413128202\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":546,"resize":"fit"},"medium":{"w":710,"h":570,"resize":"fit"},"large":{"w":710,"h":570,"resize":"fit"}},"source_status_id":1498019513413128202,"source_status_id_str":"1498019513413128202","source_user_id":2859023885,"source_user_id_str":"2859023885"}]},"extended_entities":{"media":[{"id":1498019367308648458,"id_str":"1498019367308648458","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","url":"https:\/\/t.co\/GL6UpmjFtX","display_url":"pic.twitter.com\/GL6UpmjFtX","expanded_url":"https:\/\/twitter.com\/Clark1995Clark\/status\/1498019513413128202\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":546,"resize":"fit"},"medium":{"w":710,"h":570,"resize":"fit"},"large":{"w":710,"h":570,"resize":"fit"}},"source_status_id":1498019513413128202,"source_status_id_str":"1498019513413128202","source_user_id":2859023885,"source_user_id_str":"2859023885","video_info":{"aspect_ratio":[71,57],"duration_millis":129833,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/710x570\/sp5qQMFezC_0Ndmt.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/448x360\/QNCR8W9_tSWBq1aJ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/pl\/hlrxW0LTIPWN_zQb.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/336x270\/AYBI08Fr77Am3iSp.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:31:49 +0000 2022","id":1507455234259533825,"id_str":"1507455234259533825","text":"Two - legends. \n\n https:\/\/t.co\/GL6UpmjFtX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1498019367308648458,"id_str":"1498019367308648458","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","url":"https:\/\/t.co\/GL6UpmjFtX","display_url":"pic.twitter.com\/GL6UpmjFtX","expanded_url":"https:\/\/twitter.com\/Clark1995Clark\/status\/1498019513413128202\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":546,"resize":"fit"},"medium":{"w":710,"h":570,"resize":"fit"},"large":{"w":710,"h":570,"resize":"fit"}},"source_status_id":1498019513413128202,"source_status_id_str":"1498019513413128202","source_user_id":2859023885,"source_user_id_str":"2859023885"}]},"extended_entities":{"media":[{"id":1498019367308648458,"id_str":"1498019367308648458","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498019367308648458\/pu\/img\/yQzg2gsG4AnkTO69.jpg","url":"https:\/\/t.co\/GL6UpmjFtX","display_url":"pic.twitter.com\/GL6UpmjFtX","expanded_url":"https:\/\/twitter.com\/Clark1995Clark\/status\/1498019513413128202\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":546,"resize":"fit"},"medium":{"w":710,"h":570,"resize":"fit"},"large":{"w":710,"h":570,"resize":"fit"}},"source_status_id":1498019513413128202,"source_status_id_str":"1498019513413128202","source_user_id":2859023885,"source_user_id_str":"2859023885","video_info":{"aspect_ratio":[71,57],"duration_millis":129833,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/710x570\/sp5qQMFezC_0Ndmt.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/448x360\/QNCR8W9_tSWBq1aJ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/pl\/hlrxW0LTIPWN_zQb.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498019367308648458\/pu\/vid\/336x270\/AYBI08Fr77Am3iSp.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":368,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867293223328387072\/0fdXvrX3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867293223328387072\/0fdXvrX3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29965572\/1495613794","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287569587027021827,"id_str":"1287569587027021827","name":"Randal - Hendrickson","screen_name":"RandalHendrick9","location":"","description":"Political - theorist. Host of @podopticon, a politics, history, and culture podcast. \nSubscribe: - https:\/\/t.co\/2azhyaNPdx","url":"https:\/\/t.co\/3rERz2PuwB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3rERz2PuwB","expanded_url":"https:\/\/podopticon.com","display_url":"podopticon.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2azhyaNPdx","expanded_url":"http:\/\/podopticon.buzzsprout.com","display_url":"podopticon.buzzsprout.com","indices":[95,118]}]}},"protected":false,"followers_count":622,"friends_count":641,"listed_count":6,"created_at":"Mon - Jul 27 02:04:58 +0000 2020","favourites_count":10860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2047,"lang":null,"status":{"created_at":"Fri - Mar 25 21:07:32 +0000 2022","id":1507464222225367040,"id_str":"1507464222225367040","text":"@ShalMarriott - Congrats!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShalMarriott","name":"Shal - Marriott","id":2552712650,"id_str":"2552712650","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507436952567566341,"in_reply_to_status_id_str":"1507436952567566341","in_reply_to_user_id":2552712650,"in_reply_to_user_id_str":"2552712650","in_reply_to_screen_name":"ShalMarriott","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288581039124881414\/USMtPbbG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288581039124881414\/USMtPbbG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287569587027021827\/1597277096","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":863854115784470529,"id_str":"863854115784470529","name":"Karen - Ford","screen_name":"KarenMFord99","location":"McKinney, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":754,"friends_count":274,"listed_count":1,"created_at":"Sun - May 14 20:30:45 +0000 2017","favourites_count":236337,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82573,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316539381231034369\/iSZ_w60p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316539381231034369\/iSZ_w60p_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256046715653648385,"id_str":"1256046715653648385","name":"Ira - Martina Drupady \ud83c\uddee\ud83c\udde9\ud83d\udc99\ud83d\udc9b\ud83c\uddf8\ud83c\uddec\ud83c\uddf9\ud83c\udded\ud83c\udde6\ud83c\uddfa\ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf8","screen_name":"MartyDrupady","location":"Singapore","description":"Energy - Geographer #NuclearSafety & #EnergyTransition. PhDing #EnergyandGender in - #UrbanKampungs. Indonesian diaspora. Podcast buff esp #TheArchers. (she\/her).","url":"https:\/\/t.co\/z638YVShs0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/z638YVShs0","expanded_url":"https:\/\/esi.nus.edu.sg","display_url":"esi.nus.edu.sg","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":637,"friends_count":4651,"listed_count":1,"created_at":"Fri - May 01 02:24:18 +0000 2020","favourites_count":36551,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4753,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:12 +0000 2022","id":1507559011968638979,"id_str":"1507559011968638979","text":"RT - @NewStatesman: n a new BBC Radio 4 documentary, Archaeology of a Storyteller, - Alan Garner explores the history of the area that inspired\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NewStatesman","name":"The - New Statesman","id":19906615,"id_str":"19906615","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:04:22 +0000 2022","id":1507554022630338564,"id_str":"1507554022630338564","text":"n - a new BBC Radio 4 documentary, Archaeology of a Storyteller, Alan Garner explores - the history of the area that in\u2026 https:\/\/t.co\/FSUtqCc7Ps","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FSUtqCc7Ps","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507554022630338564","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493925654517071874\/ClB-sgXl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493925654517071874\/ClB-sgXl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256046715653648385\/1645240331","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1102322816,"id_str":"1102322816","name":"jacobsugarman","screen_name":"jacobsugarman","location":"san - francisco, ca","description":"husband, dad, ad guy, music and sports fanatic. - ya know, the usual.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":603,"listed_count":0,"created_at":"Fri - Jan 18 23:49:25 +0000 2013","favourites_count":548,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Sat - Apr 21 18:49:06 +0000 2018","id":987765184897822720,"id_str":"987765184897822720","text":"@The_Real_IJM - And Wenger is out!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"The_Real_IJM","name":"Ivan - Juarez-Mrazek","id":14337592,"id_str":"14337592","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":987446420654379008,"in_reply_to_status_id_str":"987446420654379008","in_reply_to_user_id":14337592,"in_reply_to_user_id_str":"14337592","in_reply_to_screen_name":"The_Real_IJM","geo":null,"coordinates":null,"place":{"id":"71d33f776fe41dfb","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/71d33f776fe41dfb.json","place_type":"city","name":"Martinez","full_name":"Martinez, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.157021,37.954027],[-122.075217,37.954027],[-122.075217,38.037226],[-122.157021,38.037226]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/791121486798991360\/n1z-YsKz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/791121486798991360\/n1z-YsKz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1102322816\/1481235986","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24645562,"id_str":"24645562","name":"Daniel - \u2588\u2588\u2588\u2588","screen_name":"Dmaki891","location":"Toronto, ON","description":"\u2588\u2588\u2588\u2588 - Harm to Ongoing Matter \u2588\u2588\u2588\u2588","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":682,"friends_count":2152,"listed_count":24,"created_at":"Mon - Mar 16 03:50:09 +0000 2009","favourites_count":17091,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22273,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474254983050715137\/92_tPmBd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474254983050715137\/92_tPmBd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24645562\/1616993801","profile_link_color":"3B94D9","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1212789290,"id_str":"1212789290","name":"Juha - Laukkanen","screen_name":"LaukkanenJuha","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":191,"listed_count":0,"created_at":"Sat - Feb 23 16:53:29 +0000 2013","favourites_count":591,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Wed - Sep 09 18:27:59 +0000 2020","id":1303762088708497408,"id_str":"1303762088708497408","text":"@lauramantyla - Kiitos! Paitsi, ett\u00e4 sanomasi on t\u00e4rke\u00e4\u00e4 ja monella tapaa - opittuja k\u00e4sityksi\u00e4mme haastavaa\/avartavaa,\u2026 https:\/\/t.co\/1GGzS1bYet","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lauramantyla","name":"Laura - Late M\u00e4ntyl\u00e4","id":253512406,"id_str":"253512406","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/1GGzS1bYet","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1303762088708497408","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1302900313331032065,"in_reply_to_status_id_str":"1302900313331032065","in_reply_to_user_id":253512406,"in_reply_to_user_id_str":"253512406","in_reply_to_screen_name":"lauramantyla","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"fi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914468951878520838\/vdamLfA5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914468951878520838\/vdamLfA5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2685061330,"id_str":"2685061330","name":"yvi","screen_name":"Gommezz01","location":"Lone - Star State","description":"22| dog mom| D.R \u2764| utrgv","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":283,"friends_count":353,"listed_count":3,"created_at":"Mon - Jul 07 23:40:50 +0000 2014","favourites_count":22573,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8468,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497342557109501952\/Go5vVeyQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497342557109501952\/Go5vVeyQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2685061330\/1642487913","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1521958705,"id_str":"1521958705","name":"Soner - Cansev","screen_name":"sonercansev","location":"\u0130stanbul, T\u00fcrkiye","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":453,"listed_count":0,"created_at":"Sun - Jun 16 11:19:56 +0000 2013","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Thu - Nov 04 16:41:10 +0000 2021","id":1456300500949864449,"id_str":"1456300500949864449","text":"@Haluk_Yurekli - Sacmalama kapa ceneni","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Haluk_Yurekli","name":"Haluk - Y\u00dcREKL\u0130","id":1177193305,"id_str":"1177193305","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1456022025886122001,"in_reply_to_status_id_str":"1456022025886122001","in_reply_to_user_id":1177193305,"in_reply_to_user_id_str":"1177193305","in_reply_to_screen_name":"Haluk_Yurekli","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000001400040\/f5540b3c41b753adabae22c09cd5bd1b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000001400040\/f5540b3c41b753adabae22c09cd5bd1b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1521958705\/1371578946","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":848310732450144258,"id_str":"848310732450144258","name":"madi","screen_name":"strangerbway","location":"","description":"uga - | rts are not endorsements","url":"https:\/\/t.co\/NAekR8LvJG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NAekR8LvJG","expanded_url":"https:\/\/madi5b3.substack.com\/p\/coming-soon","display_url":"madi5b3.substack.com\/p\/coming-soon","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":254,"friends_count":869,"listed_count":1,"created_at":"Sat - Apr 01 23:06:54 +0000 2017","favourites_count":39361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5515,"lang":null,"status":{"created_at":"Fri - Mar 25 21:32:24 +0000 2022","id":1507470479157723143,"id_str":"1507470479157723143","text":"RT - @ampol_moment: President Bush responds to a terrorist attack while he plays - golf (2002) https:\/\/t.co\/yw6PeluW6s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ampol_moment","name":"crazy - ass moments in american politics","id":1411723858181251074,"id_str":"1411723858181251074","indices":[3,16]}],"urls":[],"media":[{"id":1507063620676599808,"id_str":"1507063620676599808","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","url":"https:\/\/t.co\/yw6PeluW6s","display_url":"pic.twitter.com\/yw6PeluW6s","expanded_url":"https:\/\/twitter.com\/ampol_moment\/status\/1507063825681588227\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":458,"h":358,"resize":"fit"},"medium":{"w":458,"h":358,"resize":"fit"},"small":{"w":458,"h":358,"resize":"fit"}},"source_status_id":1507063825681588227,"source_status_id_str":"1507063825681588227","source_user_id":1411723858181251074,"source_user_id_str":"1411723858181251074"}]},"extended_entities":{"media":[{"id":1507063620676599808,"id_str":"1507063620676599808","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","url":"https:\/\/t.co\/yw6PeluW6s","display_url":"pic.twitter.com\/yw6PeluW6s","expanded_url":"https:\/\/twitter.com\/ampol_moment\/status\/1507063825681588227\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":458,"h":358,"resize":"fit"},"medium":{"w":458,"h":358,"resize":"fit"},"small":{"w":458,"h":358,"resize":"fit"}},"source_status_id":1507063825681588227,"source_status_id_str":"1507063825681588227","source_user_id":1411723858181251074,"source_user_id_str":"1411723858181251074","video_info":{"aspect_ratio":[229,179],"duration_millis":103480,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/vid\/344x270\/qAAwjbeog4uWzEOn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/pl\/gwP5SbqHdQ76d0O-.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/vid\/458x358\/33QUs7nY75lsi0AH.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:36:30 +0000 2022","id":1507063825681588227,"id_str":"1507063825681588227","text":"President - Bush responds to a terrorist attack while he plays golf (2002) https:\/\/t.co\/yw6PeluW6s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507063620676599808,"id_str":"1507063620676599808","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","url":"https:\/\/t.co\/yw6PeluW6s","display_url":"pic.twitter.com\/yw6PeluW6s","expanded_url":"https:\/\/twitter.com\/ampol_moment\/status\/1507063825681588227\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":458,"h":358,"resize":"fit"},"medium":{"w":458,"h":358,"resize":"fit"},"small":{"w":458,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507063620676599808,"id_str":"1507063620676599808","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507063620676599808\/pu\/img\/iz-Hsc3Q-Q4IavlP.jpg","url":"https:\/\/t.co\/yw6PeluW6s","display_url":"pic.twitter.com\/yw6PeluW6s","expanded_url":"https:\/\/twitter.com\/ampol_moment\/status\/1507063825681588227\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":458,"h":358,"resize":"fit"},"medium":{"w":458,"h":358,"resize":"fit"},"small":{"w":458,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[229,179],"duration_millis":103480,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/vid\/344x270\/qAAwjbeog4uWzEOn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/pl\/gwP5SbqHdQ76d0O-.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507063620676599808\/pu\/vid\/458x358\/33QUs7nY75lsi0AH.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":921,"favorite_count":9754,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":921,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322329123503689729\/0g4AG3Yu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322329123503689729\/0g4AG3Yu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848310732450144258\/1514246800","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238134625987366916,"id_str":"1238134625987366916","name":"TheRealBossLady","screen_name":"TheRealBossLad6","location":"","description":"wife, - mom of 4 sons and a rottweiler, self-employed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":339,"listed_count":0,"created_at":"Thu - Mar 12 16:08:10 +0000 2020","favourites_count":2278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":910,"lang":null,"status":{"created_at":"Wed - Mar 02 03:58:41 +0000 2022","id":1498870382778101762,"id_str":"1498870382778101762","text":"@fbombmomsquad - @ReallyAmerican1 That''s why she was chosen to give the response.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fbombmomsquad","name":"\ud83c\uddfa\ud83c\udde6 - F-Bomb Mom \ud83c\uddfa\ud83c\udde6","id":15697171,"id_str":"15697171","indices":[0,14]},{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[15,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498853273167704064,"in_reply_to_status_id_str":"1498853273167704064","in_reply_to_user_id":15697171,"in_reply_to_user_id_str":"15697171","in_reply_to_screen_name":"fbombmomsquad","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248285217799827462\/TNyVSA1x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248285217799827462\/TNyVSA1x_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":218670821,"id_str":"218670821","name":"Tee - Kay","screen_name":"tee_kay1970","location":"Scotland","description":"Football - is my sport, I''m a supporter of the famous Glasgow Celtic. I''m not too sure - what I''ll tweet about, I just started this to see what others are saying.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":833,"listed_count":2,"created_at":"Mon - Nov 22 23:33:28 +0000 2010","favourites_count":8253,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":979,"lang":null,"status":{"created_at":"Sat - Mar 26 08:20:09 +0000 2022","id":1507633492548542469,"id_str":"1507633492548542469","text":"@govindajeggy - You forgot the mustard....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"govindajeggy","name":"Sanjeev - Kohli","id":94197243,"id_str":"94197243","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507453780484247552,"in_reply_to_status_id_str":"1507453780484247552","in_reply_to_user_id":94197243,"in_reply_to_user_id_str":"94197243","in_reply_to_screen_name":"govindajeggy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928289633435340800\/0O5g7VQY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928289633435340800\/0O5g7VQY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218670821\/1510152643","profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1055644339932725248,"id_str":"1055644339932725248","name":"Kira - (she\/ella)","screen_name":"kbmonin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":48,"friends_count":1188,"listed_count":0,"created_at":"Fri - Oct 26 02:16:38 +0000 2018","favourites_count":4036,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":156,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367923112197685249\/rEeS6qVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367923112197685249\/rEeS6qVc_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290313560577527810,"id_str":"1290313560577527810","name":"Hon. - Mohamed .A. muhumed \ud83d\udc99","screen_name":"HonMuhumed","location":"","description":"ASAL - member","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":489,"listed_count":0,"created_at":"Mon - Aug 03 15:48:32 +0000 2020","favourites_count":351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342135034749329409\/lMQc2JXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342135034749329409\/lMQc2JXC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1022282514457681920,"id_str":"1022282514457681920","name":"Abdul - Rahim Jnr\u2764","screen_name":"AbdulRahimJnr","location":"Kumasi, Ghana","description":"Special - Educator\ud83e\udd18\ud83e\udd1e\ud83e\udd19llChelsea\ud83d\udc99ll The Only - Person In Charge Of Your Happiness And Success Is You \u2764","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":574,"friends_count":1988,"listed_count":0,"created_at":"Thu - Jul 26 00:48:39 +0000 2018","favourites_count":126755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":111,"lang":null,"status":{"created_at":"Tue - Mar 15 21:56:34 +0000 2022","id":1503852681579876355,"id_str":"1503852681579876355","text":"@JoyNewsOnTV - @Nuetey Allah yaa Isa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyNewsOnTV","name":"JoyNews","id":610124383,"id_str":"610124383","indices":[0,12]},{"screen_name":"Nuetey","name":"Evans - Mensah","id":32220270,"id_str":"32220270","indices":[13,20]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503851673298653194,"in_reply_to_status_id_str":"1503851673298653194","in_reply_to_user_id":610124383,"in_reply_to_user_id_str":"610124383","in_reply_to_screen_name":"JoyNewsOnTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242879705080123396\/ckS-zaIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242879705080123396\/ckS-zaIP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022282514457681920\/1563729478","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261574131520331777,"id_str":"1261574131520331777","name":"\u0645\u0628\u0631\u0648\u0643 - \u0628\u0631\u0643\u0627\u0648\u064a","screen_name":"58vJzVT8XvVQLLO","location":"","description":"\u0645\u0628\u0631\u0648\u0643 - \u0628\u0631\u0643\u0627\u0648\u064a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":231,"listed_count":0,"created_at":"Sat - May 16 08:28:55 +0000 2020","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Sun - Mar 07 02:19:20 +0000 2021","id":1368385749448548353,"id_str":"1368385749448548353","text":"RT - @akhbar: \u0641\u064a #\u0627\u0644\u0642\u0627\u0645\u0634\u0644\u064a.. - \u0633\u0648\u0631\u064a\u0627\u062a \u064a\u062d\u062a\u0641\u0644\u0646 - \u0628\u064a\u0648\u0645 \u0627\u0644\u0645\u0631\u0623\u0629 \u0639\u0644\u0649 - \u0637\u0631\u064a\u0642\u062a\u0647\u0646 \u0627\u0644\u062e\u0627\u0635\u0629\n\n\u0627\u062d\u062a\u0641\u0644 - \u0627\u0644\u0645\u0626\u0627\u062a \u0645\u0646 \u0627\u0644\u0646\u0633\u0627\u0621 - \u0627\u0644\u0633\u0648\u0631\u064a\u0627\u062a \u0645\u0646 \u0627\u0644\u0623\u0643\u0631\u0627\u062f - \u0648\u0627\u0644\u0639\u0631\u0628 \u0639\u0644\u0649 \u0637\u0631\u064a\u0642\u062a\u0647\u0646 - \u0627\u0644\u062e\u0627\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u0627\u0644\u0642\u0627\u0645\u0634\u0644\u064a","indices":[15,24]}],"symbols":[],"user_mentions":[{"screen_name":"akhbar","name":"Akhbar - | \u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u0622\u0646","id":143531181,"id_str":"143531181","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 07 02:15:00 +0000 2021","id":1368384656853233667,"id_str":"1368384656853233667","text":"\u0641\u064a - #\u0627\u0644\u0642\u0627\u0645\u0634\u0644\u064a.. \u0633\u0648\u0631\u064a\u0627\u062a - \u064a\u062d\u062a\u0641\u0644\u0646 \u0628\u064a\u0648\u0645 \u0627\u0644\u0645\u0631\u0623\u0629 - \u0639\u0644\u0649 \u0637\u0631\u064a\u0642\u062a\u0647\u0646 \u0627\u0644\u062e\u0627\u0635\u0629\n\n\u0627\u062d\u062a\u0641\u0644 - \u0627\u0644\u0645\u0626\u0627\u062a \u0645\u0646 \u0627\u0644\u0646\u0633\u0627\u0621 - \u0627\u0644\u0633\u0648\u0631\u064a\u0627\u062a \u0645\u0646 \u0627\u0644\u0623\u0643\u0631\u0627\u062f - \u0648\u0627\u0644\u0639\u0631\u0628 \u0639\u0644\u0649\u2026 https:\/\/t.co\/VkVBPRvIHG","truncated":true,"entities":{"hashtags":[{"text":"\u0627\u0644\u0642\u0627\u0645\u0634\u0644\u064a","indices":[3,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VkVBPRvIHG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1368384656853233667","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261574592478564352\/etjI4W0F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261574592478564352\/etjI4W0F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23793403,"id_str":"23793403","name":"Michael - Bennett","screen_name":"ResetStart","location":"Irvine, CA","description":"Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":602,"listed_count":0,"created_at":"Wed - Mar 11 17:16:06 +0000 2009","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Sat - Oct 12 20:28:01 +0000 2013","id":389125323414966272,"id_str":"389125323414966272","text":"RT - @Cakes_Comics: Competition: Win a #StarTrek AP print. When I reach 2000 followers - I will randomly select a winner. Just RT to win. http:\u2026","truncated":false,"entities":{"hashtags":[{"text":"StarTrek","indices":[37,46]}],"symbols":[],"user_mentions":[{"screen_name":"Cakes_Comics","name":"Matt - Ferguson","id":321629993,"id_str":"321629993","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 12 19:51:36 +0000 2013","id":389116160651718656,"id_str":"389116160651718656","text":"Competition: - Win a #StarTrek AP print. When I reach 2000 followers I will randomly select - a winner. Just RT to win. http:\/\/t.co\/6etVuEJNjN","truncated":false,"entities":{"hashtags":[{"text":"StarTrek","indices":[19,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":389116160660107265,"id_str":"389116160660107265","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/BWZrFiSCcAEqiHO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BWZrFiSCcAEqiHO.jpg","url":"http:\/\/t.co\/6etVuEJNjN","display_url":"pic.twitter.com\/6etVuEJNjN","expanded_url":"https:\/\/twitter.com\/Cakes_Comics\/status\/389116160651718656\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":252,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":758,"resize":"fit"},"medium":{"w":1200,"h":444,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":389116160660107265,"id_str":"389116160660107265","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/BWZrFiSCcAEqiHO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BWZrFiSCcAEqiHO.jpg","url":"http:\/\/t.co\/6etVuEJNjN","display_url":"pic.twitter.com\/6etVuEJNjN","expanded_url":"https:\/\/twitter.com\/Cakes_Comics\/status\/389116160651718656\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":252,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":758,"resize":"fit"},"medium":{"w":1200,"h":444,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":69,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/92974077\/random_072_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/92974077\/random_072_normal.jpg","profile_link_color":"C6E2EE","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"A3764D","profile_text_color":"714214","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1595607618,"id_str":"1595607618","name":"The - sir-m","screen_name":"ChombaSamuel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":1236,"listed_count":0,"created_at":"Mon - Jul 15 11:29:56 +0000 2013","favourites_count":291,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":341,"lang":null,"status":{"created_at":"Sun - Jan 23 16:20:00 +0000 2022","id":1485286203297513484,"id_str":"1485286203297513484","text":"@Dreymwangi - In Kenya who do you know in Nyayo house or your luck card","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dreymwangi","name":"drey","id":2864194450,"id_str":"2864194450","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484856881927626753,"in_reply_to_status_id_str":"1484856881927626753","in_reply_to_user_id":2864194450,"in_reply_to_user_id_str":"2864194450","in_reply_to_screen_name":"Dreymwangi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1035622288270483457\/6UYKlwPO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1035622288270483457\/6UYKlwPO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":748634923251048449,"id_str":"748634923251048449","name":"Rage - quitting this timeline","screen_name":"kesskessler401","location":"","description":"Lesbian - political scientist.\n\nThese days I only steal hearts....and kidneys.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":147,"listed_count":0,"created_at":"Thu - Jun 30 21:50:49 +0000 2016","favourites_count":14385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1449,"lang":null,"status":{"created_at":"Sat - Mar 19 12:40:42 +0000 2022","id":1505162346133606400,"id_str":"1505162346133606400","text":"RT - @CanadaUN: Thank you @RussiaUN for your letter dated March 16.\n\nPlease see - our suggested edits below. \n\n#StandWithUkraine #RespectTheCha\u2026","truncated":false,"entities":{"hashtags":[{"text":"StandWithUkraine","indices":[107,124]}],"symbols":[],"user_mentions":[{"screen_name":"CanadaUN","name":"Canada - Mission UN #StandWithUkraine \ud83c\uddfa\ud83c\udde6","id":2414812230,"id_str":"2414812230","indices":[3,12]},{"screen_name":"RussiaUN","name":"Russian - Mission UN","id":347443535,"id_str":"347443535","indices":[24,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 14:29:09 +0000 2022","id":1504464863510335488,"id_str":"1504464863510335488","text":"Thank - you @RussiaUN for your letter dated March 16.\n\nPlease see our suggested - edits below. \n\n#StandWithUkraine\u2026 https:\/\/t.co\/pXn8SoRIIx","truncated":true,"entities":{"hashtags":[{"text":"StandWithUkraine","indices":[93,110]}],"symbols":[],"user_mentions":[{"screen_name":"RussiaUN","name":"Russian - Mission UN","id":347443535,"id_str":"347443535","indices":[10,19]}],"urls":[{"url":"https:\/\/t.co\/pXn8SoRIIx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504464863510335488","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35006,"favorite_count":101643,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35006,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353019726335778821\/gM4SVaeN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353019726335778821\/gM4SVaeN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/748634923251048449\/1611420015","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299822228192866304,"id_str":"1299822228192866304","name":"SnipperFlyer","screen_name":"FlyerSnipper","location":"Lehigh - Valley, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":544,"listed_count":0,"created_at":"Sat - Aug 29 21:32:31 +0000 2020","favourites_count":31058,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":86,"lang":null,"status":{"created_at":"Mon - Mar 14 01:40:35 +0000 2022","id":1503184283871109120,"id_str":"1503184283871109120","text":"@FlyersHW - Gotta go with G, why not","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FlyersHW","name":"High - & Wide Hockey | For Philadelphia Flyers Fans","id":1093398287842004995,"id_str":"1093398287842004995","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503184020175298561,"in_reply_to_status_id_str":"1503184020175298561","in_reply_to_user_id":1093398287842004995,"in_reply_to_user_id_str":"1093398287842004995","in_reply_to_screen_name":"FlyersHW","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302573834864857089\/Hnbly3Nf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302573834864857089\/Hnbly3Nf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2837732155,"id_str":"2837732155","name":"Vee","screen_name":"vanitha74","location":"Kuala - Lumpur","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":984,"listed_count":0,"created_at":"Thu - Oct 02 07:33:42 +0000 2014","favourites_count":430,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Mar 22 05:25:50 +0000 2019","id":1108962972083195905,"id_str":"1108962972083195905","text":"What - a champ \ud83d\udcaa\ud83c\udffc https:\/\/t.co\/rp0rXMH6tI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rp0rXMH6tI","expanded_url":"https:\/\/twitter.com\/RexChapman\/status\/1106765148537147398","display_url":"twitter.com\/RexChapman\/sta\u2026","indices":[16,39]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1106765148537147398,"quoted_status_id_str":"1106765148537147398","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1157817577558515712\/sK39KKo3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157817577558515712\/sK39KKo3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1043834805253787648,"id_str":"1043834805253787648","name":"COLIN - HOPKINS","screen_name":"COLINHO81676882","location":"London UK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":2037,"listed_count":1,"created_at":"Sun - Sep 23 12:09:45 +0000 2018","favourites_count":6529,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3449,"lang":null,"status":{"created_at":"Fri - Mar 25 20:15:03 +0000 2022","id":1507451013434851330,"id_str":"1507451013434851330","text":"RT - @MatthiasMuell15: This is your daily reminder that Germany \ud83c\udde9\ud83c\uddea - which has 20 million more citizens than the UK spent less than 1 (one) Bil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MatthiasMuell15","name":"Matthias - Mueller \ud83d\udc99 \ud83c\udde9\ud83c\uddea\ud83c\uddec\ud83c\udde7\ud83c\uddea\ud83c\uddfa","id":970259974457823232,"id_str":"970259974457823232","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:05:45 +0000 2022","id":1507086287009988612,"id_str":"1507086287009988612","text":"This - is your daily reminder that Germany \ud83c\udde9\ud83c\uddea which has 20 - million more citizens than the UK spent less than 1 (one)\u2026 https:\/\/t.co\/tA23hfSRMY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tA23hfSRMY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507086287009988612","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11469,"favorite_count":37628,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11469,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":757942331362377728,"id_str":"757942331362377728","name":"Dike''m","screen_name":"Iamblackson3","location":"Abakaliki, - Nigeria","description":"Political Scientist||\nInstrumentalist||\nSapiosexualist||\nPhilanthropist||\nEstate - Agent||\nGood Citizen||\nMusic Critic||\nMelancholic||\nJesus Lover||","url":"https:\/\/t.co\/vt4gX50bDV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vt4gX50bDV","expanded_url":"http:\/\/www.instagram.com\/iamgodfredjoshua","display_url":"instagram.com\/iamgodfredjosh\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":5003,"listed_count":6,"created_at":"Tue - Jul 26 14:15:08 +0000 2016","favourites_count":2618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":277,"lang":null,"status":{"created_at":"Mon - Mar 21 23:41:09 +0000 2022","id":1506053330816151554,"id_str":"1506053330816151554","text":"@humanswithouthu - No disrespect to the rest but Dj Maphorisa is not just in their league","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"humanswithouthu","name":"Humans - without Humanity.","id":1443674261705527315,"id_str":"1443674261705527315","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505916648838119427,"in_reply_to_status_id_str":"1505916648838119427","in_reply_to_user_id":1443674261705527315,"in_reply_to_user_id_str":"1443674261705527315","in_reply_to_screen_name":"humanswithouthu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482857282992062466\/CUuM6CRa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482857282992062466\/CUuM6CRa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757942331362377728\/1593818065","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20518488,"id_str":"20518488","name":"Colleen - Skeffington","screen_name":"cskeffington","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":570,"listed_count":0,"created_at":"Tue - Feb 10 15:09:30 +0000 2009","favourites_count":360,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":347,"lang":null,"status":{"created_at":"Sun - Mar 20 23:34:46 +0000 2022","id":1505689334099456003,"id_str":"1505689334099456003","text":"RT - @WCKitchen: After families cross the border into Poland, most continue on - to larger cities like Warsaw. The National Stadium is set up t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WCKitchen","name":"World - Central Kitchen","id":156653779,"id_str":"156653779","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 18:01:28 +0000 2022","id":1505605456538046468,"id_str":"1505605456538046468","text":"After - families cross the border into Poland, most continue on to larger cities like - Warsaw. The National Stadium is\u2026 https:\/\/t.co\/6jSkkyX0Vh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6jSkkyX0Vh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505605456538046468","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":591,"favorite_count":3704,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":591,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509872136048357376\/YeCwWW76_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509872136048357376\/YeCwWW76_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20518488\/1410397964","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32259160,"id_str":"32259160","name":"Susan - McCloud","screen_name":"SusanMcCloud","location":"San Antonio Texas","description":"Director - of Executive Recruiting,Connecting talent with opportunity at HEB, Do you - have a heart for people, a head for business and a passion for results?","url":"https:\/\/t.co\/WqRTXnKowH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WqRTXnKowH","expanded_url":"http:\/\/heb.com\/careers","display_url":"heb.com\/careers","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":221,"listed_count":10,"created_at":"Fri - Apr 17 02:20:11 +0000 2009","favourites_count":1488,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1249,"lang":null,"status":{"created_at":"Thu - Mar 24 13:59:39 +0000 2022","id":1506994151782506497,"id_str":"1506994151782506497","text":"@tedcruz - shut your mouth - nothing intelligent comes out of it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606642554386251776\/GzI_snA__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606642554386251776\/GzI_snA__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32259160\/1399651497","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":902914957,"id_str":"902914957","name":"Meghan - Molly","screen_name":"meghanmcd12","location":"City of Wind ","description":"Honey, - we all deserve to wear white.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":78,"friends_count":1671,"listed_count":0,"created_at":"Thu - Oct 25 00:40:13 +0000 2012","favourites_count":81595,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":699,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000724216402\/1ea2d1b234caeb5854935cf50e586820_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000724216402\/1ea2d1b234caeb5854935cf50e586820_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/902914957\/1351981903","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301237775220510721,"id_str":"1301237775220510721","name":"Humphrey_samuel","screen_name":"NuggetsHumphrey","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":54,"listed_count":0,"created_at":"Wed - Sep 02 19:17:56 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Sun - Nov 01 09:59:02 +0000 2020","id":1322840566217007105,"id_str":"1322840566217007105","text":"@jidesanwoolu - @LagosSarsPanel Fruitless panel. You should stop being a hypocrite Mr governor, you - masterminded the killing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jidesanwoolu","name":"Babajide - Sanwo-Olu","id":198084264,"id_str":"198084264","indices":[0,13]},{"screen_name":"LagosSarsPanel","name":"Judicial - Panel On SARS","id":1318565763649855488,"id_str":"1318565763649855488","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1320995554361573376,"in_reply_to_status_id_str":"1320995554361573376","in_reply_to_user_id":198084264,"in_reply_to_user_id_str":"198084264","in_reply_to_screen_name":"jidesanwoolu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304515976273301505\/34V1DvLK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304515976273301505\/34V1DvLK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":776072491257049088,"id_str":"776072491257049088","name":"Chidozie - opara","screen_name":"Chidozieopara1","location":"Port Harcourt, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":425,"listed_count":0,"created_at":"Wed - Sep 14 14:57:55 +0000 2016","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2982,"lang":null,"status":{"created_at":"Mon - Mar 14 19:47:09 +0000 2022","id":1503457724683665410,"id_str":"1503457724683665410","text":"RT - @oluchristty: UPDATE\nJust excited from a groundbreaking visitation with onyendu - MNK. It was ground breaking because we covered many new\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oluchristty","name":"Oluchi - Christy","id":2346688251,"id_str":"2346688251","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 17:02:55 +0000 2022","id":1503416393726935054,"id_str":"1503416393726935054","text":"UPDATE\nJust - excited from a groundbreaking visitation with onyendu MNK. It was ground breaking - because we covered ma\u2026 https:\/\/t.co\/UiE0bdwI86","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UiE0bdwI86","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503416393726935054","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":96,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":96,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/776135914116489216\/pOexsbYa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/776135914116489216\/pOexsbYa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":887566483915714561,"id_str":"887566483915714561","name":"Sophia","screen_name":"yourstrulysophi","location":"vtec - in the streets","description":"I like Star Wars, Marvel, Movies, Cars & take - street photography for fun \ud83d\udcf8\ud83c\udfcb\ud83c\udffd\u200d\u2640\ufe0f - vazquez \u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":942,"friends_count":613,"listed_count":0,"created_at":"Wed - Jul 19 06:55:14 +0000 2017","favourites_count":53338,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25287,"lang":null,"status":{"created_at":"Sat - Mar 26 01:42:30 +0000 2022","id":1507533418619412481,"id_str":"1507533418619412481","text":"RT - @_jaygorg: dealing w someone who\u2019s patient & tries to understand - you is undefeated.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_jaygorg","name":"\ud83e\udd42","id":758882156382871552,"id_str":"758882156382871552","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:27:20 +0000 2022","id":1507061516394192901,"id_str":"1507061516394192901","text":"dealing - w someone who\u2019s patient & tries to understand you is undefeated.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3144,"favorite_count":9418,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3144,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494521735265374210\/MT1oB9Uy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494521735265374210\/MT1oB9Uy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887566483915714561\/1646709482","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311321809560768512,"id_str":"1311321809560768512","name":"Shoaib","screen_name":"Shoaib85700064","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":13,"listed_count":0,"created_at":"Wed - Sep 30 15:07:48 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Feb 14 15:09:46 +0000 2021","id":1360969489752408068,"id_str":"1360969489752408068","text":"@pashiiiv - \u06cc\u0639\u0646\u06cc \u0686\u06cc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1360919931357954050,"in_reply_to_status_id_str":"1360919931357954050","in_reply_to_user_id":869477193382023168,"in_reply_to_user_id_str":"869477193382023168","in_reply_to_screen_name":"pishpishvi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1003913013248872449,"id_str":"1003913013248872449","name":"Juliet - Nakitende","screen_name":"NakitendeJr53","location":"Kampala, Uganda","description":"@ManUtd - |@BBCNews\ud83e\udd32\ud83c\udffd\ud83d\ude4f\ud83c\udffd|Certified Digital - Marketer by @googleafrica | Journalism | Time | Trust | Patience | Retweets - aren''t endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4615,"friends_count":2214,"listed_count":1,"created_at":"Tue - Jun 05 08:14:48 +0000 2018","favourites_count":160110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8056,"lang":null,"status":{"created_at":"Fri - Mar 25 08:59:08 +0000 2022","id":1507280915290112019,"id_str":"1507280915290112019","text":"@kadobamosesUG - \ud83d\ude02yes yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kadobamosesUG","name":"KADOBA - MOSES ~THE LAST MU''CHWEZI","id":829577236734951424,"id_str":"829577236734951424","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507280664479027200,"in_reply_to_status_id_str":"1507280664479027200","in_reply_to_user_id":829577236734951424,"in_reply_to_user_id_str":"829577236734951424","in_reply_to_screen_name":"kadobamosesUG","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501278437633409033\/ebrq_NL__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501278437633409033\/ebrq_NL__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003913013248872449\/1598989678","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":865361395554164740,"id_str":"865361395554164740","name":"TheLionessess","screen_name":"bjbarrett19821","location":"","description":"God - made me.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":322,"listed_count":0,"created_at":"Fri - May 19 00:20:09 +0000 2017","favourites_count":464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":705,"lang":null,"status":{"created_at":"Sat - Feb 19 23:44:41 +0000 2022","id":1495182580655738880,"id_str":"1495182580655738880","text":"@tedcruz - Yes the same with the criminals that storm into the white house on Jan 6th. - Facts.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1493398760927510528,"in_reply_to_status_id_str":"1493398760927510528","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1281958043748573184\/hW905WTN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1281958043748573184\/hW905WTN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/865361395554164740\/1594477663","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":121167553,"id_str":"121167553","name":"Ashroi","screen_name":"ashroi","location":"India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":431,"friends_count":4977,"listed_count":0,"created_at":"Mon - Mar 08 16:51:36 +0000 2010","favourites_count":2743,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":969,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397015221617582080\/IJ-LXYeB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397015221617582080\/IJ-LXYeB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121167553\/1558584295","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":185120103,"id_str":"185120103","name":"Konstantin","screen_name":"dinosas","location":"Bulgaria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":133,"friends_count":1654,"listed_count":1,"created_at":"Tue - Aug 31 08:10:22 +0000 2010","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876890303160082433\/DOFUaS6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876890303160082433\/DOFUaS6G_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":309086247,"id_str":"309086247","name":"Britt - Christensen","screen_name":"brittchris1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":1329,"listed_count":8,"created_at":"Wed - Jun 01 14:17:32 +0000 2011","favourites_count":2400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":745,"lang":null,"status":{"created_at":"Sat - Mar 26 00:56:12 +0000 2022","id":1507521768726048772,"id_str":"1507521768726048772","text":"@JMT_PhD - I suffered through the entire thing. Took me 3 days.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JMT_PhD","name":"Jason - Turcotte","id":2368296895,"id_str":"2368296895","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507516885109075970,"in_reply_to_status_id_str":"1507516885109075970","in_reply_to_user_id":2368296895,"in_reply_to_user_id_str":"2368296895","in_reply_to_screen_name":"JMT_PhD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212014899548868609\/EKZ1anat_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212014899548868609\/EKZ1anat_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2407161385,"id_str":"2407161385","name":"Dana","screen_name":"Dana91661534","location":"","description":"Addicted - to speed. Fan of Marlins, Rays, Tigers, Jays, Cardinals, Royals!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":374,"listed_count":7,"created_at":"Sun - Mar 23 14:21:12 +0000 2014","favourites_count":18763,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15771,"lang":null,"status":{"created_at":"Fri - Apr 09 12:54:11 +0000 2021","id":1380504312682573830,"id_str":"1380504312682573830","text":"RT - @RpsAgainstTrump: RT if you agree that Matt Gaetz should resign immediately.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RpsAgainstTrump","name":"Republicans - against Trumpism","id":1221462414744596483,"id_str":"1221462414744596483","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Apr 09 02:12:32 +0000 2021","id":1380342835870900231,"id_str":"1380342835870900231","text":"RT - if you agree that Matt Gaetz should resign immediately.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1401,"favorite_count":2833,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1401,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/864292353770651648\/pyvINgS8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/864292353770651648\/pyvINgS8_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280907642399932416,"id_str":"1280907642399932416","name":"tran - truong","screen_name":"trantru65706682","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":26,"listed_count":0,"created_at":"Wed - Jul 08 16:52:48 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280908085242937347\/AB70A0qi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280908085242937347\/AB70A0qi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":96227896,"id_str":"96227896","name":"Nathan - Kranz","screen_name":"nkrnz","location":"Minneapolis","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":995,"friends_count":1765,"listed_count":15,"created_at":"Fri - Dec 11 23:12:03 +0000 2009","favourites_count":3074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1345,"lang":null,"status":{"created_at":"Sat - Mar 19 19:14:00 +0000 2022","id":1505261323105492992,"id_str":"1505261323105492992","text":"@chris_steller - Mr. Mojo Risin\u2019 also kinda works, although much like Lizard King I don\u2019t - think those were fan generated nicknames.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chris_steller","name":"Chris - Steller","id":14812037,"id_str":"14812037","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505258609428598786,"in_reply_to_status_id_str":"1505258609428598786","in_reply_to_user_id":14812037,"in_reply_to_user_id_str":"14812037","in_reply_to_screen_name":"chris_steller","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182730359\/Nate_Pollard_Day_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182730359\/Nate_Pollard_Day_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2270108189,"id_str":"2270108189","name":"Lawson","screen_name":"lawson046","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":185,"listed_count":0,"created_at":"Thu - Jan 09 04:42:49 +0000 2014","favourites_count":1788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":337,"lang":null,"status":{"created_at":"Fri - Jul 03 02:20:24 +0000 2020","id":1278876214439096322,"id_str":"1278876214439096322","text":"RT - @thejulianbass: if y\u2019all can retweet this enough times that Disney calls, - that\u2019d be greatly appreciated https:\/\/t.co\/GrKlIRxg3J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thejulianbass","name":"Julian - Bass","id":1249456677931208704,"id_str":"1249456677931208704","indices":[3,17]}],"urls":[],"media":[{"id":1278714348920360960,"id_str":"1278714348920360960","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","url":"https:\/\/t.co\/GrKlIRxg3J","display_url":"pic.twitter.com\/GrKlIRxg3J","expanded_url":"https:\/\/twitter.com\/thejulianbass\/status\/1278714517770440707\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1278714517770440707,"source_status_id_str":"1278714517770440707","source_user_id":1249456677931208704,"source_user_id_str":"1249456677931208704"}]},"extended_entities":{"media":[{"id":1278714348920360960,"id_str":"1278714348920360960","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","url":"https:\/\/t.co\/GrKlIRxg3J","display_url":"pic.twitter.com\/GrKlIRxg3J","expanded_url":"https:\/\/twitter.com\/thejulianbass\/status\/1278714517770440707\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1278714517770440707,"source_status_id_str":"1278714517770440707","source_user_id":1249456677931208704,"source_user_id_str":"1249456677931208704","video_info":{"aspect_ratio":[9,16],"duration_millis":20967,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/320x568\/cnD88VAefbjW465a.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/360x640\/l3M1xjGVPPQvEGRe.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/720x1280\/CKlm4ogQ_9NdRbpg.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/pl\/HYAOmM57oBC7lkHy.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 02 15:37:53 +0000 2020","id":1278714517770440707,"id_str":"1278714517770440707","text":"if - y\u2019all can retweet this enough times that Disney calls, that\u2019d be - greatly appreciated https:\/\/t.co\/GrKlIRxg3J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1278714348920360960,"id_str":"1278714348920360960","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","url":"https:\/\/t.co\/GrKlIRxg3J","display_url":"pic.twitter.com\/GrKlIRxg3J","expanded_url":"https:\/\/twitter.com\/thejulianbass\/status\/1278714517770440707\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1278714348920360960,"id_str":"1278714348920360960","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1278714348920360960\/pu\/img\/ymRFqhigAjIltTIL.jpg","url":"https:\/\/t.co\/GrKlIRxg3J","display_url":"pic.twitter.com\/GrKlIRxg3J","expanded_url":"https:\/\/twitter.com\/thejulianbass\/status\/1278714517770440707\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":20967,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/320x568\/cnD88VAefbjW465a.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/360x640\/l3M1xjGVPPQvEGRe.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/vid\/720x1280\/CKlm4ogQ_9NdRbpg.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1278714348920360960\/pu\/pl\/HYAOmM57oBC7lkHy.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":515603,"favorite_count":1362427,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":515603,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1015258701693931522\/OKnfHvZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1015258701693931522\/OKnfHvZp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270108189\/1530891567","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":943574586116976640,"id_str":"943574586116976640","name":"Evans","screen_name":"e_naban","location":" - Ghana","description":"Development work| #Data","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":309,"listed_count":0,"created_at":"Wed - Dec 20 20:11:26 +0000 2017","favourites_count":70364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2915,"lang":null,"status":{"created_at":"Fri - Mar 25 22:36:58 +0000 2022","id":1507486730064117761,"id_str":"1507486730064117761","text":"@grace_omojol - @oscafrica @Peace_Ojemeh @faithomojola 2020 No hair, 2022 hair\n\nI''m confused - \ud83d\ude15","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"grace_omojol","name":"Grace - Omojola","id":3306598887,"id_str":"3306598887","indices":[0,13]},{"screen_name":"oscafrica","name":"Open - Source Community Africa","id":966313275192479745,"id_str":"966313275192479745","indices":[14,24]},{"screen_name":"Peace_Ojemeh","name":"perrie.eth - ::) at #OSCAFest22","id":905097033157148672,"id_str":"905097033157148672","indices":[25,38]},{"screen_name":"faithomojola","name":"jola","id":3921271942,"id_str":"3921271942","indices":[39,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507443322566189067,"in_reply_to_status_id_str":"1507443322566189067","in_reply_to_user_id":3306598887,"in_reply_to_user_id_str":"3306598887","in_reply_to_screen_name":"grace_omojol","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169748683635810304\/T6uTQ_vm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169748683635810304\/T6uTQ_vm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/943574586116976640\/1569830345","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":709976351181246464,"id_str":"709976351181246464","name":"A. - Martin Hernandez","screen_name":"AMHernandez888","location":"Dallas, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":379,"listed_count":0,"created_at":"Wed - Mar 16 05:35:27 +0000 2016","favourites_count":16340,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5716,"lang":null,"status":{"created_at":"Sat - Mar 26 04:30:43 +0000 2022","id":1507575754292404229,"id_str":"1507575754292404229","text":"RT - @CREWcrew: The people accusing Ketanji Brown Jackson of being soft on crime - are unsurprisingly silent about Clarence Thomas voting to bl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CREWcrew","name":"Citizens - for Ethics","id":22187085,"id_str":"22187085","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:54:16 +0000 2022","id":1507355188859916289,"id_str":"1507355188859916289","text":"The - people accusing Ketanji Brown Jackson of being soft on crime are unsurprisingly - silent about Clarence Thomas vo\u2026 https:\/\/t.co\/8Kf0aJUR9M","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8Kf0aJUR9M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507355188859916289","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":752,"favorite_count":2232,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":752,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/934287953656012800\/jS8CcbVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/934287953656012800\/jS8CcbVV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3346754895,"id_str":"3346754895","name":"PRINCE - F.MULBAH","screen_name":"mulbah_f","location":"West Africa Liberia","description":"For - this is what I do to live for I feared God and keep his commandments. That - is the whole duty of man.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":2355,"listed_count":1,"created_at":"Fri - Jun 26 18:45:36 +0000 2015","favourites_count":231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Mon - Nov 09 13:39:57 +0000 2020","id":1325795264326758401,"id_str":"1325795264326758401","text":"@AriFleischer - .","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AriFleischer","name":"Ari - Fleischer","id":35218566,"id_str":"35218566","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1325276441500676098,"in_reply_to_status_id_str":"1325276441500676098","in_reply_to_user_id":35218566,"in_reply_to_user_id_str":"35218566","in_reply_to_screen_name":"AriFleischer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/776323004108275712\/0iZpvSKJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/776323004108275712\/0iZpvSKJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3346754895\/1552856793","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42766655,"id_str":"42766655","name":"\ud835\udca5\ud835\udcb6\ud835\udcc2\ud835\udc52\ud835\udcc8 - \ud835\udc40\ud835\udcb6\ud835\udcc3\ud835\udcb9\ud835\udcb6\ud835\udcc9\ud835\udc5c","screen_name":"JamesMandato","location":"Newburgh, - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":600,"friends_count":1043,"listed_count":4,"created_at":"Wed - May 27 00:22:11 +0000 2009","favourites_count":12510,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2019,"lang":null,"status":{"created_at":"Wed - Mar 23 01:47:35 +0000 2022","id":1506447535182909442,"id_str":"1506447535182909442","text":"RT - @Chasten: We get it, Senator Cornyn; you''re still mad at gay marriage for - taking away none of your rights.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chasten","name":"Chasten - Buttigieg","id":3671138595,"id_str":"3671138595","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 16:07:59 +0000 2022","id":1506301674272567296,"id_str":"1506301674272567296","text":"We - get it, Senator Cornyn; you''re still mad at gay marriage for taking away - none of your rights.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13997,"favorite_count":110980,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13997,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1475932132874801156\/zNndU4yf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1475932132874801156\/zNndU4yf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42766655\/1596336099","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3708803905,"id_str":"3708803905","name":"Kaitlynn - Winder","screen_name":"kaitlynn_winder","location":"Tulane University","description":"All - that I''m after is a life full of laughter. (she\/her)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":550,"listed_count":0,"created_at":"Sun - Sep 27 23:42:30 +0000 2015","favourites_count":18198,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1483,"lang":null,"status":{"created_at":"Wed - Mar 23 17:20:43 +0000 2022","id":1506682366584102916,"id_str":"1506682366584102916","text":"RT - @Harry_Styles: Harry\u2019s House. May 20th. https:\/\/t.co\/gvNJsccEz5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry - Styles.","id":181561712,"id_str":"181561712","indices":[3,16]}],"urls":[],"media":[{"id":1506662226425368577,"id_str":"1506662226425368577","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","url":"https:\/\/t.co\/gvNJsccEz5","display_url":"pic.twitter.com\/gvNJsccEz5","expanded_url":"https:\/\/twitter.com\/Harry_Styles\/status\/1506662230892314634\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506662230892314634,"source_status_id_str":"1506662230892314634","source_user_id":181561712,"source_user_id_str":"181561712"}]},"extended_entities":{"media":[{"id":1506662226425368577,"id_str":"1506662226425368577","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","url":"https:\/\/t.co\/gvNJsccEz5","display_url":"pic.twitter.com\/gvNJsccEz5","expanded_url":"https:\/\/twitter.com\/Harry_Styles\/status\/1506662230892314634\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506662230892314634,"source_status_id_str":"1506662230892314634","source_user_id":181561712,"source_user_id_str":"181561712"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:00:42 +0000 2022","id":1506662230892314634,"id_str":"1506662230892314634","text":"Harry\u2019s - House. May 20th. https:\/\/t.co\/gvNJsccEz5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506662226425368577,"id_str":"1506662226425368577","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","url":"https:\/\/t.co\/gvNJsccEz5","display_url":"pic.twitter.com\/gvNJsccEz5","expanded_url":"https:\/\/twitter.com\/Harry_Styles\/status\/1506662230892314634\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506662226425368577,"id_str":"1506662226425368577","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi9T_KVUAEZa4V.jpg","url":"https:\/\/t.co\/gvNJsccEz5","display_url":"pic.twitter.com\/gvNJsccEz5","expanded_url":"https:\/\/twitter.com\/Harry_Styles\/status\/1506662230892314634\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":301457,"favorite_count":1079313,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":301457,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396506937404141583\/PlGw94-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396506937404141583\/PlGw94-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3708803905\/1614562412","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2200359705,"id_str":"2200359705","name":"david - muhia","screen_name":"davidmuhia7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":879,"listed_count":0,"created_at":"Fri - Nov 29 10:42:52 +0000 2013","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Thu - Mar 03 09:48:33 +0000 2022","id":1499320815283748864,"id_str":"1499320815283748864","text":"@IFADEastAfrica - Excellent","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IFADEastAfrica","name":"IFADEastAfrica","id":1321451395405516800,"id_str":"1321451395405516800","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498946222672867330,"in_reply_to_status_id_str":"1498946222672867330","in_reply_to_user_id":1321451395405516800,"in_reply_to_user_id_str":"1321451395405516800","in_reply_to_screen_name":"IFADEastAfrica","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356751891561123841\/jLYJd_b6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356751891561123841\/jLYJd_b6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":829446582395404289,"id_str":"829446582395404289","name":"tracy - lewis","screen_name":"tracy477","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":593,"listed_count":1,"created_at":"Wed - Feb 08 21:47:30 +0000 2017","favourites_count":35853,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43814,"lang":null,"status":{"created_at":"Fri - Mar 25 23:36:44 +0000 2022","id":1507501769890226177,"id_str":"1507501769890226177","text":"Yep - https:\/\/t.co\/7MsnizmkHa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7MsnizmkHa","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1507498719922442243","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[4,27]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507498719922442243,"quoted_status_id_str":"1507498719922442243","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1130063412480757760,"id_str":"1130063412480757760","name":"Balamurugan - K","screen_name":"Balamur82302606","location":"tuticorin","description":"super","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":718,"listed_count":0,"created_at":"Sun - May 19 10:51:27 +0000 2019","favourites_count":24447,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4683,"lang":null,"status":{"created_at":"Thu - Feb 17 17:12:53 +0000 2022","id":1494359205926502400,"id_str":"1494359205926502400","text":"RT - @INCTamilNadu: \u0b92\u0bb0\u0bc1 \u0baa\u0bc1\u0bb1\u0bae\u0bcd \u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd - \u0bb5\u0bc7\u0bb2\u0bc8\u0baf\u0bbf\u0ba9\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0bb2\u0bc1\u0bae\u0bcd - \u0baa\u0ba3\u0bb5\u0bc0\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bc1\u0bae\u0bcd - \u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bbe\u0bb0\u0bcd\u0b95\u0bb3\u0bcd.\n\u0bae\u0bb1\u0bc1\u0baa\u0bc1\u0bb1\u0bae\u0bcd - 7.5 \u0b86\u0ba3\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bbe\u0b95 \u0b86\u0b9f\u0bcd\u0b9a\u0bbf\u0baf\u0bbf\u0bb2\u0bcd - \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0b9c\u0b95 - \u0b85\u0bb0\u0b9a\u0bc1 \u0ba4\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"INCTamilNadu","name":"Tamil - Nadu Congress Committee","id":1332272064,"id_str":"1332272064","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 17 11:07:05 +0000 2022","id":1494267151255228423,"id_str":"1494267151255228423","text":"\u0b92\u0bb0\u0bc1 - \u0baa\u0bc1\u0bb1\u0bae\u0bcd \u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bc7\u0bb2\u0bc8\u0baf\u0bbf\u0ba9\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0bb2\u0bc1\u0bae\u0bcd - \u0baa\u0ba3\u0bb5\u0bc0\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bc1\u0bae\u0bcd - \u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bbe\u0bb0\u0bcd\u0b95\u0bb3\u0bcd.\n\u0bae\u0bb1\u0bc1\u0baa\u0bc1\u0bb1\u0bae\u0bcd - 7.5 \u0b86\u0ba3\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bbe\u0b95 \u0b86\u0b9f\u0bcd\u0b9a\u0bbf\u0baf\u0bbf\u0bb2\u0bcd - \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0b9c\u0b95 - \u0b85\u2026 https:\/\/t.co\/2QQnk8fFLF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2QQnk8fFLF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494267151255228423","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":70,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ta"},"is_quote_status":false,"retweet_count":38,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ta"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451938706089144325\/etUTfSQ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451938706089144325\/etUTfSQ7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226531005546323968,"id_str":"1226531005546323968","name":"Songgram - Art","screen_name":"SonggramA","location":"","description":"This is Songgram - here,Creative graphic designer with innovative ideas and a unique approach - to visuals. More than 3+ years of experience developing designs for","url":"https:\/\/t.co\/7p4gnN3g19","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7p4gnN3g19","expanded_url":"https:\/\/www.fiverr.com\/songgram_art?up_rollout=true","display_url":"fiverr.com\/songgram_art?u\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":2951,"listed_count":0,"created_at":"Sun - Feb 09 15:39:37 +0000 2020","favourites_count":3124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3782,"lang":null,"status":{"created_at":"Mon - Mar 14 16:42:58 +0000 2022","id":1503411375397556225,"id_str":"1503411375397556225","text":"Do - you want to create a professional graphichs designer for your flyer web - banner\/Rack card\/Post card\/ brochure d\u2026 https:\/\/t.co\/9527xkfiNS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9527xkfiNS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503411375397556225","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":651940209836355587,"quoted_status_id_str":"651940209836355587","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226531146990858242\/b0Yb3tAK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226531146990858242\/b0Yb3tAK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226531005546323968\/1617035024","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206431668157837313,"id_str":"1206431668157837313","name":"HSquared","screen_name":"DrManhattan1017","location":"New - Mexico, USA","description":"Libtard Elitist, Animal Lover, Believer of Science, - Have all my shots and teeth! #IStandwithUkraine #Resist #CorruptGOP #MyBody - #ArrestThemAll #TrumpersBlow","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1205,"friends_count":2671,"listed_count":1,"created_at":"Mon - Dec 16 04:32:05 +0000 2019","favourites_count":18058,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12136,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484534323193606146\/nahRwoo5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484534323193606146\/nahRwoo5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1206431668157837313\/1647014962","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":247254789,"id_str":"247254789","name":"Jennifer - Houston","screen_name":"jennlynnhouston","location":"columbia, missouri","description":"wife,mother,daughter,sister,aunt....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":622,"listed_count":7,"created_at":"Fri - Feb 04 12:25:09 +0000 2011","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5034,"lang":null,"status":{"created_at":"Fri - Mar 25 23:56:49 +0000 2022","id":1507506825150803970,"id_str":"1507506825150803970","text":"RT - @piper4missouri: In Missouri, you need a license to fish, but no license to - open carry or conceal carry a loaded gun.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"piper4missouri","name":"Piper - for Missouri","id":1332809596885405702,"id_str":"1332809596885405702","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:47:53 +0000 2022","id":1507338480594075655,"id_str":"1507338480594075655","text":"In - Missouri, you need a license to fish, but no license to open carry or conceal - carry a loaded gun.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"2526edd24c06e60c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2526edd24c06e60c.json","place_type":"admin","name":"Missouri","full_name":"Missouri, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-95.774704,35.995476],[-89.098843,35.995476],[-89.098843,40.613641],[-95.774704,40.613641]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":189,"favorite_count":889,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":189,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561013915983691777\/S--0zJBq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561013915983691777\/S--0zJBq_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":154276471,"id_str":"154276471","name":"Rob - Seoighe","screen_name":"raaabjoyce","location":"Galway","description":"Galway\/eastlondy, - #EndDP #BlackLivesMatter he\/him","url":"https:\/\/t.co\/FgO2aNqYLt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FgO2aNqYLt","expanded_url":"http:\/\/Instagram.com\/robjoyce32","display_url":"Instagram.com\/robjoyce32","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":186,"friends_count":748,"listed_count":2,"created_at":"Thu - Jun 10 20:53:38 +0000 2010","favourites_count":8968,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2606,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174310868965875714\/Sr77dKdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174310868965875714\/Sr77dKdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154276471\/1578608985","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1146060400703811584,"id_str":"1146060400703811584","name":"Senator - 07","screen_name":"AdeyemiKolade5","location":"Colorado, USA","description":"BlacksLiveMatter# - YorubaBoy.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":223,"listed_count":0,"created_at":"Tue - Jul 02 14:17:47 +0000 2019","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146060623769268225\/hIHdqoex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146060623769268225\/hIHdqoex_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1254842549497454593,"id_str":"1254842549497454593","name":"Sreeja - Deb","screen_name":"SreejaDeb10","location":"","description":"dream to be - a journalists \ud83d\ude07","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":335,"listed_count":0,"created_at":"Mon - Apr 27 18:39:46 +0000 2020","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Fri - Mar 19 18:03:35 +0000 2021","id":1372972029536653314,"id_str":"1372972029536653314","text":"RT - @madurakaranda2: When Instagram & WhatsApp crashes, the people of Twitter: - \ud83d\udd7a\ud83d\udd7a\n\n#WhatsAppDown #instagramdown https:\/\/t.co\/JjzERSWYnS","truncated":false,"entities":{"hashtags":[{"text":"WhatsAppDown","indices":[86,99]},{"text":"instagramdown","indices":[100,114]}],"symbols":[],"user_mentions":[{"screen_name":"madurakaranda2","name":"Dhanu_\u0bae\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bcd\u0b95\u0bbe\u0bb0\u0ba9\u0bcd","id":1071375259830411267,"id_str":"1071375259830411267","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/JjzERSWYnS","expanded_url":"https:\/\/twitter.com\/UsthadVirat\/status\/1372970198676824070\/photo\/1","display_url":"pic.twitter.com\/JjzERSWYnS","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 19 18:01:24 +0000 2021","id":1372971480611385350,"id_str":"1372971480611385350","text":"When - Instagram & WhatsApp crashes, the people of Twitter: \ud83d\udd7a\ud83d\udd7a\n\n#WhatsAppDown - #instagramdown https:\/\/t.co\/JjzERSWYnS","truncated":false,"entities":{"hashtags":[{"text":"WhatsAppDown","indices":[66,79]},{"text":"instagramdown","indices":[80,94]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JjzERSWYnS","expanded_url":"https:\/\/twitter.com\/UsthadVirat\/status\/1372970198676824070\/photo\/1","display_url":"pic.twitter.com\/JjzERSWYnS","indices":[95,118]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":258,"favorite_count":1017,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":258,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418471009582149636\/OQkcBUwe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418471009582149636\/OQkcBUwe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20648038,"id_str":"20648038","name":"Barr","screen_name":"barrbe","location":"","description":"indubitably - dubitable","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":936,"listed_count":2,"created_at":"Thu - Feb 12 02:16:07 +0000 2009","favourites_count":5153,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":538,"lang":null,"status":{"created_at":"Fri - Jan 07 03:07:27 +0000 2022","id":1479288545210732546,"id_str":"1479288545210732546","text":"RT - @barbieprivilege: Omg Kanye and julia fox are at clandestino rn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"barbieprivilege","name":"flayva","id":1125894224837214210,"id_str":"1125894224837214210","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 07 02:39:14 +0000 2022","id":1479281443671007234,"id_str":"1479281443671007234","text":"Omg - Kanye and julia fox are at clandestino rn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":66,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313362255317282817\/c2bMv_0o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313362255317282817\/c2bMv_0o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20648038\/1601964938","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":313826311,"id_str":"313826311","name":"Nicholas - Omega_Brony","screen_name":"OmegaMew2","location":"","description":"XBox Gamertag: - Absolut Zero, Certified Brony and A.J. Styles Fan from the Armpit State of - New Jersey! wwtv7 wwtvLOVE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":982,"friends_count":5000,"listed_count":2,"created_at":"Thu - Jun 09 08:28:46 +0000 2011","favourites_count":25416,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17665,"lang":null,"status":{"created_at":"Sat - Mar 26 08:51:35 +0000 2022","id":1507641402993348611,"id_str":"1507641402993348611","text":"@MotherlyLoveRP - Keeping it in would not have been healthy. You did the right thing by venting.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MotherlyLoveRP","name":"Mommy - Dragonite~","id":801573722628956161,"id_str":"801573722628956161","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507605788344389636,"in_reply_to_status_id_str":"1507605788344389636","in_reply_to_user_id":801573722628956161,"in_reply_to_user_id_str":"801573722628956161","in_reply_to_screen_name":"MotherlyLoveRP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590511096487772161\/U8IbIp24_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590511096487772161\/U8IbIp24_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313826311\/1495751512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266087658981392384,"id_str":"1266087658981392384","name":"flughoernchen","screen_name":"flughoernchen2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":3102,"listed_count":0,"created_at":"Thu - May 28 19:23:37 +0000 2020","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1019199858195009537,"id_str":"1019199858195009537","name":"Terlumun - Mchie","screen_name":"TerlumunMchie","location":"Makurdi, Nigeria","description":"Male","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":544,"listed_count":0,"created_at":"Tue - Jul 17 12:39:16 +0000 2018","favourites_count":436,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Sun - Mar 21 08:40:42 +0000 2021","id":1373555152272121856,"id_str":"1373555152272121856","text":"I - expect all men of good conscience to condemn the unwarranted attack on Gov. - Samuel Ortom of Benue State for the interest of one Nigeria.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041636473542455296\/ajUrlk0S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041636473542455296\/ajUrlk0S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019199858195009537\/1537180574","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1075421326574346241,"id_str":"1075421326574346241","name":"Kelli, - LMSW","screen_name":"KBennHospiceMSW","location":"Indy","description":"Hospice - Social Worker\/MSW Indiana University\/Politics\/Literature\/INFJ\/Humanitarian\/Health\/History\/family - hx porphyria\/theater \/Liberal Democrat\/Colts","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":1304,"listed_count":2,"created_at":"Wed - Dec 19 16:03:19 +0000 2018","favourites_count":8796,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2958,"lang":null,"status":{"created_at":"Thu - Jan 06 04:00:29 +0000 2022","id":1478939504639725570,"id_str":"1478939504639725570","text":"Because - spirituality and religion are not the same thing. https:\/\/t.co\/UPaO4u6Ph1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UPaO4u6Ph1","expanded_url":"https:\/\/twitter.com\/thanatillogical\/status\/1478809670118776840","display_url":"twitter.com\/thanatillogica\u2026","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1478809670118776840,"quoted_status_id_str":"1478809670118776840","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218962380027236354\/PZlE9w4V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218962380027236354\/PZlE9w4V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1075421326574346241\/1546910443","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":43533826,"id_str":"43533826","name":"Madeleine - DiSalvo","screen_name":"maddest_disalvo","location":"","description":"MBA - candidate University of Chicago Booth School of Business. she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":1024,"listed_count":0,"created_at":"Sat - May 30 14:21:41 +0000 2009","favourites_count":804,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":389,"lang":null,"status":{"created_at":"Tue - Apr 20 20:43:02 +0000 2021","id":1384608570453471233,"id_str":"1384608570453471233","text":"RT - @MsPackyetti: Whatever happens...\n\nProtect your peace. \nPray continually - for George\u2019s family. \nStay focused on the system.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MsPackyetti","name":"\ud83d\udda4.","id":239509917,"id_str":"239509917","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 20 19:41:35 +0000 2021","id":1384593103789740032,"id_str":"1384593103789740032","text":"Whatever - happens...\n\nProtect your peace. \nPray continually for George\u2019s family. - \nStay focused on the system.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4448,"favorite_count":22934,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4448,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1138952193854382087\/eDlGxpsY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1138952193854382087\/eDlGxpsY_normal.png","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":314618566,"id_str":"314618566","name":"\u26aa","screen_name":"UpsetYourBrain","location":"","description":"A - veces me gusta pensar que solo somos un hongo esparci\u00e9ndose en la costra - h\u00fameda de un pan rancio \ud83e\ude90\u2728\ud83c\udf5e","url":"https:\/\/t.co\/sdpajZvhYv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sdpajZvhYv","expanded_url":"http:\/\/www.instagram.com\/blancoagua","display_url":"instagram.com\/blancoagua","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":220,"friends_count":283,"listed_count":20,"created_at":"Fri - Jun 10 15:02:34 +0000 2011","favourites_count":18915,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44669,"lang":null,"status":{"created_at":"Sat - Mar 26 05:14:12 +0000 2022","id":1507586694383554570,"id_str":"1507586694383554570","text":"Qu\u00e9 - bonito es hablar de pol\u00edtica cuando realmente sabes lo que est\u00e1s - y diciendo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000A0A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487227958251204608\/3C6ST8qa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487227958251204608\/3C6ST8qa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/314618566\/1600711178","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1152530381800914944,"id_str":"1152530381800914944","name":"derrick","screen_name":"DerrickPokq","location":"Kampala, - Uganda","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":1309,"listed_count":1,"created_at":"Sat - Jul 20 10:47:10 +0000 2019","favourites_count":385,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Fri - Oct 22 07:44:39 +0000 2021","id":1451454438854508544,"id_str":"1451454438854508544","text":"@lulanzeashiraf - @TheMerchantUg can''t we negotiate","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lulanzeashiraf","name":"MR - ASHIRAF","id":1012751571841617920,"id_str":"1012751571841617920","indices":[0,15]},{"screen_name":"TheMerchantUg","name":"The - Merchant Online","id":1426900188858302475,"id_str":"1426900188858302475","indices":[16,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1450428828577325060,"in_reply_to_status_id_str":"1450428828577325060","in_reply_to_user_id":1012751571841617920,"in_reply_to_user_id_str":"1012751571841617920","in_reply_to_screen_name":"lulanzeashiraf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152530912439099392\/bKCUvz1K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152530912439099392\/bKCUvz1K_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3290694542,"id_str":"3290694542","name":"Aliana - Potter","screen_name":"alianapotter","location":"","description":"she\/her - | public health concentrator @hamiltoncollege \u201824 | @RepLoriTrahan @TheBlueLab - @RufusGifford @InvolvedApp \u2764\ufe0f\u200d\ud83d\udd25\ud83e\udd1d\ud83e\udd8b\ud83d\ude0e","url":"https:\/\/t.co\/qIRwhIjbo3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qIRwhIjbo3","expanded_url":"http:\/\/chasebjork.org","display_url":"chasebjork.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":445,"listed_count":1,"created_at":"Fri - Jul 24 18:07:44 +0000 2015","favourites_count":1752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":466,"lang":null,"status":{"created_at":"Fri - Mar 25 17:23:50 +0000 2022","id":1507407927874883592,"id_str":"1507407927874883592","text":"being - ghosted post-interview the woat \ud83d\ude2e\u200d\ud83d\udca8\ud83e\udd72","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369006454712197123\/xNxlakuq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369006454712197123\/xNxlakuq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290694542\/1615231549","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2245871372,"id_str":"2245871372","name":"Dereje - Gashaw DJ","screen_name":"dereje_gashaw_","location":"Addis Ababa Ethiopia - ","description":"Tour Guide\/ Tour Operator\/ Production Assistant. I want - to fulfill my duties with commitment and consideration.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":1246,"listed_count":2,"created_at":"Sat - Dec 14 17:00:39 +0000 2013","favourites_count":6474,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":725,"lang":null,"status":{"created_at":"Thu - Feb 03 18:47:27 +0000 2022","id":1489309577518755852,"id_str":"1489309577518755852","text":"Reposted - from @solomon.m.kassa #Addis_Ababa_Ethiopia @zab_tours_ethiopia https:\/\/t.co\/3WrhPE8bsr","truncated":false,"entities":{"hashtags":[{"text":"Addis_Ababa_Ethiopia","indices":[32,53]}],"symbols":[],"user_mentions":[{"screen_name":"solomon","name":"Solomon - Engel","id":34668036,"id_str":"34668036","indices":[14,22]}],"urls":[],"media":[{"id":1489309365555417091,"id_str":"1489309365555417091","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FKsW-i6X0AMFQCY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKsW-i6X0AMFQCY.jpg","url":"https:\/\/t.co\/3WrhPE8bsr","display_url":"pic.twitter.com\/3WrhPE8bsr","expanded_url":"https:\/\/twitter.com\/dereje_gashaw_\/status\/1489309577518755852\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":594,"resize":"fit"},"medium":{"w":1024,"h":894,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":894,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1489309365555417091,"id_str":"1489309365555417091","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FKsW-i6X0AMFQCY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKsW-i6X0AMFQCY.jpg","url":"https:\/\/t.co\/3WrhPE8bsr","display_url":"pic.twitter.com\/3WrhPE8bsr","expanded_url":"https:\/\/twitter.com\/dereje_gashaw_\/status\/1489309577518755852\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":594,"resize":"fit"},"medium":{"w":1024,"h":894,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":894,"resize":"fit"}}},{"id":1489309365567987712,"id_str":"1489309365567987712","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FKsW-i9XoAAYJfa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKsW-i9XoAAYJfa.jpg","url":"https:\/\/t.co\/3WrhPE8bsr","display_url":"pic.twitter.com\/3WrhPE8bsr","expanded_url":"https:\/\/twitter.com\/dereje_gashaw_\/status\/1489309577518755852\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":894,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":894,"resize":"fit"},"small":{"w":680,"h":594,"resize":"fit"}}},{"id":1489309365559607297,"id_str":"1489309365559607297","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FKsW-i7XwAEk8Ph.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKsW-i7XwAEk8Ph.jpg","url":"https:\/\/t.co\/3WrhPE8bsr","display_url":"pic.twitter.com\/3WrhPE8bsr","expanded_url":"https:\/\/twitter.com\/dereje_gashaw_\/status\/1489309577518755852\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":892,"resize":"fit"},"medium":{"w":1024,"h":892,"resize":"fit"},"small":{"w":680,"h":592,"resize":"fit"}}},{"id":1489309366918463493,"id_str":"1489309366918463493","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FKsW-n_WQAU1CUT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKsW-n_WQAU1CUT.jpg","url":"https:\/\/t.co\/3WrhPE8bsr","display_url":"pic.twitter.com\/3WrhPE8bsr","expanded_url":"https:\/\/twitter.com\/dereje_gashaw_\/status\/1489309577518755852\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":818,"h":1024,"resize":"fit"},"medium":{"w":818,"h":1024,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452345451437510656\/Z_LvbRpn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452345451437510656\/Z_LvbRpn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2245871372\/1591898244","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52028221,"id_str":"52028221","name":"Tim - Whatmough","screen_name":"tgw1892","location":"Paris","description":"Polyglot - Bristolian, PR, @nufc & @bcfctweets fan, penchant for Scottish alt-rock","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":2291,"listed_count":2,"created_at":"Mon - Jun 29 11:24:03 +0000 2009","favourites_count":9625,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1886,"lang":null,"status":{"created_at":"Tue - Dec 07 07:22:42 +0000 2021","id":1468118756866072578,"id_str":"1468118756866072578","text":"@nxcare - Hi, I''ve been trying to amend a ticket for days but keep getting the same - error message on your website. Ca\u2026 https:\/\/t.co\/tezPb10qTw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nxcare","name":"NX - Customer Service","id":497849712,"id_str":"497849712","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/tezPb10qTw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1468118756866072578","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":497849712,"in_reply_to_user_id_str":"497849712","in_reply_to_screen_name":"nxcare","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037801299641856000\/EqNQRN9v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037801299641856000\/EqNQRN9v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52028221\/1353863687","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":458748830,"id_str":"458748830","name":"Mr. - Gaby","screen_name":"lordgaby101","location":"","description":"Business Man - | Realtor | Investor| Thinker | BillionairesAmbition","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":296,"friends_count":1701,"listed_count":0,"created_at":"Sun - Jan 08 22:22:07 +0000 2012","favourites_count":1320,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3029,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/894284979915698180\/t2703IOd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/894284979915698180\/t2703IOd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458748830\/1590925159","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":326590671,"id_str":"326590671","name":"CheapWhine16","screen_name":"CheapWhine16","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":1405,"listed_count":0,"created_at":"Thu - Jun 30 04:52:33 +0000 2011","favourites_count":28991,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2136,"lang":null,"status":{"created_at":"Tue - Mar 01 16:13:23 +0000 2022","id":1498692888158420995,"id_str":"1498692888158420995","text":"RT - @BrunoTheGreat32: @wb3gxwham @Jim_Jordan Break out your readers. https:\/\/t.co\/yrhvZRNRwK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrunoTheGreat32","name":"Bruno - in the Bay","id":24990251,"id_str":"24990251","indices":[3,19]},{"screen_name":"wb3gxwham","name":"John - B Creel JR","id":1658727834,"id_str":"1658727834","indices":[21,31]},{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[32,43]}],"urls":[],"media":[{"id":1498689836588290049,"id_str":"1498689836588290049","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","url":"https:\/\/t.co\/yrhvZRNRwK","display_url":"pic.twitter.com\/yrhvZRNRwK","expanded_url":"https:\/\/twitter.com\/BrunoTheGreat32\/status\/1498689839805308937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1653,"h":2048,"resize":"fit"},"small":{"w":549,"h":680,"resize":"fit"}},"source_status_id":1498689839805308937,"source_status_id_str":"1498689839805308937","source_user_id":24990251,"source_user_id_str":"24990251"}]},"extended_entities":{"media":[{"id":1498689836588290049,"id_str":"1498689836588290049","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","url":"https:\/\/t.co\/yrhvZRNRwK","display_url":"pic.twitter.com\/yrhvZRNRwK","expanded_url":"https:\/\/twitter.com\/BrunoTheGreat32\/status\/1498689839805308937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1653,"h":2048,"resize":"fit"},"small":{"w":549,"h":680,"resize":"fit"}},"source_status_id":1498689839805308937,"source_status_id_str":"1498689839805308937","source_user_id":24990251,"source_user_id_str":"24990251"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 16:01:16 +0000 2022","id":1498689839805308937,"id_str":"1498689839805308937","text":"@wb3gxwham - @Jim_Jordan Break out your readers. https:\/\/t.co\/yrhvZRNRwK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wb3gxwham","name":"John - B Creel JR","id":1658727834,"id_str":"1658727834","indices":[0,10]},{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[11,22]}],"urls":[],"media":[{"id":1498689836588290049,"id_str":"1498689836588290049","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","url":"https:\/\/t.co\/yrhvZRNRwK","display_url":"pic.twitter.com\/yrhvZRNRwK","expanded_url":"https:\/\/twitter.com\/BrunoTheGreat32\/status\/1498689839805308937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1653,"h":2048,"resize":"fit"},"small":{"w":549,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498689836588290049,"id_str":"1498689836588290049","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMxqd0pVUAEX7ob.jpg","url":"https:\/\/t.co\/yrhvZRNRwK","display_url":"pic.twitter.com\/yrhvZRNRwK","expanded_url":"https:\/\/twitter.com\/BrunoTheGreat32\/status\/1498689839805308937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1653,"h":2048,"resize":"fit"},"small":{"w":549,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498686580948623362,"in_reply_to_status_id_str":"1498686580948623362","in_reply_to_user_id":1658727834,"in_reply_to_user_id_str":"1658727834","in_reply_to_screen_name":"wb3gxwham","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":826122201686437888,"id_str":"826122201686437888","name":"Jasmin - Hastings","screen_name":"jashas575","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":485,"listed_count":0,"created_at":"Mon - Jan 30 17:37:36 +0000 2017","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Jan 30 23:07:26 +0000 2022","id":1487925452207542276,"id_str":"1487925452207542276","text":"@LoriGottlieb1 - Psych. It\u2019s so good. It was our family covid show.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LoriGottlieb1","name":"Lori - Gottlieb","id":358612981,"id_str":"358612981","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487857774578978820,"in_reply_to_status_id_str":"1487857774578978820","in_reply_to_user_id":358612981,"in_reply_to_user_id_str":"358612981","in_reply_to_screen_name":"LoriGottlieb1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487928062717173771\/rGrsLCh3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487928062717173771\/rGrsLCh3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246848676015656960,"id_str":"1246848676015656960","name":"Silencer","screen_name":"_anotherjunior","location":"","description":"''''Check, - Yes you can!''''\n- Anonymous","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":262,"listed_count":0,"created_at":"Sun - Apr 05 17:14:55 +0000 2020","favourites_count":5493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3709,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395056404352757762\/9CHi11n9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395056404352757762\/9CHi11n9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1246848676015656960\/1621442343","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927273507477737473,"id_str":"927273507477737473","name":"Margaret - McCabe","screen_name":"Margare28565536","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":319,"listed_count":0,"created_at":"Sun - Nov 05 20:36:46 +0000 2017","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Mar 17 15:40:46 +0000 2020","id":1239939742982197249,"id_str":"1239939742982197249","text":"@NicholaMallon - \nCan I ask about driving tests. Your Examiners will not be able to maintain - the necessary safe dista\u2026 https:\/\/t.co\/O8wX2mlqRk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NicholaMallon","name":"Nichola - Mallon","id":119017757,"id_str":"119017757","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/O8wX2mlqRk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1239939742982197249","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":119017757,"in_reply_to_user_id_str":"119017757","in_reply_to_screen_name":"NicholaMallon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3066072016,"id_str":"3066072016","name":"Bruce - Caswell","screen_name":"Prof_Caswell","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":215,"listed_count":1,"created_at":"Mon - Mar 02 16:49:45 +0000 2015","favourites_count":25188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":704,"lang":null,"status":{"created_at":"Wed - Mar 23 02:10:15 +0000 2022","id":1506453238127673345,"id_str":"1506453238127673345","text":"RT - @navalny: 1\/10 \n\n9 years of strict regime.\n\nMy space flight is taking - a bit longer than expected - the ship is caught in a time loop.\n\nI\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"navalny","name":"Alexey - Navalny","id":82299300,"id_str":"82299300","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 12:59:43 +0000 2022","id":1506254294533746692,"id_str":"1506254294533746692","text":"1\/10 - \n\n9 years of strict regime.\n\nMy space flight is taking a bit longer than - expected - the ship is caught in a ti\u2026 https:\/\/t.co\/rWSZdXRLEB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rWSZdXRLEB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506254294533746692","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4582,"favorite_count":24115,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4582,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650374806362320896\/1UOYJtWN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650374806362320896\/1UOYJtWN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066072016\/1443808815","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":704060123736514561,"id_str":"704060123736514561","name":"Suedavis","screen_name":"shdavis_ssq","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":216,"listed_count":0,"created_at":"Sun - Feb 28 21:46:29 +0000 2016","favourites_count":1525,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":null,"status":{"created_at":"Thu - Mar 17 01:55:05 +0000 2022","id":1504275094394183688,"id_str":"1504275094394183688","text":"@atharesq - Unbelievable","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atharesq","name":"Athar - Haseebullah, Esq.","id":1351346079095091201,"id_str":"1351346079095091201","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504105511972573185,"in_reply_to_status_id_str":"1504105511972573185","in_reply_to_user_id":1351346079095091201,"in_reply_to_user_id_str":"1351346079095091201","in_reply_to_screen_name":"atharesq","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704066974502916096\/NTjpp3fd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704066974502916096\/NTjpp3fd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":817903809028558848,"id_str":"817903809028558848","name":"Nancy - Miller","screen_name":"anneemiller13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":1546,"listed_count":0,"created_at":"Sun - Jan 08 01:20:38 +0000 2017","favourites_count":3077,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sun - Nov 21 15:47:57 +0000 2021","id":1462447699626766336,"id_str":"1462447699626766336","text":"#wsqqsqqsqq##o","truncated":false,"entities":{"hashtags":[{"text":"o","indices":[12,14]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1443143076,"id_str":"1443143076","name":"The - Big Boy","screen_name":"alexmwendi","location":"Kenya","description":"Logy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":1065,"listed_count":0,"created_at":"Mon - May 20 08:04:15 +0000 2013","favourites_count":402,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Wed - Mar 16 14:00:13 +0000 2022","id":1504095194253254666,"id_str":"1504095194253254666","text":"@AtwoliDza - I wonder who advises @RailaOdinga,@AtwoliDza is a bad omen. Anyway we are - tired of wazees eat your lunch\u2026 https:\/\/t.co\/8167n8oPVz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AtwoliDza","name":"Francis - Atwoli NOM (DZA), CBS, EBS, MBS.","id":941815235144503296,"id_str":"941815235144503296","indices":[0,10]},{"screen_name":"RailaOdinga","name":"Raila - Odinga","id":300789811,"id_str":"300789811","indices":[32,44]},{"screen_name":"AtwoliDza","name":"Francis - Atwoli NOM (DZA), CBS, EBS, MBS.","id":941815235144503296,"id_str":"941815235144503296","indices":[45,55]}],"urls":[{"url":"https:\/\/t.co\/8167n8oPVz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504095194253254666","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504094115658702851,"in_reply_to_status_id_str":"1504094115658702851","in_reply_to_user_id":941815235144503296,"in_reply_to_user_id_str":"941815235144503296","in_reply_to_screen_name":"AtwoliDza","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309826447025082375\/M0lNedpo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309826447025082375\/M0lNedpo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20741170,"id_str":"20741170","name":"Rick","screen_name":"BismakBuyombo","location":"Carefree, - AZ","description":"Father of 3, always looking to improve life, work, self. - Suns and Dbacks fan since day 1.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":173,"friends_count":2847,"listed_count":1,"created_at":"Fri - Feb 13 02:21:57 +0000 2009","favourites_count":299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1149,"lang":null,"status":{"created_at":"Fri - Mar 25 02:09:32 +0000 2022","id":1507177835332481029,"id_str":"1507177835332481029","text":"RT - @OriginalFunko: RT and follow @OriginalFunko for the chance to WIN the @DCComics - Shop exclusive Batman Diamond Edition POP! Not feeling\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OriginalFunko","name":"Funko","id":1378000488,"id_str":"1378000488","indices":[3,17]},{"screen_name":"OriginalFunko","name":"Funko","id":1378000488,"id_str":"1378000488","indices":[33,47]},{"screen_name":"DCComics","name":"DC","id":18173624,"id_str":"18173624","indices":[74,83]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:00:06 +0000 2022","id":1507175459414491140,"id_str":"1507175459414491140","text":"RT - and follow @OriginalFunko for the chance to WIN the @DCComics Shop exclusive - Batman Diamond Edition POP! Not fee\u2026 https:\/\/t.co\/L9sjAz9Ty5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OriginalFunko","name":"Funko","id":1378000488,"id_str":"1378000488","indices":[14,28]},{"screen_name":"DCComics","name":"DC","id":18173624,"id_str":"18173624","indices":[55,64]}],"urls":[{"url":"https:\/\/t.co\/L9sjAz9Ty5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507175459414491140","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eKhoros Publishing - App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8746,"favorite_count":4935,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8746,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487946099520278528\/O4gPi5ch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487946099520278528\/O4gPi5ch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20741170\/1643588929","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":80105991,"id_str":"80105991","name":"MIN","screen_name":"mintextile","location":"malaysia","description":"Business - is more exciting than politics\n#androgynous","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":491,"friends_count":1403,"listed_count":2,"created_at":"Mon - Oct 05 19:34:45 +0000 2009","favourites_count":11827,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63654,"lang":null,"status":{"created_at":"Tue - Mar 15 09:41:07 +0000 2022","id":1503667599153934339,"id_str":"1503667599153934339","text":"@RinaMohdHarun - Lepas 30 tahun, kami semua berhak RUU Anti-Gangguan Seksual (GS) yg lebih - victim-centric. Kami perlu\u2026 https:\/\/t.co\/jfsivXYxpW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RinaMohdHarun","name":"Rina - Mohd Harun","id":49709962,"id_str":"49709962","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/jfsivXYxpW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503667599153934339","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":49709962,"in_reply_to_user_id_str":"49709962","in_reply_to_screen_name":"RinaMohdHarun","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D4E77D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064300143975923712\/TSKOXmGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064300143975923712\/TSKOXmGO_normal.jpg","profile_link_color":"635046","profile_sidebar_border_color":"0F020F","profile_sidebar_fill_color":"2B052B","profile_text_color":"9C9C62","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818161010,"id_str":"818161010","name":"warriormetalsmith","screen_name":"warriormetals","location":"","description":"Michele - Kennington Williams- murdered 12\/19\/16 by an AR15 #guncontrolnow Metalsmith. - Vegan. Hiker. National Park and Public Lands lover.\u2728\ud83c\udf1e\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":326,"friends_count":4860,"listed_count":12,"created_at":"Tue - Sep 11 20:48:43 +0000 2012","favourites_count":7050,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5054,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272491751345983488\/ka8WjEbB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272491751345983488\/ka8WjEbB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818161010\/1592220651","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263149091581722624,"id_str":"1263149091581722624","name":"Ben - Dia","screen_name":"AcademicienL","location":"C\u00f4te d''Ivoire","description":"Coach - en d\u00e9veloppement personnel\/ Formateur en anglais\/ Consultant\n\ud83c\udde8\ud83c\uddee\ud83c\uddeb\ud83c\uddf7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":368,"listed_count":0,"created_at":"Wed - May 20 16:46:39 +0000 2020","favourites_count":2474,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Fri - Dec 18 15:47:59 +0000 2020","id":1339960610931548162,"id_str":"1339960610931548162","text":"@BabiFood - Malheureusement pas de place pour nous qui avons les probl\u00e8mes gastrites","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BabiFood","name":"Babi - Street Food","id":1126543577830567937,"id_str":"1126543577830567937","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1339887582579220485,"in_reply_to_status_id_str":"1339887582579220485","in_reply_to_user_id":1126543577830567937,"in_reply_to_user_id_str":"1126543577830567937","in_reply_to_screen_name":"BabiFood","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317836357738389515\/LAAwtEYl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317836357738389515\/LAAwtEYl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300508754853724160,"id_str":"1300508754853724160","name":"Santos","screen_name":"Santosabaga","location":"Addo, - Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":514,"listed_count":0,"created_at":"Mon - Aug 31 19:00:40 +0000 2020","favourites_count":1005,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":102,"lang":null,"status":{"created_at":"Sun - Jun 06 07:21:30 +0000 2021","id":1401439086955708419,"id_str":"1401439086955708419","text":"RT - @AniUTD: Amaddd https:\/\/t.co\/vkl2QcOMe6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AniUTD","name":"''","id":721070736283197440,"id_str":"721070736283197440","indices":[3,10]}],"urls":[],"media":[{"id":1401254819373912068,"id_str":"1401254819373912068","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","url":"https:\/\/t.co\/vkl2QcOMe6","display_url":"pic.twitter.com\/vkl2QcOMe6","expanded_url":"https:\/\/twitter.com\/AniUTD\/status\/1401254824155488259\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1080,"h":1620,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}},"source_status_id":1401254824155488259,"source_status_id_str":"1401254824155488259","source_user_id":721070736283197440,"source_user_id_str":"721070736283197440"}]},"extended_entities":{"media":[{"id":1401254819373912068,"id_str":"1401254819373912068","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","url":"https:\/\/t.co\/vkl2QcOMe6","display_url":"pic.twitter.com\/vkl2QcOMe6","expanded_url":"https:\/\/twitter.com\/AniUTD\/status\/1401254824155488259\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1080,"h":1620,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}},"source_status_id":1401254824155488259,"source_status_id_str":"1401254824155488259","source_user_id":721070736283197440,"source_user_id_str":"721070736283197440"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jun 05 19:09:18 +0000 2021","id":1401254824155488259,"id_str":"1401254824155488259","text":"Amaddd - https:\/\/t.co\/vkl2QcOMe6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1401254819373912068,"id_str":"1401254819373912068","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","url":"https:\/\/t.co\/vkl2QcOMe6","display_url":"pic.twitter.com\/vkl2QcOMe6","expanded_url":"https:\/\/twitter.com\/AniUTD\/status\/1401254824155488259\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1080,"h":1620,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1401254819373912068,"id_str":"1401254819373912068","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3JB1YSWEAQiZlB.jpg","url":"https:\/\/t.co\/vkl2QcOMe6","display_url":"pic.twitter.com\/vkl2QcOMe6","expanded_url":"https:\/\/twitter.com\/AniUTD\/status\/1401254824155488259\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":1080,"h":1620,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401163055149600769\/j-77yq1R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401163055149600769\/j-77yq1R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1927196538,"id_str":"1927196538","name":"FRANK","screen_name":"daddyfranks","location":"Florida, - USA","description":"I am nobody. no one. not anything but a thought that wants - to be heard. if you agree with any of my thoughts RETWEET THEM.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1021,"friends_count":2323,"listed_count":1,"created_at":"Wed - Oct 02 15:29:41 +0000 2013","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4195,"lang":null,"status":{"created_at":"Sat - Jan 09 13:54:51 +0000 2021","id":1347904673156624385,"id_str":"1347904673156624385","text":"Shut - up little boy. No one listens to you. https:\/\/t.co\/uaxcXfyC2B","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uaxcXfyC2B","expanded_url":"https:\/\/twitter.com\/DonaldJTrumpJr\/status\/1347697226466828288","display_url":"twitter.com\/DonaldJTrumpJr\u2026","indices":[44,67]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1347697226466828288,"quoted_status_id_str":"1347697226466828288","retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/999442737823858688\/8WW3sTyU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/999442737823858688\/8WW3sTyU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1476836066,"id_str":"1476836066","name":"rahma","screen_name":"rahmasalobrena","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":111,"listed_count":0,"created_at":"Sun - Jun 02 09:01:50 +0000 2013","favourites_count":769,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":201,"lang":null,"status":{"created_at":"Mon - Feb 21 20:03:31 +0000 2022","id":1495851697851277312,"id_str":"1495851697851277312","text":"RT - @wonderofscience: A pallas''s cat standing on its tail to conserve body heat. - Also known as manul, these small wild cats with dense fur a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wonderofscience","name":"Wonder - of Science","id":3101588527,"id_str":"3101588527","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 19 00:31:21 +0000 2022","id":1494831938984574979,"id_str":"1494831938984574979","text":"A - pallas''s cat standing on its tail to conserve body heat. Also known as manul, - these small wild cats with dense fu\u2026 https:\/\/t.co\/sLBThLSAtX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sLBThLSAtX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494831938984574979","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1648,"favorite_count":9550,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1648,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/795360623571980292\/sNI-XYi6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/795360623571980292\/sNI-XYi6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":806808,"id_str":"806808","name":"Rachel - Pearson","screen_name":"rkr","location":"Los Alamos, NM","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":346,"listed_count":3,"created_at":"Fri - Mar 02 19:01:50 +0000 2007","favourites_count":2010,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1605,"lang":null,"status":{"created_at":"Fri - Mar 18 23:08:35 +0000 2022","id":1504957970177835016,"id_str":"1504957970177835016","text":"@sarahclazarus - Maybe eat at inside at a restaurant a couple of times!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sarahclazarus","name":"Sarah - Lazarus","id":2289160027,"id_str":"2289160027","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504678850306793475,"in_reply_to_status_id_str":"1504678850306793475","in_reply_to_user_id":2289160027,"in_reply_to_user_id_str":"2289160027","in_reply_to_screen_name":"sarahclazarus","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349391594835775493\/GbbwVbl6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349391594835775493\/GbbwVbl6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806808\/1485469176","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":321590127,"id_str":"321590127","name":"Walter - (Ter)","screen_name":"mattersofmanner","location":"Chicago","description":"\u201cReality - is that thing which, when you stop believing in it, doesn\u2019t go away.\u201d - - Philip K. Dick","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":342,"friends_count":4972,"listed_count":4,"created_at":"Tue - Jun 21 20:28:32 +0000 2011","favourites_count":74589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1407904510\/elijah_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1407904510\/elijah_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321590127\/1531706232","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3300547570,"id_str":"3300547570","name":"Gojayev - R.","screen_name":"qocayev236","location":"","description":"AZE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":239,"friends_count":406,"listed_count":0,"created_at":"Wed - May 27 15:02:03 +0000 2015","favourites_count":3694,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":950,"lang":null,"status":{"created_at":"Sun - Sep 26 19:04:09 +0000 2021","id":1442203355938373632,"id_str":"1442203355938373632","text":"RT - @azpresident: https:\/\/t.co\/J92wjF9G70","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"azpresident","name":"\u0130lham - \u018fliyev","id":171357785,"id_str":"171357785","indices":[3,15]}],"urls":[],"media":[{"id":1442180488983105541,"id_str":"1442180488983105541","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","url":"https:\/\/t.co\/J92wjF9G70","display_url":"pic.twitter.com\/J92wjF9G70","expanded_url":"https:\/\/twitter.com\/azpresident\/status\/1442180525221892102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":673,"resize":"fit"},"large":{"w":1920,"h":1077,"resize":"fit"},"small":{"w":680,"h":381,"resize":"fit"}},"source_status_id":1442180525221892102,"source_status_id_str":"1442180525221892102","source_user_id":171357785,"source_user_id_str":"171357785"}]},"extended_entities":{"media":[{"id":1442180488983105541,"id_str":"1442180488983105541","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","url":"https:\/\/t.co\/J92wjF9G70","display_url":"pic.twitter.com\/J92wjF9G70","expanded_url":"https:\/\/twitter.com\/azpresident\/status\/1442180525221892102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":673,"resize":"fit"},"large":{"w":1920,"h":1077,"resize":"fit"},"small":{"w":680,"h":381,"resize":"fit"}},"source_status_id":1442180525221892102,"source_status_id_str":"1442180525221892102","source_user_id":171357785,"source_user_id_str":"171357785"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 26 17:33:26 +0000 2021","id":1442180525221892102,"id_str":"1442180525221892102","text":"https:\/\/t.co\/J92wjF9G70","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1442180488983105541,"id_str":"1442180488983105541","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","url":"https:\/\/t.co\/J92wjF9G70","display_url":"pic.twitter.com\/J92wjF9G70","expanded_url":"https:\/\/twitter.com\/azpresident\/status\/1442180525221892102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":673,"resize":"fit"},"large":{"w":1920,"h":1077,"resize":"fit"},"small":{"w":680,"h":381,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1442180488983105541,"id_str":"1442180488983105541","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FAOng4PWUAUqU-x.jpg","url":"https:\/\/t.co\/J92wjF9G70","display_url":"pic.twitter.com\/J92wjF9G70","expanded_url":"https:\/\/twitter.com\/azpresident\/status\/1442180525221892102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":673,"resize":"fit"},"large":{"w":1920,"h":1077,"resize":"fit"},"small":{"w":680,"h":381,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2253,"favorite_count":8129,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":2253,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315640071203282944\/UmdnWb8p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315640071203282944\/UmdnWb8p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300547570\/1472474817","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":61851735,"id_str":"61851735","name":"Fausto - Anguilla","screen_name":"FCA52","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":823,"listed_count":0,"created_at":"Fri - Jul 31 19:21:59 +0000 2009","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Sep 14 13:53:58 +0000 2017","id":908327970221297664,"id_str":"908327970221297664","text":"I - want to get reminders from @BankofAmerica before every episode of #VietnamWarPBS! - https:\/\/t.co\/IZkiX2RDHE","truncated":false,"entities":{"hashtags":[{"text":"VietnamWarPBS","indices":[68,82]}],"symbols":[],"user_mentions":[{"screen_name":"BankofAmerica","name":"Bank - of America","id":204881628,"id_str":"204881628","indices":[29,43]}],"urls":[{"url":"https:\/\/t.co\/IZkiX2RDHE","expanded_url":"https:\/\/cards.twitter.com\/cards\/3dzboc\/4r02d","display_url":"cards.twitter.com\/cards\/3dzboc\/4\u2026","indices":[84,107]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2803034458,"id_str":"2803034458","name":"Charles - Ferrill @ Bear","screen_name":"f207d74a5f494ae","location":"","description":"Consultant, - Retired Investment Banker, Retired Facilitator of Tours at Basin Park Hotel, Eureka - Springs, AR, Ole Miss Rebel 1959-60 Football \n\nBerryville, AR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":403,"friends_count":2972,"listed_count":0,"created_at":"Fri - Oct 03 22:41:35 +0000 2014","favourites_count":14292,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":524,"lang":null,"status":{"created_at":"Mon - Feb 28 15:06:22 +0000 2022","id":1498313636187623426,"id_str":"1498313636187623426","text":"@Lane_Kiffin - @Huskers @RazorbackFB @NCState @packers @BuffaloBills @Vikings @Saints @Buccaneers - @Vol_Football\u2026 https:\/\/t.co\/gTJVjC47S2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lane_Kiffin","name":"Lane - Kiffin","id":104374310,"id_str":"104374310","indices":[0,12]},{"screen_name":"Huskers","name":"Nebraska - Huskers","id":116871109,"id_str":"116871109","indices":[13,21]},{"screen_name":"RazorbackFB","name":"Arkansas - Razorback Football","id":621158891,"id_str":"621158891","indices":[22,34]},{"screen_name":"NCState","name":"NC - State University: #GivingPack on March 23","id":487624974,"id_str":"487624974","indices":[35,43]},{"screen_name":"packers","name":"Green - Bay Packers","id":35865630,"id_str":"35865630","indices":[44,52]},{"screen_name":"BuffaloBills","name":"Buffalo - Bills","id":25084916,"id_str":"25084916","indices":[53,66]},{"screen_name":"Vikings","name":"Minnesota - Vikings","id":25545388,"id_str":"25545388","indices":[67,75]},{"screen_name":"Saints","name":"New - Orleans Saints","id":31504542,"id_str":"31504542","indices":[76,83]},{"screen_name":"Buccaneers","name":"Tampa - Bay Buccaneers","id":36155311,"id_str":"36155311","indices":[84,95]},{"screen_name":"Vol_Football","name":"Tennessee - Football","id":181180906,"id_str":"181180906","indices":[96,109]}],"urls":[{"url":"https:\/\/t.co\/gTJVjC47S2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498313636187623426","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498298505789595666,"in_reply_to_status_id_str":"1498298505789595666","in_reply_to_user_id":104374310,"in_reply_to_user_id_str":"104374310","in_reply_to_screen_name":"Lane_Kiffin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518169205951455233\/d8jiBe7L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518169205951455233\/d8jiBe7L_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279038438080200704,"id_str":"1279038438080200704","name":"Corinthiano - triste","screen_name":"IdeaoMarcus","location":"Paraiba,Brasil","description":"https:\/\/t.co\/gZcZyZeNZy","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/gZcZyZeNZy","expanded_url":"http:\/\/instagram.com\/marcusnoberto\/","display_url":"instagram.com\/marcusnoberto\/","indices":[0,23]}]}},"protected":true,"followers_count":4,"friends_count":232,"listed_count":0,"created_at":"Fri - Jul 03 13:05:08 +0000 2020","favourites_count":819,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279038766628429827\/5SITTWiC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279038766628429827\/5SITTWiC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":180913006,"id_str":"180913006","name":"Tahir - Siddiqui","screen_name":"tahir2707","location":"KSA","description":"Activist, - Data Analyst, Telecom,CEM. \nEnthusiast about Science, Space, Earth & Tech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":243,"friends_count":516,"listed_count":0,"created_at":"Fri - Aug 20 20:33:33 +0000 2010","favourites_count":31252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":906,"lang":null,"status":{"created_at":"Thu - Mar 24 21:05:16 +0000 2022","id":1507101263774855176,"id_str":"1507101263774855176","text":"@anismansoori - \u06a9\u0631\u0627\u0686\u06cc \u06a9\u06d2 \u0645\u0633\u0627\u0626\u0644 - \u06a9\u0627 \u062d\u0644 \u0635\u0631\u0641 \u062c\u0645\u0627\u0639\u062a - \u0627\u0633\u0644\u0627\u0645\u06cc \u06a9\u06d2 \u0630\u0631\u06cc\u0639\u06d2 - \u06c1\u06cc \u06c1\u0648\u0633\u06a9\u062a\u0627 \u06c1\u06d2\u06d4 \u0648\u0642\u062a - \u062a\u062c\u0631\u0628\u06cc \u06c1\u0631 \u0637\u0631\u062d \u0633\u06d2 - \u0628\u0627\u062a \u062b\u0627\u0628\u062a \u06c1\u0648\u0686\u06a9\u06cc - \u06c1\u06d2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anismansoori","name":"anis - mansoori","id":142253747,"id_str":"142253747","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506836070696112131,"in_reply_to_status_id_str":"1506836070696112131","in_reply_to_user_id":142253747,"in_reply_to_user_id_str":"142253747","in_reply_to_screen_name":"anismansoori","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036521237755912192\/fdfcgnmJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036521237755912192\/fdfcgnmJ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293101109750509570,"id_str":"1293101109750509570","name":"Chimezie@Val","screen_name":"ChimezieVal1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":108,"listed_count":0,"created_at":"Tue - Aug 11 08:25:30 +0000 2020","favourites_count":181,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Wed - Mar 23 15:57:34 +0000 2022","id":1506661440924622849,"id_str":"1506661440924622849","text":"@UnitedStandMUFC - @LaurensJulien When manchester city hired pep did he has premier experience - or did klopp has premi\u2026 https:\/\/t.co\/sIcvFJLuuo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnitedStandMUFC","name":"The - United Stand","id":2613992689,"id_str":"2613992689","indices":[0,16]},{"screen_name":"LaurensJulien","name":"Julien - Laurens","id":233533968,"id_str":"233533968","indices":[17,31]}],"urls":[{"url":"https:\/\/t.co\/sIcvFJLuuo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506661440924622849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506602161760882695,"in_reply_to_status_id_str":"1506602161760882695","in_reply_to_user_id":2613992689,"in_reply_to_user_id_str":"2613992689","in_reply_to_screen_name":"UnitedStandMUFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293103343708131328\/7_70D7fz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293103343708131328\/7_70D7fz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213770240460345345,"id_str":"1213770240460345345","name":"Abdi - Samatar","screen_name":"Abdi_ghelle","location":"","description":"Somali unionist - \nstudied gahayr University of Somalia faculty of law passionate for advocating - a peaceful solution among Somalia''s conflict and rest of Africa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":806,"friends_count":2830,"listed_count":1,"created_at":"Sun - Jan 05 10:33:05 +0000 2020","favourites_count":13044,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3150,"lang":null,"status":{"created_at":"Sat - Mar 26 10:35:54 +0000 2022","id":1507667654793998348,"id_str":"1507667654793998348","text":"RT - @InaHassan3: Since last night I was following some accounts that is trying - to start a tribal war between Somalis. Here is few of them @H\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"InaHassan3","name":"Saladin - \ud83c\uddf8\ud83c\uddf4\ud83c\udf1f\ud83d\udd4b\u270d\ufe0f","id":917592218,"id_str":"917592218","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:54:10 +0000 2022","id":1507460859563548677,"id_str":"1507460859563548677","text":"Since - last night I was following some accounts that is trying to start a tribal - war between Somalis. Here is few of\u2026 https:\/\/t.co\/C1tXXiQMvC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1tXXiQMvC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507460859563548677","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":40,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501189967137185792\/gND5gCCc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501189967137185792\/gND5gCCc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241366942943973377,"id_str":"1241366942943973377","name":"angryworldcitizen","screen_name":"angryworldciti","location":"","description":"Politics - | Natsec | Medicine | Basic respect for humans - All views my own or borrowed - from intellectually superior beings #freepalestine \ud83c\uddf5\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":816,"listed_count":0,"created_at":"Sat - Mar 21 14:12:05 +0000 2020","favourites_count":16019,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":419,"lang":null,"status":{"created_at":"Sun - Feb 13 09:13:03 +0000 2022","id":1492788901668429825,"id_str":"1492788901668429825","text":"RT - @BashirMirrah: 6\/6 PhD rejections\ud83d\ude2d. Feel so disheartened and inadequate. - If this feeling lasts, not sure I\u2019d be motivated enough to reap\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BashirMirrah","name":"Mirrah - Bashir","id":1335469590910996480,"id_str":"1335469590910996480","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 12 09:13:00 +0000 2022","id":1492426500766932993,"id_str":"1492426500766932993","text":"6\/6 - PhD rejections\ud83d\ude2d. Feel so disheartened and inadequate. If this feeling - lasts, not sure I\u2019d be motivated enough t\u2026 https:\/\/t.co\/tU8hcxNaAM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tU8hcxNaAM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492426500766932993","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":1859,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":98,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253695899701821440\/daQvID7q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253695899701821440\/daQvID7q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1314166502514397186,"id_str":"1314166502514397186","name":"jayy","screen_name":"SarasotaPerry","location":"St - Petersburg, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":903,"listed_count":1,"created_at":"Thu - Oct 08 11:31:35 +0000 2020","favourites_count":788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1724,"lang":null,"status":{"created_at":"Fri - Aug 27 00:54:05 +0000 2021","id":1431057396705763332,"id_str":"1431057396705763332","text":"RT - @ComplexMusic: Real one, @lilbaby4PF \ud83d\udc4f\ud83d\udeb2\nhttps:\/\/t.co\/G3qC9FGz7e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ComplexMusic","name":"Complex - Music","id":243163874,"id_str":"243163874","indices":[3,16]},{"screen_name":"lilbaby4PF","name":"Lil - Baby","id":816412233488015360,"id_str":"816412233488015360","indices":[28,39]}],"urls":[{"url":"https:\/\/t.co\/G3qC9FGz7e","expanded_url":"https:\/\/www.complex.com\/music\/lil-baby-basketball-court-gives-free-bikes-to-kids-in-atlanta?utm_campaign=musictw&utm_source=twitter.com&utm_medium=social","display_url":"complex.com\/music\/lil-baby\u2026","indices":[43,66]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Aug 26 23:23:43 +0000 2021","id":1431034654912569346,"id_str":"1431034654912569346","text":"Real - one, @lilbaby4PF \ud83d\udc4f\ud83d\udeb2\nhttps:\/\/t.co\/G3qC9FGz7e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lilbaby4PF","name":"Lil - Baby","id":816412233488015360,"id_str":"816412233488015360","indices":[10,21]}],"urls":[{"url":"https:\/\/t.co\/G3qC9FGz7e","expanded_url":"https:\/\/www.complex.com\/music\/lil-baby-basketball-court-gives-free-bikes-to-kids-in-atlanta?utm_campaign=musictw&utm_source=twitter.com&utm_medium=social","display_url":"complex.com\/music\/lil-baby\u2026","indices":[25,48]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":137,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401349717871759363\/knJ00w4X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401349717871759363\/knJ00w4X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314166502514397186\/1616549867","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274739656744153088,"id_str":"1274739656744153088","name":"Jones - chuka","screen_name":"chuka_jones","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":437,"listed_count":2,"created_at":"Sun - Jun 21 16:23:41 +0000 2020","favourites_count":450,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":400,"lang":null,"status":{"created_at":"Sat - Mar 12 19:27:27 +0000 2022","id":1502727993898196994,"id_str":"1502727993898196994","text":"@mrmacaronii - 3098967589\nFirst bank \nOyaa ohh boss. \nNa hat trick Ronaldo score ohh \ud83e\udd2d\ud83e\udd2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrmacaronii","name":"MrMacaroni","id":302413828,"id_str":"302413828","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1502642373016395779,"in_reply_to_status_id_str":"1502642373016395779","in_reply_to_user_id":302413828,"in_reply_to_user_id_str":"302413828","in_reply_to_screen_name":"mrmacaronii","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332366714936365058\/QG62t3Nr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332366714936365058\/QG62t3Nr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":281896775,"id_str":"281896775","name":"much","screen_name":"Muchohi","location":"Kenya","description":"One - step at a time...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":128,"listed_count":0,"created_at":"Thu - Apr 14 05:34:18 +0000 2011","favourites_count":3852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1053,"lang":null,"status":{"created_at":"Sun - Mar 20 10:46:12 +0000 2022","id":1505495920191934464,"id_str":"1505495920191934464","text":"RT - @regina_isaack: My 4yr old son is in URGENT need of blood group A+ for a surgery - to be performed. We are admitted at the COPTIC hospital\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"regina_isaack","name":"Wambui. - K","id":1376544582939344898,"id_str":"1376544582939344898","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 20:02:28 +0000 2022","id":1505273519562706957,"id_str":"1505273519562706957","text":"My - 4yr old son is in URGENT need of blood group A+ for a surgery to be performed. - We are admitted at the COPTIC hos\u2026 https:\/\/t.co\/TuDHfJ1Rf1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TuDHfJ1Rf1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505273519562706957","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2228,"favorite_count":2220,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2228,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228334089167626243\/pn_XrIzh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228334089167626243\/pn_XrIzh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":808474530813509636,"id_str":"808474530813509636","name":"\u2728e - r i n\u2728","screen_name":"erin_allwood","location":"Cardiff, Wales","description":"\u26a1\ufe0f\u26a1\ufe0fIn - a world of yes men, be a no woman\u26a1\ufe0f\u26a1\ufe0f Writer \ud83c\udf19 - \ud83d\udcabshe\/her \ud83c\udf31","url":"https:\/\/t.co\/j33KkKkzVm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j33KkKkzVm","expanded_url":"https:\/\/www.indiependent.co.uk\/documentary-review-dont-go-gentle-idles\/","display_url":"indiependent.co.uk\/documentary-re\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":632,"listed_count":1,"created_at":"Tue - Dec 13 00:52:03 +0000 2016","favourites_count":2893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":306,"lang":null,"status":{"created_at":"Thu - Jan 13 15:57:08 +0000 2022","id":1481656570111053827,"id_str":"1481656570111053827","text":"RT - @alexander_olly: 179 people complained i was too sexy !!! gonna aim for 200 - next time \ud83d\ude0c https:\/\/t.co\/0wzUL9gu5I via @MetroUK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alexander_olly","name":"olly - alexander","id":1345516880,"id_str":"1345516880","indices":[3,18]},{"screen_name":"MetroUK","name":"Metro","id":138749160,"id_str":"138749160","indices":[119,127]}],"urls":[{"url":"https:\/\/t.co\/0wzUL9gu5I","expanded_url":"https:\/\/metro.co.uk\/2022\/01\/12\/bbc-respond-after-years-years-nye-concert-hit-with-179-complaints-15905874\/?ito=article.mweb.share.top.twitter","display_url":"metro.co.uk\/2022\/01\/12\/bbc\u2026","indices":[91,114]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 12 17:56:49 +0000 2022","id":1481324302284865547,"id_str":"1481324302284865547","text":"179 - people complained i was too sexy !!! gonna aim for 200 next time \ud83d\ude0c - https:\/\/t.co\/0wzUL9gu5I via @MetroUK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MetroUK","name":"Metro","id":138749160,"id_str":"138749160","indices":[99,107]}],"urls":[{"url":"https:\/\/t.co\/0wzUL9gu5I","expanded_url":"https:\/\/metro.co.uk\/2022\/01\/12\/bbc-respond-after-years-years-nye-concert-hit-with-179-complaints-15905874\/?ito=article.mweb.share.top.twitter","display_url":"metro.co.uk\/2022\/01\/12\/bbc\u2026","indices":[71,94]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":336,"favorite_count":8237,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":336,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352041358517743619\/bnW8J-o8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352041358517743619\/bnW8J-o8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/808474530813509636\/1544918184","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":595849205,"id_str":"595849205","name":"frozen_nogurt","screen_name":"NogaBaruch","location":"","description":"Full - time law student and learner of being a better human","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":407,"listed_count":0,"created_at":"Thu - May 31 21:38:55 +0000 2012","favourites_count":1219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":89,"lang":null,"status":{"created_at":"Sat - Jan 23 15:00:36 +0000 2021","id":1352994647786754053,"id_str":"1352994647786754053","text":"@ooh_she_Creole - Mensch on a Bench","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ooh_she_Creole","name":"Pisces - 2\/22.Veteran.MPA.HR","id":1142530959927140352,"id_str":"1142530959927140352","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1352756851386036227,"in_reply_to_status_id_str":"1352756851386036227","in_reply_to_user_id":1142530959927140352,"in_reply_to_user_id_str":"1142530959927140352","in_reply_to_screen_name":"ooh_she_Creole","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242138636679819270\/ctL8UMV8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242138636679819270\/ctL8UMV8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/595849205\/1578577019","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":92672203,"id_str":"92672203","name":"Mariana - Raphael","screen_name":"marianaraphael_","location":"Washington, DC","description":"Public - Affairs | Public Policy @Georgetown | RR.II. @ITAM_mx | @PJCOMEXI | RT \u2260 - Endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":716,"friends_count":1226,"listed_count":9,"created_at":"Thu - Nov 26 03:06:43 +0000 2009","favourites_count":3778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6595,"lang":null,"status":{"created_at":"Wed - Mar 09 01:41:09 +0000 2022","id":1501372485148848131,"id_str":"1501372485148848131","text":"RT - @Fer_Caso: Algunos mensajes de la marcha #8M https:\/\/t.co\/ClLp0uNoob","truncated":false,"entities":{"hashtags":[{"text":"8M","indices":[44,47]}],"symbols":[],"user_mentions":[{"screen_name":"Fer_Caso","name":"Fernanda - Caso","id":142401402,"id_str":"142401402","indices":[3,12]}],"urls":[],"media":[{"id":1501343188442779655,"id_str":"1501343188442779655","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1501343348426039298,"source_status_id_str":"1501343348426039298","source_user_id":142401402,"source_user_id_str":"142401402"}]},"extended_entities":{"media":[{"id":1501343188442779655,"id_str":"1501343188442779655","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1501343348426039298,"source_status_id_str":"1501343348426039298","source_user_id":142401402,"source_user_id_str":"142401402"},{"id":1501343188451090441,"id_str":"1501343188451090441","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOmUYAkou6e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOmUYAkou6e.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1501343348426039298,"source_status_id_str":"1501343348426039298","source_user_id":142401402,"source_user_id_str":"142401402"},{"id":1501343188824428544,"id_str":"1501343188824428544","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrP_VEAAvJhN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrP_VEAAvJhN.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1501343348426039298,"source_status_id_str":"1501343348426039298","source_user_id":142401402,"source_user_id_str":"142401402"},{"id":1501343188811800592,"id_str":"1501343188811800592","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrP8UYBA-EEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrP8UYBA-EEJ.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1501343348426039298,"source_status_id_str":"1501343348426039298","source_user_id":142401402,"source_user_id_str":"142401402"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 23:45:22 +0000 2022","id":1501343348426039298,"id_str":"1501343348426039298","text":"Algunos - mensajes de la marcha #8M https:\/\/t.co\/ClLp0uNoob","truncated":false,"entities":{"hashtags":[{"text":"8M","indices":[30,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501343188442779655,"id_str":"1501343188442779655","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501343188442779655,"id_str":"1501343188442779655","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOkVkAc4FE5.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}},{"id":1501343188451090441,"id_str":"1501343188451090441","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrOmUYAkou6e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrOmUYAkou6e.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}},{"id":1501343188824428544,"id_str":"1501343188824428544","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrP_VEAAvJhN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrP_VEAAvJhN.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}},{"id":1501343188811800592,"id_str":"1501343188811800592","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXXrP8UYBA-EEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXXrP8UYBA-EEJ.jpg","url":"https:\/\/t.co\/ClLp0uNoob","display_url":"pic.twitter.com\/ClLp0uNoob","expanded_url":"https:\/\/twitter.com\/Fer_Caso\/status\/1501343348426039298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":428,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":117,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449111945047650304\/RXsIrC2F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449111945047650304\/RXsIrC2F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92672203\/1586304472","profile_link_color":"CC2D7A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1257731165341040640,"id_str":"1257731165341040640","name":"Sanjay - Chawla","screen_name":"SanjayC77212941","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":190,"listed_count":0,"created_at":"Tue - May 05 17:57:47 +0000 2020","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Thu - Sep 09 07:59:25 +0000 2021","id":1435875476355141633,"id_str":"1435875476355141633","text":"https:\/\/t.co\/E6Yo4cXFBA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E6Yo4cXFBA","expanded_url":"https:\/\/www.instagram.com\/p\/CTl0OWeoP2I\/?utm_medium=share_sheet","display_url":"instagram.com\/p\/CTl0OWeoP2I\/\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257731497655754758\/T-CYYUUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257731497655754758\/T-CYYUUl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":922452126013493253,"id_str":"922452126013493253","name":"Calvin","screen_name":"CalvinSmith1939","location":"Youngsville, - LA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":742,"listed_count":0,"created_at":"Mon - Oct 23 13:18:19 +0000 2017","favourites_count":239,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Sun - Nov 10 11:49:25 +0000 2019","id":1193495875131256834,"id_str":"1193495875131256834","text":"@Travistritt - @LSUfootball @AlabamaFTBL Yes it is Travis.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Travistritt","name":"Travis - Tritt","id":63769373,"id_str":"63769373","indices":[0,12]},{"screen_name":"LSUfootball","name":"LSU - Football","id":137396575,"id_str":"137396575","indices":[13,25]},{"screen_name":"AlabamaFTBL","name":"Alabama - Football","id":350508156,"id_str":"350508156","indices":[26,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1193323719323791362,"in_reply_to_status_id_str":"1193323719323791362","in_reply_to_user_id":63769373,"in_reply_to_user_id_str":"63769373","in_reply_to_screen_name":"Travistritt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/976166170675040256\/5VSgwzkg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/976166170675040256\/5VSgwzkg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957782867563737090,"id_str":"957782867563737090","name":"Ms. - LoveLace","screen_name":"Lovelaceportia","location":"","description":"#God#Lovelace# - Sometimes, Its just a bend and not an end, lets stay Focused.","url":"https:\/\/t.co\/ibm2y3d12z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ibm2y3d12z","expanded_url":"https:\/\/themiccgroup.com\/","display_url":"themiccgroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":224,"friends_count":363,"listed_count":0,"created_at":"Mon - Jan 29 01:10:05 +0000 2018","favourites_count":14122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Sun - Nov 29 06:27:59 +0000 2020","id":1332934314430967809,"id_str":"1332934314430967809","text":"RT - @EQUITYSEEKER: We sacrifice our health in order to make wealth, then we sacrifice - our wealth in order to get back our health.\n\nDalai Lama","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EQUITYSEEKER","name":"Voice - of Silence","id":543189670,"id_str":"543189670","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 28 13:29:42 +0000 2020","id":1332678051981824005,"id_str":"1332678051981824005","text":"We - sacrifice our health in order to make wealth, then we sacrifice our wealth - in order to get back our health.\n\nDalai Lama","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":310,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":77,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273569653500137473\/EwhEwouh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273569653500137473\/EwhEwouh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957782867563737090\/1605703489","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1227904949352370176,"id_str":"1227904949352370176","name":"Chima - Okoro","screen_name":"ChimaOk74639619","location":"","description":"I like - being myself and standing in the truth, do the right thing every day because - that is what everyone needs, be nice to people and help the one u can,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1518,"friends_count":3713,"listed_count":0,"created_at":"Thu - Feb 13 10:40:04 +0000 2020","favourites_count":1497,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46436,"lang":null,"status":{"created_at":"Wed - Mar 23 22:37:28 +0000 2022","id":1506762076726910980,"id_str":"1506762076726910980","text":"RT - @EmekaGift100: How Nigeria govt abducted UK citizen in Nairobi, tortured him - & extraordinarily rendition him to Nigeria \n\nDuring the tor\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmekaGift100","name":"Emeka - Gift Official","id":1455938622515974146,"id_str":"1455938622515974146","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:35:40 +0000 2022","id":1506761625382137860,"id_str":"1506761625382137860","text":"How - Nigeria govt abducted UK citizen in Nairobi, tortured him & extraordinarily - rendition him to Nigeria \n\nDuring t\u2026 https:\/\/t.co\/CU1NbXJBSx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CU1NbXJBSx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506761625382137860","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":27,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":79,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477385799960248322\/F9bEvmS2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477385799960248322\/F9bEvmS2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52793484,"id_str":"52793484","name":"Emma - Kamau","screen_name":"kanuthu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":332,"listed_count":0,"created_at":"Wed - Jul 01 17:40:39 +0000 2009","favourites_count":1153,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266842083777789953\/83go0JKN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266842083777789953\/83go0JKN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288160524195201024,"id_str":"1288160524195201024","name":"averek","screen_name":"averek2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":100,"listed_count":1,"created_at":"Tue - Jul 28 17:13:05 +0000 2020","favourites_count":177,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Nov 05 05:44:05 +0000 2021","id":1456497527155576836,"id_str":"1456497527155576836","text":"RT - @_Trader21_: Kiedy w Australii po raz kolejny p\u0142on\u0119\u0142y lasy, - \u015bwiat zamar\u0142. Kiedy w Australii zwykli obywatele pozbawiani s\u0105 - podstawowych\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_Trader21_","name":"Independent - Trader","id":1322286133,"id_str":"1322286133","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 04 11:24:34 +0000 2021","id":1456220824340414465,"id_str":"1456220824340414465","text":"Kiedy - w Australii po raz kolejny p\u0142on\u0119\u0142y lasy, \u015bwiat zamar\u0142. - Kiedy w Australii zwykli obywatele pozbawiani s\u0105 podst\u2026 https:\/\/t.co\/iqwls36c0t","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iqwls36c0t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1456220824340414465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":231,"favorite_count":605,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pl"},"is_quote_status":false,"retweet_count":231,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456497709469290496\/bK_89T9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456497709469290496\/bK_89T9b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1157730134528548864,"id_str":"1157730134528548864","name":"Linda - Lamb","screen_name":"LindaLa23623844","location":"","description":"I''m an - artist ok","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":262,"friends_count":824,"listed_count":2,"created_at":"Sat - Aug 03 19:09:08 +0000 2019","favourites_count":55516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10930,"lang":null,"status":{"created_at":"Wed - Jun 30 16:16:49 +0000 2021","id":1410271112118902786,"id_str":"1410271112118902786","text":"@Federic36190868 - \ud83c\udf52\u2665\ufe0f\ud83c\udfd9\ud83e\udd14\ud83c\udf70","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Federic36190868","name":"Fede.","id":963419555380039680,"id_str":"963419555380039680","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1410162010365566982,"in_reply_to_status_id_str":"1410162010365566982","in_reply_to_user_id":1157730134528548864,"in_reply_to_user_id_str":"1157730134528548864","in_reply_to_screen_name":"LindaLa23623844","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1157730535814389760\/HDon1o81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157730535814389760\/HDon1o81_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":971406999459127296,"id_str":"971406999459127296","name":"AgaWarch","screen_name":"AgaWarch","location":"Flower - Mound, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":461,"listed_count":0,"created_at":"Wed - Mar 07 15:27:31 +0000 2018","favourites_count":1705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Tue - Nov 10 00:37:00 +0000 2020","id":1325960617203798017,"id_str":"1325960617203798017","text":"@WojSadurski - U mnie nie dziala, z komorki, w Stanach \ud83e\udd37\ud83c\udffb\u200d\u2640\ufe0f - Zaden","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WojSadurski","name":"Wojciech - Sadurski","id":885122050464993282,"id_str":"885122050464993282","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325952909851308032,"in_reply_to_status_id_str":"1325952909851308032","in_reply_to_user_id":885122050464993282,"in_reply_to_user_id_str":"885122050464993282","in_reply_to_screen_name":"WojSadurski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":993902099921547266,"id_str":"993902099921547266","name":"Georgie","screen_name":"Georgie30844257","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":768,"listed_count":0,"created_at":"Tue - May 08 17:15:01 +0000 2018","favourites_count":12864,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1448,"lang":null,"status":{"created_at":"Sat - Mar 26 04:24:20 +0000 2022","id":1507574147915956226,"id_str":"1507574147915956226","text":"RT - @BorisJohnson_MP: Spot the difference: https:\/\/t.co\/bw5Mu9JOd0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BorisJohnson_MP","name":"Parody - Boris Johnson","id":955157661212987392,"id_str":"955157661212987392","indices":[3,19]}],"urls":[],"media":[{"id":1507260978387378176,"id_str":"1507260978387378176","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":543,"resize":"fit"},"small":{"w":437,"h":543,"resize":"fit"},"medium":{"w":437,"h":543,"resize":"fit"}},"source_status_id":1507260982854393857,"source_status_id_str":"1507260982854393857","source_user_id":955157661212987392,"source_user_id_str":"955157661212987392"}]},"extended_entities":{"media":[{"id":1507260978387378176,"id_str":"1507260978387378176","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":543,"resize":"fit"},"small":{"w":437,"h":543,"resize":"fit"},"medium":{"w":437,"h":543,"resize":"fit"}},"source_status_id":1507260982854393857,"source_status_id_str":"1507260982854393857","source_user_id":955157661212987392,"source_user_id_str":"955157661212987392"},{"id":1507260980472033282,"id_str":"1507260980472033282","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd4DzXsAI6B6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd4DzXsAI6B6u.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":958,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":958,"resize":"fit"},"small":{"w":410,"h":680,"resize":"fit"}},"source_status_id":1507260982854393857,"source_status_id_str":"1507260982854393857","source_user_id":955157661212987392,"source_user_id_str":"955157661212987392"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:39:56 +0000 2022","id":1507260982854393857,"id_str":"1507260982854393857","text":"Spot - the difference: https:\/\/t.co\/bw5Mu9JOd0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507260978387378176,"id_str":"1507260978387378176","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":543,"resize":"fit"},"small":{"w":437,"h":543,"resize":"fit"},"medium":{"w":437,"h":543,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507260978387378176,"id_str":"1507260978387378176","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd38CWYAAQLpI.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":543,"resize":"fit"},"small":{"w":437,"h":543,"resize":"fit"},"medium":{"w":437,"h":543,"resize":"fit"}}},{"id":1507260980472033282,"id_str":"1507260980472033282","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrd4DzXsAI6B6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrd4DzXsAI6B6u.jpg","url":"https:\/\/t.co\/bw5Mu9JOd0","display_url":"pic.twitter.com\/bw5Mu9JOd0","expanded_url":"https:\/\/twitter.com\/BorisJohnson_MP\/status\/1507260982854393857\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":958,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":958,"resize":"fit"},"small":{"w":410,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2152,"favorite_count":16327,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2152,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":815788324476616704,"id_str":"815788324476616704","name":"Mr - Phenomenal( Donell Payne Bambo)","screen_name":"PayneBambo","location":"Pretoria, - South Africa","description":"Be Phenomenal or Be Forgotten. \u201cUndistorted - The Distorted\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":310,"friends_count":4403,"listed_count":0,"created_at":"Mon - Jan 02 05:14:27 +0000 2017","favourites_count":5028,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5327,"lang":null,"status":{"created_at":"Fri - Mar 25 17:56:02 +0000 2022","id":1507416030452535296,"id_str":"1507416030452535296","text":"\ud83d\udcab\u2764\ufe0f\ud83d\udcab\u2764\ufe0f\ud83d\udcab\n#ParkerMcKennaPosey - From My Wife And Kids & Her Beautiful Family! #KadyKyle https:\/\/t.co\/5EU1gna3Zi","truncated":false,"entities":{"hashtags":[{"text":"ParkerMcKennaPosey","indices":[8,27]},{"text":"KadyKyle","indices":[78,87]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507416024823574537,"id_str":"1507416024823574537","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtq41BXMAkBedw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtq41BXMAkBedw.jpg","url":"https:\/\/t.co\/5EU1gna3Zi","display_url":"pic.twitter.com\/5EU1gna3Zi","expanded_url":"https:\/\/twitter.com\/PayneBambo\/status\/1507416030452535296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507416024823574537,"id_str":"1507416024823574537","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtq41BXMAkBedw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtq41BXMAkBedw.jpg","url":"https:\/\/t.co\/5EU1gna3Zi","display_url":"pic.twitter.com\/5EU1gna3Zi","expanded_url":"https:\/\/twitter.com\/PayneBambo\/status\/1507416030452535296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378330412364218374\/C4P9Sek8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378330412364218374\/C4P9Sek8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295670038834425857,"id_str":"1295670038834425857","name":"abajonaty","screen_name":"Jonaty9","location":"Biafra","description":"Freedom - For BIAFRA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":68,"listed_count":0,"created_at":"Tue - Aug 18 10:33:36 +0000 2020","favourites_count":415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Tue - May 18 08:35:39 +0000 2021","id":1394572379792285697,"id_str":"1394572379792285697","text":"Not - funny https:\/\/t.co\/JCmMkrwOJr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JCmMkrwOJr","expanded_url":"https:\/\/twitter.com\/MaziNnamdiKanu\/status\/1394295712414765056","display_url":"twitter.com\/MaziNnamdiKanu\u2026","indices":[10,33]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1394295712414765056,"quoted_status_id_str":"1394295712414765056","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295754225151025158\/sgiJgFQ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295754225151025158\/sgiJgFQ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295670038834425857\/1599059844","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1030636426537431043,"id_str":"1030636426537431043","name":"G","screen_name":"thisfoolG","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":518,"listed_count":0,"created_at":"Sat - Aug 18 02:04:07 +0000 2018","favourites_count":17752,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1095,"lang":null,"status":{"created_at":"Sat - Mar 19 06:49:14 +0000 2022","id":1505073894746734595,"id_str":"1505073894746734595","text":"RT - @avvitchx: literally everyone involved in this https:\/\/t.co\/dmT72c2KqE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"avvitchx","name":"awy","id":350815613,"id_str":"350815613","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 14:41:42 +0000 2022","id":1504830408059666434,"id_str":"1504830408059666434","text":"literally - everyone involved in this https:\/\/t.co\/6NxsE8pnwT https:\/\/t.co\/dmT72c2KqE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6NxsE8pnwT","expanded_url":"https:\/\/twitter.com\/WrittenByHanna\/status\/1504310113552715782","display_url":"twitter.com\/WrittenByHanna\u2026","indices":[36,59]}],"media":[{"id":1504830367299432450,"id_str":"1504830367299432450","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504830367299432450\/pu\/img\/FN_aQpBxVjeUZep2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504830367299432450\/pu\/img\/FN_aQpBxVjeUZep2.jpg","url":"https:\/\/t.co\/dmT72c2KqE","display_url":"pic.twitter.com\/dmT72c2KqE","expanded_url":"https:\/\/twitter.com\/avvitchx\/status\/1504830408059666434\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":480,"h":852,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504830367299432450,"id_str":"1504830367299432450","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504830367299432450\/pu\/img\/FN_aQpBxVjeUZep2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504830367299432450\/pu\/img\/FN_aQpBxVjeUZep2.jpg","url":"https:\/\/t.co\/dmT72c2KqE","display_url":"pic.twitter.com\/dmT72c2KqE","expanded_url":"https:\/\/twitter.com\/avvitchx\/status\/1504830408059666434\/video\/1","type":"video","sizes":{"large":{"w":480,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":480,"h":852,"resize":"fit"}},"video_info":{"aspect_ratio":[40,71],"duration_millis":44046,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504830367299432450\/pu\/vid\/320x568\/Vo-mFwh61blO9LLj.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504830367299432450\/pu\/pl\/p46iFe0ZOMfQ-eQ_.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504830367299432450\/pu\/vid\/480x852\/_rmJmIKT4AmKI-Y_.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504310113552715782,"quoted_status_id_str":"1504310113552715782","retweet_count":85373,"favorite_count":405537,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504310113552715782,"quoted_status_id_str":"1504310113552715782","retweet_count":85373,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1249644324427575301\/eRs5puuI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1249644324427575301\/eRs5puuI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030636426537431043\/1590866556","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":755030318826991616,"id_str":"755030318826991616","name":"Bird","screen_name":"Vlo5Bird","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":77,"listed_count":0,"created_at":"Mon - Jul 18 13:23:50 +0000 2016","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Mon - Feb 21 01:28:32 +0000 2022","id":1495571107076001792,"id_str":"1495571107076001792","text":"https:\/\/t.co\/MYw3dw3GEt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MYw3dw3GEt","expanded_url":"https:\/\/twitter.com\/i\/topics\/1256236649253449729","display_url":"twitter.com\/i\/topics\/12562\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835934648215683072,"id_str":"835934648215683072","name":"Jules - G","screen_name":"Elvis95G","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":603,"listed_count":0,"created_at":"Sun - Feb 26 19:28:45 +0000 2017","favourites_count":6463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Thu - Mar 17 21:54:03 +0000 2022","id":1504576825867096073,"id_str":"1504576825867096073","text":"RT - @Amy_Siskind: Boycott these companies financing Putin\u2019s terrorism: the - Koch Industries (Brawny paper towels, Dixie cups, Quilted Northe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Amy_Siskind","name":"Amy - Siskind \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":15976705,"id_str":"15976705","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 12:47:29 +0000 2022","id":1504439276318208001,"id_str":"1504439276318208001","text":"Boycott - these companies financing Putin\u2019s terrorism: the Koch Industries (Brawny - paper towels, Dixie cups, Quilted\u2026 https:\/\/t.co\/uQXFQLDWyA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uQXFQLDWyA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504439276318208001","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2046,"favorite_count":3548,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2046,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1056288171607109632\/561Ic_ZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1056288171607109632\/561Ic_ZA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":528292002,"id_str":"528292002","name":"Angry - Citizen \ud83c\uddf9\ud83c\uddff","screen_name":"HamadHamis","location":"Kigoma, - Tanzania","description":"#WARNING: \nTweets contains opinions that may offend - | Conspiracy Theorist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5874,"friends_count":3403,"listed_count":17,"created_at":"Sun - Mar 18 08:21:27 +0000 2012","favourites_count":85175,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62993,"lang":null,"status":{"created_at":"Sat - Mar 26 05:30:05 +0000 2022","id":1507590693962895367,"id_str":"1507590693962895367","text":"RT - @AbedaDocrat: \"Never think you can choose better for yourself than ALLAH - can. It is He who created you; it is He who knows what is best\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AbedaDocrat","name":"ALLAH''S - BEAUTY \u0639\u0627\u0628\u062f\u0629","id":328541805,"id_str":"328541805","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:20:57 +0000 2022","id":1507588392699277312,"id_str":"1507588392699277312","text":"\"Never - think you can choose better for yourself than ALLAH can. It is He who created - you; it is He who knows what is best for you.\u201dA\u2665","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":518,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":76,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391348302591889411\/vL7cU2VH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391348302591889411\/vL7cU2VH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528292002\/1584289758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831914671989018628,"id_str":"831914671989018628","name":"Leo","screen_name":"Leool13","location":"Cork, - Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":646,"listed_count":0,"created_at":"Wed - Feb 15 17:14:48 +0000 2017","favourites_count":2288,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Tue - Mar 22 14:32:59 +0000 2022","id":1506277767196860418,"id_str":"1506277767196860418","text":"RT - @CBC_rugby: A big day out 2moro with our JCT squad in action in @Munsterrugby - Junior Cup Final\n\n\ud83d\udd34\ud83d\udfe1\u26ab\ufe0f CBC v \u26ab\ufe0f\u26aa\ufe0f\ud83d\udfe3 - @pbcrugby\n\ud83c\udfdf Musgrave Pa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBC_rugby","name":"CBC - Rugby","id":2800480986,"id_str":"2800480986","indices":[3,13]},{"screen_name":"Munsterrugby","name":"Munster - Rugby","id":21858860,"id_str":"21858860","indices":[67,80]},{"screen_name":"pbcrugby","name":"Pres - Rugby\u2122","id":2367255112,"id_str":"2367255112","indices":[116,125]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 13:36:24 +0000 2022","id":1506263528906309642,"id_str":"1506263528906309642","text":"A - big day out 2moro with our JCT squad in action in @Munsterrugby Junior Cup - Final\n\n\ud83d\udd34\ud83d\udfe1\u26ab\ufe0f CBC v \u26ab\ufe0f\u26aa\ufe0f\ud83d\udfe3 - @pbcrugby\n\ud83c\udfdf Mu\u2026 https:\/\/t.co\/E13tFqM3DD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Munsterrugby","name":"Munster - Rugby","id":21858860,"id_str":"21858860","indices":[52,65]},{"screen_name":"pbcrugby","name":"Pres - Rugby\u2122","id":2367255112,"id_str":"2367255112","indices":[101,110]}],"urls":[{"url":"https:\/\/t.co\/E13tFqM3DD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506263528906309642","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":56,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1061551737822240769\/V3nGvz7r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061551737822240769\/V3nGvz7r_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206681081824632833,"id_str":"1206681081824632833","name":"Alpha - Gatsby","screen_name":"realOppongPrinx","location":"Kumasi, Ghana","description":"Undergraduate - of the Uni. of Education, Winneba || Real Madrid FC || Asante Kotoko SC || - Kumerican || CR7 || \ud83d\udc10","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":1004,"listed_count":0,"created_at":"Mon - Dec 16 21:03:06 +0000 2019","favourites_count":1190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":252,"lang":null,"status":{"created_at":"Sat - Jan 08 19:05:50 +0000 2022","id":1479892118097350662,"id_str":"1479892118097350662","text":"@hdplusghana - Cameroon \ud83c\udde8\ud83c\uddf2 #AFCON2022 #FeeliFeeli","truncated":false,"entities":{"hashtags":[{"text":"AFCON2022","indices":[25,35]},{"text":"FeeliFeeli","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"hdplusghana","name":"HD - PLUS GHANA","id":1304506424697982985,"id_str":"1304506424697982985","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1479863892067115018,"in_reply_to_status_id_str":"1479863892067115018","in_reply_to_user_id":1304506424697982985,"in_reply_to_user_id_str":"1304506424697982985","in_reply_to_screen_name":"hdplusghana","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474715656612458496\/QPKjib1X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474715656612458496\/QPKjib1X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1206681081824632833\/1640434587","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":734393111724576768,"id_str":"734393111724576768","name":"nightmare","screen_name":"livinona1prayer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":37,"friends_count":2608,"listed_count":0,"created_at":"Sun - May 22 14:38:57 +0000 2016","favourites_count":2963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/963386562242367488\/ZEGWL_MH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963386562242367488\/ZEGWL_MH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2218270434,"id_str":"2218270434","name":"p.a.n.i.s.o.u.l","screen_name":"pberium","location":"Dar - es Salaam, Tanzania","description":"Hey there! I am using This App. \"The - function of man is to live not to exist. I shall not waste my days trying - to prolong them. I shall use my time.\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1917,"friends_count":944,"listed_count":0,"created_at":"Wed - Nov 27 18:50:35 +0000 2013","favourites_count":4825,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":661,"lang":null,"status":{"created_at":"Sun - Mar 20 20:59:21 +0000 2022","id":1505650221522558985,"id_str":"1505650221522558985","text":"@Frankbishashara - @Mcvicious2008 @George_Ambangil Itakua hamfahamu vizuri \ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Frankbishashara","name":"Bishashara - \ud83d\ude4f","id":1249944919520796677,"id_str":"1249944919520796677","indices":[0,16]},{"screen_name":"Mcvicious2008","name":"Vivalence_","id":930002875366993920,"id_str":"930002875366993920","indices":[17,31]},{"screen_name":"George_Ambangil","name":"George - Ambangile","id":4110587662,"id_str":"4110587662","indices":[32,48]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505649837110444037,"in_reply_to_status_id_str":"1505649837110444037","in_reply_to_user_id":1249944919520796677,"in_reply_to_user_id_str":"1249944919520796677","in_reply_to_screen_name":"Frankbishashara","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455611602225541123\/-KjeJ3eZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455611602225541123\/-KjeJ3eZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2218270434\/1607015885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":885601548339998724,"id_str":"885601548339998724","name":"Jon","screen_name":"MrWorldwide7221","location":"Hales - Corners, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":2347,"listed_count":0,"created_at":"Thu - Jul 13 20:47:17 +0000 2017","favourites_count":941,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93,"lang":null,"status":{"created_at":"Thu - Dec 31 22:51:25 +0000 2020","id":1344778214091206657,"id_str":"1344778214091206657","text":"@MaraGay - Thank you for writing and sharing this article, @MaraGay! It is a glimmer - of hope in what has otherwise be\u2026 https:\/\/t.co\/sQVTipV16U","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaraGay","name":"Mara - Gay","id":38428725,"id_str":"38428725","indices":[0,8]},{"screen_name":"MaraGay","name":"Mara - Gay","id":38428725,"id_str":"38428725","indices":[57,65]}],"urls":[{"url":"https:\/\/t.co\/sQVTipV16U","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1344778214091206657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1344669128037179394,"in_reply_to_status_id_str":"1344669128037179394","in_reply_to_user_id":38428725,"in_reply_to_user_id_str":"38428725","in_reply_to_screen_name":"MaraGay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186282119385014272\/VzCj-OAA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186282119385014272\/VzCj-OAA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/885601548339998724\/1571666673","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1192074441703866369,"id_str":"1192074441703866369","name":"MrsSeedz","screen_name":"MrsSeedz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":283,"listed_count":0,"created_at":"Wed - Nov 06 13:41:21 +0000 2019","favourites_count":5515,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":739,"lang":null,"status":{"created_at":"Mon - Mar 21 03:46:07 +0000 2022","id":1505752589563953155,"id_str":"1505752589563953155","text":"Has - he not crossed the proverbial redline yet? #StandWithUkraine #StopPutinNOW - #PutinsWar","truncated":false,"entities":{"hashtags":[{"text":"StandWithUkraine","indices":[47,64]},{"text":"StopPutinNOW","indices":[65,78]},{"text":"PutinsWar","indices":[79,89]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192074776249978880\/R0FrODV__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192074776249978880\/R0FrODV__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":64622068,"id_str":"64622068","name":"Kasi - C.","screen_name":"Pianobirdy","location":"Kentucky, USA","description":"Retired - state government employee and grateful grandmother. Civility is key. Life - is too short - be mindful of each precious moment. \ud83c\udfb6 *No DMs, please.* - \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2244,"friends_count":4121,"listed_count":19,"created_at":"Tue - Aug 11 04:12:52 +0000 2009","favourites_count":76530,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25554,"lang":null,"status":{"created_at":"Thu - Jul 01 06:45:33 +0000 2021","id":1410489738222518272,"id_str":"1410489738222518272","text":"RT - @KatieOGrady4: OUR ENTIRE TOWN IS GONE\nhttps:\/\/t.co\/Uv6P0fj3nT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KatieOGrady4","name":"Katie - O Grady","id":1114712562,"id_str":"1114712562","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/Uv6P0fj3nT","expanded_url":"https:\/\/www.cbc.ca\/amp\/1.6085919?__twitter_impression=true","display_url":"cbc.ca\/amp\/1.6085919?\u2026","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 01 04:32:15 +0000 2021","id":1410456191873003520,"id_str":"1410456191873003520","text":"OUR - ENTIRE TOWN IS GONE\nhttps:\/\/t.co\/Uv6P0fj3nT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Uv6P0fj3nT","expanded_url":"https:\/\/www.cbc.ca\/amp\/1.6085919?__twitter_impression=true","display_url":"cbc.ca\/amp\/1.6085919?\u2026","indices":[24,47]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":254,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":118,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFEC7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593360913782206464\/t2tN95xS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593360913782206464\/t2tN95xS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64622068\/1430304383","profile_link_color":"9DC9AC","profile_sidebar_border_color":"FF4E50","profile_sidebar_fill_color":"919167","profile_text_color":"E1F5C4","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1166965368373612544,"id_str":"1166965368373612544","name":"Maurice - Kirk","screen_name":"MauriceKirk17","location":"Doha","description":"A father,manager - kirk family Investment,staunch,entrepreneur,son of God,I have a goal to inspire - one million people","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":403,"listed_count":0,"created_at":"Thu - Aug 29 06:48:09 +0000 2019","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Tue - Nov 03 15:47:33 +0000 2020","id":1323653045947944960,"id_str":"1323653045947944960","text":"@HEBobiwine - Therez tym for everything. Their tym is soon comin","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HEBobiwine","name":"BOBI - WINE","id":1573440108,"id_str":"1573440108","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1321658486497910785,"in_reply_to_status_id_str":"1321658486497910785","in_reply_to_user_id":1573440108,"in_reply_to_user_id_str":"1573440108","in_reply_to_screen_name":"HEBobiwine","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312706285612171266\/CtKIiltN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312706285612171266\/CtKIiltN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166965368373612544\/1600615699","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1103421003408031745,"id_str":"1103421003408031745","name":"Gerald - kayondo","screen_name":"geraldkayondo19","location":"Kampala, Uganda","description":"#Station - manager at petro(U) kasenyi.\n#Former supervisor at petro(U) nyanama.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":387,"friends_count":2616,"listed_count":0,"created_at":"Wed - Mar 06 22:24:02 +0000 2019","favourites_count":38415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"status":{"created_at":"Wed - Jan 26 12:00:09 +0000 2022","id":1486307970396868613,"id_str":"1486307970396868613","text":"@arindaela - Me eating","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arindaela","name":"Arinda\ud83e\udd40","id":1434519385570521092,"id_str":"1434519385570521092","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1486256327974342658,"in_reply_to_status_id_str":"1486256327974342658","in_reply_to_user_id":1434519385570521092,"in_reply_to_user_id_str":"1434519385570521092","in_reply_to_screen_name":"arindaela","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197725004420521984\/dndg9t6A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197725004420521984\/dndg9t6A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1103421003408031745\/1596567044","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":899555445060370432,"id_str":"899555445060370432","name":"Macberth - Nyangwaira","screen_name":"kingmacbee","location":"Zvishavane Town","description":"News - Reality TV Movies Technology & Science Arts & Culture Literature Government - & Politics Gov Officials & Agencies Games Music Politics Country Weather sports","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":310,"listed_count":0,"created_at":"Mon - Aug 21 08:55:05 +0000 2017","favourites_count":468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Dec 10 18:11:45 +0000 2020","id":1337097687825608705,"id_str":"1337097687825608705","text":"RT - @captainkembo: Win a Liverpool FC Christmas bundle! #LFC #LFCComps @LFC https:\/\/t.co\/FzrIKPTi3F","truncated":false,"entities":{"hashtags":[{"text":"LFC","indices":[55,59]},{"text":"LFCComps","indices":[60,69]}],"symbols":[],"user_mentions":[{"screen_name":"captainkembo","name":"Prosper - Kembo","id":721361396580151297,"id_str":"721361396580151297","indices":[3,16]},{"screen_name":"LFC","name":"Liverpool - FC","id":19583545,"id_str":"19583545","indices":[70,74]}],"urls":[{"url":"https:\/\/t.co\/FzrIKPTi3F","expanded_url":"https:\/\/competitions.liverpoolfc.com\/campaigns\/fff439b2-c13f-412a-8cae-f6dc3c85a297\/win-a-liverpool-fc-christmas-bundle?a=ZTRkN2Q2ZjMtNGFiZi00YTU2LTlmODItYWU1ZTAwNmQxNTllOnR3aXR0ZXI6ZmZmNDM5YjItYzEzZi00MTJhLThjYWUtZjZkYzNjODVhMjk3OjI4MTFlY2VhYTRiZjliMzMzNTk0MjRiNjA3MGJlODBm","display_url":"competitions.liverpoolfc.com\/campaigns\/fff4\u2026","indices":[75,98]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 09 18:57:13 +0000 2020","id":1336746740972711937,"id_str":"1336746740972711937","text":"Win - a Liverpool FC Christmas bundle! #LFC #LFCComps @LFC https:\/\/t.co\/FzrIKPTi3F","truncated":false,"entities":{"hashtags":[{"text":"LFC","indices":[37,41]},{"text":"LFCComps","indices":[42,51]}],"symbols":[],"user_mentions":[{"screen_name":"LFC","name":"Liverpool - FC","id":19583545,"id_str":"19583545","indices":[52,56]}],"urls":[{"url":"https:\/\/t.co\/FzrIKPTi3F","expanded_url":"https:\/\/competitions.liverpoolfc.com\/campaigns\/fff439b2-c13f-412a-8cae-f6dc3c85a297\/win-a-liverpool-fc-christmas-bundle?a=ZTRkN2Q2ZjMtNGFiZi00YTU2LTlmODItYWU1ZTAwNmQxNTllOnR3aXR0ZXI6ZmZmNDM5YjItYzEzZi00MTJhLThjYWUtZjZkYzNjODVhMjk3OjI4MTFlY2VhYTRiZjliMzMzNTk0MjRiNjA3MGJlODBm","display_url":"competitions.liverpoolfc.com\/campaigns\/fff4\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899910975964549121\/YTwMTyK3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899910975964549121\/YTwMTyK3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235585168766668802,"id_str":"1235585168766668802","name":"Nikhil","screen_name":"NikhilInddl","location":"New - Delhi, India","description":"Project manager","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":383,"listed_count":0,"created_at":"Thu - Mar 05 15:18:02 +0000 2020","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Thu - Jun 25 14:56:30 +0000 2020","id":1276167391202938880,"id_str":"1276167391202938880","text":"https:\/\/t.co\/jmEuwG4SeA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1276167346697224192,"id_str":"1276167346697224192","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EbXbcL3XQAA49Cl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EbXbcL3XQAA49Cl.jpg","url":"https:\/\/t.co\/jmEuwG4SeA","display_url":"pic.twitter.com\/jmEuwG4SeA","expanded_url":"https:\/\/twitter.com\/NikhilInddl\/status\/1276167391202938880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1276167346697224192,"id_str":"1276167346697224192","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EbXbcL3XQAA49Cl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EbXbcL3XQAA49Cl.jpg","url":"https:\/\/t.co\/jmEuwG4SeA","display_url":"pic.twitter.com\/jmEuwG4SeA","expanded_url":"https:\/\/twitter.com\/NikhilInddl\/status\/1276167391202938880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274021593719599104\/6Dmd6Abp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274021593719599104\/6Dmd6Abp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1208100204731404293,"id_str":"1208100204731404293","name":"Loko","screen_name":"Loko95642768","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":242,"listed_count":0,"created_at":"Fri - Dec 20 19:02:15 +0000 2019","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - May 30 16:41:17 +0000 2020","id":1266771674655064065,"id_str":"1266771674655064065","text":"RT - @nytimes: \"We know that Central Park itself is built on land formerly owned - by a free black community,\" said Taja-Nia Y. Henderson, a pr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - May 30 16:38:24 +0000 2020","id":1266770948210020352,"id_str":"1266770948210020352","text":"\"We - know that Central Park itself is built on land formerly owned by a free black - community,\" said Taja-Nia Y. Hend\u2026 https:\/\/t.co\/KhsAgeHOCp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KhsAgeHOCp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1266770948210020352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":172,"favorite_count":655,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":172,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180116074416803840,"id_str":"1180116074416803840","name":"Emeka - Collins","screen_name":"EmekaCo87899374","location":"Lagos . Nigeria","description":"CEO - .EMEKA COLLINS MEDICINE STORES","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":134,"listed_count":0,"created_at":"Fri - Oct 04 13:43:17 +0000 2019","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Sun - Feb 21 18:12:37 +0000 2021","id":1363552220831223809,"id_str":"1363552220831223809","text":"RT - @renoomokri: Retweet if you like my #BuhariTormentor cap. Maybe you may just - get one. https:\/\/t.co\/pSVSmqXWkK","truncated":false,"entities":{"hashtags":[{"text":"BuhariTormentor","indices":[39,55]}],"symbols":[],"user_mentions":[{"screen_name":"renoomokri","name":"Reno - Omokri","id":264248576,"id_str":"264248576","indices":[3,14]}],"urls":[],"media":[{"id":1363205080334413828,"id_str":"1363205080334413828","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","url":"https:\/\/t.co\/pSVSmqXWkK","display_url":"pic.twitter.com\/pSVSmqXWkK","expanded_url":"https:\/\/twitter.com\/renoomokri\/status\/1363205085430439944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":656,"h":714,"resize":"fit"},"large":{"w":656,"h":714,"resize":"fit"}},"source_status_id":1363205085430439944,"source_status_id_str":"1363205085430439944","source_user_id":264248576,"source_user_id_str":"264248576"}]},"extended_entities":{"media":[{"id":1363205080334413828,"id_str":"1363205080334413828","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","url":"https:\/\/t.co\/pSVSmqXWkK","display_url":"pic.twitter.com\/pSVSmqXWkK","expanded_url":"https:\/\/twitter.com\/renoomokri\/status\/1363205085430439944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":656,"h":714,"resize":"fit"},"large":{"w":656,"h":714,"resize":"fit"}},"source_status_id":1363205085430439944,"source_status_id_str":"1363205085430439944","source_user_id":264248576,"source_user_id_str":"264248576"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 20 19:13:14 +0000 2021","id":1363205085430439944,"id_str":"1363205085430439944","text":"Retweet - if you like my #BuhariTormentor cap. Maybe you may just get one. https:\/\/t.co\/pSVSmqXWkK","truncated":false,"entities":{"hashtags":[{"text":"BuhariTormentor","indices":[23,39]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1363205080334413828,"id_str":"1363205080334413828","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","url":"https:\/\/t.co\/pSVSmqXWkK","display_url":"pic.twitter.com\/pSVSmqXWkK","expanded_url":"https:\/\/twitter.com\/renoomokri\/status\/1363205085430439944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":656,"h":714,"resize":"fit"},"large":{"w":656,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1363205080334413828,"id_str":"1363205080334413828","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EusTzElXMAQhxxG.jpg","url":"https:\/\/t.co\/pSVSmqXWkK","display_url":"pic.twitter.com\/pSVSmqXWkK","expanded_url":"https:\/\/twitter.com\/renoomokri\/status\/1363205085430439944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":656,"h":714,"resize":"fit"},"large":{"w":656,"h":714,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3213,"favorite_count":4332,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3213,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223306284776161280\/SP_KMSb5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223306284776161280\/SP_KMSb5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":488444532,"id_str":"488444532","name":"Bruce - Itai Chimani","screen_name":"NdinonziBruce","location":"Canfield, OH","description":"Geppetto - put me together. My strings lead to God. \ud83d\ude4f\ud83c\udffe\ud83c\uddff\ud83c\uddfc","url":"https:\/\/t.co\/GVUXf0N3Un","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GVUXf0N3Un","expanded_url":"http:\/\/www.thebibletalksysu.org","display_url":"thebibletalksysu.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1409,"friends_count":2296,"listed_count":7,"created_at":"Fri - Feb 10 13:21:35 +0000 2012","favourites_count":18362,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7760,"lang":null,"status":{"created_at":"Fri - Mar 25 14:22:04 +0000 2022","id":1507362182471823390,"id_str":"1507362182471823390","text":"RT - @drtonyevans: Love is never to be divorced from truth. You don\u2019t excuse - truth in order to maintain love. You speak truth in a way that d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drtonyevans","name":"Tony - Evans","id":32150862,"id_str":"32150862","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:20:02 +0000 2022","id":1507361672276684801,"id_str":"1507361672276684801","text":"Love - is never to be divorced from truth. You don\u2019t excuse truth in order to - maintain love. You speak truth in a way\u2026 https:\/\/t.co\/1BiKVVkArB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1BiKVVkArB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507361672276684801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":419,"favorite_count":1546,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":419,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402604774579658752\/SGYodEuC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402604774579658752\/SGYodEuC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488444532\/1633833326","profile_link_color":"FAB81E","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2268196168,"id_str":"2268196168","name":"Aidan - Maloney","screen_name":"aidan_maloney30","location":"North Carolina, USA","description":"ASU - 22''","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":95,"friends_count":138,"listed_count":0,"created_at":"Wed - Jan 08 05:06:07 +0000 2014","favourites_count":11062,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/895816513185353728\/vHwpk5Q4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/895816513185353728\/vHwpk5Q4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2268196168\/1525641522","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":166344201,"id_str":"166344201","name":"Pulse - Productions","screen_name":"pulsesantacruz","location":"Santa Cruz, CA","description":"Celebrating - 3,600 shows and 38 years bringing World Renowned Musicians and Entertainment - to Santa Cruz. Follow us to get our event tweets.","url":"http:\/\/www.pulseproductions.net","entities":{"url":{"urls":[{"url":"http:\/\/www.pulseproductions.net","expanded_url":null,"indices":[0,31]}]},"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":1154,"listed_count":28,"created_at":"Tue - Jul 13 22:53:30 +0000 2010","favourites_count":163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":947,"lang":null,"status":{"created_at":"Sat - Mar 26 04:15:29 +0000 2022","id":1507571920014770178,"id_str":"1507571920014770178","text":"TIG - NOTARO \"Hello Again\" Tour \nSaturday, April 30th, 2022 Rio Theatre!\nEmmy - and Grammy-nominated stand-up comedian,\u2026 https:\/\/t.co\/B09fh8LJe8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/B09fh8LJe8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507571920014770178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077585070\/pulse_logo_colr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077585070\/pulse_logo_colr_normal.jpg","profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3644025316,"id_str":"3644025316","name":"Claudio - O","screen_name":"OmagariClaudio","location":"Sao Paulo, Brazil","description":"Room9 - Investments, trader and investor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":600,"listed_count":0,"created_at":"Sun - Sep 13 16:42:38 +0000 2015","favourites_count":2276,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1561,"lang":null,"status":{"created_at":"Mon - Nov 08 01:53:49 +0000 2021","id":1457526742856474624,"id_str":"1457526742856474624","text":"RT - @CNBCi: Trump''s former energy secretary claims Biden''s policies could lead - to ''disaster'' https:\/\/t.co\/OwJCHZBSiL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNBCi","name":"CNBC - International","id":19898168,"id_str":"19898168","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/OwJCHZBSiL","expanded_url":"https:\/\/cnb.cx\/3BQW22B","display_url":"cnb.cx\/3BQW22B","indices":[92,115]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 08 01:51:58 +0000 2021","id":1457526274985975815,"id_str":"1457526274985975815","text":"Trump''s - former energy secretary claims Biden''s policies could lead to ''disaster'' - https:\/\/t.co\/OwJCHZBSiL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OwJCHZBSiL","expanded_url":"https:\/\/cnb.cx\/3BQW22B","display_url":"cnb.cx\/3BQW22B","indices":[81,104]}]},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1438894326478688261\/g8aRQ0Wc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1438894326478688261\/g8aRQ0Wc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3644025316\/1591325624","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":511784288,"id_str":"511784288","name":"Southerner","screen_name":"DicksonOsumo","location":"Old - coast Mombasa ","description":"Brother,Son. Financial Analyst.Strong Advocate - for Economic Empowerment.A Red Devil Fan\u26bd.Reject Rejection.","url":"https:\/\/t.co\/mriDzixBDE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mriDzixBDE","expanded_url":"http:\/\/Osumogdickson.co.ke","display_url":"Osumogdickson.co.ke","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":503,"listed_count":0,"created_at":"Fri - Mar 02 11:31:08 +0000 2012","favourites_count":1653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":358,"lang":null,"status":{"created_at":"Sat - Mar 26 04:22:20 +0000 2022","id":1507573643718635527,"id_str":"1507573643718635527","text":"RT - @ledamalekina: Sibling rivalry is very dangerous in politics. 2017 caused - us in #NASA a lot of parliamentary seats we cannot afford to r\u2026","truncated":false,"entities":{"hashtags":[{"text":"NASA","indices":[83,88]}],"symbols":[],"user_mentions":[{"screen_name":"ledamalekina","name":"Sen. - Ledama Olekina","id":2466645955,"id_str":"2466645955","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:43:37 +0000 2022","id":1507458202501369856,"id_str":"1507458202501369856","text":"Sibling - rivalry is very dangerous in politics. 2017 caused us in #NASA a lot of parliamentary - seats we cannot affor\u2026 https:\/\/t.co\/gnivIsb64t","truncated":true,"entities":{"hashtags":[{"text":"NASA","indices":[65,70]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gnivIsb64t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507458202501369856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"01e215db7136a37e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01e215db7136a37e.json","place_type":"city","name":"Nairobi","full_name":"Nairobi, - Kenya","country_code":"KE","country":"Kenya","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[36.6645733,-1.3890532],[37.0626672,-1.3890532],[37.0626672,-1.1606735],[36.6645733,-1.1606735]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":1529,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":171,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303018645505871873\/faZQOz5l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303018645505871873\/faZQOz5l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/511784288\/1590126958","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241189205927170048,"id_str":"1241189205927170048","name":"barb","screen_name":"barb28510952","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":263,"listed_count":0,"created_at":"Sat - Mar 21 02:25:56 +0000 2020","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Thu - Jan 21 01:21:56 +0000 2021","id":1352063850133286913,"id_str":"1352063850133286913","text":"@RepsForBiden - I am","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1352003600290095112,"in_reply_to_status_id_str":"1352003600290095112","in_reply_to_user_id":1221462414744596483,"in_reply_to_user_id_str":"1221462414744596483","in_reply_to_screen_name":"RpsAgainstTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":887881437705232385,"id_str":"887881437705232385","name":"Nilu - Patel","screen_name":"nilup04","location":"Orange County, California ","description":"CRNA - Nurse Anesthesiologist, DNAP. Boy mom. Soccer mom. Clinician. Faculty, Educator. - Advocate. USC Alumni \u270c\ud83c\udffdFoodie. Peleton-er. \ud83c\udfb6 Jamz=Joy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":770,"listed_count":0,"created_at":"Thu - Jul 20 03:46:45 +0000 2017","favourites_count":301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Wed - Feb 10 21:07:03 +0000 2021","id":1359609850687148033,"id_str":"1359609850687148033","text":"@Delta - \ud83d\ude4c\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Delta","name":"Delta","id":5920532,"id_str":"5920532","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1359562778076475394,"in_reply_to_status_id_str":"1359562778076475394","in_reply_to_user_id":5920532,"in_reply_to_user_id_str":"5920532","in_reply_to_screen_name":"Delta","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436117662761840660\/Vp9p7ghD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436117662761840660\/Vp9p7ghD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887881437705232385\/1595369825","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":770919953700687872,"id_str":"770919953700687872","name":"Davie - Malizhi","screen_name":"DavieMalizhi","location":"","description":"Entrepreneur, - engineer, scientist, father.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":2946,"listed_count":1,"created_at":"Wed - Aug 31 09:43:35 +0000 2016","favourites_count":3958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Thu - Mar 24 15:37:21 +0000 2022","id":1507018739367129088,"id_str":"1507018739367129088","text":"RT - @France24_en: \ud83c\udf31 A greener alternative to burial and cremation is - taking root across parts of the #US \ud83c\uddfa\ud83c\uddf8. \n\n\"Terramation\", - or human compo\u2026","truncated":false,"entities":{"hashtags":[{"text":"US","indices":[100,103]}],"symbols":[],"user_mentions":[{"screen_name":"France24_en","name":"FRANCE - 24 English","id":25049056,"id_str":"25049056","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:30:00 +0000 2022","id":1507016891918917633,"id_str":"1507016891918917633","text":"\ud83c\udf31 - A greener alternative to burial and cremation is taking root across parts - of the #US \ud83c\uddfa\ud83c\uddf8. \n\n\"Terramation\", or huma\u2026 https:\/\/t.co\/yl5QIAC3Wv","truncated":true,"entities":{"hashtags":[{"text":"US","indices":[83,86]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yl5QIAC3Wv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507016891918917633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317889215657639939\/znXhj-ho_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317889215657639939\/znXhj-ho_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875372288060911617,"id_str":"875372288060911617","name":"Jennifer\u2764\ud83d\udc95","screen_name":"JenniferBaffou3","location":"Accra, - Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":597,"listed_count":0,"created_at":"Thu - Jun 15 15:19:51 +0000 2017","favourites_count":992,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79,"lang":null,"status":{"created_at":"Mon - Jun 07 07:53:12 +0000 2021","id":1401809451376594948,"id_str":"1401809451376594948","text":"@AlanKyerematen - https:\/\/t.co\/c7t8MyjfZI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlanKyerematen","name":"Alan - John Kyerematen","id":91125642,"id_str":"91125642","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/c7t8MyjfZI","expanded_url":"https:\/\/twitter.com\/JenniferBaffou3\/status\/1401808923859066884","display_url":"twitter.com\/JenniferBaffou\u2026","indices":[16,39]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":91125642,"in_reply_to_user_id_str":"91125642","in_reply_to_screen_name":"AlanKyerematen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1401808923859066884,"quoted_status_id_str":"1401808923859066884","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328246097110773760\/0xn5iQf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328246097110773760\/0xn5iQf4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1443371875,"id_str":"1443371875","name":"\ud835\udd54\ud835\udd52\ud835\udd63\ud835\udd5d","screen_name":"_carlabesnainou","location":"London, - England","description":"hi stalker","url":"https:\/\/t.co\/xPfXoddJMW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xPfXoddJMW","expanded_url":"https:\/\/www.instagram.com\/carlabesnainou\/","display_url":"instagram.com\/carlabesnainou\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":807,"friends_count":2900,"listed_count":3,"created_at":"Mon - May 20 09:50:36 +0000 2013","favourites_count":81052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46018,"lang":null,"status":{"created_at":"Sat - Mar 26 00:34:38 +0000 2022","id":1507516339031846916,"id_str":"1507516339031846916","text":"RT - @Michoucroute_: PTDRRRRRRRR on est dans une dimension parall\u00e8le c pas - possible https:\/\/t.co\/SzTFCW0Myx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Michoucroute_","name":"Michou","id":3398860367,"id_str":"3398860367","indices":[3,17]}],"urls":[],"media":[{"id":1507456603901071390,"id_str":"1507456603901071390","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","url":"https:\/\/t.co\/SzTFCW0Myx","display_url":"pic.twitter.com\/SzTFCW0Myx","expanded_url":"https:\/\/twitter.com\/Michoucroute_\/status\/1507457871616913409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":538,"resize":"fit"},"large":{"w":1170,"h":925,"resize":"fit"},"medium":{"w":1170,"h":925,"resize":"fit"}},"source_status_id":1507457871616913409,"source_status_id_str":"1507457871616913409","source_user_id":3398860367,"source_user_id_str":"3398860367"}]},"extended_entities":{"media":[{"id":1507456603901071390,"id_str":"1507456603901071390","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","url":"https:\/\/t.co\/SzTFCW0Myx","display_url":"pic.twitter.com\/SzTFCW0Myx","expanded_url":"https:\/\/twitter.com\/Michoucroute_\/status\/1507457871616913409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":538,"resize":"fit"},"large":{"w":1170,"h":925,"resize":"fit"},"medium":{"w":1170,"h":925,"resize":"fit"}},"source_status_id":1507457871616913409,"source_status_id_str":"1507457871616913409","source_user_id":3398860367,"source_user_id_str":"3398860367"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:42:18 +0000 2022","id":1507457871616913409,"id_str":"1507457871616913409","text":"PTDRRRRRRRR - on est dans une dimension parall\u00e8le c pas possible https:\/\/t.co\/SzTFCW0Myx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507456603901071390,"id_str":"1507456603901071390","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","url":"https:\/\/t.co\/SzTFCW0Myx","display_url":"pic.twitter.com\/SzTFCW0Myx","expanded_url":"https:\/\/twitter.com\/Michoucroute_\/status\/1507457871616913409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":538,"resize":"fit"},"large":{"w":1170,"h":925,"resize":"fit"},"medium":{"w":1170,"h":925,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507456603901071390,"id_str":"1507456603901071390","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPy13XEB49Oky.jpg","url":"https:\/\/t.co\/SzTFCW0Myx","display_url":"pic.twitter.com\/SzTFCW0Myx","expanded_url":"https:\/\/twitter.com\/Michoucroute_\/status\/1507457871616913409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":538,"resize":"fit"},"large":{"w":1170,"h":925,"resize":"fit"},"medium":{"w":1170,"h":925,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6597,"favorite_count":96463,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":6597,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313857229469241344\/KwJ_l_8T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313857229469241344\/KwJ_l_8T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1443371875\/1588171337","profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2FDE53","profile_text_color":"C4BE78","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1255950337418149888,"id_str":"1255950337418149888","name":"Aggravating - Circumstances","screen_name":"AggravatingCir1","location":"","description":"A - true crime podcast about wrongful convictions. Listen to Aggravating Circumstances - on your favorite listening app. Hidden evidence, wrongful convictions more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":875,"listed_count":2,"created_at":"Thu - Apr 30 20:01:21 +0000 2020","favourites_count":7711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":843,"lang":null,"status":{"created_at":"Sat - Mar 26 00:54:21 +0000 2022","id":1507521302197940225,"id_str":"1507521302197940225","text":"@paigen_cole - Aaaaaaaw \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"paigen_cole","name":"Paige - \u2728","id":1003768132660494343,"id_str":"1003768132660494343","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507451993320828930,"in_reply_to_status_id_str":"1507451993320828930","in_reply_to_user_id":1003768132660494343,"in_reply_to_user_id_str":"1003768132660494343","in_reply_to_screen_name":"paigen_cole","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255950693720043520\/864JalBt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255950693720043520\/864JalBt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":186209938,"id_str":"186209938","name":"gabinchy","screen_name":"gabrielsole123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":227,"friends_count":2089,"listed_count":0,"created_at":"Thu - Sep 02 21:22:11 +0000 2010","favourites_count":281,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3061,"lang":null,"status":{"created_at":"Sun - Feb 13 16:36:39 +0000 2022","id":1492900536617775117,"id_str":"1492900536617775117","text":"@goal - Hmmmmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"goal","name":"GOAL","id":26809005,"id_str":"26809005","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1492898657527635972,"in_reply_to_status_id_str":"1492898657527635972","in_reply_to_user_id":26809005,"in_reply_to_user_id_str":"26809005","in_reply_to_screen_name":"goal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470482538272935936\/dnwfVMDU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470482538272935936\/dnwfVMDU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186209938\/1401006715","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723246007,"id_str":"723246007","name":"Susan - Drinkwater","screen_name":"smdrinkw","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":827,"listed_count":0,"created_at":"Sun - Jul 29 02:49:53 +0000 2012","favourites_count":697,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":194,"lang":null,"status":{"created_at":"Mon - Mar 07 22:43:41 +0000 2022","id":1500965435616940033,"id_str":"1500965435616940033","text":"@rebamunkee - @robgreeneII Exactly!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rebamunkee","name":"Kim - Mitchell","id":199956015,"id_str":"199956015","indices":[0,11]},{"screen_name":"robgreeneII","name":"Dr. - Robert Greene II","id":23681556,"id_str":"23681556","indices":[12,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500826495924813832,"in_reply_to_status_id_str":"1500826495924813832","in_reply_to_user_id":199956015,"in_reply_to_user_id_str":"199956015","in_reply_to_screen_name":"rebamunkee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1103123561613574144\/HGJtnhTE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103123561613574144\/HGJtnhTE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29631981,"id_str":"29631981","name":"Sheasaray - carr","screen_name":"Sheasaray","location":"\u00dcT: 38.906617,-77.033746","description":"One - day at a time","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":1928,"listed_count":1,"created_at":"Wed - Apr 08 03:38:59 +0000 2009","favourites_count":327,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4447,"lang":null,"status":{"created_at":"Sat - Jul 10 13:46:10 +0000 2021","id":1413857080549679110,"id_str":"1413857080549679110","text":"https:\/\/t.co\/OMiBhXSlMr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OMiBhXSlMr","expanded_url":"https:\/\/twitter.com\/cross_s_vision\/status\/1412396090964414465?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1412396090964414465%7Ctwgr%5E%7Ctwcon%5Es1_c10&ref_url=https%3A%2F%2Fd-8509160031854526911.ampproject.net%2F2106182132000%2Fframe.html","display_url":"twitter.com\/cross_s_vision\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1412396090964414465,"quoted_status_id_str":"1412396090964414465","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315097254894669824\/g-gefzlA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315097254894669824\/g-gefzlA_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158995484951945216,"id_str":"1158995484951945216","name":"Jennifer - Shong","screen_name":"JenniferShong2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":55,"listed_count":0,"created_at":"Wed - Aug 07 06:57:11 +0000 2019","favourites_count":92,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Sat - Jan 09 20:31:52 +0000 2021","id":1348004587060555783,"id_str":"1348004587060555783","text":"I - did not support Romney in his Pres. run & frankly was embarrassed by his - behavior at that time in his life. I am\u2026 https:\/\/t.co\/uF0KhVGVMj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uF0KhVGVMj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1348004587060555783","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1347798142645727234,"quoted_status_id_str":"1347798142645727234","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158995744906514432\/BsEmjrv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158995744906514432\/BsEmjrv4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":604463436,"id_str":"604463436","name":"\ud83d\udc81\ud83c\udfff\u200d\u2640\ufe0f","screen_name":"IamYier","location":"Wurundjeri - land~Melbourne,VIC","description":"#Boymom \u262e\ufe0f \u270c\ud83c\udfff\ufe0fBorn - Animist ~ Mostly mindless tweets and #AlternativeFacts...drop knowledge now - and then.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2207,"friends_count":273,"listed_count":4,"created_at":"Sun - Jun 10 09:53:11 +0000 2012","favourites_count":8054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3541,"lang":null,"status":{"created_at":"Fri - Mar 25 22:38:53 +0000 2022","id":1507487212518387714,"id_str":"1507487212518387714","text":"RT - @IAMJHUD: Happy heavenly 80th birthday to the Queen of Soul . https:\/\/t.co\/Kmv9GzRfmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAMJHUD","name":"Jennifer - Hudson","id":33990291,"id_str":"33990291","indices":[3,11]}],"urls":[],"media":[{"id":1507357358661451785,"id_str":"1507357358661451785","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","url":"https:\/\/t.co\/Kmv9GzRfmm","display_url":"pic.twitter.com\/Kmv9GzRfmm","expanded_url":"https:\/\/twitter.com\/IAMJHUD\/status\/1507357791626964994\/video\/1","type":"photo","sizes":{"medium":{"w":1144,"h":776,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1144,"h":776,"resize":"fit"},"small":{"w":680,"h":461,"resize":"fit"}},"source_status_id":1507357791626964994,"source_status_id_str":"1507357791626964994","source_user_id":33990291,"source_user_id_str":"33990291"}]},"extended_entities":{"media":[{"id":1507357358661451785,"id_str":"1507357358661451785","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","url":"https:\/\/t.co\/Kmv9GzRfmm","display_url":"pic.twitter.com\/Kmv9GzRfmm","expanded_url":"https:\/\/twitter.com\/IAMJHUD\/status\/1507357791626964994\/video\/1","type":"video","sizes":{"medium":{"w":1144,"h":776,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1144,"h":776,"resize":"fit"},"small":{"w":680,"h":461,"resize":"fit"}},"source_status_id":1507357791626964994,"source_status_id_str":"1507357791626964994","source_user_id":33990291,"source_user_id_str":"33990291","video_info":{"aspect_ratio":[143,97],"duration_millis":31251,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/pl\/pUtBXnfrx7GBb2uA.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/1060x720\/2uIHio4CV3DRSjCs.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/398x270\/IA6nie-0pfMIGOjp.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/530x360\/3dORysSU8ACDulsd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:04:37 +0000 2022","id":1507357791626964994,"id_str":"1507357791626964994","text":"Happy - heavenly 80th birthday to the Queen of Soul . https:\/\/t.co\/Kmv9GzRfmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507357358661451785,"id_str":"1507357358661451785","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","url":"https:\/\/t.co\/Kmv9GzRfmm","display_url":"pic.twitter.com\/Kmv9GzRfmm","expanded_url":"https:\/\/twitter.com\/IAMJHUD\/status\/1507357791626964994\/video\/1","type":"photo","sizes":{"medium":{"w":1144,"h":776,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1144,"h":776,"resize":"fit"},"small":{"w":680,"h":461,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507357358661451785,"id_str":"1507357358661451785","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507357358661451785\/pu\/img\/2WX2fyqGEHGElaHY.jpg","url":"https:\/\/t.co\/Kmv9GzRfmm","display_url":"pic.twitter.com\/Kmv9GzRfmm","expanded_url":"https:\/\/twitter.com\/IAMJHUD\/status\/1507357791626964994\/video\/1","type":"video","sizes":{"medium":{"w":1144,"h":776,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1144,"h":776,"resize":"fit"},"small":{"w":680,"h":461,"resize":"fit"}},"video_info":{"aspect_ratio":[143,97],"duration_millis":31251,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/pl\/pUtBXnfrx7GBb2uA.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/1060x720\/2uIHio4CV3DRSjCs.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/398x270\/IA6nie-0pfMIGOjp.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507357358661451785\/pu\/vid\/530x360\/3dORysSU8ACDulsd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":755,"favorite_count":4813,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":755,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879624278097801216\/w8n_Gkji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879624278097801216\/w8n_Gkji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/604463436\/1461287107","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165592208889831430,"id_str":"1165592208889831430","name":"Ciaran - Shanley","screen_name":"CiaranShanley1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":510,"listed_count":0,"created_at":"Sun - Aug 25 11:50:23 +0000 2019","favourites_count":22840,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215,"lang":null,"status":{"created_at":"Sat - Mar 12 23:09:13 +0000 2022","id":1502783801809936385,"id_str":"1502783801809936385","text":"@ShaneBeattyNews - Must have as he was so grumpy in post match analysis\/a 4 try win is brilliant - even considering our scrum did not function.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShaneBeattyNews","name":"Shane - Beatty","id":23586614,"id_str":"23586614","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502715946175189001,"in_reply_to_status_id_str":"1502715946175189001","in_reply_to_user_id":23586614,"in_reply_to_user_id_str":"23586614","in_reply_to_screen_name":"ShaneBeattyNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165592742669500417\/KAszGhXU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165592742669500417\/KAszGhXU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3286671212,"id_str":"3286671212","name":"Premnr","screen_name":"premnrtrans","location":"Coimbatore","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":1876,"listed_count":0,"created_at":"Tue - Jul 21 16:24:19 +0000 2015","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":394,"lang":null,"status":{"created_at":"Wed - Jun 30 17:39:26 +0000 2021","id":1410291905229778944,"id_str":"1410291905229778944","text":"RT - @sonaliranade: What no economist or politician has bothered to point out is - that subsidies such as food, fertilizers, and outlay on MNRE\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sonaliranade","name":"SonaliRanade","id":12716032,"id_str":"12716032","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 30 02:48:00 +0000 2021","id":1410067566521815041,"id_str":"1410067566521815041","text":"What - no economist or politician has bothered to point out is that subsidies such - as food, fertilizers, and outlay o\u2026 https:\/\/t.co\/j0yBkyBdpC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j0yBkyBdpC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1410067566521815041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot - for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":412,"favorite_count":761,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":412,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131236401335287808\/ZOItkliU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131236401335287808\/ZOItkliU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":776248185836765184,"id_str":"776248185836765184","name":"Sindho - Wagan","screen_name":"sindhowagan","location":"Pakistan","description":"Entomologist.\nworking - on Insect pest control and managment and insects Genetic.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":12,"friends_count":329,"listed_count":0,"created_at":"Thu - Sep 15 02:36:04 +0000 2016","favourites_count":94,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486719173665312771\/85g7_OSK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486719173665312771\/85g7_OSK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/776248185836765184\/1601597982","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2498917873,"id_str":"2498917873","name":"Arlene - Waksmundzki","screen_name":"ArleneWaksmund3","location":"Crystal Lake, IL.","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":716,"listed_count":1,"created_at":"Fri - May 16 13:28:15 +0000 2014","favourites_count":16921,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3035,"lang":null,"status":{"created_at":"Thu - Mar 24 17:23:31 +0000 2022","id":1507045456857255937,"id_str":"1507045456857255937","text":"RT - @CTAFails: Bad, bad transit day.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CTAFails","name":"CTA - Fails","id":991131145,"id_str":"991131145","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 12:44:48 +0000 2022","id":1506975315813359625,"id_str":"1506975315813359625","text":"Bad, - bad transit day. https:\/\/t.co\/nXJCetUpqb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nXJCetUpqb","expanded_url":"https:\/\/twitter.com\/devinisrad\/status\/1506974270454382596","display_url":"twitter.com\/devinisrad\/sta\u2026","indices":[22,45]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506974270454382596,"quoted_status_id_str":"1506974270454382596","retweet_count":4,"favorite_count":52,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506974270454382596,"quoted_status_id_str":"1506974270454382596","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472020631155875841\/7IQuz0DN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472020631155875841\/7IQuz0DN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2498917873\/1627330055","profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1762732669,"id_str":"1762732669","name":"suzannejovic","screen_name":"suzannejovic","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":232,"listed_count":0,"created_at":"Sat - Sep 07 18:01:17 +0000 2013","favourites_count":1265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Mon - Feb 28 19:01:23 +0000 2022","id":1498372778252283907,"id_str":"1498372778252283907","text":"@strategywoman - Canada. We are praying for you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"strategywoman","name":"Yaroslava - Antipina","id":1364639441604800513,"id_str":"1364639441604800513","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498210146841141256,"in_reply_to_status_id_str":"1498210146841141256","in_reply_to_user_id":1364639441604800513,"in_reply_to_user_id_str":"1364639441604800513","in_reply_to_screen_name":"strategywoman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000425003935\/4facafbcdd8578875fee2628dc6afa65_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000425003935\/4facafbcdd8578875fee2628dc6afa65_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1762732669\/1378577067","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3301358993,"id_str":"3301358993","name":"Thomas - Nielsen","screen_name":"thomasgraack","location":"Copenhagen, Denmark","description":"Writer, - historian, documentarist, anthropologist, and holistic environmentalist - - or something the likes. Let''s just say, passionately human.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":1828,"listed_count":0,"created_at":"Thu - May 28 06:40:49 +0000 2015","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Wed - Jan 19 08:46:06 +0000 2022","id":1483722424894038019,"id_str":"1483722424894038019","text":"@Alternative_Ry - @delewese_tony @laurenboebert That''s what you do everyday. Projection, baby!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Alternative_Ry","name":"Alt-Ry","id":1475342085620305923,"id_str":"1475342085620305923","indices":[0,15]},{"screen_name":"delewese_tony","name":"tony - delewese","id":1396276635624775680,"id_str":"1396276635624775680","indices":[16,30]},{"screen_name":"laurenboebert","name":"Lauren - Boebert","id":1201670995435646976,"id_str":"1201670995435646976","indices":[31,45]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1483654447238578179,"in_reply_to_status_id_str":"1483654447238578179","in_reply_to_user_id":1475342085620305923,"in_reply_to_user_id_str":"1475342085620305923","in_reply_to_screen_name":"Alternative_Ry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961602755927343104\/Nfl-BTOJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961602755927343104\/Nfl-BTOJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301358993\/1593370566","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1010866735,"id_str":"1010866735","name":"Dan - Jones \ud83d\udcf8\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f","screen_name":"DanJonesGlasgow","location":"Glasgow, - Scotland","description":"Second winner of the annual Montgomery Burns award - for outstanding achievement in the field of excellence (He\/him)","url":"https:\/\/t.co\/Of0Y1d3k5Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Of0Y1d3k5Q","expanded_url":"http:\/\/Lightwithalens.picfair.com","display_url":"Lightwithalens.picfair.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3854,"friends_count":4999,"listed_count":41,"created_at":"Fri - Dec 14 10:25:05 +0000 2012","favourites_count":13168,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25171,"lang":null,"status":{"created_at":"Sat - Mar 26 06:54:13 +0000 2022","id":1507611865681207297,"id_str":"1507611865681207297","text":"@sjarmanphoto - Ah, sorry I thought this is what you meant","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sjarmanphoto","name":"Simon - Jarman","id":216939915,"id_str":"216939915","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507611444782587904,"in_reply_to_status_id_str":"1507611444782587904","in_reply_to_user_id":216939915,"in_reply_to_user_id_str":"216939915","in_reply_to_screen_name":"sjarmanphoto","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502591066008080391\/M2Bh_po4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502591066008080391\/M2Bh_po4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1010866735\/1645998807","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2868328246,"id_str":"2868328246","name":"Diebere","screen_name":"Dieberee","location":"Greater - Accra, Ghana","description":"Business mogul, Deals on any kinds of foodstuffs - import and export.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":330,"listed_count":0,"created_at":"Sun - Nov 09 01:56:01 +0000 2014","favourites_count":3449,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1346,"lang":null,"status":{"created_at":"Wed - Feb 16 17:53:13 +0000 2022","id":1494006971200155658,"id_str":"1494006971200155658","text":"RT - @fri_dah_k: follow the fast 50 retweets and likes ! \ud83c\udf3b\ud83c\udf3b\ud83c\udf3b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fri_dah_k","name":"fridahk\ud83d\ude18","id":1280438346616012800,"id_str":"1280438346616012800","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 16 17:52:48 +0000 2022","id":1494006866417913856,"id_str":"1494006866417913856","text":"follow - the fast 50 retweets and likes ! \ud83c\udf3b\ud83c\udf3b\ud83c\udf3b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/cheapbotsdonequick.com\" rel=\"nofollow\"\u003eCheap Bots, - Done Quick!\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":51,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1236612158554877952\/7W7LVKCl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1236612158554877952\/7W7LVKCl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868328246\/1541455268","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":953564790735110144,"id_str":"953564790735110144","name":"Saaondo - Gbanger","screen_name":"SaaondoGbanger","location":"Makurdi, Nigeria","description":"Sticking - to de basics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":433,"listed_count":0,"created_at":"Wed - Jan 17 09:48:57 +0000 2018","favourites_count":1885,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"status":{"created_at":"Thu - Apr 08 08:50:01 +0000 2021","id":1380080478565363712,"id_str":"1380080478565363712","text":"@ManassehShanks - @acefabstar @iam_lubem @joannanwume @Adore_Jaynee @WorldPr18199189 @songyoh1 - @lordebay\u2026 https:\/\/t.co\/0HYIVawVd8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManassehShanks","name":"Shanks - Photography\ud83d\udcf8","id":1287332497328676864,"id_str":"1287332497328676864","indices":[0,15]},{"screen_name":"acefabstar","name":"waywardkid","id":1361064299121283075,"id_str":"1361064299121283075","indices":[16,27]},{"screen_name":"iam_lubem","name":"Big_ben","id":1039180921377878016,"id_str":"1039180921377878016","indices":[28,38]},{"screen_name":"joannanwume","name":"Joannanwume","id":1376608605399552006,"id_str":"1376608605399552006","indices":[39,51]},{"screen_name":"WorldPr18199189","name":"President - Miller \ud83d\udc51\ud83d\udd4a\ufe0f\ud83c\udf31","id":1360364933481959426,"id_str":"1360364933481959426","indices":[66,82]},{"screen_name":"songyoh1","name":"songyoh1","id":2998225390,"id_str":"2998225390","indices":[83,92]},{"screen_name":"lordebay","name":"Moshood - Adebayo","id":1608723757,"id_str":"1608723757","indices":[93,102]}],"urls":[{"url":"https:\/\/t.co\/0HYIVawVd8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1380080478565363712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1379707170942558211,"in_reply_to_status_id_str":"1379707170942558211","in_reply_to_user_id":1287332497328676864,"in_reply_to_user_id_str":"1287332497328676864","in_reply_to_screen_name":"ManassehShanks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1120769909041057793\/1f8QDKBM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1120769909041057793\/1f8QDKBM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953564790735110144\/1556047341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1159079042949140481,"id_str":"1159079042949140481","name":"tresyali","screen_name":"greatmayari","location":"somewhere","description":"trust - the process\u23f3\n\nrhmyrdgtn \u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":54,"friends_count":177,"listed_count":0,"created_at":"Wed - Aug 07 12:29:13 +0000 2019","favourites_count":1403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1779,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476186495228997633\/pUqXoI-s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476186495228997633\/pUqXoI-s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159079042949140481\/1637370851","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":939187204013871104,"id_str":"939187204013871104","name":"Ibrahim - salisu tahir","screen_name":"Ibrahimsalisut7","location":"Kano Nigeria","description":"I - studied civil engineering at kano state polytechnic","url":"https:\/\/t.co\/bBBHv07fvY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bBBHv07fvY","expanded_url":"http:\/\/www.Abba.com","display_url":"Abba.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":243,"listed_count":0,"created_at":"Fri - Dec 08 17:37:33 +0000 2017","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Fri - Apr 30 22:21:44 +0000 2021","id":1388257288075501584,"id_str":"1388257288075501584","text":"@AhmedHKashim - @caramel__queen_ Allah ya kara miki basira","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AhmedHKashim","name":"Ahmed - Hussaini","id":1175823894378352640,"id_str":"1175823894378352640","indices":[0,13]},{"screen_name":"caramel__queen_","name":"pharm-artist - \ud83d\udc8a\ud83e\uddd1\ud83c\udffc\u200d\ud83c\udfa8","id":3083976636,"id_str":"3083976636","indices":[14,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1388161672825774082,"in_reply_to_status_id_str":"1388161672825774082","in_reply_to_user_id":1175823894378352640,"in_reply_to_user_id_str":"1175823894378352640","in_reply_to_screen_name":"AhmedHKashim","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":561835566,"id_str":"561835566","name":"Weston - Blasi","screen_name":"westonblasi","location":"My other other Benz","description":"Reporter - @wsj @marketwatch 10% of the profits from this feed will be donated to charity","url":"https:\/\/t.co\/6WqBZlvAgU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6WqBZlvAgU","expanded_url":"https:\/\/www.marketwatch.com\/author\/weston-blasi","display_url":"marketwatch.com\/author\/weston-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1858,"friends_count":939,"listed_count":28,"created_at":"Tue - Apr 24 05:33:26 +0000 2012","favourites_count":18038,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":14151,"lang":null,"status":{"created_at":"Fri - Mar 25 21:13:53 +0000 2022","id":1507465820603101197,"id_str":"1507465820603101197","text":"@eepdllc - @New_Tape_City The good version of this is Jaylen Brown and Jimmy Butler, - the bad version is a De''Aaron Fo\u2026 https:\/\/t.co\/Kl5TeEkb57","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eepdllc","name":"shannon - ferguson","id":506619994,"id_str":"506619994","indices":[0,8]},{"screen_name":"New_Tape_City","name":"Bankai - \ud83d\udde1","id":1173877808,"id_str":"1173877808","indices":[9,23]}],"urls":[{"url":"https:\/\/t.co\/Kl5TeEkb57","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507465820603101197","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507461697497452548,"in_reply_to_status_id_str":"1507461697497452548","in_reply_to_user_id":506619994,"in_reply_to_user_id_str":"506619994","in_reply_to_screen_name":"eepdllc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245753506860015616\/FXIE6vyg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245753506860015616\/FXIE6vyg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/561835566\/1588193730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1153580964049588224,"id_str":"1153580964049588224","name":"Madan - Pandey","screen_name":"MadanPa06796269","location":"Nepal","description":"Health - assistant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":224,"friends_count":593,"listed_count":0,"created_at":"Tue - Jul 23 08:21:49 +0000 2019","favourites_count":7348,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":295,"lang":null,"status":{"created_at":"Sat - Mar 05 05:22:54 +0000 2022","id":1499978738528059392,"id_str":"1499978738528059392","text":"@Drnavaraj - Ek dum","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Drnavaraj","name":"Nava - Raj Joshi","id":268147282,"id_str":"268147282","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499934540663758853,"in_reply_to_status_id_str":"1499934540663758853","in_reply_to_user_id":268147282,"in_reply_to_user_id_str":"268147282","in_reply_to_screen_name":"Drnavaraj","geo":null,"coordinates":null,"place":{"id":"f1d3a53f8a3cc7e9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f1d3a53f8a3cc7e9.json","place_type":"country","name":"Nepal","full_name":"Nepal","country_code":"NP","country":"Nepal","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[80.0633414,26.3483092],[88.2026997,26.3483092],[88.2026997,30.4333897],[80.0633414,30.4333897]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362317037104599042\/lARenbhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362317037104599042\/lARenbhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1153580964049588224\/1605802103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":337713148,"id_str":"337713148","name":"Ezekiel - Makambi","screen_name":"EMakambi","location":"Nairobi","description":"Supply - Chain Management enthusiast with over 10 years experience in FMCG, oil & gas, - pharmaceutical and construction industry. Consultancy and training guru.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":591,"friends_count":1891,"listed_count":2,"created_at":"Mon - Jul 18 13:28:33 +0000 2011","favourites_count":686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":566,"lang":null,"status":{"created_at":"Tue - Jan 04 21:25:04 +0000 2022","id":1478477604218937347,"id_str":"1478477604218937347","text":"I - do not subscribe to Miguna\u2019s style and approach to important topical - issues but on this one I will stay tuned obj\u2026 https:\/\/t.co\/jnjUFpbr5w","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jnjUFpbr5w","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1478477604218937347","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/675583305849376768\/KjG1Mp4v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675583305849376768\/KjG1Mp4v_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22940445,"id_str":"22940445","name":"Robert - Denby","screen_name":"denbywine","location":"","description":"Recovering \u2018cellist, - out on a limb, buys a lot of wine, occasionally writes about it.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":66,"friends_count":1197,"listed_count":0,"created_at":"Thu - Mar 05 16:35:15 +0000 2009","favourites_count":30586,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/796316791169490944\/ut7zzfqv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/796316791169490944\/ut7zzfqv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299842229004120064,"id_str":"1299842229004120064","name":"Oscar - Wanjala","screen_name":"OscarWa46306461","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":582,"listed_count":0,"created_at":"Sat - Aug 29 22:56:38 +0000 2020","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - Sep 26 16:32:55 +0000 2020","id":1309893724382670851,"id_str":"1309893724382670851","text":"RT - @HarryMaguire93: Still not where we want to be performance wise buts it\u2019s - an important 3 points \ud83d\udcaa\ud83d\udd34\u2764\ufe0f #MUFC https:\/\/t.co\/7wnGIUb9ne","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[104,109]}],"symbols":[],"user_mentions":[{"screen_name":"HarryMaguire93","name":"Harry - Maguire","id":875327508190818307,"id_str":"875327508190818307","indices":[3,18]}],"urls":[],"media":[{"id":1309858738359152640,"id_str":"1309858738359152640","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","url":"https:\/\/t.co\/7wnGIUb9ne","display_url":"pic.twitter.com\/7wnGIUb9ne","expanded_url":"https:\/\/twitter.com\/HarryMaguire93\/status\/1309858744075980800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":1200,"resize":"fit"},"large":{"w":1124,"h":1376,"resize":"fit"},"small":{"w":555,"h":680,"resize":"fit"}},"source_status_id":1309858744075980800,"source_status_id_str":"1309858744075980800","source_user_id":875327508190818307,"source_user_id_str":"875327508190818307"}]},"extended_entities":{"media":[{"id":1309858738359152640,"id_str":"1309858738359152640","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","url":"https:\/\/t.co\/7wnGIUb9ne","display_url":"pic.twitter.com\/7wnGIUb9ne","expanded_url":"https:\/\/twitter.com\/HarryMaguire93\/status\/1309858744075980800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":1200,"resize":"fit"},"large":{"w":1124,"h":1376,"resize":"fit"},"small":{"w":555,"h":680,"resize":"fit"}},"source_status_id":1309858744075980800,"source_status_id_str":"1309858744075980800","source_user_id":875327508190818307,"source_user_id_str":"875327508190818307"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Sep 26 14:13:55 +0000 2020","id":1309858744075980800,"id_str":"1309858744075980800","text":"Still - not where we want to be performance wise buts it\u2019s an important 3 points - \ud83d\udcaa\ud83d\udd34\u2764\ufe0f #MUFC https:\/\/t.co\/7wnGIUb9ne","truncated":false,"entities":{"hashtags":[{"text":"MUFC","indices":[84,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1309858738359152640,"id_str":"1309858738359152640","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","url":"https:\/\/t.co\/7wnGIUb9ne","display_url":"pic.twitter.com\/7wnGIUb9ne","expanded_url":"https:\/\/twitter.com\/HarryMaguire93\/status\/1309858744075980800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":1200,"resize":"fit"},"large":{"w":1124,"h":1376,"resize":"fit"},"small":{"w":555,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1309858738359152640,"id_str":"1309858738359152640","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ei2NlSXWsAAag4a.jpg","url":"https:\/\/t.co\/7wnGIUb9ne","display_url":"pic.twitter.com\/7wnGIUb9ne","expanded_url":"https:\/\/twitter.com\/HarryMaguire93\/status\/1309858744075980800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":1200,"resize":"fit"},"large":{"w":1124,"h":1376,"resize":"fit"},"small":{"w":555,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2686,"favorite_count":51894,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2686,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300868900742201349\/lpuqJa4M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300868900742201349\/lpuqJa4M_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":933536373306548226,"id_str":"933536373306548226","name":"Bashiru - Ja''afar","screen_name":"BashiruJa","location":"Nigeria","description":"I - don''t socialize not because I am anti social, I have no tolerance for drama - and fake personality, Student of Religion, history, politics, and Economics.\ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1103,"friends_count":2656,"listed_count":2,"created_at":"Thu - Nov 23 03:23:10 +0000 2017","favourites_count":28173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5859,"lang":null,"status":{"created_at":"Sat - Mar 26 09:10:08 +0000 2022","id":1507646069987028995,"id_str":"1507646069987028995","text":"RT - @AFP: #BREAKING US President Biden to meet Ukrainian foreign, defence ministers - in Warsaw: White House https:\/\/t.co\/bpJ4uKBnH9","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[9,18]}],"symbols":[],"user_mentions":[{"screen_name":"AFP","name":"AFP - News Agency","id":380648579,"id_str":"380648579","indices":[3,7]}],"urls":[],"media":[{"id":1507644854360322049,"id_str":"1507644854360322049","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","url":"https:\/\/t.co\/bpJ4uKBnH9","display_url":"pic.twitter.com\/bpJ4uKBnH9","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1507645635281014786\/photo\/1","type":"photo","sizes":{"medium":{"w":507,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":256,"resize":"fit"},"large":{"w":507,"h":256,"resize":"fit"}},"source_status_id":1507645635281014786,"source_status_id_str":"1507645635281014786","source_user_id":380648579,"source_user_id_str":"380648579"}]},"extended_entities":{"media":[{"id":1507644854360322049,"id_str":"1507644854360322049","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","url":"https:\/\/t.co\/bpJ4uKBnH9","display_url":"pic.twitter.com\/bpJ4uKBnH9","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1507645635281014786\/photo\/1","type":"photo","sizes":{"medium":{"w":507,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":256,"resize":"fit"},"large":{"w":507,"h":256,"resize":"fit"}},"source_status_id":1507645635281014786,"source_status_id_str":"1507645635281014786","source_user_id":380648579,"source_user_id_str":"380648579"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:08:24 +0000 2022","id":1507645635281014786,"id_str":"1507645635281014786","text":"#BREAKING - US President Biden to meet Ukrainian foreign, defence ministers in Warsaw: - White House https:\/\/t.co\/bpJ4uKBnH9","truncated":false,"entities":{"hashtags":[{"text":"BREAKING","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507644854360322049,"id_str":"1507644854360322049","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","url":"https:\/\/t.co\/bpJ4uKBnH9","display_url":"pic.twitter.com\/bpJ4uKBnH9","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1507645635281014786\/photo\/1","type":"photo","sizes":{"medium":{"w":507,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":256,"resize":"fit"},"large":{"w":507,"h":256,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507644854360322049,"id_str":"1507644854360322049","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOw7AdeXsAEbSVs.png","url":"https:\/\/t.co\/bpJ4uKBnH9","display_url":"pic.twitter.com\/bpJ4uKBnH9","expanded_url":"https:\/\/twitter.com\/AFP\/status\/1507645635281014786\/photo\/1","type":"photo","sizes":{"medium":{"w":507,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":507,"h":256,"resize":"fit"},"large":{"w":507,"h":256,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":391,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":139,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477553483578552322\/RXUe8ycT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477553483578552322\/RXUe8ycT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933536373306548226\/1647878851","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":793408838091374592,"id_str":"793408838091374592","name":"oluwatoyinmomoo","screen_name":"oluwatoyinmomoo","location":"Lagos - Nigeria ","description":"Friendly and Easy going person.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1099,"listed_count":0,"created_at":"Tue - Nov 01 11:06:22 +0000 2016","favourites_count":847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":322,"lang":null,"status":{"created_at":"Wed - Mar 09 17:17:01 +0000 2022","id":1501608004466139140,"id_str":"1501608004466139140","text":"@Naija_PR - My wife","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Naija_PR","name":"Naija","id":1901298962,"id_str":"1901298962","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501533367224999941,"in_reply_to_status_id_str":"1501533367224999941","in_reply_to_user_id":1901298962,"in_reply_to_user_id_str":"1901298962","in_reply_to_screen_name":"Naija_PR","geo":null,"coordinates":null,"place":{"id":"01eddd9d0dbec2c8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01eddd9d0dbec2c8.json","place_type":"city","name":"Ikeja","full_name":"Ikeja, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[3.198942,6.4826762],[3.43719,6.4826762],[3.43719,6.6985461],[3.198942,6.6985461]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349664810951200768\/VIEZF3DE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349664810951200768\/VIEZF3DE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793408838091374592\/1586879081","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":527588699,"id_str":"527588699","name":"Dr - Moosa Wadiwala","screen_name":"moosa_1209","location":"Johannesburg,South - Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":107,"friends_count":1539,"listed_count":1,"created_at":"Sat - Mar 17 15:59:10 +0000 2012","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/734091301952618496\/9pxvVUSF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/734091301952618496\/9pxvVUSF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527588699\/1547209543","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1123035158762811392,"id_str":"1123035158762811392","name":"Jessica - Raymond","screen_name":"Jessica80866560","location":"El Cajon, CA","description":"I\u2019m - a home body at heart. I love to shop, see movies. I work @ Gtm Liquidators - in Santee. I love my job.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":2336,"listed_count":0,"created_at":"Tue - Apr 30 01:23:41 +0000 2019","favourites_count":364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Wed - Oct 13 05:40:16 +0000 2021","id":1448161645260259328,"id_str":"1448161645260259328","text":"Come - back next season@VaughnMugol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250541154434572289\/ed0L1tyT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250541154434572289\/ed0L1tyT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1077189464663851010,"id_str":"1077189464663851010","name":"Dixie watsons","screen_name":"DixieWatsons","location":"Cagayan - De Oro City, Northern Mindanao","description":"dm me mg hatag ku ayuda","url":"https:\/\/t.co\/mduJm8hNXg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mduJm8hNXg","expanded_url":"http:\/\/dixiewats.co.uk","display_url":"dixiewats.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":173,"friends_count":3789,"listed_count":0,"created_at":"Mon - Dec 24 13:09:16 +0000 2018","favourites_count":8316,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4634,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474617245229727747\/TYoz4MtN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474617245229727747\/TYoz4MtN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1077189464663851010\/1559259486","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42586588,"id_str":"42586588","name":"BADER","screen_name":"MOON2O","location":"\u0641\u0648\u0642 - \u0627\u0644\u0646\u062e\u0644","description":"\u0639\u0635\u0631\u0646\u0627 - \u0639\u0635\u0631 \u0627\u0644\u0627\u0634\u062e\u0627\u0635 \u0627\u0644\u0630\u064a\u0646 - \u064a\u0644\u0627\u062d\u0638\u0648\u0646 \u0648\u064a\u0633\u0627\u0644\u0648\u0646 - \u0648\u064a\u0628\u062d\u062b\u0648\u0646 \u0639\u0646 \u0627\u0644\u062d\u0642\u064a\u0642\u0629 - \u0628\u0645\u0648\u0627\u062c\u0647\u0629 \u0645\u062c\u0645\u0648\u0639\u0627\u062a - \u0648\u0627\u0644\u0627\u062a \u0627\u0639\u0644\u0627\u0645\u064a\u0629 - \u0647\u062f\u0641\u0647\u0627 \u062a\u0646\u0648\u064a\u0645 \u0627\u0644\u0646\u0627\u0633 - \u0648\u0627\u0637\u0639\u0627\u0645\u0647\u0645 \u0645\u0639\u0644\u0648\u0645\u0627\u062a - \u0641\u0627\u0633\u062f\u0629","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4837,"friends_count":3052,"listed_count":63,"created_at":"Tue - May 26 08:01:00 +0000 2009","favourites_count":2385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":306608,"lang":null,"status":{"created_at":"Sat - Mar 26 10:45:06 +0000 2022","id":1507669969458368516,"id_str":"1507669969458368516","text":"\u062a\u0633\u0631\u064a\u0628 - : \u0627\u0646\u0636\u0645\u0627\u0645 \u0628\u062f\u0631 \u0627\u0644\u0645\u0637\u0648\u0639 - \u0644\u0645\u0646\u062a\u062e\u0628 \u0627\u0644\u0643\u0648\u064a\u062a - \u0639\u0627\u0645 2300 , \u064a\u0633\u062a\u0627\u0647\u0644 \u0628\u062f\u0631\u0627\u0646 - \u0645\u0627\u064a\u0647\u0645 \u0627\u0644\u0639\u0645\u0631 \u0627\u0647\u0645 - \u0634\u064a \u064a\u0623\u062f\u064a \ud83e\udd23\ud83e\udd23\ud83e\udd23 - https:\/\/t.co\/x2X15oEnTC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507669963754123267,"id_str":"1507669963754123267","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxR2BQXMAMtAoy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxR2BQXMAMtAoy.jpg","url":"https:\/\/t.co\/x2X15oEnTC","display_url":"pic.twitter.com\/x2X15oEnTC","expanded_url":"https:\/\/twitter.com\/MOON2O\/status\/1507669969458368516\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1099,"resize":"fit"},"large":{"w":1200,"h":1099,"resize":"fit"},"small":{"w":680,"h":623,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507669963754123267,"id_str":"1507669963754123267","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxR2BQXMAMtAoy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxR2BQXMAMtAoy.jpg","url":"https:\/\/t.co\/x2X15oEnTC","display_url":"pic.twitter.com\/x2X15oEnTC","expanded_url":"https:\/\/twitter.com\/MOON2O\/status\/1507669969458368516\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1099,"resize":"fit"},"large":{"w":1200,"h":1099,"resize":"fit"},"small":{"w":680,"h":623,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077475761509023744\/ddQfs4pY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077475761509023744\/ddQfs4pY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42586588\/1370634634","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":722556641267302400,"id_str":"722556641267302400","name":"Matthew - reynolds","screen_name":"mattreynolds100","location":"Wales, United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":172,"listed_count":0,"created_at":"Tue - Apr 19 22:45:02 +0000 2016","favourites_count":642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":167,"lang":null,"status":{"created_at":"Thu - Mar 17 11:20:39 +0000 2022","id":1504417425021882370,"id_str":"1504417425021882370","text":"RT - @Amanwy: Subway are among the companies sticking with Russia for profit.\n\nWorth - remembering that when you are peckish","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Amanwy","name":"Lee - Waters MS","id":86805511,"id_str":"86805511","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 06:59:05 +0000 2022","id":1504351601246543873,"id_str":"1504351601246543873","text":"Subway - are among the companies sticking with Russia for profit.\n\nWorth remembering - that when you are peckish https:\/\/t.co\/qWn6EQqfN6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qWn6EQqfN6","expanded_url":"https:\/\/twitter.com\/stratosathens\/status\/1504268300729171969","display_url":"twitter.com\/stratosathens\/\u2026","indices":[109,132]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504268300729171969,"quoted_status_id_str":"1504268300729171969","retweet_count":46,"favorite_count":80,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504268300729171969,"quoted_status_id_str":"1504268300729171969","retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295208500231057409\/_zosro9a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295208500231057409\/_zosro9a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/722556641267302400\/1597636747","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":721560188,"id_str":"721560188","name":"ANYAORIE - OFONAGOROM","screen_name":"ofonagorom","location":"LAGOS","description":"Self - esteem young man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":2202,"listed_count":1,"created_at":"Sat - Jul 28 05:25:49 +0000 2012","favourites_count":5767,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Fri - Feb 19 12:52:47 +0000 2021","id":1362746954619506690,"id_str":"1362746954619506690","text":"@TundeTASH - Data analysis","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TundeTASH","name":"\u2018Tunde - Omotoye","id":194939760,"id_str":"194939760","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1362491865115860995,"in_reply_to_status_id_str":"1362491865115860995","in_reply_to_user_id":194939760,"in_reply_to_user_id_str":"194939760","in_reply_to_screen_name":"TundeTASH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"lt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1387160139665481730\/af5eGFH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1387160139665481730\/af5eGFH3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1422888799,"id_str":"1422888799","name":"Nustalgique","screen_name":"quitebenumbed","location":"","description":"will - not change picture .... now.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":4915,"listed_count":0,"created_at":"Sun - May 12 11:11:56 +0000 2013","favourites_count":184,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8399,"lang":null,"status":{"created_at":"Mon - Mar 21 13:06:33 +0000 2022","id":1505893625120665600,"id_str":"1505893625120665600","text":"RT - @TamerB40582894: \u0627\u0644\u0628\u0646\u0643 \u0627\u0644\u0645\u0631\u0643\u0632\u064a - .. \"\u0627\u0644\u0641\u0644\u0648\u0633 \u0645\u0634 \u0643\u0644 \u062d\u0627\u062c\u0647\" - https:\/\/t.co\/aBqyf27iU7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TamerB40582894","name":"Tamer - B.\u042e\u0440\u0438\u0439","id":1420714972397572096,"id_str":"1420714972397572096","indices":[3,18]}],"urls":[],"media":[{"id":1505815877182275588,"id_str":"1505815877182275588","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","url":"https:\/\/t.co\/aBqyf27iU7","display_url":"pic.twitter.com\/aBqyf27iU7","expanded_url":"https:\/\/twitter.com\/TamerB40582894\/status\/1505815969431707651\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":414,"resize":"fit"},"small":{"w":680,"h":293,"resize":"fit"},"medium":{"w":960,"h":414,"resize":"fit"}},"source_status_id":1505815969431707651,"source_status_id_str":"1505815969431707651","source_user_id":1420714972397572096,"source_user_id_str":"1420714972397572096"}]},"extended_entities":{"media":[{"id":1505815877182275588,"id_str":"1505815877182275588","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","url":"https:\/\/t.co\/aBqyf27iU7","display_url":"pic.twitter.com\/aBqyf27iU7","expanded_url":"https:\/\/twitter.com\/TamerB40582894\/status\/1505815969431707651\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":414,"resize":"fit"},"small":{"w":680,"h":293,"resize":"fit"},"medium":{"w":960,"h":414,"resize":"fit"}},"source_status_id":1505815969431707651,"source_status_id_str":"1505815969431707651","source_user_id":1420714972397572096,"source_user_id_str":"1420714972397572096"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 07:57:58 +0000 2022","id":1505815969431707651,"id_str":"1505815969431707651","text":"\u0627\u0644\u0628\u0646\u0643 - \u0627\u0644\u0645\u0631\u0643\u0632\u064a .. \"\u0627\u0644\u0641\u0644\u0648\u0633 - \u0645\u0634 \u0643\u0644 \u062d\u0627\u062c\u0647\" https:\/\/t.co\/aBqyf27iU7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505815877182275588,"id_str":"1505815877182275588","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","url":"https:\/\/t.co\/aBqyf27iU7","display_url":"pic.twitter.com\/aBqyf27iU7","expanded_url":"https:\/\/twitter.com\/TamerB40582894\/status\/1505815969431707651\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":414,"resize":"fit"},"small":{"w":680,"h":293,"resize":"fit"},"medium":{"w":960,"h":414,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505815877182275588,"id_str":"1505815877182275588","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW7j-iXwAQw3cn.jpg","url":"https:\/\/t.co\/aBqyf27iU7","display_url":"pic.twitter.com\/aBqyf27iU7","expanded_url":"https:\/\/twitter.com\/TamerB40582894\/status\/1505815969431707651\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":414,"resize":"fit"},"small":{"w":680,"h":293,"resize":"fit"},"medium":{"w":960,"h":414,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":237,"favorite_count":697,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":237,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480073523633741824\/FLwT9Cut_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480073523633741824\/FLwT9Cut_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1422888799\/1446745076","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":196947505,"id_str":"196947505","name":"WordPress - + Elementor Web Designer","screen_name":"DeduiceDesigns","location":"Lagos, - Nigeria","description":"Need help expanding your business? Website Design, - eCommerce Store, Brand Development, Social Media Marketing for #SmallBusiness, - #Entrepreneurs, #Individuals","url":"https:\/\/t.co\/ieRfReaR6V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ieRfReaR6V","expanded_url":"https:\/\/www.deduicedesigns.com","display_url":"deduicedesigns.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4878,"friends_count":3432,"listed_count":44,"created_at":"Thu - Sep 30 08:41:38 +0000 2010","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50991,"lang":null,"status":{"created_at":"Fri - Mar 25 15:43:38 +0000 2022","id":1507382710662275096,"id_str":"1507382710662275096","text":"@edanbenatar - @elemntor Absolutely! You can say that again.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"edanbenatar","name":"Edan - Ben-Atar \ud83d\udc12","id":1262720796511940609,"id_str":"1262720796511940609","indices":[0,12]},{"screen_name":"elemntor","name":"Elementor","id":735404105091448832,"id_str":"735404105091448832","indices":[13,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507376537271742465,"in_reply_to_status_id_str":"1507376537271742465","in_reply_to_user_id":1262720796511940609,"in_reply_to_user_id_str":"1262720796511940609","in_reply_to_screen_name":"edanbenatar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453980990850936832\/xStebuYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453980990850936832\/xStebuYH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196947505\/1533142094","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231316565318160385,"id_str":"1231316565318160385","name":"Akanbi - Olawale","screen_name":"AkanbiOlawale19","location":"","description":"Never - settle for less. focused and ready to break limits","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":424,"listed_count":0,"created_at":"Sat - Feb 22 20:35:37 +0000 2020","favourites_count":1386,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":925,"lang":null,"status":{"created_at":"Fri - Mar 25 10:42:47 +0000 2022","id":1507306998651576325,"id_str":"1507306998651576325","text":"Those - who destroyed our past cannot guarantee our future. SOWORE \u2764\ufe0f https:\/\/t.co\/u9SM9TEo5x","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507306990145527821,"id_str":"1507306990145527821","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsHuLMWYA0yA3y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsHuLMWYA0yA3y.jpg","url":"https:\/\/t.co\/u9SM9TEo5x","display_url":"pic.twitter.com\/u9SM9TEo5x","expanded_url":"https:\/\/twitter.com\/AkanbiOlawale19\/status\/1507306998651576325\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":886,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":553,"h":680,"resize":"fit"},"medium":{"w":720,"h":886,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507306990145527821,"id_str":"1507306990145527821","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsHuLMWYA0yA3y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsHuLMWYA0yA3y.jpg","url":"https:\/\/t.co\/u9SM9TEo5x","display_url":"pic.twitter.com\/u9SM9TEo5x","expanded_url":"https:\/\/twitter.com\/AkanbiOlawale19\/status\/1507306998651576325\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":886,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":553,"h":680,"resize":"fit"},"medium":{"w":720,"h":886,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328850061648859138\/fDVk9yjA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328850061648859138\/fDVk9yjA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225724622395625472,"id_str":"1225724622395625472","name":"Matt - B","screen_name":"McBetiat","location":"Accra, Ghana","description":"A researcher - at Tourism Aid Ghana TAG. motivated individual. Determined to conquer the - world. A believer in divinity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":834,"listed_count":1,"created_at":"Fri - Feb 07 10:15:09 +0000 2020","favourites_count":862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":849,"lang":null,"status":{"created_at":"Sat - Mar 26 00:51:54 +0000 2022","id":1507520686545321996,"id_str":"1507520686545321996","text":"@PeprahBarnes - @Kumifrank10Kumi @georgeoaddo @JDMahama He and I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeprahBarnes","name":"citizenkobby","id":1157302662595055616,"id_str":"1157302662595055616","indices":[0,13]},{"screen_name":"Kumifrank10Kumi","name":"FrankayGH\ud83c\uddec\ud83c\udded","id":1435309746,"id_str":"1435309746","indices":[14,30]},{"screen_name":"georgeoaddo","name":"George - Opare Addo, Esq.","id":918206787207262211,"id_str":"918206787207262211","indices":[31,43]},{"screen_name":"JDMahama","name":"John - Dramani Mahama","id":726748106,"id_str":"726748106","indices":[44,53]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507474275233583111,"in_reply_to_status_id_str":"1507474275233583111","in_reply_to_user_id":1157302662595055616,"in_reply_to_user_id_str":"1157302662595055616","in_reply_to_screen_name":"PeprahBarnes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444303231841193989\/4XnU_WdK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444303231841193989\/4XnU_WdK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1225724622395625472\/1614023022","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311090368679538688,"id_str":"1311090368679538688","name":"Julius - | FeIron | DLS \ud83c\udf2a","screen_name":"JuliusLaudinez","location":"San - Jose Del Monte, Central Lu","description":"\ud835\udff0 \ud835\udde6\ud835\ude01\ud835\uddff\ud835\uddf6\ud835\uddfb\ud835\uddf4\ud835\uddf2\ud835\uddff - \ud835\uddd5\ud835\uddee\ud835\ude00\ud835\ude00\ud835\uddf6\ud835\ude00\ud835\ude01 - \ud83d\udccc\n\ud835\udc7a\ud835\udc86\ud835\udc94\ud835\udc94\ud835\udc8a\ud835\udc90\ud835\udc8f\ud835\udc8a\ud835\udc94\ud835\udc95 - \ud835\udc6b\ud835\udc93\ud835\udc96\ud835\udc8e\ud835\udc8e\ud835\udc86\ud835\udc93 - \ud83d\udccc","url":"https:\/\/t.co\/8Yf0cXiIzV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8Yf0cXiIzV","expanded_url":"https:\/\/www.youtube.com\/channel\/UCxDDD_ZqYdbzSBscUYBwwYw","display_url":"youtube.com\/channel\/UCxDDD\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":1003,"listed_count":3,"created_at":"Tue - Sep 29 23:48:14 +0000 2020","favourites_count":16381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1818,"lang":null,"status":{"created_at":"Fri - Mar 25 15:49:05 +0000 2022","id":1507384081310679046,"id_str":"1507384081310679046","text":"RT - @Louiebuii11: @WeAreMetaversal @0xPolygon @YkoAbada @mhelvs12 @NickVelarde23 - @JuliusLaudinez @Svillanueva1989 \nCheerssss Goodluck Everyo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Louiebuii11","name":"Louiebui - !","id":1437381388244639747,"id_str":"1437381388244639747","indices":[3,15]},{"screen_name":"WeAreMetaversal","name":"DAVE - | METAVERSAL INVEST.CRYPTO\ud83e\udd87\ud83d\udd0a","id":1417869927139225609,"id_str":"1417869927139225609","indices":[17,33]},{"screen_name":"0xPolygon","name":"Polygon - | $MATIC \ud83d\udc9c","id":914738730740715521,"id_str":"914738730740715521","indices":[34,44]},{"screen_name":"YkoAbada","name":"Yko - |TeamSatay|DLS\ud83c\udf6c","id":1395347570763862016,"id_str":"1395347570763862016","indices":[45,54]},{"screen_name":"mhelvs12","name":"MEvangelista","id":1447864939352244225,"id_str":"1447864939352244225","indices":[55,64]},{"screen_name":"NickVelarde23","name":"Nick - Velarde","id":1442827445418151940,"id_str":"1442827445418151940","indices":[65,79]},{"screen_name":"JuliusLaudinez","name":"Julius - | FeIron | DLS \ud83c\udf2a","id":1311090368679538688,"id_str":"1311090368679538688","indices":[80,95]},{"screen_name":"Svillanueva1989","name":"Pagong - | TeamAgiw | D''licious (DLS)","id":1427793510984347652,"id_str":"1427793510984347652","indices":[96,112]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:02:57 +0000 2022","id":1506979882974146561,"id_str":"1506979882974146561","text":"@WeAreMetaversal - @0xPolygon @YkoAbada @mhelvs12 @NickVelarde23 @JuliusLaudinez @Svillanueva1989 - \nCheerssss Goodluck Everyone\u2764\ud83d\udcaa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WeAreMetaversal","name":"DAVE - | METAVERSAL INVEST.CRYPTO\ud83e\udd87\ud83d\udd0a","id":1417869927139225609,"id_str":"1417869927139225609","indices":[0,16]},{"screen_name":"0xPolygon","name":"Polygon - | $MATIC \ud83d\udc9c","id":914738730740715521,"id_str":"914738730740715521","indices":[17,27]},{"screen_name":"YkoAbada","name":"Yko - |TeamSatay|DLS\ud83c\udf6c","id":1395347570763862016,"id_str":"1395347570763862016","indices":[28,37]},{"screen_name":"mhelvs12","name":"MEvangelista","id":1447864939352244225,"id_str":"1447864939352244225","indices":[38,47]},{"screen_name":"NickVelarde23","name":"Nick - Velarde","id":1442827445418151940,"id_str":"1442827445418151940","indices":[48,62]},{"screen_name":"JuliusLaudinez","name":"Julius - | FeIron | DLS \ud83c\udf2a","id":1311090368679538688,"id_str":"1311090368679538688","indices":[63,78]},{"screen_name":"Svillanueva1989","name":"Pagong - | TeamAgiw | D''licious (DLS)","id":1427793510984347652,"id_str":"1427793510984347652","indices":[79,95]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506971881848680452,"in_reply_to_status_id_str":"1506971881848680452","in_reply_to_user_id":1417869927139225609,"in_reply_to_user_id_str":"1417869927139225609","in_reply_to_screen_name":"WeAreMetaversal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437721750104535041\/CZ6sMggl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437721750104535041\/CZ6sMggl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311090368679538688\/1615161488","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35969192,"id_str":"35969192","name":"Mathew - Jones","screen_name":"mguyjones","location":"Sydney, New South Wales","description":"Dad, - politics junkie, transplanted Melburnian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":549,"listed_count":8,"created_at":"Tue - Apr 28 03:09:20 +0000 2009","favourites_count":1364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":483,"lang":null,"status":{"created_at":"Tue - Mar 15 03:01:26 +0000 2022","id":1503567017110290434,"id_str":"1503567017110290434","text":"@JohnBirmingham - You\u2019re wrong. It\u2019s the Thompson Twins.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnBirmingham","name":"John - Birmingham","id":28278535,"id_str":"28278535","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503324246050713605,"in_reply_to_status_id_str":"1503324246050713605","in_reply_to_user_id":28278535,"in_reply_to_user_id_str":"28278535","in_reply_to_screen_name":"JohnBirmingham","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280069941392142338\/SygBV04l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280069941392142338\/SygBV04l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35969192\/1594027432","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278943239920185344,"id_str":"1278943239920185344","name":"Judy","screen_name":"Judy70765352","location":"","description":"Retweets - are not necessarily an endorsement. \nViews are mine.\nHate bullying. Love - animals more than people as I get older. Laughter keeps me sane.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":266,"friends_count":453,"listed_count":0,"created_at":"Fri - Jul 03 06:47:00 +0000 2020","favourites_count":95339,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8033,"lang":null,"status":{"created_at":"Sat - Mar 26 09:36:39 +0000 2022","id":1507652743355240454,"id_str":"1507652743355240454","text":"RT - @doctor_oxford: All across the NHS, patients are coming to harm. We *have* - to be honest about this. We have to. Sometimes patients are d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"doctor_oxford","name":"Rachel - Clarke","id":3383159573,"id_str":"3383159573","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:40:17 +0000 2022","id":1507412066738802689,"id_str":"1507412066738802689","text":"All - across the NHS, patients are coming to harm. We *have* to be honest about - this. We have to. Sometimes patients\u2026 https:\/\/t.co\/fHqWYx5o9F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fHqWYx5o9F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507412066738802689","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507410100251774985,"in_reply_to_status_id_str":"1507410100251774985","in_reply_to_user_id":3383159573,"in_reply_to_user_id_str":"3383159573","in_reply_to_screen_name":"doctor_oxford","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":454,"favorite_count":1201,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":454,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415647731771613184\/LI-T-KKT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415647731771613184\/LI-T-KKT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1278943239920185344\/1626350972","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1148514924982931456,"id_str":"1148514924982931456","name":"FELIX - FUACHIE","screen_name":"felix_fuachie","location":"","description":"Looking - up to God","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":865,"listed_count":0,"created_at":"Tue - Jul 09 08:51:11 +0000 2019","favourites_count":3503,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":77,"lang":null,"status":{"created_at":"Thu - Mar 03 08:58:06 +0000 2022","id":1499308119016488964,"id_str":"1499308119016488964","text":"lord - of mercy see us through","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073854886264833\/oAUTMBSN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073854886264833\/oAUTMBSN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1199399459001708544,"id_str":"1199399459001708544","name":"Sikander - Zulqurnain","screen_name":"SikanderZulqu10","location":"Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":1189,"listed_count":0,"created_at":"Tue - Nov 26 18:48:46 +0000 2019","favourites_count":4249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":557,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199399845343191041\/n1RQPhjb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199399845343191041\/n1RQPhjb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1217812439565246464,"id_str":"1217812439565246464","name":"claire - boyack","screen_name":"boyack_claire","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":151,"listed_count":0,"created_at":"Thu - Jan 16 14:14:59 +0000 2020","favourites_count":9365,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Thu - Jan 13 20:00:01 +0000 2022","id":1481717690272256006,"id_str":"1481717690272256006","text":"@CatrinLliar - @AdrianEdmondson Lorks - thank goodness for nepotism.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CatrinLliar","name":"Catrin - Lliar Jones\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f#boosted","id":282277236,"id_str":"282277236","indices":[0,12]},{"screen_name":"AdrianEdmondson","name":"Adrian - Edmondson","id":225420563,"id_str":"225420563","indices":[13,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1481413812452478984,"in_reply_to_status_id_str":"1481413812452478984","in_reply_to_user_id":282277236,"in_reply_to_user_id_str":"282277236","in_reply_to_screen_name":"CatrinLliar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":495742596,"id_str":"495742596","name":"Hani - aladham","screen_name":"AladhamHani","location":" Jordan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":956,"friends_count":1447,"listed_count":2,"created_at":"Sat - Feb 18 08:22:37 +0000 2012","favourites_count":37365,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2599,"lang":null,"status":{"created_at":"Sat - Mar 26 10:44:09 +0000 2022","id":1507669731108601858,"id_str":"1507669731108601858","text":"RT - @Hayadjf: The picture tells you about the extent of the Israeli crime https:\/\/t.co\/JDqtv8krr5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Hayadjf","name":"Haya - \ud83c\uddf5\ud83c\uddf8 Follow Back","id":1506361495646572553,"id_str":"1506361495646572553","indices":[3,11]}],"urls":[],"media":[{"id":1507396103016169479,"id_str":"1507396103016169479","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":509,"resize":"fit"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"}},"source_status_id":1507396129977163784,"source_status_id_str":"1507396129977163784","source_user_id":1506361495646572553,"source_user_id_str":"1506361495646572553"}]},"extended_entities":{"media":[{"id":1507396103016169479,"id_str":"1507396103016169479","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":509,"resize":"fit"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"}},"source_status_id":1507396129977163784,"source_status_id_str":"1507396129977163784","source_user_id":1506361495646572553,"source_user_id_str":"1506361495646572553"},{"id":1507396103624400902,"id_str":"1507396103624400902","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxQxXIAYJo5_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxQxXIAYJo5_.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1507396129977163784,"source_status_id_str":"1507396129977163784","source_user_id":1506361495646572553,"source_user_id_str":"1506361495646572553"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:36:58 +0000 2022","id":1507396129977163784,"id_str":"1507396129977163784","text":"The - picture tells you about the extent of the Israeli crime https:\/\/t.co\/JDqtv8krr5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507396103016169479,"id_str":"1507396103016169479","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":509,"resize":"fit"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507396103016169479,"id_str":"1507396103016169479","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxOgWQAcl4mS.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":509,"resize":"fit"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"}}},{"id":1507396103624400902,"id_str":"1507396103624400902","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtYxQxXIAYJo5_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtYxQxXIAYJo5_.jpg","url":"https:\/\/t.co\/JDqtv8krr5","display_url":"pic.twitter.com\/JDqtv8krr5","expanded_url":"https:\/\/twitter.com\/Hayadjf\/status\/1507396129977163784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2710,"favorite_count":5963,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2710,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160630043497967616\/zJXIlvhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160630043497967616\/zJXIlvhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495742596\/1585929448","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176636347295158272,"id_str":"1176636347295158272","name":"Mahmoud - Taha","screen_name":"Mahmoud_taha74","location":"El Gharbia, Egypt","description":"Freedom - is the best thing in my life. Mechanical engineer MU","url":"https:\/\/t.co\/c88J8FoURk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c88J8FoURk","expanded_url":"https:\/\/www.instagram.com\/invites\/contact\/?i=26aucxiezhkq&utm_content=3j5uwcc","display_url":"instagram.com\/invites\/contac\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":419,"listed_count":0,"created_at":"Tue - Sep 24 23:16:03 +0000 2019","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Fri - Mar 25 15:54:24 +0000 2022","id":1507385419356381210,"id_str":"1507385419356381210","text":"@ibrahimabdgawad - 1\/0 \u0644\u0644\u0633\u0646\u063a\u0627\u0644","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ibrahimabdgawad","name":"Ibrahim - Abdel Gawad","id":281250286,"id_str":"281250286","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507383704204812299,"in_reply_to_status_id_str":"1507383704204812299","in_reply_to_user_id":281250286,"in_reply_to_user_id_str":"281250286","in_reply_to_screen_name":"ibrahimabdgawad","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448381442120163331\/jvbKjGh4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448381442120163331\/jvbKjGh4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1176636347295158272\/1634157362","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1092459921319383040,"id_str":"1092459921319383040","name":"Pdiddyhamms","screen_name":"pdiddyhamms","location":"Kumasi, - Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":341,"friends_count":3601,"listed_count":0,"created_at":"Mon - Feb 04 16:28:36 +0000 2019","favourites_count":6690,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":810,"lang":null,"status":{"created_at":"Wed - Nov 04 08:26:38 +0000 2020","id":1323904473396293633,"id_str":"1323904473396293633","text":"@BcneNipa - @Serwaa_Amihere Foolish Man U get @Serwaa_Amihere 4 ur FAM insyd aaaaa like - by this time u Dey U.S dey vote kwasia ba","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BcneNipa","name":"French - Teacher","id":1217531924840878080,"id_str":"1217531924840878080","indices":[0,9]},{"screen_name":"Serwaa_Amihere","name":"Serwaa - Amihere","id":1733220096,"id_str":"1733220096","indices":[10,25]},{"screen_name":"Serwaa_Amihere","name":"Serwaa - Amihere","id":1733220096,"id_str":"1733220096","indices":[44,59]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1323901943681568769,"in_reply_to_status_id_str":"1323901943681568769","in_reply_to_user_id":1217531924840878080,"in_reply_to_user_id_str":"1217531924840878080","in_reply_to_screen_name":"BcneNipa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320767003385319426\/SorQXEs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320767003385319426\/SorQXEs__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":61973562,"id_str":"61973562","name":"Aditya - Garg","screen_name":"addygunners","location":"Amsterdam, The Netherlands","description":"@JustEatTakeaway - | @BITS_Pilani | @HECParisMBA | @Arsenal | #ArseneWenger | @TheHockeyIndia - | @BITSAA | #NITIE #Indore","url":"https:\/\/t.co\/PkoWsN53KM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PkoWsN53KM","expanded_url":"http:\/\/www.bitsaa.org","display_url":"bitsaa.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1099,"friends_count":399,"listed_count":51,"created_at":"Sat - Aug 01 05:46:15 +0000 2009","favourites_count":21862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63846,"lang":null,"status":{"created_at":"Sat - Mar 26 09:08:34 +0000 2022","id":1507645677945434112,"id_str":"1507645677945434112","text":"\ud83d\udc40 - https:\/\/t.co\/CQKyeWlNf5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CQKyeWlNf5","expanded_url":"https:\/\/twitter.com\/f1\/status\/1507643809886138374","display_url":"twitter.com\/f1\/status\/1507\u2026","indices":[2,25]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"09ba692cbddfc92c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/09ba692cbddfc92c.json","place_type":"city","name":"Hammersmith","full_name":"Hammersmith, - London","country_code":"GB","country":"United Kingdom","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-0.254563,51.463873],[-0.177653,51.463873],[-0.177653,51.532901],[-0.254563,51.532901]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1507643809886138374,"quoted_status_id_str":"1507643809886138374","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1154391085096951808\/IUMdz91Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1154391085096951808\/IUMdz91Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61973562\/1528457934","profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15277981,"id_str":"15277981","name":"LeIreneeRousseau","screen_name":"irenee_rousseau","location":"Brussels","description":"\"No - uterus, no opinion\" by Rachel Green","url":"https:\/\/t.co\/3K7lUCuHdU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3K7lUCuHdU","expanded_url":"https:\/\/leirenerousseau.wordpress.com\/","display_url":"leirenerousseau.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":60,"listed_count":18,"created_at":"Mon - Jun 30 10:27:35 +0000 2008","favourites_count":1463,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":311,"lang":null,"status":{"created_at":"Thu - May 27 16:48:29 +0000 2021","id":1397957893228482561,"id_str":"1397957893228482561","text":"RT - @EUombudsman: #DingDongEU: @EUinmyRegion sent 15 influencers on \u2018green - journeys\u2019 to 70 sustainable projects across five EU countries to\u2026","truncated":false,"entities":{"hashtags":[{"text":"DingDongEU","indices":[17,28]}],"symbols":[],"user_mentions":[{"screen_name":"EUombudsman","name":"European - Ombudsman","id":873777758,"id_str":"873777758","indices":[3,15]},{"screen_name":"EUinmyRegion","name":"EUinmyRegion","id":258790331,"id_str":"258790331","indices":[30,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 18 13:57:48 +0000 2021","id":1394653449439125508,"id_str":"1394653449439125508","text":"#DingDongEU: - @EUinmyRegion sent 15 influencers on \u2018green journeys\u2019 to 70 sustainable - projects across five EU countr\u2026 https:\/\/t.co\/W7wplsWdBM","truncated":true,"entities":{"hashtags":[{"text":"DingDongEU","indices":[0,11]}],"symbols":[],"user_mentions":[{"screen_name":"EUinmyRegion","name":"EUinmyRegion","id":258790331,"id_str":"258790331","indices":[13,26]}],"urls":[{"url":"https:\/\/t.co\/W7wplsWdBM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1394653449439125508","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1390613686990082049,"in_reply_to_status_id_str":"1390613686990082049","in_reply_to_user_id":873777758,"in_reply_to_user_id_str":"873777758","in_reply_to_screen_name":"EUombudsman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303957314903433217\/N57fK87P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303957314903433217\/N57fK87P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15277981\/1453729667","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86921069,"id_str":"86921069","name":"Heather - Charlton\ud83e\udd89","screen_name":"hahahev","location":"Essex","description":"#FindBambi","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":69,"friends_count":4957,"listed_count":0,"created_at":"Mon - Nov 02 11:12:47 +0000 2009","favourites_count":10087,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12344,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924300914948702208\/HbDg4eCn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924300914948702208\/HbDg4eCn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86921069\/1543253520","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":366060774,"id_str":"366060774","name":"Horlawalay","screen_name":"adisco4","location":"Uk","description":"Simple,,,","url":"https:\/\/t.co\/eMZdMj7BDi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eMZdMj7BDi","expanded_url":"http:\/\/www.oneway.perfect-blog.net","display_url":"oneway.perfect-blog.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":886,"listed_count":0,"created_at":"Thu - Sep 01 14:12:09 +0000 2011","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":119,"lang":null,"status":{"created_at":"Sun - Jan 23 18:29:20 +0000 2022","id":1485318748273885193,"id_str":"1485318748273885193","text":"@professor080 - 2 : 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"professor080","name":"@prof_gusto","id":1457972502,"id_str":"1457972502","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1485211584452612096,"in_reply_to_status_id_str":"1485211584452612096","in_reply_to_user_id":1457972502,"in_reply_to_user_id_str":"1457972502","in_reply_to_screen_name":"professor080","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101737493140041728\/E_fMebeD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101737493140041728\/E_fMebeD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366060774\/1593282142","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1025066069541703680,"id_str":"1025066069541703680","name":"Paa - Akwasi","screen_name":"samuelakwasias5","location":"Kumasi, Ghana","description":"GOD - LOVES ME","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":4806,"listed_count":0,"created_at":"Thu - Aug 02 17:09:30 +0000 2018","favourites_count":302,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":125,"lang":null,"status":{"created_at":"Tue - Mar 22 06:48:59 +0000 2022","id":1506160998469836803,"id_str":"1506160998469836803","text":"@sulemana - It was 155 billion and not 122billion","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sulemana","name":"Sulemana - Braimah","id":32132204,"id_str":"32132204","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505931836521947141,"in_reply_to_status_id_str":"1505931836521947141","in_reply_to_user_id":32132204,"in_reply_to_user_id_str":"32132204","in_reply_to_screen_name":"sulemana","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251428467264151552\/0uKCZ6wO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251428467264151552\/0uKCZ6wO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4230548118,"id_str":"4230548118","name":"Love - Farley","screen_name":"lovefarley37","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":192,"listed_count":0,"created_at":"Sat - Nov 14 04:09:28 +0000 2015","favourites_count":8393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Sun - Sep 05 13:28:06 +0000 2021","id":1434508638958153733,"id_str":"1434508638958153733","text":"@PeteButtigieg - These kids are so lucky to have two incredible parents! \u2764\ufe0f\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeteButtigieg","name":"Pete - Buttigieg","id":226222147,"id_str":"226222147","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1434167993769111552,"in_reply_to_status_id_str":"1434167993769111552","in_reply_to_user_id":226222147,"in_reply_to_user_id_str":"226222147","in_reply_to_screen_name":"PeteButtigieg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/665385187824369664\/etNbp5bO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/665385187824369664\/etNbp5bO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22818816,"id_str":"22818816","name":"JD - Salingary","screen_name":"jeffsalinger","location":"Manhattan, NY","description":"Engaged - citizen, awake and paying close attention. Tractor lover, paddler, live music - enthusiast, contrarian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":758,"listed_count":3,"created_at":"Wed - Mar 04 19:19:26 +0000 2009","favourites_count":1047,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":282,"lang":null,"status":{"created_at":"Wed - Mar 09 20:57:17 +0000 2022","id":1501663437893652481,"id_str":"1501663437893652481","text":"@PooTeeTweeter - @phish Time Turns Elastic","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PooTeeTweeter","name":"W.D. - Saw","id":109924549,"id_str":"109924549","indices":[0,14]},{"screen_name":"phish","name":"Phish","id":14503997,"id_str":"14503997","indices":[15,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1501623469515022341,"in_reply_to_status_id_str":"1501623469515022341","in_reply_to_user_id":109924549,"in_reply_to_user_id_str":"109924549","in_reply_to_screen_name":"PooTeeTweeter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/747952490432315392\/IGdggnwv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747952490432315392\/IGdggnwv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1152543730550882305,"id_str":"1152543730550882305","name":"Jean - Flowers","screen_name":"jeanflo10","location":"","description":"Interested - in everything","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":161,"listed_count":0,"created_at":"Sat - Jul 20 11:40:13 +0000 2019","favourites_count":669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Jan 01 19:06:19 +0000 2021","id":1345083950985859075,"id_str":"1345083950985859075","text":"@emaardubai - A-ma-zing!!!!xxxx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emaardubai","name":"Emaar - Dubai","id":2456025619,"id_str":"2456025619","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1344778629188874245,"in_reply_to_status_id_str":"1344778629188874245","in_reply_to_user_id":2456025619,"in_reply_to_user_id_str":"2456025619","in_reply_to_screen_name":"emaardubai","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152544628077486081\/7UfKsLVm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152544628077486081\/7UfKsLVm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1152543730550882305\/1563623047","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140710835200897025,"id_str":"1140710835200897025","name":"maggie - may","screen_name":"thinkfolkss","location":"New Mexico, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":482,"listed_count":0,"created_at":"Mon - Jun 17 20:00:31 +0000 2019","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268463612135440384,"id_str":"1268463612135440384","name":"Jules - \u264c\ufe0f\ud83c\udde8\ud83c\uddfa\ud83c\udde8\ud83c\uddfa","screen_name":"JulesOfarrill","location":"","description":"Guide - tour, translator , French teacher... \ud83c\udf93\ud83d\udcbc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":78,"listed_count":0,"created_at":"Thu - Jun 04 08:44:40 +0000 2020","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Sat - Jan 09 05:45:14 +0000 2021","id":1347781458350501889,"id_str":"1347781458350501889","text":"@NBA - @LAClippers @warriors I''ve seen this many times .... over and over again (PG) - \ud83d\ude35\ud83d\ude35\ud83d\ude35","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NBA","name":"NBA","id":19923144,"id_str":"19923144","indices":[0,4]},{"screen_name":"LAClippers","name":"LA - Clippers","id":19564719,"id_str":"19564719","indices":[5,16]},{"screen_name":"warriors","name":"Golden - State Warriors","id":26270913,"id_str":"26270913","indices":[17,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1347776810092789763,"in_reply_to_status_id_str":"1347776810092789763","in_reply_to_user_id":19923144,"in_reply_to_user_id_str":"19923144","in_reply_to_screen_name":"NBA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310300759012016129\/KUMmf_br_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310300759012016129\/KUMmf_br_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268463612135440384\/1591570201","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":202524652,"id_str":"202524652","name":"philip - black","screen_name":"philblack34","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":996,"listed_count":0,"created_at":"Thu - Oct 14 06:56:26 +0000 2010","favourites_count":1453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sat - Sep 05 16:41:02 +0000 2020","id":1302285622820954118,"id_str":"1302285622820954118","text":"@lomondtrossachs - @StirlingCouncil @ForthValPolice @forestryls @trafficscotland Why no bus service - there?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lomondtrossachs","name":"Loch - Lomond & The Trossachs","id":106422945,"id_str":"106422945","indices":[0,16]},{"screen_name":"StirlingCouncil","name":"Stirling - Council","id":15943603,"id_str":"15943603","indices":[17,33]},{"screen_name":"ForthValPolice","name":"Forth - Valley Police","id":94362564,"id_str":"94362564","indices":[34,49]},{"screen_name":"ForestryLS","name":"Forestry - and Land Scotland","id":15311496,"id_str":"15311496","indices":[50,61]},{"screen_name":"trafficscotland","name":"Traffic - Scotland","id":20106985,"id_str":"20106985","indices":[62,78]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1302251371731865600,"in_reply_to_status_id_str":"1302251371731865600","in_reply_to_user_id":106422945,"in_reply_to_user_id_str":"106422945","in_reply_to_screen_name":"lomondtrossachs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169265307\/pb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169265307\/pb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4707071656,"id_str":"4707071656","name":"Oluwadmilare","screen_name":"Damilar98054618","location":"","description":"life - without impact, is life of no value. ya Allah bless my effort in life and - after life!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":1759,"listed_count":0,"created_at":"Mon - Jan 04 17:55:27 +0000 2016","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":485,"lang":null,"status":{"created_at":"Fri - Mar 25 19:47:00 +0000 2022","id":1507443956161945602,"id_str":"1507443956161945602","text":"@instablog9ja - Barrister","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"instablog9ja","name":"Instablog9ja","id":754393222563102720,"id_str":"754393222563102720","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507402196048093189,"in_reply_to_status_id_str":"1507402196048093189","in_reply_to_user_id":754393222563102720,"in_reply_to_user_id_str":"754393222563102720","in_reply_to_screen_name":"instablog9ja","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247505337076285442\/txc_6GZf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247505337076285442\/txc_6GZf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4707071656\/1630604086","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1169012802142515200,"id_str":"1169012802142515200","name":"Stacey","screen_name":"stacey01609858","location":"London, - England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":279,"listed_count":0,"created_at":"Tue - Sep 03 22:22:35 +0000 2019","favourites_count":663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - Nov 13 13:28:01 +0000 2021","id":1459513380658683904,"id_str":"1459513380658683904","text":"@VeryHelpers - I have received an email today from this email notification@eletters.very.co.uk - explaining my B\u2026 https:\/\/t.co\/mlCdCQ85Lq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VeryHelpers","name":"VeryHelpers","id":552619927,"id_str":"552619927","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/mlCdCQ85Lq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1459513380658683904","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":552619927,"in_reply_to_user_id_str":"552619927","in_reply_to_screen_name":"VeryHelpers","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169012981444874240\/3PpP8gNe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169012981444874240\/3PpP8gNe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":623598209,"id_str":"623598209","name":"Bridget - Jennings","screen_name":"glenisland","location":"Oxford, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":350,"listed_count":0,"created_at":"Sun - Jul 01 09:51:12 +0000 2012","favourites_count":7788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":121,"lang":null,"status":{"created_at":"Sun - Feb 13 22:28:25 +0000 2022","id":1492989061509881856,"id_str":"1492989061509881856","text":"@nickb_04 - Because he thinks we\u2019re all eejits so facts don\u2019t matter!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nickb_04","name":"Sir - Nick Burrow","id":287324299,"id_str":"287324299","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1490082176276353026,"in_reply_to_status_id_str":"1490082176276353026","in_reply_to_user_id":287324299,"in_reply_to_user_id_str":"287324299","in_reply_to_screen_name":"nickb_04","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45120702,"id_str":"45120702","name":"Hyperbaric - Chambers","screen_name":"healingdives","location":"Woodland Hills, CA","description":"Diane - Pechenick, #Healing Dives. Portable #Hyperbaric Chambers from $6,995. https:\/\/t.co\/J4E5W9rtkF\u2026. - https:\/\/t.co\/uQv7vahzXZ","url":"https:\/\/t.co\/0R4A0gRCX0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0R4A0gRCX0","expanded_url":"http:\/\/www.healingdives.com","display_url":"healingdives.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/J4E5W9rtkF","expanded_url":"http:\/\/facebook.com\/hyperbariccham","display_url":"facebook.com\/hyperbariccham","indices":[76,99]},{"url":"https:\/\/t.co\/uQv7vahzXZ","expanded_url":"http:\/\/linkedin.com\/in\/healingdives","display_url":"linkedin.com\/in\/healingdives","indices":[102,125]}]}},"protected":false,"followers_count":3011,"friends_count":3825,"listed_count":43,"created_at":"Sat - Jun 06 12:32:23 +0000 2009","favourites_count":37866,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1956,"lang":null,"status":{"created_at":"Fri - Feb 04 15:26:41 +0000 2022","id":1489621440257146886,"id_str":"1489621440257146886","text":"This - is an informative podcast episode about the healing benefits of hyperbaric - oxygen therapy, including its succe\u2026 https:\/\/t.co\/CUcYLBULmH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CUcYLBULmH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1489621440257146886","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432126968741318658\/NFRK8OKS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432126968741318658\/NFRK8OKS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45120702\/1355571394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240332480735072264,"id_str":"1240332480735072264","name":"LIVA","screen_name":"LIVA36502301","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":895,"listed_count":0,"created_at":"Wed - Mar 18 17:41:50 +0000 2020","favourites_count":489,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Oct 20 14:51:45 +0000 2020","id":1318565576697065472,"id_str":"1318565576697065472","text":"@Hbamulinde - That''s true@Hillary bamulinde","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Hbamulinde","name":"Hillary - bamulinde","id":1196312004,"id_str":"1196312004","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1318489334245478405,"in_reply_to_status_id_str":"1318489334245478405","in_reply_to_user_id":1196312004,"in_reply_to_user_id_str":"1196312004","in_reply_to_screen_name":"Hbamulinde","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299697250759655424,"id_str":"1299697250759655424","name":"MM","screen_name":"mmaajid3499","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":661,"listed_count":0,"created_at":"Sat - Aug 29 13:16:00 +0000 2020","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":760125428,"id_str":"760125428","name":"ashikur - rahman","screen_name":"rupok20","location":"New York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":354,"listed_count":0,"created_at":"Wed - Aug 15 20:42:26 +0000 2012","favourites_count":152,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":268,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379968540330037250\/1aI63EGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379968540330037250\/1aI63EGO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":222721647,"id_str":"222721647","name":"volkan - oguz","screen_name":"volkanoquz","location":"Brooklyn, NY","description":"Malatyal\u0131 - New Yorker \ud83d\uddfd Be\u015fikta\u015fk \ud83e\udd85 IAU \ud83d\udcda - Tek hayali milyoner olmak \ud83d\udcb8 \ud83d\udcb0 IG : volkanoguz \ud83d\udccc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":558,"friends_count":2092,"listed_count":1,"created_at":"Sat - Dec 04 07:14:34 +0000 2010","favourites_count":35229,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6331,"lang":null,"status":{"created_at":"Fri - Mar 25 22:31:09 +0000 2022","id":1507485265216131072,"id_str":"1507485265216131072","text":"RT - @yazilimogrenn: Spor salonuna gitmek yerine evde egzersiz yapmay\u0131 tercih - edenler i\u00e7in baz\u0131 az bilinen uygulamalar payla\u015faca\u011f\u0131m - \ud83d\udc47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yazilimogrenn","name":"Kaliteli - \u0130nternet Kullan\u0131m Rehberi","id":1490404350711275532,"id_str":"1490404350711275532","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:29:20 +0000 2022","id":1507364012295655424,"id_str":"1507364012295655424","text":"Spor - salonuna gitmek yerine evde egzersiz yapmay\u0131 tercih edenler i\u00e7in - baz\u0131 az bilinen uygulamalar payla\u015faca\u011f\u0131m \ud83d\udc47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":926,"favorite_count":7331,"favorited":false,"retweeted":false,"lang":"tr"},"is_quote_status":false,"retweet_count":926,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DCF1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000441743922\/7d56e15cb62e0ca38aff7c89fad77a4e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000441743922\/7d56e15cb62e0ca38aff7c89fad77a4e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222721647\/1547411536","profile_link_color":"C0DCF1","profile_sidebar_border_color":"C0DCF1","profile_sidebar_fill_color":"1C1C1C","profile_text_color":"5C91B9","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42592031,"id_str":"42592031","name":"Natalie - Thompson \u2728","screen_name":"natalie_64","location":"54.614507,-5.869279","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":85,"friends_count":743,"listed_count":0,"created_at":"Tue - May 26 09:02:26 +0000 2009","favourites_count":2429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":155,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911335175451287553\/ChbyL-pd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911335175451287553\/ChbyL-pd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42592031\/1513537760","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308823830291525634,"id_str":"1308823830291525634","name":"Tasha - Jones","screen_name":"TashaJo92580337","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":44,"listed_count":0,"created_at":"Wed - Sep 23 17:41:45 +0000 2020","favourites_count":661,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3546,"lang":null,"status":{"created_at":"Mon - Jan 03 01:06:39 +0000 2022","id":1477808592841543683,"id_str":"1477808592841543683","text":"RT - @MichelleObama: Happy New Year from me and my boo! \ud83c\udf89\ud83e\udd73 - Wishing you all a year filled with happiness, love, and good health. https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichelleObama","name":"Michelle - Obama","id":409486555,"id_str":"409486555","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 01 23:30:09 +0000 2022","id":1477421918567424012,"id_str":"1477421918567424012","text":"Happy - New Year from me and my boo! \ud83c\udf89\ud83e\udd73 Wishing you all a year - filled with happiness, love, and good health. https:\/\/t.co\/FRR0DDZjw9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1477421914343751690,"id_str":"1477421914343751690","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/FIDbZ0PWQAoPkA4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FIDbZ0PWQAoPkA4.jpg","url":"https:\/\/t.co\/FRR0DDZjw9","display_url":"pic.twitter.com\/FRR0DDZjw9","expanded_url":"https:\/\/twitter.com\/MichelleObama\/status\/1477421918567424012\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":714,"h":1200,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"large":{"w":1218,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1477421914343751690,"id_str":"1477421914343751690","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/FIDbZ0PWQAoPkA4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FIDbZ0PWQAoPkA4.jpg","url":"https:\/\/t.co\/FRR0DDZjw9","display_url":"pic.twitter.com\/FRR0DDZjw9","expanded_url":"https:\/\/twitter.com\/MichelleObama\/status\/1477421918567424012\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":714,"h":1200,"resize":"fit"},"small":{"w":404,"h":680,"resize":"fit"},"large":{"w":1218,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76925,"favorite_count":1087065,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":76925,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308824199511801859\/KENNNZAu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308824199511801859\/KENNNZAu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3025165432,"id_str":"3025165432","name":"Ala","screen_name":"ciaocoxy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":4998,"listed_count":28,"created_at":"Sun - Feb 08 15:56:16 +0000 2015","favourites_count":122283,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57601,"lang":null,"status":{"created_at":"Sat - Mar 26 08:57:36 +0000 2022","id":1507642914708627461,"id_str":"1507642914708627461","text":"RT - @KyivIndependent: \u26a1\ufe0fEarly disclosure of information disrupts delivery - of foreign aid to Ukraine. \n\nDeputy Defense Minister Hanna Maliar\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:31:28 +0000 2022","id":1507606140640804868,"id_str":"1507606140640804868","text":"\u26a1\ufe0fEarly - disclosure of information disrupts delivery of foreign aid to Ukraine. \n\nDeputy - Defense Minister Hanna Mali\u2026 https:\/\/t.co\/5b5U2urrOv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5b5U2urrOv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507606140640804868","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1308,"favorite_count":4352,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1308,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432449052461916160\/T1PgErE0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432449052461916160\/T1PgErE0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025165432\/1646936843","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243900759,"id_str":"243900759","name":"jharly63","screen_name":"jharly63","location":"Chicago, - IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":2276,"listed_count":1,"created_at":"Fri - Jan 28 01:57:02 +0000 2011","favourites_count":719,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Fri - Feb 18 01:52:48 +0000 2022","id":1494490047596445703,"id_str":"1494490047596445703","text":"@dmihalopoulos - Considering how many places of employment have fired you, MITSMR not surprising - what so ever to see\u2026 https:\/\/t.co\/C7R9qgJ6SH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dmihalopoulos","name":"Dan - Mihalopoulos","id":130627548,"id_str":"130627548","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/C7R9qgJ6SH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494490047596445703","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493375458863456260,"in_reply_to_status_id_str":"1493375458863456260","in_reply_to_user_id":130627548,"in_reply_to_user_id_str":"130627548","in_reply_to_screen_name":"dmihalopoulos","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221463399890063361\/O7023QhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221463399890063361\/O7023QhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243900759\/1580054012","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":79254692,"id_str":"79254692","name":"Kalyan - C. Simham","screen_name":"kalyansimham","location":"Greenville, SC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":2168,"listed_count":1,"created_at":"Fri - Oct 02 18:40:27 +0000 2009","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Fri - Nov 12 05:01:38 +0000 2021","id":1459023557871255552,"id_str":"1459023557871255552","text":"RT - @guardian522: So, uh... @netflix \nWhen are we getting #mindhunter Season - 3?\n#MindhunterSeason3 #DavidFincher","truncated":false,"entities":{"hashtags":[{"text":"mindhunter","indices":[57,68]},{"text":"MindhunterSeason3","indices":[79,97]},{"text":"DavidFincher","indices":[98,111]}],"symbols":[],"user_mentions":[{"screen_name":"guardian522","name":"Vicente - Ortiz","id":1367570641,"id_str":"1367570641","indices":[3,15]},{"screen_name":"netflix","name":"Netflix","id":16573941,"id_str":"16573941","indices":[27,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 06 15:47:51 +0000 2021","id":1457011858804592644,"id_str":"1457011858804592644","text":"So, - uh... @netflix \nWhen are we getting #mindhunter Season 3?\n#MindhunterSeason3 - #DavidFincher","truncated":false,"entities":{"hashtags":[{"text":"mindhunter","indices":[40,51]},{"text":"MindhunterSeason3","indices":[62,80]},{"text":"DavidFincher","indices":[81,94]}],"symbols":[],"user_mentions":[{"screen_name":"netflix","name":"Netflix","id":16573941,"id_str":"16573941","indices":[10,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3009758352,"id_str":"3009758352","name":"Cathy - Collins","screen_name":"cacrip1","location":"","description":"Steelers Nation, - CU Buffs, mother, wife, friend, daughter,sister. loves skiing, gardening, - reading, sunning , fishing and traveling.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":1719,"listed_count":2,"created_at":"Thu - Feb 05 05:34:32 +0000 2015","favourites_count":10081,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":764,"lang":null,"status":{"created_at":"Thu - Mar 24 14:25:54 +0000 2022","id":1507000760902426625,"id_str":"1507000760902426625","text":"RT - @PmurtTrump: THURSDAY DEMOCRAT MEET UP!\n\nNovember 8th will be here before - we know it. Build the \ud83c\udf0a blue wave\ud83c\udf0a to save our democracy - from\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PmurtTrump","name":"Just - Jay \ud83c\udf0a\ud83c\udf0a I follow all Democrats! \ud83c\udf0a\ud83c\udf0a","id":826631824700997633,"id_str":"826631824700997633","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 10:09:00 +0000 2022","id":1506936109271592962,"id_str":"1506936109271592962","text":"THURSDAY - DEMOCRAT MEET UP!\n\nNovember 8th will be here before we know it. Build the - \ud83c\udf0a blue wave\ud83c\udf0a to save our democra\u2026 https:\/\/t.co\/m71ISBaN63","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m71ISBaN63","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506936109271592962","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/tweepsmap.com\" rel=\"nofollow\"\u003eTweepsmap\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":509,"favorite_count":1057,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":509,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3600111617,"id_str":"3600111617","name":"Joe - Conere","screen_name":"joe_conere","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":362,"friends_count":4997,"listed_count":2,"created_at":"Wed - Sep 09 16:28:36 +0000 2015","favourites_count":14276,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14431,"lang":null,"status":{"created_at":"Sat - Mar 26 09:21:24 +0000 2022","id":1507648906032726016,"id_str":"1507648906032726016","text":"RT - @GerryCarrollPBP: Wall to wall media coverage of a Loyalist rally in Ballymoney - last night but nowhere near the same level of coverage o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GerryCarrollPBP","name":"Gerry - Carroll","id":301952988,"id_str":"301952988","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:31:24 +0000 2022","id":1507636322776895489,"id_str":"1507636322776895489","text":"Wall - to wall media coverage of a Loyalist rally in Ballymoney last night but nowhere - near the same level of coverag\u2026 https:\/\/t.co\/CpHAo6LeLb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CpHAo6LeLb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507636322776895489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":111,"favorite_count":582,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":111,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641926487336206336\/3velFgjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641926487336206336\/3velFgjZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262143910,"id_str":"1262143910","name":"Hana","screen_name":"thisishanak","location":"CAI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":168,"listed_count":0,"created_at":"Tue - Mar 12 14:44:03 +0000 2013","favourites_count":26157,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10757,"lang":null,"status":{"created_at":"Thu - Mar 24 22:51:13 +0000 2022","id":1507127925556105221,"id_str":"1507127925556105221","text":"RT - @noahdonotcare: who tf decided it was called \u201cemotional baggage\u201c - and not \u201cgriefcase\u201d ???","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"noahdonotcare","name":"Noah - \u2735","id":1486415527534866435,"id_str":"1486415527534866435","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 02:13:26 +0000 2022","id":1506454038832943107,"id_str":"1506454038832943107","text":"who - tf decided it was called \u201cemotional baggage\u201c and not \u201cgriefcase\u201d - ???","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46450,"favorite_count":339095,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":46450,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439968472679788546\/szySEJsg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439968472679788546\/szySEJsg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1262143910\/1594024109","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288809068283547648,"id_str":"1288809068283547648","name":"Justice - Akor","screen_name":"Smithke12630696","location":"","description":"I''m a - Tiv Biafran and love freedom and justice.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":383,"friends_count":1529,"listed_count":0,"created_at":"Thu - Jul 30 12:10:21 +0000 2020","favourites_count":2277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2933,"lang":null,"status":{"created_at":"Thu - Mar 24 19:37:34 +0000 2022","id":1507079192936173581,"id_str":"1507079192936173581","text":"RT - @EmekaGift100: The Biafra Story and The Dangers Of Pushing The Masses To Self - Defense https:\/\/t.co\/dUOKDCjNhX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmekaGift100","name":"Emeka - Gift Official","id":1455938622515974146,"id_str":"1455938622515974146","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/dUOKDCjNhX","expanded_url":"https:\/\/www.iconsnews.com\/2022\/03\/the-biafra-story-and-dangers-of-pushing.html","display_url":"iconsnews.com\/2022\/03\/the-bi\u2026","indices":[89,112]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:46:11 +0000 2022","id":1507036061226184715,"id_str":"1507036061226184715","text":"The - Biafra Story and The Dangers Of Pushing The Masses To Self Defense https:\/\/t.co\/dUOKDCjNhX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dUOKDCjNhX","expanded_url":"https:\/\/www.iconsnews.com\/2022\/03\/the-biafra-story-and-dangers-of-pushing.html","display_url":"iconsnews.com\/2022\/03\/the-bi\u2026","indices":[71,94]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":268,"favorite_count":166,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":268,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1193697330832248832,"id_str":"1193697330832248832","name":"Ivan","screen_name":"h_ivan_e","location":"","description":"Design - @trustpage. prev. @rainforestqa I climb rocks, cook things and charge hills","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":197,"listed_count":0,"created_at":"Mon - Nov 11 01:10:39 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210357606276972547\/780wB2nU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210357606276972547\/780wB2nU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":931472781820268544,"id_str":"931472781820268544","name":"M.ajesty - \ud83d\udc51","screen_name":"zongo_waakye","location":"Zion","description":"Lover - of Israel. #BornAgain\n#M.anifan Lover of the Earth","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":1142,"listed_count":0,"created_at":"Fri - Nov 17 10:43:11 +0000 2017","favourites_count":7363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1386,"lang":null,"status":{"created_at":"Fri - Mar 25 15:44:22 +0000 2022","id":1507382893932388368,"id_str":"1507382893932388368","text":"RT - @LoveWorldUSA: Healing Streams Festival of Miracles | Friday, March 25, 2022 - https:\/\/t.co\/leIflYWxrz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LoveWorldUSA","name":"Loveworld - USA","id":831241200271245312,"id_str":"831241200271245312","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/leIflYWxrz","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1LyxBoBwpvEKN","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[80,103]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:17:23 +0000 2022","id":1507376104834670595,"id_str":"1507376104834670595","text":"Healing - Streams Festival of Miracles | Friday, March 25, 2022 https:\/\/t.co\/leIflYWxrz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/leIflYWxrz","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1LyxBoBwpvEKN","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[62,85]}]},"source":"\u003ca - href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495767233120845830\/ehmd3xxJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495767233120845830\/ehmd3xxJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/931472781820268544\/1547952255","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":202683099,"id_str":"202683099","name":"Naveed - Khayal","screen_name":"nkhayal","location":"Khairpur sindh Pakistan","description":"Development - professional working with IRC as Regional Manager Khairpur","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1391,"friends_count":4912,"listed_count":0,"created_at":"Thu - Oct 14 15:59:18 +0000 2010","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":542,"lang":null,"status":{"created_at":"Sat - Oct 16 08:00:14 +0000 2021","id":1449284031112269824,"id_str":"1449284031112269824","text":"https:\/\/t.co\/UdQZ4Ly7Jc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1449283934173470722,"id_str":"1449283934173470722","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBzkDzsXIAIRt6J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBzkDzsXIAIRt6J.jpg","url":"https:\/\/t.co\/UdQZ4Ly7Jc","display_url":"pic.twitter.com\/UdQZ4Ly7Jc","expanded_url":"https:\/\/twitter.com\/nkhayal\/status\/1449284031112269824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1449283934173470722,"id_str":"1449283934173470722","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FBzkDzsXIAIRt6J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBzkDzsXIAIRt6J.jpg","url":"https:\/\/t.co\/UdQZ4Ly7Jc","display_url":"pic.twitter.com\/UdQZ4Ly7Jc","expanded_url":"https:\/\/twitter.com\/nkhayal\/status\/1449284031112269824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3157537388\/b0faf4aa6d7df054c233742a4ecf6f50_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3157537388\/b0faf4aa6d7df054c233742a4ecf6f50_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271777383482302465,"id_str":"1271777383482302465","name":"Eunicekm","screen_name":"Eunicekm2","location":"","description":"Am - candid, i don''t mince my words","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":48,"listed_count":0,"created_at":"Sat - Jun 13 12:12:31 +0000 2020","favourites_count":1986,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":269,"lang":null,"status":{"created_at":"Mon - Feb 22 23:48:57 +0000 2021","id":1363999247104946178,"id_str":"1363999247104946178","text":"RT - @ttrulss: Don''t compare your life to others. There''s no comparison between - the sun and the moon. They shine when it''s their time.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ttrulss","name":"Truls - #SupportUkraine \ud83c\uddfa\ud83c\udde6\u2764\ufe0f","id":1191367417831800835,"id_str":"1191367417831800835","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 22 17:46:16 +0000 2021","id":1363907976315228168,"id_str":"1363907976315228168","text":"Don''t - compare your life to others. There''s no comparison between the sun and the - moon. They shine when it''s their time.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":729,"favorite_count":2676,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":729,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271777875780415488\/WVdvXcI0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271777875780415488\/WVdvXcI0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1514930424,"id_str":"1514930424","name":"Abayomi","screen_name":"AbayomiOgunjobi","location":"\u0627\u0644\u062c\u0644\u064a\u0639\u0629 - \u0648\u0627\u0644\u0632\u0648\u0631 \u0648\u0635\u0648\u0644\u0629 \u0648\u0627\u0644\u0636\u0628\u0627\u0639\u064a\u0629","description":"Am - a kind of seed that grows anywhere its'' planted,a rare man. Grace life!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":982,"listed_count":0,"created_at":"Fri - Jun 14 01:33:58 +0000 2013","favourites_count":19127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Mar 18 13:53:45 +0000 2022","id":1504818341319483402,"id_str":"1504818341319483402","text":"@Naija_PR - Waiting for this\u2026hahaahahahahah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Naija_PR","name":"Naija","id":1901298962,"id_str":"1901298962","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504811840806834177,"in_reply_to_status_id_str":"1504811840806834177","in_reply_to_user_id":1901298962,"in_reply_to_user_id_str":"1901298962","in_reply_to_screen_name":"Naija_PR","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912808606613098496\/5gyd7BBV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912808606613098496\/5gyd7BBV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1514930424\/1506465504","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17097715,"id_str":"17097715","name":"Shelley - van Erp","screen_name":"svanerp","location":"Prince George, BC","description":"Secondary - DL Educator, Social Activist, Lifelong Learner, farmer, grandma, Yoga instructor - and parter to a FANTASTIC human.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":964,"listed_count":5,"created_at":"Sat - Nov 01 06:52:59 +0000 2008","favourites_count":5073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1041,"lang":null,"status":{"created_at":"Tue - Mar 22 03:34:32 +0000 2022","id":1506112061771636739,"id_str":"1506112061771636739","text":"RT - @adelpreore: She said unironically from both social media and network television - platforms.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adelpreore","name":"\u24d8 - Qpublican f*ckery detected","id":8404632,"id_str":"8404632","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 03:20:25 +0000 2022","id":1506108511171751940,"id_str":"1506108511171751940","text":"She - said unironically from both social media and network television platforms. - https:\/\/t.co\/HUvA2nsg8h","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HUvA2nsg8h","expanded_url":"https:\/\/twitter.com\/MarshaBlackburn\/status\/1506068743000145920","display_url":"twitter.com\/MarshaBlackbur\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506068743000145920,"quoted_status_id_str":"1506068743000145920","retweet_count":19,"favorite_count":95,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506068743000145920,"quoted_status_id_str":"1506068743000145920","retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3264911280\/82f8e813c7b2764859250228e507ed02_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3264911280\/82f8e813c7b2764859250228e507ed02_normal.jpeg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230321072320413697,"id_str":"1230321072320413697","name":"laura - pierce","screen_name":"laurapi64861653","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":66,"listed_count":0,"created_at":"Thu - Feb 20 02:39:46 +0000 2020","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":714858224537702401,"id_str":"714858224537702401","name":"Ayusha - Chalise","screen_name":"ayusha98_","location":"Nepal","description":"TV Presenter\/ - Communication Professional\/ Teacher.\n\nShe\/Her.\n\ud83c\uddf3\ud83c\uddf5","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":598,"friends_count":290,"listed_count":0,"created_at":"Tue - Mar 29 16:54:16 +0000 2016","favourites_count":6340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":464,"lang":null,"status":{"created_at":"Wed - Mar 23 06:11:16 +0000 2022","id":1506513893367382019,"id_str":"1506513893367382019","text":"RT - @KarmaTamang: Let''s listen to the wonderful conversation between these two - awesome ladies. \ud83d\ude42\ud83e\udd1f\n@ajeetarai @ayusha98_ \nhttps:\/\/t.co\/QNxd9e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KarmaTamang","name":"Karma - Tamang \u0915\u0930\u094d\u092e\u093e \u0924\u093e\u092e\u093e\u0919","id":49377364,"id_str":"49377364","indices":[3,15]},{"screen_name":"ajeetarai","name":"Ajeeta - Rai","id":304327849,"id_str":"304327849","indices":[97,107]},{"screen_name":"ayusha98_","name":"Ayusha - Chalise","id":714858224537702401,"id_str":"714858224537702401","indices":[108,118]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 03:35:28 +0000 2022","id":1506112296107446274,"id_str":"1506112296107446274","text":"Let''s - listen to the wonderful conversation between these two awesome ladies. \ud83d\ude42\ud83e\udd1f\n@ajeetarai - @ayusha98_ \nhttps:\/\/t.co\/QNxd9eIUWV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ajeetarai","name":"Ajeeta - Rai","id":304327849,"id_str":"304327849","indices":[80,90]},{"screen_name":"ayusha98_","name":"Ayusha - Chalise","id":714858224537702401,"id_str":"714858224537702401","indices":[91,101]}],"urls":[{"url":"https:\/\/t.co\/QNxd9eIUWV","expanded_url":"https:\/\/www.youtube.com\/watch?v=MEglSrdd-m8","display_url":"youtube.com\/watch?v=MEglSr\u2026","indices":[103,126]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480546093800718336\/aoyP495j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480546093800718336\/aoyP495j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714858224537702401\/1615189232","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":121160043,"id_str":"121160043","name":"NB","screen_name":"nelliblk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":82,"friends_count":268,"listed_count":3,"created_at":"Mon - Mar 08 16:21:49 +0000 2010","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CFF09E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121160043\/1470707256","profile_link_color":"79BD9A","profile_sidebar_border_color":"0B486B","profile_sidebar_fill_color":"3B8686","profile_text_color":"A8DBA8","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":192241530,"id_str":"192241530","name":"Denise - Vollan","screen_name":"denisevollan1","location":"California, USA","description":"Chronic - Illness | Disability | Dogs | Television | Librarian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":2432,"listed_count":12,"created_at":"Sat - Sep 18 15:45:04 +0000 2010","favourites_count":30289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2262,"lang":null,"status":{"created_at":"Thu - Mar 24 02:34:02 +0000 2022","id":1506821612347162627,"id_str":"1506821612347162627","text":"@TheLibraryLouse - Thank you!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheLibraryLouse","name":"The - Library Louse \ud83c\uddfa\ud83c\udde6","id":1176323787991715840,"id_str":"1176323787991715840","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506818884900433920,"in_reply_to_status_id_str":"1506818884900433920","in_reply_to_user_id":1176323787991715840,"in_reply_to_user_id_str":"1176323787991715840","in_reply_to_screen_name":"TheLibraryLouse","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485458273729843201\/5H__Wuaq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485458273729843201\/5H__Wuaq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192241530\/1587763013","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":279785240,"id_str":"279785240","name":"Hiren - Chauhan","screen_name":"HJChauhan2003","location":"Sydney","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":406,"friends_count":5002,"listed_count":1,"created_at":"Sun - Apr 10 01:04:55 +0000 2011","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3618,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508419549968863232\/MMEE9kIM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508419549968863232\/MMEE9kIM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279785240\/1349421216","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1514665436,"id_str":"1514665436","name":"Ben","screen_name":"bensrubin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":1512,"listed_count":0,"created_at":"Thu - Jun 13 22:47:32 +0000 2013","favourites_count":42585,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1710,"lang":null,"status":{"created_at":"Fri - Mar 25 22:10:49 +0000 2022","id":1507480147041165319,"id_str":"1507480147041165319","text":"RT - @stan_okl: If America had the majoritarian political institutions common to - almost every single advanced democracy on Earth, these peopl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stan_okl","name":"Stan - Oklobdzija -- \u0421\u043b\u0430\u0432\u0430 \u0423\u043a\u0440\u0430\u0457\u043d\u0456 - \ud83c\uddfa\ud83c\udde6","id":242240781,"id_str":"242240781","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:44:01 +0000 2022","id":1507473403963273219,"id_str":"1507473403963273219","text":"If - America had the majoritarian political institutions common to almost every - single advanced democracy on Earth, t\u2026 https:\/\/t.co\/qamKWLVI8o","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qamKWLVI8o","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507473403963273219","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507128207232757773,"quoted_status_id_str":"1507128207232757773","retweet_count":8,"favorite_count":97,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507128207232757773,"quoted_status_id_str":"1507128207232757773","retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268294112647639042\/-XdjtlU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268294112647639042\/-XdjtlU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1514665436\/1490936298","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1186687670925303808,"id_str":"1186687670925303808","name":"Rosemary","screen_name":"Rosemar38224943","location":"","description":"Been - who I am. A conservative Biafran.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":315,"listed_count":0,"created_at":"Tue - Oct 22 16:56:38 +0000 2019","favourites_count":2185,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2424,"lang":null,"status":{"created_at":"Wed - Nov 11 11:11:55 +0000 2020","id":1326482784068702212,"id_str":"1326482784068702212","text":"RT - @TheNationNews: Falz, Davido, Tuface, Tiwa Savage, others petitioned over - #EndSARS protests https:\/\/t.co\/AolEqRVFZl","truncated":false,"entities":{"hashtags":[{"text":"EndSARS","indices":[77,85]}],"symbols":[],"user_mentions":[{"screen_name":"TheNationNews","name":"The - Nation Nigeria","id":85318467,"id_str":"85318467","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/AolEqRVFZl","expanded_url":"http:\/\/community.thenationonlineng.net\/forum\/falz-davido-tuface-tiwa-savage-others-petitioned-over-endsars-pro?xg_source=twitter","display_url":"community.thenationonlineng.net\/forum\/falz-dav\u2026","indices":[96,119]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 11 11:10:37 +0000 2020","id":1326482459362463744,"id_str":"1326482459362463744","text":"Falz, - Davido, Tuface, Tiwa Savage, others petitioned over #EndSARS protests https:\/\/t.co\/AolEqRVFZl","truncated":false,"entities":{"hashtags":[{"text":"EndSARS","indices":[58,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AolEqRVFZl","expanded_url":"http:\/\/community.thenationonlineng.net\/forum\/falz-davido-tuface-tiwa-savage-others-petitioned-over-endsars-pro?xg_source=twitter","display_url":"community.thenationonlineng.net\/forum\/falz-dav\u2026","indices":[77,100]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":31,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1085350831,"id_str":"1085350831","name":"Wendy - Fedele","screen_name":"WFedele","location":"Cape Town, South Africa","description":"Businesswoman,proud - https:\/\/t.co\/17Rddbd0lc greatest wish is for all my fellow countrymen to - have a roof over their head and to not go to bed hungry.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/17Rddbd0lc","expanded_url":"http:\/\/mother.My","display_url":"mother.My","indices":[20,43]}]}},"protected":false,"followers_count":1250,"friends_count":1953,"listed_count":2,"created_at":"Sun - Jan 13 07:46:23 +0000 2013","favourites_count":45728,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17035,"lang":null,"status":{"created_at":"Sat - Mar 26 07:20:56 +0000 2022","id":1507618587669934083,"id_str":"1507618587669934083","text":"RT - @JimmyRamokgopa: A lot of the social problems in South Africa can be solved - if government officials simply do what they receive a guaran\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JimmyRamokgopa","name":"Jimmy - Ramokgopa","id":799932163,"id_str":"799932163","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:09:48 +0000 2022","id":1507615786843713542,"id_str":"1507615786843713542","text":"A - lot of the social problems in South Africa can be solved if government officials - simply do what they receive a gu\u2026 https:\/\/t.co\/uJJDaxJXTI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uJJDaxJXTI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507615786843713542","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":239,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":60,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897567050675232769\/IHypEm_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897567050675232769\/IHypEm_Z_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238324866891169792,"id_str":"1238324866891169792","name":"Astra","screen_name":"Astra49197986","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":121,"listed_count":0,"created_at":"Fri - Mar 13 04:44:12 +0000 2020","favourites_count":402,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Wed - Feb 16 04:44:08 +0000 2022","id":1493808390929207299,"id_str":"1493808390929207299","text":"@LizaYuzda - @Sheila_Scott Nerdle?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LizaYuzda","name":"LizaYuzda","id":309119004,"id_str":"309119004","indices":[0,10]},{"screen_name":"Sheila_Scott","name":"Sheila - Scott","id":142465049,"id_str":"142465049","indices":[11,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493804404452970500,"in_reply_to_status_id_str":"1493804404452970500","in_reply_to_user_id":309119004,"in_reply_to_user_id_str":"309119004","in_reply_to_screen_name":"LizaYuzda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290153505475289089\/Zp-CrNoY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290153505475289089\/Zp-CrNoY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238324866891169792\/1596431575","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1159106783467773952,"id_str":"1159106783467773952","name":"Anali - Alegria","screen_name":"AnaliAlegria","location":"","description":"press sec - for @HELPCmteDems | dual citizen \ud83c\uddfa\ud83c\uddf8 \ud83c\uddf5\ud83c\uddea - | views my own | she\/hers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":959,"listed_count":3,"created_at":"Wed - Aug 07 14:19:27 +0000 2019","favourites_count":1452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":343,"lang":null,"status":{"created_at":"Fri - Mar 25 23:57:08 +0000 2022","id":1507506901424254981,"id_str":"1507506901424254981","text":"RT - @RepKClark: The child care crisis, summed up in a headline. https:\/\/t.co\/rHUSZgV3iw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepKClark","name":"Katherine - Clark","id":2293131060,"id_str":"2293131060","indices":[3,13]}],"urls":[],"media":[{"id":1507345844772691970,"id_str":"1507345844772691970","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","url":"https:\/\/t.co\/rHUSZgV3iw","display_url":"pic.twitter.com\/rHUSZgV3iw","expanded_url":"https:\/\/twitter.com\/RepKClark\/status\/1507346034992758796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":625,"resize":"fit"},"small":{"w":680,"h":354,"resize":"fit"},"large":{"w":1978,"h":1031,"resize":"fit"}},"source_status_id":1507346034992758796,"source_status_id_str":"1507346034992758796","source_user_id":2293131060,"source_user_id_str":"2293131060"}]},"extended_entities":{"media":[{"id":1507345844772691970,"id_str":"1507345844772691970","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","url":"https:\/\/t.co\/rHUSZgV3iw","display_url":"pic.twitter.com\/rHUSZgV3iw","expanded_url":"https:\/\/twitter.com\/RepKClark\/status\/1507346034992758796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":625,"resize":"fit"},"small":{"w":680,"h":354,"resize":"fit"},"large":{"w":1978,"h":1031,"resize":"fit"}},"source_status_id":1507346034992758796,"source_status_id_str":"1507346034992758796","source_user_id":2293131060,"source_user_id_str":"2293131060"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:17:54 +0000 2022","id":1507346034992758796,"id_str":"1507346034992758796","text":"The - child care crisis, summed up in a headline. https:\/\/t.co\/rHUSZgV3iw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507345844772691970,"id_str":"1507345844772691970","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","url":"https:\/\/t.co\/rHUSZgV3iw","display_url":"pic.twitter.com\/rHUSZgV3iw","expanded_url":"https:\/\/twitter.com\/RepKClark\/status\/1507346034992758796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":625,"resize":"fit"},"small":{"w":680,"h":354,"resize":"fit"},"large":{"w":1978,"h":1031,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507345844772691970,"id_str":"1507345844772691970","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsrDz9WYAIdqGp.jpg","url":"https:\/\/t.co\/rHUSZgV3iw","display_url":"pic.twitter.com\/rHUSZgV3iw","expanded_url":"https:\/\/twitter.com\/RepKClark\/status\/1507346034992758796\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":625,"resize":"fit"},"small":{"w":680,"h":354,"resize":"fit"},"large":{"w":1978,"h":1031,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":248,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390060453250977801\/2oWQrBGy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390060453250977801\/2oWQrBGy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159106783467773952\/1620251223","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17181451,"id_str":"17181451","name":"Unapologetic - Geek Girl","screen_name":"TasiaChiba","location":"Alabama, USA","description":"\/me - artist, coder, designer, writer, nerd. \n** B.A. International Relations ** - Front End Manager during Pandemic ** \nLove & Compassion 4 all, yo~ \u2764","url":"https:\/\/t.co\/vcc73cd1Nj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vcc73cd1Nj","expanded_url":"http:\/\/cloverpetals.com\/log\/","display_url":"cloverpetals.com\/log\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":1781,"listed_count":5,"created_at":"Wed - Nov 05 04:18:45 +0000 2008","favourites_count":37795,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5698,"lang":null,"status":{"created_at":"Sat - Mar 26 05:10:56 +0000 2022","id":1507585873809969155,"id_str":"1507585873809969155","text":"RT - @jackeparrock: This really is quite something. Wait for the total admonishment - of Hungary\u2019s Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackeparrock","name":"Jack - Parrock","id":218901217,"id_str":"218901217","indices":[3,16]}],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:00:35 +0000 2022","id":1507386974851805194,"id_str":"1507386974851805194","text":"This - really is quite something. Wait for the total admonishment of Hungary\u2019s - Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"0653bb913c88c1ea","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0653bb913c88c1ea.json","place_type":"city","name":"Brussels","full_name":"Brussels, - Belgium","country_code":"BE","country":"Belgium","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[4.3139889,50.7963282],[4.4369472,50.7963282],[4.4369472,50.9137064],[4.3139889,50.9137064]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12529,"favorite_count":50564,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12529,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B16","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1337176499\/Kah_zril-icon_wheeee_-_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1337176499\/Kah_zril-icon_wheeee_-_2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17181451\/1603662741","profile_link_color":"918E7A","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"292923","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4807904131,"id_str":"4807904131","name":"Vijai - Kumar","screen_name":"vijaiTandon1","location":"Mandawali, New Delhi","description":"I - had served 50 years in India \ud83c\uddee\ud83c\uddf3 and Abroad. I am Civil - Graduates \ud83c\udf93 Engineer \ud83d\udc68\u200d\ud83d\udcbb\/ Consultant.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":393,"listed_count":0,"created_at":"Sun - Jan 24 14:01:15 +0000 2016","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2420,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268188484663226373\/jr_aGqDY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268188484663226373\/jr_aGqDY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4807904131\/1591194613","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1348410626,"id_str":"1348410626","name":"Strolz","screen_name":"virtuoso___","location":"","description":"","url":"https:\/\/t.co\/VDpE90OfiD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VDpE90OfiD","expanded_url":"http:\/\/invalid.com","display_url":"invalid.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":147,"friends_count":172,"listed_count":0,"created_at":"Sat - Apr 13 05:12:18 +0000 2013","favourites_count":3636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1968,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347559989272072194\/4NGii5-m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347559989272072194\/4NGii5-m_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302461772733935616,"id_str":"1302461772733935616","name":"You - Are My Jesstonie","screen_name":"102nie","location":"","description":"Asphodel - Meadows Resident (Soon)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":190,"listed_count":1,"created_at":"Sun - Sep 06 04:21:18 +0000 2020","favourites_count":2967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":812,"lang":null,"status":{"created_at":"Sat - Mar 26 07:53:49 +0000 2022","id":1507626863400611842,"id_str":"1507626863400611842","text":"RT - @JudithGeology: I''m here to remind you that 20,000 years ago, sea level was - ~130 m lower than today.\n\nFor Southeast Asia, that means tha\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JudithGeology","name":"Dr. - Judith Hubbard","id":796849786536206337,"id_str":"796849786536206337","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 05:32:07 +0000 2022","id":1506866428913147904,"id_str":"1506866428913147904","text":"I''m - here to remind you that 20,000 years ago, sea level was ~130 m lower than - today.\n\nFor Southeast Asia, that mean\u2026 https:\/\/t.co\/qtUshY21Ql","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qtUshY21Ql","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506866428913147904","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3124,"favorite_count":11223,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3124,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501894856846704640\/mJrNELuj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501894856846704640\/mJrNELuj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1503851329,"id_str":"1503851329","name":"Haldun - Alperat","screen_name":"AlperatHaldun","location":"Istanbul, Turkey","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":541,"listed_count":1,"created_at":"Tue - Jun 11 14:37:24 +0000 2013","favourites_count":195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sun - Jun 02 16:58:35 +0000 2019","id":1135229233440186369,"id_str":"1135229233440186369","text":"@AtillaYesilada1 - Final 4?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AtillaYesilada1","name":"Atilla - Yesilada","id":510407143,"id_str":"510407143","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1135216704580149251,"in_reply_to_status_id_str":"1135216704580149251","in_reply_to_user_id":510407143,"in_reply_to_user_id_str":"510407143","in_reply_to_screen_name":"AtillaYesilada1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704752844382068736\/pZqmdXWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704752844382068736\/pZqmdXWP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201240439518568449,"id_str":"1201240439518568449","name":"@realDonnyboy","screen_name":"realDonnyboy1","location":"","description":"The - real thoughts of a very stable genius, Donald writes one thing; I write what - he actually thinks so you can really know what manner of man is Donald J Trump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":269,"listed_count":0,"created_at":"Sun - Dec 01 20:43:50 +0000 2019","favourites_count":709,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5122,"lang":null,"status":{"created_at":"Wed - Mar 17 09:18:18 +0000 2021","id":1372115065206374401,"id_str":"1372115065206374401","text":"@GMB - @atehjewel Secrets and Lies, that is what they should call the Netflix film, - whaddya think they have been paid\u2026 https:\/\/t.co\/P88y60ptc6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GMB","name":"Good - Morning Britain","id":19424427,"id_str":"19424427","indices":[0,4]},{"screen_name":"atehjewel","name":"ateh - jewel, HonDmedia","id":23600721,"id_str":"23600721","indices":[5,15]}],"urls":[{"url":"https:\/\/t.co\/P88y60ptc6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1372115065206374401","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1372105474162720769,"in_reply_to_status_id_str":"1372105474162720769","in_reply_to_user_id":19424427,"in_reply_to_user_id_str":"19424427","in_reply_to_screen_name":"GMB","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279715010441330688\/yKc2W2li_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279715010441330688\/yKc2W2li_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201240439518568449\/1593942126","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":602708821,"id_str":"602708821","name":"E - sir","screen_name":"bernard_elias","location":"","description":"Simple and - cool","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":567,"listed_count":0,"created_at":"Fri - Jun 08 12:10:19 +0000 2012","favourites_count":1719,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":631,"lang":null,"status":{"created_at":"Fri - Mar 25 11:10:49 +0000 2022","id":1507314054578200615,"id_str":"1507314054578200615","text":"@DominicOmondiO - That''s your wish but sorry","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DominicOmondiO","name":"Captain - Dominic Omondi","id":824295261065347072,"id_str":"824295261065347072","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506975122648879110,"in_reply_to_status_id_str":"1506975122648879110","in_reply_to_user_id":824295261065347072,"in_reply_to_user_id_str":"824295261065347072","in_reply_to_screen_name":"DominicOmondiO","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266363967875592192\/FVqwZguo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266363967875592192\/FVqwZguo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286015374484549634,"id_str":"1286015374484549634","name":"Abdulmalikhussaini","screen_name":"Abdulma62692004","location":"","description":"Am - easygoing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":575,"friends_count":999,"listed_count":0,"created_at":"Wed - Jul 22 19:09:28 +0000 2020","favourites_count":901,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":178,"lang":null,"status":{"created_at":"Sat - Nov 07 04:50:48 +0000 2020","id":1324937324057255938,"id_str":"1324937324057255938","text":"Oga - sir https:\/\/t.co\/YavAmeUR8m","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YavAmeUR8m","expanded_url":"https:\/\/twitter.com\/FalkeAbba\/status\/1324875655432048641","display_url":"twitter.com\/FalkeAbba\/stat\u2026","indices":[8,31]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1324875655432048641,"quoted_status_id_str":"1324875655432048641","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"is"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313513165309837312\/NdmEJgTg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313513165309837312\/NdmEJgTg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286015374484549634\/1602000924","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":241087349,"id_str":"241087349","name":"Jean - Abrahamson","screen_name":"abrjea01","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":378,"listed_count":0,"created_at":"Fri - Jan 21 12:37:25 +0000 2011","favourites_count":59,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Tue - Sep 25 15:10:29 +0000 2018","id":1044605063979839488,"id_str":"1044605063979839488","text":"RT - @CEChargers: Kindergarten Craft Fun in the Media Center with Mrs. Decker! #AisforApple - #FallCraftFun @DCChargers466 https:\/\/t.co\/lnPQmG\u2026","truncated":false,"entities":{"hashtags":[{"text":"AisforApple","indices":[78,90]},{"text":"FallCraftFun","indices":[91,104]}],"symbols":[],"user_mentions":[{"screen_name":"CEChargers","name":"Cokato - Elementary","id":3018749844,"id_str":"3018749844","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Sep 24 19:47:57 +0000 2018","id":1044312503445000193,"id_str":"1044312503445000193","text":"Kindergarten - Craft Fun in the Media Center with Mrs. Decker! #AisforApple #FallCraftFun - @DCChargers466 https:\/\/t.co\/lnPQmGH2tG","truncated":false,"entities":{"hashtags":[{"text":"AisforApple","indices":[62,74]},{"text":"FallCraftFun","indices":[75,88]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1044312492573446145,"id_str":"1044312492573446145","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/Dn4krdJX0AEDydS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dn4krdJX0AEDydS.jpg","url":"https:\/\/t.co\/lnPQmGH2tG","display_url":"pic.twitter.com\/lnPQmGH2tG","expanded_url":"https:\/\/twitter.com\/CEChargers\/status\/1044312503445000193\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1044312492573446145,"id_str":"1044312492573446145","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/Dn4krdJX0AEDydS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dn4krdJX0AEDydS.jpg","url":"https:\/\/t.co\/lnPQmGH2tG","display_url":"pic.twitter.com\/lnPQmGH2tG","expanded_url":"https:\/\/twitter.com\/CEChargers\/status\/1044312503445000193\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}},{"id":1044312492577607684,"id_str":"1044312492577607684","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/Dn4krdKXUAQQDZo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dn4krdKXUAQQDZo.jpg","url":"https:\/\/t.co\/lnPQmGH2tG","display_url":"pic.twitter.com\/lnPQmGH2tG","expanded_url":"https:\/\/twitter.com\/CEChargers\/status\/1044312503445000193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}},{"id":1044312492900372481,"id_str":"1044312492900372481","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/Dn4kreXUUAEZFA8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dn4kreXUUAEZFA8.jpg","url":"https:\/\/t.co\/lnPQmGH2tG","display_url":"pic.twitter.com\/lnPQmGH2tG","expanded_url":"https:\/\/twitter.com\/CEChargers\/status\/1044312503445000193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825544573342593024\/bcHKaf_b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825544573342593024\/bcHKaf_b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4625929934,"id_str":"4625929934","name":"Lee - skrzypchak","screen_name":"LeeSkrzypchak","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1844,"listed_count":0,"created_at":"Mon - Dec 21 23:29:27 +0000 2015","favourites_count":180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - Mar 14 18:53:57 +0000 2022","id":1503444339376091137,"id_str":"1503444339376091137","text":"RT - @duty2warn: Russian oligarch Leonid Nevzlin announces he will renounce his - Russian citizenship to protest the war. He says he''s against\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"duty2warn","name":"Duty - To Warn \ud83d\udd09","id":879147821915615233,"id_str":"879147821915615233","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 01:36:08 +0000 2022","id":1503183161907310593,"id_str":"1503183161907310593","text":"Russian - oligarch Leonid Nevzlin announces he will renounce his Russian citizenship - to protest the war. He says he''s\u2026 https:\/\/t.co\/mJd7cjQK5D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mJd7cjQK5D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503183161907310593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10562,"favorite_count":51319,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10562,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":910462346,"id_str":"910462346","name":"Kipkemboi - kirong''","screen_name":"kirongbenjamin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":155,"listed_count":0,"created_at":"Sun - Oct 28 14:52:13 +0000 2012","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/947135029628547077\/TL5nSH5__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/947135029628547077\/TL5nSH5__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1384721059,"id_str":"1384721059","name":"OLadim\u00a3Ji","screen_name":"DimskFlemmy001","location":"Iowa","description":"Nothing - in this life is a waste, we all aspire for success into an immense solution,But - Only God is the healer. And he has sent YOU and I to save This WORLD.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":327,"friends_count":2299,"listed_count":1,"created_at":"Sat - Apr 27 15:19:58 +0000 2013","favourites_count":340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1441,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481695011116834818\/HNWWfwls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481695011116834818\/HNWWfwls_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1384721059\/1554813296","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1114137406821761028,"id_str":"1114137406821761028","name":"erin - schneeman","screen_name":"SchneemanErin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":15,"listed_count":0,"created_at":"Fri - Apr 05 12:07:12 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":995601978,"id_str":"995601978","name":"Melissa - Hernandez Enriquez","screen_name":"U2FanMelissa","location":"San Diego, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":189,"listed_count":0,"created_at":"Fri - Dec 07 18:30:47 +0000 2012","favourites_count":869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Wed - Apr 14 01:13:38 +0000 2021","id":1382139952012554242,"id_str":"1382139952012554242","text":"RT - @Angry_Staffer: Twitter, I\u2019m told this super douche lives in The Summit - in Columbia, South Carolina. If you recognize him, please DM me\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angry_Staffer","name":"Angry - Staffer","id":848148994102611969,"id_str":"848148994102611969","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 13 23:52:34 +0000 2021","id":1382119550985048068,"id_str":"1382119550985048068","text":"Twitter, - I\u2019m told this super douche lives in The Summit in Columbia, South Carolina. - If you recognize him, please D\u2026 https:\/\/t.co\/FbPxXdLUOB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FbPxXdLUOB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1382119550985048068","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18261,"favorite_count":36854,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18261,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257045527717277696\/VhkxrAIy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257045527717277696\/VhkxrAIy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995601978\/1588537984","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797334190970859521,"id_str":"797334190970859521","name":"Teleu - of masurura","screen_name":"ole_of","location":"kilgoris","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":421,"listed_count":0,"created_at":"Sat - Nov 12 07:04:19 +0000 2016","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Wed - Mar 23 09:08:20 +0000 2022","id":1506558455699677184,"id_str":"1506558455699677184","text":"@StandardKenya - Thanks for the information to enable us plan","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StandardKenya","name":"The - Standard Digital","id":53037279,"id_str":"53037279","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506547154302783488,"in_reply_to_status_id_str":"1506547154302783488","in_reply_to_user_id":53037279,"in_reply_to_user_id_str":"53037279","in_reply_to_screen_name":"StandardKenya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463457073300180992\/Ycy7Iw7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463457073300180992\/Ycy7Iw7o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":404796257,"id_str":"404796257","name":"kaleidoscope","screen_name":"audrey2921","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1788,"listed_count":0,"created_at":"Fri - Nov 04 12:33:03 +0000 2011","favourites_count":1101,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145,"lang":null,"status":{"created_at":"Sun - Feb 27 22:27:34 +0000 2022","id":1498062280348549123,"id_str":"1498062280348549123","text":"@ayeletw - https:\/\/t.co\/7tkjoTopZo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ayeletw","name":"Ayelet - Waldman","id":18209478,"id_str":"18209478","indices":[0,8]}],"urls":[],"media":[{"id":1498062277899075584,"id_str":"1498062277899075584","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/FMovtGWWQAAbVau.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMovtGWWQAAbVau.jpg","url":"https:\/\/t.co\/7tkjoTopZo","display_url":"pic.twitter.com\/7tkjoTopZo","expanded_url":"https:\/\/twitter.com\/audrey2921\/status\/1498062280348549123\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":685,"h":487,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"large":{"w":685,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498062277899075584,"id_str":"1498062277899075584","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/FMovtGWWQAAbVau.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMovtGWWQAAbVau.jpg","url":"https:\/\/t.co\/7tkjoTopZo","display_url":"pic.twitter.com\/7tkjoTopZo","expanded_url":"https:\/\/twitter.com\/audrey2921\/status\/1498062280348549123\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":685,"h":487,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"large":{"w":685,"h":487,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498024740333633537,"in_reply_to_status_id_str":"1498024740333633537","in_reply_to_user_id":18209478,"in_reply_to_user_id_str":"18209478","in_reply_to_screen_name":"ayeletw","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278176555139809281\/CWUQEf7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278176555139809281\/CWUQEf7w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145606792,"id_str":"145606792","name":"Lesley - Caw","screen_name":"cawhome","location":"Johannesburg, South Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":314,"listed_count":1,"created_at":"Wed - May 19 11:27:21 +0000 2010","favourites_count":341,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"status":{"created_at":"Sat - Mar 26 04:16:41 +0000 2022","id":1507572221585281027,"id_str":"1507572221585281027","text":"@covid_parent - \u201cUnacceptable views\u201d - says it all!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"covid_parent","name":"PETRIFIED - COVID PARENT","id":1438913169796239364,"id_str":"1438913169796239364","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507010704716443661,"in_reply_to_status_id_str":"1507010704716443661","in_reply_to_user_id":1438913169796239364,"in_reply_to_user_id_str":"1438913169796239364","in_reply_to_screen_name":"covid_parent","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3395317716\/6805a9f182aff75db7011b319d53a872_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3395317716\/6805a9f182aff75db7011b319d53a872_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2377831679,"id_str":"2377831679","name":"Kate - Dempsey","screen_name":"katewdempsey","location":"Maine","description":"I\u2019m - here, there, and everywhere.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":670,"friends_count":1283,"listed_count":14,"created_at":"Mon - Mar 03 02:35:18 +0000 2014","favourites_count":4278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1927,"lang":null,"status":{"created_at":"Fri - Mar 25 20:44:46 +0000 2022","id":1507458494022447106,"id_str":"1507458494022447106","text":"@pxwhittle - Why does this happen and we all need explicit instructions","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pxwhittle","name":"Patrick - Whittle","id":115941650,"id_str":"115941650","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507348234393604096,"in_reply_to_status_id_str":"1507348234393604096","in_reply_to_user_id":115941650,"in_reply_to_user_id_str":"115941650","in_reply_to_screen_name":"pxwhittle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446998963165483010\/y8phIprC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446998963165483010\/y8phIprC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377831679\/1633826412","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1064962282625646593,"id_str":"1064962282625646593","name":"Divya","screen_name":"rnDivya1526","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":192,"listed_count":0,"created_at":"Tue - Nov 20 19:22:49 +0000 2018","favourites_count":125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Tue - May 18 09:25:25 +0000 2021","id":1394584900821393408,"id_str":"1394584900821393408","text":"@NEWJplus - M.s.dhoni","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NEWJplus","name":"NEWJ","id":998913282479132672,"id_str":"998913282479132672","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1394261416450871302,"in_reply_to_status_id_str":"1394261416450871302","in_reply_to_user_id":998913282479132672,"in_reply_to_user_id_str":"998913282479132672","in_reply_to_screen_name":"NEWJplus","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3096427003,"id_str":"3096427003","name":"Christina - Mitchell","screen_name":"mitchellchris_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":502,"listed_count":0,"created_at":"Wed - Mar 18 14:39:02 +0000 2015","favourites_count":287,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Mon - Feb 07 13:38:53 +0000 2022","id":1490681471601983488,"id_str":"1490681471601983488","text":"RT - @MittRomney: Shame falls on a party that would censure persons of conscience, - who seek truth in the face of vitriol. Honor attaches to L\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MittRomney","name":"Mitt - Romney","id":50055701,"id_str":"50055701","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 04 14:46:42 +0000 2022","id":1489611374930141184,"id_str":"1489611374930141184","text":"Shame - falls on a party that would censure persons of conscience, who seek truth - in the face of vitriol. Honor attac\u2026 https:\/\/t.co\/1d37lo5DzE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1d37lo5DzE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1489611374930141184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17727,"favorite_count":116816,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":17727,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280487913784881152\/BJvkccrf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280487913784881152\/BJvkccrf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":772121256212652036,"id_str":"772121256212652036","name":"Chijindu - Biafra","screen_name":"chijinduBiafra","location":"Kuala Lumpur Malaysia ","description":"News - General News Business News Entertainment World News Photography Comedy Music - Entertainment Sports Movies Travel","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":1882,"listed_count":12,"created_at":"Sat - Sep 03 17:17:07 +0000 2016","favourites_count":76,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6330,"lang":null,"status":{"created_at":"Tue - Feb 22 12:12:53 +0000 2022","id":1496095647061377030,"id_str":"1496095647061377030","text":"RT - @HananyaNaftali: Sanction Russia.\nSanction Putin.\n\nThis is a time in history - where the actions of today will determine what our world wi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HananyaNaftali","name":"Hananya - Naftali","id":619400667,"id_str":"619400667","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 21 23:08:05 +0000 2022","id":1495898146546884608,"id_str":"1495898146546884608","text":"Sanction - Russia.\nSanction Putin.\n\nThis is a time in history where the actions of - today will determine what our worl\u2026 https:\/\/t.co\/kQOjSLNF1X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kQOjSLNF1X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495898146546884608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":308,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":87,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484461084832456708\/-BSV2E6I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484461084832456708\/-BSV2E6I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772121256212652036\/1602079049","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1138058408265998336,"id_str":"1138058408265998336","name":"Elly - Korinko","screen_name":"EllyKorinko5","location":"","description":"I''m wonderfully - and fearfully made!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":2643,"listed_count":0,"created_at":"Mon - Jun 10 12:20:43 +0000 2019","favourites_count":2979,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":403,"lang":null,"status":{"created_at":"Tue - Jan 11 16:22:26 +0000 2022","id":1480938158846058497,"id_str":"1480938158846058497","text":"RT - @POTUS: History has never been kind to those who have sided with voter suppression - over voting rights. And it will not be kind to those\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 11 14:32:26 +0000 2022","id":1480910476217397259,"id_str":"1480910476217397259","text":"History - has never been kind to those who have sided with voter suppression over voting - rights. And it will not be k\u2026 https:\/\/t.co\/Vz9HPvbDcK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Vz9HPvbDcK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1480910476217397259","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7075,"favorite_count":37616,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7075,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1138058947179483137\/7W1reRT6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1138058947179483137\/7W1reRT6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2373047768,"id_str":"2373047768","name":"bogie - gallardo","screen_name":"BogieNites","location":"Philippines","description":"the - witdom to stop before saying too much...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":510,"listed_count":1,"created_at":"Wed - Mar 05 02:47:04 +0000 2014","favourites_count":4118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1539,"lang":null,"status":{"created_at":"Tue - Mar 22 00:13:33 +0000 2022","id":1506061483423121408,"id_str":"1506061483423121408","text":"@teta_limcangco - @kalakumag Doable, actionable plan ang metrics. Pero may nagbalita saken masarap - ang leche flan sa Tondo\ud83d\ude1d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"teta_limcangco","name":"Teta - Limcangco","id":3093574304,"id_str":"3093574304","indices":[0,15]},{"screen_name":"kalakumag","name":"Emong - Canton","id":351167545,"id_str":"351167545","indices":[16,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505954929222987782,"in_reply_to_status_id_str":"1505954929222987782","in_reply_to_user_id":3093574304,"in_reply_to_user_id_str":"3093574304","in_reply_to_screen_name":"teta_limcangco","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1409000822516506629\/dVxVqZ0u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1409000822516506629\/dVxVqZ0u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2373047768\/1624766893","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835099920193454082,"id_str":"835099920193454082","name":"Nina - Baker","screen_name":"WisconsinGal1","location":"Madison Wi","description":"Wisconsin - woman.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":463,"listed_count":0,"created_at":"Fri - Feb 24 12:11:51 +0000 2017","favourites_count":6283,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":351,"lang":null,"status":{"created_at":"Mon - Jan 18 13:46:25 +0000 2021","id":1351164042262540293,"id_str":"1351164042262540293","text":"RT - @MSNBC: \"It''s a cruel jest to say to a bootless man that he ought to lift - himself by his bootstraps. \n\nAnd many Negroes, by the thousand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 18 13:31:00 +0000 2021","id":1351160160421437440,"id_str":"1351160160421437440","text":"\"It''s - a cruel jest to say to a bootless man that he ought to lift himself by his - bootstraps. \n\nAnd many Negroes, by\u2026 https:\/\/t.co\/hAZD7WWIYh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hAZD7WWIYh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1351160160421437440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1049,"favorite_count":2772,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1049,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268539527326568457\/3opZI_Iy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268539527326568457\/3opZI_Iy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":342719711,"id_str":"342719711","name":"LostrisWannabe","screen_name":"terrywills67","location":"Texas, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":1034,"listed_count":0,"created_at":"Tue - Jul 26 13:40:03 +0000 2011","favourites_count":636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":213,"lang":null,"status":{"created_at":"Mon - Mar 14 16:38:34 +0000 2022","id":1503410269237698563,"id_str":"1503410269237698563","text":"@joncoopertweets - D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503389785615908874,"in_reply_to_status_id_str":"1503389785615908874","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848576847449395200\/ZIFgseME_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848576847449395200\/ZIFgseME_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299189821634641920,"id_str":"1299189821634641920","name":"Nick - Bazzi \ud83c\uddfa\ud83c\uddf8\ud83c\uddf1\ud83c\udde7(\ud83d\udc10)","screen_name":"NickBazzi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":692,"listed_count":0,"created_at":"Fri - Aug 28 03:39:37 +0000 2020","favourites_count":33784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299190038618570752\/znJEULTY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299190038618570752\/znJEULTY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266826771682508800,"id_str":"1266826771682508800","name":"Swamp - witchery","screen_name":"Myscandinavian1","location":"Madrid","description":"He - who makes a beast of himself gets rid of the pain of being a man. - Sammy - J. \ud83e\udd18","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":1089,"listed_count":0,"created_at":"Sat - May 30 20:20:34 +0000 2020","favourites_count":1460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":null,"status":{"created_at":"Sat - Mar 05 22:29:39 +0000 2022","id":1500237128734810113,"id_str":"1500237128734810113","text":"RT - @EllenBarryNYT: \u201cA lot of veterans, we have a calling to serve, and we - trained our whole career for this kind of war,\u201d a former Marine t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EllenBarryNYT","name":"Ellen - Barry","id":199766003,"id_str":"199766003","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 13:02:10 +0000 2022","id":1500094318677213185,"id_str":"1500094318677213185","text":"\u201cA - lot of veterans, we have a calling to serve, and we trained our whole career - for this kind of war,\u201d a former Mar\u2026 https:\/\/t.co\/dr53x57U1Z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dr53x57U1Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500094318677213185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":323,"favorite_count":1009,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":323,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298267680701464579\/1UrV4G_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298267680701464579\/1UrV4G_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266826771682508800\/1591366527","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267269061689380865,"id_str":"1267269061689380865","name":"Doug - Rees","screen_name":"DougRees17","location":"Yukon, OK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":768,"listed_count":8,"created_at":"Mon - Jun 01 01:38:14 +0000 2020","favourites_count":10391,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":898,"lang":null,"status":{"created_at":"Tue - Mar 22 21:02:09 +0000 2022","id":1506375705256464390,"id_str":"1506375705256464390","text":"RT - @Leslieoo7: If Hunter Biden is going to be a campaign issue, it only seems - fair that Jim Jordan''s past at OSU wrestling be thoroughly in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Leslieoo7","name":"Leslieoo7 - \uea00\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":2420848054,"id_str":"2420848054","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 22:46:48 +0000 2022","id":1506039652880429064,"id_str":"1506039652880429064","text":"If - Hunter Biden is going to be a campaign issue, it only seems fair that Jim - Jordan''s past at OSU wrestling be thor\u2026 https:\/\/t.co\/Gt10pvnQLc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Gt10pvnQLc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506039652880429064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5505,"favorite_count":26813,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5505,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383397230539726848\/clrmIGfb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383397230539726848\/clrmIGfb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267269061689380865\/1615758543","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":346155885,"id_str":"346155885","name":"Jim - Moore","screen_name":"JamesMoore53","location":"Huntsville, AL","description":"Marine - Corps Veteran. Chemist with Boeing. Husband. Dad. Founder of The Bird Fund. - MBA in Finance. I fat-finger or poorly edit most of my tweets. #Resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":441,"friends_count":1351,"listed_count":0,"created_at":"Sun - Jul 31 20:30:43 +0000 2011","favourites_count":853,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1849,"lang":null,"status":{"created_at":"Thu - Mar 17 00:31:13 +0000 2022","id":1504253988727926784,"id_str":"1504253988727926784","text":"I\u2019m - listening to Liar''s Poker on my Audible app. Try Audible and get it here: - https:\/\/t.co\/xRlIzRwJrb https:\/\/t.co\/f7r3ydrrW5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xRlIzRwJrb","expanded_url":"https:\/\/www.audible.com\/pd?asin=B09R3X66PP&source_code=ASSORAP0511160006&share_location=rate_review","display_url":"audible.com\/pd?asin=B09R3X\u2026","indices":[78,101]}],"media":[{"id":1504253984462225412,"id_str":"1504253984462225412","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/FOAvB2vWQAQmiYW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOAvB2vWQAQmiYW.jpg","url":"https:\/\/t.co\/f7r3ydrrW5","display_url":"pic.twitter.com\/f7r3ydrrW5","expanded_url":"https:\/\/twitter.com\/JamesMoore53\/status\/1504253988727926784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":558,"h":558,"resize":"fit"},"small":{"w":558,"h":558,"resize":"fit"},"large":{"w":558,"h":558,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504253984462225412,"id_str":"1504253984462225412","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/FOAvB2vWQAQmiYW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOAvB2vWQAQmiYW.jpg","url":"https:\/\/t.co\/f7r3ydrrW5","display_url":"pic.twitter.com\/f7r3ydrrW5","expanded_url":"https:\/\/twitter.com\/JamesMoore53\/status\/1504253988727926784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":558,"h":558,"resize":"fit"},"small":{"w":558,"h":558,"resize":"fit"},"large":{"w":558,"h":558,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/996475643108847616\/3uMHRRN-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/996475643108847616\/3uMHRRN-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346155885\/1538461361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":64073446,"id_str":"64073446","name":"Sheffield - Idiomas","screen_name":"sheffieldidioma","location":"Cataguases,Minas Gerais,Brasil","description":"\ud83c\uddec\ud83c\udde7 - Ingl\u00eas a partir de 3 anos\n\ud83c\uddea\ud83c\uddf8 Espanhol a partir - de 7 anos\n\ud83d\udc69\ud83c\udffe\u200d\ud83c\udfeb \ud83d\udcbbPresencial - e on-line\n\ud83d\udcdd Preparat\u00f3rio de Exames Internacionais\n\u2708\ufe0f - Interc\u00e2mbio cultural","url":"https:\/\/t.co\/SEH43y8Js5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SEH43y8Js5","expanded_url":"http:\/\/sheffieldidiomas.com","display_url":"sheffieldidiomas.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":538,"friends_count":1185,"listed_count":2,"created_at":"Sun - Aug 09 00:24:52 +0000 2009","favourites_count":382,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":535,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501173722270605319\/b0ntyppj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501173722270605319\/b0ntyppj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64073446\/1631190598","profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1106583594561089536,"id_str":"1106583594561089536","name":"Saraajuddin - sarhadi","screen_name":"saraajuddin","location":"Afghanistan","description":"My - name is saraajuddin sarhadi from Afghanistan Helmand province did job as Nawa - Barakzia &Garamsir destricts governor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":1677,"listed_count":0,"created_at":"Fri - Mar 15 15:51:03 +0000 2019","favourites_count":6113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":243,"lang":null,"status":{"created_at":"Fri - Jan 21 10:52:12 +0000 2022","id":1484478931868790784,"id_str":"1484478931868790784","text":"RT - @pashtonzoy: \u067c\u0648\u064a\u067c\u0631 \u06a9\u064a \u0645\u064a \u064a\u0648\u0647 - \u0639\u0631\u0627\u0642\u064a \u0645\u0644\u06ab\u0631\u064a \u0644\u0647 - \u062f\u06d0 \u0639\u06a9\u0633\u0648\u0646\u0648 \u0633\u0631\u0647 \u0644\u064a\u06a9\u0644\u064a:\n\"\u062f - \u0639\u0631\u0627\u0642 \u067e\u0647 \u062c\u0646\u0648\u0628 \u06a9\u064a - \u062f \u0628\u0635\u0631\u06d0 \u062f \u0627\u0644\u0627\u0634\u0631 \u0633\u06cc\u0646\u062f - \u062f\u0648\u0647 \u0639\u06a9\u0633\u0648\u0646\u0647\u060c \u062f \u067e\u0627\u0686\u0627\u0647\u06cd - \u062f \u0648\u0631\u0681\u064a \u0627\u0648 \u0628\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pashtonzoy","name":"Sardarwali - \u270d\ufe0f","id":3222222654,"id_str":"3222222654","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 21 10:46:20 +0000 2022","id":1484477454320386053,"id_str":"1484477454320386053","text":"\u067c\u0648\u064a\u067c\u0631 - \u06a9\u064a \u0645\u064a \u064a\u0648\u0647 \u0639\u0631\u0627\u0642\u064a - \u0645\u0644\u06ab\u0631\u064a \u0644\u0647 \u062f\u06d0 \u0639\u06a9\u0633\u0648\u0646\u0648 - \u0633\u0631\u0647 \u0644\u064a\u06a9\u0644\u064a:\n\"\u062f \u0639\u0631\u0627\u0642 - \u067e\u0647 \u062c\u0646\u0648\u0628 \u06a9\u064a \u062f \u0628\u0635\u0631\u06d0 - \u062f \u0627\u0644\u0627\u0634\u0631 \u0633\u06cc\u0646\u062f \u062f\u0648\u0647 - \u0639\u06a9\u0633\u0648\u0646\u0647\u060c \u062f \u067e\u0627\u0686\u0627\u0647\u06cd - \u062f \u0648\u2026 https:\/\/t.co\/7G3b1aySe9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7G3b1aySe9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484477454320386053","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":211,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ps"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ps"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444600705482903560\/PwvE8eDz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444600705482903560\/PwvE8eDz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1106583594561089536\/1582823813","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20917810,"id_str":"20917810","name":"Sniggity","screen_name":"sniggity","location":"","description":"I''m - Freedom loving American who calls bullshit when I see it, and I see lots of - it on Twitter.","url":"https:\/\/t.co\/khqKB379Vq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/khqKB379Vq","expanded_url":"http:\/\/old.reddit.com\/r\/humanoidencounter","display_url":"old.reddit.com\/r\/humanoidenco\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":261,"friends_count":1500,"listed_count":0,"created_at":"Sun - Feb 15 16:09:31 +0000 2009","favourites_count":9388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3506,"lang":null,"status":{"created_at":"Wed - Mar 09 19:13:06 +0000 2022","id":1501637216266764295,"id_str":"1501637216266764295","text":"@Sandy18667286 - @Chris_Meloni Yet again, another dumb liberal ignoring the baby growing within - the mom''s body.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sandy18667286","name":"Regulargal@CloverValleyNM","id":1446866773500858372,"id_str":"1446866773500858372","indices":[0,14]},{"screen_name":"Chris_Meloni","name":"Chris - Meloni","id":222185665,"id_str":"222185665","indices":[15,28]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501057056014540806,"in_reply_to_status_id_str":"1501057056014540806","in_reply_to_user_id":1446866773500858372,"in_reply_to_user_id_str":"1446866773500858372","in_reply_to_screen_name":"Sandy18667286","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289365406092845056\/o2nwdm_m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289365406092845056\/o2nwdm_m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20917810\/1604416282","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22937938,"id_str":"22937938","name":"alan - shaiman","screen_name":"ashaiman","location":"NJ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":295,"listed_count":0,"created_at":"Thu - Mar 05 16:17:10 +0000 2009","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Sun - Dec 27 01:21:00 +0000 2020","id":1343003918155063296,"id_str":"1343003918155063296","text":"RT - @kenolin1: https:\/\/t.co\/pKt0mGHs0E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kenolin1","name":"Ken - Olin","id":164679813,"id_str":"164679813","indices":[3,12]}],"urls":[],"media":[{"id":1342856837834526721,"id_str":"1342856837834526721","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","url":"https:\/\/t.co\/pKt0mGHs0E","display_url":"pic.twitter.com\/pKt0mGHs0E","expanded_url":"https:\/\/twitter.com\/kenolin1\/status\/1342856842528006146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1342856842528006146,"source_status_id_str":"1342856842528006146","source_user_id":164679813,"source_user_id_str":"164679813"}]},"extended_entities":{"media":[{"id":1342856837834526721,"id_str":"1342856837834526721","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","url":"https:\/\/t.co\/pKt0mGHs0E","display_url":"pic.twitter.com\/pKt0mGHs0E","expanded_url":"https:\/\/twitter.com\/kenolin1\/status\/1342856842528006146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1342856842528006146,"source_status_id_str":"1342856842528006146","source_user_id":164679813,"source_user_id_str":"164679813"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 26 15:36:34 +0000 2020","id":1342856842528006146,"id_str":"1342856842528006146","text":"https:\/\/t.co\/pKt0mGHs0E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1342856837834526721,"id_str":"1342856837834526721","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","url":"https:\/\/t.co\/pKt0mGHs0E","display_url":"pic.twitter.com\/pKt0mGHs0E","expanded_url":"https:\/\/twitter.com\/kenolin1\/status\/1342856842528006146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1342856837834526721,"id_str":"1342856837834526721","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqLJLeNU0AEyuLz.jpg","url":"https:\/\/t.co\/pKt0mGHs0E","display_url":"pic.twitter.com\/pKt0mGHs0E","expanded_url":"https:\/\/twitter.com\/kenolin1\/status\/1342856842528006146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":1823,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":119,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1829591984\/twitterpic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1829591984\/twitterpic_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247181707113107458,"id_str":"1247181707113107458","name":"Akparawa - So_Fresh","screen_name":"MrSo_Fresh","location":"Uyo, Nigeria","description":"always - strict,\nalways serious","url":"https:\/\/t.co\/dw6Qj4idGH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dw6Qj4idGH","expanded_url":"http:\/\/www.sofreshchickens.com","display_url":"sofreshchickens.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":974,"listed_count":0,"created_at":"Mon - Apr 06 15:18:26 +0000 2020","favourites_count":15493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":506,"lang":null,"status":{"created_at":"Fri - Jun 04 19:12:00 +0000 2021","id":1400893115951726597,"id_str":"1400893115951726597","text":"RT - @thesecret: Be grateful for what you have. Big time!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thesecret","name":"The - Secret","id":278682576,"id_str":"278682576","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jun 04 05:30:00 +0000 2021","id":1400686250147856389,"id_str":"1400686250147856389","text":"Be - grateful for what you have. Big time!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2119,"favorite_count":9998,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2119,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324827501294690305\/rThJiYwo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324827501294690305\/rThJiYwo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1247181707113107458\/1586402956","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":866618551020290048,"id_str":"866618551020290048","name":"Henry - Tang","screen_name":"hwstang","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":353,"listed_count":0,"created_at":"Mon - May 22 11:35:38 +0000 2017","favourites_count":178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299711655107072001,"id_str":"1299711655107072001","name":"Smitty\ud83c\uddfa\ud83c\uddf8\ud83d\udde3\ufe0f\ud83c\uddfa\ud83c\uddf8\ud83d\udde3\ufe0f\ud83c\uddfa\ud83c\uddf8\ud83d\udde3\ufe0f - \ud83c\uddfa\ud83c\uddf2","screen_name":"Smitty61214879","location":"I''m - so proud to be a Texan!","description":"God Fearing \u271d\ufe0f Gun Toting - Texan\ud83c\udde8\ud83c\uddf1 on Team America \ud83c\uddfa\ud83c\uddf2 Lover - and Respector of the Right to Free Speech \ud83d\udde3\ufe0fWho Supports President - Donald J. Trump 2020-Forever!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":665,"friends_count":1391,"listed_count":2,"created_at":"Sat - Aug 29 14:13:58 +0000 2020","favourites_count":10745,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4521,"lang":null,"status":{"created_at":"Fri - Mar 25 13:12:03 +0000 2022","id":1507344561227583491,"id_str":"1507344561227583491","text":"@danagould - And just who are you???\ud83e\udd14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"danagould","name":"Dana - Gould","id":71273952,"id_str":"71273952","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507041642418634752,"in_reply_to_status_id_str":"1507041642418634752","in_reply_to_user_id":71273952,"in_reply_to_user_id_str":"71273952","in_reply_to_screen_name":"danagould","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324802708801507328\/YWZcoUP-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324802708801507328\/YWZcoUP-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299711655107072001\/1607458717","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4017189514,"id_str":"4017189514","name":"Amber - Singh","screen_name":"AmberSingh95","location":"","description":"Managing - Partnerships at The Hub Project | @gwtweets alum | All opinions are my own, - but you can borrow them anytime | she\/they \ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":337,"friends_count":1707,"listed_count":1,"created_at":"Thu - Oct 22 13:27:12 +0000 2015","favourites_count":20030,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3168,"lang":null,"status":{"created_at":"Fri - Mar 25 18:06:56 +0000 2022","id":1507418771480363013,"id_str":"1507418771480363013","text":"RT - @vote4robgill: Wayne Pankratz of @Applebees says that higher gas prices are - great for business because most employees live check to chec\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vote4robgill","name":"Rob - Gill \ud83c\udde8\ud83c\udde6\u2764\ufe0f\ud83c\uddfa\ud83c\udde6","id":997620077599035392,"id_str":"997620077599035392","indices":[3,16]},{"screen_name":"Applebees","name":"Applebee''s - Grill + Bar","id":74452613,"id_str":"74452613","indices":[36,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:19:34 +0000 2022","id":1506666976344784900,"id_str":"1506666976344784900","text":"Wayne - Pankratz of @Applebees says that higher gas prices are great for business - because most employees live check t\u2026 https:\/\/t.co\/9uuWrtk0gB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Applebees","name":"Applebee''s - Grill + Bar","id":74452613,"id_str":"74452613","indices":[18,28]}],"urls":[{"url":"https:\/\/t.co\/9uuWrtk0gB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506666976344784900","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11754,"favorite_count":24135,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11754,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017247076193914880\/avgBPjcb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017247076193914880\/avgBPjcb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4017189514\/1602859589","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2541732012,"id_str":"2541732012","name":"Susan - Cook-Williams","screen_name":"CookSusanL","location":"Jefferson City, MO","description":"Mother, - wife, sister, daughter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":615,"listed_count":8,"created_at":"Mon - Jun 02 15:58:35 +0000 2014","favourites_count":405,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":367,"lang":null,"status":{"created_at":"Wed - Jun 23 17:09:21 +0000 2021","id":1407747619171020809,"id_str":"1407747619171020809","text":"RT - @PPMO_Advocates: Some #MoLeg politicians are trying to ban birth control by - playing semantics & calling it abortion. \n\n1\ufe0f\u20e3 Everyone dese\u2026","truncated":false,"entities":{"hashtags":[{"text":"MoLeg","indices":[25,31]}],"symbols":[],"user_mentions":[{"screen_name":"PPMO_Advocates","name":"Planned - Parenthood Advocates in Missouri","id":161777825,"id_str":"161777825","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 23 16:13:39 +0000 2021","id":1407733601173659658,"id_str":"1407733601173659658","text":"Some - #MoLeg politicians are trying to ban birth control by playing semantics & - calling it abortion. \n\n1\ufe0f\u20e3 Everyone\u2026 https:\/\/t.co\/OD0LAFXgC9","truncated":true,"entities":{"hashtags":[{"text":"MoLeg","indices":[5,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OD0LAFXgC9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1407733601173659658","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1407453924542631936,"quoted_status_id_str":"1407453924542631936","retweet_count":6,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1407453924542631936,"quoted_status_id_str":"1407453924542631936","retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900173117703770112\/Zol-1fzy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900173117703770112\/Zol-1fzy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2541732012\/1503452969","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3383370977,"id_str":"3383370977","name":"Sadia","screen_name":"sadia_tweets","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":137,"friends_count":140,"listed_count":0,"created_at":"Sun - Jul 19 17:56:11 +0000 2015","favourites_count":17168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7922,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210899450564153344\/I3G2G08H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210899450564153344\/I3G2G08H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3383370977\/1577392265","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":754851843109490689,"id_str":"754851843109490689","name":"Sherry - Gaffin","screen_name":"SherryGaffin1","location":"Ohio, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":18,"friends_count":1526,"listed_count":0,"created_at":"Mon - Jul 18 01:34:38 +0000 2016","favourites_count":21658,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":811,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283535263671754755,"id_str":"1283535263671754755","name":"Martey - Oganigani","screen_name":"3SWNy82jm65Zjj9","location":"Sefwi Wiawso...","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":236,"friends_count":875,"listed_count":0,"created_at":"Wed - Jul 15 22:54:27 +0000 2020","favourites_count":272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Tue - Feb 23 21:49:20 +0000 2021","id":1364331534027735041,"id_str":"1364331534027735041","text":"@tabi_henry - Its bound to happen indeed","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tabi_henry","name":"PRINCE - HENRY KOFORIDUA \ud83c\uddec\ud83c\udded\ud83d\udcaf","id":1004974740522590208,"id_str":"1004974740522590208","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1364200333803737088,"in_reply_to_status_id_str":"1364200333803737088","in_reply_to_user_id":1004974740522590208,"in_reply_to_user_id_str":"1004974740522590208","in_reply_to_screen_name":"tabi_henry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297306223906349063\/pVKwDrQs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297306223906349063\/pVKwDrQs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":904564587311153153,"id_str":"904564587311153153","name":"Shidqi - D.","screen_name":"shdkong1","location":"","description":"vibing in a society","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":109,"listed_count":0,"created_at":"Mon - Sep 04 04:39:38 +0000 2017","favourites_count":192,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Sat - Mar 05 10:42:07 +0000 2022","id":1500059072779137024,"id_str":"1500059072779137024","text":"@ArsyadanyRobby - yday i went to maccies alone and it SUCKED https:\/\/t.co\/Yugo8Fq4kw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArsyadanyRobby","name":"robby - arsyadany.","id":1098337399,"id_str":"1098337399","indices":[0,15]}],"urls":[],"media":[{"id":1500059063157420032,"id_str":"1500059063157420032","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FNFHxTGacAAgD_8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FNFHxTGacAAgD_8.jpg","url":"https:\/\/t.co\/Yugo8Fq4kw","display_url":"pic.twitter.com\/Yugo8Fq4kw","expanded_url":"https:\/\/twitter.com\/shdkong1\/status\/1500059072779137024\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":294,"resize":"fit"},"small":{"w":480,"h":294,"resize":"fit"},"large":{"w":480,"h":294,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500059063157420032,"id_str":"1500059063157420032","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FNFHxTGacAAgD_8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FNFHxTGacAAgD_8.jpg","url":"https:\/\/t.co\/Yugo8Fq4kw","display_url":"pic.twitter.com\/Yugo8Fq4kw","expanded_url":"https:\/\/twitter.com\/shdkong1\/status\/1500059072779137024\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":294,"resize":"fit"},"small":{"w":480,"h":294,"resize":"fit"},"large":{"w":480,"h":294,"resize":"fit"}},"video_info":{"aspect_ratio":[80,49],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FNFHxTGacAAgD_8.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500056783213428737,"in_reply_to_status_id_str":"1500056783213428737","in_reply_to_user_id":1098337399,"in_reply_to_user_id_str":"1098337399","in_reply_to_screen_name":"ArsyadanyRobby","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408374793091502080\/Mmmtyxyt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408374793091502080\/Mmmtyxyt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/904564587311153153\/1539476364","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227016946,"id_str":"227016946","name":"frank - myrtle","screen_name":"frankmyrtle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":136,"friends_count":1873,"listed_count":25,"created_at":"Wed - Dec 15 17:55:44 +0000 2010","favourites_count":10283,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28200,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1109205779096260609\/RSZ6PKuC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109205779096260609\/RSZ6PKuC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227016946\/1553290284","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213541620966023168,"id_str":"1213541620966023168","name":"Omo - olore","screen_name":"olore_omo","location":"Lagos Nigeria","description":"Omo - olore 1952","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":1168,"listed_count":0,"created_at":"Sat - Jan 04 19:24:23 +0000 2020","favourites_count":5899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":733,"lang":null,"status":{"created_at":"Fri - Jan 28 07:18:00 +0000 2022","id":1486961740957036545,"id_str":"1486961740957036545","text":"#NewProfilePic - https:\/\/t.co\/gK9LsUeaa0","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1486961729804382208,"id_str":"1486961729804382208","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FKK_0KOXMAAbduB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKK_0KOXMAAbduB.jpg","url":"https:\/\/t.co\/gK9LsUeaa0","display_url":"pic.twitter.com\/gK9LsUeaa0","expanded_url":"https:\/\/twitter.com\/olore_omo\/status\/1486961740957036545\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1486961729804382208,"id_str":"1486961729804382208","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FKK_0KOXMAAbduB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKK_0KOXMAAbduB.jpg","url":"https:\/\/t.co\/gK9LsUeaa0","display_url":"pic.twitter.com\/gK9LsUeaa0","expanded_url":"https:\/\/twitter.com\/olore_omo\/status\/1486961740957036545\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486961714147037186\/nvfKLjXi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486961714147037186\/nvfKLjXi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213541620966023168\/1618242194","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182020884229509120,"id_str":"1182020884229509120","name":"Shaquille_Oatmeal","screen_name":"whatthe_fuck2","location":"Black - lives matter","description":"Bi\ud83c\udff3\ufe0f\u200d\ud83c\udf08,she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":357,"listed_count":0,"created_at":"Wed - Oct 09 19:52:04 +0000 2019","favourites_count":22215,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1142,"lang":null,"status":{"created_at":"Mon - Feb 14 02:46:25 +0000 2022","id":1493053991386849281,"id_str":"1493053991386849281","text":"RT - @RapSheet: More, please. Best halftime show I\u2019ve ever seen.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RapSheet","name":"Ian - Rapoport","id":16403943,"id_str":"16403943","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 14 01:24:10 +0000 2022","id":1493033289426239488,"id_str":"1493033289426239488","text":"More, - please. Best halftime show I\u2019ve ever seen.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6166,"favorite_count":71385,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6166,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347748854461063174\/06rZGFNx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347748854461063174\/06rZGFNx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1182020884229509120\/1609630277","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":450826088,"id_str":"450826088","name":"Eugenia - Fowlkes","screen_name":"Euginaytor","location":"Brooklyn, NY","description":"abogada - | 1st gen Mexican-American | dog mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":382,"friends_count":1219,"listed_count":2,"created_at":"Fri - Dec 30 18:13:33 +0000 2011","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2761,"lang":null,"status":{"created_at":"Fri - Sep 03 21:19:52 +0000 2021","id":1433902590513848322,"id_str":"1433902590513848322","text":"RT - @DarkRiseProject: REBUILD: a Help Me Find a Therapist program is made possible - with generous donations of $10,000 from @prisonculture &\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DarkRiseProject","name":"Darkness - RISING Project","id":979216596991381504,"id_str":"979216596991381504","indices":[3,19]},{"screen_name":"prisonculture","name":"Desperately - Trying To Be Cancelled For Cash","id":162436508,"id_str":"162436508","indices":[122,136]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Sep 01 22:36:34 +0000 2021","id":1433197114226532353,"id_str":"1433197114226532353","text":"REBUILD: - a Help Me Find a Therapist program is made possible with generous donations - of $10,000 from @prisonculture\u2026 https:\/\/t.co\/qfbLBUbu1H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"prisonculture","name":"Desperately - Trying To Be Cancelled For Cash","id":162436508,"id_str":"162436508","indices":[101,115]}],"urls":[{"url":"https:\/\/t.co\/qfbLBUbu1H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1433197114226532353","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1433193860201582596,"in_reply_to_status_id_str":"1433193860201582596","in_reply_to_user_id":979216596991381504,"in_reply_to_user_id_str":"979216596991381504","in_reply_to_screen_name":"DarkRiseProject","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":108,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":95,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3E1CE6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474615726552064003\/Luyf54rp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474615726552064003\/Luyf54rp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/450826088\/1530838920","profile_link_color":"0D0517","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1D1D1D","profile_text_color":"892DD8","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":390516123,"id_str":"390516123","name":"Marykay - Trainum","screen_name":"MarykayTrainum","location":"Virginia Beach, VA","description":"RN,Patient - Advocate NICU, hospice, Palliative\/end of life care, EMS Infant caregiver - \/ Nanny","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":498,"friends_count":295,"listed_count":5,"created_at":"Fri - Oct 14 03:05:53 +0000 2011","favourites_count":1906,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":380,"lang":null,"status":{"created_at":"Sat - Mar 26 00:50:43 +0000 2022","id":1507520387906772996,"id_str":"1507520387906772996","text":"RT - @StBonaventure: Almost 600 alumni and friends donated more than $48,000 in - less than4\ufe0f\u20e38\ufe0f\u20e3 hours to send 8\ufe0f\u20e3 coach buses - to New York Cit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StBonaventure","name":"St. - Bonaventure U","id":50733898,"id_str":"50733898","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:55:00 +0000 2022","id":1507445970371596291,"id_str":"1507445970371596291","text":"Almost - 600 alumni and friends donated more than $48,000 in less than4\ufe0f\u20e38\ufe0f\u20e3 - hours to send 8\ufe0f\u20e3 coach buses to New Yor\u2026 https:\/\/t.co\/e2ntqXoY5v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e2ntqXoY5v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507445970371596291","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":370,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":66,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5C0B5A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2753461358\/b1f04cc870596184bf39f64f0898900e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2753461358\/b1f04cc870596184bf39f64f0898900e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390516123\/1449261213","profile_link_color":"89C9FA","profile_sidebar_border_color":"EF72B4","profile_sidebar_fill_color":"FF9CDF","profile_text_color":"BD0C43","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4602196272,"id_str":"4602196272","name":"prmydntr","screen_name":"prmydntr","location":"SG","description":"","url":"https:\/\/t.co\/Xy8h7XY8M1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Xy8h7XY8M1","expanded_url":"https:\/\/last.fm\/user\/primayudantra","display_url":"last.fm\/user\/primayuda\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":177,"friends_count":975,"listed_count":20,"created_at":"Sat - Dec 19 10:37:25 +0000 2015","favourites_count":7170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2965,"lang":null,"status":{"created_at":"Thu - Mar 24 06:30:11 +0000 2022","id":1506881041717350405,"id_str":"1506881041717350405","text":"\ud83d\ude80\ud83d\ude80\ud83d\ude80 - https:\/\/t.co\/RXTekaSC1x","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RXTekaSC1x","expanded_url":"https:\/\/twitter.com\/MothershipSG\/status\/1506830905687511040","display_url":"twitter.com\/MothershipSG\/s\u2026","indices":[4,27]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506830905687511040,"quoted_status_id_str":"1506830905687511040","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143199509498830848\/k0ew-iSK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143199509498830848\/k0ew-iSK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4602196272\/1556639947","profile_link_color":"223344","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2280172289,"id_str":"2280172289","name":"Erkan - TAYFAN","screen_name":"TAYFANErkan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":203,"listed_count":0,"created_at":"Mon - Jan 13 23:15:01 +0000 2014","favourites_count":437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":590,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513368131784675328\/FBm78nxu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513368131784675328\/FBm78nxu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2280172289\/1393192705","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1463563573,"id_str":"1463563573","name":"andy - trott","screen_name":"WatrottTrott","location":"North Carolina, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":3364,"listed_count":0,"created_at":"Tue - May 28 01:24:18 +0000 2013","favourites_count":55087,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52193,"lang":null,"status":{"created_at":"Sat - Mar 26 04:13:38 +0000 2022","id":1507571452500971521,"id_str":"1507571452500971521","text":"RT - @MPennington79: Go Tar Heels! @JonesAngell @UNC_Basketball @tpinsonn @Bailey_Marie93 - @UNC_TarHeelFan @ShrunkenHeadSHB @britishtarheel ht\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MPennington79","name":"MariePennington79","id":2795101214,"id_str":"2795101214","indices":[3,17]},{"screen_name":"JonesAngell","name":"Jones - Angell","id":254215318,"id_str":"254215318","indices":[33,45]},{"screen_name":"UNC_Basketball","name":"Carolina - Basketball","id":45575375,"id_str":"45575375","indices":[46,61]},{"screen_name":"tpinsonn","name":"Theo - pinson","id":257492235,"id_str":"257492235","indices":[62,71]},{"screen_name":"Bailey_Marie93","name":"Bailey - Marie Pennington","id":766592610,"id_str":"766592610","indices":[72,87]},{"screen_name":"UNC_TarHeelFan","name":"Tar - Heel Nation","id":1532666899,"id_str":"1532666899","indices":[88,103]},{"screen_name":"ShrunkenHeadSHB","name":"Shrunken - Head","id":1222618107090554887,"id_str":"1222618107090554887","indices":[104,120]},{"screen_name":"britishtarheel","name":"George","id":1192741057219497984,"id_str":"1192741057219497984","indices":[121,136]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:32:03 +0000 2022","id":1507485491792330752,"id_str":"1507485491792330752","text":"Go - Tar Heels! @JonesAngell @UNC_Basketball @tpinsonn @Bailey_Marie93 @UNC_TarHeelFan - @ShrunkenHeadSHB\u2026 https:\/\/t.co\/Zc3t0eQpEq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JonesAngell","name":"Jones - Angell","id":254215318,"id_str":"254215318","indices":[14,26]},{"screen_name":"UNC_Basketball","name":"Carolina - Basketball","id":45575375,"id_str":"45575375","indices":[27,42]},{"screen_name":"tpinsonn","name":"Theo - pinson","id":257492235,"id_str":"257492235","indices":[43,52]},{"screen_name":"Bailey_Marie93","name":"Bailey - Marie Pennington","id":766592610,"id_str":"766592610","indices":[53,68]},{"screen_name":"UNC_TarHeelFan","name":"Tar - Heel Nation","id":1532666899,"id_str":"1532666899","indices":[69,84]},{"screen_name":"ShrunkenHeadSHB","name":"Shrunken - Head","id":1222618107090554887,"id_str":"1222618107090554887","indices":[85,101]}],"urls":[{"url":"https:\/\/t.co\/Zc3t0eQpEq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507485491792330752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":75,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2983392285,"id_str":"2983392285","name":"LakeGirl","screen_name":"Enuffofthistuff","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":713,"listed_count":0,"created_at":"Sun - Jan 18 02:27:31 +0000 2015","favourites_count":38218,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1535,"lang":null,"status":{"created_at":"Thu - Mar 24 23:21:29 +0000 2022","id":1507135543410372609,"id_str":"1507135543410372609","text":"@Breaking911 - No wonder Jen Psaki stayed home. She needs all her resources at hand to handle - the gaffes this old Duffer makes. Oh Joe \ud83e\udd26\u200d\u2640\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Breaking911","name":"Breaking911","id":375721095,"id_str":"375721095","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507127459514400770,"in_reply_to_status_id_str":"1507127459514400770","in_reply_to_user_id":375721095,"in_reply_to_user_id_str":"375721095","in_reply_to_screen_name":"Breaking911","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137164669670633472\/4PEJiBgg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137164669670633472\/4PEJiBgg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2983392285\/1534339545","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785303134482554881,"id_str":"785303134482554881","name":"Lauren - Kaufmann","screen_name":"LaurenSKaufmann","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":372,"listed_count":0,"created_at":"Mon - Oct 10 02:17:12 +0000 2016","favourites_count":268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Fri - Mar 25 17:12:45 +0000 2022","id":1507405137085538305,"id_str":"1507405137085538305","text":"@JasonKander - Pepper spray did the trick for my car. Try it!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JasonKander","name":"Jason - Kander","id":20744708,"id_str":"20744708","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507137795986501633,"in_reply_to_status_id_str":"1507137795986501633","in_reply_to_user_id":20744708,"in_reply_to_user_id_str":"20744708","in_reply_to_screen_name":"JasonKander","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2392788285,"id_str":"2392788285","name":"Ven","screen_name":"JohnsonVen","location":"Detroit, - MI","description":"Father of four; plaintiffs'' personal injury trial lawyer; - spiritualist (raised Methodist); sports enthusiast, especially tennis.","url":"https:\/\/t.co\/3nOkC3lmcF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3nOkC3lmcF","expanded_url":"http:\/\/www.Venjohnsonlaw.com","display_url":"Venjohnsonlaw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":716,"friends_count":927,"listed_count":6,"created_at":"Sat - Mar 08 03:50:56 +0000 2014","favourites_count":15665,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4830,"lang":null,"status":{"created_at":"Sat - Mar 26 10:28:08 +0000 2022","id":1507665698323116033,"id_str":"1507665698323116033","text":"@niknowicki - Congrats","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"niknowicki","name":"Nik","id":1500272012757020677,"id_str":"1500272012757020677","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507355863308193797,"in_reply_to_status_id_str":"1507355863308193797","in_reply_to_user_id":1500272012757020677,"in_reply_to_user_id_str":"1500272012757020677","in_reply_to_screen_name":"niknowicki","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442146568448532480\/G0inWAuV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442146568448532480\/G0inWAuV_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58009544,"id_str":"58009544","name":"John - Stamps","screen_name":"John_Stamps","location":"Birmingham, Alabama","description":"Trial - Lawyer & Uncle Zaddy","url":"https:\/\/t.co\/MgClXsnGBj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MgClXsnGBj","expanded_url":"http:\/\/www.thestampslawgroup.com","display_url":"thestampslawgroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":742,"friends_count":2481,"listed_count":7,"created_at":"Sat - Jul 18 19:25:32 +0000 2009","favourites_count":276,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2605,"lang":null,"status":{"created_at":"Mon - Mar 21 02:32:22 +0000 2022","id":1505734029693407234,"id_str":"1505734029693407234","text":"@xoholly - Don\u2019t be that way. If u can\u2019t say something nice don\u2019t say - anything at all. \ud83d\ude04","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xoholly","name":"holly - \ud83c\udfc8","id":120638987,"id_str":"120638987","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505666023697043465,"in_reply_to_status_id_str":"1505666023697043465","in_reply_to_user_id":120638987,"in_reply_to_user_id_str":"120638987","in_reply_to_screen_name":"xoholly","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342134145540042757\/Vuk9PMZX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342134145540042757\/Vuk9PMZX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58009544\/1494996462","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":752185274755493888,"id_str":"752185274755493888","name":"Mckholm","screen_name":"mckholm","location":"","description":"Parenting - Fitness & Wellness Government & Politics Gov Officials & Agencies DIY & Home - Lifestyle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":362,"listed_count":0,"created_at":"Sun - Jul 10 16:58:39 +0000 2016","favourites_count":929,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":155,"lang":null,"status":{"created_at":"Wed - Jan 26 04:27:44 +0000 2022","id":1486194116513783808,"id_str":"1486194116513783808","text":"RT - @slater_jona: DUCK! https:\/\/t.co\/CFb2A4cSRx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"slater_jona","name":"jonathan - slater","id":1326229862022049793,"id_str":"1326229862022049793","indices":[3,15]}],"urls":[],"media":[{"id":1485922569698086912,"id_str":"1485922569698086912","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","url":"https:\/\/t.co\/CFb2A4cSRx","display_url":"pic.twitter.com\/CFb2A4cSRx","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1485922700782678016\/video\/1","type":"photo","sizes":{"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1485922700782678016,"source_status_id_str":"1485922700782678016","source_user_id":1326229862022049793,"source_user_id_str":"1326229862022049793"}]},"extended_entities":{"media":[{"id":1485922569698086912,"id_str":"1485922569698086912","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","url":"https:\/\/t.co\/CFb2A4cSRx","display_url":"pic.twitter.com\/CFb2A4cSRx","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1485922700782678016\/video\/1","type":"video","sizes":{"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1485922700782678016,"source_status_id_str":"1485922700782678016","source_user_id":1326229862022049793,"source_user_id_str":"1326229862022049793","video_info":{"aspect_ratio":[16,9],"duration_millis":40761,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/1024x576\/Tz6r3fQakZh_NPTV.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/480x270\/FUFNT3eqJl11zmdU.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/640x360\/y5itPcI8K9Ccqjn1.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/pl\/lkceNSu3UNx47W6p.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 25 10:29:13 +0000 2022","id":1485922700782678016,"id_str":"1485922700782678016","text":"DUCK! - https:\/\/t.co\/CFb2A4cSRx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1485922569698086912,"id_str":"1485922569698086912","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","url":"https:\/\/t.co\/CFb2A4cSRx","display_url":"pic.twitter.com\/CFb2A4cSRx","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1485922700782678016\/video\/1","type":"photo","sizes":{"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1485922569698086912,"id_str":"1485922569698086912","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485922569698086912\/pu\/img\/4MsD7SuIHccnA5Tz.jpg","url":"https:\/\/t.co\/CFb2A4cSRx","display_url":"pic.twitter.com\/CFb2A4cSRx","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1485922700782678016\/video\/1","type":"video","sizes":{"medium":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":40761,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/1024x576\/Tz6r3fQakZh_NPTV.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/480x270\/FUFNT3eqJl11zmdU.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/vid\/640x360\/y5itPcI8K9Ccqjn1.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485922569698086912\/pu\/pl\/lkceNSu3UNx47W6p.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":387,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/802172194474184704\/WT2N1Fqd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/802172194474184704\/WT2N1Fqd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41925683,"id_str":"41925683","name":"Lauren - McCormick","screen_name":"Lauren_P_Mc","location":"\u00dcT: 34.828634,-87.076742","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":223,"listed_count":3,"created_at":"Fri - May 22 23:24:04 +0000 2009","favourites_count":140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":268,"lang":null,"status":{"created_at":"Wed - Jan 13 18:28:57 +0000 2021","id":1349423205723877376,"id_str":"1349423205723877376","text":"@PeterBurnsESPN - @Wskipworth05 Don\u2019t forget @BamaGymnastics beat Kentucky!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeterBurnsESPN","name":"Peter - Burns","id":21926735,"id_str":"21926735","indices":[0,15]},{"screen_name":"Wskipworth05","name":"Whitney - Skipworth","id":255257701,"id_str":"255257701","indices":[16,29]},{"screen_name":"BamaGymnastics","name":"Alabama - Gymnastics","id":69627822,"id_str":"69627822","indices":[43,58]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1349208679405527044,"in_reply_to_status_id_str":"1349208679405527044","in_reply_to_user_id":21926735,"in_reply_to_user_id_str":"21926735","in_reply_to_screen_name":"PeterBurnsESPN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3500356999\/933d93603c3474f946890d4da2e1fd3f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3500356999\/933d93603c3474f946890d4da2e1fd3f_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52172265,"id_str":"52172265","name":"Nicole","screen_name":"npfeif","location":"New - York, NY","description":"coffee. PR. wine. repeat. running Consumer Tech @SourceCodeComms. - and most importantly, dog mom. opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":486,"friends_count":1964,"listed_count":10,"created_at":"Mon - Jun 29 20:09:16 +0000 2009","favourites_count":6545,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6649,"lang":null,"status":{"created_at":"Wed - Mar 09 15:03:05 +0000 2022","id":1501574298133315590,"id_str":"1501574298133315590","text":"@crypto_bobby - @PFTCommenter https:\/\/t.co\/XLUzPrqcns","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"crypto_bobby","name":"Rob - Paone","id":897802137832501249,"id_str":"897802137832501249","indices":[0,13]},{"screen_name":"PFTCommenter","name":"PFTCommenter - (Carson Wentz num.1 superfan)","id":858716964,"id_str":"858716964","indices":[14,27]}],"urls":[],"media":[{"id":1501574294501040132,"id_str":"1501574294501040132","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FNap3XuXoAQiXs_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNap3XuXoAQiXs_.jpg","url":"https:\/\/t.co\/XLUzPrqcns","display_url":"pic.twitter.com\/XLUzPrqcns","expanded_url":"https:\/\/twitter.com\/npfeif\/status\/1501574298133315590\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":180,"resize":"fit"},"small":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501574294501040132,"id_str":"1501574294501040132","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FNap3XuXoAQiXs_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNap3XuXoAQiXs_.jpg","url":"https:\/\/t.co\/XLUzPrqcns","display_url":"pic.twitter.com\/XLUzPrqcns","expanded_url":"https:\/\/twitter.com\/npfeif\/status\/1501574298133315590\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":180,"resize":"fit"},"small":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501573821115117571,"in_reply_to_status_id_str":"1501573821115117571","in_reply_to_user_id":897802137832501249,"in_reply_to_user_id_str":"897802137832501249","in_reply_to_screen_name":"crypto_bobby","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"134067","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1002622814669680641\/MmFkLBzB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1002622814669680641\/MmFkLBzB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52172265\/1527878722","profile_link_color":"1C5D87","profile_sidebar_border_color":"BBEAA6","profile_sidebar_fill_color":"72E3A5","profile_text_color":"1A8EA7","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":278144323,"id_str":"278144323","name":"Anthony - Strube","screen_name":"anthonystrube","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":295,"listed_count":0,"created_at":"Wed - Apr 06 18:02:31 +0000 2011","favourites_count":28,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sun - May 23 21:26:06 +0000 2021","id":1396578208032645120,"id_str":"1396578208032645120","text":"@MattWallace888 - Hi keep","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattWallace888","name":"Matt - Wallace","id":805532293951606785,"id_str":"805532293951606785","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1396193153300979712,"in_reply_to_status_id_str":"1396193153300979712","in_reply_to_user_id":805532293951606785,"in_reply_to_user_id_str":"805532293951606785","in_reply_to_screen_name":"MattWallace888","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302225837\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302225837\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":773968627024400384,"id_str":"773968627024400384","name":"Jackie","screen_name":"JackieofUSA","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":535,"listed_count":0,"created_at":"Thu - Sep 08 19:37:55 +0000 2016","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Fri - Mar 18 01:26:55 +0000 2022","id":1504630396033675268,"id_str":"1504630396033675268","text":"@an_capitalist - @OiseauDeGuerre @EskimoLiberty You are!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"an_capitalist","name":"Voluntaryist - Keith","id":2865757775,"id_str":"2865757775","indices":[0,14]},{"screen_name":"OiseauDeGuerre","name":"Nick - Miller","id":762845698567974912,"id_str":"762845698567974912","indices":[15,30]},{"screen_name":"EskimoLiberty","name":"Eskimo - Libertarian","id":1373046310819954694,"id_str":"1373046310819954694","indices":[31,45]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504614146838474777,"in_reply_to_status_id_str":"1504614146838474777","in_reply_to_user_id":2865757775,"in_reply_to_user_id_str":"2865757775","in_reply_to_screen_name":"an_capitalist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250924789017042945\/ohPR6zP3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250924789017042945\/ohPR6zP3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266644307227877377,"id_str":"1266644307227877377","name":"james - panos","screen_name":"jamespanos9","location":"Lafayette, LA","description":"I\u2019m - a happy guy that just loves life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":422,"friends_count":2790,"listed_count":0,"created_at":"Sat - May 30 08:16:16 +0000 2020","favourites_count":804,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":439,"lang":null,"status":{"created_at":"Sat - Jan 01 16:24:00 +0000 2022","id":1477314674211364874,"id_str":"1477314674211364874","text":"@straightmfpimp - jamespanos11@gmail.com To meet you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"straightmfpimp","name":"jes - \ud83e\udd0d","id":781393087448780801,"id_str":"781393087448780801","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1458931478629208065,"in_reply_to_status_id_str":"1458931478629208065","in_reply_to_user_id":781393087448780801,"in_reply_to_user_id_str":"781393087448780801","in_reply_to_screen_name":"straightmfpimp","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289898398691340289\/PONdkW0P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289898398691340289\/PONdkW0P_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1224538405091938305,"id_str":"1224538405091938305","name":"A","screen_name":"Angela62112111","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1147,"listed_count":0,"created_at":"Tue - Feb 04 03:41:32 +0000 2020","favourites_count":235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265333241357058048\/By-fsGhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265333241357058048\/By-fsGhS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":241247966,"id_str":"241247966","name":"Christine - Preston","screen_name":"stoutydog","location":"Lakeville, Minnesota","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":466,"listed_count":0,"created_at":"Fri - Jan 21 20:26:28 +0000 2011","favourites_count":1654,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":411,"lang":null,"status":{"created_at":"Fri - Mar 25 01:49:00 +0000 2022","id":1507172667778080774,"id_str":"1507172667778080774","text":"RT - @JRubinBlogger: Chief Justice Roberts, I think you have a problem in your - building.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JRubinBlogger","name":"Jennifer - ''I stand with Ukraine'' Rubin \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":218975278,"id_str":"218975278","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:56:38 +0000 2022","id":1507129289195626496,"id_str":"1507129289195626496","text":"Chief - Justice Roberts, I think you have a problem in your building.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8219,"favorite_count":61835,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8219,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395111723\/41stbirthdaypic_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395111723\/41stbirthdaypic_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":366637542,"id_str":"366637542","name":"Intelligent - Dsgnr","screen_name":"Dayo_D4","location":"Lagos Nigeria","description":"Brand - Identity Designer at @quattuorhq\nBuilder+Architect by passion.","url":"https:\/\/t.co\/P5GsO4KT7e","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/P5GsO4KT7e","expanded_url":"http:\/\/www.behance.net\/dayod4","display_url":"behance.net\/dayod4","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":797,"friends_count":566,"listed_count":23,"created_at":"Fri - Sep 02 14:56:35 +0000 2011","favourites_count":2151,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10202,"lang":null,"status":{"created_at":"Fri - Mar 25 13:50:42 +0000 2022","id":1507354287906697236,"id_str":"1507354287906697236","text":"RT - @Beautiful_Nubia: https:\/\/t.co\/NycPvJbxRm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Beautiful_Nubia","name":"Beautiful - Nubia","id":330946326,"id_str":"330946326","indices":[3,19]}],"urls":[],"media":[{"id":1507335984412872707,"id_str":"1507335984412872707","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","url":"https:\/\/t.co\/NycPvJbxRm","display_url":"pic.twitter.com\/NycPvJbxRm","expanded_url":"https:\/\/twitter.com\/Beautiful_Nubia\/status\/1507335986338054145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1507335986338054145,"source_status_id_str":"1507335986338054145","source_user_id":330946326,"source_user_id_str":"330946326"}]},"extended_entities":{"media":[{"id":1507335984412872707,"id_str":"1507335984412872707","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","url":"https:\/\/t.co\/NycPvJbxRm","display_url":"pic.twitter.com\/NycPvJbxRm","expanded_url":"https:\/\/twitter.com\/Beautiful_Nubia\/status\/1507335986338054145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1507335986338054145,"source_status_id_str":"1507335986338054145","source_user_id":330946326,"source_user_id_str":"330946326"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:37:58 +0000 2022","id":1507335986338054145,"id_str":"1507335986338054145","text":"https:\/\/t.co\/NycPvJbxRm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507335984412872707,"id_str":"1507335984412872707","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","url":"https:\/\/t.co\/NycPvJbxRm","display_url":"pic.twitter.com\/NycPvJbxRm","expanded_url":"https:\/\/twitter.com\/Beautiful_Nubia\/status\/1507335986338054145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507335984412872707,"id_str":"1507335984412872707","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsiF3QX0AMO1TO.jpg","url":"https:\/\/t.co\/NycPvJbxRm","display_url":"pic.twitter.com\/NycPvJbxRm","expanded_url":"https:\/\/twitter.com\/Beautiful_Nubia\/status\/1507335986338054145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":93,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":41,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293110738660331520\/gadNkKAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293110738660331520\/gadNkKAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366637542\/1591982709","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4229781081,"id_str":"4229781081","name":"REICK - ZIEMER","screen_name":"kenwynder","location":"","description":"a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":3110,"listed_count":5,"created_at":"Thu - Nov 19 22:41:12 +0000 2015","favourites_count":42307,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sun - Aug 09 03:31:37 +0000 2020","id":1292302489283371008,"id_str":"1292302489283371008","text":"A - #ES","truncated":false,"entities":{"hashtags":[{"text":"ES","indices":[2,5]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":134956715,"id_str":"134956715","name":"Hey - Jude","screen_name":"heyjudeboston","location":"Boston, England","description":"Survivor - of 55 minutes of CPR during cardiac arrest due to SCAD - Spontaneous Coronary - Artery Dissection. Life is so fragile. PLEASE LOVE ONE ANOTHER.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":409,"friends_count":2068,"listed_count":5,"created_at":"Mon - Apr 19 23:24:15 +0000 2010","favourites_count":25756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5182,"lang":null,"status":{"created_at":"Sat - Mar 26 01:06:01 +0000 2022","id":1507524238550474753,"id_str":"1507524238550474753","text":"@MassGovernor - You are more than welcome to run for POTUS - 2024 race. I\u2019ll be your - campaign manager \ud83d\ude0e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MassGovernor","name":"Charlie - Baker","id":18023868,"id_str":"18023868","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":18023868,"in_reply_to_user_id_str":"18023868","in_reply_to_screen_name":"MassGovernor","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1796841770\/306669131_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1796841770\/306669131_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1016135579455504385,"id_str":"1016135579455504385","name":"prakash - choudhary","screen_name":"prakash57091042","location":"Marine Lines, Mumbai","description":"NGOs - and Social Good","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":1175,"listed_count":0,"created_at":"Mon - Jul 09 01:42:55 +0000 2018","favourites_count":128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"status":{"created_at":"Fri - Nov 12 21:46:19 +0000 2021","id":1459276395062853634,"id_str":"1459276395062853634","text":"\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f - https:\/\/t.co\/9c3lBJnAwM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1459276328096698373,"id_str":"1459276328096698373","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1459276328096698373\/pu\/img\/4rcFFd3aNGdfxmPR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1459276328096698373\/pu\/img\/4rcFFd3aNGdfxmPR.jpg","url":"https:\/\/t.co\/9c3lBJnAwM","display_url":"pic.twitter.com\/9c3lBJnAwM","expanded_url":"https:\/\/twitter.com\/prakash57091042\/status\/1459276395062853634\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1459276328096698373,"id_str":"1459276328096698373","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1459276328096698373\/pu\/img\/4rcFFd3aNGdfxmPR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1459276328096698373\/pu\/img\/4rcFFd3aNGdfxmPR.jpg","url":"https:\/\/t.co\/9c3lBJnAwM","display_url":"pic.twitter.com\/9c3lBJnAwM","expanded_url":"https:\/\/twitter.com\/prakash57091042\/status\/1459276395062853634\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":7473,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1459276328096698373\/pu\/pl\/ULLii6_-bYsVy3A2.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1459276328096698373\/pu\/vid\/1280x720\/M4VI2yN7x7v84knt.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1459276328096698373\/pu\/vid\/480x270\/y3-DycJ1q9PhiCwa.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1459276328096698373\/pu\/vid\/640x360\/oEusXmA-JEbCXgkT.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016140435868340224\/utlUrqyk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016140435868340224\/utlUrqyk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1016135579455504385\/1584860391","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":144232014,"id_str":"144232014","name":"Arnold - Paul Pierson","screen_name":"PaulieBigCalves","location":"New York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":49,"listed_count":1,"created_at":"Sat - May 15 17:41:35 +0000 2010","favourites_count":369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Sat - Jul 24 19:00:12 +0000 2021","id":1419009537550561282,"id_str":"1419009537550561282","text":"RT - @MichaelVinsen: Because Dolly is a legend not a twat! https:\/\/t.co\/n4Fe59omFf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelVinsen","name":"Michael - Vinsen","id":1278788564,"id_str":"1278788564","indices":[3,17]}],"urls":[],"media":[{"id":1418904173710651395,"id_str":"1418904173710651395","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","url":"https:\/\/t.co\/n4Fe59omFf","display_url":"pic.twitter.com\/n4Fe59omFf","expanded_url":"https:\/\/twitter.com\/MichaelVinsen\/status\/1418904178211053578\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":818,"resize":"fit"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":828,"h":818,"resize":"fit"}},"source_status_id":1418904178211053578,"source_status_id_str":"1418904178211053578","source_user_id":1278788564,"source_user_id_str":"1278788564"}]},"extended_entities":{"media":[{"id":1418904173710651395,"id_str":"1418904173710651395","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","url":"https:\/\/t.co\/n4Fe59omFf","display_url":"pic.twitter.com\/n4Fe59omFf","expanded_url":"https:\/\/twitter.com\/MichaelVinsen\/status\/1418904178211053578\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":818,"resize":"fit"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":828,"h":818,"resize":"fit"}},"source_status_id":1418904178211053578,"source_status_id_str":"1418904178211053578","source_user_id":1278788564,"source_user_id_str":"1278788564"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jul 24 12:01:32 +0000 2021","id":1418904178211053578,"id_str":"1418904178211053578","text":"Because - Dolly is a legend not a twat! https:\/\/t.co\/n4Fe59omFf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1418904173710651395,"id_str":"1418904173710651395","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","url":"https:\/\/t.co\/n4Fe59omFf","display_url":"pic.twitter.com\/n4Fe59omFf","expanded_url":"https:\/\/twitter.com\/MichaelVinsen\/status\/1418904178211053578\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":818,"resize":"fit"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":828,"h":818,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1418904173710651395,"id_str":"1418904173710651395","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7D11AxXsAM7GNF.jpg","url":"https:\/\/t.co\/n4Fe59omFf","display_url":"pic.twitter.com\/n4Fe59omFf","expanded_url":"https:\/\/twitter.com\/MichaelVinsen\/status\/1418904178211053578\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":818,"resize":"fit"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":828,"h":818,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":591,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":58,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1031328311748780032\/A512TPl2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1031328311748780032\/A512TPl2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1136228479,"id_str":"1136228479","name":"Joe - Mwangi","screen_name":"Joemwangi40","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":21,"friends_count":788,"listed_count":0,"created_at":"Thu - Jan 31 06:41:39 +0000 2013","favourites_count":1770,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":657,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131504583245803520\/zXvA6iiH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131504583245803520\/zXvA6iiH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1136228479\/1558606693","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1132316348,"id_str":"1132316348","name":"HMS - CLAXTON","screen_name":"hmsclaxton","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":1631,"listed_count":0,"created_at":"Tue - Jan 29 22:44:03 +0000 2013","favourites_count":74768,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Jun 18 23:15:13 +0000 2021","id":1406027752088735744,"id_str":"1406027752088735744","text":"RT - @stevesjbryan: Album @rutshelle lan Red anpil \ud83d\ude4c \ud83d\udd25\ud83d\udd25 - F\u00e9licitations \ud83c\udf89\ud83c\udf7e\ud83c\udf88 \ud83c\udf8a belle - evolution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stevesjbryan","name":"Steves - J. Bryan","id":86360431,"id_str":"86360431","indices":[3,16]},{"screen_name":"rutshelle","name":"Rutshelle - Guillaume","id":386596068,"id_str":"386596068","indices":[24,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jun 18 15:55:26 +0000 2021","id":1405917076804472839,"id_str":"1405917076804472839","text":"Album - @rutshelle lan Red anpil \ud83d\ude4c \ud83d\udd25\ud83d\udd25 F\u00e9licitations \ud83c\udf89\ud83c\udf7e\ud83c\udf88 - \ud83c\udf8a belle evolution","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rutshelle","name":"Rutshelle - Guillaume","id":386596068,"id_str":"386596068","indices":[6,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":541,"favorited":false,"retweeted":false,"lang":"fr"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3185157665\/c00e835b27766bad2b527473789d39b4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3185157665\/c00e835b27766bad2b527473789d39b4_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235968160538509312,"id_str":"1235968160538509312","name":"Ruyaknight","screen_name":"Ruyaknight1","location":"","description":"Everything - leaves trace\uff0clike ruts...\nEven electromagnetic radiations.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":474,"listed_count":0,"created_at":"Fri - Mar 06 16:39:24 +0000 2020","favourites_count":1651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1979,"lang":null,"status":{"created_at":"Tue - Apr 20 11:47:01 +0000 2021","id":1384473675915796481,"id_str":"1384473675915796481","text":"RT - @erdocAA: Text from my 10 yr old child this morning: \n\nI hate this \nI hate - my life \nI hate it \n\nThis is your legacy @fordnation @Sflecce\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"erdocAA","name":"ERdoc - \ud83e\udd86\ud83d\ude9b","id":1078322076,"id_str":"1078322076","indices":[3,11]},{"screen_name":"fordnation","name":"Doug - Ford","id":2809959174,"id_str":"2809959174","indices":[119,130]},{"screen_name":"Sflecce","name":"Stephen - Lecce","id":1276123381,"id_str":"1276123381","indices":[131,139]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Apr 19 18:21:27 +0000 2021","id":1384210553141297155,"id_str":"1384210553141297155","text":"Text - from my 10 yr old child this morning: \n\nI hate this \nI hate my life \nI - hate it \n\nThis is your legacy\u2026 https:\/\/t.co\/C1MDdiL9WG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1MDdiL9WG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1384210553141297155","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":542,"favorite_count":1384,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":542,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235968764711141376\/9uHrDok0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235968764711141376\/9uHrDok0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3283371206,"id_str":"3283371206","name":"Barb - Pew","screen_name":"barb_pew","location":"Shoreline, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":111,"listed_count":0,"created_at":"Sat - Jul 18 13:12:40 +0000 2015","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sun - Feb 27 00:59:50 +0000 2022","id":1497738211702947842,"id_str":"1497738211702947842","text":"@BestofBSM - Just tried looking up station locations. That page, and others with Lukoil - won''t load. Hmmm. I did see Getty was a part owner.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BestofBSM","name":"\u0243\u0247s\u0167\u00f8f$GlxyLuna\ud83d\udc8e","id":958389769,"id_str":"958389769","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1496142546971643907,"in_reply_to_status_id_str":"1496142546971643907","in_reply_to_user_id":958389769,"in_reply_to_user_id_str":"958389769","in_reply_to_screen_name":"BestofBSM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189960129078272001\/58yC6PV8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189960129078272001\/58yC6PV8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":829432364,"id_str":"829432364","name":"lil","screen_name":"lilype4rl","location":"Chicago, - IL","description":"I love venting on here!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":530,"listed_count":1,"created_at":"Mon - Sep 17 17:02:14 +0000 2012","favourites_count":14527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4666,"lang":null,"status":{"created_at":"Fri - Mar 25 14:47:03 +0000 2022","id":1507368472157765632,"id_str":"1507368472157765632","text":"RT - @DojaCat: She protecc She attacc but most importantly she a snacc :>","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DojaCat","name":"i - quit","id":568545739,"id_str":"568545739","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 08 19:36:22 +0000 2021","id":1347628229197144065,"id_str":"1347628229197144065","text":"She - protecc She attacc but most importantly she a snacc :>","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4260,"favorite_count":39827,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4260,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204087651986481153\/n93xuggA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204087651986481153\/n93xuggA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829432364\/1443596894","profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":4521503956,"id_str":"4521503956","name":"Axel","screen_name":"27axelst","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":524,"listed_count":0,"created_at":"Fri - Dec 18 05:28:48 +0000 2015","favourites_count":3818,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":908,"lang":null,"status":{"created_at":"Sat - Mar 26 10:05:46 +0000 2022","id":1507660069718171654,"id_str":"1507660069718171654","text":"@CommonManKFAN - #1 Blueberry Hills CC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CommonManKFAN","name":"Dan - Cole","id":72586457,"id_str":"72586457","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507341363293167622,"in_reply_to_status_id_str":"1507341363293167622","in_reply_to_user_id":72586457,"in_reply_to_user_id_str":"72586457","in_reply_to_screen_name":"CommonManKFAN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/769397807891427328\/hoEJJ8-9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/769397807891427328\/hoEJJ8-9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":552199068,"id_str":"552199068","name":"Michael - Smith","screen_name":"kms_OUfan","location":"Tulsa, OK","description":"Christian, - Worshiper, College Football junkie, and lover of life! Now thanks be to God, - which always causes us to triumph in Christ... 2 Corinthians 2:14.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":612,"listed_count":1,"created_at":"Thu - Apr 12 19:43:01 +0000 2012","favourites_count":2032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":534,"lang":null,"status":{"created_at":"Tue - Mar 15 03:38:24 +0000 2022","id":1503576320441212930,"id_str":"1503576320441212930","text":"\ud83d\udd25\ud83d\udd25\ud83d\udd25 - https:\/\/t.co\/bkctCMeCR2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bkctCMeCR2","expanded_url":"https:\/\/vm.tiktok.com\/TTPdyGL7g1\/","display_url":"vm.tiktok.com\/TTPdyGL7g1\/","indices":[4,27]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671666205703274496\/5NZD_GEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671666205703274496\/5NZD_GEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/552199068\/1357925802","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301909889439223812,"id_str":"1301909889439223812","name":"JerseyJedi - *I stand with Ukraine*","screen_name":"jersey_jedi","location":"NJ","description":"Happily - Married to my Soulmate, SAG\/AFTRA Actor, Mother, Grandmother, Jedi, Avid - Crafter, Gardener, Dog\/Cat Lover #Resister #PresidentBiden #VPHarris","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3715,"friends_count":4996,"listed_count":2,"created_at":"Fri - Sep 04 15:48:12 +0000 2020","favourites_count":162705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20272,"lang":null,"status":{"created_at":"Sat - Mar 26 01:27:42 +0000 2022","id":1507529696178847747,"id_str":"1507529696178847747","text":"RT - @LoriRus64460221: Trending now !! RT https:\/\/t.co\/vdOKLfD4hT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LoriRus64460221","name":"Ms. - Sarcasm who tells it like it is.","id":1319466338826489856,"id_str":"1319466338826489856","indices":[3,19]}],"urls":[],"media":[{"id":1507456581281136640,"id_str":"1507456581281136640","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","url":"https:\/\/t.co\/vdOKLfD4hT","display_url":"pic.twitter.com\/vdOKLfD4hT","expanded_url":"https:\/\/twitter.com\/LoriRus64460221\/status\/1507456583516753955\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":883,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":417,"resize":"fit"},"medium":{"w":1200,"h":736,"resize":"fit"}},"source_status_id":1507456583516753955,"source_status_id_str":"1507456583516753955","source_user_id":1319466338826489856,"source_user_id_str":"1319466338826489856"}]},"extended_entities":{"media":[{"id":1507456581281136640,"id_str":"1507456581281136640","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","url":"https:\/\/t.co\/vdOKLfD4hT","display_url":"pic.twitter.com\/vdOKLfD4hT","expanded_url":"https:\/\/twitter.com\/LoriRus64460221\/status\/1507456583516753955\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":883,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":417,"resize":"fit"},"medium":{"w":1200,"h":736,"resize":"fit"}},"source_status_id":1507456583516753955,"source_status_id_str":"1507456583516753955","source_user_id":1319466338826489856,"source_user_id_str":"1319466338826489856"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:37:11 +0000 2022","id":1507456583516753955,"id_str":"1507456583516753955","text":"Trending - now !! RT https:\/\/t.co\/vdOKLfD4hT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507456581281136640,"id_str":"1507456581281136640","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","url":"https:\/\/t.co\/vdOKLfD4hT","display_url":"pic.twitter.com\/vdOKLfD4hT","expanded_url":"https:\/\/twitter.com\/LoriRus64460221\/status\/1507456583516753955\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":883,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":417,"resize":"fit"},"medium":{"w":1200,"h":736,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507456581281136640,"id_str":"1507456581281136640","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuPxhmWQAAUPMA.jpg","url":"https:\/\/t.co\/vdOKLfD4hT","display_url":"pic.twitter.com\/vdOKLfD4hT","expanded_url":"https:\/\/twitter.com\/LoriRus64460221\/status\/1507456583516753955\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":883,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":417,"resize":"fit"},"medium":{"w":1200,"h":736,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301941999063494656\/mPF5OB94_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301941999063494656\/mPF5OB94_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301909889439223812\/1599242139","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32244832,"id_str":"32244832","name":"April - M. Stallworth","screen_name":"april_swsl","location":"Chicago","description":"WOG, - Director of Communication (D219), Coach, Speaker, Trainer, LinkedIn Author, - SWSL Founder and Imani\u2019s Mom. DST Legacy \ud83d\udc18\ud83d\udd3a\u0394\u03a3\u0398 - Spr 2018 My Words Are My Own","url":"https:\/\/t.co\/vSBbf40T4O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vSBbf40T4O","expanded_url":"http:\/\/www.strongwomenstronglives.com","display_url":"strongwomenstronglives.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":280,"friends_count":866,"listed_count":4,"created_at":"Fri - Apr 17 01:37:41 +0000 2009","favourites_count":1722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":619,"lang":null,"status":{"created_at":"Sat - Mar 26 02:29:55 +0000 2022","id":1507545351137501187,"id_str":"1507545351137501187","text":"Put - some respect on their name!!!! Jersey City stand all the way up!!!!! https:\/\/t.co\/ksdFATv2ne","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507545347559677969,"id_str":"1507545347559677969","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvggZwWYBElEnM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvggZwWYBElEnM.jpg","url":"https:\/\/t.co\/ksdFATv2ne","display_url":"pic.twitter.com\/ksdFATv2ne","expanded_url":"https:\/\/twitter.com\/april_swsl\/status\/1507545351137501187\/photo\/1","type":"photo","sizes":{"large":{"w":1125,"h":1136,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1125,"h":1136,"resize":"fit"},"small":{"w":673,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507545347559677969,"id_str":"1507545347559677969","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvggZwWYBElEnM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvggZwWYBElEnM.jpg","url":"https:\/\/t.co\/ksdFATv2ne","display_url":"pic.twitter.com\/ksdFATv2ne","expanded_url":"https:\/\/twitter.com\/april_swsl\/status\/1507545351137501187\/photo\/1","type":"photo","sizes":{"large":{"w":1125,"h":1136,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1125,"h":1136,"resize":"fit"},"small":{"w":673,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482687262722777090\/ifL3dEm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482687262722777090\/ifL3dEm9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32244832\/1646110550","profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1044094730890604545,"id_str":"1044094730890604545","name":"Aiden - Fish","screen_name":"AidenFish3","location":"Westfield, MA","description":"\ud83d\udc94RIP - Young King Dave\ud83d\udc94","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":298,"listed_count":0,"created_at":"Mon - Sep 24 05:22:36 +0000 2018","favourites_count":9392,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":214,"lang":null,"status":{"created_at":"Sat - Mar 19 14:55:11 +0000 2022","id":1505196188165087234,"id_str":"1505196188165087234","text":"Oh - my god he\u2019s literally me \ud83e\udd70\ud83e\udd24\ud83e\udd7a\ud83d\udc45\ud83d\ude0d - https:\/\/t.co\/6BNmYv1I1o","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505196183744098306,"id_str":"1505196183744098306","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOOH9ElXMAI6Is3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOOH9ElXMAI6Is3.jpg","url":"https:\/\/t.co\/6BNmYv1I1o","display_url":"pic.twitter.com\/6BNmYv1I1o","expanded_url":"https:\/\/twitter.com\/AidenFish3\/status\/1505196188165087234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":952,"resize":"fit"},"medium":{"w":933,"h":952,"resize":"fit"},"small":{"w":666,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505196183744098306,"id_str":"1505196183744098306","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOOH9ElXMAI6Is3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOOH9ElXMAI6Is3.jpg","url":"https:\/\/t.co\/6BNmYv1I1o","display_url":"pic.twitter.com\/6BNmYv1I1o","expanded_url":"https:\/\/twitter.com\/AidenFish3\/status\/1505196188165087234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":952,"resize":"fit"},"medium":{"w":933,"h":952,"resize":"fit"},"small":{"w":666,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498032413154361353\/pAY_Ya2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498032413154361353\/pAY_Ya2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1044094730890604545\/1604471676","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1058444156173983744,"id_str":"1058444156173983744","name":"shakB","screen_name":"Quiche_B","location":"In - Your Dreams \u2728","description":"Quiche \ud83d\udeab eggs \ud83c\udf1a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":706,"listed_count":0,"created_at":"Fri - Nov 02 19:42:06 +0000 2018","favourites_count":14562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4026,"lang":null,"status":{"created_at":"Wed - Mar 23 15:29:12 +0000 2022","id":1506654302386982913,"id_str":"1506654302386982913","text":"RT - @_Sneel: so apparently iMessage and FaceTime was down yesterday?? My phone - be so dry I ain\u2019t even notice \ud83d\udc80","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_Sneel","name":"real - deal sneel","id":319461782,"id_str":"319461782","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 18:59:53 +0000 2022","id":1506344934667964429,"id_str":"1506344934667964429","text":"so - apparently iMessage and FaceTime was down yesterday?? My phone be so dry I - ain\u2019t even notice \ud83d\udc80","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31589,"favorite_count":272290,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":31589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461007557632397315\/G3Ny4Opr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461007557632397315\/G3Ny4Opr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1058444156173983744\/1583850025","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58095979,"id_str":"58095979","name":"David - Lim Wei Yi","screen_name":"qeteshdlwy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":1118,"listed_count":4,"created_at":"Sun - Jul 19 02:19:41 +0000 2009","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Wed - Nov 04 00:57:21 +0000 2020","id":1323791408021430272,"id_str":"1323791408021430272","text":"RT - @kayleighmcenany: \ud83d\udea8\ud83d\udea8 BIDEN ADMITS TO VOTER FRAUD! \ud83d\udea8\ud83d\udea8\n\n@JoeBiden - brags about having the \u201cmost extensive VOTER FRAUD organization\u201d - in hist\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kayleighmcenany","name":"Kayleigh - McEnany","id":259001548,"id_str":"259001548","indices":[3,19]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[57,66]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 24 21:36:44 +0000 2020","id":1320117044612943872,"id_str":"1320117044612943872","text":"\ud83d\udea8\ud83d\udea8 - BIDEN ADMITS TO VOTER FRAUD! \ud83d\udea8\ud83d\udea8\n\n@JoeBiden brags about - having the \u201cmost extensive VOTER FRAUD organization\u201d in h\u2026 - https:\/\/t.co\/KZHc8kGkml","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[36,45]}],"urls":[{"url":"https:\/\/t.co\/KZHc8kGkml","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1320117044612943872","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20579,"favorite_count":46716,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20579,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3701055556\/df1ade7b94ef5526698eedc85a6967d2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3701055556\/df1ade7b94ef5526698eedc85a6967d2_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":909288787,"id_str":"909288787","name":"Bashir - Duale","screen_name":"BiDuale","location":"Dallas, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":105,"listed_count":1,"created_at":"Sun - Oct 28 01:34:40 +0000 2012","favourites_count":730,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Sep 04 02:48:00 +0000 2020","id":1301713596792156160,"id_str":"1301713596792156160","text":"Ask - for what you want and be prepared to get it! Maya Angelou https:\/\/t.co\/BajlYbpF47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BajlYbpF47","expanded_url":"http:\/\/bit.ly\/BestMayaAngelouQuotes","display_url":"bit.ly\/BestMayaAngelo\u2026","indices":[62,85]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293384921566842881\/RqVMCNHr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293384921566842881\/RqVMCNHr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256976935672045568,"id_str":"1256976935672045568","name":"Franklin","screen_name":"Frankli04737597","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":1431,"listed_count":0,"created_at":"Sun - May 03 16:00:59 +0000 2020","favourites_count":331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sun - Jan 17 02:51:30 +0000 2021","id":1350636836989804544,"id_str":"1350636836989804544","text":"RT - @TheRealKayleb: Big ups to all the cool dads out there breaking the cycle - of deadbeat daddy\u2019s \ud83d\udcaa\ud83c\udfff\ud83d\udcaf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRealKayleb","name":"Kayleb","id":54165786,"id_str":"54165786","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 17 01:54:19 +0000 2021","id":1350622446240604165,"id_str":"1350622446240604165","text":"Big - ups to all the cool dads out there breaking the cycle of deadbeat daddy\u2019s - \ud83d\udcaa\ud83c\udfff\ud83d\udcaf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":53,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":540250804,"id_str":"540250804","name":"DonnaSwartwout","screen_name":"DonnaSwartwout","location":"","description":"Life - long Buffalo Bills fan, proud aunt, and avid reader. Self described nerd and - introvert and apparently now, I hike.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":505,"friends_count":838,"listed_count":16,"created_at":"Thu - Mar 29 20:20:29 +0000 2012","favourites_count":18632,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2623,"lang":null,"status":{"created_at":"Sat - Mar 26 01:05:42 +0000 2022","id":1507524158133096448,"id_str":"1507524158133096448","text":"RT - @LincolnWatchman: Anita Hill was right. Clarence Thomas shouldn\u2019t have - even been confirmed in the first place!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LincolnWatchman","name":"The - Lincoln Watchman\ud83d\udc40\ud83c\uddfa\ud83c\uddf8","id":3002029764,"id_str":"3002029764","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:52:12 +0000 2022","id":1507354668095217669,"id_str":"1507354668095217669","text":"Anita - Hill was right. Clarence Thomas shouldn\u2019t have even been confirmed in - the first place!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":216,"favorite_count":1463,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":216,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180305410743508994\/BXcvqDDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180305410743508994\/BXcvqDDr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/540250804\/1570241630","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":790163372,"id_str":"790163372","name":"Lisa - Makin","screen_name":"mariebyrne2012","location":"Exeter, Devon","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":202,"friends_count":1071,"listed_count":3,"created_at":"Wed - Aug 29 21:13:11 +0000 2012","favourites_count":909,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2541,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/758740924507697152\/HvvNwyLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758740924507697152\/HvvNwyLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/790163372\/1511622896","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":741700869524180993,"id_str":"741700869524180993","name":"James - Coyne","screen_name":"jcoynepsu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":151,"listed_count":0,"created_at":"Sat - Jun 11 18:37:22 +0000 2016","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/741701372819673089\/aMR7O4Uc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/741701372819673089\/aMR7O4Uc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234293490034630657,"id_str":"1234293490034630657","name":"CorbsME","screen_name":"CorbsMe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":3503,"listed_count":0,"created_at":"Mon - Mar 02 01:44:50 +0000 2020","favourites_count":42361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":459,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16021254,"id_str":"16021254","name":"M_linda2019 - \ud83d\udc96@Healing4U","screen_name":"kayla08","location":"Creve Coeur, MO","description":"#HRMGT2021","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":161,"friends_count":2274,"listed_count":1,"created_at":"Thu - Aug 28 02:15:01 +0000 2008","favourites_count":209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":195,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"07090B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1089019418649288706\/2DTy8Pf9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1089019418649288706\/2DTy8Pf9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16021254\/1548477174","profile_link_color":"C34242","profile_sidebar_border_color":"BFBFBF","profile_sidebar_fill_color":"C9C9C9","profile_text_color":"1C1F23","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15988492,"id_str":"15988492","name":"Rita - de la Guardia","screen_name":"ritadelag","location":"Panama","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1088,"friends_count":1538,"listed_count":7,"created_at":"Mon - Aug 25 22:32:45 +0000 2008","favourites_count":4708,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1114,"lang":null,"status":{"created_at":"Fri - Mar 25 06:14:13 +0000 2022","id":1507239413419429890,"id_str":"1507239413419429890","text":"\"Motivation - comes and goes. If you want to do something consistently, then don''t pick - a level of difficulty that re\u2026 https:\/\/t.co\/8mkxvpDfUb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8mkxvpDfUb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507239413419429890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501202384924999681\/F9huBX_g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501202384924999681\/F9huBX_g_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2577476334,"id_str":"2577476334","name":"Jay - Carney","screen_name":"JayCarney","location":"DC & Seattle","description":"SVP - for policy & press @Amazon, fmr WH press secretary to @BarackObama, fmr Comms - Dir to VP Biden (now @POTUS!), eternal GBV fan (@_GuidedByVoices)","url":"https:\/\/t.co\/AdUgWtlzFa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AdUgWtlzFa","expanded_url":"http:\/\/www.amazon.com\/about","display_url":"amazon.com\/about","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46310,"friends_count":1294,"listed_count":516,"created_at":"Thu - Jun 19 21:21:03 +0000 2014","favourites_count":13360,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":4180,"lang":null,"status":{"created_at":"Wed - Mar 23 17:10:02 +0000 2022","id":1506679678672809994,"id_str":"1506679678672809994","text":"Proud - that Amazon, our employees and our customers are able to play a part in the - relief efforts for Ukrainians.\u2026 https:\/\/t.co\/YYVzJNGdpV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YYVzJNGdpV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506679678672809994","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506340710773108750,"quoted_status_id_str":"1506340710773108750","retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480107970601050112\/vTEju5Ib_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480107970601050112\/vTEju5Ib_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2577476334\/1613693623","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":859729176,"id_str":"859729176","name":"ABRAXAS_Adu","screen_name":"ABRAXAS_Adu","location":"","description":"You - have stood before me frozen inside from the exertion. You questioned, berated - me, made love to me, prayed with me. Called me father.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1444,"friends_count":4493,"listed_count":2,"created_at":"Wed - Oct 03 14:00:11 +0000 2012","favourites_count":68372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63645,"lang":null,"status":{"created_at":"Fri - Mar 25 01:17:04 +0000 2022","id":1507164632359788546,"id_str":"1507164632359788546","text":"RT - @OccupyDemocrats: BREAKING: Mitch McConnell announces that he \u201ccannot - and will not support\u201d Judge Ketanji Brown Jackson\u2019s nomination to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:47:40 +0000 2022","id":1507096833952137236,"id_str":"1507096833952137236","text":"BREAKING: - Mitch McConnell announces that he \u201ccannot and will not support\u201d - Judge Ketanji Brown Jackson\u2019s nomination\u2026 https:\/\/t.co\/XZGnunybeg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XZGnunybeg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507096833952137236","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4857,"favorite_count":9347,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4857,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033755742371753985\/LHwsVorD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033755742371753985\/LHwsVorD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859729176\/1437289149","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1135333280,"id_str":"1135333280","name":"Mayte - Bayolo","screen_name":"maytebayolo","location":"","description":"ACLUPR Legislative - and Public Policy Attorney \/ Fighter of Justice \/ Constitutional defender - \/ Always against the death penalty \/ All views my own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":543,"listed_count":1,"created_at":"Wed - Jan 30 22:08:26 +0000 2013","favourites_count":2064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":875,"lang":null,"status":{"created_at":"Thu - Mar 24 13:12:52 +0000 2022","id":1506982380980117507,"id_str":"1506982380980117507","text":"@elcielodeabril - Eso pasa cuando el oportunismo y protagonismo quiere ir por encima de la solidaridad.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elcielodeabril","name":"Alexandra-Marie - defiende el derecho a decidir \ud83d\udc9a","id":417405940,"id_str":"417405940","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506970690636898306,"in_reply_to_status_id_str":"1506970690636898306","in_reply_to_user_id":417405940,"in_reply_to_user_id_str":"417405940","in_reply_to_screen_name":"elcielodeabril","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400440620892758019\/QoDxmNum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400440620892758019\/QoDxmNum_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14726357,"id_str":"14726357","name":"Caleb - Hays","screen_name":"calebhays","location":"Washington, D.C.","description":"\ud83c\udf3bKansan - | @HouseAdmnGOP General Counsel & Dpy Staff Director | #FaithInElections | - Fmr @HoltzmanVogel @NRCC @LynnJenkins @KansasGOP | #BeatCancer | my opinions","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2673,"friends_count":4479,"listed_count":76,"created_at":"Sat - May 10 17:42:57 +0000 2008","favourites_count":21245,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10006,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454168710009217033\/_VShvm7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454168710009217033\/_VShvm7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14726357\/1412289129","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":917942596386918401,"id_str":"917942596386918401","name":"Donna - Merola","screen_name":"MerolaDonna","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":2113,"listed_count":0,"created_at":"Wed - Oct 11 02:39:04 +0000 2017","favourites_count":26582,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - May 16 19:17:57 +0000 2020","id":1261737673137545220,"id_str":"1261737673137545220","text":"@SenJohnKennedy - Why are Blue States supporting Kentucky . Not a coastal elite just a - hard working American.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenJohnKennedy","name":"John - Kennedy","id":816683274076614656,"id_str":"816683274076614656","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1261646760038084609,"in_reply_to_status_id_str":"1261646760038084609","in_reply_to_user_id":816683274076614656,"in_reply_to_user_id_str":"816683274076614656","in_reply_to_screen_name":"SenJohnKennedy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917948286056779777\/QrdaSqYo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917948286056779777\/QrdaSqYo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917942596386918401\/1507690899","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":50746991,"id_str":"50746991","name":"Michelle - Tokarsky","screen_name":"Windberite","location":"United States","description":"Attorney, - mom of 4 girls, PSU grad and Army mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":470,"listed_count":0,"created_at":"Thu - Jun 25 19:46:11 +0000 2009","favourites_count":40626,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2677,"lang":null,"status":{"created_at":"Sat - Mar 26 00:06:38 +0000 2022","id":1507509293750312961,"id_str":"1507509293750312961","text":"RT - @mattingl12: Attendance figures from the PIAA BB folly will be interesting - to view...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mattingl12","name":"Larry - Mattingly","id":1484207585657982976,"id_str":"1484207585657982976","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:07:18 +0000 2022","id":1507494363655516165,"id_str":"1507494363655516165","text":"Attendance - figures from the PIAA BB folly will be interesting to view...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":847652913207844865,"id_str":"847652913207844865","name":"Dorothea - Davis","screen_name":"Just_Dorothea","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":476,"listed_count":0,"created_at":"Fri - Mar 31 03:32:57 +0000 2017","favourites_count":113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":null,"status":{"created_at":"Sat - Mar 05 22:36:26 +0000 2022","id":1500238835015372800,"id_str":"1500238835015372800","text":"@DonaldJTrumpJr - As if that''s dumber than any of the \ud83d\udca9\ud83d\udca9\ud83d\udca9 - that comes out you mouth everyday.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499960045689360384,"in_reply_to_status_id_str":"1499960045689360384","in_reply_to_user_id":39344374,"in_reply_to_user_id_str":"39344374","in_reply_to_screen_name":"DonaldJTrumpJr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346917397073190913\/7kuaf0QQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346917397073190913\/7kuaf0QQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847652913207844865\/1601643177","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260549369662779394,"id_str":"1260549369662779394","name":"Marc - Williams","screen_name":"MarcWil70704873","location":"","description":"Your - boy MW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":653,"friends_count":4507,"listed_count":0,"created_at":"Wed - May 13 12:36:19 +0000 2020","favourites_count":6475,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10673,"lang":null,"status":{"created_at":"Tue - Dec 01 01:08:22 +0000 2020","id":1333578654396411905,"id_str":"1333578654396411905","text":"@currypiston - Shit John Saley can forget that crazy Nigga.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"currypiston","name":"\u064b","id":1359702626615644161,"id_str":"1359702626615644161","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1333578392852160512,"in_reply_to_status_id_str":"1333578392852160512","in_reply_to_user_id":1260549369662779394,"in_reply_to_user_id_str":"1260549369662779394","in_reply_to_screen_name":"MarcWil70704873","geo":null,"coordinates":null,"place":{"id":"c0b8e8dc81930292","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c0b8e8dc81930292.json","place_type":"city","name":"Baltimore","full_name":"Baltimore, - MD","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-76.7115205,39.197211],[-76.529443,39.197211],[-76.529443,39.372215],[-76.7115205,39.372215]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260549729244626946\/Rb0mouF2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260549729244626946\/Rb0mouF2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260549369662779394\/1603206546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182157779668070401,"id_str":"1182157779668070401","name":"erin - hunter","screen_name":"erinhun97684524","location":"","description":"Love - everyone","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":453,"listed_count":0,"created_at":"Thu - Oct 10 04:56:13 +0000 2019","favourites_count":6756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":344,"lang":null,"status":{"created_at":"Sun - Mar 20 07:18:55 +0000 2022","id":1505443753670049792,"id_str":"1505443753670049792","text":"RT - @KennethMasson1: @GOPChairwoman https:\/\/t.co\/KV7pV0q7Cm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KennethMasson1","name":"Kenneth - Masson \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","id":1217212574829248512,"id_str":"1217212574829248512","indices":[3,18]},{"screen_name":"GOPChairwoman","name":"Ronna - McDaniel","id":2353605901,"id_str":"2353605901","indices":[20,34]}],"urls":[],"media":[{"id":1505284035496529923,"id_str":"1505284035496529923","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","url":"https:\/\/t.co\/KV7pV0q7Cm","display_url":"pic.twitter.com\/KV7pV0q7Cm","expanded_url":"https:\/\/twitter.com\/KennethMasson1\/status\/1505284037316956168\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1069,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"medium":{"w":1080,"h":1069,"resize":"fit"}},"source_status_id":1505284037316956168,"source_status_id_str":"1505284037316956168","source_user_id":1217212574829248512,"source_user_id_str":"1217212574829248512"}]},"extended_entities":{"media":[{"id":1505284035496529923,"id_str":"1505284035496529923","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","url":"https:\/\/t.co\/KV7pV0q7Cm","display_url":"pic.twitter.com\/KV7pV0q7Cm","expanded_url":"https:\/\/twitter.com\/KennethMasson1\/status\/1505284037316956168\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1069,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"medium":{"w":1080,"h":1069,"resize":"fit"}},"source_status_id":1505284037316956168,"source_status_id_str":"1505284037316956168","source_user_id":1217212574829248512,"source_user_id_str":"1217212574829248512"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 20:44:15 +0000 2022","id":1505284037316956168,"id_str":"1505284037316956168","text":"@GOPChairwoman - https:\/\/t.co\/KV7pV0q7Cm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPChairwoman","name":"Ronna - McDaniel","id":2353605901,"id_str":"2353605901","indices":[0,14]}],"urls":[],"media":[{"id":1505284035496529923,"id_str":"1505284035496529923","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","url":"https:\/\/t.co\/KV7pV0q7Cm","display_url":"pic.twitter.com\/KV7pV0q7Cm","expanded_url":"https:\/\/twitter.com\/KennethMasson1\/status\/1505284037316956168\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1069,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"medium":{"w":1080,"h":1069,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505284035496529923,"id_str":"1505284035496529923","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOPX2t3WUAM1P1V.jpg","url":"https:\/\/t.co\/KV7pV0q7Cm","display_url":"pic.twitter.com\/KV7pV0q7Cm","expanded_url":"https:\/\/twitter.com\/KennethMasson1\/status\/1505284037316956168\/photo\/1","type":"photo","sizes":{"large":{"w":1080,"h":1069,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"medium":{"w":1080,"h":1069,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505215433183485959,"in_reply_to_status_id_str":"1505215433183485959","in_reply_to_user_id":2353605901,"in_reply_to_user_id_str":"2353605901","in_reply_to_screen_name":"GOPChairwoman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":140,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":62,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182158134866927617\/kWU2Ae4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182158134866927617\/kWU2Ae4F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1087237736677945344,"id_str":"1087237736677945344","name":"Michael - Miller","screen_name":"mikemiller1123","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":1249,"listed_count":0,"created_at":"Mon - Jan 21 06:37:31 +0000 2019","favourites_count":82,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315699403525513216\/XMm_4pF8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315699403525513216\/XMm_4pF8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305985458925703169,"id_str":"1305985458925703169","name":"Arpolk","screen_name":"WilliamCange","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":1199,"listed_count":0,"created_at":"Tue - Sep 15 21:43:14 +0000 2020","favourites_count":2872,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2104,"lang":null,"status":{"created_at":"Sun - Nov 22 21:09:20 +0000 2020","id":1330619396230967300,"id_str":"1330619396230967300","text":"@KLoeffler - @realDonaldTrump I wish you were this concerned about insider trading.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KLoeffler","name":"Kelly - Loeffler","id":29495695,"id_str":"29495695","indices":[0,10]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[11,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1330614293054828544,"in_reply_to_status_id_str":"1330614293054828544","in_reply_to_user_id":29495695,"in_reply_to_user_id_str":"29495695","in_reply_to_screen_name":"KLoeffler","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311110226792386561\/-eoatPln_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311110226792386561\/-eoatPln_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4516389020,"id_str":"4516389020","name":"Rajesh - Rajah","screen_name":"rajeshrajah1","location":"Bengaluru, India \ud83c\uddee\ud83c\uddf3","description":"Formerly - VP CyberBazaar India and WebEx. Tennis. Golf. Bit of cricket. Hot Pongal, - vadas and a good South Indian filter coffee.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":323,"friends_count":4298,"listed_count":8,"created_at":"Thu - Dec 10 09:10:49 +0000 2015","favourites_count":1885,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1384,"lang":null,"status":{"created_at":"Sat - Mar 26 07:34:43 +0000 2022","id":1507622057676140544,"id_str":"1507622057676140544","text":"RT - @iGundeep: Whatever happens,\nYou never lose your worth !!! https:\/\/t.co\/chpVsWzdlH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iGundeep","name":"Gundeep - Nanda\ud83c\uddee\ud83c\uddf3","id":279530857,"id_str":"279530857","indices":[3,12]}],"urls":[],"media":[{"id":1507578504527097858,"id_str":"1507578504527097858","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","url":"https:\/\/t.co\/chpVsWzdlH","display_url":"pic.twitter.com\/chpVsWzdlH","expanded_url":"https:\/\/twitter.com\/iGundeep\/status\/1507578639579508736\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1507578639579508736,"source_status_id_str":"1507578639579508736","source_user_id":279530857,"source_user_id_str":"279530857"}]},"extended_entities":{"media":[{"id":1507578504527097858,"id_str":"1507578504527097858","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","url":"https:\/\/t.co\/chpVsWzdlH","display_url":"pic.twitter.com\/chpVsWzdlH","expanded_url":"https:\/\/twitter.com\/iGundeep\/status\/1507578639579508736\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1507578639579508736,"source_status_id_str":"1507578639579508736","source_user_id":279530857,"source_user_id_str":"279530857","video_info":{"aspect_ratio":[9,16],"duration_millis":59604,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/pl\/jIrGWCuXG1F_9Ymt.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/720x1280\/Hc_bAxI0KF9yWdsh.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/320x568\/Dv2iPclQSUeAW0z_.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/480x852\/eurw-MjncQ-6VNbb.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:42:11 +0000 2022","id":1507578639579508736,"id_str":"1507578639579508736","text":"Whatever - happens,\nYou never lose your worth !!! https:\/\/t.co\/chpVsWzdlH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507578504527097858,"id_str":"1507578504527097858","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","url":"https:\/\/t.co\/chpVsWzdlH","display_url":"pic.twitter.com\/chpVsWzdlH","expanded_url":"https:\/\/twitter.com\/iGundeep\/status\/1507578639579508736\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507578504527097858,"id_str":"1507578504527097858","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507578504527097858\/pu\/img\/Fo8m7HW3hzilJ1T4.jpg","url":"https:\/\/t.co\/chpVsWzdlH","display_url":"pic.twitter.com\/chpVsWzdlH","expanded_url":"https:\/\/twitter.com\/iGundeep\/status\/1507578639579508736\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":59604,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/pl\/jIrGWCuXG1F_9Ymt.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/720x1280\/Hc_bAxI0KF9yWdsh.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/320x568\/Dv2iPclQSUeAW0z_.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507578504527097858\/pu\/vid\/480x852\/eurw-MjncQ-6VNbb.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":334,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":102,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507625686885822465\/o7y-taqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507625686885822465\/o7y-taqy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1091472178862833665,"id_str":"1091472178862833665","name":"Lorna - Onuoha","screen_name":"OnuohaLorna","location":"Lagos, Nigeria","description":"Official - twitter page for lorna onuoha nollywood actress and movie producer. Movie - content distributor. Ceo dissalora studios, Ceo distv network.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":283,"listed_count":1,"created_at":"Fri - Feb 01 23:03:40 +0000 2019","favourites_count":955,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":244,"lang":null,"status":{"created_at":"Wed - Mar 23 18:57:11 +0000 2022","id":1506706640875274240,"id_str":"1506706640875274240","text":"@TheNationNews - Time for reelection wise up people.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheNationNews","name":"The - Nation Nigeria","id":85318467,"id_str":"85318467","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506704634483781638,"in_reply_to_status_id_str":"1506704634483781638","in_reply_to_user_id":85318467,"in_reply_to_user_id_str":"85318467","in_reply_to_screen_name":"TheNationNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1091776498506391553\/_zFmVAUO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1091776498506391553\/_zFmVAUO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1091472178862833665\/1549112479","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1194775535383015424,"id_str":"1194775535383015424","name":"ChanceryLens - .III.","screen_name":"ChanceryLens","location":"","description":"\u201c Will - you join in our crusade? \u201c - People remain standing defiantly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":2389,"listed_count":7,"created_at":"Thu - Nov 14 00:34:32 +0000 2019","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2191,"lang":null,"status":{"created_at":"Sat - Mar 26 04:52:10 +0000 2022","id":1507581152030523393,"id_str":"1507581152030523393","text":"RT - @OP_037: There is no freedom, liberty and prosperity in a dictatorship country.\n#WhatHappeninginLaos - https:\/\/t.co\/Nww25LyQ9A","truncated":false,"entities":{"hashtags":[{"text":"WhatHappeninginLaos","indices":[83,103]}],"symbols":[],"user_mentions":[{"screen_name":"OP_037","name":"\u0e19\u0e2d\u0e19\u0e01\u0e48\u0e2d\u0e1921:00\u0e40\u0e23\u0e34\u0e48\u0e21\ud83e\udd8b","id":1410577439399444483,"id_str":"1410577439399444483","indices":[3,10]}],"urls":[],"media":[{"id":1507472659080122370,"id_str":"1507472659080122370","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","url":"https:\/\/t.co\/Nww25LyQ9A","display_url":"pic.twitter.com\/Nww25LyQ9A","expanded_url":"https:\/\/twitter.com\/OP_037\/status\/1507472664679518210\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":934,"h":1167,"resize":"fit"},"large":{"w":934,"h":1167,"resize":"fit"}},"source_status_id":1507472664679518210,"source_status_id_str":"1507472664679518210","source_user_id":1410577439399444483,"source_user_id_str":"1410577439399444483"}]},"extended_entities":{"media":[{"id":1507472659080122370,"id_str":"1507472659080122370","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","url":"https:\/\/t.co\/Nww25LyQ9A","display_url":"pic.twitter.com\/Nww25LyQ9A","expanded_url":"https:\/\/twitter.com\/OP_037\/status\/1507472664679518210\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":934,"h":1167,"resize":"fit"},"large":{"w":934,"h":1167,"resize":"fit"}},"source_status_id":1507472664679518210,"source_status_id_str":"1507472664679518210","source_user_id":1410577439399444483,"source_user_id_str":"1410577439399444483"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:41:05 +0000 2022","id":1507472664679518210,"id_str":"1507472664679518210","text":"There - is no freedom, liberty and prosperity in a dictatorship country.\n#WhatHappeninginLaos - https:\/\/t.co\/Nww25LyQ9A","truncated":false,"entities":{"hashtags":[{"text":"WhatHappeninginLaos","indices":[71,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507472659080122370,"id_str":"1507472659080122370","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","url":"https:\/\/t.co\/Nww25LyQ9A","display_url":"pic.twitter.com\/Nww25LyQ9A","expanded_url":"https:\/\/twitter.com\/OP_037\/status\/1507472664679518210\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":934,"h":1167,"resize":"fit"},"large":{"w":934,"h":1167,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507472659080122370,"id_str":"1507472659080122370","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOueZYEVkAIShTw.jpg","url":"https:\/\/t.co\/Nww25LyQ9A","display_url":"pic.twitter.com\/Nww25LyQ9A","expanded_url":"https:\/\/twitter.com\/OP_037\/status\/1507472664679518210\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":934,"h":1167,"resize":"fit"},"large":{"w":934,"h":1167,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":110,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":110,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248168035568865288\/2zDfYHTc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248168035568865288\/2zDfYHTc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194775535383015424\/1573831333","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":525487138,"id_str":"525487138","name":"Susan - McGinn \ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83d\udc99\ud83d\udc9b","screen_name":"mcginn_susan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":768,"listed_count":0,"created_at":"Thu - Mar 15 15:49:04 +0000 2012","favourites_count":24960,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":294,"lang":null,"status":{"created_at":"Fri - Mar 25 18:42:16 +0000 2022","id":1507427665355104262,"id_str":"1507427665355104262","text":"@Xenta777 - I am so sorry Xenta!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xenta777","name":"Xenta","id":2799946720,"id_str":"2799946720","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507394952929681449,"in_reply_to_status_id_str":"1507394952929681449","in_reply_to_user_id":2799946720,"in_reply_to_user_id_str":"2799946720","in_reply_to_screen_name":"Xenta777","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356803812573515776\/yXXLc7wC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356803812573515776\/yXXLc7wC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":251077158,"id_str":"251077158","name":"Ayberk - Y\u0131lmaz","screen_name":"ayberk_sama1996","location":"Marmara University - & Biology ","description":"Aphrodite\nCherry Blossom\ud83c\udf39\ud83c\udf39\ud83c\udf38\ud83c\udf38\nFreedom\nLivin - Darkside\u26b0\u26b1\ud83d\udc80\u2620\nBehind The Shadows\ud83c\udf0c\nYouTube - Influencer(Youtuber)\ud83e\udd2d\ud83e\udd2d\ud83d\ude48\ud83d\ude48\nFeminist\u2640\ufe0f=\u2642\ufe0f\nLGBT\u0130QA+\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":"https:\/\/t.co\/2ADz1wOzy6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2ADz1wOzy6","expanded_url":"https:\/\/youtube.com\/channel\/UCM45ULC6rv1CNZEVl7cTk-A","display_url":"youtube.com\/channel\/UCM45U\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":2370,"listed_count":3,"created_at":"Sat - Feb 12 11:45:10 +0000 2011","favourites_count":3239,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3155,"lang":null,"status":{"created_at":"Tue - Mar 22 15:05:36 +0000 2022","id":1506285976758497293,"id_str":"1506285976758497293","text":"Happy - Resident Evil''s 26th Anniversary..\ud83d\ude0a\ud83d\ude0a\ud83d\udc83\ud83d\udc83\ud83c\udf86\ud83c\udf87\ud83c\udf81\ud83c\udf82\ud83c\udf88\ud83c\udf8a\ud83c\udf89 - #ResidentEvil #26thanniversary https:\/\/t.co\/GrdEtdABka","truncated":false,"entities":{"hashtags":[{"text":"ResidentEvil","indices":[52,65]},{"text":"26thanniversary","indices":[66,82]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506285973948309508,"id_str":"1506285973948309508","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdnHNdXoAQgy3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdnHNdXoAQgy3L.jpg","url":"https:\/\/t.co\/GrdEtdABka","display_url":"pic.twitter.com\/GrdEtdABka","expanded_url":"https:\/\/twitter.com\/ayberk_sama1996\/status\/1506285976758497293\/photo\/1","type":"photo","sizes":{"small":{"w":541,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1358,"resize":"fit"},"medium":{"w":954,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506285973948309508,"id_str":"1506285973948309508","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/FOdnHNdXoAQgy3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOdnHNdXoAQgy3L.jpg","url":"https:\/\/t.co\/GrdEtdABka","display_url":"pic.twitter.com\/GrdEtdABka","expanded_url":"https:\/\/twitter.com\/ayberk_sama1996\/status\/1506285976758497293\/photo\/1","type":"photo","sizes":{"small":{"w":541,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1358,"resize":"fit"},"medium":{"w":954,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376553486293291009\/DUWUv-H0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376553486293291009\/DUWUv-H0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251077158\/1617030979","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":789926533372579841,"id_str":"789926533372579841","name":"Wayne - Thomas","screen_name":"WayneTh52720423","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":633,"listed_count":0,"created_at":"Sat - Oct 22 20:28:56 +0000 2016","favourites_count":852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sun - Nov 08 15:22:49 +0000 2020","id":1325458764481376256,"id_str":"1325458764481376256","text":"@BillyBaldwin - @joncoopertweets The people''s ballots decide elections , NOT THE COURTS - , of there is controversy th\u2026 https:\/\/t.co\/k3fILpyjWn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillyBaldwin","name":"Billy - Baldwin","id":784890784273215488,"id_str":"784890784273215488","indices":[0,13]},{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[14,30]}],"urls":[{"url":"https:\/\/t.co\/k3fILpyjWn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1325458764481376256","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1325446910732197888,"in_reply_to_status_id_str":"1325446910732197888","in_reply_to_user_id":784890784273215488,"in_reply_to_user_id_str":"784890784273215488","in_reply_to_screen_name":"BillyBaldwin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":821035177522724864,"id_str":"821035177522724864","name":"Char","screen_name":"pdexter1234","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":591,"listed_count":0,"created_at":"Mon - Jan 16 16:43:35 +0000 2017","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Oct 08 12:06:48 +0000 2018","id":1049269881915547649,"id_str":"1049269881915547649","text":"@TheJDtweets - Gorgeous \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheJDtweets","name":"Jeremy - \ud83d\ude80","id":1835901752,"id_str":"1835901752","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1049055402565033991,"in_reply_to_status_id_str":"1049055402565033991","in_reply_to_user_id":1835901752,"in_reply_to_user_id_str":"1835901752","in_reply_to_screen_name":"TheJDtweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":75506809,"id_str":"75506809","name":"Marianne - Ramirez","screen_name":"mramirezaponte","location":"","description":"Executive - Director and Chief Curator Museo de Arte Contempor\u00e1neo de Puerto Rico, - President Alianza de Museos de Puerto Rico","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":851,"listed_count":0,"created_at":"Sat - Sep 19 08:31:52 +0000 2009","favourites_count":7046,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1886,"lang":null,"status":{"created_at":"Sat - Mar 26 10:26:39 +0000 2022","id":1507665327076827137,"id_str":"1507665327076827137","text":"RT - @LaCumbreTeLlama: M\u00fasico, music\u00f3logo y docente puertorrique\u00f1o. - Hijo de Rafael Cepeda Atiles que fund\u00f3 la Fundaci\u00f3n Folkl\u00f3rica - Cultural R\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LaCumbreTeLlama","name":"Afrodescendencia - y Racialidad UPR","id":1488269708742770692,"id_str":"1488269708742770692","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:55:17 +0000 2022","id":1507461137666818051,"id_str":"1507461137666818051","text":"M\u00fasico, - music\u00f3logo y docente puertorrique\u00f1o. Hijo de Rafael Cepeda Atiles - que fund\u00f3 la Fundaci\u00f3n Folkl\u00f3rica Cultura\u2026 https:\/\/t.co\/JCzhEJgdu6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JCzhEJgdu6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507461137666818051","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321994588559691777\/9LRUdDc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321994588559691777\/9LRUdDc7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244684888734928896,"id_str":"1244684888734928896","name":"Coffee","screen_name":"lowless97","location":"","description":"I''m - proud to be Rwandan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":1402,"listed_count":0,"created_at":"Mon - Mar 30 17:56:55 +0000 2020","favourites_count":176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Sun - Mar 06 13:50:04 +0000 2022","id":1500468761081569281,"id_str":"1500468761081569281","text":"@IGIHE - @CynthiaUwamaho3 Cynthia slt!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IGIHE","name":"IGIHE","id":73877533,"id_str":"73877533","indices":[0,6]},{"screen_name":"CynthiaUwamaho3","name":"Cynthia - Uwamahoro","id":1492594391478943745,"id_str":"1492594391478943745","indices":[7,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1492451241263251464,"in_reply_to_status_id_str":"1492451241263251464","in_reply_to_user_id":73877533,"in_reply_to_user_id_str":"73877533","in_reply_to_screen_name":"IGIHE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"cy"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1406392581240590338\/FjdbiWNI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1406392581240590338\/FjdbiWNI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1244684888734928896\/1623451885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":178403345,"id_str":"178403345","name":"BertyBlod","screen_name":"BertyBlod","location":"South - West, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":33,"friends_count":365,"listed_count":0,"created_at":"Sat - Aug 14 17:32:21 +0000 2010","favourites_count":148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310638098708131847\/dkTODY_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310638098708131847\/dkTODY_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178403345\/1600273447","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":278757611,"id_str":"278757611","name":"Trey - Santana\u2122\ufe0f","screen_name":"iTreySantana","location":"","description":"Philanthropist. - Entrepreneur. Studies Criminal Justice and Law.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":128,"listed_count":1,"created_at":"Thu - Apr 07 22:37:32 +0000 2011","favourites_count":7953,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14055,"lang":null,"status":{"created_at":"Fri - Mar 25 22:09:33 +0000 2022","id":1507479828903206915,"id_str":"1507479828903206915","text":"I - hate seeing people suffer and struggle. #change","truncated":false,"entities":{"hashtags":[{"text":"change","indices":[42,49]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126799071182774272\/BHZT_PP8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126799071182774272\/BHZT_PP8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/278757611\/1594513887","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3047753254,"id_str":"3047753254","name":"W. - Holmes","screen_name":"WNH001","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":598,"listed_count":0,"created_at":"Fri - Feb 20 19:14:00 +0000 2015","favourites_count":24300,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1792,"lang":null,"status":{"created_at":"Fri - Mar 25 19:41:12 +0000 2022","id":1507442494140727304,"id_str":"1507442494140727304","text":"@richsignorelli - Unfortunately, he''s an overly cautious, overrated feckless weenie. Great - jurist, terrible executive.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richsignorelli","name":"Richard - Signorelli","id":1109045045649424386,"id_str":"1109045045649424386","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507441442041511939,"in_reply_to_status_id_str":"1507441442041511939","in_reply_to_user_id":1109045045649424386,"in_reply_to_user_id_str":"1109045045649424386","in_reply_to_screen_name":"richsignorelli","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284861796634046465,"id_str":"1284861796634046465","name":"Vanessa","screen_name":"Emmabobcowboy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Sun - Jul 19 14:45:51 +0000 2020","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4039756515,"id_str":"4039756515","name":"Marty - Bodner","screen_name":"ScabbyHayes8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":374,"listed_count":0,"created_at":"Sun - Oct 25 15:36:00 +0000 2015","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Dec 11 17:31:14 +0000 2021","id":1469721448407314440,"id_str":"1469721448407314440","text":"#cthsfb - Championship - Bloomfield (12-0) v. Crom.\/Port. (12-0) 12\/11, 11:00am at - Trumbull https:\/\/t.co\/XHyjuvpt0G via @ciacsports","truncated":false,"entities":{"hashtags":[{"text":"cthsfb","indices":[0,7]}],"symbols":[],"user_mentions":[{"screen_name":"ciacsports","name":"CIAC - Sports","id":22775634,"id_str":"22775634","indices":[118,129]}],"urls":[{"url":"https:\/\/t.co\/XHyjuvpt0G","expanded_url":"https:\/\/casci.ac\/7471","display_url":"casci.ac\/7471","indices":[90,113]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145734421,"id_str":"145734421","name":"Jonathan - Wilks","screen_name":"okcthunderdoc","location":"Oklahoma City","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":90,"listed_count":0,"created_at":"Wed - May 19 18:55:25 +0000 2010","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87,"lang":null,"status":{"created_at":"Sat - Nov 06 16:37:14 +0000 2021","id":1457024286263287809,"id_str":"1457024286263287809","text":"RT - @GeorgiaFootball: 10K retweets and we\u2019ll make this our profile picture - @BlooperBraves https:\/\/t.co\/0rJOJlstPv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GeorgiaFootball","name":"Georgia - Football","id":321586997,"id_str":"321586997","indices":[3,19]},{"screen_name":"BlooperBraves","name":"Blooper","id":869303474575613952,"id_str":"869303474575613952","indices":[74,88]}],"urls":[],"media":[{"id":1456991909474308101,"id_str":"1456991909474308101","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","url":"https:\/\/t.co\/0rJOJlstPv","display_url":"pic.twitter.com\/0rJOJlstPv","expanded_url":"https:\/\/twitter.com\/GeorgiaFootball\/status\/1456991915128201223\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}},"source_status_id":1456991915128201223,"source_status_id_str":"1456991915128201223","source_user_id":321586997,"source_user_id_str":"321586997"}]},"extended_entities":{"media":[{"id":1456991909474308101,"id_str":"1456991909474308101","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","url":"https:\/\/t.co\/0rJOJlstPv","display_url":"pic.twitter.com\/0rJOJlstPv","expanded_url":"https:\/\/twitter.com\/GeorgiaFootball\/status\/1456991915128201223\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}},"source_status_id":1456991915128201223,"source_status_id_str":"1456991915128201223","source_user_id":321586997,"source_user_id_str":"321586997"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 06 14:28:36 +0000 2021","id":1456991915128201223,"id_str":"1456991915128201223","text":"10K - retweets and we\u2019ll make this our profile picture @BlooperBraves https:\/\/t.co\/0rJOJlstPv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BlooperBraves","name":"Blooper","id":869303474575613952,"id_str":"869303474575613952","indices":[53,67]}],"urls":[],"media":[{"id":1456991909474308101,"id_str":"1456991909474308101","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","url":"https:\/\/t.co\/0rJOJlstPv","display_url":"pic.twitter.com\/0rJOJlstPv","expanded_url":"https:\/\/twitter.com\/GeorgiaFootball\/status\/1456991915128201223\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1456991909474308101,"id_str":"1456991909474308101","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FDhGbBTVkAU8Vix.jpg","url":"https:\/\/t.co\/0rJOJlstPv","display_url":"pic.twitter.com\/0rJOJlstPv","expanded_url":"https:\/\/twitter.com\/GeorgiaFootball\/status\/1456991915128201223\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8857,"favorite_count":7589,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8857,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480862879353430016\/pBEMcKBB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480862879353430016\/pBEMcKBB_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1063236164537262080,"id_str":"1063236164537262080","name":"Khmd","screen_name":"Khmd14","location":"United - Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":424,"listed_count":0,"created_at":"Fri - Nov 16 01:03:50 +0000 2018","favourites_count":3446,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Fri - Mar 25 16:44:59 +0000 2022","id":1507398147697483791,"id_str":"1507398147697483791","text":"@Xenta777 - They can''t take your memories away from you. The school wil be rebuilt bigger - and better. \ud83d\udc9b\ud83c\uddfa\ud83c\udde6\ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xenta777","name":"Xenta","id":2799946720,"id_str":"2799946720","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507394952929681449,"in_reply_to_status_id_str":"1507394952929681449","in_reply_to_user_id":2799946720,"in_reply_to_user_id_str":"2799946720","in_reply_to_screen_name":"Xenta777","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094529326958198784\/aY7Oi8u1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094529326958198784\/aY7Oi8u1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218911149854466048,"id_str":"1218911149854466048","name":"Latresiabell","screen_name":"Latresiabell1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":244,"listed_count":0,"created_at":"Sun - Jan 19 15:01:08 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65251564,"id_str":"65251564","name":"Rik - Shafer","screen_name":"quickrik","location":"Pompano Beach, FL","description":"","url":"https:\/\/t.co\/rFw2r58sUe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rFw2r58sUe","expanded_url":"http:\/\/www.beachdogband.com","display_url":"beachdogband.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":620,"listed_count":1,"created_at":"Thu - Aug 13 02:50:56 +0000 2009","favourites_count":5973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2301,"lang":null,"status":{"created_at":"Sat - Dec 18 19:32:14 +0000 2021","id":1472288615275376643,"id_str":"1472288615275376643","text":"RT - @OccupyDemocrats: BREAKING: CNN reveals that it was Rick Perry who sent the - most damning of all of the texts sent to Mark Meadows, which\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 23:34:17 +0000 2021","id":1471987143576891394,"id_str":"1471987143576891394","text":"BREAKING: - CNN reveals that it was Rick Perry who sent the most damning of all of the - texts sent to Mark Meadows, wh\u2026 https:\/\/t.co\/0KFV3jMyog","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0KFV3jMyog","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471987143576891394","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8288,"favorite_count":19050,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8288,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65251564\/1593979568","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1210808833,"id_str":"1210808833","name":"Sandeep","screen_name":"Listen_Sandy","location":"Hyderabad, - India","description":"On the Move.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":1097,"listed_count":0,"created_at":"Sat - Feb 23 06:15:26 +0000 2013","favourites_count":2270,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":152,"lang":null,"status":{"created_at":"Wed - Mar 23 09:45:18 +0000 2022","id":1506567757327843328,"id_str":"1506567757327843328","text":"RT - @ETNOWlive: LIVE | #ZomatoInstant: 10 minute food delivery \n\nThe announcement - by @deepigoyal has broken the internet. We cover all the a\u2026","truncated":false,"entities":{"hashtags":[{"text":"ZomatoInstant","indices":[22,36]}],"symbols":[],"user_mentions":[{"screen_name":"ETNOWlive","name":"ET - NOW","id":225012752,"id_str":"225012752","indices":[3,13]},{"screen_name":"deepigoyal","name":"Deepinder - Goyal","id":72481380,"id_str":"72481380","indices":[84,95]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 12:32:26 +0000 2022","id":1506247428504440832,"id_str":"1506247428504440832","text":"LIVE - | #ZomatoInstant: 10 minute food delivery \n\nThe announcement by @deepigoyal - has broken the internet. We cover\u2026 https:\/\/t.co\/ipy2K2Gum2","truncated":true,"entities":{"hashtags":[{"text":"ZomatoInstant","indices":[7,21]}],"symbols":[],"user_mentions":[{"screen_name":"deepigoyal","name":"Deepinder - Goyal","id":72481380,"id_str":"72481380","indices":[69,80]}],"urls":[{"url":"https:\/\/t.co\/ipy2K2Gum2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506247428504440832","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":33,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293896650042175493\/puR2p9XW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293896650042175493\/puR2p9XW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1210808833\/1597378797","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":348594140,"id_str":"348594140","name":"Kevin - McBride","screen_name":"BrideKevin","location":"","description":"Happily Retired - Financial Services Manager and Proud Papa of 8 Wonderful Grandkids Never Short - of Tweetable Thoughts","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":179,"listed_count":0,"created_at":"Thu - Aug 04 17:48:58 +0000 2011","favourites_count":4349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5456,"lang":null,"status":{"created_at":"Fri - Mar 25 11:53:05 +0000 2022","id":1507324690758578178,"id_str":"1507324690758578178","text":"Kudos - \ud83d\udc4f to Senator Ben Sasse coining the term #Jackassery to describe - his colleagues questioning\u2026 https:\/\/t.co\/DaIzuspc81","truncated":true,"entities":{"hashtags":[{"text":"Jackassery","indices":[46,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DaIzuspc81","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507324690758578178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271223032447676420\/KXZV9yfg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271223032447676420\/KXZV9yfg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":285782334,"id_str":"285782334","name":"Alexander - Charles","screen_name":"AlexWCharles","location":"","description":"Fan of - NY Jets and all all things pop culture, #media and #PR. These views are my - own. #FordhamRam and \ud83c\udded\ud83c\uddf9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1144,"friends_count":4225,"listed_count":37,"created_at":"Thu - Apr 21 19:37:50 +0000 2011","favourites_count":6431,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1171,"lang":null,"status":{"created_at":"Sun - Jan 23 23:11:36 +0000 2022","id":1485389785879437312,"id_str":"1485389785879437312","text":"LARvsTB - https:\/\/t.co\/dupVyD567M","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dupVyD567M","expanded_url":"https:\/\/twitter.com\/AlexWCharles\/status\/1485382676181835783","display_url":"twitter.com\/AlexWCharles\/s\u2026","indices":[8,31]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1485382676181835783,"quoted_status_id_str":"1485382676181835783","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"da"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316737615601848322\/alIRgZ3B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316737615601848322\/alIRgZ3B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285782334\/1435242278","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":155517146,"id_str":"155517146","name":"basak - soykan","screen_name":"basaksoykan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":204,"listed_count":0,"created_at":"Mon - Jun 14 10:33:39 +0000 2010","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Thu - Jan 07 08:25:51 +0000 2021","id":1347097101239537664,"id_str":"1347097101239537664","text":"RT - @nathanTbernard: Holocaust denier Nick Fuentes and neo-nazi loser Baked Alaska - both live-streamed from Pelosi''s office after storming th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathanTbernard","name":"Nathan - Bernard","id":197176970,"id_str":"197176970","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 06 23:17:29 +0000 2021","id":1346959100794474498,"id_str":"1346959100794474498","text":"Holocaust - denier Nick Fuentes and neo-nazi loser Baked Alaska both live-streamed from - Pelosi''s office after stormin\u2026 https:\/\/t.co\/AIwmTYZdCo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AIwmTYZdCo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1346959100794474498","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1346937960005062661,"in_reply_to_status_id_str":"1346937960005062661","in_reply_to_user_id":197176970,"in_reply_to_user_id_str":"197176970","in_reply_to_screen_name":"nathanTbernard","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22703,"favorite_count":39113,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":22703,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":982974362,"id_str":"982974362","name":"Mark - Simpler","screen_name":"nhmoose54","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":155,"listed_count":0,"created_at":"Sat - Dec 01 17:23:11 +0000 2012","favourites_count":8446,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Fri - Nov 26 12:53:29 +0000 2021","id":1464215732774969346,"id_str":"1464215732774969346","text":"@DonaldJTrumpJr - You really can\u2019t fix stupid!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1464045800057622529,"in_reply_to_status_id_str":"1464045800057622529","in_reply_to_user_id":39344374,"in_reply_to_user_id_str":"39344374","in_reply_to_screen_name":"DonaldJTrumpJr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1156267267694452740\/2MqYmSlq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156267267694452740\/2MqYmSlq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248049168540631052,"id_str":"1248049168540631052","name":"Pachavezarmyvet@gmail.com","screen_name":"pachavezarmyvet","location":"","description":"flight - maintenance engineer B767\/757,,Embry Riddle Aero University,USAF supersonic - jet tech,US Army Apache and Cobra tech,Airframe Power plant Tech,Private Pilo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":3839,"listed_count":1,"created_at":"Thu - Apr 09 00:45:01 +0000 2020","favourites_count":26329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3346,"lang":null,"status":{"created_at":"Wed - Mar 23 23:12:59 +0000 2022","id":1506771016726548481,"id_str":"1506771016726548481","text":"@weldemr - @TRADOC @USACIMT @medcoe @DennisLeMaster7 68J was my MOS after Snake training - at Eustis, awesome memories \ud83c\udde9\ud83c\uddf4\ud83c\uddfa\ud83c\uddf8\u2708","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"weldemr","name":"COL - Marc Welde","id":325951059,"id_str":"325951059","indices":[0,8]},{"screen_name":"TRADOC","name":"U.S. - Army TRADOC","id":20452755,"id_str":"20452755","indices":[9,16]},{"screen_name":"USACIMT","name":"U.S. - Army CIMT","id":769270936872902658,"id_str":"769270936872902658","indices":[17,25]},{"screen_name":"medcoe","name":"MEDCoE","id":1022953035255955457,"id_str":"1022953035255955457","indices":[26,33]},{"screen_name":"DennisLeMaster7","name":"MG - Dennis LeMaster","id":1246103939990380545,"id_str":"1246103939990380545","indices":[34,50]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506491071282528259,"in_reply_to_status_id_str":"1506491071282528259","in_reply_to_user_id":325951059,"in_reply_to_user_id_str":"325951059","in_reply_to_screen_name":"weldemr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263142189552611329\/XiuLyKNT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263142189552611329\/XiuLyKNT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28583781,"id_str":"28583781","name":"Ashley - O''Brien","screen_name":"ashleyobrien225","location":"Savannah, Georgia","description":"Staff - member at Chatham Savannah Citizen Advocacy, UGA grad, married with children, - dog, and 2 cats, mostly left-leaning moderate, she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":701,"listed_count":0,"created_at":"Fri - Apr 03 15:21:55 +0000 2009","favourites_count":2968,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Fri - Mar 18 00:07:04 +0000 2022","id":1504610299336396800,"id_str":"1504610299336396800","text":"@madebyvia - @SamAugustDean @TaylorLorenz It\u2019s a huge deal in Savannah GA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"madebyvia","name":"Anthony","id":1038191508,"id_str":"1038191508","indices":[0,10]},{"screen_name":"SamAugustDean","name":"Sam - Dean \ud83e\udd85","id":82670189,"id_str":"82670189","indices":[11,25]},{"screen_name":"TaylorLorenz","name":"Taylor - Lorenz","id":208725869,"id_str":"208725869","indices":[26,39]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504539144390909954,"in_reply_to_status_id_str":"1504539144390909954","in_reply_to_user_id":1038191508,"in_reply_to_user_id_str":"1038191508","in_reply_to_screen_name":"madebyvia","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":27,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/120088439\/Ashley_O_Brien_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/120088439\/Ashley_O_Brien_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":977725313382780928,"id_str":"977725313382780928","name":"l_ann","screen_name":"lann50749335","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":563,"listed_count":0,"created_at":"Sun - Mar 25 01:54:14 +0000 2018","favourites_count":3209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Wed - Jan 27 03:16:21 +0000 2021","id":1354266970162659331,"id_str":"1354266970162659331","text":"I - just subscribed to Charlotte''s Web Thoughts https:\/\/t.co\/CaeKsn2EsC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CaeKsn2EsC","expanded_url":"https:\/\/charlotteclymer.substack.com\/?utm_medium=web&utm_campaign=pss","display_url":"charlotteclymer.substack.com\/?utm_medium=we\u2026","indices":[46,69]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":764141542785163264,"id_str":"764141542785163264","name":"Tiffany - MCcormick","screen_name":"mstiffany184","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":1803,"listed_count":2,"created_at":"Fri - Aug 12 16:48:35 +0000 2016","favourites_count":22502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23637,"lang":null,"status":{"created_at":"Sat - Aug 28 17:14:31 +0000 2021","id":1431666517389815816,"id_str":"1431666517389815816","text":"RT - @ibeastIess: Zelina Vega resigned with WWE just to squashed every week \ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ibeastIess","name":"iBeast","id":1186076264085540866,"id_str":"1186076264085540866","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 28 00:24:29 +0000 2021","id":1431412335978160129,"id_str":"1431412335978160129","text":"Zelina - Vega resigned with WWE just to squashed every week \ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":1074,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":60,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40747039,"id_str":"40747039","name":"Cllr. - S\u00e9amie Morris MCC","screen_name":"Nenaghman","location":"Nenagh Tipperary","description":"Independent Councillor - on Tipperary County Council","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2021,"friends_count":2629,"listed_count":31,"created_at":"Sun - May 17 22:04:06 +0000 2009","favourites_count":13902,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32551,"lang":null,"status":{"created_at":"Sat - Mar 26 10:01:38 +0000 2022","id":1507659032043085826,"id_str":"1507659032043085826","text":"RT - @griptmedia: Carol Nolan says that Ireland is \"not equipped\" to deal with - 200,000 refugees, and urges fairness for the HSE medical card\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"griptmedia","name":"gript","id":1060579035170959360,"id_str":"1060579035170959360","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:47:17 +0000 2022","id":1507640318279274498,"id_str":"1507640318279274498","text":"Carol - Nolan says that Ireland is \"not equipped\" to deal with 200,000 refugees, - and urges fairness for the HSE medic\u2026 https:\/\/t.co\/vsJQcsahWt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vsJQcsahWt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507640318279274498","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356177054329425920\/TMafOhKt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356177054329425920\/TMafOhKt_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1429590937,"id_str":"1429590937","name":"JQ","screen_name":"jackieoswalt101","location":"","description":"hi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":130,"listed_count":0,"created_at":"Wed - May 15 05:06:10 +0000 2013","favourites_count":97,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Mon - Dec 07 15:29:29 +0000 2020","id":1335969687578931201,"id_str":"1335969687578931201","text":"@CBHelpTeam - hello, one of my orders was sent to the wrong address and I was unable to - retrieve it so UPS sent it ba\u2026 https:\/\/t.co\/qwPaNIlswa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBHelpTeam","name":"CBHelpTeam","id":2520282835,"id_str":"2520282835","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/qwPaNIlswa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1335969687578931201","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2520282835,"in_reply_to_user_id_str":"2520282835","in_reply_to_screen_name":"CBHelpTeam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149687120010907648\/YD2YMYK9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149687120010907648\/YD2YMYK9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1429590937\/1593111087","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2679093878,"id_str":"2679093878","name":"Tingting","screen_name":"shirleyzaozao","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":449,"listed_count":0,"created_at":"Fri - Jul 25 08:48:38 +0000 2014","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sun - Apr 11 03:33:49 +0000 2021","id":1381088069827330048,"id_str":"1381088069827330048","text":"@Stefsunyanzi - \u563f\u563f\u563f \u8001\u5927\u597d\u53ef\u7231 \u5e0c\u671b\u4f60\u591a\u56de\u6765\u548c\u6211\u4eec\u4e92\u52a8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Stefsunyanzi","name":"Stef - Sun","id":83570815,"id_str":"83570815","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1380814033180192773,"in_reply_to_status_id_str":"1380814033180192773","in_reply_to_user_id":83570815,"in_reply_to_user_id_str":"83570815","in_reply_to_screen_name":"Stefsunyanzi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303325656609062912\/yO218w5g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303325656609062912\/yO218w5g_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45302913,"id_str":"45302913","name":"Ivy - Morrison","screen_name":"myivy","location":"","description":"Catlover. Californian. - Go Lions!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":282,"friends_count":2046,"listed_count":11,"created_at":"Sun - Jun 07 07:32:19 +0000 2009","favourites_count":23223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3233,"lang":null,"status":{"created_at":"Mon - Feb 28 19:14:28 +0000 2022","id":1498376072814940163,"id_str":"1498376072814940163","text":"RT - @briantylercohen: BREAKING: Ukrainian President Zelenskyy signs application - for membership in the European Union.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"briantylercohen","name":"Brian - Tyler Cohen","id":455684839,"id_str":"455684839","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 16:23:53 +0000 2022","id":1498333143132082177,"id_str":"1498333143132082177","text":"BREAKING: - Ukrainian President Zelenskyy signs application for membership in the European - Union.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13607,"favorite_count":164813,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13607,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/836088414965379073\/wSgalvs3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/836088414965379073\/wSgalvs3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1147004107,"id_str":"1147004107","name":"Dan - Valente","screen_name":"DanValente1","location":"Albany, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":130,"listed_count":0,"created_at":"Mon - Feb 04 04:10:36 +0000 2013","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Oct 22 13:37:07 +0000 2021","id":1451543141027299330,"id_str":"1451543141027299330","text":"RT - @SportsCenter: \"Maybe I''m just naive in my ability to play basketball, but - in my head, I''m top 75 all-time.\"\n\n\u2014Klay Thompson after not b\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SportsCenter","name":"SportsCenter","id":26257166,"id_str":"26257166","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 21 23:55:11 +0000 2021","id":1451336294995464192,"id_str":"1451336294995464192","text":"\"Maybe - I''m just naive in my ability to play basketball, but in my head, I''m top - 75 all-time.\"\n\n\u2014Klay Thompson after\u2026 https:\/\/t.co\/C1zioyeBbA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1zioyeBbA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1451336294995464192","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2962,"favorite_count":33399,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2962,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1147004107\/1522269403","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":786225727788183552,"id_str":"786225727788183552","name":"Kyle - Harbin","screen_name":"KylefHarbin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":150,"listed_count":0,"created_at":"Wed - Oct 12 15:23:15 +0000 2016","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1211425191844171777,"id_str":"1211425191844171777","name":"Nicolette","screen_name":"nicolettecolett","location":"","description":"Books - are my solace.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":27,"friends_count":527,"listed_count":0,"created_at":"Sun - Dec 29 23:14:31 +0000 2019","favourites_count":1575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":776,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397643918267719682\/lJB00agS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397643918267719682\/lJB00agS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1211425191844171777\/1606532719","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300052442533498881,"id_str":"1300052442533498881","name":"COM.MAN","screen_name":"COMMAN19855572","location":"Boston, - MA","description":"NFL politics NBA, MLB, NHL, World Wide News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":303,"listed_count":0,"created_at":"Sun - Aug 30 12:47:38 +0000 2020","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":499,"lang":null,"status":{"created_at":"Thu - Mar 25 15:04:02 +0000 2021","id":1375101171778658308,"id_str":"1375101171778658308","text":"@Jeffreyaasen5 - Gunsmoke https:\/\/t.co\/siL480ac0h","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jeffreyaasen5","name":"DOGSRULE","id":1004415843617333248,"id_str":"1004415843617333248","indices":[0,14]}],"urls":[],"media":[{"id":1375101164333768706,"id_str":"1375101164333768706","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ExVXOS5XIAI5xpk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ExVXOS5XIAI5xpk.jpg","url":"https:\/\/t.co\/siL480ac0h","display_url":"pic.twitter.com\/siL480ac0h","expanded_url":"https:\/\/twitter.com\/COMMAN19855572\/status\/1375101171778658308\/photo\/1","type":"photo","sizes":{"small":{"w":200,"h":106,"resize":"fit"},"thumb":{"w":106,"h":106,"resize":"crop"},"large":{"w":200,"h":106,"resize":"fit"},"medium":{"w":200,"h":106,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1375101164333768706,"id_str":"1375101164333768706","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/ExVXOS5XIAI5xpk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/ExVXOS5XIAI5xpk.jpg","url":"https:\/\/t.co\/siL480ac0h","display_url":"pic.twitter.com\/siL480ac0h","expanded_url":"https:\/\/twitter.com\/COMMAN19855572\/status\/1375101171778658308\/photo\/1","type":"animated_gif","sizes":{"small":{"w":200,"h":106,"resize":"fit"},"thumb":{"w":106,"h":106,"resize":"crop"},"large":{"w":200,"h":106,"resize":"fit"},"medium":{"w":200,"h":106,"resize":"fit"}},"video_info":{"aspect_ratio":[100,53],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/ExVXOS5XIAI5xpk.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1374809364544978947,"in_reply_to_status_id_str":"1374809364544978947","in_reply_to_user_id":1004415843617333248,"in_reply_to_user_id_str":"1004415843617333248","in_reply_to_screen_name":"Jeffreyaasen5","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300057606246076417\/tRZgHmPL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300057606246076417\/tRZgHmPL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1363457233,"id_str":"1363457233","name":"Tiana - Berry-Jones","screen_name":"TianaJoBerry","location":"In the middle","description":"brown - girl \/ maker \/ designer \/ typography enthusiast \/ nerd \/ artist \/ tech - adjacent \/ lifelong learner \/ bibliophile \/ mom \u007ball thoughts my own\u007d","url":"https:\/\/t.co\/tZj5Q7qUgn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tZj5Q7qUgn","expanded_url":"http:\/\/tianaberryjones.com","display_url":"tianaberryjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":768,"listed_count":3,"created_at":"Fri - Apr 19 03:01:38 +0000 2013","favourites_count":1869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":647,"lang":null,"status":{"created_at":"Mon - Mar 14 19:05:41 +0000 2022","id":1503447292728201217,"id_str":"1503447292728201217","text":"@GailSimone - She is obviously #Storm https:\/\/t.co\/TxQNw2lTLe","truncated":false,"entities":{"hashtags":[{"text":"Storm","indices":[29,35]}],"symbols":[],"user_mentions":[{"screen_name":"GailSimone","name":"Gail - Simone \ud83d\udc99\ud83d\udc9b","id":16024323,"id_str":"16024323","indices":[0,11]}],"urls":[],"media":[{"id":1503447282276093968,"id_str":"1503447282276093968","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1RVm6X0BAbco3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1RVm6X0BAbco3.jpg","url":"https:\/\/t.co\/TxQNw2lTLe","display_url":"pic.twitter.com\/TxQNw2lTLe","expanded_url":"https:\/\/twitter.com\/TianaJoBerry\/status\/1503447292728201217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":274,"resize":"fit"},"medium":{"w":480,"h":274,"resize":"fit"},"small":{"w":480,"h":274,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503447282276093968,"id_str":"1503447282276093968","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1RVm6X0BAbco3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FN1RVm6X0BAbco3.jpg","url":"https:\/\/t.co\/TxQNw2lTLe","display_url":"pic.twitter.com\/TxQNw2lTLe","expanded_url":"https:\/\/twitter.com\/TianaJoBerry\/status\/1503447292728201217\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":274,"resize":"fit"},"medium":{"w":480,"h":274,"resize":"fit"},"small":{"w":480,"h":274,"resize":"fit"}},"video_info":{"aspect_ratio":[240,137],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FN1RVm6X0BAbco3.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503108442214395906,"in_reply_to_status_id_str":"1503108442214395906","in_reply_to_user_id":16024323,"in_reply_to_user_id_str":"16024323","in_reply_to_screen_name":"GailSimone","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304985530585804800\/zI6wRsZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304985530585804800\/zI6wRsZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1363457233\/1488639415","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15911504,"id_str":"15911504","name":"imigma","screen_name":"Imigma","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1519,"listed_count":1,"created_at":"Wed - Aug 20 00:11:00 +0000 2008","favourites_count":2067,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":318,"lang":null,"status":{"created_at":"Sat - Mar 26 01:41:18 +0000 2022","id":1507533118290501639,"id_str":"1507533118290501639","text":"@Angry_Staffer - Is Trump protected. I\u2019ve heard rumors of him being a CI since the 70\u2019s.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angry_Staffer","name":"Angry - Staffer \ud83c\udf3b","id":848148994102611969,"id_str":"848148994102611969","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507526567949488133,"in_reply_to_status_id_str":"1507526567949488133","in_reply_to_user_id":848148994102611969,"in_reply_to_user_id_str":"848148994102611969","in_reply_to_screen_name":"Angry_Staffer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921915999531798528\/RegKm1cZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921915999531798528\/RegKm1cZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17858736,"id_str":"17858736","name":"WylieCat","screen_name":"wyliecattoo","location":"Austin, - TX","description":"Writer, gardener, learner","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":357,"listed_count":0,"created_at":"Thu - Dec 04 03:32:49 +0000 2008","favourites_count":3036,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8215,"lang":null,"status":{"created_at":"Sat - Mar 26 02:38:32 +0000 2022","id":1507547518955102209,"id_str":"1507547518955102209","text":"RT - @nywolforg: Your moment of calm \ud83d\udc3a https:\/\/t.co\/4D1mAYq5IA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nywolforg","name":"Wolf - Conservation Center","id":529540495,"id_str":"529540495","indices":[3,13]}],"urls":[],"media":[{"id":1507530134710104064,"id_str":"1507530134710104064","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","url":"https:\/\/t.co\/4D1mAYq5IA","display_url":"pic.twitter.com\/4D1mAYq5IA","expanded_url":"https:\/\/twitter.com\/nywolforg\/status\/1507530308740124692\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507530308740124692,"source_status_id_str":"1507530308740124692","source_user_id":529540495,"source_user_id_str":"529540495"}]},"extended_entities":{"media":[{"id":1507530134710104064,"id_str":"1507530134710104064","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","url":"https:\/\/t.co\/4D1mAYq5IA","display_url":"pic.twitter.com\/4D1mAYq5IA","expanded_url":"https:\/\/twitter.com\/nywolforg\/status\/1507530308740124692\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507530308740124692,"source_status_id_str":"1507530308740124692","source_user_id":529540495,"source_user_id_str":"529540495","video_info":{"aspect_ratio":[1,1],"duration_millis":42667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/pl\/1phPTZSlGTU5-_AT.m3u8?tag=14&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/320x320\/Ug901qr8zxfSSiEn.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/540x540\/aVDUoXN6hsjCF3gA.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/720x720\/qGxnW8eO1Qz520iQ.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:30:08 +0000 2022","id":1507530308740124692,"id_str":"1507530308740124692","text":"Your - moment of calm \ud83d\udc3a https:\/\/t.co\/4D1mAYq5IA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507530134710104064,"id_str":"1507530134710104064","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","url":"https:\/\/t.co\/4D1mAYq5IA","display_url":"pic.twitter.com\/4D1mAYq5IA","expanded_url":"https:\/\/twitter.com\/nywolforg\/status\/1507530308740124692\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507530134710104064,"id_str":"1507530134710104064","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507530134710104064\/img\/dfjZANpFXu6gP20o.jpg","url":"https:\/\/t.co\/4D1mAYq5IA","display_url":"pic.twitter.com\/4D1mAYq5IA","expanded_url":"https:\/\/twitter.com\/nywolforg\/status\/1507530308740124692\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":42667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/pl\/1phPTZSlGTU5-_AT.m3u8?tag=14&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/320x320\/Ug901qr8zxfSSiEn.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/540x540\/aVDUoXN6hsjCF3gA.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507530134710104064\/vid\/720x720\/qGxnW8eO1Qz520iQ.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":898,"favorite_count":4431,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":898,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915749315389222912\/0PKQOUSC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915749315389222912\/0PKQOUSC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17858736\/1507167111","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":335795780,"id_str":"335795780","name":"Rab - Steel \ud83c\udf7a\u26bd\ufe0f\u2764\ufe0f\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f\ud83c\uddea\ud83c\uddf8","screen_name":"RabSteel1","location":"Rojales, - Espa\u00f1a","description":"retired electrician, living in Spain, Hearts till - I die","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":305,"friends_count":858,"listed_count":2,"created_at":"Fri - Jul 15 07:38:06 +0000 2011","favourites_count":46000,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17944,"lang":null,"status":{"created_at":"Fri - Mar 25 12:50:18 +0000 2022","id":1507339087056887808,"id_str":"1507339087056887808","text":"RT - @JonJonesSnr: If your business model relies on paying lower than minimum wage - you do not have a viable business model.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JonJonesSnr","name":"Jon - Jones","id":3349925638,"id_str":"3349925638","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:03:33 +0000 2022","id":1507282026025697303,"id_str":"1507282026025697303","text":"If - your business model relies on paying lower than minimum wage you do not have - a viable business model.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":399,"favorite_count":2614,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":399,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961719750568103937\/2OjvQ88j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961719750568103937\/2OjvQ88j_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":884234066513547264,"id_str":"884234066513547264","name":"BlueAceSpeech&Debate","screen_name":"BlueAceDebate","location":"Wichita, - KS","description":"The home of Wichita East Blue Ace Speech and Debate. Check - here for tournament updates, photos, and team news.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":590,"friends_count":876,"listed_count":1,"created_at":"Mon - Jul 10 02:13:24 +0000 2017","favourites_count":5310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1938,"lang":null,"status":{"created_at":"Sat - Mar 26 02:05:17 +0000 2022","id":1507539154946641922,"id_str":"1507539154946641922","text":"NSDA - LD\/PF Results\n\n1st in Sweeps! 1st in Debate Season Sweeps!\n\nChangwen\/Auggie - - 2nd PFD - National Qualified!\nNe\u2026 https:\/\/t.co\/EKr2E9EXKy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EKr2E9EXKy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507539154946641922","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497248774158270464\/xbphsH8D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497248774158270464\/xbphsH8D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/884234066513547264\/1606787546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19079387,"id_str":"19079387","name":"missykinch","screen_name":"missykinch","location":"New - York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":164,"friends_count":756,"listed_count":2,"created_at":"Fri - Jan 16 18:42:12 +0000 2009","favourites_count":1765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2139,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/119270813\/MF_Headshot_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/119270813\/MF_Headshot_normal.JPG","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230182764445622272,"id_str":"1230182764445622272","name":"Theo_wemetbefore","screen_name":"THEO_WMB","location":"","description":"Sometimes - The Truth Is The Best Lie","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1122,"friends_count":2994,"listed_count":0,"created_at":"Wed - Feb 19 17:30:14 +0000 2020","favourites_count":680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Jan 08 15:39:36 +0000 2021","id":1347568645350817793,"id_str":"1347568645350817793","text":"@Thembisile_Q - You ought to follow me now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Thembisile_Q","name":"Thembisile - Q","id":1240282987385827329,"id_str":"1240282987385827329","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1347543332914933761,"in_reply_to_status_id_str":"1347543332914933761","in_reply_to_user_id":1240282987385827329,"in_reply_to_user_id_str":"1240282987385827329","in_reply_to_screen_name":"Thembisile_Q","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1423337074850254848\/XXEh85Ey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1423337074850254848\/XXEh85Ey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230182764445622272\/1604851370","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2440359572,"id_str":"2440359572","name":"Duck - in Husky Country \ud83e\udd86\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83c\udf3b","screen_name":"redrobrich","location":"Seattle, - WA","description":"University of Oregon | Card carrying lib| Father of twins - | Lover of life and rights","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":206,"listed_count":0,"created_at":"Sat - Apr 12 17:56:16 +0000 2014","favourites_count":1393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":257,"lang":null,"status":{"created_at":"Wed - Mar 23 23:40:12 +0000 2022","id":1506777865999695873,"id_str":"1506777865999695873","text":"@dajennison - @AMiceMarina Homes here are going $1MM over asking here!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dajennison","name":"David - Jennison","id":1311320221,"id_str":"1311320221","indices":[0,11]},{"screen_name":"AMiceMarina","name":"Aida - Marina\ud83c\uddfa\ud83c\udde6","id":41047519,"id_str":"41047519","indices":[12,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506762130758025233,"in_reply_to_status_id_str":"1506762130758025233","in_reply_to_user_id":1311320221,"in_reply_to_user_id_str":"1311320221","in_reply_to_screen_name":"dajennison","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455042509027024896\/zIhUNDoD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455042509027024896\/zIhUNDoD_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1224965966427303938,"id_str":"1224965966427303938","name":"Ascyrus","screen_name":"Ascyrus4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":333,"listed_count":0,"created_at":"Wed - Feb 05 08:00:40 +0000 2020","favourites_count":933,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"status":{"created_at":"Thu - Jan 21 03:16:45 +0000 2021","id":1352092743611375620,"id_str":"1352092743611375620","text":"@BarackObama - @TheAmandaGorman Is that Maya Angelou''s daughter??My God she was Great! https:\/\/t.co\/eT2PWspbQJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[0,12]},{"screen_name":"TheAmandaGorman","name":"Amanda - Gorman","id":2569743630,"id_str":"2569743630","indices":[13,29]}],"urls":[],"media":[{"id":1352092738154594310,"id_str":"1352092738154594310","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EsOZLoEXAAYQ3JQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EsOZLoEXAAYQ3JQ.jpg","url":"https:\/\/t.co\/eT2PWspbQJ","display_url":"pic.twitter.com\/eT2PWspbQJ","expanded_url":"https:\/\/twitter.com\/Ascyrus4\/status\/1352092743611375620\/photo\/1","type":"photo","sizes":{"small":{"w":134,"h":98,"resize":"fit"},"medium":{"w":134,"h":98,"resize":"fit"},"thumb":{"w":98,"h":98,"resize":"crop"},"large":{"w":134,"h":98,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1352092738154594310,"id_str":"1352092738154594310","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EsOZLoEXAAYQ3JQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EsOZLoEXAAYQ3JQ.jpg","url":"https:\/\/t.co\/eT2PWspbQJ","display_url":"pic.twitter.com\/eT2PWspbQJ","expanded_url":"https:\/\/twitter.com\/Ascyrus4\/status\/1352092743611375620\/photo\/1","type":"animated_gif","sizes":{"small":{"w":134,"h":98,"resize":"fit"},"medium":{"w":134,"h":98,"resize":"fit"},"thumb":{"w":98,"h":98,"resize":"crop"},"large":{"w":134,"h":98,"resize":"fit"}},"video_info":{"aspect_ratio":[67,49],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EsOZLoEXAAYQ3JQ.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1351995663475728386,"in_reply_to_status_id_str":"1351995663475728386","in_reply_to_user_id":813286,"in_reply_to_user_id_str":"813286","in_reply_to_screen_name":"BarackObama","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3137324517,"id_str":"3137324517","name":"Michael - Bartlett","screen_name":"MKBartlett8","location":"Ottawa, Ontario","description":"Stay - Curious","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":4109,"listed_count":1,"created_at":"Sun - Apr 05 15:33:45 +0000 2015","favourites_count":3312,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":164,"lang":null,"status":{"created_at":"Sun - Mar 13 12:19:48 +0000 2022","id":1502982758964023296,"id_str":"1502982758964023296","text":"@MayoIsSpicyy - Floss my dog\u2019s teeth","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MayoIsSpicyy","name":"Mayo - \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":1323090408730062849,"id_str":"1323090408730062849","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502832915348017152,"in_reply_to_status_id_str":"1502832915348017152","in_reply_to_user_id":1323090408730062849,"in_reply_to_user_id_str":"1323090408730062849","in_reply_to_screen_name":"MayoIsSpicyy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220347233968754689\/u5_Xgowy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220347233968754689\/u5_Xgowy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3137324517\/1580403262","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21833537,"id_str":"21833537","name":"doug - milam","screen_name":"dem626","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":2918,"listed_count":0,"created_at":"Wed - Feb 25 03:48:55 +0000 2009","favourites_count":60,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Sun - Mar 07 15:16:57 +0000 2021","id":1368581443157454850,"id_str":"1368581443157454850","text":"RT - @karen_therapist: Fuck you, Joe Manchin \n\n#JoeManchin #Manchin #ManchinIsATraitor - https:\/\/t.co\/fbrFwuN7LT","truncated":false,"entities":{"hashtags":[{"text":"JoeManchin","indices":[45,56]},{"text":"Manchin","indices":[57,65]},{"text":"ManchinIsATraitor","indices":[66,84]}],"symbols":[],"user_mentions":[{"screen_name":"karen_therapist","name":"\ud835\udd42\ud835\udd52\ud835\udd63\ud835\udd56\ud835\udd5f''\ud835\udd64 - \ud835\udd4b\ud835\udd59\ud835\udd56\ud835\udd63\ud835\udd52\ud835\udd61\ud835\udd5a\ud835\udd64\ud835\udd65","id":1280288926033379330,"id_str":"1280288926033379330","indices":[3,19]}],"urls":[],"media":[{"id":1368049050679967747,"id_str":"1368049050679967747","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","url":"https:\/\/t.co\/fbrFwuN7LT","display_url":"pic.twitter.com\/fbrFwuN7LT","expanded_url":"https:\/\/twitter.com\/karen_therapist\/status\/1368049258537115648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}},"source_status_id":1368049258537115648,"source_status_id_str":"1368049258537115648","source_user_id":1280288926033379330,"source_user_id_str":"1280288926033379330"}]},"extended_entities":{"media":[{"id":1368049050679967747,"id_str":"1368049050679967747","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","url":"https:\/\/t.co\/fbrFwuN7LT","display_url":"pic.twitter.com\/fbrFwuN7LT","expanded_url":"https:\/\/twitter.com\/karen_therapist\/status\/1368049258537115648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}},"source_status_id":1368049258537115648,"source_status_id_str":"1368049258537115648","source_user_id":1280288926033379330,"source_user_id_str":"1280288926033379330"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 06 04:02:15 +0000 2021","id":1368049258537115648,"id_str":"1368049258537115648","text":"Fuck - you, Joe Manchin \n\n#JoeManchin #Manchin #ManchinIsATraitor https:\/\/t.co\/fbrFwuN7LT","truncated":false,"entities":{"hashtags":[{"text":"JoeManchin","indices":[24,35]},{"text":"Manchin","indices":[36,44]},{"text":"ManchinIsATraitor","indices":[45,63]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1368049050679967747,"id_str":"1368049050679967747","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","url":"https:\/\/t.co\/fbrFwuN7LT","display_url":"pic.twitter.com\/fbrFwuN7LT","expanded_url":"https:\/\/twitter.com\/karen_therapist\/status\/1368049258537115648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1368049050679967747,"id_str":"1368049050679967747","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EvxJXQUXAAMq04T.jpg","url":"https:\/\/t.co\/fbrFwuN7LT","display_url":"pic.twitter.com\/fbrFwuN7LT","expanded_url":"https:\/\/twitter.com\/karen_therapist\/status\/1368049258537115648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":512,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":114,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140883580,"id_str":"1140883580","name":"EL-YAQOUB","screen_name":"YakubuSabo","location":"JIGAWA - NIGERIA","description":"Muslim","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":221,"listed_count":0,"created_at":"Fri - Feb 01 22:32:09 +0000 2013","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/702822878094475264\/vqVScwix_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/702822878094475264\/vqVScwix_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266827728264867841,"id_str":"1266827728264867841","name":"Macy - Berendsen","screen_name":"MacyBerendsen","location":"","description":"she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":45,"listed_count":0,"created_at":"Sat - May 30 20:24:54 +0000 2020","favourites_count":276,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Mon - Jun 07 01:08:42 +0000 2021","id":1401707655031406593,"id_str":"1401707655031406593","text":"@Ryan_Mares - @Girls_GottaEat @MyFavMurder @CrimeJunkiePod Very Presidential, Let Me Ruin - Your Life, Page 7, Parcast\u2019\u2026 https:\/\/t.co\/FB3MQQighT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ryan_Mares","name":"Ryan","id":1017825035875180550,"id_str":"1017825035875180550","indices":[0,11]},{"screen_name":"Girls_GottaEat","name":"Girls - Gotta Eat Podcast","id":963272256796446720,"id_str":"963272256796446720","indices":[12,27]},{"screen_name":"MyFavMurder","name":"My - Favorite Murder","id":4803705924,"id_str":"4803705924","indices":[28,40]},{"screen_name":"CrimeJunkiePod","name":"Crime - Junkie Podcast","id":918539343811235841,"id_str":"918539343811235841","indices":[41,56]}],"urls":[{"url":"https:\/\/t.co\/FB3MQQighT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1401707655031406593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1401604583378636804,"in_reply_to_status_id_str":"1401604583378636804","in_reply_to_user_id":1017825035875180550,"in_reply_to_user_id_str":"1017825035875180550","in_reply_to_screen_name":"Ryan_Mares","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446004040102514694\/nQ0dpHxl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446004040102514694\/nQ0dpHxl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266827728264867841\/1633589204","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":807685632508252160,"id_str":"807685632508252160","name":"John","screen_name":"J40BTY","location":"Saint - Andrews, Scotland","description":"Golfer,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":386,"listed_count":0,"created_at":"Sat - Dec 10 20:37:15 +0000 2016","favourites_count":6159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4356,"lang":null,"status":{"created_at":"Sun - Mar 20 18:43:20 +0000 2022","id":1505615994676514818,"id_str":"1505615994676514818","text":"@British_Airways, - now stuck on board at departure gate, a shambles https:\/\/t.co\/8KH3xrBOpe - https:\/\/t.co\/KeF4LpPkeu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"British_Airways","name":"British - Airways","id":18332190,"id_str":"18332190","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/8KH3xrBOpe","expanded_url":"https:\/\/twitter.com\/J40BTY\/status\/1505607620744384514","display_url":"twitter.com\/J40BTY\/status\/\u2026","indices":[67,90]}],"media":[{"id":1505615989706215431,"id_str":"1505615989706215431","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/FOUFw_qWUAcwdEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOUFw_qWUAcwdEl.jpg","url":"https:\/\/t.co\/KeF4LpPkeu","display_url":"pic.twitter.com\/KeF4LpPkeu","expanded_url":"https:\/\/twitter.com\/J40BTY\/status\/1505615994676514818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":469,"h":680,"resize":"fit"},"large":{"w":750,"h":1088,"resize":"fit"},"medium":{"w":750,"h":1088,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505615989706215431,"id_str":"1505615989706215431","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/FOUFw_qWUAcwdEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOUFw_qWUAcwdEl.jpg","url":"https:\/\/t.co\/KeF4LpPkeu","display_url":"pic.twitter.com\/KeF4LpPkeu","expanded_url":"https:\/\/twitter.com\/J40BTY\/status\/1505615994676514818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":469,"h":680,"resize":"fit"},"large":{"w":750,"h":1088,"resize":"fit"},"medium":{"w":750,"h":1088,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":18332190,"in_reply_to_user_id_str":"18332190","in_reply_to_screen_name":"British_Airways","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505607620744384514,"quoted_status_id_str":"1505607620744384514","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389560849258459138\/3jEvkiCJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389560849258459138\/3jEvkiCJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/807685632508252160\/1586079359","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1227090933730234368,"id_str":"1227090933730234368","name":"indigo - atlas","screen_name":"AtlasIndigo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":874,"listed_count":0,"created_at":"Tue - Feb 11 04:44:28 +0000 2020","favourites_count":2178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":218,"lang":null,"status":{"created_at":"Sat - Jan 01 23:37:44 +0000 2022","id":1477423827151998977,"id_str":"1477423827151998977","text":"RT - @KLobstar: gonna air fry a Big Mac for 120 minutes and see what happens https:\/\/t.co\/Fsslsj6pV5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KLobstar","name":"\ud835\ude94\ud835\ude8e\ud835\ude97\ud835\ude8d\ud835\ude9b\ud835\ude92\ud835\ude8c\ud835\ude94 - \ud835\ude95\ud835\ude98\ud835\ude8b\ud835\ude9c\ud835\ude9d\ud835\ude8a\ud835\ude9b","id":2757727221,"id_str":"2757727221","indices":[3,12]}],"urls":[],"media":[{"id":1477356732762537991,"id_str":"1477356732762537991","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","url":"https:\/\/t.co\/Fsslsj6pV5","display_url":"pic.twitter.com\/Fsslsj6pV5","expanded_url":"https:\/\/twitter.com\/KLobstar\/status\/1477356741826383874\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1477356741826383874,"source_status_id_str":"1477356741826383874","source_user_id":2757727221,"source_user_id_str":"2757727221"}]},"extended_entities":{"media":[{"id":1477356732762537991,"id_str":"1477356732762537991","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","url":"https:\/\/t.co\/Fsslsj6pV5","display_url":"pic.twitter.com\/Fsslsj6pV5","expanded_url":"https:\/\/twitter.com\/KLobstar\/status\/1477356741826383874\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1477356741826383874,"source_status_id_str":"1477356741826383874","source_user_id":2757727221,"source_user_id_str":"2757727221"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 01 19:11:09 +0000 2022","id":1477356741826383874,"id_str":"1477356741826383874","text":"gonna - air fry a Big Mac for 120 minutes and see what happens https:\/\/t.co\/Fsslsj6pV5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1477356732762537991,"id_str":"1477356732762537991","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","url":"https:\/\/t.co\/Fsslsj6pV5","display_url":"pic.twitter.com\/Fsslsj6pV5","expanded_url":"https:\/\/twitter.com\/KLobstar\/status\/1477356741826383874\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1477356732762537991,"id_str":"1477356732762537991","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FICgHv7XwAcv7Pl.jpg","url":"https:\/\/t.co\/Fsslsj6pV5","display_url":"pic.twitter.com\/Fsslsj6pV5","expanded_url":"https:\/\/twitter.com\/KLobstar\/status\/1477356741826383874\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24919,"favorite_count":195337,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24919,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296591462717628416\/ARZV1_Bq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296591462717628416\/ARZV1_Bq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227090933730234368\/1597966520","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2586337237,"id_str":"2586337237","name":"olusegun - adesina","screen_name":"oaadesina70","location":"Lagos, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":529,"listed_count":0,"created_at":"Tue - Jun 24 20:40:26 +0000 2014","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":274,"lang":null,"status":{"created_at":"Mon - Mar 21 22:33:27 +0000 2022","id":1506036292383121410,"id_str":"1506036292383121410","text":"@iyaboawokoya - Eni aye nfe ki labuku","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iyaboawokoya","name":"Arinola - Ifeoma Nnagi Awokoya @ 60","id":177113737,"id_str":"177113737","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505885410106486786,"in_reply_to_status_id_str":"1505885410106486786","in_reply_to_user_id":177113737,"in_reply_to_user_id_str":"177113737","in_reply_to_screen_name":"iyaboawokoya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504231300479299586\/INgG4fuf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504231300479299586\/INgG4fuf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":246717124,"id_str":"246717124","name":"KarenS.","screen_name":"Karenlovesgoats","location":"","description":"A - Lover of goats, donkeys, dogs, cats (all animals really)\r\nMy farm is my - heaven :-)","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":26,"listed_count":0,"created_at":"Thu - Feb 03 09:56:37 +0000 2011","favourites_count":45641,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3058,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000162514461\/19ebe9988c82710c19ccbccb030b40ee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000162514461\/19ebe9988c82710c19ccbccb030b40ee_normal.jpeg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308772842041995267,"id_str":"1308772842041995267","name":"Frank - Waldron","screen_name":"FrankWaldron10","location":"Houston, Texas","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":621,"listed_count":0,"created_at":"Wed - Sep 23 14:19:15 +0000 2020","favourites_count":2304,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1106,"lang":null,"status":{"created_at":"Tue - Nov 24 04:47:48 +0000 2020","id":1331097160172105731,"id_str":"1331097160172105731","text":"@realDonaldTrump - Hey Trump-tards! Just keep sending in those donations for my \"legal team\"! - We (I) need as much mon\u2026 https:\/\/t.co\/Y06sK2jOwj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/Y06sK2jOwj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1331097160172105731","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1331086969183621120,"in_reply_to_status_id_str":"1331086969183621120","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309141138167730184\/Rlo4WBHw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309141138167730184\/Rlo4WBHw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308772842041995267\/1600958807","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":228549186,"id_str":"228549186","name":"Pale - Ale","screen_name":"nocontextale","location":"","description":"chill, but - with anxiety (ella)\n\u2022tweets a t\u00edtulo personal\u2022","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":532,"listed_count":1,"created_at":"Mon - Dec 20 01:49:13 +0000 2010","favourites_count":67421,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10191,"lang":null,"status":{"created_at":"Sat - Mar 26 04:11:45 +0000 2022","id":1507570978154504195,"id_str":"1507570978154504195","text":"Es - que empedar en la Tizap\u00e1n hits different","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482944288845705217\/6YihbpAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482944288845705217\/6YihbpAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228549186\/1642316242","profile_link_color":"F58EA8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1362091856,"id_str":"1362091856","name":"Dan - Wessman","screen_name":"djwessman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":234,"listed_count":0,"created_at":"Thu - Apr 18 14:35:58 +0000 2013","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Fri - Jan 28 02:27:49 +0000 2022","id":1486888715674959877,"id_str":"1486888715674959877","text":"RT - @DrNWillburger: A tiny (3.7 cm) but amazing #iceage masterpiece: the figure - of a woolly mammoth was carved in mammoth ivory some 40,000\u2026","truncated":false,"entities":{"hashtags":[{"text":"iceage","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"DrNWillburger","name":"Nina - Willburger","id":1236011601611952130,"id_str":"1236011601611952130","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 22 09:16:29 +0000 2022","id":1484817234027503620,"id_str":"1484817234027503620","text":"A - tiny (3.7 cm) but amazing #iceage masterpiece: the figure of a woolly mammoth - was carved in mammoth ivory some 40\u2026 https:\/\/t.co\/upZHRDPDOI","truncated":true,"entities":{"hashtags":[{"text":"iceage","indices":[28,35]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/upZHRDPDOI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484817234027503620","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":794,"favorite_count":3939,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":794,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205232783381204992,"id_str":"1205232783381204992","name":"steff","screen_name":"steffanyferrazz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":241,"listed_count":0,"created_at":"Thu - Dec 12 21:08:13 +0000 2019","favourites_count":10564,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1383,"lang":null,"status":{"created_at":"Fri - Mar 25 11:27:48 +0000 2022","id":1507318327517093893,"id_str":"1507318327517093893","text":"RT - @eusou_a_guerra: Curitiba\/PR\n\nEstamos procurando Mixa Sampaio. Foi vista - ontem pela \u00faltima vez antes de sair pra trabalhar. Segundo a re\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eusou_a_guerra","name":"Kaa - \u26a7","id":3327266490,"id_str":"3327266490","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:49:36 +0000 2022","id":1507142618412630018,"id_str":"1507142618412630018","text":"Curitiba\/PR\n\nEstamos - procurando Mixa Sampaio. Foi vista ontem pela \u00faltima vez antes de sair - pra trabalhar. Segundo\u2026 https:\/\/t.co\/EnLsS9VoFV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EnLsS9VoFV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507142618412630018","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1986,"favorite_count":2389,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":1986,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504277255001944064\/Pxo-D8WI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504277255001944064\/Pxo-D8WI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205232783381204992\/1577407647","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17658437,"id_str":"17658437","name":"Ylva - Nordstr\u00f6m","screen_name":"YCRetail1","location":"Belgium","description":"Swedish - woman living in Belgium. Having opinions about everything and nothing.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":382,"friends_count":1259,"listed_count":18,"created_at":"Wed - Nov 26 20:18:22 +0000 2008","favourites_count":1688,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1294,"lang":null,"status":{"created_at":"Wed - Dec 16 23:33:45 +0000 2020","id":1339353050243280899,"id_str":"1339353050243280899","text":"RT - @BDOConsumer: Even before COVID-19 hit, 71% of #retailers cited improving - customer experience as their top business objective. In our la\u2026","truncated":false,"entities":{"hashtags":[{"text":"retailers","indices":[50,60]}],"symbols":[],"user_mentions":[{"screen_name":"BDOConsumer","name":"BDO - Consumer","id":177685684,"id_str":"177685684","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 16 19:00:00 +0000 2020","id":1339284157034344448,"id_str":"1339284157034344448","text":"Even - before COVID-19 hit, 71% of #retailers cited improving customer experience - as their top business objective. In\u2026 https:\/\/t.co\/3Yo0HACTYU","truncated":true,"entities":{"hashtags":[{"text":"retailers","indices":[33,43]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3Yo0HACTYU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1339284157034344448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFCC56","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/743432498684772352\/mCZEr0WU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/743432498684772352\/mCZEr0WU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17658437\/1589396423","profile_link_color":"D82042","profile_sidebar_border_color":"D4D39B","profile_sidebar_fill_color":"472732","profile_text_color":"F27732","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":465136887,"id_str":"465136887","name":"Mike - Healy","screen_name":"MikeHealy84","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":311,"listed_count":0,"created_at":"Mon - Jan 16 00:52:13 +0000 2012","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1331852593,"id_str":"1331852593","name":"Lucy","screen_name":"LucyDLW","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":805,"listed_count":1,"created_at":"Sat - Apr 06 15:23:02 +0000 2013","favourites_count":498,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10188,"lang":null,"status":{"created_at":"Sun - Jun 02 13:44:02 +0000 2019","id":1135180272499138560,"id_str":"1135180272499138560","text":"Check - out narwhal - an iOS app for reddit #getnarwhal \u2212\ud83d\udc33 https:\/\/t.co\/1FOIJIKXQe - https:\/\/t.co\/tq1FjVlgru","truncated":false,"entities":{"hashtags":[{"text":"getnarwhal","indices":[42,53]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1FOIJIKXQe","expanded_url":"http:\/\/getnarwhal.com","display_url":"getnarwhal.com","indices":[57,80]}],"media":[{"id":1135180266970988545,"id_str":"1135180266970988545","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/D8D4cDjWwAEhraM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/D8D4cDjWwAEhraM.jpg","url":"https:\/\/t.co\/tq1FjVlgru","display_url":"pic.twitter.com\/tq1FjVlgru","expanded_url":"https:\/\/twitter.com\/LucyDLW\/status\/1135180272499138560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":339,"resize":"fit"},"medium":{"w":1012,"h":504,"resize":"fit"},"large":{"w":1012,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1135180266970988545,"id_str":"1135180266970988545","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/D8D4cDjWwAEhraM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/D8D4cDjWwAEhraM.jpg","url":"https:\/\/t.co\/tq1FjVlgru","display_url":"pic.twitter.com\/tq1FjVlgru","expanded_url":"https:\/\/twitter.com\/LucyDLW\/status\/1135180272499138560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":339,"resize":"fit"},"medium":{"w":1012,"h":504,"resize":"fit"},"large":{"w":1012,"h":504,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/getnarwhal.com\/\" rel=\"nofollow\"\u003enarwhal for reddit\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546152480045015041\/5yxK3mHh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546152480045015041\/5yxK3mHh_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":717383479,"id_str":"717383479","name":"Par - Sandhu","screen_name":"Parminder_sandu","location":"Zira, India","description":"Life - Lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":274,"friends_count":3618,"listed_count":2,"created_at":"Thu - Jul 26 04:25:19 +0000 2012","favourites_count":1177,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":852,"lang":null,"status":{"created_at":"Mon - Feb 07 21:34:45 +0000 2022","id":1490801229210869761,"id_str":"1490801229210869761","text":"@JustinTrudeau - I think you need to stop testing for fully vaccinated people so the anti vaxxers - can get encouraged\u2026 https:\/\/t.co\/AKp8teEH2v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JustinTrudeau","name":"Justin - Trudeau","id":14260960,"id_str":"14260960","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/AKp8teEH2v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490801229210869761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14260960,"in_reply_to_user_id_str":"14260960","in_reply_to_screen_name":"JustinTrudeau","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2434045675\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2434045675\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717383479\/1449093182","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108196462377226240,"id_str":"1108196462377226240","name":"hikmat - dangol","screen_name":"hikmatdangol2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":1828,"listed_count":0,"created_at":"Wed - Mar 20 02:40:00 +0000 2019","favourites_count":2439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":265,"lang":null,"status":{"created_at":"Fri - Dec 31 14:32:52 +0000 2021","id":1476924320932712448,"id_str":"1476924320932712448","text":"@pari509 - Good point.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pari509","name":"\u092a\u094d\u0930\u0924\u093f\u092d\u093e - \u0905\u0927\u093f\u0915\u093e\u0930\u0940","id":1106867634266501120,"id_str":"1106867634266501120","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1476878868581478401,"in_reply_to_status_id_str":"1476878868581478401","in_reply_to_user_id":1106867634266501120,"in_reply_to_user_id_str":"1106867634266501120","in_reply_to_screen_name":"pari509","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402487852525449217\/Lh8dZTxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402487852525449217\/Lh8dZTxe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108196462377226240\/1566960457","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305194982945558528,"id_str":"1305194982945558528","name":"Abubakarr - Cole","screen_name":"abubakarr_cole","location":"","description":"Because - are simple","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":136,"listed_count":0,"created_at":"Sun - Sep 13 17:22:26 +0000 2020","favourites_count":623,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Thu - Oct 29 18:25:04 +0000 2020","id":1321880750732550146,"id_str":"1321880750732550146","text":"https:\/\/t.co\/6tkAJ2sMdk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6tkAJ2sMdk","expanded_url":"https:\/\/www.facebook.com\/NowThisPolitics\/videos\/3345135562378394\/","display_url":"facebook.com\/NowThisPolitic\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1305195666839425025\/DfOzDcce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1305195666839425025\/DfOzDcce_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275831159189131269,"id_str":"1275831159189131269","name":"Charlene","screen_name":"Charlen38887053","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":136,"listed_count":0,"created_at":"Wed - Jun 24 16:40:43 +0000 2020","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Dec 10 20:36:18 +0000 2020","id":1337134063304519683,"id_str":"1337134063304519683","text":"RT - @LegionHoops: BREAKING: Paul George has agreed to a 5-year, $226M max extension - with the Clippers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LegionHoops","name":"Legion - Hoops","id":291438698,"id_str":"291438698","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 10 18:16:54 +0000 2020","id":1337098983429132289,"id_str":"1337098983429132289","text":"BREAKING: - Paul George has agreed to a 5-year, $226M max extension with the Clippers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":483,"favorite_count":6141,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":483,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":492404590,"id_str":"492404590","name":"Max","screen_name":"yance_man","location":"Austin, - TX","description":"Board President + Channel Surfing + The Lonesome Stranger - @KOOPradio\nSometimes @BigHenrys @AntonesRecords","url":"https:\/\/t.co\/TCIFSur944","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TCIFSur944","expanded_url":"https:\/\/koop.org\/programs\/channel-surfing\/","display_url":"koop.org\/programs\/chann\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":255,"friends_count":1607,"listed_count":3,"created_at":"Tue - Feb 14 17:43:14 +0000 2012","favourites_count":1128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1226,"lang":null,"status":{"created_at":"Tue - Mar 22 22:19:44 +0000 2022","id":1506395226952372225,"id_str":"1506395226952372225","text":"I - like to think this could be my 2001 Tahoe #LikeARock https:\/\/t.co\/9qCXRVtZXM","truncated":false,"entities":{"hashtags":[{"text":"LikeARock","indices":[44,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9qCXRVtZXM","expanded_url":"https:\/\/twitter.com\/lloya0504\/status\/1506114511182479360","display_url":"twitter.com\/lloya0504\/stat\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506114511182479360,"quoted_status_id_str":"1506114511182479360","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317162854680686592\/B-5GMTyj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317162854680686592\/B-5GMTyj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492404590\/1355370051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1323716867932839936,"id_str":"1323716867932839936","name":"CW","screen_name":"HanleezE6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":1249,"listed_count":0,"created_at":"Tue - Nov 03 20:01:53 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Wed - Jun 30 20:59:43 +0000 2021","id":1410342306985566209,"id_str":"1410342306985566209","text":"@SHGraves29 - @NancySkinnerCA Does this mean we shouldn\u2019t expect any additional trailer - bills to go to print this week?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SHGraves29","name":"Scott - Graves","id":2884539849,"id_str":"2884539849","indices":[0,11]},{"screen_name":"NancySkinnerCA","name":"Nancy - Skinner","id":832419235980644352,"id_str":"832419235980644352","indices":[12,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1410339411087085569,"in_reply_to_status_id_str":"1410339411087085569","in_reply_to_user_id":2884539849,"in_reply_to_user_id_str":"2884539849","in_reply_to_screen_name":"SHGraves29","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323732038210342912\/vMT3Bnlg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323732038210342912\/vMT3Bnlg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1323716867932839936\/1604437428","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2285947356,"id_str":"2285947356","name":"Nicole - Via y Rada","screen_name":"NicoleViay","location":"Washington, DC","description":"@MeetthePress - @NBCNews. @AmericanU alum.","url":"https:\/\/t.co\/Ef0GeTglse","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ef0GeTglse","expanded_url":"https:\/\/www.nbcnews.com\/meet-the-press","display_url":"nbcnews.com\/meet-the-press","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":527,"friends_count":679,"listed_count":6,"created_at":"Sat - Jan 11 02:14:30 +0000 2014","favourites_count":13742,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25023,"lang":null,"status":{"created_at":"Wed - Mar 23 14:41:27 +0000 2022","id":1506642286893010961,"id_str":"1506642286893010961","text":"RT - @MeetThePress: Meet the Press Reports returns this week with stories about - cryptocurrency, climate change timebombs and the school board\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeetThePress","name":"Meet - the Press","id":11856892,"id_str":"11856892","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 02:28:16 +0000 2022","id":1506457774355632136,"id_str":"1506457774355632136","text":"Meet - the Press Reports returns this week with stories about cryptocurrency, climate - change timebombs and the school\u2026 https:\/\/t.co\/rtyhrTr4DP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rtyhrTr4DP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506457774355632136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311870081283096577\/8o-3VFF2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311870081283096577\/8o-3VFF2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285947356\/1568690600","profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15236194,"id_str":"15236194","name":"Cherish - DesRochers-Vafeados","screen_name":"cherishrocks","location":"Battle Ground, - WA","description":"Vegan, homeless advocate, elected official, President of - NPO Food with Friends, gardener, dog lover, soccer player, and more... *my - personal opinions expressed.","url":"https:\/\/t.co\/6hdAXDWsGc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6hdAXDWsGc","expanded_url":"http:\/\/www.foodwithfriends.net","display_url":"foodwithfriends.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":59,"friends_count":705,"listed_count":1,"created_at":"Wed - Jun 25 20:28:51 +0000 2008","favourites_count":2539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":454,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1001319788407209985\/SF09n8mn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001319788407209985\/SF09n8mn_normal.jpg","profile_link_color":"551A8B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216511394700460032,"id_str":"1216511394700460032","name":"Echo","screen_name":"echomarsha","location":"Ohio, - USA","description":"Chainsaw Artist, \u2764\ufe0f\ud83c\udf3a\ud83d\udc31\ud83d\udc36\ud83d\udc34\ud83e\udd8b\ud83e\udd84\ud83e\uddda\ud83c\udffc\u200d\u2642\ufe0f\ud83d\uddbc\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udd2e\ud83c\udfa8\ud83e\udd81\ud83e\udd8a\ud83d\udc2f\ud83d\udc3a\ud83d\udc28\ud83d\udc3b\u200d\u2744\ufe0f\ud83d\udc3c\ud83d\udc23\ud83d\udc33\ud83d\udc20\ud83e\udd9c\ud83e\udd9a\ud83c\udf0f\ud83c\udf08\ud83c\udf55\ud83c\udf7a\ud83c\udf77\ud83d\udcf7\ud83e\ude84\ud83d\udcda\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37\ud83d\ude37","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":302,"listed_count":0,"created_at":"Mon - Jan 13 00:05:19 +0000 2020","favourites_count":1675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1491,"lang":null,"status":{"created_at":"Wed - Mar 24 00:55:17 +0000 2021","id":1374525189602508801,"id_str":"1374525189602508801","text":"RT - @JanieResists: We can be contagious after being vaccinated.\nJust because - I am vaccinated doesn''t mean the rest of America is safe! Until\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JanieResists","name":"Janie - Blue USA~Call 1-202-224-3121 #SupportUkraine","id":1158562636113440768,"id_str":"1158562636113440768","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 24 00:53:37 +0000 2021","id":1374524771648475140,"id_str":"1374524771648475140","text":"We - can be contagious after being vaccinated.\nJust because I am vaccinated doesn''t - mean the rest of America is safe!\u2026 https:\/\/t.co\/2SBixiwe7V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2SBixiwe7V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1374524771648475140","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341824764785123330\/arI-Os0y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341824764785123330\/arI-Os0y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216511394700460032\/1607010176","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2960808861,"id_str":"2960808861","name":"Haeser - 1","screen_name":"d558bca67ec54eb","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":1954,"listed_count":2,"created_at":"Sun - Jan 04 20:13:02 +0000 2015","favourites_count":9726,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1848,"lang":null,"status":{"created_at":"Fri - Mar 25 19:18:34 +0000 2022","id":1507436798141779973,"id_str":"1507436798141779973","text":"@robreiner - Hmmm do u believe ur a women ? Crazy Progressive Democrats","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robreiner","name":"Rob - Reiner","id":738080573365702657,"id_str":"738080573365702657","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507322414652223489,"in_reply_to_status_id_str":"1507322414652223489","in_reply_to_user_id":738080573365702657,"in_reply_to_user_id_str":"738080573365702657","in_reply_to_screen_name":"robreiner","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465931093618667521\/eWD2xBAU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465931093618667521\/eWD2xBAU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":115450886,"id_str":"115450886","name":"Jessica","screen_name":"JesSchenkius","location":"Aalsmeer","description":"many - interests, never bored.. everything you think i am, i''m not..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":649,"listed_count":0,"created_at":"Thu - Feb 18 18:04:19 +0000 2010","favourites_count":1792,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2008,"lang":null,"status":{"created_at":"Thu - Feb 10 22:08:21 +0000 2022","id":1491896847664824325,"id_str":"1491896847664824325","text":"RT - @Mikeachim: I recently learned something mindblowing about the geological - history of the Mediterranean Sea, and I just can''t get it out\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mikeachim","name":"Mike - Sowden","id":14926391,"id_str":"14926391","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 16:05:26 +0000 2022","id":1491080740586782720,"id_str":"1491080740586782720","text":"I - recently learned something mindblowing about the geological history of the - Mediterranean Sea, and I just can''t ge\u2026 https:\/\/t.co\/cWg6SsjamE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cWg6SsjamE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491080740586782720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15221,"favorite_count":69907,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15221,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/959883349283229698\/FZdlpQYg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959883349283229698\/FZdlpQYg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115450886\/1517689104","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1581416815,"id_str":"1581416815","name":"Victoria - Jepson","screen_name":"Vvictoriaa","location":"","description":"Ph.D. Student - in Urban Studies focused on #parks and #cities. she\/\/her\/\/elle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":390,"listed_count":0,"created_at":"Tue - Jul 09 20:45:06 +0000 2013","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Wed - Jun 02 22:35:16 +0000 2021","id":1400219493318660103,"id_str":"1400219493318660103","text":"RT - @julia_nei: \"Basketball courts, skate parks and playgrounds overlook an important - demographic: teenage girls: There aren\u2019t enough spaces\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"julia_nei","name":"Julia - Neidig","id":4905974895,"id_str":"4905974895","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 02 07:33:30 +0000 2021","id":1399992554658148357,"id_str":"1399992554658148357","text":"\"Basketball - courts, skate parks and playgrounds overlook an important demographic: teenage - girls: There aren\u2019t enou\u2026 https:\/\/t.co\/cAGkfBwAaE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cAGkfBwAaE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1399992554658148357","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270741923825954818\/WL3m70oX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270741923825954818\/WL3m70oX_normal.jpg","profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":264195597,"id_str":"264195597","name":"D. - Kormylo","screen_name":"kormylo1","location":"United States","description":"Floridian, - Minnesotan, AMERICAN #RidinwithBiden","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":476,"friends_count":1728,"listed_count":0,"created_at":"Fri - Mar 11 14:09:53 +0000 2011","favourites_count":104908,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":64499,"lang":null,"status":{"created_at":"Fri - Mar 25 13:53:49 +0000 2022","id":1507355075257249819,"id_str":"1507355075257249819","text":"RT - @UnpaintedMelody: 2\/ I\u2019m just setting this right here for no particular - reason\u2026\nHi @LindseyGrahamSC \ud83d\udc4b\ud83c\udffc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnpaintedMelody","name":"Melody - speaks gif fluently\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":120674657,"id_str":"120674657","indices":[3,19]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[86,102]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:58:32 +0000 2022","id":1506767378947870724,"id_str":"1506767378947870724","text":"2\/ - I\u2019m just setting this right here for no particular reason\u2026\nHi @LindseyGrahamSC - \ud83d\udc4b\ud83c\udffc https:\/\/t.co\/8YeW6X7zGC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[65,81]}],"urls":[{"url":"https:\/\/t.co\/8YeW6X7zGC","expanded_url":"https:\/\/twitter.com\/reallyamerican1\/status\/1506281468766601217","display_url":"twitter.com\/reallyamerican\u2026","indices":[85,108]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506754345689223171,"in_reply_to_status_id_str":"1506754345689223171","in_reply_to_user_id":120674657,"in_reply_to_user_id_str":"120674657","in_reply_to_screen_name":"UnpaintedMelody","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506281468766601217,"quoted_status_id_str":"1506281468766601217","retweet_count":89,"favorite_count":371,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506281468766601217,"quoted_status_id_str":"1506281468766601217","retweet_count":89,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349038829320212484\/HsjqKOZt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349038829320212484\/HsjqKOZt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264195597\/1534729444","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308264633732665346,"id_str":"1308264633732665346","name":"Paradise - beach","screen_name":"Paradis24161247","location":"","description":"just","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":14,"listed_count":0,"created_at":"Tue - Sep 22 04:40:04 +0000 2020","favourites_count":60,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Fri - Sep 10 03:37:31 +0000 2021","id":1436171956781453316,"id_str":"1436171956781453316","text":"RT - @Catt32: Jokes on me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Catt32","name":"Catherine","id":535973422,"id_str":"535973422","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 10 03:30:59 +0000 2021","id":1436170312375275520,"id_str":"1436170312375275520","text":"Jokes - on me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1202149689124179969,"id_str":"1202149689124179969","name":"qiebaoer","screen_name":"Qiebaoerworld","location":"","description":"LOVE - LIFE AND LOVE HER","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":59,"listed_count":0,"created_at":"Wed - Dec 04 08:56:43 +0000 2019","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Fri - Nov 27 20:50:56 +0000 2020","id":1332426707345633280,"id_str":"1332426707345633280","text":"@kobebryant - @KingJames Miss you and love you so greatly \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kobebryant","name":"Kobe - Bryant","id":1059194370,"id_str":"1059194370","indices":[0,11]},{"screen_name":"KingJames","name":"LeBron - James","id":23083404,"id_str":"23083404","indices":[12,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1221276426164269056,"in_reply_to_status_id_str":"1221276426164269056","in_reply_to_user_id":1059194370,"in_reply_to_user_id_str":"1059194370","in_reply_to_screen_name":"kobebryant","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202149767263985664\/2GChL5uq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202149767263985664\/2GChL5uq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":476012767,"id_str":"476012767","name":"Greg - Greene","screen_name":"GreeneGreg","location":"Langford, British Columbia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":447,"listed_count":0,"created_at":"Fri - Jan 27 17:38:46 +0000 2012","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Sun - Feb 20 05:59:54 +0000 2022","id":1495277009982812162,"id_str":"1495277009982812162","text":"@buzz2978 - @wokal_distance @jordanbpeterson Agreed. Damn psychological mind tricks. Once - again not as smart as I knew I wasn\u2019t.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"buzz2978","name":"Your - Mother","id":284024918,"id_str":"284024918","indices":[0,9]},{"screen_name":"wokal_distance","name":"Wokal - Distance","id":1277116863411937281,"id_str":"1277116863411937281","indices":[10,25]},{"screen_name":"jordanbpeterson","name":"Dr - Jordan B Peterson","id":95092020,"id_str":"95092020","indices":[26,42]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495275984580268036,"in_reply_to_status_id_str":"1495275984580268036","in_reply_to_user_id":284024918,"in_reply_to_user_id_str":"284024918","in_reply_to_screen_name":"buzz2978","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273085239322013696\/fMU0zmVI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273085239322013696\/fMU0zmVI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237003085358280704,"id_str":"1237003085358280704","name":"Albert","screen_name":"Albert91855596","location":"Jos","description":"a - lecturer at UJ","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":507,"listed_count":0,"created_at":"Mon - Mar 09 13:11:51 +0000 2020","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":180,"lang":null,"status":{"created_at":"Sat - Jun 12 05:09:32 +0000 2021","id":1403580203662708739,"id_str":"1403580203662708739","text":"@yilberry - A step in the right direction Yil.\n\nWe must come together to demand the - leadership we desire.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yilberry","name":"Yil - Fomwul Gonsum","id":4696447063,"id_str":"4696447063","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1403573567057444864,"in_reply_to_status_id_str":"1403573567057444864","in_reply_to_user_id":4696447063,"in_reply_to_user_id_str":"4696447063","in_reply_to_screen_name":"yilberry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361781446499794945\/e6PCpWhC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361781446499794945\/e6PCpWhC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1228566949,"id_str":"1228566949","name":"Leslie - Mann","screen_name":"Leslie9475","location":"Nebraska, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":98,"friends_count":1315,"listed_count":0,"created_at":"Thu - Feb 28 23:03:16 +0000 2013","favourites_count":12918,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":935,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/941348821010927616\/QIc5ICkR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/941348821010927616\/QIc5ICkR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797869725367799808,"id_str":"797869725367799808","name":"Mohamed - Ibrahim Bah","screen_name":"Mohamed06297859","location":"Sierra Leone","description":"Worked - at Sierra Leone Commercial Bank (SLCB)\n#Starve your desire...... Feed your - focus......#","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":3408,"listed_count":0,"created_at":"Sun - Nov 13 18:32:21 +0000 2016","favourites_count":83,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Sun - Dec 05 17:54:50 +0000 2021","id":1467553062394994695,"id_str":"1467553062394994695","text":"Allah - is Gr8t as always.\n#CLUBGQ# https:\/\/t.co\/DYRuKvx7KF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1467553053293387780,"id_str":"1467553053293387780","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FF3Luf6XoAQ1_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FF3Luf6XoAQ1_n3.jpg","url":"https:\/\/t.co\/DYRuKvx7KF","display_url":"pic.twitter.com\/DYRuKvx7KF","expanded_url":"https:\/\/twitter.com\/Mohamed06297859\/status\/1467553062394994695\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":768,"h":768,"resize":"fit"},"medium":{"w":768,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1467553053293387780,"id_str":"1467553053293387780","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FF3Luf6XoAQ1_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FF3Luf6XoAQ1_n3.jpg","url":"https:\/\/t.co\/DYRuKvx7KF","display_url":"pic.twitter.com\/DYRuKvx7KF","expanded_url":"https:\/\/twitter.com\/Mohamed06297859\/status\/1467553062394994695\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":768,"h":768,"resize":"fit"},"medium":{"w":768,"h":768,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"1e228be254cad957","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1e228be254cad957.json","place_type":"country","name":"Sierra - Leone","full_name":"Sierra Leone","country_code":"SL","country":"Sierra Leone","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-13.4307965,6.7938865],[-10.2747536,6.7938865],[-10.2747536,10.0002944],[-13.4307965,10.0002944]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1205236091479109632\/zzD60qZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1205236091479109632\/zzD60qZR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":928266078718963712,"id_str":"928266078718963712","name":"Ron","screen_name":"Ron71879601","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":236,"listed_count":0,"created_at":"Wed - Nov 08 14:20:54 +0000 2017","favourites_count":7852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1273,"lang":null,"status":{"created_at":"Fri - Jan 22 06:25:37 +0000 2021","id":1352502660214251521,"id_str":"1352502660214251521","text":"Go - Canada! https:\/\/t.co\/UhmkXTiItE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UhmkXTiItE","expanded_url":"https:\/\/twitter.com\/seanhannity\/status\/1352326853466361856","display_url":"twitter.com\/seanhannity\/st\u2026","indices":[11,34]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1352326853466361856,"quoted_status_id_str":"1352326853466361856","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1710912480,"id_str":"1710912480","name":"Margaret - Noonan","screen_name":"MagsClancy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":162,"listed_count":0,"created_at":"Thu - Aug 29 20:41:03 +0000 2013","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20907279,"id_str":"20907279","name":"Laura - Carpenter","screen_name":"canyonroad","location":"Santa Fe, NM, USA","description":"art, - design, technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":872,"listed_count":0,"created_at":"Sun - Feb 15 12:31:26 +0000 2009","favourites_count":10573,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":333,"lang":null,"status":{"created_at":"Fri - Mar 25 21:14:19 +0000 2022","id":1507465927364780037,"id_str":"1507465927364780037","text":"RT - @paulkrugman: I can''t be the only one noticing that Putin''s response to - failure in Ukraine is extremely Trumpian. 1. Deny that anything\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"paulkrugman","name":"Paul - Krugman","id":17006157,"id_str":"17006157","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:04:55 +0000 2022","id":1507463563367133190,"id_str":"1507463563367133190","text":"I - can''t be the only one noticing that Putin''s response to failure in Ukraine - is extremely Trumpian. 1. Deny that an\u2026 https:\/\/t.co\/9PRHPOe0Kl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9PRHPOe0Kl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507463563367133190","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1675,"favorite_count":10687,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1675,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2894739767,"id_str":"2894739767","name":"Mike - McGuckin","screen_name":"MMcGuck","location":"Flanagan IL USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":315,"listed_count":0,"created_at":"Thu - Nov 27 15:31:36 +0000 2014","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Mon - Dec 16 01:44:25 +0000 2019","id":1206389586106167296,"id_str":"1206389586106167296","text":"I - am one absolutely disgusted Giants fan. Our GM lets an absolute team icon - go to a division rival for relative pea\u2026 https:\/\/t.co\/MqYG0ely0d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MqYG0ely0d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1206389586106167296","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1059508486655090688,"id_str":"1059508486655090688","name":"AK","screen_name":"ASK7799","location":"\ud83d\udecf\ufe0f - ","description":"Walk away and keep walking.. \n\nNO DMs PLEASE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2158,"friends_count":3225,"listed_count":2,"created_at":"Mon - Nov 05 18:11:22 +0000 2018","favourites_count":80585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64105,"lang":null,"status":{"created_at":"Sat - Mar 26 10:36:10 +0000 2022","id":1507667721122578435,"id_str":"1507667721122578435","text":"RT - @Avenger1821: This is glimpse of how pti social media under supervision of - imran ghazali and Dr arsalan ifthikar used azhar mashwani n t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Avenger1821","name":"Avenger","id":1137349336440983552,"id_str":"1137349336440983552","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"withheld_in_countries":["IN"],"retweeted_status":{"created_at":"Sat - Mar 26 10:25:39 +0000 2022","id":1507665073728278528,"id_str":"1507665073728278528","text":"This - is glimpse of how pti social media under supervision of imran ghazali and - Dr arsalan ifthikar used azhar mashw\u2026 https:\/\/t.co\/B4DjW1gSo1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/B4DjW1gSo1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507665073728278528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"withheld_in_countries":["IN"],"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504418259084398595\/vMfswezq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504418259084398595\/vMfswezq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059508486655090688\/1647794090","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":826973543686565888,"id_str":"826973543686565888","name":"Dharma - Bum","screen_name":"nyarose15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":76,"listed_count":0,"created_at":"Thu - Feb 02 02:00:32 +0000 2017","favourites_count":1899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4380,"lang":null,"status":{"created_at":"Fri - Mar 25 03:55:49 +0000 2022","id":1507204580001476611,"id_str":"1507204580001476611","text":"RT - @TristanSnell: BREAKING: Ginni Thomas was also communicating with Jared Kushner, - Louie Gohmert''s chief of staff, and potentially also Si\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TristanSnell","name":"Tristan - Snell","id":15801906,"id_str":"15801906","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:15:46 +0000 2022","id":1507134106945175563,"id_str":"1507134106945175563","text":"BREAKING: - Ginni Thomas was also communicating with Jared Kushner, Louie Gohmert''s chief - of staff, and potentially a\u2026 https:\/\/t.co\/DWNdhrmGgL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DWNdhrmGgL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507134106945175563","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13280,"favorite_count":45426,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13280,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1002211913294528512\/50uPMFdx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1002211913294528512\/50uPMFdx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826973543686565888\/1610172182","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19800604,"id_str":"19800604","name":"Luiz - Fernando Lopes","screen_name":"lflopes","location":"Rio de Janeiro \/ Indianapolis","description":"Concerned - citizen, musicologist, pianist, chorus singer, member of the LGBTQ+ community.\n\nDegrees - from @IUJSoM, @umichsmtd, & UNIRIO (Instituto Villa-Lobos).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":1023,"listed_count":1,"created_at":"Sat - Jan 31 02:06:19 +0000 2009","favourites_count":65472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3833,"lang":null,"status":{"created_at":"Fri - Mar 25 03:47:37 +0000 2022","id":1507202519050723333,"id_str":"1507202519050723333","text":"RT - @cti_indigenismo: Via @brasildefato: O STF reservou a pauta do dia 30 de mar\u00e7o - para julgar sete a\u00e7\u00f5es decisivas que pedem a revers\u00e3o de\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cti_indigenismo","name":"Centro - de Trabalho Indigenista","id":325124700,"id_str":"325124700","indices":[3,19]},{"screen_name":"brasildefato","name":"Brasil - de Fato","id":64257256,"id_str":"64257256","indices":[25,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:25:10 +0000 2022","id":1507121372581228544,"id_str":"1507121372581228544","text":"Via - @brasildefato: O STF reservou a pauta do dia 30 de mar\u00e7o para julgar - sete a\u00e7\u00f5es decisivas que pedem a revers\u00e3o\u2026 https:\/\/t.co\/6vnZc0EDhN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brasildefato","name":"Brasil - de Fato","id":64257256,"id_str":"64257256","indices":[4,17]}],"urls":[{"url":"https:\/\/t.co\/6vnZc0EDhN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507121372581228544","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057337355168706560\/ImcxkDMu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057337355168706560\/ImcxkDMu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19800604\/1540923979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22217564,"id_str":"22217564","name":"Susan - McCracken","screen_name":"mccracknsd","location":"","description":"Director - of Career Development and Economic Engagement at Appalachian State University.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":321,"friends_count":998,"listed_count":7,"created_at":"Sat - Feb 28 01:57:04 +0000 2009","favourites_count":4230,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1245,"lang":null,"status":{"created_at":"Fri - Mar 18 20:16:22 +0000 2022","id":1504914628282916869,"id_str":"1504914628282916869","text":"Proud - to be a part of preparing for the future. @appstatecareers https:\/\/t.co\/vDRaL6B3FO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"appstatecareers","name":"AppState - Career Development Center","id":188051256,"id_str":"188051256","indices":[48,64]}],"urls":[{"url":"https:\/\/t.co\/vDRaL6B3FO","expanded_url":"https:\/\/twitter.com\/AppstateRCOE\/status\/1504905740103962625","display_url":"twitter.com\/AppstateRCOE\/s\u2026","indices":[65,88]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504905740103962625,"quoted_status_id_str":"1504905740103962625","retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370551069374308356\/OhddWgv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370551069374308356\/OhddWgv5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":754070533822701569,"id_str":"754070533822701569","name":"JillZipper","screen_name":"jill_zipper","location":"South - Brunswick, NJ","description":"Black Community","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":632,"listed_count":0,"created_at":"Fri - Jul 15 21:50:00 +0000 2016","favourites_count":2121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":472,"lang":null,"status":{"created_at":"Thu - Mar 24 00:37:18 +0000 2022","id":1506792237463707649,"id_str":"1506792237463707649","text":"@NormOrnstein - @AlexanderDent6 Pedophile","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NormOrnstein","name":"Norman - Ornstein","id":2223157392,"id_str":"2223157392","indices":[0,13]},{"screen_name":"AlexanderDent6","name":"Alexander - Dent \ud83c\uddfa\ud83c\udde6","id":1095355095288492032,"id_str":"1095355095288492032","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506651233146314768,"in_reply_to_status_id_str":"1506651233146314768","in_reply_to_user_id":2223157392,"in_reply_to_user_id_str":"2223157392","in_reply_to_screen_name":"NormOrnstein","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/794274990153728004\/rwAQZjsO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/794274990153728004\/rwAQZjsO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1021739139497160704,"id_str":"1021739139497160704","name":"Marino - Messina Auffant","screen_name":"marino_messina","location":"Dominican Republic","description":"Amante - del trabajo, golf, la lectura y debates de ideas","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":677,"listed_count":0,"created_at":"Tue - Jul 24 12:49:28 +0000 2018","favourites_count":475,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":689,"lang":null,"status":{"created_at":"Fri - Aug 20 18:32:02 +0000 2021","id":1428786920784633860,"id_str":"1428786920784633860","text":"Descansa - en Paz t\u00edo querido, \u00fanete a t\u00eda, a tu valiente nieto, padres - y hermanos, gracias por todo y al todo podero\u2026 https:\/\/t.co\/D4sHboVVoa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/D4sHboVVoa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1428786920784633860","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165670987830059009\/s2cIvjP9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165670987830059009\/s2cIvjP9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2793365804,"id_str":"2793365804","name":"M.A.S","screen_name":"Mohammad1Samii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":1665,"listed_count":0,"created_at":"Sat - Sep 06 07:17:02 +0000 2014","favourites_count":3610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":138,"lang":null,"status":{"created_at":"Tue - Sep 14 20:16:10 +0000 2021","id":1437872823863816196,"id_str":"1437872823863816196","text":"@GuillemBalague - You see, this happens when you lose your identity. We are running without - the ball. Our players are\u2026 https:\/\/t.co\/HMTFabhyUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GuillemBalague","name":"Guillem - Balague","id":26759984,"id_str":"26759984","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/HMTFabhyUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1437872823863816196","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1437872078867271684,"in_reply_to_status_id_str":"1437872078867271684","in_reply_to_user_id":26759984,"in_reply_to_user_id_str":"26759984","in_reply_to_screen_name":"GuillemBalague","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427284932347445255\/pFT5DAFA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427284932347445255\/pFT5DAFA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2793365804\/1600761346","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243966276504035328,"id_str":"1243966276504035328","name":"DEEP - NOSTALGIA","screen_name":"UFO_000000_UFO","location":"Kuwait","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":5001,"listed_count":1,"created_at":"Sat - Mar 28 18:21:05 +0000 2020","favourites_count":8017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6793,"lang":null,"status":{"created_at":"Fri - Mar 25 01:25:18 +0000 2022","id":1507166701934321667,"id_str":"1507166701934321667","text":"RT - @Cairo67Unedited: \u0627\u0644\u0623\u0645\u0633 \u0642\u0627\u0644 \u0627\u0644\u0633\u064a\u0633\u064a - \"\"\u0645\u0634 \u0644\u0627\u0632\u0645 \u0627\u0644\u0633\u0641\u0631\u0629 - \u062a\u0643\u0648\u0646 \u0645\u0644\u064a\u0627\u0646\u0647 \"\u064a\u0627 - \u0641\u0631\u0627\u062e \u064a\u0627 \u0644\u062d\u0645\u0629\".\"\n\n\u0627\u0644\u064a\u0648\u0645 - \u0627\u0644\u0623\u0633\u0631\u0629 \u0627\u0644\u0645\u0635\u0631\u064a\u0629 - \u062a\u0631\u062f. https:\/\/t.co\/CGP12iR5rT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cairo67Unedited","name":"Amr - Khalifa","id":280288703,"id_str":"280288703","indices":[3,19]}],"urls":[],"media":[{"id":1506999869231280131,"id_str":"1506999869231280131","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","url":"https:\/\/t.co\/CGP12iR5rT","display_url":"pic.twitter.com\/CGP12iR5rT","expanded_url":"https:\/\/twitter.com\/Cairo67Unedited\/status\/1507000238921424904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507000238921424904,"source_status_id_str":"1507000238921424904","source_user_id":280288703,"source_user_id_str":"280288703"}]},"extended_entities":{"media":[{"id":1506999869231280131,"id_str":"1506999869231280131","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","url":"https:\/\/t.co\/CGP12iR5rT","display_url":"pic.twitter.com\/CGP12iR5rT","expanded_url":"https:\/\/twitter.com\/Cairo67Unedited\/status\/1507000238921424904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1507000238921424904,"source_status_id_str":"1507000238921424904","source_user_id":280288703,"source_user_id_str":"280288703","video_info":{"aspect_ratio":[1,1],"duration_millis":89109,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/540x540\/7NiZYfFtQWS-Zmlb.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/pl\/OQJ0iI31VFfeu6ux.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/320x320\/OB1cz63nbgstqqWI.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/720x720\/KB1KxRNXBsw65-1F.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:23:50 +0000 2022","id":1507000238921424904,"id_str":"1507000238921424904","text":"\u0627\u0644\u0623\u0645\u0633 - \u0642\u0627\u0644 \u0627\u0644\u0633\u064a\u0633\u064a \"\"\u0645\u0634 \u0644\u0627\u0632\u0645 - \u0627\u0644\u0633\u0641\u0631\u0629 \u062a\u0643\u0648\u0646 \u0645\u0644\u064a\u0627\u0646\u0647 - \"\u064a\u0627 \u0641\u0631\u0627\u062e \u064a\u0627 \u0644\u062d\u0645\u0629\".\"\n\n\u0627\u0644\u064a\u0648\u0645 - \u0627\u0644\u0623\u0633\u0631\u0629 \u0627\u0644\u0645\u0635\u0631\u064a\u0629 - \u062a\u0631\u062f. https:\/\/t.co\/CGP12iR5rT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506999869231280131,"id_str":"1506999869231280131","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","url":"https:\/\/t.co\/CGP12iR5rT","display_url":"pic.twitter.com\/CGP12iR5rT","expanded_url":"https:\/\/twitter.com\/Cairo67Unedited\/status\/1507000238921424904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506999869231280131,"id_str":"1506999869231280131","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506999869231280131\/pu\/img\/ZvjnTc3Wsg_3A82L.jpg","url":"https:\/\/t.co\/CGP12iR5rT","display_url":"pic.twitter.com\/CGP12iR5rT","expanded_url":"https:\/\/twitter.com\/Cairo67Unedited\/status\/1507000238921424904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":89109,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/540x540\/7NiZYfFtQWS-Zmlb.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/pl\/OQJ0iI31VFfeu6ux.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/320x320\/OB1cz63nbgstqqWI.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506999869231280131\/pu\/vid\/720x720\/KB1KxRNXBsw65-1F.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366025143202566148\/QT7PbG3Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366025143202566148\/QT7PbG3Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243966276504035328\/1615374031","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1163649328621281285,"id_str":"1163649328621281285","name":"Manasseh - Ngunan","screen_name":"ManassehNgunan","location":"Abuja, Nigeria","description":"humility","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":1219,"listed_count":0,"created_at":"Tue - Aug 20 03:10:45 +0000 2019","favourites_count":398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":378,"lang":null,"status":{"created_at":"Fri - May 07 22:00:19 +0000 2021","id":1390788611008835590,"id_str":"1390788611008835590","text":"RT - @TheSun: Feisty 82-year-old gran bashes robber with her walking stick https:\/\/t.co\/Oh1BRbCkbE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheSun","name":"The - Sun","id":34655603,"id_str":"34655603","indices":[3,10]}],"urls":[],"media":[{"id":1282676689928163329,"id_str":"1282676689928163329","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","url":"https:\/\/t.co\/Oh1BRbCkbE","display_url":"pic.twitter.com\/Oh1BRbCkbE","expanded_url":"https:\/\/twitter.com\/TheSun\/status\/1390700451494916103\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1390700451494916103,"source_status_id_str":"1390700451494916103","source_user_id":34655603,"source_user_id_str":"34655603"}]},"extended_entities":{"media":[{"id":1282676689928163329,"id_str":"1282676689928163329","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","url":"https:\/\/t.co\/Oh1BRbCkbE","display_url":"pic.twitter.com\/Oh1BRbCkbE","expanded_url":"https:\/\/twitter.com\/TheSun\/status\/1390700451494916103\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":1390700451494916103,"source_status_id_str":"1390700451494916103","source_user_id":34655603,"source_user_id_str":"34655603","video_info":{"aspect_ratio":[1,1],"duration_millis":26720,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/320x320\/k8x8JgH3HQs8SBbf.mp4?tag=13"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/720x720\/LFLTVPT2YwLItLSE.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/480x480\/56TarjieSgUDKpNL.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/pl\/-s1ylR47Y3AgeC1N.m3u8?tag=13"}]},"additional_media_info":{"title":"Hero - gran fights off shop robber by bashing him with her walking stick","description":"A - FEISTY 82-year-old shopkeeper fought off a robber \u2014 by whacking him with - her walking stick. June Turner was behind the till when the thug burst in - hiding his face under a blanket.","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 07 16:10:00 +0000 2021","id":1390700451494916103,"id_str":"1390700451494916103","text":"Feisty - 82-year-old gran bashes robber with her walking stick https:\/\/t.co\/Oh1BRbCkbE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1282676689928163329,"id_str":"1282676689928163329","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","url":"https:\/\/t.co\/Oh1BRbCkbE","display_url":"pic.twitter.com\/Oh1BRbCkbE","expanded_url":"https:\/\/twitter.com\/TheSun\/status\/1390700451494916103\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1282676689928163329,"id_str":"1282676689928163329","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1282676689928163329\/img\/tAALh-Z3t1ezW3yv.jpg","url":"https:\/\/t.co\/Oh1BRbCkbE","display_url":"pic.twitter.com\/Oh1BRbCkbE","expanded_url":"https:\/\/twitter.com\/TheSun\/status\/1390700451494916103\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":26720,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/320x320\/k8x8JgH3HQs8SBbf.mp4?tag=13"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/720x720\/LFLTVPT2YwLItLSE.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/vid\/480x480\/56TarjieSgUDKpNL.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1282676689928163329\/pl\/-s1ylR47Y3AgeC1N.m3u8?tag=13"}]},"additional_media_info":{"title":"Hero - gran fights off shop robber by bashing him with her walking stick","description":"A - FEISTY 82-year-old shopkeeper fought off a robber \u2014 by whacking him with - her walking stick. June Turner was behind the till when the thug burst in - hiding his face under a blanket.","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310537755869487104\/ijyFO9rc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310537755869487104\/ijyFO9rc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1136993933018353664,"id_str":"1136993933018353664","name":"Dee - \ud83c\udf40\ud83c\uddfa\ud83c\uddf8\ud83d\udcaf","screen_name":"safetyfirstbaby","location":"United - States","description":"Safety and Compliance Training, Written Safety Programs, - Work Comp and HR Services- No private messages please.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":222,"friends_count":1890,"listed_count":0,"created_at":"Fri - Jun 07 13:50:52 +0000 2019","favourites_count":649,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1406,"lang":null,"status":{"created_at":"Fri - Mar 11 18:17:53 +0000 2022","id":1502348096201658371,"id_str":"1502348096201658371","text":"My - new favorite! https:\/\/t.co\/Q3WehchCb6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q3WehchCb6","expanded_url":"https:\/\/youtube.com\/watch?v=ng7QrYgdItQ&feature=share","display_url":"youtube.com\/watch?v=ng7QrY\u2026","indices":[18,41]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488354359469490178\/UXq8lfiO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488354359469490178\/UXq8lfiO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1136993933018353664\/1647371301","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1153295510037573634,"id_str":"1153295510037573634","name":"Salihu - Abubakar Ismila","screen_name":"IsmilaSalihu","location":"GARKI VILLAGE FCT - ABUJA ","description":"l am very nice to my family","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":2099,"listed_count":1,"created_at":"Mon - Jul 22 13:27:31 +0000 2019","favourites_count":1797,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":989,"lang":null,"status":{"created_at":"Wed - Mar 23 22:15:26 +0000 2022","id":1506756531848728582,"id_str":"1506756531848728582","text":"@justahinduboy - YES I LOVE IT ..........","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"justahinduboy","name":"lil - baby stan account","id":1493829010060886023,"id_str":"1493829010060886023","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506622058964602887,"in_reply_to_status_id_str":"1506622058964602887","in_reply_to_user_id":1493829010060886023,"in_reply_to_user_id_str":"1493829010060886023","in_reply_to_screen_name":"justahinduboy","geo":null,"coordinates":null,"place":{"id":"00e55e2b4c491c5f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00e55e2b4c491c5f.json","place_type":"city","name":"Abuja","full_name":"Abuja, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1157724976763588610\/pdU27NVS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157724976763588610\/pdU27NVS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1153295510037573634\/1593325777","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":992337943489667072,"id_str":"992337943489667072","name":"Lois - Mason","screen_name":"LoisMas16233607","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":481,"listed_count":0,"created_at":"Fri - May 04 09:39:37 +0000 2018","favourites_count":52634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - Oct 14 17:42:07 +0000 2020","id":1316434121460256774,"id_str":"1316434121460256774","text":"@DangeRussWilson - @ciara \ud83e\udd70\ud83e\udd70\ud83e\udd70\ud83e\udd70\ud83e\udd70\ud83e\udd70\ud83e\udd70\ud83e\udd70","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DangeRussWilson","name":"Russell - Wilson","id":512613427,"id_str":"512613427","indices":[0,16]},{"screen_name":"ciara","name":"Ciara","id":28897926,"id_str":"28897926","indices":[17,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1316427425614450688,"in_reply_to_status_id_str":"1316427425614450688","in_reply_to_user_id":512613427,"in_reply_to_user_id_str":"512613427","in_reply_to_screen_name":"DangeRussWilson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1386610699,"id_str":"1386610699","name":"Abbakar - A. Rufa''i","screen_name":"Abbakar_Rufai","location":"","description":"Bio - is overrated","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":904,"listed_count":4,"created_at":"Sun - Apr 28 09:57:05 +0000 2013","favourites_count":6179,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":481,"lang":null,"status":{"created_at":"Fri - Mar 25 20:34:57 +0000 2022","id":1507456023723864064,"id_str":"1507456023723864064","text":"RT - @dan_yariima: \ud83d\ude0d https:\/\/t.co\/H2Hoc5gWaB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dan_yariima","name":"Haruna - Rasheed","id":1143465175,"id_str":"1143465175","indices":[3,15]}],"urls":[],"media":[{"id":1507424054604709891,"id_str":"1507424054604709891","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","url":"https:\/\/t.co\/H2Hoc5gWaB","display_url":"pic.twitter.com\/H2Hoc5gWaB","expanded_url":"https:\/\/twitter.com\/dan_yariima\/status\/1507424129691041798\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1507424129691041798,"source_status_id_str":"1507424129691041798","source_user_id":1143465175,"source_user_id_str":"1143465175"}]},"extended_entities":{"media":[{"id":1507424054604709891,"id_str":"1507424054604709891","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","url":"https:\/\/t.co\/H2Hoc5gWaB","display_url":"pic.twitter.com\/H2Hoc5gWaB","expanded_url":"https:\/\/twitter.com\/dan_yariima\/status\/1507424129691041798\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1507424129691041798,"source_status_id_str":"1507424129691041798","source_user_id":1143465175,"source_user_id_str":"1143465175","video_info":{"aspect_ratio":[9,16],"duration_millis":7766,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/320x568\/OlbX1NJ_6zSk4P6x.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/720x1280\/ZFfvnXR3fXYxHgjQ.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/480x852\/9bzYRFtFut0UuBVn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/pl\/QnomQIEUChGdwgn6.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:28:13 +0000 2022","id":1507424129691041798,"id_str":"1507424129691041798","text":"\ud83d\ude0d - https:\/\/t.co\/H2Hoc5gWaB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507424054604709891,"id_str":"1507424054604709891","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","url":"https:\/\/t.co\/H2Hoc5gWaB","display_url":"pic.twitter.com\/H2Hoc5gWaB","expanded_url":"https:\/\/twitter.com\/dan_yariima\/status\/1507424129691041798\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507424054604709891,"id_str":"1507424054604709891","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507424054604709891\/pu\/img\/eBtE32xdQS8ISYmm.jpg","url":"https:\/\/t.co\/H2Hoc5gWaB","display_url":"pic.twitter.com\/H2Hoc5gWaB","expanded_url":"https:\/\/twitter.com\/dan_yariima\/status\/1507424129691041798\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":7766,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/320x568\/OlbX1NJ_6zSk4P6x.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/720x1280\/ZFfvnXR3fXYxHgjQ.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/vid\/480x852\/9bzYRFtFut0UuBVn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507424054604709891\/pu\/pl\/QnomQIEUChGdwgn6.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327206219191373824\/mJ6btQer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327206219191373824\/mJ6btQer_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1386610699\/1605265601","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":868632980222300160,"id_str":"868632980222300160","name":"Afrocentric - Philosopher","screen_name":"Mathlevyias1","location":"Chipata,Zambia","description":"Don\u2019t - gain the world and loose your soul, wisdom is better than silver or gold","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":374,"friends_count":440,"listed_count":0,"created_at":"Sun - May 28 01:00:15 +0000 2017","favourites_count":906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":568,"lang":null,"status":{"created_at":"Sat - Mar 19 16:47:15 +0000 2022","id":1505224394272034822,"id_str":"1505224394272034822","text":"@miyoba_nyirenda - @MoneyHasbulla @DaveSometimez Pedigree \ud83d\udcaf\ud83d\udd25\ud83d\udd25\ud83d\udd25","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"miyoba_nyirenda","name":"Eng.: - Miyoba M.S.Nyirenda","id":2858542538,"id_str":"2858542538","indices":[0,16]},{"screen_name":"MoneyHasbulla","name":"Hasbulla\ud83d\udcb0","id":1260889613792575488,"id_str":"1260889613792575488","indices":[17,31]},{"screen_name":"DaveSometimez","name":"\ud83d\udd25","id":1251856879661219841,"id_str":"1251856879661219841","indices":[32,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505187444697833474,"in_reply_to_status_id_str":"1505187444697833474","in_reply_to_user_id":2858542538,"in_reply_to_user_id_str":"2858542538","in_reply_to_screen_name":"miyoba_nyirenda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307039891000303618\/5FdQbEvG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307039891000303618\/5FdQbEvG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868632980222300160\/1600456939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226696005967663105,"id_str":"1226696005967663105","name":"lourdes","screen_name":"lourdesayi","location":"","description":"\ud83c\uddec\ud83c\udded","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":573,"listed_count":0,"created_at":"Mon - Feb 10 02:35:02 +0000 2020","favourites_count":140189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Sat - Mar 05 22:52:06 +0000 2022","id":1500242778114215940,"id_str":"1500242778114215940","text":"@mththisway - @mercigaga Only right answer","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mththisway","name":"ma\u2020heus","id":1282471747565092864,"id_str":"1282471747565092864","indices":[0,11]},{"screen_name":"mercigaga","name":"ria","id":1449400327917252614,"id_str":"1449400327917252614","indices":[12,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500149384524316674,"in_reply_to_status_id_str":"1500149384524316674","in_reply_to_user_id":1282471747565092864,"in_reply_to_user_id_str":"1282471747565092864","in_reply_to_screen_name":"mththisway","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422635957241720835\/A1DbpoNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422635957241720835\/A1DbpoNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226696005967663105\/1628017856","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181539579620405248,"id_str":"1181539579620405248","name":"Aliyah - Patel","screen_name":"aliyahhhh23","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":34,"friends_count":214,"listed_count":0,"created_at":"Tue - Oct 08 11:59:43 +0000 2019","favourites_count":372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437089781511491588\/59NnNd_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437089781511491588\/59NnNd_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1181539579620405248\/1631463879","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785690984780738560,"id_str":"785690984780738560","name":"\u0274\u1d07\u1d04\u1d07\ua731\ua731\u1d00\u0280\u026a\u1d00 - \u1d0d\u1d0f\u0280\u1d1b\u1d07 \u1d0d\u1d0f\u0280\u026a","screen_name":"qorupted","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":32,"friends_count":35,"listed_count":0,"created_at":"Tue - Oct 11 03:58:23 +0000 2016","favourites_count":4788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457854787035172866\/ROVVzoM8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457854787035172866\/ROVVzoM8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785690984780738560\/1635830736","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52256294,"id_str":"52256294","name":"Rita - A Gonzaba","screen_name":"RGonzaba","location":"","description":"\u201cTime - you enjoy wasting is not wasted time.\u201d Marthe Troly-Curtin","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":499,"friends_count":2355,"listed_count":2,"created_at":"Tue - Jun 30 01:18:17 +0000 2009","favourites_count":18605,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6926,"lang":null,"status":{"created_at":"Mon - Mar 14 03:27:46 +0000 2022","id":1503211256135794689,"id_str":"1503211256135794689","text":"RT - @Holly_4Congress: Just 242 days until this band mom defeats Marjorie Taylor - Greene.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Holly_4Congress","name":"Holly - McCormack for Congress","id":1362800101639426052,"id_str":"1362800101639426052","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 21:33:23 +0000 2022","id":1503122072402288648,"id_str":"1503122072402288648","text":"Just - 242 days until this band mom defeats Marjorie Taylor Greene.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2025,"favorite_count":20792,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2025,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429981383453188097\/GSRpq8CB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429981383453188097\/GSRpq8CB_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154566128863195136,"id_str":"1154566128863195136","name":"Lakuzerruzz","screen_name":"Lakuzerruzz2","location":"","description":"Asonaba","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":363,"listed_count":0,"created_at":"Fri - Jul 26 01:36:30 +0000 2019","favourites_count":1336,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Sat - Mar 05 13:30:01 +0000 2022","id":1500101327690547206,"id_str":"1500101327690547206","text":"@SAnnobilBaidoo - @sammiawuku @SBawumia @henrynanaboakye @yoadutwum @preciousbaidoo @Ebeneze00924883 - @LTescon\u2026 https:\/\/t.co\/E7PaYSxh2v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SAnnobilBaidoo","name":"Samuel - A. Baidoo","id":899559946815254528,"id_str":"899559946815254528","indices":[0,15]},{"screen_name":"sammiawuku","name":"Samuel - Awuku","id":2647038629,"id_str":"2647038629","indices":[16,27]},{"screen_name":"SBawumia","name":"Samira - Bawumia","id":837368622,"id_str":"837368622","indices":[28,37]},{"screen_name":"henrynanaboakye","name":"Henry - Nana Boakye","id":867826791469023232,"id_str":"867826791469023232","indices":[38,54]},{"screen_name":"yoadutwum","name":"Yaw - Osei Adutwum","id":1265531352000221185,"id_str":"1265531352000221185","indices":[55,65]},{"screen_name":"preciousbaidoo","name":"PreciousBaidoo","id":135495296,"id_str":"135495296","indices":[66,81]},{"screen_name":"Ebeneze00924883","name":"Ebenezer - Gyan","id":1317095561527517184,"id_str":"1317095561527517184","indices":[82,98]},{"screen_name":"LTescon","name":"Tescon - Legon","id":737902184659030016,"id_str":"737902184659030016","indices":[99,107]}],"urls":[{"url":"https:\/\/t.co\/E7PaYSxh2v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500101327690547206","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499724070052675587,"in_reply_to_status_id_str":"1499724070052675587","in_reply_to_user_id":899559946815254528,"in_reply_to_user_id_str":"899559946815254528","in_reply_to_screen_name":"SAnnobilBaidoo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1239501725905686534,"id_str":"1239501725905686534","name":"shelby","screen_name":"shelby35422122","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":234,"listed_count":0,"created_at":"Mon - Mar 16 10:40:27 +0000 2020","favourites_count":1261,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23232475,"id_str":"23232475","name":"Dee - Carlson, Ph.D","screen_name":"deecarly","location":"Oakland, CA","description":"That\u2019s - Dr. Dee. Clinical and Consulting Psychologist. Still here and ready to rumble.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":554,"listed_count":0,"created_at":"Sat - Mar 07 20:45:22 +0000 2009","favourites_count":22962,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1503,"lang":null,"status":{"created_at":"Fri - Mar 25 18:56:19 +0000 2022","id":1507431198968090627,"id_str":"1507431198968090627","text":"#imwithher\u2763\ufe0f. . - https:\/\/t.co\/fkAEZyTdx4","truncated":false,"entities":{"hashtags":[{"text":"imwithher","indices":[0,10]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fkAEZyTdx4","expanded_url":"https:\/\/twitter.com\/joncoopertweets\/status\/1507102995137249309","display_url":"twitter.com\/joncoopertweet\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507102995137249309,"quoted_status_id_str":"1507102995137249309","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/815997807190384640\/GJGwNwQ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815997807190384640\/GJGwNwQ__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19832763,"id_str":"19832763","name":"Thames - Sookpranee","screen_name":"thames_s","location":"Seattle, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":57,"listed_count":0,"created_at":"Sat - Jan 31 21:30:33 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228825933\/Screen_shot_2010-12-20_at_10.32.59_PM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228825933\/Screen_shot_2010-12-20_at_10.32.59_PM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19832763\/1446490104","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2296726612,"id_str":"2296726612","name":"MB","screen_name":"MegzMoney","location":"ig: - megzmoney","description":"Isaiah 43:2. || \ud83c\udfb5\u2652\ufe0f\ud83d\udda4 - || hi @arifromqns","url":"https:\/\/t.co\/0QWstyLunr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0QWstyLunr","expanded_url":"https:\/\/m.youtube.com\/watch?v=Nce72PILTnY&feature=youtu.be","display_url":"m.youtube.com\/watch?v=Nce72P\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":236,"friends_count":225,"listed_count":3,"created_at":"Wed - Jan 22 04:21:31 +0000 2014","favourites_count":28187,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7829,"lang":null,"status":{"created_at":"Fri - Mar 25 05:23:37 +0000 2022","id":1507226678887690246,"id_str":"1507226678887690246","text":"But - if I had you back all I\u2019d wanna do is","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478532210982629379\/PuNFJyTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478532210982629379\/PuNFJyTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2296726612\/1645256311","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307845619164291075,"id_str":"1307845619164291075","name":"Marisa - Contreras","screen_name":"dietcokes_24","location":"Florida, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":401,"listed_count":0,"created_at":"Mon - Sep 21 00:54:46 +0000 2020","favourites_count":23814,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Thu - May 27 00:35:17 +0000 2021","id":1397712979605532672,"id_str":"1397712979605532672","text":"@wcruz73 - Cream of wheat over here. Make sure to leave a few lumps. Takes me back to - her kitchen. Enjoy!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wcruz73","name":"Wilson - Cruz","id":27829587,"id_str":"27829587","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1397704588262883333,"in_reply_to_status_id_str":"1397704588262883333","in_reply_to_user_id":27829587,"in_reply_to_user_id_str":"27829587","in_reply_to_screen_name":"wcruz73","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284967259098583040,"id_str":"1284967259098583040","name":"blacklivesmatterpolitics.com - BLM R THUGS","screen_name":"blackli58330539","location":"Huntington Harbor, - CA","description":"Ranger O4. Ret.\\Aviator\\Hot Rod Builder\nWarrior, in - Word & Deed 1A 2A #MAGA #KAG\nDon''t judge me by the color of my skin, but - by the content of my tweets...","url":"https:\/\/t.co\/9qSUfeEipv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9qSUfeEipv","expanded_url":"http:\/\/blacklivesmatterpolitics.com","display_url":"blacklivesmatterpolitics.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6714,"friends_count":7032,"listed_count":4,"created_at":"Sun - Jul 19 21:44:12 +0000 2020","favourites_count":5654,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7524,"lang":null,"status":{"created_at":"Sun - Mar 20 02:12:23 +0000 2022","id":1505366613620449281,"id_str":"1505366613620449281","text":"RT - @Bev67Adder75: My amazing daughter has never walked since she was 8 years - of age then I get this pic of her with her new leg on such a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Bev67Adder75","name":"bev","id":1490088012440612870,"id_str":"1490088012440612870","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 18:07:56 +0000 2022","id":1505244697480122373,"id_str":"1505244697480122373","text":"My - amazing daughter has never walked since she was 8 years of age then I get - this pic of her with her new leg on s\u2026 https:\/\/t.co\/NXRjZgOyz5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NXRjZgOyz5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505244697480122373","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9648,"favorite_count":258999,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9648,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287151179751776256\/YiY6ETIk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287151179751776256\/YiY6ETIk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1284967259098583040\/1595728950","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1178768427529510912,"id_str":"1178768427529510912","name":"Wpows","screen_name":"Wpows4","location":"","description":"Always - Looking Forward ....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":2215,"listed_count":2,"created_at":"Mon - Sep 30 20:28:07 +0000 2019","favourites_count":1875,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":652,"lang":null,"status":{"created_at":"Fri - May 21 17:52:31 +0000 2021","id":1395799682316742660,"id_str":"1395799682316742660","text":"Guyger - faced a dark apartment with a lighted hall behind her. The light in the apartment - a TV and computer monitor.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1395796979238776832,"in_reply_to_status_id_str":"1395796979238776832","in_reply_to_user_id":1178768427529510912,"in_reply_to_user_id_str":"1178768427529510912","in_reply_to_screen_name":"Wpows4","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250223797447294976\/SyhfPi0z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250223797447294976\/SyhfPi0z_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":317103183,"id_str":"317103183","name":"Ken - Monroe","screen_name":"KenM1290","location":"michigan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":96,"listed_count":1,"created_at":"Tue - Jun 14 12:56:19 +0000 2011","favourites_count":11643,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6653,"lang":null,"status":{"created_at":"Sat - Mar 26 07:25:25 +0000 2022","id":1507619715602161669,"id_str":"1507619715602161669","text":"Donald - Trump, his children agree to be deposed in fraudulent marketing lawsuit https:\/\/t.co\/Csucf17U5J - \nFake News..\u2026 https:\/\/t.co\/4knUPMcFKL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Csucf17U5J","expanded_url":"https:\/\/www.msn.com\/en-us\/news\/politics\/donald-trump-his-children-agree-to-be-deposed-in-fraudulent-marketing-lawsuit\/ar-AAVv8Wn?ocid=msedgdhp&pc=U531&cvid=c94f910568e04eb8b3240c47b4d8e57e","display_url":"msn.com\/en-us\/news\/pol\u2026","indices":[79,102]},{"url":"https:\/\/t.co\/4knUPMcFKL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507619715602161669","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459991487580622849\/DZ2H5G75_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459991487580622849\/DZ2H5G75_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":366577099,"id_str":"366577099","name":"Missy - Yachup","screen_name":"myachup","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":105,"listed_count":0,"created_at":"Fri - Sep 02 12:39:34 +0000 2011","favourites_count":82,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Sep 08 17:03:43 +0000 2020","id":1303378493070286849,"id_str":"1303378493070286849","text":"This - story is about how the US president Trump most relates to expelled Americans - from their native homelands by wa\u2026 https:\/\/t.co\/pCULN6JH0d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pCULN6JH0d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1303378493070286849","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285251008017432577\/j6h4yNKJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285251008017432577\/j6h4yNKJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366577099\/1595262868","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":853246648969023488,"id_str":"853246648969023488","name":"Graeme - Higgins","screen_name":"GraemeHiggins2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":124,"listed_count":0,"created_at":"Sat - Apr 15 14:00:28 +0000 2017","favourites_count":170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Aug 01 10:54:01 +0000 2021","id":1421786291134414853,"id_str":"1421786291134414853","text":"@CormacMcCrthy - .","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CormacMcCrthy","name":"Cormac - McCarthy","id":1043274694596616192,"id_str":"1043274694596616192","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1421299147697647616,"in_reply_to_status_id_str":"1421299147697647616","in_reply_to_user_id":1043274694596616192,"in_reply_to_user_id_str":"1043274694596616192","in_reply_to_screen_name":"CormacMcCrthy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":138936376,"id_str":"138936376","name":"ChicagoPolitico","screen_name":"ChicagoPolitico","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":184,"listed_count":8,"created_at":"Sat - May 01 02:24:10 +0000 2010","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Tue - May 12 22:33:52 +0000 2020","id":1260337425227739136,"id_str":"1260337425227739136","text":"@chadisgone - @EthicsSteve @MECOPower Ray-Ban glasses promotion can enjoy up to 90% off - today! One day only! https:\/\/t.co\/Y7umiL3E2B","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chadisgone","name":"I''m - Not Here","id":15614043,"id_str":"15614043","indices":[0,11]},{"screen_name":"EthicsSteve","name":"Steve - Berlin","id":369677232,"id_str":"369677232","indices":[12,24]},{"screen_name":"MECOPower","name":"MECO - Power, Inc.","id":313597874,"id_str":"313597874","indices":[25,35]}],"urls":[{"url":"https:\/\/t.co\/Y7umiL3E2B","expanded_url":"http:\/\/bit.ly\/2SZuk0e","display_url":"bit.ly\/2SZuk0e","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":15614043,"in_reply_to_user_id_str":"15614043","in_reply_to_screen_name":"chadisgone","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912015350\/Chicago_Skyline_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912015350\/Chicago_Skyline_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2658844986,"id_str":"2658844986","name":"Shelby - rhymes with enby","screen_name":"realShelbyW","location":"Albuquerque, NM","description":"She\/They\n@BirdsNotReal99 - journo account\n Emmy award winner \ud83c\udfac\n UNM - ''22 \ud83d\udc3a","url":"https:\/\/t.co\/tSyKNpHq81","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tSyKNpHq81","expanded_url":"https:\/\/vimeo.com\/shelbykleinhans","display_url":"vimeo.com\/shelbykleinhans","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":178,"friends_count":1176,"listed_count":0,"created_at":"Sat - Jul 19 06:58:36 +0000 2014","favourites_count":22996,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"status":{"created_at":"Wed - Mar 23 18:36:09 +0000 2022","id":1506701350054232067,"id_str":"1506701350054232067","text":"I - just want a word with whoever decided that the tasssel color for FINE ARTS - should be b r o w n","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1355024887513894916\/Umf2gMH1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1355024887513894916\/Umf2gMH1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2658844986\/1646068905","profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":542820826,"id_str":"542820826","name":"Stuart - Bourne","screen_name":"BourneStu","location":"West Yorkshire","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":264,"listed_count":0,"created_at":"Sun - Apr 01 20:15:03 +0000 2012","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Sat - Nov 14 16:38:48 +0000 2020","id":1327652210940014592,"id_str":"1327652210940014592","text":"@doglab - You show what is best in young people, you look very smart and judging by - the badges on your brassard you a\u2026 https:\/\/t.co\/jlDoyVddDG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"doglab","name":"Danny","id":41337621,"id_str":"41337621","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/jlDoyVddDG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1327652210940014592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1326657095018696704,"in_reply_to_status_id_str":"1326657095018696704","in_reply_to_user_id":41337621,"in_reply_to_user_id_str":"41337621","in_reply_to_screen_name":"doglab","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877510995526262784\/kz6VqbJ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877510995526262784\/kz6VqbJ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542820826\/1383596420","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1204904574030688257,"id_str":"1204904574030688257","name":"Shabazz - Muhammad","screen_name":"ShabazzMuhamm10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":714,"listed_count":0,"created_at":"Wed - Dec 11 23:24:13 +0000 2019","favourites_count":3929,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3751,"lang":null,"status":{"created_at":"Thu - Mar 24 11:14:40 +0000 2022","id":1506952634971955200,"id_str":"1506952634971955200","text":"RT - @BleacherReport: Drake tells LeBron he''s donating $1 Million to James'' I - Promise school \ud83d\ude4c https:\/\/t.co\/xImA38igP5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BleacherReport","name":"Bleacher - Report","id":890891,"id_str":"890891","indices":[3,18]}],"urls":[],"media":[{"id":1506825290496065536,"id_str":"1506825290496065536","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","url":"https:\/\/t.co\/xImA38igP5","display_url":"pic.twitter.com\/xImA38igP5","expanded_url":"https:\/\/twitter.com\/BleacherReport\/status\/1506825340651454466\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506825340651454466,"source_status_id_str":"1506825340651454466","source_user_id":890891,"source_user_id_str":"890891"}]},"extended_entities":{"media":[{"id":1506825290496065536,"id_str":"1506825290496065536","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","url":"https:\/\/t.co\/xImA38igP5","display_url":"pic.twitter.com\/xImA38igP5","expanded_url":"https:\/\/twitter.com\/BleacherReport\/status\/1506825340651454466\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506825340651454466,"source_status_id_str":"1506825340651454466","source_user_id":890891,"source_user_id_str":"890891","video_info":{"aspect_ratio":[16,9],"duration_millis":36880,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/640x360\/OVwX9Xt9089JuzMa.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/1280x720\/4qywFqG6vLqfqUfG.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/pl\/tsNvntwL0rcpIsdD.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/480x270\/T2Y6F7Ej1_Pxocet.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:48:51 +0000 2022","id":1506825340651454466,"id_str":"1506825340651454466","text":"Drake - tells LeBron he''s donating $1 Million to James'' I Promise school \ud83d\ude4c - https:\/\/t.co\/xImA38igP5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506825290496065536,"id_str":"1506825290496065536","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","url":"https:\/\/t.co\/xImA38igP5","display_url":"pic.twitter.com\/xImA38igP5","expanded_url":"https:\/\/twitter.com\/BleacherReport\/status\/1506825340651454466\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506825290496065536,"id_str":"1506825290496065536","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506825290496065536\/pu\/img\/0z00lmNcwHblzC9K.jpg","url":"https:\/\/t.co\/xImA38igP5","display_url":"pic.twitter.com\/xImA38igP5","expanded_url":"https:\/\/twitter.com\/BleacherReport\/status\/1506825340651454466\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":36880,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/640x360\/OVwX9Xt9089JuzMa.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/1280x720\/4qywFqG6vLqfqUfG.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/pl\/tsNvntwL0rcpIsdD.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506825290496065536\/pu\/vid\/480x270\/T2Y6F7Ej1_Pxocet.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8571,"favorite_count":88146,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8571,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238812212225073155\/Kfd38mRp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238812212225073155\/Kfd38mRp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204904574030688257\/1584190820","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3111897457,"id_str":"3111897457","name":"Abu - aqsa","screen_name":"FajrBehzad","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":214,"listed_count":0,"created_at":"Sat - Mar 28 00:51:17 +0000 2015","favourites_count":123,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Sun - Mar 20 18:41:23 +0000 2022","id":1505615502806482944,"id_str":"1505615502806482944","text":"RT - @IQRALibraryHyd: PRESS RELEASE (ENGLISH)\n\n#101YearsWithoutKhilafah #03March1924 - #03March #28Rajab #Khilafah #101Years #KnotsOfIslam #Kha\u2026","truncated":false,"entities":{"hashtags":[{"text":"101YearsWithoutKhilafah","indices":[45,69]},{"text":"03March1924","indices":[70,82]},{"text":"03March","indices":[83,91]},{"text":"28Rajab","indices":[92,100]},{"text":"Khilafah","indices":[101,110]},{"text":"101Years","indices":[111,120]},{"text":"KnotsOfIslam","indices":[121,134]}],"symbols":[],"user_mentions":[{"screen_name":"IQRALibraryHyd","name":"IQRA - Islamic Library & Study Centre","id":1502862615789203456,"id_str":"1502862615789203456","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 16:36:35 +0000 2022","id":1505221707610861568,"id_str":"1505221707610861568","text":"PRESS - RELEASE (ENGLISH)\n\n#101YearsWithoutKhilafah #03March1924 #03March #28Rajab - #Khilafah #101Years #KnotsOfIslam\u2026 https:\/\/t.co\/Omc39mUQRl","truncated":true,"entities":{"hashtags":[{"text":"101YearsWithoutKhilafah","indices":[25,49]},{"text":"03March1924","indices":[50,62]},{"text":"03March","indices":[63,71]},{"text":"28Rajab","indices":[72,80]},{"text":"Khilafah","indices":[81,90]},{"text":"101Years","indices":[91,100]},{"text":"KnotsOfIslam","indices":[101,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Omc39mUQRl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505221707610861568","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480343940427513856\/8AwJ6XfH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480343940427513856\/8AwJ6XfH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3111897457\/1641776536","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4835472856,"id_str":"4835472856","name":"Faj","screen_name":"iamfajfem","location":"","description":"I''m - an hardworking artiste, actor and a decorated footballer. \n\n#ready to work","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":389,"listed_count":0,"created_at":"Fri - Jan 22 15:18:49 +0000 2016","favourites_count":1950,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Tue - May 18 23:53:17 +0000 2021","id":1394803309593120773,"id_str":"1394803309593120773","text":"https:\/\/t.co\/dC9yEQ9WQA\nKindly - follow and stream.......\nThanks!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dC9yEQ9WQA","expanded_url":"https:\/\/open.spotify.com\/artist\/4mInrv8bGxzz0NTDhwwOSI?si=9Y7VzoCBT-eWab8gsAE_2Q&utm_source=copy-link","display_url":"open.spotify.com\/artist\/4mInrv8\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1394805146635448325\/n4D3ENIq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1394805146635448325\/n4D3ENIq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4123890382,"id_str":"4123890382","name":"David - Fava","screen_name":"Daveapf7","location":"Saratoga Springs, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":422,"listed_count":0,"created_at":"Fri - Nov 06 02:49:21 +0000 2015","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Apr 11 01:39:26 +0000 2020","id":1248787711005261826,"id_str":"1248787711005261826","text":"@GlenPhillips - @Stageit Rings?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GlenPhillips","name":"Glen - Phillips","id":25593516,"id_str":"25593516","indices":[0,13]},{"screen_name":"Stageit","name":"StageIt","id":54296510,"id_str":"54296510","indices":[14,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1248779628166053890,"in_reply_to_status_id_str":"1248779628166053890","in_reply_to_user_id":25593516,"in_reply_to_user_id_str":"25593516","in_reply_to_screen_name":"GlenPhillips","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/800533762052423680\/CUrE2yGM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/800533762052423680\/CUrE2yGM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265499239343443980,"id_str":"1265499239343443980","name":"aamberdhaliwal","screen_name":"aamberdhaliwal1","location":"","description":"tera - bhana mitha lage \u2665\ufe0f","url":"https:\/\/t.co\/vG8M7OK7Pb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vG8M7OK7Pb","expanded_url":"https:\/\/linktr.ee\/aamberdhaliwal","display_url":"linktr.ee\/aamberdhaliwal","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8092,"friends_count":61,"listed_count":0,"created_at":"Wed - May 27 04:25:15 +0000 2020","favourites_count":1932,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"status":{"created_at":"Wed - Mar 16 13:31:32 +0000 2022","id":1504087974899712008,"id_str":"1504087974899712008","text":"hi - \ud83e\udd0d https:\/\/t.co\/FB4ubtUUuv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504087831727075330,"id_str":"1504087831727075330","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FN-X6fkUcAIAiIn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN-X6fkUcAIAiIn.jpg","url":"https:\/\/t.co\/FB4ubtUUuv","display_url":"pic.twitter.com\/FB4ubtUUuv","expanded_url":"https:\/\/twitter.com\/aamberdhaliwal1\/status\/1504087974899712008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1440,"h":1800,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504087831727075330,"id_str":"1504087831727075330","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FN-X6fkUcAIAiIn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN-X6fkUcAIAiIn.jpg","url":"https:\/\/t.co\/FB4ubtUUuv","display_url":"pic.twitter.com\/FB4ubtUUuv","expanded_url":"https:\/\/twitter.com\/aamberdhaliwal1\/status\/1504087974899712008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1440,"h":1800,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}},{"id":1504087831735521289,"id_str":"1504087831735521289","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FN-X6fmVUAkRQtB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN-X6fmVUAkRQtB.jpg","url":"https:\/\/t.co\/FB4ubtUUuv","display_url":"pic.twitter.com\/FB4ubtUUuv","expanded_url":"https:\/\/twitter.com\/aamberdhaliwal1\/status\/1504087974899712008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":1200,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1440,"h":1800,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":385,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497121619675795458\/t2PlIts8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497121619675795458\/t2PlIts8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1265499239343443980\/1642912186","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267021423786090496,"id_str":"1267021423786090496","name":"Andrew - Durham","screen_name":"andrew_durham__","location":"Salt Lake City, UT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":94,"listed_count":0,"created_at":"Sun - May 31 09:13:52 +0000 2020","favourites_count":4856,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Fri - Mar 25 04:11:32 +0000 2022","id":1507208536635293698,"id_str":"1507208536635293698","text":"RT - @kidmanscill: Interviewer: what\u2019s this two gap year in your resume?\n\nMe: - it was then that I was carrying you \n\nInterviewer: what \n\nMe: w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kidmanscill","name":"Tanner!","id":51672625,"id_str":"51672625","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:17:28 +0000 2022","id":1507074136085991424,"id_str":"1507074136085991424","text":"Interviewer: - what\u2019s this two gap year in your resume?\n\nMe: it was then that I was - carrying you \n\nInterviewer: what \n\nMe: what","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":1476,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":107,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398055849147265026\/NtL5yeTN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398055849147265026\/NtL5yeTN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267021423786090496\/1611044306","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294599638381666305,"id_str":"1294599638381666305","name":"Supreme - Football Acadamy","screen_name":"FAyikyi","location":"Western Region( Ghana)","description":"Footballer\u26bd\ufe0f\u26bd\ufe0f\u26bd\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":576,"listed_count":0,"created_at":"Sat - Aug 15 11:40:03 +0000 2020","favourites_count":3346,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Oct 22 17:14:44 +0000 2020","id":1319326331675566081,"id_str":"1319326331675566081","text":"#NewProfilePic - https:\/\/t.co\/4tfxZfF2Rr","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1319326314634092545,"id_str":"1319326314634092545","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/Ek8wSwaXIAEd9ux.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ek8wSwaXIAEd9ux.jpg","url":"https:\/\/t.co\/4tfxZfF2Rr","display_url":"pic.twitter.com\/4tfxZfF2Rr","expanded_url":"https:\/\/twitter.com\/FAyikyi\/status\/1319326331675566081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1319326314634092545,"id_str":"1319326314634092545","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/Ek8wSwaXIAEd9ux.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ek8wSwaXIAEd9ux.jpg","url":"https:\/\/t.co\/4tfxZfF2Rr","display_url":"pic.twitter.com\/4tfxZfF2Rr","expanded_url":"https:\/\/twitter.com\/FAyikyi\/status\/1319326331675566081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319326286330908672\/ooeI_L-k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319326286330908672\/ooeI_L-k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294599638381666305\/1603386879","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2885719459,"id_str":"2885719459","name":"TJMillar","screen_name":"tjmillar1","location":"Melbourne","description":"Nothing - to see here","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":746,"listed_count":2,"created_at":"Fri - Oct 31 23:49:01 +0000 2014","favourites_count":2770,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":491,"lang":null,"status":{"created_at":"Mon - Jan 03 11:48:23 +0000 2022","id":1477970091769614338,"id_str":"1477970091769614338","text":"RT - @sallyrugg: IMPORTANT RETRACTION TO MY 2019 MEMOIR:\n\nI thought I never wanted - to get gay married. I worked on the campaign for years sti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sallyrugg","name":"Sally - Rugg","id":28026149,"id_str":"28026149","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 03 03:25:50 +0000 2022","id":1477843619557953538,"id_str":"1477843619557953538","text":"IMPORTANT - RETRACTION TO MY 2019 MEMOIR:\n\nI thought I never wanted to get gay married. - I worked on the campaign for\u2026 https:\/\/t.co\/zVz0y8npH9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zVz0y8npH9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1477843619557953538","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":186,"favorite_count":9225,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":186,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/712597076740333568\/47vtuzZC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/712597076740333568\/47vtuzZC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885719459\/1439784351","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":43983507,"id_str":"43983507","name":"Ellen - Torrence\u262a Shut down the Virus~Wear a Mask\ud83d\ude37","screen_name":"ETinatlantaGA","location":"Atlanta, - Georgia","description":"A.K.A. Habiba Ali\u262a... Avid news & world issues - follower, explorer of different religious views & history, Music\/poetry lover, - graphic artist,..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":1422,"listed_count":0,"created_at":"Mon - Jun 01 21:58:09 +0000 2009","favourites_count":3697,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5681,"lang":null,"status":{"created_at":"Fri - Mar 12 19:58:12 +0000 2021","id":1370464161747116039,"id_str":"1370464161747116039","text":"The - Pope Met a Different Kind of Ayatollah\u2014As a Shiite Muslim I am Hopeful - | Opinion https:\/\/t.co\/g2cyZkXCJZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g2cyZkXCJZ","expanded_url":"https:\/\/www.newsweek.com\/pope-met-different-kind-ayatollah-shiite-muslim-i-am-hopeful-opinion-1575243","display_url":"newsweek.com\/pope-met-diffe\u2026","indices":[85,108]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319712932599635969\/vx21qSde_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319712932599635969\/vx21qSde_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43983507\/1604970841","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":314049287,"id_str":"314049287","name":"Marita","screen_name":"MaritaManassa","location":"lebanon","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":368,"listed_count":0,"created_at":"Thu - Jun 09 16:45:21 +0000 2011","favourites_count":3148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1044,"lang":null,"status":{"created_at":"Thu - Mar 03 20:43:53 +0000 2022","id":1499485737271635972,"id_str":"1499485737271635972","text":"@panicstationnnn - lahaztee ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"panicstationnnn","name":"\ud835\udc6e\ud835\udc82\ud835\udc83\ud835\udc9a - \u263e","id":1093520900924817410,"id_str":"1093520900924817410","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499324002103439363,"in_reply_to_status_id_str":"1499324002103439363","in_reply_to_user_id":1093520900924817410,"in_reply_to_user_id_str":"1093520900924817410","in_reply_to_screen_name":"panicstationnnn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303224097535660032\/9PAxTLA9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303224097535660032\/9PAxTLA9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1090537693598097409,"id_str":"1090537693598097409","name":"mardiette","screen_name":"mardiette","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":82,"listed_count":0,"created_at":"Wed - Jan 30 09:10:22 +0000 2019","favourites_count":1666,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":115,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378403984239702017\/qQn82Muz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378403984239702017\/qQn82Muz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1090537693598097409\/1636376563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310517912138997760,"id_str":"1310517912138997760","name":"Dr.Alone","screen_name":"Anik96267321","location":"","description":"Washington, - America","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":589,"friends_count":1058,"listed_count":0,"created_at":"Mon - Sep 28 09:53:38 +0000 2020","favourites_count":5205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Sun - Sep 19 17:18:41 +0000 2021","id":1439640097285046273,"id_str":"1439640097285046273","text":"@RubayetRipon - hi https:\/\/t.co\/dmehoBwObb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1439640093241667584,"id_str":"1439640093241667584","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/E_qhCYoUcAAKD4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_qhCYoUcAAKD4g.jpg","url":"https:\/\/t.co\/dmehoBwObb","display_url":"pic.twitter.com\/dmehoBwObb","expanded_url":"https:\/\/twitter.com\/Anik96267321\/status\/1439640097285046273\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":612,"h":680,"resize":"fit"},"large":{"w":720,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1439640093241667584,"id_str":"1439640093241667584","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/E_qhCYoUcAAKD4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_qhCYoUcAAKD4g.jpg","url":"https:\/\/t.co\/dmehoBwObb","display_url":"pic.twitter.com\/dmehoBwObb","expanded_url":"https:\/\/twitter.com\/Anik96267321\/status\/1439640097285046273\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":612,"h":680,"resize":"fit"},"large":{"w":720,"h":800,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":781931359824519169,"in_reply_to_user_id_str":"781931359824519169","in_reply_to_screen_name":"riponphyAIGH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432404405903450119\/EMSUKNGo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432404405903450119\/EMSUKNGo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1310517912138997760\/1619518675","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3236713189,"id_str":"3236713189","name":"Andy","screen_name":"Andy_Krisis","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":1012,"listed_count":0,"created_at":"Fri - Jun 05 05:41:31 +0000 2015","favourites_count":2516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":883,"lang":null,"status":{"created_at":"Tue - Nov 02 19:16:41 +0000 2021","id":1455614860578803712,"id_str":"1455614860578803712","text":"@MattWalshBlog - He left him in a trunk for a year. You turn yourself in. This guy got angry, - flew off, and took the\u2026 https:\/\/t.co\/030EzRWGYN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattWalshBlog","name":"Matt - Walsh","id":1500129642,"id_str":"1500129642","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/030EzRWGYN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1455614860578803712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1455593106473046017,"in_reply_to_status_id_str":"1455593106473046017","in_reply_to_user_id":1500129642,"in_reply_to_user_id_str":"1500129642","in_reply_to_screen_name":"MattWalshBlog","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617131924880887808\/Hiy9LpBY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617131924880887808\/Hiy9LpBY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195001437304037376,"id_str":"1195001437304037376","name":"charles - gitau","screen_name":"charles08296402","location":"Airport Road","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":406,"listed_count":0,"created_at":"Thu - Nov 14 15:32:40 +0000 2019","favourites_count":357,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Mar 18 06:08:45 +0000 2022","id":1504701319034159121,"id_str":"1504701319034159121","text":"@hellenjeriKe - Hi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hellenjeriKe","name":"Hellen","id":1305353681446096896,"id_str":"1305353681446096896","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504113455716081667,"in_reply_to_status_id_str":"1504113455716081667","in_reply_to_user_id":1305353681446096896,"in_reply_to_user_id_str":"1305353681446096896","in_reply_to_screen_name":"hellenjeriKe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195032986816827392\/KbEYLKoN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195032986816827392\/KbEYLKoN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":272254188,"id_str":"272254188","name":"KYFilly57","screen_name":"KYFilly57","location":"Cynthiana, - KY","description":"Enjoying the bits of peace that is to be found in this - crazy time we live in.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":919,"listed_count":3,"created_at":"Sat - Mar 26 04:14:19 +0000 2011","favourites_count":11842,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7575,"lang":null,"status":{"created_at":"Wed - Feb 23 12:57:26 +0000 2022","id":1496469246494355458,"id_str":"1496469246494355458","text":"RT - @MikeHudema: This is the Japanese Puffer Fish - one of #nature''s greatest - artists. To grab a female\u2019s attention he creates something tha\u2026","truncated":false,"entities":{"hashtags":[{"text":"nature","indices":[58,65]}],"symbols":[],"user_mentions":[{"screen_name":"MikeHudema","name":"Mike - Hudema","id":15088481,"id_str":"15088481","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 22 04:22:18 +0000 2022","id":1495977221210660864,"id_str":"1495977221210660864","text":"This - is the Japanese Puffer Fish - one of #nature''s greatest artists. To grab - a female\u2019s attention he creates somet\u2026 https:\/\/t.co\/xvYA6vE2tW","truncated":true,"entities":{"hashtags":[{"text":"nature","indices":[42,49]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xvYA6vE2tW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495977221210660864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":954,"favorite_count":3417,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":954,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080070323813396480\/phD3ATzI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080070323813396480\/phD3ATzI_normal.jpg","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":465153664,"id_str":"465153664","name":"Jon","screen_name":"BuddhaJon","location":"","description":"Love - the beer...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":224,"friends_count":1462,"listed_count":0,"created_at":"Mon - Jan 16 01:20:03 +0000 2012","favourites_count":94040,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3519,"lang":null,"status":{"created_at":"Mon - Mar 21 23:43:53 +0000 2022","id":1506054018879086594,"id_str":"1506054018879086594","text":"RT - @JamesAALongman: Remember the girl who sang Frozen in a Ukrainian bomb shelter? - \n\nShe just sang on stage at a charity concert in Poland\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamesAALongman","name":"James - Longman","id":247022327,"id_str":"247022327","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 09:31:37 +0000 2022","id":1505839536944910339,"id_str":"1505839536944910339","text":"Remember - the girl who sang Frozen in a Ukrainian bomb shelter? \n\nShe just sang on - stage at a charity concert in Pol\u2026 https:\/\/t.co\/l0r7p6lA61","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l0r7p6lA61","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505839536944910339","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25621,"favorite_count":125656,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":25621,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455917155008000000\/SSe0QQM1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455917155008000000\/SSe0QQM1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465153664\/1397534040","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":788486486903648256,"id_str":"788486486903648256","name":"Ellen - Hudson Howard","screen_name":"Mrs__Howard","location":"Greenville, SC","description":"witness - to the light","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":158,"listed_count":0,"created_at":"Tue - Oct 18 21:06:43 +0000 2016","favourites_count":214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - Nov 07 19:14:52 +0000 2020","id":1325154773918748672,"id_str":"1325154773918748672","text":"RT - @JackieHillPerry: I keep thinking about Fannie Lou Hamer. None of her work - was wasted.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JackieHillPerry","name":"Jackie - Hill Perry","id":34374292,"id_str":"34374292","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 07 19:14:06 +0000 2020","id":1325154579143487491,"id_str":"1325154579143487491","text":"I - keep thinking about Fannie Lou Hamer. None of her work was wasted.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":1135,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":98,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039224499005272065\/sGJ1nEZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039224499005272065\/sGJ1nEZp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788486486903648256\/1476843029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825558404852641792,"id_str":"825558404852641792","name":"Lindsey - Medeiros","screen_name":"mrslinzmedeiros","location":"Phoenix, AZ","description":"wife. - mother. critical care nurse. crossfit\/Pilates enthusiast. dog lover. coffee - drinker. Democrat. garden grower.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":700,"listed_count":0,"created_at":"Sun - Jan 29 04:17:16 +0000 2017","favourites_count":5222,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329645178542452736\/9npSnhbp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329645178542452736\/9npSnhbp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/825558404852641792\/1628136824","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":386873090,"id_str":"386873090","name":"CurtissW","screen_name":"CurtWilliams1","location":"Seattle","description":"Ex-SEIU - 1199 organizer director, chaplain in training","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":39,"friends_count":791,"listed_count":2,"created_at":"Sat - Oct 08 02:20:47 +0000 2011","favourites_count":763,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1577682190\/IMG_6183_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1577682190\/IMG_6183_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822852608297750528,"id_str":"822852608297750528","name":"Sandra","screen_name":"sramirez62","location":"San - Antonio, TX","description":"choose happiness","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":206,"listed_count":0,"created_at":"Sat - Jan 21 17:05:24 +0000 2017","favourites_count":606,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Jul 25 22:20:45 +0000 2019","id":1154516866917982210,"id_str":"1154516866917982210","text":"Happy - birthday @haleyalexis250 love you to the moon and back and around the world - twice\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825371391054770178\/AocF0LbO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825371391054770178\/AocF0LbO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/822852608297750528\/1485619119","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282005793995395072,"id_str":"1282005793995395072","name":"Mohammed - Rizwan Mansori","screen_name":"mansori_rizwan","location":"","description":"I''m - A Utter Perdesh.I''m A Muslim.I''m A Indian.I''m A Dravidian. Hindi + Urdu - + Arabic. Alhumdullillah....\ud83d\udcaf\ud83d\udd25","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":2631,"listed_count":1,"created_at":"Sat - Jul 11 17:36:37 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Tue - Mar 30 09:39:08 +0000 2021","id":1376831350267863042,"id_str":"1376831350267863042","text":"@Rekhta - Nice...\ud83d\udc4c\ud83d\udcaf\ud83d\udd25\ud83d\udd25","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rekhta","name":"Rekhta","id":598524600,"id_str":"598524600","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1376755061527830528,"in_reply_to_status_id_str":"1376755061527830528","in_reply_to_user_id":598524600,"in_reply_to_user_id_str":"598524600","in_reply_to_screen_name":"Rekhta","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282006907700621313\/6josk-N4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282006907700621313\/6josk-N4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1282005793995395072\/1614412957","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3044456751,"id_str":"3044456751","name":"jeff - stewart","screen_name":"stewdog58","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":1319,"listed_count":1,"created_at":"Wed - Feb 18 06:06:07 +0000 2015","favourites_count":8319,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2070,"lang":null,"status":{"created_at":"Fri - Mar 18 21:49:17 +0000 2022","id":1504938014149066764,"id_str":"1504938014149066764","text":"@kellyrine42195k - That Bucket is FULL!.. \nJust sayin!\ud83d\ude0e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kellyrine42195k","name":"Kelly - Rine","id":2370634669,"id_str":"2370634669","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504811112705015809,"in_reply_to_status_id_str":"1504811112705015809","in_reply_to_user_id":2370634669,"in_reply_to_user_id_str":"2370634669","in_reply_to_screen_name":"kellyrine42195k","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465042313294626821\/E8yl6gXq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465042313294626821\/E8yl6gXq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3044456751\/1433349880","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4870095814,"id_str":"4870095814","name":"David - Peters","screen_name":"DPetersSolr","location":"Nenagh","description":"Owner - of DP Solicitors Nenagh, Co Tipp. Criminal law, civil claims, property, hurling, - history, Gaeilge, politics. LLM in HumanRightsCJ @UL Tutor @LawSocIreland","url":"https:\/\/t.co\/0sZlL87Mqx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0sZlL87Mqx","expanded_url":"http:\/\/www.davidpeters.ie","display_url":"davidpeters.ie","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":227,"friends_count":876,"listed_count":1,"created_at":"Mon - Feb 01 18:26:15 +0000 2016","favourites_count":14912,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":666,"lang":null,"status":{"created_at":"Thu - Mar 24 13:33:01 +0000 2022","id":1506987450182340611,"id_str":"1506987450182340611","text":"A - really important publication. Suspects with disabilities similar to victims - with disabilities have rights that mu\u2026 https:\/\/t.co\/0HquspPMCl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0HquspPMCl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506987450182340611","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506917481029451780,"quoted_status_id_str":"1506917481029451780","retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287434591813459975\/1hG3TpJl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287434591813459975\/1hG3TpJl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4870095814\/1587135970","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4228380071,"id_str":"4228380071","name":"Shannon - Karl, PhD","screen_name":"shannonlounge","location":"Florida, USA","description":"professor, - mom of 3, wife, licensed mental health counselor, advocate, daughter of NASA - astronaut\/war vet, ally, hoping to always be a helper (she\/her)","url":"https:\/\/t.co\/TgZGDXLcud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TgZGDXLcud","expanded_url":"http:\/\/www.linkedin.com\/in\/shannon-karl-phd\/","display_url":"linkedin.com\/in\/shannon-kar\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":956,"listed_count":0,"created_at":"Thu - Nov 19 18:44:11 +0000 2015","favourites_count":618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Sun - Mar 20 19:05:55 +0000 2022","id":1505621675399860225,"id_str":"1505621675399860225","text":"@nathaliejacoby1 - \ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505582472574210051,"in_reply_to_status_id_str":"1505582472574210051","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890580057969881089\/vU-YK6iD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890580057969881089\/vU-YK6iD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56225441,"id_str":"56225441","name":"Zack - Miranda","screen_name":"ZackMiranda","location":"Sonoma County, California","description":"Here - for the politics, sports, and news.","url":"http:\/\/t.co\/07FBIKuZSY","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/07FBIKuZSY","expanded_url":"http:\/\/www.facebook.com\/zack.miranda","display_url":"facebook.com\/zack.miranda","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":65,"listed_count":0,"created_at":"Sun - Jul 12 23:42:41 +0000 2009","favourites_count":74,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Fri - Jan 08 23:23:09 +0000 2021","id":1347685300613517313,"id_str":"1347685300613517313","text":"@breaking_et - @SenatorCollins Aww, #ConcernedCollins is concerned again. But I thought Trump - learned his lesson?","truncated":false,"entities":{"hashtags":[{"text":"ConcernedCollins","indices":[34,51]}],"symbols":[],"user_mentions":[{"screen_name":"breaking_et","name":".","id":1406093147835441154,"id_str":"1406093147835441154","indices":[0,12]},{"screen_name":"SenatorCollins","name":"Sen. - Susan Collins","id":19726613,"id_str":"19726613","indices":[13,28]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1347684804565884928,"in_reply_to_status_id_str":"1347684804565884928","in_reply_to_user_id":1290521087743270912,"in_reply_to_user_id_str":"1290521087743270912","in_reply_to_screen_name":"garzatj_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346960839429947392\/pL-GmsMX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346960839429947392\/pL-GmsMX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1608212718,"id_str":"1608212718","name":"Lewis - Davie","screen_name":"ljgdavie","location":"Scotland","description":"Not on - Twitter rn - @anotherengine on Instagram is where you''ll find me :)","url":"https:\/\/t.co\/hdV23O9Y9m","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hdV23O9Y9m","expanded_url":"http:\/\/facebook.com\/LewisDavieMusic","display_url":"facebook.com\/LewisDavieMusic","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":339,"friends_count":471,"listed_count":7,"created_at":"Sat - Jul 20 13:20:20 +0000 2013","favourites_count":11023,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11441,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BF9EDB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/819679084615704576\/Qo9IMy-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/819679084615704576\/Qo9IMy-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1608212718\/1499638137","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16658422,"id_str":"16658422","name":"fmrmayor","screen_name":"fmrmayor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":278,"listed_count":0,"created_at":"Wed - Oct 08 23:38:56 +0000 2008","favourites_count":2072,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"status":{"created_at":"Fri - May 07 15:32:04 +0000 2021","id":1390690907435921408,"id_str":"1390690907435921408","text":"RT - @SenDuckworth: Every American relies on the USPS.\n\nWe deserve a reliable - Postmaster General. #FireDeJoy","truncated":false,"entities":{"hashtags":[{"text":"FireDeJoy","indices":[96,106]}],"symbols":[],"user_mentions":[{"screen_name":"SenDuckworth","name":"Tammy - Duckworth","id":1058520120,"id_str":"1058520120","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 07 15:30:34 +0000 2021","id":1390690530531684355,"id_str":"1390690530531684355","text":"Every - American relies on the USPS.\n\nWe deserve a reliable Postmaster General. - #FireDeJoy","truncated":false,"entities":{"hashtags":[{"text":"FireDeJoy","indices":[78,88]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3567,"favorite_count":17004,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3567,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3389029396,"id_str":"3389029396","name":"Olushola - Deckon","screen_name":"MartinsDec","location":"9ja Grwoun","description":"l - am living the life of unhindered acceleration take it or leave not, the Lord - is my stay all the time as it written of me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":2523,"listed_count":0,"created_at":"Thu - Jul 23 10:53:41 +0000 2015","favourites_count":529,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":305,"lang":null,"status":{"created_at":"Wed - Mar 16 15:52:02 +0000 2022","id":1504123333423603718,"id_str":"1504123333423603718","text":"@edomalo - @LindaEjiofor See how cute you look and your baby","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"edomalo","name":"Ibrahim - Suleiman","id":167271412,"id_str":"167271412","indices":[0,8]},{"screen_name":"LindaEjiofor","name":"Linda - Ejiofor-Suleiman","id":154133532,"id_str":"154133532","indices":[9,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503780420147720192,"in_reply_to_status_id_str":"1503780420147720192","in_reply_to_user_id":167271412,"in_reply_to_user_id_str":"167271412","in_reply_to_screen_name":"edomalo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152323199906066432\/McLd9rcI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152323199906066432\/McLd9rcI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2357520994,"id_str":"2357520994","name":"jason - finkelstein","screen_name":"jasonjayfink","location":"Aventura, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":1763,"listed_count":2,"created_at":"Fri - Feb 21 23:33:43 +0000 2014","favourites_count":12786,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":315,"lang":null,"status":{"created_at":"Thu - Mar 17 13:54:10 +0000 2022","id":1504456059070656512,"id_str":"1504456059070656512","text":"@dontcallSaulz - Mazel tov! Happy Purim!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dontcallSaulz","name":"Emma - Batsheva Saul","id":1243717398,"id_str":"1243717398","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504072691531276289,"in_reply_to_status_id_str":"1504072691531276289","in_reply_to_user_id":1243717398,"in_reply_to_user_id_str":"1243717398","in_reply_to_screen_name":"dontcallSaulz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1641531584,"id_str":"1641531584","name":"boyfriend","screen_name":"sihlesenkosijel","location":"Manzini, - Eswatini","description":"LLB.\nLawyer.\nCEO of Fake Businesses","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3524,"friends_count":2655,"listed_count":1,"created_at":"Fri - Aug 02 23:07:26 +0000 2013","favourites_count":21871,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10868,"lang":null,"status":{"created_at":"Sun - Mar 20 07:45:26 +0000 2022","id":1505450428393312257,"id_str":"1505450428393312257","text":"what''s - this mental health y''all keep talking about? cause it social media we assume - people know things but some of us don''t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490608283056578562\/0--B9PK9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490608283056578562\/0--B9PK9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1641531584\/1634495976","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":166997177,"id_str":"166997177","name":"Benjamin - Pichardo","screen_name":"Benstar1230","location":"Dominican Republic","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":163,"listed_count":0,"created_at":"Thu - Jul 15 14:16:07 +0000 2010","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":608,"lang":null,"status":{"created_at":"Fri - Mar 25 17:07:45 +0000 2022","id":1507403877997596687,"id_str":"1507403877997596687","text":"@coldplay - @JuanLuisGuerra Que grande es Juan Luis Guerra!!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"coldplay","name":"Coldplay","id":18863815,"id_str":"18863815","indices":[0,9]},{"screen_name":"JuanLuisGuerra","name":"Juan - Luis Guerra","id":104974333,"id_str":"104974333","indices":[10,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507062217358954503,"in_reply_to_status_id_str":"1507062217358954503","in_reply_to_user_id":18863815,"in_reply_to_user_id_str":"18863815","in_reply_to_screen_name":"coldplay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296532291590721540\/bG7Qbd8X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296532291590721540\/bG7Qbd8X_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3436725466,"id_str":"3436725466","name":"Alex - Li","screen_name":"nepatriotsbrady","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":403,"listed_count":0,"created_at":"Sun - Aug 23 12:48:10 +0000 2015","favourites_count":245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6820,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372375991386054657\/ztGOKpRe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372375991386054657\/ztGOKpRe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3436725466\/1602045563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22271472,"id_str":"22271472","name":"Virginia - Carbon","screen_name":"Ginnylima46","location":"Martha''s Vineyard","description":"loves - Politics","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":218,"listed_count":0,"created_at":"Sat - Feb 28 16:41:42 +0000 2009","favourites_count":94,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":601,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532940830953066496\/WfrXmAiC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532940830953066496\/WfrXmAiC_normal.jpeg","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":360668723,"id_str":"360668723","name":"Anna - Sucin","screen_name":"AnnaSucin","location":"Washington, D.C.","description":"Sports - fan, education proponent, nature lover, lawyer, mentor, Columbia U. alum, - proud Euro transplant & patriotic American. Truth and facts matter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":332,"listed_count":2,"created_at":"Tue - Aug 23 15:37:59 +0000 2011","favourites_count":4003,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":638,"lang":null,"status":{"created_at":"Fri - Mar 25 20:49:29 +0000 2022","id":1507459678095220745,"id_str":"1507459678095220745","text":"@RpsAgainstTrump - Mutual understanding, love, and genuine respect.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RpsAgainstTrump","name":"Republicans - against Trumpism","id":1221462414744596483,"id_str":"1221462414744596483","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507405107247427590,"in_reply_to_status_id_str":"1507405107247427590","in_reply_to_user_id":1221462414744596483,"in_reply_to_user_id_str":"1221462414744596483","in_reply_to_screen_name":"RpsAgainstTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646496031631388672\/YQN0QFUC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646496031631388672\/YQN0QFUC_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2242811100,"id_str":"2242811100","name":"Grace - Boekhoff-Falk","screen_name":"boekhofffalk","location":"","description":"biologist, - mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":172,"listed_count":1,"created_at":"Thu - Dec 12 19:22:54 +0000 2013","favourites_count":5917,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5705,"lang":null,"status":{"created_at":"Fri - Feb 25 16:55:09 +0000 2022","id":1497253848905392131,"id_str":"1497253848905392131","text":"RT - @AlysonSujkowski: The full version of our newest manuscript, Endurance exercise - ameliorates phenotypes in Drosophila models of spinocere\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlysonSujkowski","name":"Alyson - Sujkowski","id":929444627492503552,"id_str":"929444627492503552","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 24 18:07:19 +0000 2022","id":1496909618747887631,"id_str":"1496909618747887631","text":"The - full version of our newest manuscript, Endurance exercise ameliorates phenotypes - in Drosophila models of spinoc\u2026 https:\/\/t.co\/2uqD8s8zWl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2uqD8s8zWl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496909618747887631","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1036188472472756224,"id_str":"1036188472472756224","name":"samy - abboud","screen_name":"AbboudSamy","location":"Wilderness ","description":"Englishing - my own route..........","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":4986,"listed_count":1,"created_at":"Sun - Sep 02 09:45:58 +0000 2018","favourites_count":3002,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":398,"lang":null,"status":{"created_at":"Thu - Mar 24 02:33:02 +0000 2022","id":1506821362685513731,"id_str":"1506821362685513731","text":"( - \u0648\u064e\u0645\u064e\u0627 \u064a\u064e\u0646\u0637\u0650\u0642\u064f - \u0639\u064e\u0646\u0650 \u0627\u0644\u0652\u0647\u064e\u0648\u064e\u0649\u0670 - ) \u0644\u0627 \u064a\u063a\u0644\u0628 \u0627\u0644\u0647\u0648\u0649 \u0648\u0627\u0644\u0628\u0627\u0637\u0644 - \u0645\u0646 \u0643\u0627\u0646 \u0642\u0644\u0628\u0647 \u0645\u0645\u062a\u0644\u0626 - \u0628\u0630\u0643\u0631 \u0627\u0644\u0644\u0647\u060c \u0641\u0627\u0644\u0635\u0627\u0644\u062d\u0648\u0646 - \u0627\u0644\u0631\u0628\u0627\u0646\u064a\u0648\u0646 \u0644\u0627 \u064a\u0646\u0637\u0642\u0648\u0646 - \u0625\u2026 https:\/\/t.co\/aJiVBRe0dr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aJiVBRe0dr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506821362685513731","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/Quran.to\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 - \u062a\u062f\u0628\u064f\u0651\u0631\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432690068930670593\/VbxnOPbf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432690068930670593\/VbxnOPbf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1163819959,"id_str":"1163819959","name":"Mary - Barrett","screen_name":"maryobarrett","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":173,"listed_count":0,"created_at":"Sat - Feb 09 19:12:52 +0000 2013","favourites_count":318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - Oct 05 20:08:44 +0000 2021","id":1445481099816144896,"id_str":"1445481099816144896","text":"@ashishkjha - I\u2019m with you Dr. Jha. Mandates work!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ashishkjha","name":"Ashish - K. Jha, MD, MPH","id":39416218,"id_str":"39416218","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1444851243332083713,"in_reply_to_status_id_str":"1444851243332083713","in_reply_to_user_id":39416218,"in_reply_to_user_id_str":"39416218","in_reply_to_screen_name":"ashishkjha","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":60342151,"id_str":"60342151","name":"GEN - X INDEPENDENT","screen_name":"armyofnone","location":"America","description":"Truth - is STILL Truth!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1265,"friends_count":4998,"listed_count":4,"created_at":"Sun - Jul 26 16:46:09 +0000 2009","favourites_count":10306,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10051,"lang":null,"status":{"created_at":"Sat - Mar 26 04:57:23 +0000 2022","id":1507582463719051264,"id_str":"1507582463719051264","text":"Never - Goodbye #Everlong #TaylorHawkins https:\/\/t.co\/GBBX8uoZ9m","truncated":false,"entities":{"hashtags":[{"text":"Everlong","indices":[14,23]},{"text":"TaylorHawkins","indices":[24,38]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GBBX8uoZ9m","expanded_url":"https:\/\/twitter.com\/RollingStone\/status\/1507576234410225668","display_url":"twitter.com\/RollingStone\/s\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507576234410225668,"quoted_status_id_str":"1507576234410225668","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227283456545050624\/nsF5_CLQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227283456545050624\/nsF5_CLQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60342151\/1611153757","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":863875982,"id_str":"863875982","name":"Brian - Thurber","screen_name":"thurbinski","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":434,"listed_count":1,"created_at":"Sat - Oct 06 00:19:47 +0000 2012","favourites_count":65271,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4848,"lang":null,"status":{"created_at":"Sat - Mar 26 08:08:45 +0000 2022","id":1507630622100975617,"id_str":"1507630622100975617","text":"RT - @IAmPoliticsGirl: This is unreal. Republicans can\u2019t lead. They aren\u2019t - functioning in a representative democracy. They are there for thei\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAmPoliticsGirl","name":"PoliticsGirl","id":3827830753,"id_str":"3827830753","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:30:59 +0000 2022","id":1507500323266473987,"id_str":"1507500323266473987","text":"This - is unreal. Republicans can\u2019t lead. They aren\u2019t functioning in a - representative democracy. They are there for t\u2026 https:\/\/t.co\/k37uBUZOUP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k37uBUZOUP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507500323266473987","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":714,"favorite_count":3486,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":714,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506724191524966402\/-b8Hdaw3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506724191524966402\/-b8Hdaw3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/863875982\/1648066134","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180195621233401857,"id_str":"1180195621233401857","name":"Vintage - Virtu","screen_name":"VintageVirtu","location":"","description":"I love life - and I''ve tried my best live it.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":242,"listed_count":0,"created_at":"Fri - Oct 04 19:00:49 +0000 2019","favourites_count":145,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":547,"lang":null,"status":{"created_at":"Tue - Mar 22 09:18:10 +0000 2022","id":1506198539759669254,"id_str":"1506198539759669254","text":"Rick - Scott''s plan is a lot about stopping the Democrats from doing anything. It - doesn''t tell me what Republicans want to do.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267986930060451843\/mUqclYeb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267986930060451843\/mUqclYeb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1180195621233401857\/1591146512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309916779553132544,"id_str":"1309916779553132544","name":"mackenziesam58@gmail.com","screen_name":"Sam58Mack","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":473,"listed_count":0,"created_at":"Sat - Sep 26 18:05:33 +0000 2020","favourites_count":1804,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Thu - Mar 24 17:08:04 +0000 2022","id":1507041572294217737,"id_str":"1507041572294217737","text":"RT - @danyamah: Let''s settle this one, beauty with brains.\n\n\u2764\ufe0f For - Sabina Chege\n\ud83d\udd01 For Gladys Shollei\n\n#JKLive https:\/\/t.co\/O2uKzDCbbl","truncated":false,"entities":{"hashtags":[{"text":"JKLive","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"danyamah","name":"Anyamah - Douglas","id":481915993,"id_str":"481915993","indices":[3,12]}],"urls":[],"media":[{"id":1506728606059352068,"id_str":"1506728606059352068","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":960,"resize":"fit"},"small":{"w":423,"h":680,"resize":"fit"},"large":{"w":597,"h":960,"resize":"fit"}},"source_status_id":1506728616801021962,"source_status_id_str":"1506728616801021962","source_user_id":481915993,"source_user_id_str":"481915993"}]},"extended_entities":{"media":[{"id":1506728606059352068,"id_str":"1506728606059352068","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":960,"resize":"fit"},"small":{"w":423,"h":680,"resize":"fit"},"large":{"w":597,"h":960,"resize":"fit"}},"source_status_id":1506728616801021962,"source_status_id_str":"1506728616801021962","source_user_id":481915993,"source_user_id_str":"481915993"},{"id":1506728612933812231,"id_str":"1506728612933812231","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5sMLWQAcqmb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5sMLWQAcqmb6.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":452,"h":678,"resize":"fit"},"small":{"w":452,"h":678,"resize":"fit"},"large":{"w":452,"h":678,"resize":"fit"}},"source_status_id":1506728616801021962,"source_status_id_str":"1506728616801021962","source_user_id":481915993,"source_user_id_str":"481915993"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:24:30 +0000 2022","id":1506728616801021962,"id_str":"1506728616801021962","text":"Let''s - settle this one, beauty with brains.\n\n\u2764\ufe0f For Sabina Chege\n\ud83d\udd01 - For Gladys Shollei\n\n#JKLive https:\/\/t.co\/O2uKzDCbbl","truncated":false,"entities":{"hashtags":[{"text":"JKLive","indices":[86,93]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506728606059352068,"id_str":"1506728606059352068","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":960,"resize":"fit"},"small":{"w":423,"h":680,"resize":"fit"},"large":{"w":597,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506728606059352068,"id_str":"1506728606059352068","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5rykWUAQCIrV.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":960,"resize":"fit"},"small":{"w":423,"h":680,"resize":"fit"},"large":{"w":597,"h":960,"resize":"fit"}}},{"id":1506728612933812231,"id_str":"1506728612933812231","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj5sMLWQAcqmb6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj5sMLWQAcqmb6.jpg","url":"https:\/\/t.co\/O2uKzDCbbl","display_url":"pic.twitter.com\/O2uKzDCbbl","expanded_url":"https:\/\/twitter.com\/danyamah\/status\/1506728616801021962\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":452,"h":678,"resize":"fit"},"small":{"w":452,"h":678,"resize":"fit"},"large":{"w":452,"h":678,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":763,"favorite_count":4774,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":763,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":514611737,"id_str":"514611737","name":"Pat - Murphy","screen_name":"PatPmurphy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":409,"listed_count":0,"created_at":"Sun - Mar 04 18:23:13 +0000 2012","favourites_count":512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Wed - Mar 16 18:25:51 +0000 2022","id":1504162044198760448,"id_str":"1504162044198760448","text":"@ShaneLowryGolf - @THEPLAYERSChamp @ValsparChamp Well done Shane. To go from the cut mark near - the end of your second\u2026 https:\/\/t.co\/4QGR99oW1I","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShaneLowryGolf","name":"Shane - Lowry","id":113058712,"id_str":"113058712","indices":[0,15]},{"screen_name":"THEPLAYERSChamp","name":"THE - PLAYERS","id":14388508,"id_str":"14388508","indices":[16,32]},{"screen_name":"ValsparChamp","name":"Valspar - Championship","id":18192256,"id_str":"18192256","indices":[33,46]}],"urls":[{"url":"https:\/\/t.co\/4QGR99oW1I","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504162044198760448","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504085260123914243,"in_reply_to_status_id_str":"1504085260123914243","in_reply_to_user_id":113058712,"in_reply_to_user_id_str":"113058712","in_reply_to_screen_name":"ShaneLowryGolf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270705989025742849,"id_str":"1270705989025742849","name":"ma''azumohd","screen_name":"MAzumohd","location":"","description":"because - I''m recluse in nature","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":429,"listed_count":0,"created_at":"Wed - Jun 10 13:15:36 +0000 2020","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Oct 29 14:59:26 +0000 2020","id":1321828998347956230,"id_str":"1321828998347956230","text":"how - can you know that https:\/\/t.co\/GitfNJDk9X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GitfNJDk9X","expanded_url":"https:\/\/twitter.com\/Gidi_Traffic\/status\/1321827264921784327","display_url":"twitter.com\/Gidi_Traffic\/s\u2026","indices":[22,45]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1321827264921784327,"quoted_status_id_str":"1321827264921784327","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270706457156169728\/2p7vGWb7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270706457156169728\/2p7vGWb7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26010436,"id_str":"26010436","name":"Sunshine","screen_name":"MissSunshine_64","location":"Virginia, - USA","description":"Traveler \/ Foodie \/ Music & Movies \/ Gamer \/ Enjoys - life to the fullest!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":1753,"listed_count":1,"created_at":"Mon - Mar 23 14:29:04 +0000 2009","favourites_count":5057,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":653,"lang":null,"status":{"created_at":"Fri - Dec 24 04:33:00 +0000 2021","id":1474236644924534794,"id_str":"1474236644924534794","text":"RT - @CallofDuty: We have an extra one of these care packages, and want to spread - some holiday cheer \ud83c\udf81 \n\nRT for a chance to win the ultimate\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CallofDuty","name":"Call - of Duty","id":290097288,"id_str":"290097288","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 18:02:33 +0000 2021","id":1474077986190241801,"id_str":"1474077986190241801","text":"We - have an extra one of these care packages, and want to spread some holiday - cheer \ud83c\udf81 \n\nRT for a chance to win the u\u2026 https:\/\/t.co\/UvOZVtX2ny","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UvOZVtX2ny","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474077986190241801","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8857,"favorite_count":5060,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":8857,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238531830502096896\/vge8BoAq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238531830502096896\/vge8BoAq_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":105609347,"id_str":"105609347","name":"abdelkrim - nemmaoui","screen_name":"anemmaoui","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":4489,"listed_count":4,"created_at":"Sat - Jan 16 22:26:30 +0000 2010","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62,"lang":null,"status":{"created_at":"Wed - Feb 16 20:54:11 +0000 2022","id":1494052511883403266,"id_str":"1494052511883403266","text":"RT - @BoznFarid: #\u0627\u062e\u0646\u0648\u0634 \u0627\u0631\u062d\u0644 https:\/\/t.co\/aw6Re5Dviz","truncated":false,"entities":{"hashtags":[{"text":"\u0627\u062e\u0646\u0648\u0634","indices":[15,21]}],"symbols":[],"user_mentions":[{"screen_name":"BoznFarid","name":"Farid - Bouzzan","id":1492272821199941633,"id_str":"1492272821199941633","indices":[3,13]}],"urls":[],"media":[{"id":1493604519116255233,"id_str":"1493604519116255233","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","url":"https:\/\/t.co\/aw6Re5Dviz","display_url":"pic.twitter.com\/aw6Re5Dviz","expanded_url":"https:\/\/twitter.com\/BoznFarid\/status\/1493604521876111373\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":479,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":479,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}},"source_status_id":1493604521876111373,"source_status_id_str":"1493604521876111373","source_user_id":1492272821199941633,"source_user_id_str":"1492272821199941633"}]},"extended_entities":{"media":[{"id":1493604519116255233,"id_str":"1493604519116255233","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","url":"https:\/\/t.co\/aw6Re5Dviz","display_url":"pic.twitter.com\/aw6Re5Dviz","expanded_url":"https:\/\/twitter.com\/BoznFarid\/status\/1493604521876111373\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":479,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":479,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}},"source_status_id":1493604521876111373,"source_status_id_str":"1493604521876111373","source_user_id":1492272821199941633,"source_user_id_str":"1492272821199941633"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 15 15:14:02 +0000 2022","id":1493604521876111373,"id_str":"1493604521876111373","text":"#\u0627\u062e\u0646\u0648\u0634 - \u0627\u0631\u062d\u0644 https:\/\/t.co\/aw6Re5Dviz","truncated":false,"entities":{"hashtags":[{"text":"\u0627\u062e\u0646\u0648\u0634","indices":[0,6]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1493604519116255233,"id_str":"1493604519116255233","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","url":"https:\/\/t.co\/aw6Re5Dviz","display_url":"pic.twitter.com\/aw6Re5Dviz","expanded_url":"https:\/\/twitter.com\/BoznFarid\/status\/1493604521876111373\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":479,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":479,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1493604519116255233,"id_str":"1493604519116255233","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLpZZYzXsAEG5dr.jpg","url":"https:\/\/t.co\/aw6Re5Dviz","display_url":"pic.twitter.com\/aw6Re5Dviz","expanded_url":"https:\/\/twitter.com\/BoznFarid\/status\/1493604521876111373\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":479,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":479,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":258114264,"id_str":"258114264","name":"Lzbphi","screen_name":"lzbphi","location":"Los - Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":619,"listed_count":0,"created_at":"Sun - Feb 27 00:34:48 +0000 2011","favourites_count":2706,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"status":{"created_at":"Sat - Mar 26 02:30:39 +0000 2022","id":1507545537788055558,"id_str":"1507545537788055558","text":"RT - @JNelsonLDF: Excellent statement from our colleagues at \u2066@NAACP.\n\n\u2069NAACP - Releases Statement on Treatment of Judge Ketanji Brown Jackson\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JNelsonLDF","name":"Janai - Nelson","id":193055295,"id_str":"193055295","indices":[3,14]},{"screen_name":"NAACP","name":"NAACP","id":44988185,"id_str":"44988185","indices":[60,66]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:33:27 +0000 2022","id":1507516041949184005,"id_str":"1507516041949184005","text":"Excellent - statement from our colleagues at \u2066@NAACP.\n\n\u2069NAACP Releases Statement - on Treatment of Judge Ketanji Brown\u2026 https:\/\/t.co\/D46ElC6Uyl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NAACP","name":"NAACP","id":44988185,"id_str":"44988185","indices":[44,50]}],"urls":[{"url":"https:\/\/t.co\/D46ElC6Uyl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507516041949184005","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":431,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":143,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488206450849574914\/JBjK6Bn0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488206450849574914\/JBjK6Bn0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947834036919132160,"id_str":"947834036919132160","name":"John - C \ud83c\uddec\ud83c\udde7 \ud83c\uddfa\ud83c\uddf8","screen_name":"JohnAC56","location":"England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":693,"listed_count":1,"created_at":"Mon - Jan 01 14:16:59 +0000 2018","favourites_count":9278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6020,"lang":null,"status":{"created_at":"Thu - Mar 24 20:54:13 +0000 2022","id":1507098481965641732,"id_str":"1507098481965641732","text":"@MichaelBerrySho - The Way We Were \ud83e\udd14 https:\/\/t.co\/hhBXlaU2lS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelBerrySho","name":"Michael - Berry","id":35818542,"id_str":"35818542","indices":[0,16]}],"urls":[],"media":[{"id":1507098480078200839,"id_str":"1507098480078200839","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpKFSqXoAcjJ2s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpKFSqXoAcjJ2s.jpg","url":"https:\/\/t.co\/hhBXlaU2lS","display_url":"pic.twitter.com\/hhBXlaU2lS","expanded_url":"https:\/\/twitter.com\/JohnAC56\/status\/1507098481965641732\/photo\/1","type":"photo","sizes":{"medium":{"w":644,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":644,"h":462,"resize":"fit"},"large":{"w":644,"h":462,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507098480078200839,"id_str":"1507098480078200839","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpKFSqXoAcjJ2s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpKFSqXoAcjJ2s.jpg","url":"https:\/\/t.co\/hhBXlaU2lS","display_url":"pic.twitter.com\/hhBXlaU2lS","expanded_url":"https:\/\/twitter.com\/JohnAC56\/status\/1507098481965641732\/photo\/1","type":"photo","sizes":{"medium":{"w":644,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":644,"h":462,"resize":"fit"},"large":{"w":644,"h":462,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506695111010361351,"in_reply_to_status_id_str":"1506695111010361351","in_reply_to_user_id":35818542,"in_reply_to_user_id_str":"35818542","in_reply_to_screen_name":"MichaelBerrySho","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349706958593536001\/00Yft1PD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349706958593536001\/00Yft1PD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947834036919132160\/1637269386","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":38165276,"id_str":"38165276","name":"Pamela - McArdle","screen_name":"pamswishlist","location":"New York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":350,"listed_count":0,"created_at":"Wed - May 06 12:17:35 +0000 2009","favourites_count":1267,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264022160600977408\/fuEbA6Lx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264022160600977408\/fuEbA6Lx_normal.jpg","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":237782766,"id_str":"237782766","name":"Isvett","screen_name":"isvettverde","location":"Brooklyn, - NY via Miami, FL","description":"Editor @nytopinion + Adjunct Professor of - Latinx Media studies at City College | Hecha en \ud83c\udde8\ud83c\uddfa | \ud83d\udce7 - isvett.verde@nytimes.com for tips\/pitches\/submissions","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1255,"friends_count":1577,"listed_count":0,"created_at":"Thu - Jan 13 16:32:18 +0000 2011","favourites_count":2001,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":412,"lang":null,"status":{"created_at":"Fri - Mar 25 18:42:17 +0000 2022","id":1507427669851389970,"id_str":"1507427669851389970","text":"RT - @anjanettedelgad: Please don\u2019t miss our #AWP22 \nvirtual event tomorrow: - Home in Florida: A Home Tour & Discussion by Latinx Writers with\u2026","truncated":false,"entities":{"hashtags":[{"text":"AWP22","indices":[43,49]}],"symbols":[],"user_mentions":[{"screen_name":"anjanettedelgad","name":"Anjanette - Delgado","id":45272779,"id_str":"45272779","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:10:20 +0000 2022","id":1507162935151497224,"id_str":"1507162935151497224","text":"Please - don\u2019t miss our #AWP22 \nvirtual event tomorrow: Home in Florida: A Home - Tour & Discussion by Latinx Writers w\u2026 https:\/\/t.co\/aWDUsGaV4N","truncated":true,"entities":{"hashtags":[{"text":"AWP22","indices":[22,28]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aWDUsGaV4N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507162935151497224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":31,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"939A9E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/892456152423911425\/MVvdYE2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/892456152423911425\/MVvdYE2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237782766\/1501613104","profile_link_color":"7377D1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F5E2","profile_text_color":"BAB6BA","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24603935,"id_str":"24603935","name":"JNS","screen_name":"StavridesJ","location":"Athens, - GR","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":900,"listed_count":6,"created_at":"Sun - Mar 15 23:02:24 +0000 2009","favourites_count":2700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":566,"lang":null,"status":{"created_at":"Thu - Mar 17 13:14:04 +0000 2022","id":1504445967617204228,"id_str":"1504445967617204228","text":"RT - @klarinodoctor: \u0398\u03ad\u03bb\u03c9 \u03bd\u03b1 \u03c3\u03c5\u03b3\u03c7\u03b1\u03c1\u03ce \u03c4\u03bf\u03bd - \u03c0\u03c1\u03cc\u03b5\u03b4\u03c1\u03bf \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c1\u03b9\u03b6\u03b1 \u03c0\u03bf\u03c5 - \u03b4\u03b5\u03bd \u03ba\u03c1\u03ac\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b1 - \u03c7\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03c4\u03bf\u03c5 - \u03ad\u03b2\u03b1\u03bb\u03b1\u03bd \u03c3\u03c4\u03bf\u03bd \u03c7\u03ad\u03c1\u03b9 - \u03b3\u03b9\u03b1 \u03c0\u03ac\u03c1\u03c4\u03b7 \u03c4\u03bf\u03c5,\u03b1\u03bb\u03bb\u03ac - \u03b1\u03bd\u03c4\u03af\u03b8\u03b5\u03c4\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"klarinodoctor","name":"\u039a\u039b\u0391\u03a1\u0399\u039d\ud83d\ude37\u0393\u0399\u0391\u03a4\u03a1\ud83d\ude37\u03a3","id":1298248224,"id_str":"1298248224","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 13:02:01 +0000 2022","id":1504442932983701510,"id_str":"1504442932983701510","text":"\u0398\u03ad\u03bb\u03c9 - \u03bd\u03b1 \u03c3\u03c5\u03b3\u03c7\u03b1\u03c1\u03ce \u03c4\u03bf\u03bd - \u03c0\u03c1\u03cc\u03b5\u03b4\u03c1\u03bf \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c1\u03b9\u03b6\u03b1 \u03c0\u03bf\u03c5 - \u03b4\u03b5\u03bd \u03ba\u03c1\u03ac\u03c4\u03b7\u03c3\u03b5 \u03c4\u03b1 - \u03c7\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03c4\u03bf\u03c5 - \u03ad\u03b2\u03b1\u03bb\u03b1\u03bd \u03c3\u03c4\u03bf\u03bd \u03c7\u03ad\u03c1\u03b9 - \u03b3\u03b9\u03b1 \u03c0\u03ac\u03c1\u03c4\u03b7 \u03c4\u03bf\u03c5,\u03b1\u03bb\u03bb\u03ac - \u03b1\u03bd\u2026 https:\/\/t.co\/ZlbA6a9Ja5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZlbA6a9Ja5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504442932983701510","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":154,"favorite_count":706,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"el"},"is_quote_status":false,"retweet_count":154,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116843604419469313\/6SzUGJB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116843604419469313\/6SzUGJB3_normal.jpg","profile_link_color":"333333","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2646112663,"id_str":"2646112663","name":"Steve","screen_name":"steve_nyumu","location":"Everywhere","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":481,"listed_count":0,"created_at":"Mon - Jul 14 17:56:23 +0000 2014","favourites_count":793,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":454,"lang":null,"status":{"created_at":"Thu - Mar 24 18:49:35 +0000 2022","id":1507067117484584966,"id_str":"1507067117484584966","text":"@niilexis - Or both fans are not that confident in their teams and want to avoid being - served \"receipts\" for any proc\u2026 https:\/\/t.co\/mcBSfgrgmF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"niilexis","name":"Lexis","id":67075959,"id_str":"67075959","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/mcBSfgrgmF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507067117484584966","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507064418659672072,"in_reply_to_status_id_str":"1507064418659672072","in_reply_to_user_id":67075959,"in_reply_to_user_id_str":"67075959","in_reply_to_screen_name":"niilexis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332752625197076488\/DIql5-wC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332752625197076488\/DIql5-wC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2646112663\/1642241153","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":267886742,"id_str":"267886742","name":"Jahanzeb - Akbar Ahmadzai","screen_name":"ahmadzai2011","location":"Kabul ","description":"Alum - South Asian Studies. Interested in South Asian Security , Borders and Regional - Connectivity. RTs\u2260Endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":1924,"listed_count":0,"created_at":"Thu - Mar 17 18:50:24 +0000 2011","favourites_count":1727,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1449,"lang":null,"status":{"created_at":"Sat - Mar 26 08:25:04 +0000 2022","id":1507634729163632645,"id_str":"1507634729163632645","text":"RT - @MindHaste: Prove yourself to yourself, not others.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MindHaste","name":"Mind - Haste \u26a1\ufe0f","id":1339603410056724481,"id_str":"1339603410056724481","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:21:31 +0000 2022","id":1507633834740830215,"id_str":"1507633834740830215","text":"Prove - yourself to yourself, not others.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":165,"favorite_count":682,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":165,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331164395276292106\/DtpaD423_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331164395276292106\/DtpaD423_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267886742\/1567191314","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265986687278161920,"id_str":"1265986687278161920","name":"meer - murtaza","screen_name":"meermur72778391","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":121,"listed_count":0,"created_at":"Thu - May 28 12:42:12 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sun - Jun 06 14:18:39 +0000 2021","id":1401544066454765572,"id_str":"1401544066454765572","text":"malik - riaz is grabbing sindh`s properties illegally \nsindh#rejects#behria town","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1702842799,"id_str":"1702842799","name":"hisham - samhat","screen_name":"HishamSamhat","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":391,"listed_count":0,"created_at":"Mon - Aug 26 20:04:17 +0000 2013","favourites_count":3000,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":689,"lang":null,"status":{"created_at":"Sat - Feb 12 18:14:15 +0000 2022","id":1492562710374010885,"id_str":"1492562710374010885","text":"RT - @jamalfayad: \u0628\u062d\u0633\u0628 \u0625\u062d\u0635\u0627\u0621 \u0645\u0646 - \u0645\u0633\u0624\u0648\u0644 \u0639\u0627\u0631\u0641 \u0648\u0645\u0648\u062b\u0648\u0642\u060c - \u0623\u0646 \u0623\u0631\u0628\u0627\u062d \u0634\u0631\u0643\u0627\u062a - \u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0623\u062f\u0648\u064a\u0629 - \u0641\u064a \u0644\u0628\u0646\u0627\u0646 \u0648\u0635\u0644\u062a \u0627\u0644\u0649 - \u0645\u0644\u064a\u0627\u0631 \u062f\u0648\u0644\u0627\u0631 !!\n\u0623\u0631\u0628\u0627\u062d\u060c - \u0648\u0644\u064a\u0633 \u0645\u0628\u064a\u0639\u0627\u062a !!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jamalfayad","name":"jamal - fayad\u062c\u0645\u0627\u0644 \u0641\u064a\u0627\u0636","id":153442746,"id_str":"153442746","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 09 15:46:15 +0000 2022","id":1491438302251339780,"id_str":"1491438302251339780","text":"\u0628\u062d\u0633\u0628 - \u0625\u062d\u0635\u0627\u0621 \u0645\u0646 \u0645\u0633\u0624\u0648\u0644 - \u0639\u0627\u0631\u0641 \u0648\u0645\u0648\u062b\u0648\u0642\u060c \u0623\u0646 - \u0623\u0631\u0628\u0627\u062d \u0634\u0631\u0643\u0627\u062a \u062a\u062c\u0627\u0631\u0629 - \u0627\u0644\u0623\u062f\u0648\u064a\u0629 \u0641\u064a \u0644\u0628\u0646\u0627\u0646 - \u0648\u0635\u0644\u062a \u0627\u0644\u0649 \u0645\u0644\u064a\u0627\u0631 - \u062f\u0648\u0644\u0627\u0631 !!\n\u0623\u0631\u0628\u0627\u062d\u060c \u0648\u0644\u064a\u0633 - \u0645\u0628\u064a\u0639\u0627\u062a !!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":542,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":799330018795065344,"id_str":"799330018795065344","name":"Cowboy","screen_name":"tumainiarobo","location":"unkown","description":"mutu - muwazi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":800,"friends_count":2222,"listed_count":0,"created_at":"Thu - Nov 17 19:15:02 +0000 2016","favourites_count":558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":727,"lang":null,"status":{"created_at":"Thu - Mar 24 17:38:00 +0000 2022","id":1507049104077111297,"id_str":"1507049104077111297","text":"@bbcswahili - Propagana ya BBC ni ya hali ya chini sana\n\nSasa, niwakumbushe wa Rusi wana - wajibu wa pamoja kulinda nch\u2026 https:\/\/t.co\/1JzJ2CEX2P","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bbcswahili","name":"BBC - News Swahili","id":18186609,"id_str":"18186609","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/1JzJ2CEX2P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507049104077111297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507039641572188164,"in_reply_to_status_id_str":"1507039641572188164","in_reply_to_user_id":18186609,"in_reply_to_user_id_str":"18186609","in_reply_to_screen_name":"bbcswahili","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506958385572421632\/yRHhO2hb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506958385572421632\/yRHhO2hb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/799330018795065344\/1558938706","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":193955428,"id_str":"193955428","name":"Nanner","screen_name":"nan5678","location":"California - ","description":"I miss my dog.\nI wish it would rain.\nAll we are saying - is give peace a chance\u2026.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2079,"friends_count":2794,"listed_count":1,"created_at":"Thu - Sep 23 02:12:14 +0000 2010","favourites_count":12875,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14985,"lang":null,"status":{"created_at":"Fri - Mar 25 19:25:52 +0000 2022","id":1507438636735762432,"id_str":"1507438636735762432","text":"@krystaunclear - Taco\u2019s are my friend.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"krystaunclear","name":"Krysta","id":1407348558718717954,"id_str":"1407348558718717954","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507363299934932995,"in_reply_to_status_id_str":"1507363299934932995","in_reply_to_user_id":1407348558718717954,"in_reply_to_user_id_str":"1407348558718717954","in_reply_to_screen_name":"krystaunclear","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447684481955995655\/mQ8oDvmL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447684481955995655\/mQ8oDvmL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193955428\/1636961906","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301988448736366595,"id_str":"1301988448736366595","name":"Buick - Macbel","screen_name":"BMacbel","location":"Pretoria North ","description":"I - am an African woman, a Mom!! My RT''s are not my endorsements. My tweets are - my own views. No traders, Bitcoins and fake Dr''s on my DM please..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2526,"friends_count":2613,"listed_count":0,"created_at":"Fri - Sep 04 21:00:52 +0000 2020","favourites_count":31017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15956,"lang":null,"status":{"created_at":"Sat - Mar 26 05:05:36 +0000 2022","id":1507584530361823234,"id_str":"1507584530361823234","text":"25 - people followed me and 13 people unfollowed me \/\/ automatically checked - by https:\/\/t.co\/XscnK5F7M6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XscnK5F7M6","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[78,101]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476338500656107530\/xYxS_QVA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476338500656107530\/xYxS_QVA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301988448736366595\/1632661969","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28874089,"id_str":"28874089","name":"Stephen - Giles","screen_name":"gilesie","location":"London","description":"''Everything - in moderation, including moderation'' .... \ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":118,"friends_count":1678,"listed_count":3,"created_at":"Sat - Apr 04 21:26:28 +0000 2009","favourites_count":1729,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1081,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455925305651208196\/Eu74sHcu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455925305651208196\/Eu74sHcu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28874089\/1431055526","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1028227810983260161,"id_str":"1028227810983260161","name":"Gracemarie - Romano","screen_name":"GracemarieRoma2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":443,"friends_count":4992,"listed_count":0,"created_at":"Sat - Aug 11 10:33:08 +0000 2018","favourites_count":14752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137,"lang":null,"status":{"created_at":"Sat - Oct 02 04:30:16 +0000 2021","id":1444157762070462465,"id_str":"1444157762070462465","text":"@JBCrewdotcom - I Would Really like a Watch Party for Tacoma Washington and Can you Please - Put On YouTube also","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JBCrewdotcom","name":"Justin - Bieber Crew","id":1439055242,"id_str":"1439055242","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1444029005418610700,"in_reply_to_status_id_str":"1444029005418610700","in_reply_to_user_id":1439055242,"in_reply_to_user_id_str":"1439055242","in_reply_to_screen_name":"JBCrewdotcom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177388497889456128\/56-wgPXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177388497889456128\/56-wgPXt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":81953452,"id_str":"81953452","name":"Four - Vectors ***is wearing a mask***","screen_name":"4Vectors","location":"Charlotte, - NC","description":"I am superior to nobody. I am inferior to nobody.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1926,"friends_count":4998,"listed_count":7,"created_at":"Mon - Oct 12 23:11:26 +0000 2009","favourites_count":4076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3276,"lang":null,"status":{"created_at":"Sat - Mar 26 00:38:01 +0000 2022","id":1507517191951990789,"id_str":"1507517191951990789","text":"RT - @a_longhurst: How on earth did wearing masks that prevent infection and transmission - of multisystem disease suddenly become about \u201ccomfo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"a_longhurst","name":"Andrew - Longhurst #COVIDisAirborne","id":2569219368,"id_str":"2569219368","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:14:08 +0000 2022","id":1507375284445941762,"id_str":"1507375284445941762","text":"How - on earth did wearing masks that prevent infection and transmission of multisystem - disease suddenly become about\u2026 https:\/\/t.co\/km4vD9HcOp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/km4vD9HcOp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507375284445941762","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1321,"favorite_count":6865,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1321,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261311326527209475\/NFON3sXG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261311326527209475\/NFON3sXG_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":294737915,"id_str":"294737915","name":"Henk - Shimane Mokitle","screen_name":"HenkMok","location":"Johannesburg South Africa","description":"Believer - in GOD. Use the gifts and talents everyday and they mysteriously turn into - unique skills!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2669,"friends_count":2655,"listed_count":19,"created_at":"Sat - May 07 17:37:08 +0000 2011","favourites_count":1661,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4375,"lang":null,"status":{"created_at":"Wed - Mar 23 09:11:29 +0000 2022","id":1506559247068323841,"id_str":"1506559247068323841","text":"There - are people God has reserved to help you get to the top: always hoist them - up to the top with you!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246345187607093251\/gJ_x0q-p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246345187607093251\/gJ_x0q-p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294737915\/1508298634","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":237269704,"id_str":"237269704","name":"Kamah","screen_name":"delaquisahKE","location":"Nairobi - KE","description":"Im a simple guy who believes in simplicity.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":87,"friends_count":2650,"listed_count":1,"created_at":"Wed - Jan 12 13:25:06 +0000 2011","favourites_count":4968,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":119,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227648746747518977\/u2V8VhrF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227648746747518977\/u2V8VhrF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237269704\/1597807794","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858344169206554625,"id_str":"858344169206554625","name":"Rudy - Hutagalung","screen_name":"rbmhutagalung","location":"","description":"\ud83c\uddee\ud83c\udde9KADIN, - APINDO, AEI, Kickboxing Indonesia, CIMB Niaga","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":3453,"listed_count":0,"created_at":"Sat - Apr 29 15:36:12 +0000 2017","favourites_count":30762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2559,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474074620265320455\/XjZoIah6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474074620265320455\/XjZoIah6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858344169206554625\/1640281752","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35304536,"id_str":"35304536","name":"brent - lewis","screen_name":"brentplewis","location":"cleveland ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":732,"listed_count":0,"created_at":"Sat - Apr 25 20:39:11 +0000 2009","favourites_count":248,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":450,"lang":null,"status":{"created_at":"Thu - Jan 27 19:29:14 +0000 2022","id":1486783375889383424,"id_str":"1486783375889383424","text":"@KateQFunny - Thanx for this ... needed the smile","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KateQFunny","name":"K\u15e9TE - \u146b\u144cIG\u14aaEY","id":283783863,"id_str":"283783863","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486496781563150337,"in_reply_to_status_id_str":"1486496781563150337","in_reply_to_user_id":283783863,"in_reply_to_user_id_str":"283783863","in_reply_to_screen_name":"KateQFunny","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3384165574\/240ef7f7f813838bb3f0b1d49fbbf35e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3384165574\/240ef7f7f813838bb3f0b1d49fbbf35e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35304536\/1359177499","profile_link_color":"212527","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4821600755,"id_str":"4821600755","name":"D - Schmidt","screen_name":"davidwschmidt15","location":"Chapel Hill, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":2069,"listed_count":3,"created_at":"Sun - Jan 17 17:25:21 +0000 2016","favourites_count":48041,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2822,"lang":null,"status":{"created_at":"Fri - Mar 25 00:07:06 +0000 2022","id":1507147023908327428,"id_str":"1507147023908327428","text":"RT - @snoopy6702: @DWUhlfelderLaw https:\/\/t.co\/asHgiHzAGx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"snoopy6702","name":"KarmaIsABitch","id":732226535432826880,"id_str":"732226535432826880","indices":[3,14]},{"screen_name":"DWUhlfelderLaw","name":"Daniel - Uhlfelder","id":1011970623470489601,"id_str":"1011970623470489601","indices":[16,31]}],"urls":[],"media":[{"id":1507136012413243393,"id_str":"1507136012413243393","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","url":"https:\/\/t.co\/asHgiHzAGx","display_url":"pic.twitter.com\/asHgiHzAGx","expanded_url":"https:\/\/twitter.com\/snoopy6702\/status\/1507136014942412804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":1377,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"source_status_id":1507136014942412804,"source_status_id_str":"1507136014942412804","source_user_id":732226535432826880,"source_user_id_str":"732226535432826880"}]},"extended_entities":{"media":[{"id":1507136012413243393,"id_str":"1507136012413243393","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","url":"https:\/\/t.co\/asHgiHzAGx","display_url":"pic.twitter.com\/asHgiHzAGx","expanded_url":"https:\/\/twitter.com\/snoopy6702\/status\/1507136014942412804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":1377,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"source_status_id":1507136014942412804,"source_status_id_str":"1507136014942412804","source_user_id":732226535432826880,"source_user_id_str":"732226535432826880"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:23:21 +0000 2022","id":1507136014942412804,"id_str":"1507136014942412804","text":"@DWUhlfelderLaw - https:\/\/t.co\/asHgiHzAGx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DWUhlfelderLaw","name":"Daniel - Uhlfelder","id":1011970623470489601,"id_str":"1011970623470489601","indices":[0,15]}],"urls":[],"media":[{"id":1507136012413243393,"id_str":"1507136012413243393","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","url":"https:\/\/t.co\/asHgiHzAGx","display_url":"pic.twitter.com\/asHgiHzAGx","expanded_url":"https:\/\/twitter.com\/snoopy6702\/status\/1507136014942412804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":1377,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507136012413243393,"id_str":"1507136012413243393","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpsN9gXEAEhKWI.jpg","url":"https:\/\/t.co\/asHgiHzAGx","display_url":"pic.twitter.com\/asHgiHzAGx","expanded_url":"https:\/\/twitter.com\/snoopy6702\/status\/1507136014942412804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":636,"h":1377,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507121227856556037,"in_reply_to_status_id_str":"1507121227856556037","in_reply_to_user_id":1011970623470489601,"in_reply_to_user_id_str":"1011970623470489601","in_reply_to_screen_name":"DWUhlfelderLaw","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130,"favorite_count":1308,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":130,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907059116778119170\/_EPn5d-8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907059116778119170\/_EPn5d-8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4821600755\/1510887565","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1259080830124789762,"id_str":"1259080830124789762","name":"RwothomioMikejabila","screen_name":"RwothomioMike2","location":"K.city","description":"Quite - out going and easy going","url":"https:\/\/t.co\/XVVB3awpJh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XVVB3awpJh","expanded_url":"http:\/\/Citinews.us","display_url":"Citinews.us","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":1692,"listed_count":0,"created_at":"Sat - May 09 11:22:21 +0000 2020","favourites_count":136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Mon - Dec 14 09:59:43 +0000 2020","id":1338423415406006272,"id_str":"1338423415406006272","text":"It - exposed their covert book cooking acts straight up..what an expose ! https:\/\/t.co\/745PXU4EHj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/745PXU4EHj","expanded_url":"https:\/\/twitter.com\/qataharraymond\/status\/1338211531364962306","display_url":"twitter.com\/qataharraymond\u2026","indices":[72,95]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1338211531364962306,"quoted_status_id_str":"1338211531364962306","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259081794021994497\/OOWmDqKV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259081794021994497\/OOWmDqKV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":188237009,"id_str":"188237009","name":"Madeline - Sciammarella","screen_name":"madelineperezm","location":"Lindenhurst, NY ","description":"Certified - Paralegal from SCCC. Notary Public. Lawyer in the Dominican Republic. Mother - of 2.","url":"https:\/\/t.co\/UETRBItWhm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UETRBItWhm","expanded_url":"https:\/\/m.facebook.com\/madeline.sciammarella?__user=691537727","display_url":"m.facebook.com\/madeline.sciam\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":2917,"listed_count":1,"created_at":"Wed - Sep 08 07:11:31 +0000 2010","favourites_count":13968,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1713,"lang":null,"status":{"created_at":"Sat - Feb 26 19:09:53 +0000 2022","id":1497650143440560141,"id_str":"1497650143440560141","text":"RT - @Liz_Cheney: As Rep Marjorie Taylor Greene and Rep Paul Gosar speak at this - white supremacist, anti-Semitic, pro-Putin event, silence by\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Liz_Cheney","name":"Liz - Cheney","id":98471035,"id_str":"98471035","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 16:42:42 +0000 2022","id":1497613102765907968,"id_str":"1497613102765907968","text":"As - Rep Marjorie Taylor Greene and Rep Paul Gosar speak at this white supremacist, - anti-Semitic, pro-Putin event, si\u2026 https:\/\/t.co\/oxkST42f4K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oxkST42f4K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497613102765907968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21479,"favorite_count":67468,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21479,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480585828850098177\/7PXv8SP5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480585828850098177\/7PXv8SP5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188237009\/1579402415","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1365269053,"id_str":"1365269053","name":"Elizabeth - Cone","screen_name":"elizabethacone","location":"","description":"I am not - that girl; this is not my narrative.","url":"https:\/\/t.co\/wyecWaduMN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wyecWaduMN","expanded_url":"http:\/\/www.thisisnotmynarrative.com","display_url":"thisisnotmynarrative.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":434,"listed_count":0,"created_at":"Fri - Apr 19 19:49:53 +0000 2013","favourites_count":522,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":354,"lang":null,"status":{"created_at":"Thu - Aug 05 22:59:58 +0000 2021","id":1423418530331041793,"id_str":"1423418530331041793","text":"@mrjumd - @carolmcgorry","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrjumd","name":"Matt - Johnson","id":38205547,"id_str":"38205547","indices":[0,7]},{"screen_name":"carolmcgorry","name":"Carol - McGorry","id":325014166,"id_str":"325014166","indices":[8,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1420101068256600067,"in_reply_to_status_id_str":"1420101068256600067","in_reply_to_user_id":38205547,"in_reply_to_user_id_str":"38205547","in_reply_to_screen_name":"mrjumd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1165633725335592961\/0wx4uO2y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1165633725335592961\/0wx4uO2y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":696699410340802560,"id_str":"696699410340802560","name":"Derrick - \ud83c\uddf0\ud83c\uddea\ud83c\uddf0\ud83c\uddea\ud83c\uddf0\ud83c\uddea","screen_name":"MbuviDerrick","location":"Kenya","description":"a - chemist , an engineer, Manchester United diehard fan","url":"https:\/\/t.co\/6giRgkEv0e","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6giRgkEv0e","expanded_url":"https:\/\/mbuviderricknzau.wixsite.com\/blogging","display_url":"mbuviderricknzau.wixsite.com\/blogging","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2092,"friends_count":3445,"listed_count":0,"created_at":"Mon - Feb 08 14:17:38 +0000 2016","favourites_count":14395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4089,"lang":null,"status":{"created_at":"Fri - Dec 03 19:29:25 +0000 2021","id":1466852089028567056,"id_str":"1466852089028567056","text":"@EasyGentle - @crazykenyan47 @MbuviDerrick","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EasyGentle","name":"Bello_Isiaka - \u2122\ufe0f\u265a","id":376817951,"id_str":"376817951","indices":[0,11]},{"screen_name":"MbuviDerrick","name":"Derrick - \ud83c\uddf0\ud83c\uddea\ud83c\uddf0\ud83c\uddea\ud83c\uddf0\ud83c\uddea","id":696699410340802560,"id_str":"696699410340802560","indices":[27,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1465727749742469125,"in_reply_to_status_id_str":"1465727749742469125","in_reply_to_user_id":376817951,"in_reply_to_user_id_str":"376817951","in_reply_to_screen_name":"EasyGentle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389564024732405767\/xcA3c0Ck_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389564024732405767\/xcA3c0Ck_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/696699410340802560\/1604428535","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835132758,"id_str":"835132758","name":"Mohamed - Zaid","screen_name":"MohamedZaid_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":2749,"listed_count":0,"created_at":"Thu - Sep 20 09:02:04 +0000 2012","favourites_count":187909,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Jan 22 11:12:26 +0000 2022","id":1484846412794068998,"id_str":"1484846412794068998","text":"@xGPhilosophy - Chelsea (1.7)- Spurs (0.8)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xGPhilosophy","name":"The - xG Philosophy","id":834201112806903809,"id_str":"834201112806903809","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1484845492123185152,"in_reply_to_status_id_str":"1484845492123185152","in_reply_to_user_id":834201112806903809,"in_reply_to_user_id_str":"834201112806903809","in_reply_to_screen_name":"xGPhilosophy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184384337606627328\/HsqfUZea_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184384337606627328\/HsqfUZea_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2349025873,"id_str":"2349025873","name":"Charlie - P","screen_name":"charlie02004","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":44,"listed_count":0,"created_at":"Mon - Feb 17 20:18:13 +0000 2014","favourites_count":120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Sun - Jun 27 02:54:06 +0000 2021","id":1408981940192043010,"id_str":"1408981940192043010","text":"@raleighjs - @MattScalici @jdawsey1 Sadly, sounds true.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"raleighjs","name":"JS","id":489958854,"id_str":"489958854","indices":[0,10]},{"screen_name":"MattScalici","name":"Matt - Scalici","id":26597673,"id_str":"26597673","indices":[11,23]},{"screen_name":"jdawsey1","name":"Josh - Dawsey","id":38936142,"id_str":"38936142","indices":[24,33]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1408955923616391175,"in_reply_to_status_id_str":"1408955923616391175","in_reply_to_user_id":489958854,"in_reply_to_user_id_str":"489958854","in_reply_to_screen_name":"raleighjs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219745297733169152,"id_str":"1219745297733169152","name":"Jhoneyc","screen_name":"Jhoneyc1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":19,"listed_count":0,"created_at":"Tue - Jan 21 22:15:58 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719862393,"id_str":"719862393","name":"DoveliCreations - \ud83c\udf0a","screen_name":"dovethick","location":"Paradise Love","description":"Help - Us Heal America, We The People are the antidote to that fatal infection in - the White House And Senate Called NoBackboneitis! Ya hear me, yes you do!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":510,"friends_count":1372,"listed_count":0,"created_at":"Thu - Oct 17 23:31:57 +0000 2013","favourites_count":26752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8728,"lang":null,"status":{"created_at":"Wed - Jun 16 01:01:46 +0000 2021","id":1404967402639663105,"id_str":"1404967402639663105","text":"#NewProfilePic - https:\/\/t.co\/i3SEFBFrvh","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1404967400378974212,"id_str":"1404967400378974212","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E39yaCSXwAQOZJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E39yaCSXwAQOZJM.jpg","url":"https:\/\/t.co\/i3SEFBFrvh","display_url":"pic.twitter.com\/i3SEFBFrvh","expanded_url":"https:\/\/twitter.com\/dovethick\/status\/1404967402639663105\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1404967400378974212,"id_str":"1404967400378974212","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/E39yaCSXwAQOZJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E39yaCSXwAQOZJM.jpg","url":"https:\/\/t.co\/i3SEFBFrvh","display_url":"pic.twitter.com\/i3SEFBFrvh","expanded_url":"https:\/\/twitter.com\/dovethick\/status\/1404967402639663105\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1404967362475003906\/unJWbs3T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1404967362475003906\/unJWbs3T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719862393\/1623805297","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":370254538,"id_str":"370254538","name":"DD","screen_name":"ddhrlj","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":335,"listed_count":0,"created_at":"Thu - Sep 08 18:22:55 +0000 2011","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Fri - Oct 13 11:48:49 +0000 2017","id":918805723458482176,"id_str":"918805723458482176","text":"@DavidPriess - @mitchellreports #notyourmascot #ChangeTheName","truncated":false,"entities":{"hashtags":[{"text":"notyourmascot","indices":[30,44]},{"text":"ChangeTheName","indices":[45,59]}],"symbols":[],"user_mentions":[{"screen_name":"DavidPriess","name":"David - Priess","id":2521546890,"id_str":"2521546890","indices":[0,12]},{"screen_name":"mitchellreports","name":"Andrea - Mitchell","id":89820928,"id_str":"89820928","indices":[13,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":918699793207107585,"in_reply_to_status_id_str":"918699793207107585","in_reply_to_user_id":2521546890,"in_reply_to_user_id_str":"2521546890","in_reply_to_screen_name":"DavidPriess","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1212188390034042880,"id_str":"1212188390034042880","name":"@reuben_amobi","screen_name":"AmobiReuben","location":"","description":"Live - and let live","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":169,"listed_count":0,"created_at":"Wed - Jan 01 01:47:08 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Sun - Jan 10 18:45:52 +0000 2021","id":1348340298204794886,"id_str":"1348340298204794886","text":"@Reuters - Waste of time","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1348313721932816386,"in_reply_to_status_id_str":"1348313721932816386","in_reply_to_user_id":1652541,"in_reply_to_user_id_str":"1652541","in_reply_to_screen_name":"Reuters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212188704867008513\/lKFPbolH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212188704867008513\/lKFPbolH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267543209992830976,"id_str":"1267543209992830976","name":"Frank - Maxwell Sr","screen_name":"FrankMaxwellSr1","location":"","description":"Just - turned 73; and now retired. Married for 42 years ;2 grown children; 3 granddaughters; - 2 cats; love Golf","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":315,"listed_count":0,"created_at":"Mon - Jun 01 19:47:45 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267543867613536256\/mjPCab0A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267543867613536256\/mjPCab0A_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2483937026,"id_str":"2483937026","name":"Deirdre - Paone Cohen","screen_name":"deird9217","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":295,"listed_count":0,"created_at":"Thu - May 08 15:38:31 +0000 2014","favourites_count":6023,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":280,"lang":null,"status":{"created_at":"Sun - Jan 23 18:27:24 +0000 2022","id":1485318264989585408,"id_str":"1485318264989585408","text":"@FallonTonight - @dopequeenpheebs no street clothes in or on the bed! That''s what say.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FallonTonight","name":"The - Tonight Show","id":19777398,"id_str":"19777398","indices":[0,14]},{"screen_name":"dopequeenpheebs","name":"Phoebe - Robinson","id":24312293,"id_str":"24312293","indices":[15,31]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1448864458638516254,"in_reply_to_status_id_str":"1448864458638516254","in_reply_to_user_id":19777398,"in_reply_to_user_id_str":"19777398","in_reply_to_screen_name":"FallonTonight","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":304581929,"id_str":"304581929","name":"Kenny","screen_name":"ctown402","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":379,"friends_count":685,"listed_count":1,"created_at":"Tue - May 24 19:16:42 +0000 2011","favourites_count":5743,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3558,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357790401793523720\/8_PmlwAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357790401793523720\/8_PmlwAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304581929\/1612557563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1087127948963000322,"id_str":"1087127948963000322","name":"Enagu","screen_name":"Enagu8","location":"","description":"#Physiologist, - Business Tycoon, Calculated risk taker.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":195,"listed_count":0,"created_at":"Sun - Jan 20 23:21:15 +0000 2019","favourites_count":178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Mon - Mar 15 18:55:20 +0000 2021","id":1371535501153472519,"id_str":"1371535501153472519","text":"@EstherA45714663 - How are you doing?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EstherA45714663","name":"Esther - Asuquo","id":1341024661124071425,"id_str":"1341024661124071425","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1341024661124071425,"in_reply_to_user_id_str":"1341024661124071425","in_reply_to_screen_name":"EstherA45714663","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252519026527555584\/L7SdESdv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252519026527555584\/L7SdESdv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":991943158786211840,"id_str":"991943158786211840","name":"Manoj - Timalsina","screen_name":"ManojTimalsin16","location":"Nepal","description":"Student - of Agriculture Science. Learning to live.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":263,"listed_count":0,"created_at":"Thu - May 03 07:30:53 +0000 2018","favourites_count":365,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Fri - Oct 30 12:20:08 +0000 2020","id":1322151296938303489,"id_str":"1322151296938303489","text":"raati - nai uthiyo jasto xani daju\ud83d\ude02 https:\/\/t.co\/pNeLORuw06","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pNeLORuw06","expanded_url":"https:\/\/twitter.com\/Himdalbasnet\/status\/1321961082336944128","display_url":"twitter.com\/Himdalbasnet\/s\u2026","indices":[34,57]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1321961082336944128,"quoted_status_id_str":"1321961082336944128","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1038379135112863744\/qvnF4tNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1038379135112863744\/qvnF4tNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991943158786211840\/1557577352","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957695862225952773,"id_str":"957695862225952773","name":"Gill - Nolan \ud83d\udd77","screen_name":"GillianNolan11","location":"","description":"Remain - or chaos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":843,"listed_count":0,"created_at":"Sun - Jan 28 19:24:21 +0000 2018","favourites_count":29891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9371,"lang":null,"status":{"created_at":"Sat - Mar 26 00:19:50 +0000 2022","id":1507512615827877891,"id_str":"1507512615827877891","text":"RT - @JohannaSaunders: It\u2019s terribly important for multimillionaires like - @RishiSunak to protect their wealthy mates, & keep the poor devasta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohannaSaunders","name":"Lady - Johanna of the Shires #takebackBritain\ud83d\udd77\ud83d\udc07","id":99188075,"id_str":"99188075","indices":[3,19]},{"screen_name":"RishiSunak","name":"Rishi - Sunak","id":1168968080690749441,"id_str":"1168968080690749441","indices":[72,83]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:02:27 +0000 2022","id":1507070353809580039,"id_str":"1507070353809580039","text":"It\u2019s - terribly important for multimillionaires like @RishiSunak to protect their - wealthy mates, & keep the poor deva\u2026 https:\/\/t.co\/McZYUpidss","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RishiSunak","name":"Rishi - Sunak","id":1168968080690749441,"id_str":"1168968080690749441","indices":[51,62]}],"urls":[{"url":"https:\/\/t.co\/McZYUpidss","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507070353809580039","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":39,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1027272306706604033\/DKoP3KXi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1027272306706604033\/DKoP3KXi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1166026708807573505,"id_str":"1166026708807573505","name":"John - Linus","screen_name":"JohnLin81325081","location":"","description":"Your Network - is your Networth.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":649,"listed_count":0,"created_at":"Mon - Aug 26 16:37:58 +0000 2019","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"status":{"created_at":"Sun - Mar 13 14:37:59 +0000 2022","id":1503017535675027462,"id_str":"1503017535675027462","text":"@susankihika - Mka baki na hustlers?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susankihika","name":"Sen. - Susan Kihika","id":1554189314,"id_str":"1554189314","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503015335779315715,"in_reply_to_status_id_str":"1503015335779315715","in_reply_to_user_id":1554189314,"in_reply_to_user_id_str":"1554189314","in_reply_to_screen_name":"susankihika","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230515151306096646,"id_str":"1230515151306096646","name":"Nusara - Daair","screen_name":"NusaraDaair8","location":"","description":"Original\u200b - Muslim\u200b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":37,"listed_count":0,"created_at":"Thu - Feb 20 15:31:09 +0000 2020","favourites_count":691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":841,"lang":null,"status":{"created_at":"Sun - Jun 27 14:04:58 +0000 2021","id":1409150766909067269,"id_str":"1409150766909067269","text":"\u0e2d\u0e31\u0e2a\u0e25\u0e32\u0e21\u0e38\u0e2d\u0e25\u0e31\u0e22\u0e01\u0e38\u0e21 - \n\u0e2d\u0e31\u0e25\u0e25\u0e2d\u0e2e\u0e3a\u0e21\u0e34\u0e17\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e0a\u0e32\u0e22\u0e43\u0e14\u0e43\u0e2b\u0e49\u0e21\u0e35\u0e2a\u0e2d\u0e07\u0e43\u0e08\u0e43\u0e19\u0e17\u0e23\u0e27\u0e07\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e40\u0e02\u0e32\n\n\u0e2a\u0e25\u0e32\u0e21\u0e04\u0e19\u0e43\u0e08\u0e40\u0e14\u0e35\u0e22\u0e27 - \n\u0e23\u0e31\u0e01\u0e40\u0e14\u0e35\u0e22\u0e27\u0e43\u0e08\u0e40\u0e14\u0e35\u0e22\u0e27 - \u0e08\u0e19\u0e41\u0e01\u0e48\u0e0a\u0e23\u0e32\u0e15\u0e32\u0e22\u0e08\u0e32\u0e01\u0e01\u0e31\u0e19\u0e44\u0e1b\u0e04\u0e48\u0e30","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313265856168648704\/UtqM4DEJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313265856168648704\/UtqM4DEJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230515151306096646\/1601941956","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1471927710,"id_str":"1471927710","name":"Paul - Barrell","screen_name":"Barrell7Paul","location":"Hull, England","description":"A - Retired gentleman who believes in Facts not feelings. Open minded sick of - Left wing fascists.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1149,"friends_count":3039,"listed_count":14,"created_at":"Fri - May 31 11:37:34 +0000 2013","favourites_count":4835,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16657,"lang":null,"status":{"created_at":"Sat - Mar 26 09:50:31 +0000 2022","id":1507656234022883328,"id_str":"1507656234022883328","text":"RT - @normAL219: 1969 we put man on the moon\n\n2022 we put man in womens toilets.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"normAL219","name":"Norm","id":1053557199711232001,"id_str":"1053557199711232001","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:41:29 +0000 2022","id":1507442568749060119,"id_str":"1507442568749060119","text":"1969 - we put man on the moon\n\n2022 we put man in womens toilets.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":515,"favorite_count":1926,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":515,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3740292613\/0f9aa7addc6aa9630127b76e74d785c7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3740292613\/0f9aa7addc6aa9630127b76e74d785c7_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":806294546,"id_str":"806294546","name":"jefferson","screen_name":"jefery118","location":"","description":"Politician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":851,"listed_count":0,"created_at":"Thu - Sep 06 07:46:21 +0000 2012","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Tue - Feb 23 19:07:27 +0000 2021","id":1364290796334235653,"id_str":"1364290796334235653","text":"@APOSTLESULEMAN - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"APOSTLESULEMAN","name":"Apst - Johnson Suleman","id":297562837,"id_str":"297562837","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1364075961512247296,"in_reply_to_status_id_str":"1364075961512247296","in_reply_to_user_id":297562837,"in_reply_to_user_id_str":"297562837","in_reply_to_screen_name":"APOSTLESULEMAN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272992286075469828\/X9Q1Gykw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272992286075469828\/X9Q1Gykw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806294546\/1592339989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":166171837,"id_str":"166171837","name":"DilaraSevinc","screen_name":"dilaura9","location":"","description":"Dreaming - big\u2728 Social Psychologist\ud83d\udc69\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":166,"friends_count":376,"listed_count":1,"created_at":"Tue - Jul 13 14:21:42 +0000 2010","favourites_count":4536,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1445,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"223D4A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459088435524911104\/GCwpvlxq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459088435524911104\/GCwpvlxq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166171837\/1578220809","profile_link_color":"7BC5E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":256113186,"id_str":"256113186","name":"Christina - Hoogestraat","screen_name":"jacks_mama","location":"Chicago area","description":"Artist - | Mama | Special Needs Mama | Rescue Mama | Life = Art","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":460,"friends_count":5002,"listed_count":3,"created_at":"Tue - Feb 22 17:50:27 +0000 2011","favourites_count":83891,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6108,"lang":null,"status":{"created_at":"Sat - Mar 26 05:44:40 +0000 2022","id":1507594363454558212,"id_str":"1507594363454558212","text":"@glee_writes - Beef Stew","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"glee_writes","name":"AuthorGingerLee\u00a9\ufe0f","id":2548964120,"id_str":"2548964120","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507354962988314644,"in_reply_to_status_id_str":"1507354962988314644","in_reply_to_user_id":2548964120,"in_reply_to_user_id_str":"2548964120","in_reply_to_screen_name":"glee_writes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255290089602768897\/xTI6iTws_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255290089602768897\/xTI6iTws_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256113186\/1647785560","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":506617128,"id_str":"506617128","name":"Laura - Monte","screen_name":"lauradmonte","location":"Berkeley, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":505,"listed_count":0,"created_at":"Tue - Feb 28 00:23:48 +0000 2012","favourites_count":37,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Jun 18 18:13:34 +0000 2021","id":1405951841280552960,"id_str":"1405951841280552960","text":"@maxwellcyoung - Finally putting your Dartmouth education to use?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maxwellcyoung","name":"Maxwell - Young","id":274151750,"id_str":"274151750","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1405525113370411015,"in_reply_to_status_id_str":"1405525113370411015","in_reply_to_user_id":274151750,"in_reply_to_user_id_str":"274151750","in_reply_to_screen_name":"maxwellcyoung","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":72123495,"id_str":"72123495","name":"Scorpio","screen_name":"PurpleSocks9","location":"USA","description":"History - will remember Putin as a coward. https:\/\/t.co\/PNvJHPKwJ0","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/PNvJHPKwJ0","expanded_url":"https:\/\/gofund.me\/3ed9eddb","display_url":"gofund.me\/3ed9eddb","indices":[41,64]}]}},"protected":false,"followers_count":651,"friends_count":1392,"listed_count":10,"created_at":"Sun - Sep 06 20:59:21 +0000 2009","favourites_count":7322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14322,"lang":null,"status":{"created_at":"Fri - Mar 25 21:07:31 +0000 2022","id":1507464216793399297,"id_str":"1507464216793399297","text":"#America - please don\u2019t forget that #trump made fun of our military hero\u2019s!!! - https:\/\/t.co\/T2pe5PfuyW","truncated":false,"entities":{"hashtags":[{"text":"America","indices":[0,8]},{"text":"trump","indices":[34,40]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T2pe5PfuyW","expanded_url":"https:\/\/twitter.com\/ericboehlert\/status\/1507378425866166280","display_url":"twitter.com\/ericboehlert\/s\u2026","indices":[76,99]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507378425866166280,"quoted_status_id_str":"1507378425866166280","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506906586995908627\/bqaPB2km_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506906586995908627\/bqaPB2km_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72123495\/1646571474","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308292026073411586,"id_str":"1308292026073411586","name":"Fenil - Lathiya","screen_name":"FenilLathiya5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":369,"listed_count":1,"created_at":"Tue - Sep 22 06:28:31 +0000 2020","favourites_count":115,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Mon - Nov 15 18:19:14 +0000 2021","id":1460311446932242432,"id_str":"1460311446932242432","text":"RT - @Dharma4X: This Sanskrit verse was quoted by Dr. @Swamy39 jee today..\n\n\u0905\u092f\u0902 - \u0928\u093f\u091c\u0903 \u092a\u0930\u094b \u0935\u0947\u0924\u093f \u0917\u0923\u0928\u093e - \u0932\u0918\u0941\u091a\u0947\u0924\u0938\u093e\u092e\u094d \u0964\n \u0909\u0926\u093e\u0930\u091a\u0930\u093f\u0924\u093e\u0928\u093e\u0902 - \u0924\u0941 \u0935\u0938\u0941\u0927\u0948\u0935 \u0915\u0941\u091f\u0941\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dharma4X","name":"Dharma","id":1330744401203630081,"id_str":"1330744401203630081","indices":[3,12]},{"screen_name":"Swamy39","name":"Subramanian - Swamy","id":60937837,"id_str":"60937837","indices":[52,60]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 15 14:44:41 +0000 2021","id":1460257453866557440,"id_str":"1460257453866557440","text":"This - Sanskrit verse was quoted by Dr. @Swamy39 jee today..\n\n\u0905\u092f\u0902 - \u0928\u093f\u091c\u0903 \u092a\u0930\u094b \u0935\u0947\u0924\u093f \u0917\u0923\u0928\u093e - \u0932\u0918\u0941\u091a\u0947\u0924\u0938\u093e\u092e\u094d \u0964\n \u0909\u0926\u093e\u0930\u091a\u0930\u093f\u0924\u093e\u0928\u093e\u0902 - \u0924\u0941 \u0935\u2026 https:\/\/t.co\/vOMzCsXaa1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Swamy39","name":"Subramanian - Swamy","id":60937837,"id_str":"60937837","indices":[38,46]}],"urls":[{"url":"https:\/\/t.co\/vOMzCsXaa1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1460257453866557440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":187,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308292321541148673\/WDs0r7iE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308292321541148673\/WDs0r7iE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21890193,"id_str":"21890193","name":"Susan","screen_name":"sosull81","location":"Killarney, - Co. Kerry.","description":"Killarney, Ireland.\ud83c\udf40","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":800,"listed_count":1,"created_at":"Wed - Feb 25 17:23:12 +0000 2009","favourites_count":8248,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":910,"lang":null,"status":{"created_at":"Sat - Mar 26 09:15:14 +0000 2022","id":1507647355608342532,"id_str":"1507647355608342532","text":"RT - @ComedianConn: Looking forward to this gig so much. Im opening for Chris on - the night. The Everyman is a class venue.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ComedianConn","name":"Cornelius","id":194244616,"id_str":"194244616","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:16:37 +0000 2022","id":1507406109887414274,"id_str":"1507406109887414274","text":"Looking - forward to this gig so much. Im opening for Chris on the night. The Everyman - is a class venue. https:\/\/t.co\/rLyEe00bau","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rLyEe00bau","expanded_url":"https:\/\/twitter.com\/chriskentcomic\/status\/1507398560849055747","display_url":"twitter.com\/chriskentcomic\u2026","indices":[103,126]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507398560849055747,"quoted_status_id_str":"1507398560849055747","retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507398560849055747,"quoted_status_id_str":"1507398560849055747","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386436039095558144\/AjgeYH4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386436039095558144\/AjgeYH4F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154436000,"id_str":"1154436000","name":"Abraham - Akanbi","screen_name":"abraham_akanbi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":2369,"listed_count":0,"created_at":"Wed - Feb 06 16:22:40 +0000 2013","favourites_count":1636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":168,"lang":null,"status":{"created_at":"Tue - Feb 22 07:42:51 +0000 2022","id":1496027693804048385,"id_str":"1496027693804048385","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary Amazing - https:\/\/t.co\/w4gipNzNEq","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1496027653547175938,"id_str":"1496027653547175938","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FML1OX_XMAIoS6P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FML1OX_XMAIoS6P.jpg","url":"https:\/\/t.co\/w4gipNzNEq","display_url":"pic.twitter.com\/w4gipNzNEq","expanded_url":"https:\/\/twitter.com\/abraham_akanbi\/status\/1496027693804048385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1496027653547175938,"id_str":"1496027653547175938","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FML1OX_XMAIoS6P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FML1OX_XMAIoS6P.jpg","url":"https:\/\/t.co\/w4gipNzNEq","display_url":"pic.twitter.com\/w4gipNzNEq","expanded_url":"https:\/\/twitter.com\/abraham_akanbi\/status\/1496027693804048385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318545350765019139\/0Q_lkxfP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318545350765019139\/0Q_lkxfP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154436000\/1603200650","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":717765168407715840,"id_str":"717765168407715840","name":"Keith - Blastland","screen_name":"kblastland63","location":"Lancaster, PA","description":"Leeds - United forever!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":463,"listed_count":0,"created_at":"Wed - Apr 06 17:25:26 +0000 2016","favourites_count":5934,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1045,"lang":null,"status":{"created_at":"Fri - Mar 25 17:18:51 +0000 2022","id":1507406673643720704,"id_str":"1507406673643720704","text":"RT - @duty2warn: Merrick Garland is worried people will lose faith in the Justice - system if they think it\u2019s partisan. But he is creating the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"duty2warn","name":"Duty - To Warn \ud83d\udd09","id":879147821915615233,"id_str":"879147821915615233","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:42:32 +0000 2022","id":1507322033847341056,"id_str":"1507322033847341056","text":"Merrick - Garland is worried people will lose faith in the Justice system if they think - it\u2019s partisan. But he is crea\u2026 https:\/\/t.co\/19i1LiZRUy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/19i1LiZRUy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507322033847341056","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4994,"favorite_count":21123,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4994,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825036104583741441\/bJ9AqgCL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825036104583741441\/bJ9AqgCL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":898640748593242112,"id_str":"898640748593242112","name":"Kay - Toby","screen_name":"KTobey22","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":277,"listed_count":0,"created_at":"Fri - Aug 18 20:20:25 +0000 2017","favourites_count":120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jan 24 16:59:29 +0000 2018","id":956209855752298496,"id_str":"956209855752298496","text":"https:\/\/t.co\/d89fWl9iVj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/d89fWl9iVj","expanded_url":"https:\/\/www.wsj.com\/amp\/articles\/trump-starts-his-trade-war-1516755083#click=https:\/\/t.co\/tPSuokOl8L","display_url":"wsj.com\/amp\/articles\/t\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278122603501309952\/vSXtUCkn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278122603501309952\/vSXtUCkn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/898640748593242112\/1593563071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216086368004321280,"id_str":"1216086368004321280","name":"NYC - Granny","screen_name":"NycGranny","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":294,"listed_count":1,"created_at":"Sat - Jan 11 19:56:17 +0000 2020","favourites_count":19298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18834,"lang":null,"status":{"created_at":"Fri - Mar 25 18:24:35 +0000 2022","id":1507423214292586504,"id_str":"1507423214292586504","text":"RT - @atrupar: Mentions on Fox News so far today\n\nHunter Biden: 9\nVirginia Thomas: - 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:49:55 +0000 2022","id":1507399391698690055,"id_str":"1507399391698690055","text":"Mentions - on Fox News so far today\n\nHunter Biden: 9\nVirginia Thomas: 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4882,"favorite_count":25549,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4882,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311055281221140482,"id_str":"1311055281221140482","name":"I - am who I am","screen_name":"Ambervotesblue","location":"Arkansas, USA","description":"Hibernating. - Wake me when 2020 is over.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":506,"listed_count":0,"created_at":"Tue - Sep 29 21:28:42 +0000 2020","favourites_count":4351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Mon - Jan 25 13:06:27 +0000 2021","id":1353690697963102220,"id_str":"1353690697963102220","text":"@KARK4News - Wonderful, she can continue lying to Arkansans just like she did to the American - public. What a disgrace.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KARK4News","name":"KARK - 4 News","id":20093858,"id_str":"20093858","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1353690066548350978,"in_reply_to_status_id_str":"1353690066548350978","in_reply_to_user_id":20093858,"in_reply_to_user_id_str":"20093858","in_reply_to_screen_name":"KARK4News","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325857256273977345\/ae0xgXoH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325857256273977345\/ae0xgXoH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311055281221140482\/1604943980","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1014074658,"id_str":"1014074658","name":"Ana - Aven\u00e7a \ud83c\uddf5\ud83c\uddf9\ud83c\uddfa\ud83c\udde6","screen_name":"Anaavenca","location":"Cascais, - Portugal","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":244,"listed_count":1,"created_at":"Sat - Dec 15 23:04:27 +0000 2012","favourites_count":5442,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":250,"lang":null,"status":{"created_at":"Sat - Mar 26 10:39:18 +0000 2022","id":1507668508380962819,"id_str":"1507668508380962819","text":"\ud83c\udf3b\ud83c\udf3b\ud83c\udf3b\ud83c\udf3b - https:\/\/t.co\/88PEzdOgqL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/88PEzdOgqL","expanded_url":"https:\/\/twitter.com\/avalaina\/status\/1507601430089195521","display_url":"twitter.com\/avalaina\/statu\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507601430089195521,"quoted_status_id_str":"1507601430089195521","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504193838096785419\/bjEtKFm3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504193838096785419\/bjEtKFm3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1014074658\/1647462495","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1146534406120706055,"id_str":"1146534406120706055","name":"Leana - Dozier","screen_name":"DozierLeana","location":"Oklahoma City, OK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":1630,"listed_count":1,"created_at":"Wed - Jul 03 21:41:18 +0000 2019","favourites_count":6100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Wed - Mar 02 02:05:23 +0000 2022","id":1498841867663953923,"id_str":"1498841867663953923","text":"@KeithOlbermann - @NYCACC @TomJumboGrumbo I have a rescue Duke. Best dog ever! https:\/\/t.co\/Bi22Nmjbbd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeithOlbermann","name":"Keith - Olbermann","id":130617778,"id_str":"130617778","indices":[0,15]},{"screen_name":"NYCACC","name":"Animal - Care Centers \ud83d\udc36\ud83d\udc31\ud83d\udc30","id":153802121,"id_str":"153802121","indices":[16,23]},{"screen_name":"TomJumboGrumbo","name":"Tom - Jumbo-Grumbo","id":798054644853407744,"id_str":"798054644853407744","indices":[24,39]}],"urls":[],"media":[{"id":1498841859434680323,"id_str":"1498841859434680323","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FMz0ut4XEAMdgMB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMz0ut4XEAMdgMB.jpg","url":"https:\/\/t.co\/Bi22Nmjbbd","display_url":"pic.twitter.com\/Bi22Nmjbbd","expanded_url":"https:\/\/twitter.com\/DozierLeana\/status\/1498841867663953923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498841859434680323,"id_str":"1498841859434680323","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FMz0ut4XEAMdgMB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMz0ut4XEAMdgMB.jpg","url":"https:\/\/t.co\/Bi22Nmjbbd","display_url":"pic.twitter.com\/Bi22Nmjbbd","expanded_url":"https:\/\/twitter.com\/DozierLeana\/status\/1498841867663953923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498841296768753679,"in_reply_to_status_id_str":"1498841296768753679","in_reply_to_user_id":130617778,"in_reply_to_user_id_str":"130617778","in_reply_to_screen_name":"KeithOlbermann","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496157792276824064\/7UqYZYJI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496157792276824064\/7UqYZYJI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":13812262,"id_str":"13812262","name":"Tim - Symon","screen_name":"TimSymon","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":2377,"listed_count":1,"created_at":"Fri - Feb 22 09:34:27 +0000 2008","favourites_count":211,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Mon - Apr 15 09:21:07 +0000 2019","id":1117719491062845444,"id_str":"1117719491062845444","text":"@aforce91 - A bit rich from you given some of the stunts you used to pull when you worked - retail.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aforce91","name":"anthony","id":292918973,"id_str":"292918973","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":1117671033207607296,"in_reply_to_status_id_str":"1117671033207607296","in_reply_to_user_id":292918973,"in_reply_to_user_id_str":"292918973","in_reply_to_screen_name":"aforce91","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644739244188000256\/6yApGQ2Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644739244188000256\/6yApGQ2Y_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37231616,"id_str":"37231616","name":"The - Martian","screen_name":"CollinceOtunga","location":"","description":"Life - is awesome. #MUFC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1044,"friends_count":3590,"listed_count":9,"created_at":"Sat - May 02 16:44:20 +0000 2009","favourites_count":47146,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4569,"lang":null,"status":{"created_at":"Fri - Mar 11 11:38:30 +0000 2022","id":1502247590380851202,"id_str":"1502247590380851202","text":"@DanielLutaaya - \ud83e\udd14\ud83e\udd14\ud83e\udd14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanielLutaaya","name":"Daniel - Lutaaya","id":436677460,"id_str":"436677460","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502247426685485063,"in_reply_to_status_id_str":"1502247426685485063","in_reply_to_user_id":436677460,"in_reply_to_user_id_str":"436677460","in_reply_to_screen_name":"DanielLutaaya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299598075229548546\/Qc6lr1hj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299598075229548546\/Qc6lr1hj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37231616\/1368007979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":483390707,"id_str":"483390707","name":"Jack","screen_name":"Photog_Jack","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":560,"listed_count":0,"created_at":"Sat - Feb 04 23:45:08 +0000 2012","favourites_count":5014,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Fri - Dec 10 22:06:54 +0000 2021","id":1469428438167535620,"id_str":"1469428438167535620","text":"@gooddadmike - @MsBlaireWhite @joerogan Looks like a wide angle lens positioned too high - to me.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gooddadmike","name":"Mike - \ud83d\udcaa\ud83e\udd13\ud83c\uddfa\ud83c\uddf8\u271d\ufe0f\ud83e\udde0\ud83c\udff4","id":1880786354,"id_str":"1880786354","indices":[0,12]},{"screen_name":"MsBlaireWhite","name":"Blaire - White","id":4316769252,"id_str":"4316769252","indices":[13,27]},{"screen_name":"joerogan","name":"Joe - Rogan","id":18208354,"id_str":"18208354","indices":[28,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1469101087282057220,"in_reply_to_status_id_str":"1469101087282057220","in_reply_to_user_id":1880786354,"in_reply_to_user_id_str":"1880786354","in_reply_to_screen_name":"gooddadmike","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144676510965481472\/uYf17cmn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144676510965481472\/uYf17cmn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483390707\/1561747123","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245033226856542210,"id_str":"1245033226856542210","name":"Javeria - \u2604","screen_name":"desishortcake","location":"","description":"sirf rona - dhona :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":94,"listed_count":7,"created_at":"Tue - Mar 31 17:00:52 +0000 2020","favourites_count":24541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5062,"lang":null,"status":{"created_at":"Mon - Mar 21 13:17:57 +0000 2022","id":1505896494322307074,"id_str":"1505896494322307074","text":"@_hahahabibaaa - I''ve got so many books from book fair I gotta read em too!! \ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505896295310966785,"in_reply_to_status_id_str":"1505896295310966785","in_reply_to_user_id":1163374146757255168,"in_reply_to_user_id_str":"1163374146757255168","in_reply_to_screen_name":"Nafasamah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491110633647005705\/vO99NS-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491110633647005705\/vO99NS-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245033226856542210\/1639898517","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":587658894,"id_str":"587658894","name":"Niranjan - Khagta","screen_name":"nskhagta","location":"Shimla","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":305,"friends_count":235,"listed_count":43,"created_at":"Tue - May 22 17:01:47 +0000 2012","favourites_count":96968,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25542,"lang":null,"status":{"created_at":"Sat - Mar 26 08:01:12 +0000 2022","id":1507628722089725960,"id_str":"1507628722089725960","text":"RT - @poet_neeraj: \u0936\u092e\u0936\u093e\u0928 \u0915\u0947 \u092c\u093e\u0939\u0930 - \u0932\u093f\u0916\u093e \u0925\u093e \u0915\u0940 \u092e\u0902\u091c\u093f\u0932 - \u0924\u094b \u0924\u0947\u0930\u0940 \u092f\u0939\u0940 \u0925\u0940\u0902, - \u092a\u0930 \u0909\u092e\u094d\u0930 \u0917\u0941\u091c\u0930 \u0917\u0908 - \u092f\u0939\u093e\u0901 \u0906\u0924\u0947 \u0906\u0924\u0947...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"poet_neeraj","name":"\u0917\u094b\u092a\u093e\u0932 - \u0926\u093e\u0938 \u0928\u0940\u0930\u091c","id":1478377126986399754,"id_str":"1478377126986399754","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:15:54 +0000 2022","id":1507541824009027585,"id_str":"1507541824009027585","text":"\u0936\u092e\u0936\u093e\u0928 - \u0915\u0947 \u092c\u093e\u0939\u0930 \u0932\u093f\u0916\u093e \u0925\u093e - \u0915\u0940 \u092e\u0902\u091c\u093f\u0932 \u0924\u094b \u0924\u0947\u0930\u0940 - \u092f\u0939\u0940 \u0925\u0940\u0902, \u092a\u0930 \u0909\u092e\u094d\u0930 - \u0917\u0941\u091c\u0930 \u0917\u0908 \u092f\u0939\u093e\u0901 \u0906\u0924\u0947 - \u0906\u0924\u0947...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":126,"favorite_count":900,"favorited":false,"retweeted":false,"lang":"hi"},"is_quote_status":false,"retweet_count":126,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507351066056474627\/4cEwB704_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507351066056474627\/4cEwB704_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1142326561770790915,"id_str":"1142326561770790915","name":"Uba - Aliyu","screen_name":"UbaAliyu2","location":"","description":"Comrador","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1089,"listed_count":0,"created_at":"Sat - Jun 22 07:00:50 +0000 2019","favourites_count":427,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166713262685204481\/LPulStmP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166713262685204481\/LPulStmP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":986316864,"id_str":"986316864","name":"colin - sequea","screen_name":"ColseqCs","location":"Trinidad and Tobago","description":"welcome - to life!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":745,"listed_count":0,"created_at":"Mon - Dec 03 10:01:54 +0000 2012","favourites_count":502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu - Jun 24 22:19:19 +0000 2021","id":1408188012626862081,"id_str":"1408188012626862081","text":"It''s - 18 months since the covid 19 pandemic started,question is is going and end - eany time soon?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164663685052358657\/deHdaQI__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164663685052358657\/deHdaQI__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41286621,"id_str":"41286621","name":"mary - perez","screen_name":"marysergio","location":"GREENBAY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":1461,"listed_count":5,"created_at":"Wed - May 20 03:27:03 +0000 2009","favourites_count":18325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24022,"lang":null,"status":{"created_at":"Sun - Feb 27 23:15:20 +0000 2022","id":1498074297901977604,"id_str":"1498074297901977604","text":"RT - @RepSwalwell: Do not let Republicans rewrite whose side they were on before - Russia attacked Ukraine. Led by Trump\/Tucker\/Pompeo many wer\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepSwalwell","name":"Rep. - Eric Swalwell","id":942156122,"id_str":"942156122","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 19:56:23 +0000 2022","id":1498024232629932035,"id_str":"1498024232629932035","text":"Do - not let Republicans rewrite whose side they were on before Russia attacked - Ukraine. Led by Trump\/Tucker\/Pompeo m\u2026 https:\/\/t.co\/3aK6ggZ8mc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3aK6ggZ8mc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498024232629932035","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14683,"favorite_count":54007,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14683,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/776980705012133891\/2uPKXUzR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/776980705012133891\/2uPKXUzR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3662724736,"id_str":"3662724736","name":"Richard - Ringer","screen_name":"seniorman127","location":"Syria ","description":"I - have only one word to describe myself \"simple\" I am very serious person - whenever I encounter someone who respects my love and ready to take challengers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":2815,"listed_count":0,"created_at":"Tue - Sep 15 09:54:28 +0000 2015","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Sat - Jan 30 13:16:31 +0000 2021","id":1355505171544104963,"id_str":"1355505171544104963","text":"@Fii_Shed - @HindTue @blessmashawu @goal In which league did he score the 20something - league goal","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fii_Shed","name":"Fiifi","id":771858964942299136,"id_str":"771858964942299136","indices":[0,9]},{"screen_name":"blessmashawu","name":"Bless","id":1224403209189568514,"id_str":"1224403209189568514","indices":[19,32]},{"screen_name":"goal","name":"GOAL","id":26809005,"id_str":"26809005","indices":[33,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1355494336692154369,"in_reply_to_status_id_str":"1355494336692154369","in_reply_to_user_id":771858964942299136,"in_reply_to_user_id_str":"771858964942299136","in_reply_to_screen_name":"Fii_Shed","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240652504859377670\/pC2YtiXZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240652504859377670\/pC2YtiXZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3662724736\/1584629603","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":248435591,"id_str":"248435591","name":"Janet - Henry","screen_name":"JanetLHenry","location":"Anchorage, AK","description":"Interested - in the TRUTH","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":154,"friends_count":1879,"listed_count":2,"created_at":"Mon - Feb 07 00:34:44 +0000 2011","favourites_count":30955,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":539,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1061313239408009216\/qcjLQHEp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061313239408009216\/qcjLQHEp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":877222864398700544,"id_str":"877222864398700544","name":"Diane - Starr","screen_name":"Nlitend61Diane","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":477,"listed_count":0,"created_at":"Tue - Jun 20 17:53:23 +0000 2017","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - Jul 28 04:39:06 +0000 2021","id":1420242388086267906,"id_str":"1420242388086267906","text":"@bottomforbenson - You\u2019re my bitch now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bottomforbenson","name":"Soph - \ud83e\udd0d","id":1428862902623084547,"id_str":"1428862902623084547","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1420129465934356484,"in_reply_to_status_id_str":"1420129465934356484","in_reply_to_user_id":1383940820936523779,"in_reply_to_user_id_str":"1383940820936523779","in_reply_to_screen_name":"eosreputation","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":964975724099723264,"id_str":"964975724099723264","name":"Donald - Taylor","screen_name":"DonaldT66869084","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":195,"listed_count":0,"created_at":"Sat - Feb 17 21:31:55 +0000 2018","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":202127051,"id_str":"202127051","name":"samski","screen_name":"munchski","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1557,"listed_count":0,"created_at":"Wed - Oct 13 10:56:40 +0000 2010","favourites_count":1289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":300,"lang":null,"status":{"created_at":"Fri - Feb 18 16:58:27 +0000 2022","id":1494717963240460298,"id_str":"1494717963240460298","text":"@ShehuSani - Life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShehuSani","name":"Senator - Shehu Sani","id":117042662,"id_str":"117042662","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1494713861232070659,"in_reply_to_status_id_str":"1494713861232070659","in_reply_to_user_id":117042662,"in_reply_to_user_id_str":"117042662","in_reply_to_screen_name":"ShehuSani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1075660302828691458\/-yuLmKd6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075660302828691458\/-yuLmKd6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":333747580,"id_str":"333747580","name":"Mary - Lou Holt","screen_name":"350Zgal","location":"Louisville, Ky","description":"Long-time - political junkie, former employee of Ky State Legislature. Worked for two - governors, an actor and a large mfg of adult beverages, now RETIRED!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":556,"listed_count":3,"created_at":"Tue - Jul 12 01:03:24 +0000 2011","favourites_count":18676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1463,"lang":null,"status":{"created_at":"Sat - Mar 26 00:43:18 +0000 2022","id":1507518523056218122,"id_str":"1507518523056218122","text":"RT - @PhilArballo: Clarence Thomas needs to resign. Like and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhilArballo","name":"Phil - Arballo","id":1087073882220064768,"id_str":"1087073882220064768","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:30:14 +0000 2022","id":1507500133977575426,"id_str":"1507500133977575426","text":"Clarence - Thomas needs to resign. Like and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/tweepsmap.com\" rel=\"nofollow\"\u003eTweepsmap\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1145,"favorite_count":2818,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1145,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500359922462167043\/GNhLbTaf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500359922462167043\/GNhLbTaf_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1017164098126123009,"id_str":"1017164098126123009","name":"Michael - - The Last Messenger","screen_name":"Michael24046420","location":"Pacific - Northwest","description":"A man of faith and spirit. A believer in none of - man''s religions. A follower of Jesus Christ, the Messiah. A true worshipper - of the Father. The last messenger.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":78,"listed_count":0,"created_at":"Wed - Jul 11 21:49:53 +0000 2018","favourites_count":21472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1844,"lang":null,"status":{"created_at":"Sat - Apr 10 06:47:07 +0000 2021","id":1380774326111141893,"id_str":"1380774326111141893","text":"Never - forget the treason! https:\/\/t.co\/cK0l4VqtkB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cK0l4VqtkB","expanded_url":"https:\/\/twitter.com\/KimMangone\/status\/1380659986066366465","display_url":"twitter.com\/KimMangone\/sta\u2026","indices":[26,49]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1380659986066366465,"quoted_status_id_str":"1380659986066366465","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329814904438710273\/TmDYYq-K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329814904438710273\/TmDYYq-K_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40574725,"id_str":"40574725","name":"hermit - crab","screen_name":"tormisian","location":"","description":"Liberal. Lawyer. - Laker. Liverpool.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":568,"friends_count":2158,"listed_count":0,"created_at":"Sun - May 17 00:35:42 +0000 2009","favourites_count":2260,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"status":{"created_at":"Fri - Feb 25 05:42:11 +0000 2022","id":1497084489650290688,"id_str":"1497084489650290688","text":"So - bring back BBM and be like dogs going back to the scene of their vomit. #CebuIsPink - #ILOILOisPink","truncated":false,"entities":{"hashtags":[{"text":"CebuIsPink","indices":[75,86]},{"text":"ILOILOisPink","indices":[87,100]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156701098125746176,"id_str":"1156701098125746176","name":"marti\ud83c\udf31","screen_name":"yumbree","location":"in - love w\/ myself","description":"\u201cyoune ga dead\u201d -Bahalations 4:13 - #gbstrong\ud83c\udde7\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1296,"friends_count":808,"listed_count":3,"created_at":"Wed - Jul 31 23:00:07 +0000 2019","favourites_count":16049,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6249,"lang":null,"status":{"created_at":"Wed - Mar 23 15:57:36 +0000 2022","id":1506661449292140547,"id_str":"1506661449292140547","text":"RT - @theestallion: Bye im not speaking to nobody else on here ..see y\u2019all - in court","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"theestallion","name":"TINA - SNOW","id":104040220,"id_str":"104040220","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 01:28:01 +0000 2022","id":1506080225142075393,"id_str":"1506080225142075393","text":"Bye - im not speaking to nobody else on here ..see y\u2019all in court","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4295,"favorite_count":77459,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4295,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500956200304791553\/lsCQeNG6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500956200304791553\/lsCQeNG6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156701098125746176\/1647567511","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":975865297654697987,"id_str":"975865297654697987","name":"Lesley - Savage","screen_name":"LesleySavage91","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":563,"listed_count":0,"created_at":"Mon - Mar 19 22:43:12 +0000 2018","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Sun - Mar 07 05:52:48 +0000 2021","id":1368439468026396673,"id_str":"1368439468026396673","text":"@Neuralgroover - @MigraineSummit For me it seems like many times the neck pain is my aura warning - me that a migraine attack is imminent.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Neuralgroover","name":"Dr. - Eric P. Baron","id":201823378,"id_str":"201823378","indices":[0,14]},{"screen_name":"MigraineSummit","name":"Migraine - World Summit","id":4908408810,"id_str":"4908408810","indices":[15,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1368416955804364801,"in_reply_to_status_id_str":"1368416955804364801","in_reply_to_user_id":201823378,"in_reply_to_user_id_str":"201823378","in_reply_to_screen_name":"Neuralgroover","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":824133206320549889,"id_str":"824133206320549889","name":"Ted - Jury","screen_name":"JuryTed","location":"Aurora, CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":336,"listed_count":0,"created_at":"Wed - Jan 25 05:54:02 +0000 2017","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Feb 09 04:15:18 +0000 2021","id":1358992845982609408,"id_str":"1358992845982609408","text":"RT - @LVlovesHaven: @politvidchannel That''s as it should be. Participated in feeding - kids at the border frozen food or none at all for long s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LVlovesHaven","name":"LV - \ud83c\uddfa\ud83c\uddf8 Stands With \ud83c\uddfa\ud83c\udde6","id":4009577772,"id_str":"4009577772","indices":[3,16]},{"screen_name":"politvidchannel","name":"PoliticsVideoChannel","id":4878610324,"id_str":"4878610324","indices":[18,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 08 18:17:54 +0000 2021","id":1358842509279940608,"id_str":"1358842509279940608","text":"@politvidchannel - That''s as it should be. Participated in feeding kids at the border frozen - food or none at all for\u2026 https:\/\/t.co\/TTGwwXUNXv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"politvidchannel","name":"PoliticsVideoChannel","id":4878610324,"id_str":"4878610324","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/TTGwwXUNXv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1358842509279940608","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1358834633329102848,"in_reply_to_status_id_str":"1358834633329102848","in_reply_to_user_id":4878610324,"in_reply_to_user_id_str":"4878610324","in_reply_to_screen_name":"politvidchannel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":32,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30935959,"id_str":"30935959","name":"Missy - McMurray","screen_name":"diamonddarling","location":"Denver, CO","description":"suicide - loss survivor, cancer survivor, traveler, die hard liberal, Biochemist, avid - reader and non-religious. #resist#abhortrump#grievingmom#FBR#scienceisreal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12897,"friends_count":11934,"listed_count":19,"created_at":"Mon - Apr 13 19:24:13 +0000 2009","favourites_count":238295,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29689,"lang":null,"status":{"created_at":"Sat - Mar 26 00:42:15 +0000 2022","id":1507518255547756551,"id_str":"1507518255547756551","text":"@CardboardGlory - @klemme_susan As a Coloradan, I\u2019d LOVE to vote her our, sadly I\u2019m - not in her district. So there\u2019s that.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CardboardGlory","name":"Cardboard - Glory & Collectibles","id":984218441963003904,"id_str":"984218441963003904","indices":[0,15]},{"screen_name":"klemme_susan","name":"Susan - Klemme","id":1195356840462372864,"id_str":"1195356840462372864","indices":[16,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507513438163066887,"in_reply_to_status_id_str":"1507513438163066887","in_reply_to_user_id":984218441963003904,"in_reply_to_user_id_str":"984218441963003904","in_reply_to_screen_name":"CardboardGlory","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1407103107163557901\/yLHwOvwa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1407103107163557901\/yLHwOvwa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30935959\/1647269691","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":250685155,"id_str":"250685155","name":"Yahya - R. Kamalipour, PhD","screen_name":"ykam2011","location":"North Carolina, USA","description":"Professor, - administrator, author, consultant, speaker, Founder of the Global Media Journals - network, and Founding President of Global Comm Association.","url":"https:\/\/t.co\/6CoiM3uDUe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6CoiM3uDUe","expanded_url":"http:\/\/www.kamalipour.com","display_url":"kamalipour.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":304,"friends_count":1136,"listed_count":10,"created_at":"Fri - Feb 11 16:00:00 +0000 2011","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"status":{"created_at":"Sat - Nov 20 18:37:30 +0000 2021","id":1462127979832688653,"id_str":"1462127979832688653","text":"Falling - leaves! https:\/\/t.co\/t8Gt17Gsur","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1462127925831028739,"id_str":"1462127925831028739","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1462127925831028739\/pu\/img\/feLj8G23nPqngrBB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1462127925831028739\/pu\/img\/feLj8G23nPqngrBB.jpg","url":"https:\/\/t.co\/t8Gt17Gsur","display_url":"pic.twitter.com\/t8Gt17Gsur","expanded_url":"https:\/\/twitter.com\/ykam2011\/status\/1462127979832688653\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1462127925831028739,"id_str":"1462127925831028739","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1462127925831028739\/pu\/img\/feLj8G23nPqngrBB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1462127925831028739\/pu\/img\/feLj8G23nPqngrBB.jpg","url":"https:\/\/t.co\/t8Gt17Gsur","display_url":"pic.twitter.com\/t8Gt17Gsur","expanded_url":"https:\/\/twitter.com\/ykam2011\/status\/1462127979832688653\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":23686,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1462127925831028739\/pu\/vid\/480x852\/BoaLnQrtdVpDLjnu.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1462127925831028739\/pu\/vid\/320x568\/zh8W960YZPLCsSPW.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1462127925831028739\/pu\/pl\/tPctEvmja46cHkzB.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1462127925831028739\/pu\/vid\/720x1280\/9rnkcK8Eh5rwp29n.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875794264369889280\/uQspldNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875794264369889280\/uQspldNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250685155\/1574873926","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3573924496,"id_str":"3573924496","name":"Najib - sadat","screen_name":"NajibSadat","location":"Afghanistan","description":"\u200f\u200f\u200f\u200f\u200f\u0632\u0645\u0627 - \u067e\u0647 \u0633\u062a\u0631\u06ab\u0648 \u06a9\u06d0 \u0681\u0627\u0646 - \u0645\u0647 \u0644\u067c\u0648\u0647 \n\u062a\u0647 \u062e\u0648 \u0632\u0645\u0627 - \u062f \u0632\u0693\u0647 \u067e\u0647 \u062a\u0644 \u06a9\u06d0 \u0627\u0648\u0633\u06d0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":1959,"listed_count":0,"created_at":"Mon - Sep 07 05:50:03 +0000 2015","favourites_count":4470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":619,"lang":null,"status":{"created_at":"Fri - Mar 25 11:56:45 +0000 2022","id":1507325611790028804,"id_str":"1507325611790028804","text":"@Zoohra6 - \u0632\u0645\u0627 \u062f\u0627\u0633\u06d0 \u0639\u0627\u062f\u062a \u062f\u06cc - \u0686\u064a \u0645\u06cc\u0644\u0645\u0647 \u06cc\u06d0 \u0631\u0627\u062a\u0647 - \u0648\u0646\u0647 \u069a\u0627\u06cc\u06cc \u062a\u0631\u0647\u063a\u0647 - \u06cc\u06d0 \u0646\u0647 \u067e\u062e\u0648\u0645 \n\u06cc\u0639\u0646\u06d0 - \u0647\u063a\u0647 \u0685\u0647 \u0686\u064a \u062f \u0645\u06cc\u0644\u0645\u0647 - \u062e\u0648\u069a \u0648\u064a \u0647\u063a\u0647 \u0628\u0647 \u0648\u0631\u062a\u0647 - \u067e\u062e\u0648\u0645.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Zoohra6","name":"Zoohra - (\u0632\u0647\u0631\u0647)","id":1230207413485277185,"id_str":"1230207413485277185","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507224016360288263,"in_reply_to_status_id_str":"1507224016360288263","in_reply_to_user_id":1230207413485277185,"in_reply_to_user_id_str":"1230207413485277185","in_reply_to_screen_name":"Zoohra6","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ps"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240821738071613447\/BYb1P2-m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240821738071613447\/BYb1P2-m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3573924496\/1588494270","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":945326927295889408,"id_str":"945326927295889408","name":"Clarence - Tiu","screen_name":"clarencemarctiu","location":"Quezon City","description":"\ud83c\udfaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":686,"listed_count":4,"created_at":"Mon - Dec 25 16:14:37 +0000 2017","favourites_count":298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Wed - Dec 08 10:47:43 +0000 2021","id":1468532737036283905,"id_str":"1468532737036283905","text":"RT - @inquirerdotnet: The latest December data from OCTA Research and the Department - of Health have confirmed the continued drop of new COVID\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"inquirerdotnet","name":"Inquirer","id":15448383,"id_str":"15448383","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 08 09:45:00 +0000 2021","id":1468516953996206086,"id_str":"1468516953996206086","text":"The - latest December data from OCTA Research and the Department of Health have - confirmed the continued drop of new C\u2026 https:\/\/t.co\/KsQtB2DCns","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KsQtB2DCns","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1468516953996206086","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":62,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183398077031305217\/48rOoyUH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183398077031305217\/48rOoyUH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47830046,"id_str":"47830046","name":"Noah - Fence","screen_name":"kangsturr","location":"","description":"Korean, American, - Gouda, Brie","url":"https:\/\/t.co\/TuyAj08QpI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TuyAj08QpI","expanded_url":"http:\/\/instagram.com\/shinekang","display_url":"instagram.com\/shinekang","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":223,"friends_count":521,"listed_count":4,"created_at":"Wed - Jun 17 02:50:03 +0000 2009","favourites_count":39151,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20744,"lang":null,"status":{"created_at":"Fri - Mar 25 02:05:54 +0000 2022","id":1507176919820873741,"id_str":"1507176919820873741","text":"Disagreement - over temperature has begun.. I\u2019m freezing","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479600872283848708\/68Xk3Tzq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479600872283848708\/68Xk3Tzq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47830046\/1620014770","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":475011987,"id_str":"475011987","name":"Marlon - Chavarika","screen_name":"Marlo_chavarika","location":"Bulawayo, Zimbabwe","description":"Bsc - (Hons) Animal Science (UZ,2017) .Msc Ecotourism and Biodiversity Conservation - (NUST, 2019-2021).Livestock and Wildlife Scientist, Tour guiding and LPH","url":"https:\/\/t.co\/MEDGjfuswL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MEDGjfuswL","expanded_url":"http:\/\/www.marlo.com","display_url":"marlo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":1348,"listed_count":0,"created_at":"Thu - Jan 26 15:55:55 +0000 2012","favourites_count":1094,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":190,"lang":null,"status":{"created_at":"Sun - Nov 07 05:52:04 +0000 2021","id":1457224313111785475,"id_str":"1457224313111785475","text":"@tavonga_chinez1 - rolling weed","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tavonga_chinez1","name":"COMIC - DOCTOR \ud83c\uddff\ud83c\uddfc\ud83e\uddd1\u200d\u2695\ufe0f\ud83d\udc69\u200d\u2695\ufe0f","id":1406251941139783680,"id_str":"1406251941139783680","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1456973902383570947,"in_reply_to_status_id_str":"1456973902383570947","in_reply_to_user_id":1406251941139783680,"in_reply_to_user_id_str":"1406251941139783680","in_reply_to_screen_name":"tavonga_chinez1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422491660462723091\/zi9GLJME_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422491660462723091\/zi9GLJME_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475011987\/1627983485","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308143272305594368,"id_str":"1308143272305594368","name":"Stanley - Blaugrund","screen_name":"SBlaugrund","location":"","description":"MD RETIRED","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":147,"listed_count":0,"created_at":"Mon - Sep 21 20:37:48 +0000 2020","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Mon - Sep 13 17:41:53 +0000 2021","id":1437471609338712066,"id_str":"1437471609338712066","text":"@NBCNews - The SCOTUS represents the minority and justice be damned!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NBCNews","name":"NBC - News","id":14173315,"id_str":"14173315","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1437384828505186307,"in_reply_to_status_id_str":"1437384828505186307","in_reply_to_user_id":14173315,"in_reply_to_user_id_str":"14173315","in_reply_to_screen_name":"NBCNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308143804772425729\/Uhxf3LFB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308143804772425729\/Uhxf3LFB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":884043400349196289,"id_str":"884043400349196289","name":"Dr. - Khaleel Desaque","screen_name":"Kdesaque1","location":"Pennsylvania, USA","description":"Father, - Educator, Global Citizen; Opinions are solely my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":557,"listed_count":1,"created_at":"Sun - Jul 09 13:35:46 +0000 2017","favourites_count":1497,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":183,"lang":null,"status":{"created_at":"Mon - Feb 14 12:04:48 +0000 2022","id":1493194512008728577,"id_str":"1493194512008728577","text":"@FlyFrontier - - a better bag check-in system is needed at the @orlandoairports! When the - line wraps around the build\u2026 https:\/\/t.co\/zPF32mKQxy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FlyFrontier","name":"Frontier - Airlines","id":14172570,"id_str":"14172570","indices":[0,12]},{"screen_name":"orlandoairports","name":"Orlando Airport","id":63045706,"id_str":"63045706","indices":[61,77]}],"urls":[{"url":"https:\/\/t.co\/zPF32mKQxy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493194512008728577","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14172570,"in_reply_to_user_id_str":"14172570","in_reply_to_screen_name":"FlyFrontier","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1021206488071704577\/Ek8E1zcl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1021206488071704577\/Ek8E1zcl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":920503787382562816,"id_str":"920503787382562816","name":"Gabriel - Fritsch","screen_name":"gabrielpfritsch","location":"Oxford, England","description":"mphil - economics student @uniofoxford | @yale alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":670,"listed_count":0,"created_at":"Wed - Oct 18 04:16:19 +0000 2017","favourites_count":1691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117,"lang":null,"status":{"created_at":"Wed - Jan 19 16:37:10 +0000 2022","id":1483840971389476875,"id_str":"1483840971389476875","text":"RT - @MonetaristMaia: \"so, the inflation rate is 7%\" https:\/\/t.co\/hQB898Q9Ej","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MonetaristMaia","name":"Maia","id":1481645017726799888,"id_str":"1481645017726799888","indices":[3,18]}],"urls":[],"media":[{"id":1483519421465333762,"id_str":"1483519421465333762","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","url":"https:\/\/t.co\/hQB898Q9Ej","display_url":"pic.twitter.com\/hQB898Q9Ej","expanded_url":"https:\/\/twitter.com\/MonetaristMaia\/status\/1483519498892181507\/video\/1","type":"photo","sizes":{"medium":{"w":496,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":496,"h":280,"resize":"fit"},"large":{"w":496,"h":280,"resize":"fit"}},"source_status_id":1483519498892181507,"source_status_id_str":"1483519498892181507","source_user_id":1481645017726799888,"source_user_id_str":"1481645017726799888"}]},"extended_entities":{"media":[{"id":1483519421465333762,"id_str":"1483519421465333762","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","url":"https:\/\/t.co\/hQB898Q9Ej","display_url":"pic.twitter.com\/hQB898Q9Ej","expanded_url":"https:\/\/twitter.com\/MonetaristMaia\/status\/1483519498892181507\/video\/1","type":"video","sizes":{"medium":{"w":496,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":496,"h":280,"resize":"fit"},"large":{"w":496,"h":280,"resize":"fit"}},"source_status_id":1483519498892181507,"source_status_id_str":"1483519498892181507","source_user_id":1481645017726799888,"source_user_id_str":"1481645017726799888","video_info":{"aspect_ratio":[62,35],"duration_millis":63248,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1483519421465333762\/pu\/pl\/yEBnPUXxlB9GpvwY.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1483519421465333762\/pu\/vid\/496x280\/UhcE06zLecY5tt5v.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 18 19:19:45 +0000 2022","id":1483519498892181507,"id_str":"1483519498892181507","text":"\"so, - the inflation rate is 7%\" https:\/\/t.co\/hQB898Q9Ej","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1483519421465333762,"id_str":"1483519421465333762","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","url":"https:\/\/t.co\/hQB898Q9Ej","display_url":"pic.twitter.com\/hQB898Q9Ej","expanded_url":"https:\/\/twitter.com\/MonetaristMaia\/status\/1483519498892181507\/video\/1","type":"photo","sizes":{"medium":{"w":496,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":496,"h":280,"resize":"fit"},"large":{"w":496,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1483519421465333762,"id_str":"1483519421465333762","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1483519421465333762\/pu\/img\/8CRMsQnYKPwNtT6i.jpg","url":"https:\/\/t.co\/hQB898Q9Ej","display_url":"pic.twitter.com\/hQB898Q9Ej","expanded_url":"https:\/\/twitter.com\/MonetaristMaia\/status\/1483519498892181507\/video\/1","type":"video","sizes":{"medium":{"w":496,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":496,"h":280,"resize":"fit"},"large":{"w":496,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[62,35],"duration_millis":63248,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1483519421465333762\/pu\/pl\/yEBnPUXxlB9GpvwY.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1483519421465333762\/pu\/vid\/496x280\/UhcE06zLecY5tt5v.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":321,"favorite_count":2132,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":321,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177249607157522437\/_LIj8eF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177249607157522437\/_LIj8eF7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/920503787382562816\/1522166072","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15988047,"id_str":"15988047","name":"John - Cleek, Ph.D.","screen_name":"RealEstatDoctor","location":"Louisburg, Kansas","description":"author, - educator, husband, father, grandfather, concerned citizen. webmaster, The - Real Estate Doctor, HealthyAgingintheSunflowerState","url":"https:\/\/t.co\/LEqzNbeWD4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LEqzNbeWD4","expanded_url":"http:\/\/www.johncleekrealtor.com","display_url":"johncleekrealtor.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":349,"friends_count":1053,"listed_count":10,"created_at":"Mon - Aug 25 21:57:00 +0000 2008","favourites_count":1863,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2437,"lang":null,"status":{"created_at":"Tue - Mar 08 17:05:51 +0000 2022","id":1501242805032792067,"id_str":"1501242805032792067","text":"RT - @olex_scherba: The #Netherlands. People donated to #Ukraine \u20ac106mil within - one day.\nBedankt!\n\n#StandWithUkraine #StopPutinNOW https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[{"text":"Netherlands","indices":[22,34]},{"text":"Ukraine","indices":[54,62]},{"text":"StandWithUkraine","indices":[97,114]},{"text":"StopPutinNOW","indices":[115,128]}],"symbols":[],"user_mentions":[{"screen_name":"olex_scherba","name":"olexander - scherba\ud83c\uddfa\ud83c\udde6","id":163018653,"id_str":"163018653","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 10:28:40 +0000 2022","id":1501142851970899970,"id_str":"1501142851970899970","text":"The - #Netherlands. People donated to #Ukraine \u20ac106mil within one day.\nBedankt!\n\n#StandWithUkraine - #StopPutinNOW https:\/\/t.co\/WebPcQ5MP3","truncated":false,"entities":{"hashtags":[{"text":"Netherlands","indices":[4,16]},{"text":"Ukraine","indices":[36,44]},{"text":"StandWithUkraine","indices":[79,96]},{"text":"StopPutinNOW","indices":[97,110]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501142846841266178,"id_str":"1501142846841266178","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FNUhdz8XoAIaG46.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNUhdz8XoAIaG46.jpg","url":"https:\/\/t.co\/WebPcQ5MP3","display_url":"pic.twitter.com\/WebPcQ5MP3","expanded_url":"https:\/\/twitter.com\/olex_scherba\/status\/1501142851970899970\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501142846841266178,"id_str":"1501142846841266178","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FNUhdz8XoAIaG46.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNUhdz8XoAIaG46.jpg","url":"https:\/\/t.co\/WebPcQ5MP3","display_url":"pic.twitter.com\/WebPcQ5MP3","expanded_url":"https:\/\/twitter.com\/olex_scherba\/status\/1501142851970899970\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":1433,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":288,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DAD9EB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494084149\/johncleeksummer2010reverse_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494084149\/johncleeksummer2010reverse_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15988047\/1642961083","profile_link_color":"0C0578","profile_sidebar_border_color":"42040A","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"BD1332","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889933196,"id_str":"889933196","name":"Thomas - Hwang","screen_name":"ThomasHwang3","location":"Portland, Oregon","description":"Ophthalmologist, - educator, informaticist, violinist, father, husband, and believer. Unofficial - and personal musings.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":1137,"listed_count":1,"created_at":"Thu - Oct 18 23:25:52 +0000 2012","favourites_count":326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Thu - Jan 06 22:51:17 +0000 2022","id":1479224075981836292,"id_str":"1479224075981836292","text":"RT - @ClinExpOphthal: #openaccess #7 of our top 10 articles from 2021: \"#Diabetic - eye disease: A review of screening and management recommend\u2026","truncated":false,"entities":{"hashtags":[{"text":"openaccess","indices":[20,31]},{"text":"Diabetic","indices":[70,79]}],"symbols":[],"user_mentions":[{"screen_name":"ClinExpOphthal","name":"Clinical - and Experimental Ophthalmology","id":1224630135418052608,"id_str":"1224630135418052608","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 06 09:41:35 +0000 2022","id":1479025343491022851,"id_str":"1479025343491022851","text":"#openaccess - #7 of our top 10 articles from 2021: \"#Diabetic eye disease: A review of - screening and management recom\u2026 https:\/\/t.co\/rlbN9uQZGp","truncated":true,"entities":{"hashtags":[{"text":"openaccess","indices":[0,11]},{"text":"Diabetic","indices":[50,59]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rlbN9uQZGp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479025343491022851","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":897572099459620865,"id_str":"897572099459620865","name":"Obamafor3rdterm","screen_name":"Obamafor3rd","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":28,"listed_count":0,"created_at":"Tue - Aug 15 21:33:59 +0000 2017","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Jul 23 17:16:30 +0000 2018","id":1021443953021915137,"id_str":"1021443953021915137","text":"https:\/\/t.co\/TuGztXStCa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1021443947397169152,"id_str":"1021443947397169152","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Dizl27qUwAATANC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dizl27qUwAATANC.jpg","url":"https:\/\/t.co\/TuGztXStCa","display_url":"pic.twitter.com\/TuGztXStCa","expanded_url":"https:\/\/twitter.com\/Obamafor3rd\/status\/1021443953021915137\/photo\/1","type":"photo","sizes":{"medium":{"w":909,"h":64,"resize":"fit"},"large":{"w":909,"h":64,"resize":"fit"},"thumb":{"w":64,"h":64,"resize":"crop"},"small":{"w":680,"h":48,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1021443947397169152,"id_str":"1021443947397169152","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Dizl27qUwAATANC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Dizl27qUwAATANC.jpg","url":"https:\/\/t.co\/TuGztXStCa","display_url":"pic.twitter.com\/TuGztXStCa","expanded_url":"https:\/\/twitter.com\/Obamafor3rd\/status\/1021443953021915137\/photo\/1","type":"photo","sizes":{"medium":{"w":909,"h":64,"resize":"fit"},"large":{"w":909,"h":64,"resize":"fit"},"thumb":{"w":64,"h":64,"resize":"crop"},"small":{"w":680,"h":48,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1021443939868512257,"in_reply_to_status_id_str":"1021443939868512257","in_reply_to_user_id":897572099459620865,"in_reply_to_user_id_str":"897572099459620865","in_reply_to_screen_name":"Obamafor3rd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1921485614,"id_str":"1921485614","name":"PJ - Pardo","screen_name":"PJPPardo","location":"Gainesville, FL","description":"Social - Liberal with Progressive and Conservative views; political junkie. Welcome - respectful different POVs. Kindness, love & respect matters.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":2055,"listed_count":0,"created_at":"Mon - Sep 30 22:25:42 +0000 2013","favourites_count":25842,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18226,"lang":null,"status":{"created_at":"Wed - Mar 23 11:47:18 +0000 2022","id":1506598459004145667,"id_str":"1506598459004145667","text":"RT - @Patrick57200851: @nypost https:\/\/t.co\/TcpEtaV364","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Patrick57200851","name":"Patrick","id":1301238635057090560,"id_str":"1301238635057090560","indices":[3,19]},{"screen_name":"nypost","name":"New - York Post","id":17469289,"id_str":"17469289","indices":[21,28]}],"urls":[],"media":[{"id":1506108997773971461,"id_str":"1506108997773971461","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","url":"https:\/\/t.co\/TcpEtaV364","display_url":"pic.twitter.com\/TcpEtaV364","expanded_url":"https:\/\/twitter.com\/Patrick57200851\/status\/1506109000634535936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506109000634535936,"source_status_id_str":"1506109000634535936","source_user_id":1301238635057090560,"source_user_id_str":"1301238635057090560"}]},"extended_entities":{"media":[{"id":1506108997773971461,"id_str":"1506108997773971461","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","url":"https:\/\/t.co\/TcpEtaV364","display_url":"pic.twitter.com\/TcpEtaV364","expanded_url":"https:\/\/twitter.com\/Patrick57200851\/status\/1506109000634535936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506109000634535936,"source_status_id_str":"1506109000634535936","source_user_id":1301238635057090560,"source_user_id_str":"1301238635057090560"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 03:22:22 +0000 2022","id":1506109000634535936,"id_str":"1506109000634535936","text":"@nypost - https:\/\/t.co\/TcpEtaV364","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nypost","name":"New - York Post","id":17469289,"id_str":"17469289","indices":[0,7]}],"urls":[],"media":[{"id":1506108997773971461,"id_str":"1506108997773971461","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","url":"https:\/\/t.co\/TcpEtaV364","display_url":"pic.twitter.com\/TcpEtaV364","expanded_url":"https:\/\/twitter.com\/Patrick57200851\/status\/1506109000634535936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506108997773971461,"id_str":"1506108997773971461","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObGJ11WUAUeZ3E.jpg","url":"https:\/\/t.co\/TcpEtaV364","display_url":"pic.twitter.com\/TcpEtaV364","expanded_url":"https:\/\/twitter.com\/Patrick57200851\/status\/1506109000634535936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506057911709093889,"in_reply_to_status_id_str":"1506057911709093889","in_reply_to_user_id":17469289,"in_reply_to_user_id_str":"17469289","in_reply_to_screen_name":"nypost","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":97,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/881967738176098305\/tTM9SNgY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/881967738176098305\/tTM9SNgY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1921485614\/1595875736","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":928834841407315970,"id_str":"928834841407315970","name":"Ben","screen_name":"Bgebertsadik","location":"Ethiopia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":327,"friends_count":5002,"listed_count":1,"created_at":"Fri - Nov 10 04:00:57 +0000 2017","favourites_count":872,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Jan 10 12:04:59 +0000 2019","id":1083333883347779584,"id_str":"1083333883347779584","text":"Eco-friendly - house! https:\/\/t.co\/MHwuh6a4BR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MHwuh6a4BR","expanded_url":"https:\/\/twitter.com\/enricomolinari\/status\/1082944914814615552","display_url":"twitter.com\/enricomolinari\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1082944914814615552,"quoted_status_id_str":"1082944914814615552","retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220160916836233219\/NW6Eg0sZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220160916836233219\/NW6Eg0sZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3306491947,"id_str":"3306491947","name":"Deborah - Freeman","screen_name":"Deborah66910359","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":209,"listed_count":0,"created_at":"Wed - Aug 05 00:32:49 +0000 2015","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Nov 08 00:19:01 +0000 2020","id":1325231312450412544,"id_str":"1325231312450412544","text":"https:\/\/t.co\/pkiGqd6noi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkiGqd6noi","expanded_url":"http:\/\/www.surinenglish.com\/lifestyle\/202011\/06\/connery-marbella-marriage-that-20201106104321-v.html","display_url":"surinenglish.com\/lifestyle\/2020\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4079819595,"id_str":"4079819595","name":"Jennifer - Gorski","screen_name":"GorskiJennifer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":117,"listed_count":0,"created_at":"Sat - Oct 31 03:47:52 +0000 2015","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/815337719702454277\/CJn5pkLE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/815337719702454277\/CJn5pkLE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":998290997053444096,"id_str":"998290997053444096","name":"Non-Nihlist - Nuclear Neanderthal","screen_name":"GuilkeyShane","location":"","description":"Give - me a large helical lever with a firm place to stand and I will screw the world.","url":"https:\/\/t.co\/YEnp6QUbf4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YEnp6QUbf4","expanded_url":"http:\/\/www.anthropocene.rock.com","display_url":"anthropocene.rock.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1265,"friends_count":3603,"listed_count":0,"created_at":"Sun - May 20 19:54:55 +0000 2018","favourites_count":236478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6865,"lang":null,"status":{"created_at":"Sat - Mar 26 01:45:37 +0000 2022","id":1507534205407924230,"id_str":"1507534205407924230","text":"RT - @mosaisms: American Bar Association\u2019s Standing Committee on the Federal - Judiciary testified before the Senate Judiciary Committee about\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mosaisms","name":"You - Know What I Mean?\u2026","id":1217072335,"id_str":"1217072335","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:17:44 +0000 2022","id":1507527186823073793,"id_str":"1507527186823073793","text":"American - Bar Association\u2019s Standing Committee on the Federal Judiciary testified - before the Senate Judiciary Commit\u2026 https:\/\/t.co\/GIngg5rMf7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GIngg5rMf7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507527186823073793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":95,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408608261109059584\/bUkZ5L3E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408608261109059584\/bUkZ5L3E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/998290997053444096\/1555374174","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263514088165933056,"id_str":"1263514088165933056","name":"AHMED - IBRAHIM","screen_name":"ALIHARO92661630","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":2366,"listed_count":0,"created_at":"Thu - May 21 16:57:08 +0000 2020","favourites_count":293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":390,"lang":null,"status":{"created_at":"Sat - Feb 27 02:56:44 +0000 2021","id":1365496056679522306,"id_str":"1365496056679522306","text":"RT - @ALIHARO92661630: \u078a\u07a7\u078e\u07a6\u078c\u07a8 \u0780\u07ac\u0794\u07ae - \u0787\u07a6\u078b\u07a8 \u0783\u07a9\u078c\u07a8 \u078b\u07a8\u0783\u07a8\u0787\u07aa\u0785\u07aa\u0789\u07a6\u0786\u07a6\u0781\u07b0 - \u0780\u07ac\u078b\u07aa\u0782\u07aa \u0788\u07ac\u0787\u07b0\u0796\u07ac. \u0787\u07a8\u0782\u07b0\u079d\u07a7\ufdf2@Mihaarunews - @vaavu @ammadaysaud @ammadaysaud @qasimibrahi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ALIHARO92661630","name":"AHMED - IBRAHIM","id":1263514088165933056,"id_str":"1263514088165933056","indices":[3,19]},{"screen_name":"Mihaarunews","name":"Mihaaru","id":717618747423350785,"id_str":"717618747423350785","indices":[81,93]},{"screen_name":"vaavu","name":"vnews.mv","id":68914193,"id_str":"68914193","indices":[94,100]},{"screen_name":"ammadaysaud","name":"Ahmed - Saud","id":3166419534,"id_str":"3166419534","indices":[101,113]},{"screen_name":"ammadaysaud","name":"Ahmed - Saud","id":3166419534,"id_str":"3166419534","indices":[114,126]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 27 02:56:32 +0000 2021","id":1365496007623020548,"id_str":"1365496007623020548","text":"\u078a\u07a7\u078e\u07a6\u078c\u07a8 - \u0780\u07ac\u0794\u07ae \u0787\u07a6\u078b\u07a8 \u0783\u07a9\u078c\u07a8 - \u078b\u07a8\u0783\u07a8\u0787\u07aa\u0785\u07aa\u0789\u07a6\u0786\u07a6\u0781\u07b0 - \u0780\u07ac\u078b\u07aa\u0782\u07aa \u0788\u07ac\u0787\u07b0\u0796\u07ac. \u0787\u07a8\u0782\u07b0\u079d\u07a7\ufdf2@Mihaarunews - @vaavu @ammadaysaud @ammadaysaud\u2026 https:\/\/t.co\/f9MzRYcrM5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mihaarunews","name":"Mihaaru","id":717618747423350785,"id_str":"717618747423350785","indices":[60,72]},{"screen_name":"vaavu","name":"vnews.mv","id":68914193,"id_str":"68914193","indices":[73,79]},{"screen_name":"ammadaysaud","name":"Ahmed - Saud","id":3166419534,"id_str":"3166419534","indices":[80,92]},{"screen_name":"ammadaysaud","name":"Ahmed - Saud","id":3166419534,"id_str":"3166419534","indices":[93,105]}],"urls":[{"url":"https:\/\/t.co\/f9MzRYcrM5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1365496007623020548","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"dv"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"dv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311311091431956480\/3Ri3QcBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311311091431956480\/3Ri3QcBp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":370779452,"id_str":"370779452","name":"Joey","screen_name":"jaj4160","location":"Delray - Beach, FL","description":"Standing up for individuals who can\u2019t defend - themselves !!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":3809,"listed_count":0,"created_at":"Fri - Sep 09 16:26:14 +0000 2011","favourites_count":10906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6690,"lang":null,"status":{"created_at":"Sun - Sep 05 23:11:42 +0000 2021","id":1434655507286052870,"id_str":"1434655507286052870","text":"I - care enough to wait patiently her filing for Divorce !!! https:\/\/t.co\/OQi3uZE6oc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OQi3uZE6oc","expanded_url":"https:\/\/twitter.com\/ananavarro\/status\/1434562199079559175","display_url":"twitter.com\/ananavarro\/sta\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1434562199079559175,"quoted_status_id_str":"1434562199079559175","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/828367114130030592\/90fXzsOL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/828367114130030592\/90fXzsOL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17402539,"id_str":"17402539","name":"James - J. Der, Jr.","screen_name":"JimDer","location":"Milpitas, California","description":"Attorney - at Law","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":623,"listed_count":1,"created_at":"Sat - Nov 15 04:55:02 +0000 2008","favourites_count":705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":176,"lang":null,"status":{"created_at":"Mon - Mar 07 23:35:35 +0000 2022","id":1500978497430245378,"id_str":"1500978497430245378","text":"RT - @Lyrikris10: Dear Little Girl with the beautiful voice,\nMy husband and I - wrote this song as part of a story about healing a family in pa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lyrikris10","name":"Kristen - Anderson-Lopez","id":324687243,"id_str":"324687243","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 07 14:32:27 +0000 2022","id":1500841814793850891,"id_str":"1500841814793850891","text":"Dear - Little Girl with the beautiful voice,\nMy husband and I wrote this song as - part of a story about healing a fami\u2026 https:\/\/t.co\/rgetwt9ENG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rgetwt9ENG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500841814793850891","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1500496884255051776,"quoted_status_id_str":"1500496884255051776","retweet_count":21707,"favorite_count":149728,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1500496884255051776,"quoted_status_id_str":"1500496884255051776","retweet_count":21707,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/889203400256229377\/JRr-eppr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/889203400256229377\/JRr-eppr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":476533808,"id_str":"476533808","name":"shadrack - kiprotich","screen_name":"shaddykip","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":550,"listed_count":0,"created_at":"Sat - Jan 28 07:10:34 +0000 2012","favourites_count":180,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sun - Nov 21 14:04:12 +0000 2021","id":1462421589950095361,"id_str":"1462421589950095361","text":"RT - @DOngwesa: Who will you vote for in the 2022 Presidency?\n\n\ud83d\udd01 for - DP William Ruto\n\u2764\ufe0f for Baba Raila Odinga https:\/\/t.co\/ghak5aIN1T","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DOngwesa","name":"Dr. - Ongwesa PhD.","id":1296320931086962690,"id_str":"1296320931086962690","indices":[3,12]}],"urls":[],"media":[{"id":1353297099278995456,"id_str":"1353297099278995456","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":400,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"}]},"extended_entities":{"media":[{"id":1353297099278995456,"id_str":"1353297099278995456","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":400,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"},{"id":1353297102986735617,"id_str":"1353297102986735617","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgi4sW8AEf2kB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgi4sW8AEf2kB.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":667,"resize":"fit"},"large":{"w":680,"h":667,"resize":"fit"},"medium":{"w":680,"h":667,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 20 03:46:40 +0000 2021","id":1461903797949718528,"id_str":"1461903797949718528","text":"Who - will you vote for in the 2022 Presidency?\n\n\ud83d\udd01 for DP William Ruto\n\u2764\ufe0f - for Baba Raila Odinga https:\/\/t.co\/ghak5aIN1T","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1353297099278995456,"id_str":"1353297099278995456","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":400,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"}]},"extended_entities":{"media":[{"id":1353297099278995456,"id_str":"1353297099278995456","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgiq4XUAAzw1y.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":400,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"},{"id":1353297102986735617,"id_str":"1353297102986735617","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/Esfgi4sW8AEf2kB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Esfgi4sW8AEf2kB.jpg","url":"https:\/\/t.co\/ghak5aIN1T","display_url":"pic.twitter.com\/ghak5aIN1T","expanded_url":"https:\/\/twitter.com\/VictorMochere\/status\/1353297105444622336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":667,"resize":"fit"},"large":{"w":680,"h":667,"resize":"fit"},"medium":{"w":680,"h":667,"resize":"fit"}},"source_status_id":1353297105444622336,"source_status_id_str":"1353297105444622336","source_user_id":3221169342,"source_user_id_str":"3221169342"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":240,"favorite_count":1405,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":240,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927836696028303360\/8pdb2VJO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927836696028303360\/8pdb2VJO_normal.jpg","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3424625458,"id_str":"3424625458","name":"George - Butler","screen_name":"b59258264","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":550,"listed_count":0,"created_at":"Sat - Aug 15 19:02:04 +0000 2015","favourites_count":24845,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5696,"lang":null,"status":{"created_at":"Sun - Mar 20 14:41:51 +0000 2022","id":1505555221371662344,"id_str":"1505555221371662344","text":"RT - @CREWcrew: Why was the Texas National Guard spending time guarding wealthy - private ranches and why did it only stop after the Tribune st\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CREWcrew","name":"Citizens - for Ethics","id":22187085,"id_str":"22187085","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 02:00:20 +0000 2022","id":1505363581319061504,"id_str":"1505363581319061504","text":"Why - was the Texas National Guard spending time guarding wealthy private ranches - and why did it only stop after the\u2026 https:\/\/t.co\/zmhIbB5cx9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zmhIbB5cx9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505363581319061504","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/gainapp.com\" rel=\"nofollow\"\u003eGain Platform\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":752,"favorite_count":1328,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":752,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632630147250802688\/6n2kaVXS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632630147250802688\/6n2kaVXS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1607787505,"id_str":"1607787505","name":"ahmed - moallim osmaan","screen_name":"AhmedMoallim","location":"south africa Rustenburg","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":777,"friends_count":1371,"listed_count":0,"created_at":"Sat - Jul 20 08:19:41 +0000 2013","favourites_count":300126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Fri - Sep 13 21:52:31 +0000 2013","id":378637342762082305,"id_str":"378637342762082305","text":"RT - @alqaradawy: \u064a\u0627 \u062c\u0646\u0648\u062f \u0645\u0635\u0631 \u0648\u0636\u0628\u0627\u0637\u0647\u0627 - \u0641\u064a \u0627\u0644\u0634\u0631\u0637\u0629 \u0623\u0648 \u0627\u0644\u062c\u064a\u0634: - \u0627\u0644\u0644\u0647 \u0633\u064a\u062d\u0627\u0633\u0628\u0643\u0645 - \u0639\u0644\u0649 \u0643\u0644 \u0642\u0637\u0631\u0629 \u062f\u0645 \u062a\u0631\u064a\u0642\u0648\u0646\u0647\u0627 - \u0648\u0644\u0627 \u062a\u0637\u0639 \u0645\u0646 \u064a\u0623\u0645\u0631\u0643 - \u0628\u0642\u062a\u0644 \u0625\u062e\u0648\u0627\u0646\u0643 \u0645\u0646 - \u0623\u0647\u0644 \u0628\u0644\u062f\u0643! #\u0645\u0635\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alqaradawy","name":"\u064a\u0648\u0633\u0641 - \u0627\u0644\u0642\u0631\u0636\u0627\u0648\u064a","id":296137313,"id_str":"296137313","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 13 21:49:22 +0000 2013","id":378636549316820992,"id_str":"378636549316820992","text":"\u064a\u0627 - \u062c\u0646\u0648\u062f \u0645\u0635\u0631 \u0648\u0636\u0628\u0627\u0637\u0647\u0627 - \u0641\u064a \u0627\u0644\u0634\u0631\u0637\u0629 \u0623\u0648 \u0627\u0644\u062c\u064a\u0634: - \u0627\u0644\u0644\u0647 \u0633\u064a\u062d\u0627\u0633\u0628\u0643\u0645 - \u0639\u0644\u0649 \u0643\u0644 \u0642\u0637\u0631\u0629 \u062f\u0645 \u062a\u0631\u064a\u0642\u0648\u0646\u0647\u0627 - \u0648\u0644\u0627 \u062a\u0637\u0639 \u0645\u0646 \u064a\u0623\u0645\u0631\u0643 - \u0628\u0642\u062a\u0644 \u0625\u062e\u0648\u0627\u0646\u0643 \u0645\u0646 - \u0623\u0647\u0644 \u0628\u0644\u062f\u0643! #\u0645\u0635\u0631 #\u0627\u0644\u0627\u0646\u0642\u0644\u0627\u0628","truncated":false,"entities":{"hashtags":[{"text":"\u0645\u0635\u0631","indices":[120,124]},{"text":"\u0627\u0644\u0627\u0646\u0642\u0644\u0627\u0628","indices":[125,134]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":49,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2970133605,"id_str":"2970133605","name":"covi","screen_name":"apCovi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1552,"listed_count":0,"created_at":"Fri - Jan 09 18:25:24 +0000 2015","favourites_count":8406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238475513372585984\/iktwY_D9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238475513372585984\/iktwY_D9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2970133605\/1558309623","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21701837,"id_str":"21701837","name":"Terence - F. Smith","screen_name":"terencefsmith","location":"Annapolis, MD","description":"Journalist - and author of \"Four Wars, Five Presidents: A Reporter''s Journey from Jerusalem - to Saigon to the White House.\" Life-long hack.","url":"https:\/\/t.co\/RQPMJs0NwB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RQPMJs0NwB","expanded_url":"http:\/\/terencefsmith.com","display_url":"terencefsmith.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":388,"friends_count":539,"listed_count":2,"created_at":"Mon - Feb 23 22:28:30 +0000 2009","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":338,"lang":null,"status":{"created_at":"Thu - Mar 24 18:52:07 +0000 2022","id":1507067754184163330,"id_str":"1507067754184163330","text":"When - this farcical confirmation hearing is behind us -- and Judge Jackson is Justice - Jackson -- surely the Senate w\u2026 https:\/\/t.co\/ml3OBZKsLa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ml3OBZKsLa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507067754184163330","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482788024463282184\/7WYgBHwV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482788024463282184\/7WYgBHwV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21701837\/1642359692","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24546614,"id_str":"24546614","name":"Dashiell - Eaves","screen_name":"DashEaves","location":"Hell\u2019s Kitchen, NYC","description":"Actor-type. - Crispy fact-based shell, creamy emotional center. #DrDeath on @peacocktv. - @XmasCarolBway, @SingStreetBway. @STOMPNYC original. #bikenyc\ud83d\udeb2","url":"https:\/\/t.co\/ad7m5alnp0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ad7m5alnp0","expanded_url":"http:\/\/www.dashielleaves.com","display_url":"dashielleaves.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3769,"listed_count":18,"created_at":"Sun - Mar 15 16:37:24 +0000 2009","favourites_count":117922,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30138,"lang":null,"status":{"created_at":"Sat - Mar 26 03:29:34 +0000 2022","id":1507560364699004929,"id_str":"1507560364699004929","text":"@PreetBharara - And yet he won\u2019t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PreetBharara","name":"Preet - Bharara","id":834081571493785600,"id_str":"834081571493785600","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507559529109721088,"in_reply_to_status_id_str":"1507559529109721088","in_reply_to_user_id":834081571493785600,"in_reply_to_user_id_str":"834081571493785600","in_reply_to_screen_name":"PreetBharara","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492228130278461441\/z1ezgp2z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492228130278461441\/z1ezgp2z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24546614\/1568209081","profile_link_color":"94D487","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":103960825,"id_str":"103960825","name":"Ellen - Doyle","screen_name":"EllenLDoyle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":374,"listed_count":0,"created_at":"Mon - Jan 11 20:29:00 +0000 2010","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625244732\/gravatar1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625244732\/gravatar1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172672552,"id_str":"1172672552","name":"lee - kinyua","screen_name":"LeemkinLee","location":"","description":"Barba non - facit philosophum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":1109,"listed_count":0,"created_at":"Tue - Feb 12 17:57:42 +0000 2013","favourites_count":576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":240,"lang":null,"status":{"created_at":"Tue - Mar 22 19:47:42 +0000 2022","id":1506356966263820301,"id_str":"1506356966263820301","text":"@LarsJohanL - @Krepublics2_ Beautiful \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LarsJohanL","name":"Lars-Johan - Larsson","id":394782575,"id_str":"394782575","indices":[0,11]},{"screen_name":"Krepublics2_","name":"\ud835\udc01\ud835\udc1e\ud835\udc2c\ud835\udc2d\ud835\udc1e - \ud835\udc18\ud835\udc1e\ud835\udc27\ud835\udc2e\u2122\u272a","id":1296160922508111876,"id_str":"1296160922508111876","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505999058825097219,"in_reply_to_status_id_str":"1505999058825097219","in_reply_to_user_id":394782575,"in_reply_to_user_id_str":"394782575","in_reply_to_screen_name":"LarsJohanL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269645021575340038\/CKj2S6cP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269645021575340038\/CKj2S6cP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172672552\/1586613768","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":838936003,"id_str":"838936003","name":"Rob - Dando","screen_name":"Rdan2Rob","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":419,"listed_count":0,"created_at":"Sat - Sep 22 02:25:06 +0000 2012","favourites_count":161,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Fri - Mar 25 14:14:38 +0000 2022","id":1507360313942974464,"id_str":"1507360313942974464","text":"RT - @OccupyDemocrats: BREAKING NEWS: The New York Times drops new bombshell, reveals - that Supreme Court Justice Clarence Thomas\u2019 wife Ginny\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:47:39 +0000 2022","id":1507157226267586566,"id_str":"1507157226267586566","text":"BREAKING - NEWS: The New York Times drops new bombshell, reveals that Supreme Court Justice - Clarence Thomas\u2019 wife Gin\u2026 https:\/\/t.co\/1N7nl7bBX7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1N7nl7bBX7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507157226267586566","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9184,"favorite_count":20097,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9184,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4841363655,"id_str":"4841363655","name":"Miranda - Levingston she\/her","screen_name":"MLevNews","location":"BROOKLYN","description":"Brooklyn - journo with stuff in @vicenews @theBKreader @bushwickdaily @archdigest + UP - mag so far. mirandalevingston@Gmail.com or DMs for hot goss","url":"https:\/\/t.co\/XwQPgiudq9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XwQPgiudq9","expanded_url":"https:\/\/mirandalevingston.com\/","display_url":"mirandalevingston.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":184,"friends_count":623,"listed_count":0,"created_at":"Sun - Jan 24 09:34:26 +0000 2016","favourites_count":7221,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":815,"lang":null,"status":{"created_at":"Thu - Mar 10 07:43:04 +0000 2022","id":1501825951654625282,"id_str":"1501825951654625282","text":"@emmacarew - Honestly so helpful. Wish I saw this a few years ago","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emmacarew","name":"Emma - Carew Grovum","id":84764215,"id_str":"84764215","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501601747852267523,"in_reply_to_status_id_str":"1501601747852267523","in_reply_to_user_id":84764215,"in_reply_to_user_id_str":"84764215","in_reply_to_screen_name":"emmacarew","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443226608710651919\/iJ_WnHbJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443226608710651919\/iJ_WnHbJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4841363655\/1583290381","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3158481204,"id_str":"3158481204","name":"Lupe - Loar","screen_name":"alvillarloar","location":"Arizona, USA","description":"Loves - the outdoors, owner of 3 fur babies.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":159,"listed_count":0,"created_at":"Thu - Apr 16 03:51:18 +0000 2015","favourites_count":27682,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10430,"lang":null,"status":{"created_at":"Fri - Mar 25 19:32:31 +0000 2022","id":1507440310552444928,"id_str":"1507440310552444928","text":"The - fact that he is even 50 miles away in Poland, Thank You Mr President, for - show what a true President is. https:\/\/t.co\/yK5lMEcd1a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yK5lMEcd1a","expanded_url":"https:\/\/twitter.com\/KellyO\/status\/1507385096424370181","display_url":"twitter.com\/KellyO\/status\/\u2026","indices":[109,132]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507385096424370181,"quoted_status_id_str":"1507385096424370181","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598175806343385088\/mKcREtAU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598175806343385088\/mKcREtAU_normal.jpg","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3302463689,"id_str":"3302463689","name":"ghuma - \ud83c\uddfa\ud83c\uddec \ud83c\uddf9\ud83c\uddff","screen_name":"gumaali1","location":"Arua - ","description":"Black is what I am","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":342,"friends_count":3775,"listed_count":5,"created_at":"Fri - May 29 05:45:38 +0000 2015","favourites_count":1499,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":436,"lang":null,"status":{"created_at":"Thu - Mar 24 09:57:51 +0000 2022","id":1506933304297197569,"id_str":"1506933304297197569","text":"@Urukhai43477325 - @ProfessorWerner You''re being emotional","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Urukhai43477325","name":"@Urukhai","id":1225852508960174080,"id_str":"1225852508960174080","indices":[0,16]},{"screen_name":"ProfessorWerner","name":"Professor - Richard A. Werner","id":1294234550927753217,"id_str":"1294234550927753217","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506741760227164177,"in_reply_to_status_id_str":"1506741760227164177","in_reply_to_user_id":1225852508960174080,"in_reply_to_user_id_str":"1225852508960174080","in_reply_to_screen_name":"Urukhai43477325","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439391929956028421\/MCxTLqs9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439391929956028421\/MCxTLqs9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302463689\/1472047014","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":63726614,"id_str":"63726614","name":"Mimi - Hodges","screen_name":"ghodges1","location":"","description":"It varies from - moment to moment","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":764,"listed_count":0,"created_at":"Fri - Aug 07 13:58:00 +0000 2009","favourites_count":23590,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6986,"lang":null,"status":{"created_at":"Sat - Mar 26 09:19:54 +0000 2022","id":1507648526490214402,"id_str":"1507648526490214402","text":"RT - @matthewjdowd: Let this sink in: a gop president, gop senators, gop representatives, - and the wife of a supreme court justice were direct\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewjdowd","name":"Matthew - Dowd","id":288363743,"id_str":"288363743","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:04:11 +0000 2022","id":1507387881278611497,"id_str":"1507387881278611497","text":"Let - this sink in: a gop president, gop senators, gop representatives, and the - wife of a supreme court justice were\u2026 https:\/\/t.co\/2oFVYMRYMb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2oFVYMRYMb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507387881278611497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16678,"favorite_count":60486,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16678,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BFF5EC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1560689103\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1560689103\/image_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4439263949,"id_str":"4439263949","name":"Rizwan","screen_name":"RizwanSocio","location":"Guangdong, - People''s Republic of China","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":202,"listed_count":0,"created_at":"Thu - Dec 10 16:29:36 +0000 2015","favourites_count":1495,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Fri - Mar 18 18:34:50 +0000 2022","id":1504889078269059074,"id_str":"1504889078269059074","text":"@ImranKhanPTI - https:\/\/t.co\/G5nFcjmMk9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ImranKhanPTI","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[0,13]}],"urls":[],"media":[{"id":1504889071746830336,"id_str":"1504889071746830336","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwozPWUAAhEod.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwozPWUAAhEod.jpg","url":"https:\/\/t.co\/G5nFcjmMk9","display_url":"pic.twitter.com\/G5nFcjmMk9","expanded_url":"https:\/\/twitter.com\/RizwanSocio\/status\/1504889078269059074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504889071746830336,"id_str":"1504889071746830336","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwozPWUAAhEod.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwozPWUAAhEod.jpg","url":"https:\/\/t.co\/G5nFcjmMk9","display_url":"pic.twitter.com\/G5nFcjmMk9","expanded_url":"https:\/\/twitter.com\/RizwanSocio\/status\/1504889078269059074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504701815660724241,"in_reply_to_status_id_str":"1504701815660724241","in_reply_to_user_id":122453931,"in_reply_to_user_id_str":"122453931","in_reply_to_screen_name":"ImranKhanPTI","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/674991418834870272\/j-9j-ebw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/674991418834870272\/j-9j-ebw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":622041560,"id_str":"622041560","name":"Genevieve - Tyrrell","screen_name":"genevievetyr","location":"Los Angeles \/ New York","description":"Costume - Designer - Hank''s Mom #annpatchett influencer #booktok","url":"https:\/\/t.co\/2s5QailvwM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2s5QailvwM","expanded_url":"http:\/\/genevievetyrrell.com","display_url":"genevievetyrrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":705,"friends_count":1019,"listed_count":12,"created_at":"Fri - Jun 29 16:31:35 +0000 2012","favourites_count":28271,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1587,"lang":null,"status":{"created_at":"Fri - Mar 25 04:46:05 +0000 2022","id":1507217232232812544,"id_str":"1507217232232812544","text":"RT - @jenmarie410: Alex refused to stop playing the piano, DEFIANTLY playing louder - against the soaring bomb sirens in #Ukraine, as an \u201cinner\u2026","truncated":false,"entities":{"hashtags":[{"text":"Ukraine","indices":[117,125]}],"symbols":[],"user_mentions":[{"screen_name":"jenmarie410","name":"\ud83c\uddfa\ud83c\udde6 - Glory to Ukraine-Glory to the Heroes \ud83c\uddfa\ud83c\udde6","id":33337778,"id_str":"33337778","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 04:30:48 +0000 2022","id":1506126224229376005,"id_str":"1506126224229376005","text":"Alex - refused to stop playing the piano, DEFIANTLY playing louder against the soaring - bomb sirens in #Ukraine, as an\u2026 https:\/\/t.co\/HOOY1Q9Qr7","truncated":true,"entities":{"hashtags":[{"text":"Ukraine","indices":[100,108]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HOOY1Q9Qr7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506126224229376005","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":395,"favorite_count":990,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":395,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501575367424765952\/WUTU8fvp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501575367424765952\/WUTU8fvp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622041560\/1646838451","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":701132077522092032,"id_str":"701132077522092032","name":"TM28","screen_name":"TM282828","location":"","description":"Mother, - Wife and proud to be a conservative supporter of President Trump.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":874,"friends_count":1695,"listed_count":2,"created_at":"Sat - Feb 20 19:51:28 +0000 2016","favourites_count":75054,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51835,"lang":null,"status":{"created_at":"Fri - Mar 25 18:36:40 +0000 2022","id":1507426254814957571,"id_str":"1507426254814957571","text":"@YNot99872327 - \ud83d\ude4f\ud83c\udffb\ud83d\ude4f\ud83c\udffb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YNot99872327","name":"YkNot","id":1185726044445331456,"id_str":"1185726044445331456","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507128441262555143,"in_reply_to_status_id_str":"1507128441262555143","in_reply_to_user_id":1185726044445331456,"in_reply_to_user_id_str":"1185726044445331456","in_reply_to_screen_name":"YNot99872327","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422940695418003464\/xV05Omg6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422940695418003464\/xV05Omg6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1196806653615710208,"id_str":"1196806653615710208","name":"Swendy684@gmail.com","screen_name":"swendy684","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":132,"listed_count":0,"created_at":"Tue - Nov 19 15:05:28 +0000 2019","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Wed - Dec 23 00:16:48 +0000 2020","id":1341538209306726400,"id_str":"1341538209306726400","text":"@Tlid1984 - Hey, I have 6 months on December 24th. Way to go","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196806816975458304\/jheFcwF2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196806816975458304\/jheFcwF2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44640045,"id_str":"44640045","name":"Rick - Morris","screen_name":"mediarick","location":"Evanston, IL","description":"Media - professor","url":"http:\/\/t.co\/xUQGhBRwJD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xUQGhBRwJD","expanded_url":"http:\/\/blog.medialawprofessor.org","display_url":"blog.medialawprofessor.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":1792,"listed_count":1,"created_at":"Thu - Jun 04 15:27:18 +0000 2009","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24559249,"id_str":"24559249","name":"Harry","screen_name":"Harryfox5","location":"Washington - DC","description":"Avid politico, IT executive, sailor and lover of...","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":452,"listed_count":0,"created_at":"Sun - Mar 15 18:07:20 +0000 2009","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1741372965\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1741372965\/image_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24059222,"id_str":"24059222","name":"Corey - Bryant","screen_name":"jcbryant1","location":"Orlando, FL","description":"Avid - traveler, political junkie, LGBTQIA+ activist, music & theater enthusiast. - Board President, @OrlandoPride. Proud alum, @UofAlabama. My words are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":178,"friends_count":872,"listed_count":0,"created_at":"Thu - Mar 12 22:51:39 +0000 2009","favourites_count":1370,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2216,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/870309562221551616\/oNmhULMQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/870309562221551616\/oNmhULMQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24059222\/1484684834","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1204796752089366529,"id_str":"1204796752089366529","name":"j","screen_name":"j92188013","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":136,"listed_count":0,"created_at":"Wed - Dec 11 16:15:17 +0000 2019","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Thu - Nov 05 03:29:27 +0000 2020","id":1324192075303260161,"id_str":"1324192075303260161","text":"RT - @vinn_ayy: Nevada: https:\/\/t.co\/aR5QGLWPAS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vinn_ayy","name":"Vinny - Thomas","id":867008801433669634,"id_str":"867008801433669634","indices":[3,12]}],"urls":[],"media":[{"id":1324145539798257665,"id_str":"1324145539798257665","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","url":"https:\/\/t.co\/aR5QGLWPAS","display_url":"pic.twitter.com\/aR5QGLWPAS","expanded_url":"https:\/\/twitter.com\/vinn_ayy\/status\/1324145666856288257\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1324145666856288257,"source_status_id_str":"1324145666856288257","source_user_id":867008801433669634,"source_user_id_str":"867008801433669634"}]},"extended_entities":{"media":[{"id":1324145539798257665,"id_str":"1324145539798257665","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","url":"https:\/\/t.co\/aR5QGLWPAS","display_url":"pic.twitter.com\/aR5QGLWPAS","expanded_url":"https:\/\/twitter.com\/vinn_ayy\/status\/1324145666856288257\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1324145666856288257,"source_status_id_str":"1324145666856288257","source_user_id":867008801433669634,"source_user_id_str":"867008801433669634","video_info":{"aspect_ratio":[9,16],"duration_millis":52733,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/pl\/eKj4wd18rHl_MvVB.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/360x640\/hblliQPwz0_x0mPw.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/720x1280\/UOl0JDAYnOvhD-LN.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/320x568\/zqQO0qBpt7xozCad.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 05 00:25:03 +0000 2020","id":1324145666856288257,"id_str":"1324145666856288257","text":"Nevada: - https:\/\/t.co\/aR5QGLWPAS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1324145539798257665,"id_str":"1324145539798257665","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","url":"https:\/\/t.co\/aR5QGLWPAS","display_url":"pic.twitter.com\/aR5QGLWPAS","expanded_url":"https:\/\/twitter.com\/vinn_ayy\/status\/1324145666856288257\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1324145539798257665,"id_str":"1324145539798257665","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1324145539798257665\/pu\/img\/fshrww3CewxyyEyI.jpg","url":"https:\/\/t.co\/aR5QGLWPAS","display_url":"pic.twitter.com\/aR5QGLWPAS","expanded_url":"https:\/\/twitter.com\/vinn_ayy\/status\/1324145666856288257\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":52733,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/pl\/eKj4wd18rHl_MvVB.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/360x640\/hblliQPwz0_x0mPw.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/720x1280\/UOl0JDAYnOvhD-LN.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1324145539798257665\/pu\/vid\/320x568\/zqQO0qBpt7xozCad.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2153,"favorite_count":13051,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":2153,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3271564652,"id_str":"3271564652","name":"bubungngng - \ud83d\udef9","screen_name":"bubungngng","location":"US","description":"Beto - Forever","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":122,"friends_count":1545,"listed_count":0,"created_at":"Wed - Jul 08 05:12:58 +0000 2015","favourites_count":37645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12182,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619007230604488705\/mXuwP4ss_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619007230604488705\/mXuwP4ss_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3271564652\/1436335934","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2169586315,"id_str":"2169586315","name":"Sonya - Woolsey","screen_name":"WoolseySonya","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":449,"listed_count":0,"created_at":"Sat - Nov 02 04:51:46 +0000 2013","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268927702255439874,"id_str":"1268927702255439874","name":"CCRNSWIFT","screen_name":"ccrnswift","location":"","description":"Observer - of human nature. Lover of life. Believer in peace. Student of bad decisions. - Faith in humanity. (he\/him)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1303,"friends_count":3303,"listed_count":0,"created_at":"Fri - Jun 05 15:28:47 +0000 2020","favourites_count":1982,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":870,"lang":null,"status":{"created_at":"Tue - Jan 19 17:48:53 +0000 2021","id":1351587446916526080,"id_str":"1351587446916526080","text":"@JohnCornyn - @playbookplus Conservatives who for 8 years sowed the dragon''s teeth of partisan - politics are horrified\u2026 https:\/\/t.co\/6bsT3FZXYA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnCornyn","name":"Senator - John Cornyn","id":13218102,"id_str":"13218102","indices":[0,11]},{"screen_name":"playbookplus","name":"POLITICO - Playbook","id":1368922651926872066,"id_str":"1368922651926872066","indices":[12,25]}],"urls":[{"url":"https:\/\/t.co\/6bsT3FZXYA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1351587446916526080","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1351490332668669952,"in_reply_to_status_id_str":"1351490332668669952","in_reply_to_user_id":13218102,"in_reply_to_user_id_str":"13218102","in_reply_to_screen_name":"JohnCornyn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268928016618590211\/QtyqNAHc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268928016618590211\/QtyqNAHc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268927702255439874\/1591637150","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1161284576,"id_str":"1161284576","name":"LovelyLight","screen_name":"austintxerin","location":"","description":"Doctor - by day. Mother of 2. My tweets are not intended as medical advice. All opinions - are my own only and not reflective of any institution. #PWDP She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":653,"friends_count":2556,"listed_count":3,"created_at":"Fri - Feb 08 21:36:04 +0000 2013","favourites_count":23130,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4523,"lang":null,"status":{"created_at":"Sat - Mar 26 02:52:28 +0000 2022","id":1507551027247161349,"id_str":"1507551027247161349","text":"RT - @TheRickWilson: 1\/ In the Before Times, there were boundaries. There were - spoken and unspoken rules of behavior. I''m not the first to ob\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:38:54 +0000 2022","id":1507351320663109651,"id_str":"1507351320663109651","text":"1\/ - In the Before Times, there were boundaries. There were spoken and unspoken - rules of behavior. I''m not the first\u2026 https:\/\/t.co\/AL2tuGoIhP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AL2tuGoIhP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507351320663109651","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10362,"favorite_count":41059,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10362,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496692246535716866\/KETyi3nU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496692246535716866\/KETyi3nU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161284576\/1485902924","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":184645773,"id_str":"184645773","name":"Shaun - Poole","screen_name":"Shaunin6","location":"Harrow, Ontario","description":"Person - with a variety of interests. In Canada, but at home pretty much anywhere.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":1897,"listed_count":19,"created_at":"Mon - Aug 30 03:12:27 +0000 2010","favourites_count":2062,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2834,"lang":null,"status":{"created_at":"Sun - Mar 13 04:05:21 +0000 2022","id":1502858326090162176,"id_str":"1502858326090162176","text":"RT - @sbg1: The most lucid explanation of Putin and his sh*tshow of a war you\u2019ll - find, from Stalin biographer Stephen Kotkin, in conversation\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sbg1","name":"Susan - Glasser","id":31037199,"id_str":"31037199","indices":[3,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 12 12:28:26 +0000 2022","id":1502622543533981696,"id_str":"1502622543533981696","text":"The - most lucid explanation of Putin and his sh*tshow of a war you\u2019ll find, - from Stalin biographer Stephen Kotkin, i\u2026 https:\/\/t.co\/C83KQV1Q8J","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C83KQV1Q8J","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502622543533981696","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1480,"favorite_count":3860,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1480,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134013602\/Invisionation-7090_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134013602\/Invisionation-7090_normal.jpg","profile_link_color":"2FA1ED","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1064024266436370432,"id_str":"1064024266436370432","name":"Mystery - Man","screen_name":"SteveFreier","location":"Wisconsin","description":"Into - Politics, Metaphysics, History, Art, Philosophy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":254,"friends_count":362,"listed_count":2,"created_at":"Sun - Nov 18 05:15:28 +0000 2018","favourites_count":35847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14341,"lang":null,"status":{"created_at":"Sat - Mar 26 04:28:47 +0000 2022","id":1507575267405012998,"id_str":"1507575267405012998","text":"RT - @yearbookceo: @DrGJackBrown I didn\u2019t remember that about Thomas. The - SCOTUS had no business deciding the winner of that election. First\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yearbookceo","name":"KC","id":36561161,"id_str":"36561161","indices":[3,15]},{"screen_name":"DrGJackBrown","name":"Dr. - Jack Brown","id":212445456,"id_str":"212445456","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:47:57 +0000 2022","id":1507429094404739072,"id_str":"1507429094404739072","text":"@DrGJackBrown - I didn\u2019t remember that about Thomas. The SCOTUS had no business deciding - the winner of that election.\u2026 https:\/\/t.co\/UAAXtRKLHV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrGJackBrown","name":"Dr. - Jack Brown","id":212445456,"id_str":"212445456","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/UAAXtRKLHV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507429094404739072","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507417531421659138,"in_reply_to_status_id_str":"1507417531421659138","in_reply_to_user_id":212445456,"in_reply_to_user_id_str":"212445456","in_reply_to_screen_name":"DrGJackBrown","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":55,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1088623444768391168\/WlgnC75u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1088623444768391168\/WlgnC75u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1064024266436370432\/1632495432","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256216065249406976,"id_str":"1256216065249406976","name":"SATYAM - MISHRA","screen_name":"SATYAMM67480693","location":"BIKRAMGANJ ROHTAS","description":"Now - I am studying in BCA 3rd year","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":656,"listed_count":0,"created_at":"Fri - May 01 13:37:13 +0000 2020","favourites_count":3571,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1866,"lang":null,"status":{"created_at":"Fri - Mar 25 16:40:44 +0000 2022","id":1507397078615740416,"id_str":"1507397078615740416","text":"RT - @BiharHealthDept: #COVID\u30fc19 Updates Bihar:\n(\u0936\u093e\u092e 4 \u092c\u091c\u0947 - \u0924\u0915)\n\n\u27a1\ufe0f\u0935\u093f\u0917\u0924 24 \u0918\u0902\u091f\u0947 - \u092e\u0947\u0902 \u0915\u0941\u0932 91,320\ud83e\uddea \u0938\u0948\u092e\u094d\u092a\u0932 - \u0915\u0940 \u091c\u093e\u0902\u091a \u0939\u0941\u0908 \u0939\u0948\u0964\n\n\u27a1\ufe0f\u0905\u092c\u0924\u0915 - \u0915\u0941\u0932 8,18,159 \u092e\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID\u30fc19","indices":[21,30]}],"symbols":[],"user_mentions":[{"screen_name":"BiharHealthDept","name":"Bihar - Health Dept","id":1135503797025828864,"id_str":"1135503797025828864","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:36:43 +0000 2022","id":1507396067695816710,"id_str":"1507396067695816710","text":"#COVID\u30fc19 - Updates Bihar:\n(\u0936\u093e\u092e 4 \u092c\u091c\u0947 \u0924\u0915)\n\n\u27a1\ufe0f\u0935\u093f\u0917\u0924 - 24 \u0918\u0902\u091f\u0947 \u092e\u0947\u0902 \u0915\u0941\u0932 91,320\ud83e\uddea - \u0938\u0948\u092e\u094d\u092a\u0932 \u0915\u0940 \u091c\u093e\u0902\u091a - \u0939\u0941\u0908 \u0939\u0948\u0964\n\n\u27a1\ufe0f\u0905\u092c\u0924\u0915 - \u0915\u0941\u0932 8,18,159\u2026 https:\/\/t.co\/1YJnM5FZaJ","truncated":true,"entities":{"hashtags":[{"text":"COVID\u30fc19","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1YJnM5FZaJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507396067695816710","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":46,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274732971396718593\/oSoFTv8B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274732971396718593\/oSoFTv8B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256216065249406976\/1592757480","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":876321972967419904,"id_str":"876321972967419904","name":"MUHAMMAD - IMRAN","screen_name":"4M_IMRAN_N_SF99","location":"Jhang , Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":5004,"listed_count":4,"created_at":"Sun - Jun 18 06:13:34 +0000 2017","favourites_count":4152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":576,"lang":null,"status":{"created_at":"Wed - Dec 15 10:00:43 +0000 2021","id":1471057623965442052,"id_str":"1471057623965442052","text":"\u0633\u0627\u0648\u0646 - \u06a9\u06cc \u06be\u064e\u0648\u0627\u0624\u06ba \u06a9\u0627 \u060c \u062c\u0628 - \u0634\u0648\u0631 \u0633\u0646\u0648 \u06af\u06d2 \u062a\u0645\u06d4\u06d4\u06d4 - https:\/\/t.co\/x2glYJ9LHf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1471057467798863877,"id_str":"1471057467798863877","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471057467798863877\/pu\/img\/zJtCYuZiKhfozIfb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471057467798863877\/pu\/img\/zJtCYuZiKhfozIfb.jpg","url":"https:\/\/t.co\/x2glYJ9LHf","display_url":"pic.twitter.com\/x2glYJ9LHf","expanded_url":"https:\/\/twitter.com\/4M_IMRAN_N_SF99\/status\/1471057623965442052\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":426,"resize":"fit"},"large":{"w":1148,"h":720,"resize":"fit"},"medium":{"w":1148,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1471057467798863877,"id_str":"1471057467798863877","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471057467798863877\/pu\/img\/zJtCYuZiKhfozIfb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471057467798863877\/pu\/img\/zJtCYuZiKhfozIfb.jpg","url":"https:\/\/t.co\/x2glYJ9LHf","display_url":"pic.twitter.com\/x2glYJ9LHf","expanded_url":"https:\/\/twitter.com\/4M_IMRAN_N_SF99\/status\/1471057623965442052\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":426,"resize":"fit"},"large":{"w":1148,"h":720,"resize":"fit"},"medium":{"w":1148,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[287,180],"duration_millis":83338,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471057467798863877\/pu\/vid\/1148x720\/XWfiJgmgpiIda0sd.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471057467798863877\/pu\/vid\/430x270\/dugebzsHU_QBaNaa.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471057467798863877\/pu\/vid\/574x360\/w-Ww6nmstz4aBKA6.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471057467798863877\/pu\/pl\/guGTPlAue04QV4l0.m3u8?tag=12&container=fmp4&v=c04"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1471057302690189315,"in_reply_to_status_id_str":"1471057302690189315","in_reply_to_user_id":876321972967419904,"in_reply_to_user_id_str":"876321972967419904","in_reply_to_screen_name":"4M_IMRAN_N_SF99","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339972440848515073\/ULaZLm4V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339972440848515073\/ULaZLm4V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/876321972967419904\/1517208883","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2366486084,"id_str":"2366486084","name":"Claudia - Curran","screen_name":"Ciccurran","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":1788,"listed_count":0,"created_at":"Sat - Mar 01 04:03:27 +0000 2014","favourites_count":838,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":982,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439613238364217344\/eMt__SZD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439613238364217344\/eMt__SZD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366486084\/1393646941","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128821589363965952,"id_str":"1128821589363965952","name":"Gaurav - Tiwari","screen_name":"sibbu110","location":" Uttar pardesh, India","description":"#Nothing - is #impossible !!\n\nBe your own reason to smile \ud83d\ude42","url":"https:\/\/t.co\/bCKqJ3A91z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bCKqJ3A91z","expanded_url":"http:\/\/gauravtiwari.com.tr","display_url":"gauravtiwari.com.tr","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":120,"listed_count":0,"created_at":"Thu - May 16 00:36:54 +0000 2019","favourites_count":9097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":859,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459850053695148034\/JazB9jMN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459850053695148034\/JazB9jMN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128821589363965952\/1635927768","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":916423679713652736,"id_str":"916423679713652736","name":"Guaro - Sour","screen_name":"AlvaroBH08","location":"","description":"Love Pearl Jam, - grunge, soccer, animals. Like politics, hate politicians.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":139,"listed_count":0,"created_at":"Fri - Oct 06 22:03:26 +0000 2017","favourites_count":874,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1097,"lang":null,"status":{"created_at":"Fri - Mar 25 04:03:08 +0000 2022","id":1507206422513156102,"id_str":"1507206422513156102","text":"RT - @2010MisterChip: CRC \ud83c\udde8\ud83c\uddf71-0\ud83c\udde8\ud83c\udde6 CAN - (FT) - Costa Rica acaba con la condici\u00f3n de invicto de Canad\u00e1 en - las Eliminatorias para #Qatar2022 y de\u2026","truncated":false,"entities":{"hashtags":[{"text":"Qatar2022","indices":[124,134]}],"symbols":[],"user_mentions":[{"screen_name":"2010MisterChip","name":"MisterChip - (Alexis)","id":69962890,"id_str":"69962890","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:00:54 +0000 2022","id":1507205861235699712,"id_str":"1507205861235699712","text":"CRC - \ud83c\udde8\ud83c\uddf71-0\ud83c\udde8\ud83c\udde6 CAN (FT) - Costa Rica - acaba con la condici\u00f3n de invicto de Canad\u00e1 en las Eliminatorias - para #Qatar2022\u2026 https:\/\/t.co\/OWxQ2Ef7hT","truncated":true,"entities":{"hashtags":[{"text":"Qatar2022","indices":[104,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OWxQ2Ef7hT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507205861235699712","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":231,"favorite_count":2482,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":231,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1071393616864665600\/Oy6OsQnq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071393616864665600\/Oy6OsQnq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916423679713652736\/1509150932","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231426097566248960,"id_str":"1231426097566248960","name":"BAPI - DAS","screen_name":"BAPIDAS60902525","location":"West Bengal, India","description":"APNA - TIME\u200c\ud83d\ude4f AGaYA \ud83e\udd2a\ud83d\ude08\ud83d\udc7f\ud83d\udc8b\ud83d\udc8b\ud83d\ude4f\ud83d\udc69\u200d\ud83e\uddb3\ud83d\udc83\ud83c\udf39\ud83d\ude49\ud83d\ude48\ud83d\ude4a\ud83c\udf53\ud83c\udf81\ud83c\udf8b\ud83c\udf83\ud83c\udf87\ud83c\udfa5 - \ud83d\udcaf\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf - Follow back","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":125,"friends_count":4994,"listed_count":0,"created_at":"Sun - Feb 23 03:50:57 +0000 2020","favourites_count":83696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":910,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307583392054083584\/tgaaFbdQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307583392054083584\/tgaaFbdQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1231426097566248960\/1582611191","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3008991846,"id_str":"3008991846","name":"Nick--J","screen_name":"m_ahsan99","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":3113,"listed_count":0,"created_at":"Tue - Feb 03 09:38:45 +0000 2015","favourites_count":926,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":212,"lang":null,"status":{"created_at":"Sat - Dec 18 03:58:37 +0000 2021","id":1472053663900348416,"id_str":"1472053663900348416","text":"RT - @Dom_Perrottet: We''ve done so well and come this far - so now''s no time - to be complacent. \n\nLet''s keep safe, keep our recovery on track\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dom_Perrottet","name":"Dom - Perrottet","id":305328519,"id_str":"305328519","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 07:50:03 +0000 2021","id":1471749517259132929,"id_str":"1471749517259132929","text":"We''ve - done so well and come this far - so now''s no time to be complacent. \n\nLet''s - keep safe, keep our recovery on t\u2026 https:\/\/t.co\/C6fr561nBf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C6fr561nBf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471749517259132929","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":386,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452272394740150275\/5bkC2kFW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452272394740150275\/5bkC2kFW_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258766637550854146,"id_str":"1258766637550854146","name":"Lonelydoll","screen_name":"gm5629771","location":"Mountain - Home, AR","description":"I love nature and the simple things life has to offer, - I am humble and down to earth..hoping to meet my man of dream and become what - we behold.#love\u2763\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":99,"listed_count":0,"created_at":"Fri - May 08 14:32:19 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Nov 03 13:51:34 +0000 2020","id":1323623857694138369,"id_str":"1323623857694138369","text":"@1428d88eeb96484 - @knobcreek Hello sweetie","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"1428d88eeb96484","name":"Perry - Tormey","id":3078505807,"id_str":"3078505807","indices":[0,16]},{"screen_name":"knobcreek","name":"Knob - Creek","id":2188731330,"id_str":"2188731330","indices":[17,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1323079352440004613,"in_reply_to_status_id_str":"1323079352440004613","in_reply_to_user_id":3078505807,"in_reply_to_user_id_str":"3078505807","in_reply_to_screen_name":"1428d88eeb96484","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258813963686432769\/gDiQ-hoz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258813963686432769\/gDiQ-hoz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1258766637550854146\/1588959626","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220066335,"id_str":"1220066335","name":"Bruce","screen_name":"bruce52039671","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":531,"listed_count":1,"created_at":"Tue - Feb 26 00:04:53 +0000 2013","favourites_count":6074,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6219,"lang":null,"status":{"created_at":"Thu - Mar 24 19:24:23 +0000 2022","id":1507075874121666579,"id_str":"1507075874121666579","text":"RT - @RepAdamSchiff: The Citizens United decision enabled special interest groups - to pour billions into elections and erode public trust.\n\nTo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepAdamSchiff","name":"Adam - Schiff","id":29501253,"id_str":"29501253","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:48:31 +0000 2022","id":1507051748808175621,"id_str":"1507051748808175621","text":"The - Citizens United decision enabled special interest groups to pour billions - into elections and erode public trust\u2026 https:\/\/t.co\/25IwSqd4Vy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/25IwSqd4Vy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507051748808175621","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13343,"favorite_count":56277,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13343,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503173124847050754\/yb_qUUl0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503173124847050754\/yb_qUUl0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220066335\/1408800797","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19134037,"id_str":"19134037","name":"Jamin","screen_name":"jaminsays","location":"\u00dcT: - 43.829065,-85.860645","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":422,"friends_count":2619,"listed_count":4,"created_at":"Sun - Jan 18 02:56:44 +0000 2009","favourites_count":18423,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10012,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000831226420\/b61019f1cee410166bb610fe51582c69_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000831226420\/b61019f1cee410166bb610fe51582c69_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19134037\/1354509725","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":974701068058738688,"id_str":"974701068058738688","name":"SB","screen_name":"real7star","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":465,"friends_count":4917,"listed_count":3,"created_at":"Fri - Mar 16 17:36:58 +0000 2018","favourites_count":92264,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17475,"lang":null,"status":{"created_at":"Sat - Mar 26 10:45:07 +0000 2022","id":1507669974936002560,"id_str":"1507669974936002560","text":"RT - @HarryHamishGray: Salford 2022 vs 2008, incredible https:\/\/t.co\/SY9IPnJYYg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HarryHamishGray","name":"Harry - Gray","id":37743543,"id_str":"37743543","indices":[3,19]}],"urls":[],"media":[{"id":1506959521306009601,"id_str":"1506959521306009601","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506959525944995843,"source_status_id_str":"1506959525944995843","source_user_id":37743543,"source_user_id_str":"37743543"}]},"extended_entities":{"media":[{"id":1506959521306009601,"id_str":"1506959521306009601","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506959525944995843,"source_status_id_str":"1506959525944995843","source_user_id":37743543,"source_user_id_str":"37743543"},{"id":1506959524091117572,"id_str":"1506959524091117572","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs_RXwAQS-k2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs_RXwAQS-k2.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":939,"h":1200,"resize":"fit"},"medium":{"w":939,"h":1200,"resize":"fit"},"small":{"w":532,"h":680,"resize":"fit"}},"source_status_id":1506959525944995843,"source_status_id_str":"1506959525944995843","source_user_id":37743543,"source_user_id_str":"37743543"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 11:42:03 +0000 2022","id":1506959525944995843,"id_str":"1506959525944995843","text":"Salford - 2022 vs 2008, incredible https:\/\/t.co\/SY9IPnJYYg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506959521306009601,"id_str":"1506959521306009601","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506959521306009601,"id_str":"1506959521306009601","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs05WYAEqGZ1.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}},{"id":1506959524091117572,"id_str":"1506959524091117572","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnLs_RXwAQS-k2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnLs_RXwAQS-k2.jpg","url":"https:\/\/t.co\/SY9IPnJYYg","display_url":"pic.twitter.com\/SY9IPnJYYg","expanded_url":"https:\/\/twitter.com\/HarryHamishGray\/status\/1506959525944995843\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":939,"h":1200,"resize":"fit"},"medium":{"w":939,"h":1200,"resize":"fit"},"small":{"w":532,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2177,"favorite_count":37526,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2177,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506943558636687362\/VhZR7jzl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506943558636687362\/VhZR7jzl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/974701068058738688\/1647711340","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44900133,"id_str":"44900133","name":"marguerite - moran","screen_name":"googieburger","location":"Dublin","description":"Acupuncturist\/Hypnotherapist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":282,"listed_count":0,"created_at":"Fri - Jun 05 14:13:17 +0000 2009","favourites_count":2048,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":221,"lang":null,"status":{"created_at":"Fri - Mar 25 23:32:32 +0000 2022","id":1507500713735331848,"id_str":"1507500713735331848","text":"RT - @FinnClodagh: #ThroughHerEyes diary\nM\u00e1ire (Molly) Gill, political activist, - camogie player, referee and president of the Camogie Associa\u2026","truncated":false,"entities":{"hashtags":[{"text":"ThroughHerEyes","indices":[17,32]}],"symbols":[],"user_mentions":[{"screen_name":"FinnClodagh","name":"Clodagh - Finn","id":2889731590,"id_str":"2889731590","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:24:42 +0000 2022","id":1507000456438075395,"id_str":"1507000456438075395","text":"#ThroughHerEyes - diary\nM\u00e1ire (Molly) Gill, political activist, camogie player, referee - and president of the Camogie\u2026 https:\/\/t.co\/RJC5glCt4z","truncated":true,"entities":{"hashtags":[{"text":"ThroughHerEyes","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RJC5glCt4z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507000456438075395","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":76,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":131040973,"id_str":"131040973","name":"Mr. - Marla Hooch (what a hitter!!!)","screen_name":"midtownguyhere","location":"Manhattan, - NY","description":"(He\/Him\/His). If you have enough, you have enough to - share. I hope God is a black woman.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":1030,"listed_count":0,"created_at":"Fri - Apr 09 02:57:12 +0000 2010","favourites_count":19959,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1870,"lang":null,"status":{"created_at":"Thu - Mar 24 11:43:52 +0000 2022","id":1506959982746607621,"id_str":"1506959982746607621","text":"@MarshaBlackburn - Where have you been since 1980?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506691525329182727,"in_reply_to_status_id_str":"1506691525329182727","in_reply_to_user_id":278145569,"in_reply_to_user_id_str":"278145569","in_reply_to_screen_name":"MarshaBlackburn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285411183521038336\/ifuyWxFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285411183521038336\/ifuyWxFO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271535540601528322,"id_str":"1271535540601528322","name":"danny - hall","screen_name":"dannyha59797154","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":454,"listed_count":0,"created_at":"Fri - Jun 12 20:11:43 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Tue - May 11 20:19:04 +0000 2021","id":1392212683445972992,"id_str":"1392212683445972992","text":"@RepBoebert - @DrRandPaul I\u2019ll take his neighbor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepBoebert","name":"Rep. - Lauren Boebert","id":1342989756611907584,"id_str":"1342989756611907584","indices":[0,11]},{"screen_name":"DrRandPaul","name":"Rand - Paul","id":39834947,"id_str":"39834947","indices":[12,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1392117775976603649,"in_reply_to_status_id_str":"1392117775976603649","in_reply_to_user_id":1342989756611907584,"in_reply_to_user_id_str":"1342989756611907584","in_reply_to_screen_name":"RepBoebert","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825684515158781954,"id_str":"825684515158781954","name":"Open - Mind\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","screen_name":"OpenMindPsychRN","location":"Nebraska, USA","description":"Psych - RN, Proud Resister!! Ready to escort this moronic Russian operative out of - the WH. Vote Biden\/Harris! Dedicated to the US Constitution. \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":285,"friends_count":816,"listed_count":1,"created_at":"Sun - Jan 29 12:38:23 +0000 2017","favourites_count":14415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9458,"lang":null,"status":{"created_at":"Sun - Sep 19 14:29:50 +0000 2021","id":1439597606485823493,"id_str":"1439597606485823493","text":"@LanceUSA70 - @MP_Latina @Blake_RESISTS @SHM_Colorado @drodvik52 @younakahara1970 @MsJR88 - @ResisterChic @Sunflwrgirl2\u2026 https:\/\/t.co\/JPHKhBzL0V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LanceUSA70","name":"\u14aa\u15e9\u144e\u1455\u15f4 - \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":1033751995184762880,"id_str":"1033751995184762880","indices":[0,11]},{"screen_name":"MP_Latina","name":"\ud835\ude48\ud835\ude56\ud835\ude67\ud835\ude6e - \ud83c\udf3a Kindness is NOT WEAKNESS \u2764\ufe0f\ud83c\udf08","id":2397144980,"id_str":"2397144980","indices":[12,22]},{"screen_name":"Blake_RESISTS","name":"Blake","id":964277934692470784,"id_str":"964277934692470784","indices":[23,37]},{"screen_name":"SHM_Colorado","name":"Brooke - CO- Blame CD3 4 Boebert\ud83c\uddfa\ud83c\udde6\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f\ud83c\udff3\ufe0f\u200d\ud83c\udf08BLM","id":1230315292573622272,"id_str":"1230315292573622272","indices":[38,51]},{"screen_name":"drodvik52","name":"\ud83d\udc9bDeborah - My Friends Call Me Slayer \ud83d\udd25\ud83d\udc09\u2694\ufe0f\ud83d\udc9b","id":15926892,"id_str":"15926892","indices":[52,62]},{"screen_name":"younakahara1970","name":"Ed","id":746112895885283329,"id_str":"746112895885283329","indices":[63,79]},{"screen_name":"MsJR88","name":"Ms.J","id":493775634,"id_str":"493775634","indices":[80,87]},{"screen_name":"ResisterChic","name":"\ua9c1\ud83e\udd8b\u161c\u15f4O\u1587\u161cI\u15e9\u15f7\u14aa\u144c\u15f4\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ua9c2\ud835\uddae\ud835\uddbd\ud835\uddc7\ud835\uddba - \ud835\uddb4\ud835\uddc4\ud835\uddcb\ud835\uddba\ud835\uddd2\ud835\uddc2\ud835\uddc7\ud835\uddba","id":1194152189142417408,"id_str":"1194152189142417408","indices":[88,101]},{"screen_name":"Sunflwrgirl2","name":"Cindy","id":1266940546372841473,"id_str":"1266940546372841473","indices":[102,115]}],"urls":[{"url":"https:\/\/t.co\/JPHKhBzL0V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1439597606485823493","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1439583883046043652,"in_reply_to_status_id_str":"1439583883046043652","in_reply_to_user_id":1033751995184762880,"in_reply_to_user_id_str":"1033751995184762880","in_reply_to_screen_name":"LanceUSA70","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107996472174358528\/Z3D1L5AC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107996472174358528\/Z3D1L5AC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30108112,"id_str":"30108112","name":"Adani - Sanchez","screen_name":"adanisan","location":"Texpat living in Champaign, - IL","description":"Political enthusiast. Classicist. Cheese stick Specialist. - Oh and I could retweet forever.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":1564,"listed_count":11,"created_at":"Fri - Apr 10 00:26:31 +0000 2009","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4084,"lang":null,"status":{"created_at":"Tue - Mar 08 05:38:29 +0000 2022","id":1501069826218815488,"id_str":"1501069826218815488","text":"RT - @LeRoyLandUse: Arlen, TX doesn''t present the same high quality urban environment - found in Bob''s Burgers, and yet there''s quite a lot to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeRoyLandUse","name":"Ben - LeRoy","id":1419755180057313281,"id_str":"1419755180057313281","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 04:51:01 +0000 2022","id":1501057880635719680,"id_str":"1501057880635719680","text":"Arlen, - TX doesn''t present the same high quality urban environment found in Bob''s - Burgers, and yet there''s quite a l\u2026 https:\/\/t.co\/79zAMcYVUz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/79zAMcYVUz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501057880635719680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B3D2F2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/874479915386773504\/UGvPxzvO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/874479915386773504\/UGvPxzvO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30108112\/1497326807","profile_link_color":"19CF86","profile_sidebar_border_color":"D8E1DE","profile_sidebar_fill_color":"BBE3ED","profile_text_color":"8EAFAC","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":380693670,"id_str":"380693670","name":"Marcel - Appleby \ud83e\uddf2\ud83d\uddff","screen_name":"wrandom1","location":"New - Zealand","description":"One of God''s own prototypes. A high-powered mutant - of some kind never even considered for mass production. Too weird to live, - and too rare to die.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":721,"listed_count":1,"created_at":"Tue - Sep 27 02:23:00 +0000 2011","favourites_count":41647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2803,"lang":null,"status":{"created_at":"Sat - Mar 26 09:41:58 +0000 2022","id":1507654083083407360,"id_str":"1507654083083407360","text":"@jesflres - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471680193907462144\/VdujFYzo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471680193907462144\/VdujFYzo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380693670\/1632988008","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215251670986346496,"id_str":"1215251670986346496","name":"Louis - Sawyer","screen_name":"LouisSa90665782","location":"","description":"Human","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":495,"listed_count":0,"created_at":"Thu - Jan 09 12:40:24 +0000 2020","favourites_count":2563,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7473,"lang":null,"status":{"created_at":"Sat - Mar 26 06:23:21 +0000 2022","id":1507604099658833922,"id_str":"1507604099658833922","text":"RT - @sarahmog: Blue boys enjoying afternoon sun in conservatory #CatsOfTwitter - https:\/\/t.co\/cOMgKkoUNW","truncated":false,"entities":{"hashtags":[{"text":"CatsOfTwitter","indices":[63,77]}],"symbols":[],"user_mentions":[{"screen_name":"sarahmog","name":"LilyMay, - Max & Leo (& Jasper RIP 2021)","id":35563097,"id_str":"35563097","indices":[3,12]}],"urls":[],"media":[{"id":1507382811178770445,"id_str":"1507382811178770445","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","url":"https:\/\/t.co\/cOMgKkoUNW","display_url":"pic.twitter.com\/cOMgKkoUNW","expanded_url":"https:\/\/twitter.com\/sarahmog\/status\/1507382818703298566\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1512,"h":2016,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1507382818703298566,"source_status_id_str":"1507382818703298566","source_user_id":35563097,"source_user_id_str":"35563097"}]},"extended_entities":{"media":[{"id":1507382811178770445,"id_str":"1507382811178770445","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","url":"https:\/\/t.co\/cOMgKkoUNW","display_url":"pic.twitter.com\/cOMgKkoUNW","expanded_url":"https:\/\/twitter.com\/sarahmog\/status\/1507382818703298566\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1512,"h":2016,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1507382818703298566,"source_status_id_str":"1507382818703298566","source_user_id":35563097,"source_user_id_str":"35563097"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:44:04 +0000 2022","id":1507382818703298566,"id_str":"1507382818703298566","text":"Blue - boys enjoying afternoon sun in conservatory #CatsOfTwitter https:\/\/t.co\/cOMgKkoUNW","truncated":false,"entities":{"hashtags":[{"text":"CatsOfTwitter","indices":[49,63]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507382811178770445,"id_str":"1507382811178770445","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","url":"https:\/\/t.co\/cOMgKkoUNW","display_url":"pic.twitter.com\/cOMgKkoUNW","expanded_url":"https:\/\/twitter.com\/sarahmog\/status\/1507382818703298566\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1512,"h":2016,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507382811178770445,"id_str":"1507382811178770445","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtMrijXIA0ec-I.jpg","url":"https:\/\/t.co\/cOMgKkoUNW","display_url":"pic.twitter.com\/cOMgKkoUNW","expanded_url":"https:\/\/twitter.com\/sarahmog\/status\/1507382818703298566\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1512,"h":2016,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":1142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":52,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1106235021428428800,"id_str":"1106235021428428800","name":"Waris - Bhutta","screen_name":"WarisBhutta3","location":"fislabad","description":"Allah - is great","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":814,"friends_count":4992,"listed_count":6,"created_at":"Thu - Mar 14 16:45:56 +0000 2019","favourites_count":9301,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6875,"lang":null,"status":{"created_at":"Sat - Mar 26 09:49:30 +0000 2022","id":1507655975137943559,"id_str":"1507655975137943559","text":"RT - @Ibrahee75560610: \u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u06cc\u06a9\u0645 - \u0648\u0631\u062d\u0645\u062a\u06c1 \u0627\u0644\u0644\u0651\u0670\u0647 - \u0648\u0628\u0631\u06a9\u0627\u062a\u06c1\n\u0635\u0628\u062d \u0628\u062e\u06cc\u0631 - \u0632\u0646\u062f\u06af\u06cc https:\/\/t.co\/MGxDpg4Zpm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ibrahee75560610","name":"Ibraheem - ismaeel","id":1238327089822040065,"id_str":"1238327089822040065","indices":[3,19]}],"urls":[],"media":[{"id":1507567727346700290,"id_str":"1507567727346700290","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","url":"https:\/\/t.co\/MGxDpg4Zpm","display_url":"pic.twitter.com\/MGxDpg4Zpm","expanded_url":"https:\/\/twitter.com\/Ibrahee75560610\/status\/1507567730505170948\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":512,"resize":"fit"},"small":{"w":290,"h":512,"resize":"fit"},"large":{"w":290,"h":512,"resize":"fit"}},"source_status_id":1507567730505170948,"source_status_id_str":"1507567730505170948","source_user_id":1238327089822040065,"source_user_id_str":"1238327089822040065"}]},"extended_entities":{"media":[{"id":1507567727346700290,"id_str":"1507567727346700290","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","url":"https:\/\/t.co\/MGxDpg4Zpm","display_url":"pic.twitter.com\/MGxDpg4Zpm","expanded_url":"https:\/\/twitter.com\/Ibrahee75560610\/status\/1507567730505170948\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":512,"resize":"fit"},"small":{"w":290,"h":512,"resize":"fit"},"large":{"w":290,"h":512,"resize":"fit"}},"source_status_id":1507567730505170948,"source_status_id_str":"1507567730505170948","source_user_id":1238327089822040065,"source_user_id_str":"1238327089822040065"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:58:50 +0000 2022","id":1507567730505170948,"id_str":"1507567730505170948","text":"\u0627\u0644\u0633\u0644\u0627\u0645 - \u0639\u0644\u06cc\u06a9\u0645 \u0648\u0631\u062d\u0645\u062a\u06c1 \u0627\u0644\u0644\u0651\u0670\u0647 - \u0648\u0628\u0631\u06a9\u0627\u062a\u06c1\n\u0635\u0628\u062d \u0628\u062e\u06cc\u0631 - \u0632\u0646\u062f\u06af\u06cc https:\/\/t.co\/MGxDpg4Zpm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507567727346700290,"id_str":"1507567727346700290","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","url":"https:\/\/t.co\/MGxDpg4Zpm","display_url":"pic.twitter.com\/MGxDpg4Zpm","expanded_url":"https:\/\/twitter.com\/Ibrahee75560610\/status\/1507567730505170948\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":512,"resize":"fit"},"small":{"w":290,"h":512,"resize":"fit"},"large":{"w":290,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507567727346700290,"id_str":"1507567727346700290","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv03E9X0AIiFwh.jpg","url":"https:\/\/t.co\/MGxDpg4Zpm","display_url":"pic.twitter.com\/MGxDpg4Zpm","expanded_url":"https:\/\/twitter.com\/Ibrahee75560610\/status\/1507567730505170948\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":512,"resize":"fit"},"small":{"w":290,"h":512,"resize":"fit"},"large":{"w":290,"h":512,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":358,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":38,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107005018031431680\/uovOa6u__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107005018031431680\/uovOa6u__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1106235021428428800\/1552846682","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":832304914445508609,"id_str":"832304914445508609","name":"Southerner - in NYC","screen_name":"GScotthamm","location":"New York, NY","description":"I - live in NYC! from NC, a dog lover, real estate broker,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":792,"friends_count":203,"listed_count":0,"created_at":"Thu - Feb 16 19:05:29 +0000 2017","favourites_count":30944,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2709,"lang":null,"status":{"created_at":"Tue - Mar 22 13:16:59 +0000 2022","id":1506258641598488579,"id_str":"1506258641598488579","text":"@seanhannity - @LindseyGrahamSC @EricTrump What will Lady G be talking about?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"seanhannity","name":"Sean - Hannity","id":41634520,"id_str":"41634520","indices":[0,12]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[13,29]},{"screen_name":"EricTrump","name":"Eric - Trump","id":39349894,"id_str":"39349894","indices":[30,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506063110985109517,"in_reply_to_status_id_str":"1506063110985109517","in_reply_to_user_id":41634520,"in_reply_to_user_id_str":"41634520","in_reply_to_screen_name":"seanhannity","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/884050015894859777\/GcsS7c3E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/884050015894859777\/GcsS7c3E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832304914445508609\/1569847512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1552846580,"id_str":"1552846580","name":"Rudene - Thomas, MBA & MPA","screen_name":"RudeneThomas","location":"Maryland, USA","description":"Retired - federal employee. Enjoying life by exercising daily, reading novels, listening - to Ted Talks, traveling, movies, plays and just having fun. Life is great","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":434,"friends_count":818,"listed_count":4,"created_at":"Fri - Jun 28 11:11:27 +0000 2013","favourites_count":50029,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"status":{"created_at":"Sat - Mar 26 00:18:29 +0000 2022","id":1507512277385330689,"id_str":"1507512277385330689","text":"@rhonda_harbison - @NewJeffCT @DanielleReed8 @dmsykes22 @HawleyMO That sheriff had shit on Hawley - and he knows it. Ju\u2026 https:\/\/t.co\/RCtjpgixVQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rhonda_harbison","name":"Rhonda - Harbison","id":864487498935787520,"id_str":"864487498935787520","indices":[0,16]},{"screen_name":"NewJeffCT","name":"Jeff - stands with Ukraine and its people \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":376358488,"id_str":"376358488","indices":[17,27]},{"screen_name":"DanielleReed8","name":"Danielle - Reed","id":455066669,"id_str":"455066669","indices":[28,42]},{"screen_name":"dmsykes22","name":"Dacia - is...","id":766873705767198720,"id_str":"766873705767198720","indices":[43,53]},{"screen_name":"HawleyMO","name":"Josh - Hawley","id":2352629311,"id_str":"2352629311","indices":[54,63]}],"urls":[{"url":"https:\/\/t.co\/RCtjpgixVQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507512277385330689","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507418310987726852,"in_reply_to_status_id_str":"1507418310987726852","in_reply_to_user_id":864487498935787520,"in_reply_to_user_id_str":"864487498935787520","in_reply_to_screen_name":"rhonda_harbison","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/991810732323954688\/JIFjE-QR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991810732323954688\/JIFjE-QR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1552846580\/1602376989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":621911081,"id_str":"621911081","name":"Audrey - Clark","screen_name":"audreyclark54","location":"ocala fla","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1312,"friends_count":3047,"listed_count":1,"created_at":"Fri - Jun 29 13:46:07 +0000 2012","favourites_count":7716,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14156,"lang":null,"status":{"created_at":"Fri - Mar 25 16:43:44 +0000 2022","id":1507397834093568026,"id_str":"1507397834093568026","text":"RT - @jmontforttx: \ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jmontforttx","name":"Joel - Montfort \ud83c\udf0a","id":4218124714,"id_str":"4218124714","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:10:16 +0000 2022","id":1507389410492485640,"id_str":"1507389410492485640","text":"\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47\ud83d\udc47 - https:\/\/t.co\/ECU6k6G7o8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ECU6k6G7o8","expanded_url":"https:\/\/twitter.com\/RachelBitecofer\/status\/1507337280666497031","display_url":"twitter.com\/RachelBitecofe\u2026","indices":[7,30]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507337280666497031,"quoted_status_id_str":"1507337280666497031","retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":true,"quoted_status_id":1507337280666497031,"quoted_status_id_str":"1507337280666497031","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2352193843\/402016_284170678308325_1428969118_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2352193843\/402016_284170678308325_1428969118_n_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":752169410652057600,"id_str":"752169410652057600","name":"Parameswara - Rao","screen_name":"parameswara_sp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":3143,"listed_count":0,"created_at":"Sun - Jul 10 15:55:36 +0000 2016","favourites_count":4414,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Nov 12 09:40:26 +0000 2016","id":797373477778952193,"id_str":"797373477778952193","text":"Please - unblock my maxis app. My mobile no 0122547065. Tq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817387592517697537\/CRh3CSPI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817387592517697537\/CRh3CSPI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":969026211572830209,"id_str":"969026211572830209","name":"Peter - Adabor","screen_name":"AdaborPeter","location":"Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":948,"listed_count":0,"created_at":"Thu - Mar 01 01:47:07 +0000 2018","favourites_count":6119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Apr 13 13:10:22 +0000 2021","id":1381957936998719489,"id_str":"1381957936998719489","text":"@gyaigyimiiba - @sarkodie Faces of life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gyaigyimiiba","name":"Akua - Saucy \ud83d\udc45\ud83c\udf51( Bestie )","id":1317581800055689223,"id_str":"1317581800055689223","indices":[0,13]},{"screen_name":"sarkodie","name":"Sarkodie","id":32339364,"id_str":"32339364","indices":[14,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1381522318690770944,"in_reply_to_status_id_str":"1381522318690770944","in_reply_to_user_id":1317581800055689223,"in_reply_to_user_id_str":"1317581800055689223","in_reply_to_screen_name":"gyaigyimiiba","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969040765207957509\/fVO0bZFz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969040765207957509\/fVO0bZFz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969026211572830209\/1519872821","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172191757322395648,"id_str":"1172191757322395648","name":"Sherry - Fields","screen_name":"SherryF87712328","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":187,"listed_count":0,"created_at":"Thu - Sep 12 16:54:59 +0000 2019","favourites_count":2499,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2683188522,"id_str":"2683188522","name":"Tom - awake but not woke","screen_name":"tharristx","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":296,"listed_count":0,"created_at":"Sat - Jul 26 20:13:49 +0000 2014","favourites_count":2277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"status":{"created_at":"Sat - Mar 26 03:35:33 +0000 2022","id":1507561870063984651,"id_str":"1507561870063984651","text":"@worldwiderejec1 - @TexasTribune Naw they don\u2019t support pedophilia.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"worldwiderejec1","name":"Isabel","id":1350114135359549444,"id_str":"1350114135359549444","indices":[0,16]},{"screen_name":"TexasTribune","name":"Texas - Tribune","id":44513878,"id_str":"44513878","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507351266954985488,"in_reply_to_status_id_str":"1507351266954985488","in_reply_to_user_id":1350114135359549444,"in_reply_to_user_id_str":"1350114135359549444","in_reply_to_screen_name":"worldwiderejec1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505915041085800448\/Gpszaun6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505915041085800448\/Gpszaun6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2683188522\/1406406135","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":218476258,"id_str":"218476258","name":"CussingConservative\ud83e\udd2c","screen_name":"orangeduckfuzz","location":"North - Carolina, USA","description":"Conservative mom that cusses alot","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":833,"friends_count":4197,"listed_count":2,"created_at":"Mon - Nov 22 13:09:14 +0000 2010","favourites_count":76323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14208,"lang":null,"status":{"created_at":"Tue - Mar 22 01:26:40 +0000 2022","id":1506079885147656200,"id_str":"1506079885147656200","text":"RT - @JustTheNews: Former President Donald Trump on Monday announced the court - ruled in his favor in\u00a0Stormy Daniels\u2019 libel lawsuit against hi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JustTheNews","name":"Just - the News","id":1216793092134723586,"id_str":"1216793092134723586","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:48:58 +0000 2022","id":1506070394759008269,"id_str":"1506070394759008269","text":"Former - President Donald Trump on Monday announced the court ruled in his favor in\u00a0Stormy - Daniels\u2019 libel lawsuit aga\u2026 https:\/\/t.co\/QJWVGbP6GI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QJWVGbP6GI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506070394759008269","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":388,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":102,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356457766358028288\/-hx8mq6T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356457766358028288\/-hx8mq6T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218476258\/1611157597","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40886878,"id_str":"40886878","name":"Bat - Bayan","screen_name":"TheBatBayan","location":"on a hot island","description":"- - I count 6 shots nigga!\n- I count 2 guns nigga!\n\nhttps:\/\/t.co\/K2ViqBPxF6","url":"https:\/\/t.co\/1pAwWrGF3u","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1pAwWrGF3u","expanded_url":"https:\/\/www.instagram.com\/asitemap\/","display_url":"instagram.com\/asitemap\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/K2ViqBPxF6","expanded_url":"https:\/\/www.youtube.com\/watch?v=NrgcRvBJYBE","display_url":"youtube.com\/watch?v=NrgcRv\u2026","indices":[50,73]}]}},"protected":false,"followers_count":1053,"friends_count":4660,"listed_count":42,"created_at":"Mon - May 18 14:46:23 +0000 2009","favourites_count":7048,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5715,"lang":null,"status":{"created_at":"Sun - Mar 20 18:08:59 +0000 2022","id":1505607349075156995,"id_str":"1505607349075156995","text":"#deers - https:\/\/t.co\/1OqD6Cmhp3","truncated":false,"entities":{"hashtags":[{"text":"deers","indices":[0,6]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505607229747220488,"id_str":"1505607229747220488","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT9zGRX0AgLt-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT9zGRX0AgLt-c.jpg","url":"https:\/\/t.co\/1OqD6Cmhp3","display_url":"pic.twitter.com\/1OqD6Cmhp3","expanded_url":"https:\/\/twitter.com\/TheBatBayan\/status\/1505607349075156995\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505607229747220488,"id_str":"1505607229747220488","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT9zGRX0AgLt-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT9zGRX0AgLt-c.jpg","url":"https:\/\/t.co\/1OqD6Cmhp3","display_url":"pic.twitter.com\/1OqD6Cmhp3","expanded_url":"https:\/\/twitter.com\/TheBatBayan\/status\/1505607349075156995\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"}}},{"id":1505607281324572674,"id_str":"1505607281324572674","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT92GaXwAIhvKh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT92GaXwAIhvKh.jpg","url":"https:\/\/t.co\/1OqD6Cmhp3","display_url":"pic.twitter.com\/1OqD6Cmhp3","expanded_url":"https:\/\/twitter.com\/TheBatBayan\/status\/1505607349075156995\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":432,"resize":"fit"},"large":{"w":2048,"h":1300,"resize":"fit"},"medium":{"w":1200,"h":762,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3001410273\/f9fc0cbf094925b7d84c7ab19a6695b4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3001410273\/f9fc0cbf094925b7d84c7ab19a6695b4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40886878\/1359620471","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2367502764,"id_str":"2367502764","name":"gizella","screen_name":"krmttrk","location":"Crimean - Khanate","description":"Urustan dostun bolsa, ay baltan qat\u0131nda bolsun!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2305,"friends_count":702,"listed_count":1,"created_at":"Sat - Mar 01 19:20:45 +0000 2014","favourites_count":52107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14846,"lang":null,"status":{"created_at":"Sat - Mar 26 09:39:42 +0000 2022","id":1507653512766836739,"id_str":"1507653512766836739","text":"Umar\u0131m - Moldova bayra\u011f\u0131na Romanya deyip dayaktan y\u0131rtan \u00e7ocu\u011fu - daha sonra bir g\u00fczel d\u00f6vm\u00fc\u015flerdir. https:\/\/t.co\/nL3lHcEpS8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nL3lHcEpS8","expanded_url":"https:\/\/twitter.com\/ZkusagiZ\/status\/1507299945765875712","display_url":"twitter.com\/ZkusagiZ\/statu\u2026","indices":[97,120]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507299945765875712,"quoted_status_id_str":"1507299945765875712","retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503349148472516613\/umwTFXWS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503349148472516613\/umwTFXWS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2367502764\/1628386648","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243829353428942848,"id_str":"1243829353428942848","name":"Mustapha - Muhammad","screen_name":"Mustaph37040188","location":"Kano","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":132,"listed_count":0,"created_at":"Sat - Mar 28 09:16:57 +0000 2020","favourites_count":1140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Mon - Apr 12 23:18:05 +0000 2021","id":1381748484798345217,"id_str":"1381748484798345217","text":"@DrIsaPantami - Ameen yaa Rabb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrIsaPantami","name":"Isa - Ali Pantami, PhD","id":2748555327,"id_str":"2748555327","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1381747346820759555,"in_reply_to_status_id_str":"1381747346820759555","in_reply_to_user_id":2748555327,"in_reply_to_user_id_str":"2748555327","in_reply_to_screen_name":"DrIsaPantami","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323154799194419200\/ZpWYvtzf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323154799194419200\/ZpWYvtzf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":848258720987348992,"id_str":"848258720987348992","name":"Josh - Lambert","screen_name":"jz41289","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":250,"listed_count":0,"created_at":"Sat - Apr 01 19:40:13 +0000 2017","favourites_count":5872,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":153,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":382262993,"id_str":"382262993","name":"Jack - McDonald","screen_name":"JackMcDonald61","location":"Austerlitz NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":869,"listed_count":1,"created_at":"Thu - Sep 29 19:26:07 +0000 2011","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Sat - Sep 19 02:14:48 +0000 2020","id":1307141057822502912,"id_str":"1307141057822502912","text":"@thatgirlrene - That''s the Supreme Court","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thatgirlrene","name":"Rene - Wilson","id":823035289933213696,"id_str":"823035289933213696","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1307130270148186115,"in_reply_to_status_id_str":"1307130270148186115","in_reply_to_user_id":823035289933213696,"in_reply_to_user_id_str":"823035289933213696","in_reply_to_screen_name":"thatgirlrene","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3623108520\/da2ac8c0e18d4343ba2e8af8e09e5f2d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3623108520\/da2ac8c0e18d4343ba2e8af8e09e5f2d_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237660884,"id_str":"1237660884","name":"Robin - Vergara","screen_name":"RobinV7777","location":"Indian Rocks Beach","description":"Operations - specialist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":754,"friends_count":4786,"listed_count":8,"created_at":"Sun - Mar 03 04:11:34 +0000 2013","favourites_count":37012,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3014,"lang":null,"status":{"created_at":"Fri - Mar 25 19:00:47 +0000 2022","id":1507432324811698179,"id_str":"1507432324811698179","text":"RT - @OccupyDemocrats: BREAKING: Justice Clarence Thomas is discharged from the - hospital right into the mouth of a growing controversy over h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:13:28 +0000 2022","id":1507375117520674819,"id_str":"1507375117520674819","text":"BREAKING: - Justice Clarence Thomas is discharged from the hospital right into the mouth - of a growing controversy ove\u2026 https:\/\/t.co\/k5bgeobFVF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k5bgeobFVF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507375117520674819","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7287,"favorite_count":17597,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325002693539213315\/DoLvyUe6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325002693539213315\/DoLvyUe6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1237660884\/1645824680","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":214416748,"id_str":"214416748","name":"Sandy - Cunningham","screen_name":"oldfluff","location":" Hampshire","description":"Retired - & creaky","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":1434,"listed_count":20,"created_at":"Thu - Nov 11 10:49:17 +0000 2010","favourites_count":5180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3440,"lang":null,"status":{"created_at":"Thu - Mar 17 19:40:31 +0000 2022","id":1504543219308285956,"id_str":"1504543219308285956","text":"RT - @NickKnudsenUS: Wow. This message from Arnold Schwarzenegger to the Russian - people is incredible.\n\nI\u2019m re-sharing it with Russian hashta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickKnudsenUS","name":"Nick - Knudsen \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":798953701972938752,"id_str":"798953701972938752","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 15:49:08 +0000 2022","id":1504484990150602753,"id_str":"1504484990150602753","text":"Wow. - This message from Arnold Schwarzenegger to the Russian people is incredible.\n\nI\u2019m - re-sharing it with Russian h\u2026 https:\/\/t.co\/QBYQh0QIgD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QBYQh0QIgD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504484990150602753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4282,"favorite_count":7352,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4282,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255638153\/rainbow_image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255638153\/rainbow_image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23756432,"id_str":"23756432","name":"Jonathan - Mann","screen_name":"JonMannExAnchor","location":"Atlanta, USA","description":"Recovering - journalist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4816,"friends_count":635,"listed_count":155,"created_at":"Wed - Mar 11 12:43:19 +0000 2009","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":164,"lang":null,"status":{"created_at":"Wed - Mar 16 20:58:53 +0000 2022","id":1504200553173336071,"id_str":"1504200553173336071","text":"@DougShipmanATL - \u201cMore data\u201d are not needed and have never been needed. Cities around - the world have become safer an\u2026 https:\/\/t.co\/inAe6hCFaE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DougShipmanATL","name":"Doug - Shipman, Atlanta City Council President","id":1477347982207074309,"id_str":"1477347982207074309","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/inAe6hCFaE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504200553173336071","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504148379995197441,"in_reply_to_status_id_str":"1504148379995197441","in_reply_to_user_id":1477347982207074309,"in_reply_to_user_id_str":"1477347982207074309","in_reply_to_screen_name":"DougShipmanATL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662664974221754368\/Kl5nuJgD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662664974221754368\/Kl5nuJgD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23756432\/1446826731","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297949899825324033,"id_str":"1297949899825324033","name":"Don - Carlos","screen_name":"doncarlosarthur","location":"England, United Kingdom","description":"#thinksuccess, - Entrepreneur, Construction enthusiast, Manchester Masonry, Democrat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":3040,"listed_count":0,"created_at":"Mon - Aug 24 17:32:39 +0000 2020","favourites_count":5982,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":454,"lang":null,"status":{"created_at":"Fri - Mar 25 21:54:08 +0000 2022","id":1507475950547656704,"id_str":"1507475950547656704","text":"@nhwihwenim - @sarkodie \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nhwihwenim","name":"Nhwihwenim - Gh","id":747815219318108160,"id_str":"747815219318108160","indices":[0,11]},{"screen_name":"sarkodie","name":"Sarkodie","id":32339364,"id_str":"32339364","indices":[12,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507463905974489088,"in_reply_to_status_id_str":"1507463905974489088","in_reply_to_user_id":747815219318108160,"in_reply_to_user_id_str":"747815219318108160","in_reply_to_screen_name":"nhwihwenim","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461454836701044737\/fYjDZ8wb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461454836701044737\/fYjDZ8wb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1297949899825324033\/1631481968","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":945486969479614470,"id_str":"945486969479614470","name":"Art - Chavez","screen_name":"ArtChavez19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":120,"listed_count":0,"created_at":"Tue - Dec 26 02:50:34 +0000 2017","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":434058454,"id_str":"434058454","name":"TITUS - MUNENE","screen_name":"CoTITUS","location":"nairobi","description":"","url":"http:\/\/t.co\/uJPYk8V8P1","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uJPYk8V8P1","expanded_url":"http:\/\/tituskenya.com","display_url":"tituskenya.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":1558,"listed_count":0,"created_at":"Sun - Dec 11 11:00:31 +0000 2011","favourites_count":258,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":414,"lang":null,"status":{"created_at":"Mon - Mar 21 07:45:57 +0000 2022","id":1505812944734638080,"id_str":"1505812944734638080","text":"@ItsMutai - Tortured for trying to overthrow the government","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ItsMutai","name":"Lord - Abraham Mutai","id":617196939,"id_str":"617196939","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505622576390885385,"in_reply_to_status_id_str":"1505622576390885385","in_reply_to_user_id":617196939,"in_reply_to_user_id_str":"617196939","in_reply_to_screen_name":"ItsMutai","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/968229709283844096\/6BgAet_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/968229709283844096\/6BgAet_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/434058454\/1519678913","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":724035333596188676,"id_str":"724035333596188676","name":"Paul - Longmore \ud83c\uddfa\ud83c\uddf8\ud83c\uddef\ud83c\uddf2\ud83c\udff4\u200d\u2620\ufe0f","screen_name":"rastastud1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":2803,"listed_count":4,"created_at":"Sun - Apr 24 00:40:50 +0000 2016","favourites_count":21271,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24705,"lang":null,"status":{"created_at":"Fri - Mar 25 17:22:05 +0000 2022","id":1507407487271505923,"id_str":"1507407487271505923","text":"@_Hodges - @RT_com 8... https:\/\/t.co\/EARGkdnL5j","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_Hodges","name":"Tim - Hodges","id":54845017,"id_str":"54845017","indices":[0,8]},{"screen_name":"RT_com","name":"RT","id":64643056,"id_str":"64643056","indices":[9,16]}],"urls":[],"media":[{"id":1507407480904564741,"id_str":"1507407480904564741","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtjHgcVQAUApIC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtjHgcVQAUApIC.jpg","url":"https:\/\/t.co\/EARGkdnL5j","display_url":"pic.twitter.com\/EARGkdnL5j","expanded_url":"https:\/\/twitter.com\/rastastud1\/status\/1507407487271505923\/photo\/1","type":"photo","sizes":{"thumb":{"w":134,"h":134,"resize":"crop"},"small":{"w":246,"h":134,"resize":"fit"},"medium":{"w":246,"h":134,"resize":"fit"},"large":{"w":246,"h":134,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507407480904564741,"id_str":"1507407480904564741","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtjHgcVQAUApIC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtjHgcVQAUApIC.jpg","url":"https:\/\/t.co\/EARGkdnL5j","display_url":"pic.twitter.com\/EARGkdnL5j","expanded_url":"https:\/\/twitter.com\/rastastud1\/status\/1507407487271505923\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":134,"h":134,"resize":"crop"},"small":{"w":246,"h":134,"resize":"fit"},"medium":{"w":246,"h":134,"resize":"fit"},"large":{"w":246,"h":134,"resize":"fit"}},"video_info":{"aspect_ratio":[123,67],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOtjHgcVQAUApIC.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507379624317276160,"in_reply_to_status_id_str":"1507379624317276160","in_reply_to_user_id":54845017,"in_reply_to_user_id_str":"54845017","in_reply_to_screen_name":"_Hodges","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505037315764219904\/mRZXuPUr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505037315764219904\/mRZXuPUr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/724035333596188676\/1647663834","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140627246606012417,"id_str":"1140627246606012417","name":"vain - and handsome mediocrity","screen_name":"llamanated","location":"Bay Area","description":"Twitter - has become boring to me again","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":150,"listed_count":0,"created_at":"Mon - Jun 17 14:28:22 +0000 2019","favourites_count":9292,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Wed - Sep 01 09:04:22 +0000 2021","id":1432992720167993345,"id_str":"1432992720167993345","text":"Yeah, - I think I\u2019m done here.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427770858387349504\/Jgu5mq9E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427770858387349504\/Jgu5mq9E_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191631784766779392,"id_str":"1191631784766779392","name":"Namik","screen_name":"Namik79780109","location":"","description":"Ptili","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":514,"listed_count":7,"created_at":"Tue - Nov 05 08:22:23 +0000 2019","favourites_count":491,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":72,"lang":null,"status":{"created_at":"Mon - Dec 28 10:50:12 +0000 2020","id":1343509548003426304,"id_str":"1343509548003426304","text":"RT - @gurkanimre_81: 9 \u00e7ocu\u011funu ( 3 Dr, 4 \u00f6\u011frt, 1 m\u00fch, - 1 hem\u015fire) yeti\u015ftiren annem, 60 ya\u015f\u0131nda okuma-yazma \u00f6\u011freniyor. - https:\/\/t.co\/8DhEsGfig6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gurkanimre_81","name":"G\u00fcrkan - \u0130mre","id":1488777529,"id_str":"1488777529","indices":[3,17]}],"urls":[],"media":[{"id":1343199528288194560,"id_str":"1343199528288194560","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}},"source_status_id":1343199559707742208,"source_status_id_str":"1343199559707742208","source_user_id":1488777529,"source_user_id_str":"1488777529"}]},"extended_entities":{"media":[{"id":1343199528288194560,"id_str":"1343199528288194560","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}},"source_status_id":1343199559707742208,"source_status_id_str":"1343199559707742208","source_user_id":1488777529,"source_user_id_str":"1488777529"},{"id":1343199544587280386,"id_str":"1343199544587280386","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA3oWXYAIOE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA3oWXYAIOE05.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1080,"h":1920,"resize":"fit"}},"source_status_id":1343199559707742208,"source_status_id_str":"1343199559707742208","source_user_id":1488777529,"source_user_id_str":"1488777529"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Dec 27 14:18:25 +0000 2020","id":1343199559707742208,"id_str":"1343199559707742208","text":"9 - \u00e7ocu\u011funu ( 3 Dr, 4 \u00f6\u011frt, 1 m\u00fch, 1 hem\u015fire) yeti\u015ftiren - annem, 60 ya\u015f\u0131nda okuma-yazma \u00f6\u011freniyor. https:\/\/t.co\/8DhEsGfig6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1343199528288194560,"id_str":"1343199528288194560","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1343199528288194560,"id_str":"1343199528288194560","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA2roXEAAv1G7.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}},{"id":1343199544587280386,"id_str":"1343199544587280386","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/EqQA3oWXYAIOE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqQA3oWXYAIOE05.jpg","url":"https:\/\/t.co\/8DhEsGfig6","display_url":"pic.twitter.com\/8DhEsGfig6","expanded_url":"https:\/\/twitter.com\/gurkanimre_81\/status\/1343199559707742208\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1080,"h":1920,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"20f796ad342c96e5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/20f796ad342c96e5.json","place_type":"admin","name":"Edremit","full_name":"Edremit, - Van","country_code":"TR","country":"Turkey","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[43.1307673,38.3203134],[43.4474362,38.3203134],[43.4474362,38.4537585],[43.1307673,38.4537585]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5003,"favorite_count":166196,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":5003,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191632292890005504\/K8RZzdir_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191632292890005504\/K8RZzdir_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48633933,"id_str":"48633933","name":"Amanda - Predmore","screen_name":"apredmore257","location":"","description":"fugly - worthless piece-of-shit fuck up failed-excuse-for-a-human disgusting the-stuff-from-nightmares","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":542,"listed_count":0,"created_at":"Fri - Jun 19 06:43:44 +0000 2009","favourites_count":1403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":652,"lang":null,"status":{"created_at":"Fri - Mar 25 04:47:32 +0000 2022","id":1507217595581313033,"id_str":"1507217595581313033","text":"RT - @risahoshinoMD: PSA: Please test for COVID if you are having gastrointestinal - symptoms such as nausea, vomiting, diarrhea, or abdominal\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"risahoshinoMD","name":"Risa - Hoshino, MD","id":1332784849317486596,"id_str":"1332784849317486596","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:03:05 +0000 2022","id":1507130912525496326,"id_str":"1507130912525496326","text":"PSA: - Please test for COVID if you are having gastrointestinal symptoms such as - nausea, vomiting, diarrhea, or abdom\u2026 https:\/\/t.co\/wYD2D2oraT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wYD2D2oraT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507130912525496326","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11498,"favorite_count":21254,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11498,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228397021956014081\/4LpKoT-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228397021956014081\/4LpKoT-u_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307944865397911552,"id_str":"1307944865397911552","name":"possible","screen_name":"possibl42299144","location":"Brooklyn, - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":341,"listed_count":0,"created_at":"Mon - Sep 21 07:28:59 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Wed - Jan 20 17:12:44 +0000 2021","id":1351940736795729921,"id_str":"1351940736795729921","text":"@Mz_tique - Which work you dey do","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mz_tique","name":"Ms - Tee","id":604115145,"id_str":"604115145","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1351249764164251651,"in_reply_to_status_id_str":"1351249764164251651","in_reply_to_user_id":604115145,"in_reply_to_user_id_str":"604115145","in_reply_to_screen_name":"Mz_tique","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351140911061864449\/jLOj6jyU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351140911061864449\/jLOj6jyU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307944865397911552\/1606619164","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":132557182,"id_str":"132557182","name":"Ricardo - Mu\u00f1oz Chavez","screen_name":"rmunozch","location":"Panama, republic of - Panama","description":"Master in Logistic and International Business, Certified - Public Accountant, Business Manager","url":"https:\/\/t.co\/EbXF4yccA2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EbXF4yccA2","expanded_url":"http:\/\/mail.cableonda.net","display_url":"mail.cableonda.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":1149,"listed_count":2,"created_at":"Tue - Apr 13 15:24:55 +0000 2010","favourites_count":7399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1243,"lang":null,"status":{"created_at":"Mon - Jan 03 04:12:02 +0000 2022","id":1477855247397793796,"id_str":"1477855247397793796","text":"@JCVContratas - @amaapchino @rmartinelli @TheJusticeDept Alguien no revis\u00f3 ese documento.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCVContratas","name":"J - Carlos Vald\u00e9s","id":1427425255610589197,"id_str":"1427425255610589197","indices":[0,13]},{"screen_name":"amaapchino","name":"Marcos - A. Alvarez P.","id":331617046,"id_str":"331617046","indices":[14,25]},{"screen_name":"rmartinelli","name":"Ricardo - Martinelli","id":250265046,"id_str":"250265046","indices":[26,38]},{"screen_name":"TheJusticeDept","name":"Justice - Department","id":73181712,"id_str":"73181712","indices":[39,54]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1477822930658672640,"in_reply_to_status_id_str":"1477822930658672640","in_reply_to_user_id":1427425255610589197,"in_reply_to_user_id_str":"1427425255610589197","in_reply_to_screen_name":"JCVContratas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552128048137388033\/4fLvKy2V_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552128048137388033\/4fLvKy2V_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132557182\/1420472494","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1893685526,"id_str":"1893685526","name":"Chloe - Meyer","screen_name":"ChloeMartian","location":"Melbourne, Australia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":1100,"listed_count":2,"created_at":"Sun - Sep 22 13:03:12 +0000 2013","favourites_count":5232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":266,"lang":null,"status":{"created_at":"Fri - Mar 04 07:57:42 +0000 2022","id":1499655307080781828,"id_str":"1499655307080781828","text":"RT - @leaacta: tag yourself https:\/\/t.co\/NYjUMCd2GY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"leaacta","name":"\ud83d\udd2a","id":1057244956182634497,"id_str":"1057244956182634497","indices":[3,11]}],"urls":[],"media":[{"id":1499269591817543698,"id_str":"1499269591817543698","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","url":"https:\/\/t.co\/NYjUMCd2GY","display_url":"pic.twitter.com\/NYjUMCd2GY","expanded_url":"https:\/\/twitter.com\/leaacta\/status\/1499269594241847296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":574,"resize":"fit"},"medium":{"w":640,"h":574,"resize":"fit"},"small":{"w":640,"h":574,"resize":"fit"}},"source_status_id":1499269594241847296,"source_status_id_str":"1499269594241847296","source_user_id":1057244956182634497,"source_user_id_str":"1057244956182634497"}]},"extended_entities":{"media":[{"id":1499269591817543698,"id_str":"1499269591817543698","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","url":"https:\/\/t.co\/NYjUMCd2GY","display_url":"pic.twitter.com\/NYjUMCd2GY","expanded_url":"https:\/\/twitter.com\/leaacta\/status\/1499269594241847296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":574,"resize":"fit"},"medium":{"w":640,"h":574,"resize":"fit"},"small":{"w":640,"h":574,"resize":"fit"}},"source_status_id":1499269594241847296,"source_status_id_str":"1499269594241847296","source_user_id":1057244956182634497,"source_user_id_str":"1057244956182634497"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 06:25:01 +0000 2022","id":1499269594241847296,"id_str":"1499269594241847296","text":"tag - yourself https:\/\/t.co\/NYjUMCd2GY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499269591817543698,"id_str":"1499269591817543698","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","url":"https:\/\/t.co\/NYjUMCd2GY","display_url":"pic.twitter.com\/NYjUMCd2GY","expanded_url":"https:\/\/twitter.com\/leaacta\/status\/1499269594241847296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":574,"resize":"fit"},"medium":{"w":640,"h":574,"resize":"fit"},"small":{"w":640,"h":574,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499269591817543698,"id_str":"1499269591817543698","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM55wBLUYBIBei4.jpg","url":"https:\/\/t.co\/NYjUMCd2GY","display_url":"pic.twitter.com\/NYjUMCd2GY","expanded_url":"https:\/\/twitter.com\/leaacta\/status\/1499269594241847296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":574,"resize":"fit"},"medium":{"w":640,"h":574,"resize":"fit"},"small":{"w":640,"h":574,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":968,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":171,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618753998540050434\/NerAhzqd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618753998540050434\/NerAhzqd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1893685526\/1393730764","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251191854495928320,"id_str":"1251191854495928320","name":"Moses - ogolla","screen_name":"Mosesogolla6","location":"Eldoret, Kenya","description":"procurement - consultant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":980,"listed_count":0,"created_at":"Fri - Apr 17 16:52:58 +0000 2020","favourites_count":651,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Oct 25 16:29:51 +0000 2021","id":1452673773996552192,"id_str":"1452673773996552192","text":"RT - @Jane_FKyalo: It is a blessed week. The smile shows it .... https:\/\/t.co\/0qyEwVblrU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jane_FKyalo","name":"JANE - KYALO","id":1005460195202551808,"id_str":"1005460195202551808","indices":[3,15]}],"urls":[],"media":[{"id":1452523457598656513,"id_str":"1452523457598656513","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","url":"https:\/\/t.co\/0qyEwVblrU","display_url":"pic.twitter.com\/0qyEwVblrU","expanded_url":"https:\/\/twitter.com\/Jane_FKyalo\/status\/1452523525852573696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1452523525852573696,"source_status_id_str":"1452523525852573696","source_user_id":1005460195202551808,"source_user_id_str":"1005460195202551808"}]},"extended_entities":{"media":[{"id":1452523457598656513,"id_str":"1452523457598656513","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","url":"https:\/\/t.co\/0qyEwVblrU","display_url":"pic.twitter.com\/0qyEwVblrU","expanded_url":"https:\/\/twitter.com\/Jane_FKyalo\/status\/1452523525852573696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1452523525852573696,"source_status_id_str":"1452523525852573696","source_user_id":1005460195202551808,"source_user_id_str":"1005460195202551808"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 25 06:32:49 +0000 2021","id":1452523525852573696,"id_str":"1452523525852573696","text":"It - is a blessed week. The smile shows it .... https:\/\/t.co\/0qyEwVblrU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1452523457598656513,"id_str":"1452523457598656513","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","url":"https:\/\/t.co\/0qyEwVblrU","display_url":"pic.twitter.com\/0qyEwVblrU","expanded_url":"https:\/\/twitter.com\/Jane_FKyalo\/status\/1452523525852573696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1452523457598656513,"id_str":"1452523457598656513","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FChmY44XEAE1jzA.jpg","url":"https:\/\/t.co\/0qyEwVblrU","display_url":"pic.twitter.com\/0qyEwVblrU","expanded_url":"https:\/\/twitter.com\/Jane_FKyalo\/status\/1452523525852573696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":672,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251192434211590147\/YLcG7e8y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251192434211590147\/YLcG7e8y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084927957901160449,"id_str":"1084927957901160449","name":"keith - kershaw","screen_name":"keithkershaw7","location":"England, United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":162,"listed_count":0,"created_at":"Mon - Jan 14 21:39:16 +0000 2019","favourites_count":11459,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5582,"lang":null,"status":{"created_at":"Fri - Mar 25 21:18:55 +0000 2022","id":1507467087941410820,"id_str":"1507467087941410820","text":"@SimonJonesNews - @OpenshawJack They are a joke","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SimonJonesNews","name":"Simon - Jones","id":247247709,"id_str":"247247709","indices":[0,15]},{"screen_name":"OpenshawJack","name":"jack - openshaw","id":2985497453,"id_str":"2985497453","indices":[16,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507390860794773505,"in_reply_to_status_id_str":"1507390860794773505","in_reply_to_user_id":247247709,"in_reply_to_user_id_str":"247247709","in_reply_to_screen_name":"SimonJonesNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346212547507200004\/-io3Yn17_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346212547507200004\/-io3Yn17_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084927957901160449\/1609796960","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301196757272010753,"id_str":"1301196757272010753","name":"Marcus - Paye","screen_name":"MarcusPaye3","location":"Monrovia, Liberia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":2439,"listed_count":0,"created_at":"Wed - Sep 02 16:34:49 +0000 2020","favourites_count":231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":196,"lang":null,"status":{"created_at":"Sun - Aug 01 05:46:13 +0000 2021","id":1421708829469941766,"id_str":"1421708829469941766","text":"@MorlayeSylla24 - @TropheesDC @HACofficiel \ud83d\ude4f\ud83d\ude4f\ud83d\ude4f\ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MorlayeSylla24","name":"Morlaye - Sylla \ud83c\uddec\ud83c\uddf3","id":1149776847833616384,"id_str":"1149776847833616384","indices":[0,15]},{"screen_name":"TropheesDC","name":"Troph\u00e9es - Des Champions","id":1375152632768180230,"id_str":"1375152632768180230","indices":[16,27]},{"screen_name":"HACofficiel","name":"Horoya - Athl\u00e9tic Club","id":1149657712025907200,"id_str":"1149657712025907200","indices":[28,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1421629659087839234,"in_reply_to_status_id_str":"1421629659087839234","in_reply_to_user_id":1149776847833616384,"in_reply_to_user_id_str":"1149776847833616384","in_reply_to_screen_name":"MorlayeSylla24","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367549567491854339\/hqqr-3Ne_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367549567491854339\/hqqr-3Ne_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301196757272010753\/1602167580","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311070442002800640,"id_str":"1311070442002800640","name":"me","screen_name":"thenotoriusMDB","location":"","description":"Notorious - is mis-spelled because someone more notorious already had this username.\n\n*anti-t***p*pro - science*pro truth*blm*biden\/harris2020*","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":1025,"listed_count":0,"created_at":"Tue - Sep 29 22:28:55 +0000 2020","favourites_count":30434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":681,"lang":null,"status":{"created_at":"Fri - Mar 25 23:50:08 +0000 2022","id":1507505141779509256,"id_str":"1507505141779509256","text":"@glee_writes - Shrimp \ud83d\ude05","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"glee_writes","name":"AuthorGingerLee\u00a9\ufe0f","id":2548964120,"id_str":"2548964120","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507354962988314644,"in_reply_to_status_id_str":"1507354962988314644","in_reply_to_user_id":2548964120,"in_reply_to_user_id_str":"2548964120","in_reply_to_screen_name":"glee_writes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311070661142556674\/9SMYi6Lx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311070661142556674\/9SMYi6Lx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311070442002800640\/1631668918","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":82242630,"id_str":"82242630","name":"Dambaru - Jena","screen_name":"ddjena","location":"Chicago,IL","description":"Principal - Director at Accenture Applied Intelligence Specializing in AI, BigData, MDM, - Data Governance and Data Quality","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":68,"friends_count":214,"listed_count":2,"created_at":"Wed - Oct 14 01:18:30 +0000 2009","favourites_count":574,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339409531433062401\/cwUFQX20_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339409531433062401\/cwUFQX20_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82242630\/1608180071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35554481,"id_str":"35554481","name":"Mehmet - Ataman, MD","screen_name":"mehmet_ataman","location":"Ankara-Turkey","description":"Consultant - for the Healthcare Industry | Otolaryngologist | Momentum Trader | Ideas \u2260 - advice | Yazd\u0131klar\u0131m yat\u0131r\u0131m tavsiyesi de\u011fil, ki\u015fisel - g\u00f6r\u00fc\u015flerimdir.","url":"https:\/\/t.co\/SjrjvSMBcE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SjrjvSMBcE","expanded_url":"http:\/\/www.mehmetataman.com","display_url":"mehmetataman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":833,"listed_count":5,"created_at":"Sun - Apr 26 20:22:02 +0000 2009","favourites_count":14534,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":175,"lang":null,"status":{"created_at":"Fri - Mar 25 19:47:12 +0000 2022","id":1507444005436592145,"id_str":"1507444005436592145","text":"RT - @MKA__ATAM: Faz\u0131l Say, Japonya''da \u00fcnl\u00fc komedyen Take\u015fi - Kitano''nun program\u0131na kat\u0131l\u0131yor.\nProgramda kendisine ilk - kez dinletilen par\u00e7ay\u0131 \u00e7\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MKA__ATAM","name":"\u0181\u0196\u01a6 - \u01ac\u01b2\u01ac\u019bM \u0193\u01b2\u0308\u053c\u01b2\u0308\u0187\u01b2\u0308\u0198","id":818940380158840832,"id_str":"818940380158840832","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:23:23 +0000 2022","id":1507392714039603206,"id_str":"1507392714039603206","text":"Faz\u0131l - Say, Japonya''da \u00fcnl\u00fc komedyen Take\u015fi Kitano''nun program\u0131na - kat\u0131l\u0131yor.\nProgramda kendisine ilk kez dinletilen\u2026 https:\/\/t.co\/FjITuwN2zh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FjITuwN2zh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507392714039603206","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2687,"favorite_count":27569,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":2687,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1092039384113790976\/Uzid-vza_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1092039384113790976\/Uzid-vza_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3413439193,"id_str":"3413439193","name":"Zhu - Jianchao \u6731\u5efa\u6f6e","screen_name":"jianchaozhu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":877,"listed_count":0,"created_at":"Tue - Sep 01 09:39:37 +0000 2015","favourites_count":245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Mon - Mar 21 04:55:04 +0000 2022","id":1505769940992811009,"id_str":"1505769940992811009","text":"@TheFigen - 15","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheFigen","name":"Figen","id":213831700,"id_str":"213831700","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505622321167482888,"in_reply_to_status_id_str":"1505622321167482888","in_reply_to_user_id":213831700,"in_reply_to_user_id_str":"213831700","in_reply_to_screen_name":"TheFigen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242336353070862336\/HW0tcJ8u_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242336353070862336\/HW0tcJ8u_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3413439193\/1584968018","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":384730892,"id_str":"384730892","name":"anne - maher","screen_name":"annieviv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":37,"listed_count":0,"created_at":"Tue - Oct 04 06:52:33 +0000 2011","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Feb 19 00:22:31 +0000 2022","id":1494829715311542272,"id_str":"1494829715311542272","text":"@Rogers4Texas - \ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rogers4Texas","name":"Jason - Rogers","id":968225030986493952,"id_str":"968225030986493952","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1494507759131320322,"in_reply_to_status_id_str":"1494507759131320322","in_reply_to_user_id":968225030986493952,"in_reply_to_user_id_str":"968225030986493952","in_reply_to_screen_name":"Rogers4Texas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65390485,"id_str":"65390485","name":"Sven","screen_name":"amunderod","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":126,"listed_count":0,"created_at":"Thu - Aug 13 15:37:57 +0000 2009","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":842674783850520576,"id_str":"842674783850520576","name":"Bruce - Gallick","screen_name":"bruce_gallick","location":"Pennsylvania, USA","description":"Dedicated - to family and work","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":145,"listed_count":2,"created_at":"Fri - Mar 17 09:51:39 +0000 2017","favourites_count":3523,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":302,"lang":null,"status":{"created_at":"Mon - Feb 22 03:36:36 +0000 2021","id":1363694149174706179,"id_str":"1363694149174706179","text":"@MSNBC - \ud83e\udd14 Amazon, FedEx, UPS still getting overnight package delivered","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1363693275182477313,"in_reply_to_status_id_str":"1363693275182477313","in_reply_to_user_id":2836421,"in_reply_to_user_id_str":"2836421","in_reply_to_screen_name":"MSNBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326635249711910912\/CgixzUkr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326635249711910912\/CgixzUkr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842674783850520576\/1605129492","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":247530641,"id_str":"247530641","name":"trixiemn - \ud83c\udf3b","screen_name":"trixiemn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":259,"listed_count":0,"created_at":"Sat - Feb 05 00:26:42 +0000 2011","favourites_count":9778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2279,"lang":null,"status":{"created_at":"Fri - Mar 25 22:16:44 +0000 2022","id":1507481635901554688,"id_str":"1507481635901554688","text":"@DocRah_Peds - What a wonderful story. Beautiful. Keep aiming for the stars!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DocRah_Peds","name":"Rah-Sha - Al-Hassan","id":1505921509931556866,"id_str":"1505921509931556866","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506977678565466112,"in_reply_to_status_id_str":"1506977678565466112","in_reply_to_user_id":1505921509931556866,"in_reply_to_user_id_str":"1505921509931556866","in_reply_to_screen_name":"DocRah_Peds","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197687546597298176\/ZMLEihpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197687546597298176\/ZMLEihpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247530641\/1574385854","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2245721610,"id_str":"2245721610","name":"enockmatoke","screen_name":"GmEnockmatoke","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1165,"listed_count":0,"created_at":"Sat - Dec 14 15:04:17 +0000 2013","favourites_count":2341,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":176,"lang":null,"status":{"created_at":"Tue - Mar 01 10:56:38 +0000 2022","id":1498613173934604291,"id_str":"1498613173934604291","text":"RT - @LagatElphas: Day 1 at the BBC. I noticed quickly that I came over dressed. - Everyone has been welcoming and really friendly. I am thrill\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LagatElphas","name":"Elphas - Lagat","id":1044193603,"id_str":"1044193603","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 14:44:59 +0000 2022","id":1498308251980636165,"id_str":"1498308251980636165","text":"Day - 1 at the BBC. I noticed quickly that I came over dressed. Everyone has been - welcoming and really friendly. I am\u2026 https:\/\/t.co\/gcmdyTDY4L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gcmdyTDY4L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498308251980636165","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":538,"favorite_count":7718,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":538,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":806201480252444672,"id_str":"806201480252444672","name":"Ganesh - Chintam","screen_name":"ganeshchintam","location":"Narsampet","description":"I - don''t really like anybody so don''t tell me I''m anybody else","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":941,"listed_count":0,"created_at":"Tue - Dec 06 18:19:46 +0000 2016","favourites_count":3846,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"status":{"created_at":"Mon - Jan 24 16:53:25 +0000 2022","id":1485656997945311237,"id_str":"1485656997945311237","text":"https:\/\/t.co\/WPKgc7EsTh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1485656993809707008,"id_str":"1485656993809707008","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FJ4dKh4aMAACj3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJ4dKh4aMAACj3m.jpg","url":"https:\/\/t.co\/WPKgc7EsTh","display_url":"pic.twitter.com\/WPKgc7EsTh","expanded_url":"https:\/\/twitter.com\/ganeshchintam\/status\/1485656997945311237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2016,"h":2016,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1485656993809707008,"id_str":"1485656993809707008","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FJ4dKh4aMAACj3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJ4dKh4aMAACj3m.jpg","url":"https:\/\/t.co\/WPKgc7EsTh","display_url":"pic.twitter.com\/WPKgc7EsTh","expanded_url":"https:\/\/twitter.com\/ganeshchintam\/status\/1485656997945311237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2016,"h":2016,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417119627713286150\/HZ3_6PQo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417119627713286150\/HZ3_6PQo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806201480252444672\/1626703062","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243503039098630148,"id_str":"1243503039098630148","name":"Jaco - Kruger","screen_name":"JPK_InTheMiddle","location":"","description":"Subaltern - cosmopolitan Sensitizing with regard to racial blind spots and power differentials","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":575,"listed_count":0,"created_at":"Fri - Mar 27 11:40:39 +0000 2020","favourites_count":877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":null,"status":{"created_at":"Tue - Mar 22 14:18:19 +0000 2022","id":1506274077018841092,"id_str":"1506274077018841092","text":"RT - @gail13sa: How awesome is this? I love South Africa \ud83d\udc9e https:\/\/t.co\/PzbfhXQ1cl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gail13sa","name":"Gail","id":2422566951,"id_str":"2422566951","indices":[3,12]}],"urls":[],"media":[{"id":1505929511845736449,"id_str":"1505929511845736449","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","url":"https:\/\/t.co\/PzbfhXQ1cl","display_url":"pic.twitter.com\/PzbfhXQ1cl","expanded_url":"https:\/\/twitter.com\/gail13sa\/status\/1505929525284245515\/photo\/1","type":"photo","sizes":{"large":{"w":1518,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":504,"h":680,"resize":"fit"},"medium":{"w":889,"h":1200,"resize":"fit"}},"source_status_id":1505929525284245515,"source_status_id_str":"1505929525284245515","source_user_id":2422566951,"source_user_id_str":"2422566951"}]},"extended_entities":{"media":[{"id":1505929511845736449,"id_str":"1505929511845736449","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","url":"https:\/\/t.co\/PzbfhXQ1cl","display_url":"pic.twitter.com\/PzbfhXQ1cl","expanded_url":"https:\/\/twitter.com\/gail13sa\/status\/1505929525284245515\/photo\/1","type":"photo","sizes":{"large":{"w":1518,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":504,"h":680,"resize":"fit"},"medium":{"w":889,"h":1200,"resize":"fit"}},"source_status_id":1505929525284245515,"source_status_id_str":"1505929525284245515","source_user_id":2422566951,"source_user_id_str":"2422566951"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:29:12 +0000 2022","id":1505929525284245515,"id_str":"1505929525284245515","text":"How - awesome is this? I love South Africa \ud83d\udc9e https:\/\/t.co\/PzbfhXQ1cl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505929511845736449,"id_str":"1505929511845736449","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","url":"https:\/\/t.co\/PzbfhXQ1cl","display_url":"pic.twitter.com\/PzbfhXQ1cl","expanded_url":"https:\/\/twitter.com\/gail13sa\/status\/1505929525284245515\/photo\/1","type":"photo","sizes":{"large":{"w":1518,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":504,"h":680,"resize":"fit"},"medium":{"w":889,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505929511845736449,"id_str":"1505929511845736449","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYi6YpXsAEjYx8.jpg","url":"https:\/\/t.co\/PzbfhXQ1cl","display_url":"pic.twitter.com\/PzbfhXQ1cl","expanded_url":"https:\/\/twitter.com\/gail13sa\/status\/1505929525284245515\/photo\/1","type":"photo","sizes":{"large":{"w":1518,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":504,"h":680,"resize":"fit"},"medium":{"w":889,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":707,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":59,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415672229669474318\/GnCtdENq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415672229669474318\/GnCtdENq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243503039098630148\/1637492802","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":80594575,"id_str":"80594575","name":"TT","screen_name":"TripTripathy","location":"United - States","description":"Avid reader, book collector & student of History\/ - Used to be World Traveler \/ Doggie & Animal Lover \/ Biz Advisor \/ Investor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":1495,"listed_count":9,"created_at":"Wed - Oct 07 14:48:35 +0000 2009","favourites_count":95195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":832,"lang":null,"status":{"created_at":"Sun - Mar 06 16:57:44 +0000 2022","id":1500515986662907912,"id_str":"1500515986662907912","text":"@McFaul - The whole notion of a Security Council with 5 permanent members with veto - votes is out of date. Needs to be rotating.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"McFaul","name":"Michael - McFaul","id":454099919,"id_str":"454099919","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500513751967039490,"in_reply_to_status_id_str":"1500513751967039490","in_reply_to_user_id":454099919,"in_reply_to_user_id_str":"454099919","in_reply_to_screen_name":"McFaul","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/912513703060361216\/v9PORGA0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/912513703060361216\/v9PORGA0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80594575\/1453095598","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":944305559926460419,"id_str":"944305559926460419","name":"XMARK1131","screen_name":"JesusKingofLove","location":"Ohio, - USA","description":"Love God, Wife, Children, Family, Cleveland Browns, Prince, - Northern Man with Southern hospitality.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":272,"friends_count":3878,"listed_count":1,"created_at":"Fri - Dec 22 20:36:04 +0000 2017","favourites_count":3236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3479,"lang":null,"status":{"created_at":"Fri - Mar 25 11:40:22 +0000 2022","id":1507321488461991938,"id_str":"1507321488461991938","text":"RT - @KathieLGifford: Whenever I am afraid, I will trust in You. Psalm 56:3. LORD, - it feels like we are afraid all the time now. There is cha\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KathieLGifford","name":"Kathie - Lee Gifford","id":80676273,"id_str":"80676273","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 08:37:59 +0000 2022","id":1507275590264672256,"id_str":"1507275590264672256","text":"Whenever - I am afraid, I will trust in You. Psalm 56:3. LORD, it feels like we are afraid - all the time now. There is\u2026 https:\/\/t.co\/aPYhahPyP9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aPYhahPyP9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507275590264672256","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":241,"favorite_count":2350,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":241,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484353431447818242\/23sgzhCb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484353431447818242\/23sgzhCb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/944305559926460419\/1621865526","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246032886890930177,"id_str":"1246032886890930177","name":"LaVerdadSeaDicha","screen_name":"LaVerdadSeaDi15","location":"","description":"We - will make a better world through science and education, one in which everyone - is free to be their true self.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":351,"listed_count":4,"created_at":"Fri - Apr 03 11:12:58 +0000 2020","favourites_count":725,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Thu - Feb 11 17:10:56 +0000 2021","id":1359912816355012610,"id_str":"1359912816355012610","text":"RT - @KleinerZambrano: 6 de febrero: ni un voto para los Indios que incendiaron - Quito\n7-8-9 de Febrero: vamos Yaku y hermanos ind\u00edgenas, junt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KleinerZambrano","name":"Kleiner - Zambrano","id":1258598409629564928,"id_str":"1258598409629564928","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 10 18:33:17 +0000 2021","id":1359571153933787136,"id_str":"1359571153933787136","text":"6 - de febrero: ni un voto para los Indios que incendiaron Quito\n7-8-9 de Febrero: - vamos Yaku y hermanos ind\u00edgenas, j\u2026 https:\/\/t.co\/HjmCh50PHp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HjmCh50PHp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1359571153933787136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":350,"favorite_count":760,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":350,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246033113819443200\/mOMA75xK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246033113819443200\/mOMA75xK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21664624,"id_str":"21664624","name":"Jeff - McCallister","screen_name":"JeffMcCallister","location":"Columbus, Ohio","description":"Idealist, - introvert, optimist, nerd.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":320,"listed_count":3,"created_at":"Mon - Feb 23 16:17:47 +0000 2009","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Fri - Mar 04 18:41:08 +0000 2022","id":1499817233354309636,"id_str":"1499817233354309636","text":"@aldente37 - @marcopoloz Great news!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aldente37","name":"alan - rutherford","id":453573383,"id_str":"453573383","indices":[0,10]},{"screen_name":"marcopoloz","name":"mark-o - \u2650","id":328342976,"id_str":"328342976","indices":[11,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499789670556839937,"in_reply_to_status_id_str":"1499789670556839937","in_reply_to_user_id":453573383,"in_reply_to_user_id_str":"453573383","in_reply_to_screen_name":"aldente37","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452612418941689856\/UQz_q8sk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452612418941689856\/UQz_q8sk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21664624\/1454586217","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2482476048,"id_str":"2482476048","name":"Ayub - malik","screen_name":"ayubmalik12","location":"\u0627\u0633\u0644\u0627\u0645 - \u0622\u0628\u0627\u062f, \u067e\u0627\u06a9\u0633\u062a\u0627\u0646","description":"president - National party Punjab","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":472,"listed_count":0,"created_at":"Wed - May 07 17:11:07 +0000 2014","favourites_count":11988,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Tue - Jan 25 15:31:08 +0000 2022","id":1485998680914153472,"id_str":"1485998680914153472","text":"My - today''s article published in Jang Urdu.\n\nhttps:\/\/t.co\/h36zBe0wYo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h36zBe0wYo","expanded_url":"https:\/\/jang.com.pk\/news\/1041504","display_url":"jang.com.pk\/news\/1041504","indices":[44,67]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/983560528361639936\/o72HNbZn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/983560528361639936\/o72HNbZn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2644779621,"id_str":"2644779621","name":"Patricia - Terraciano","screen_name":"PatriciaTerraci","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":325,"listed_count":0,"created_at":"Thu - Jun 26 19:47:40 +0000 2014","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Jan 28 00:41:51 +0000 2021","id":1354590476419166208,"id_str":"1354590476419166208","text":"@BFlanaganNJ - Yes I am trying to get a date for a second shot. I received the first shot - in Monroe on January 22. A\u2026 https:\/\/t.co\/UUnAmpxeQJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BFlanaganNJ","name":"Brenda - Flanagan","id":2434421515,"id_str":"2434421515","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/UUnAmpxeQJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1354590476419166208","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1354572703664132100,"in_reply_to_status_id_str":"1354572703664132100","in_reply_to_user_id":2434421515,"in_reply_to_user_id_str":"2434421515","in_reply_to_screen_name":"BFlanaganNJ","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":969393915903307777,"id_str":"969393915903307777","name":"ann - billak","screen_name":"AnnBillak","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":1215,"listed_count":0,"created_at":"Fri - Mar 02 02:08:14 +0000 2018","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Nov 01 19:43:00 +0000 2020","id":1322987523413520386,"id_str":"1322987523413520386","text":"@gtconway3d - I am embarrassed for NJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gtconway3d","name":"George - Conway\ud83c\udf3b","id":471677441,"id_str":"471677441","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1322974603296333824,"in_reply_to_status_id_str":"1322974603296333824","in_reply_to_user_id":471677441,"in_reply_to_user_id_str":"471677441","in_reply_to_screen_name":"gtconway3d","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198646043631591428,"id_str":"1198646043631591428","name":"Cherno - A Sowe","screen_name":"ChernoASowe1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":1699,"listed_count":1,"created_at":"Sun - Nov 24 16:54:46 +0000 2019","favourites_count":852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Fri - Mar 25 00:09:35 +0000 2022","id":1507147646699548672,"id_str":"1507147646699548672","text":"RT - @OccupyDemocrats: In this powerful photo, Judge Ketanji Brown Jackson gets - a kiss from her husband after being subjected to a barrage of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:05:19 +0000 2022","id":1506814387826446337,"id_str":"1506814387826446337","text":"In - this powerful photo, Judge Ketanji Brown Jackson gets a kiss from her husband - after being subjected to a barrage\u2026 https:\/\/t.co\/uouxjoSqv9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uouxjoSqv9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506814387826446337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11373,"favorite_count":46585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11373,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198646379012341760\/bGNJULen_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198646379012341760\/bGNJULen_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29016392,"id_str":"29016392","name":"Hafiz - Karmali","screen_name":"hafizkarmali","location":"","description":"theatre - director","url":"http:\/\/t.co\/iemHPUoaJe","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/iemHPUoaJe","expanded_url":"http:\/\/www.hafizkarmali.com","display_url":"hafizkarmali.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":341,"friends_count":3613,"listed_count":2,"created_at":"Sun - Apr 05 16:48:07 +0000 2009","favourites_count":7181,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":277,"lang":null,"status":{"created_at":"Sun - Feb 13 15:14:35 +0000 2022","id":1492879883810316288,"id_str":"1492879883810316288","text":"@luwanka21 - @rahulmcfc excellent thread","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"luwanka21","name":"Luwanka","id":1299756443407613953,"id_str":"1299756443407613953","indices":[0,10]},{"screen_name":"rahulmcfc","name":"Rahul","id":788229773185036290,"id_str":"788229773185036290","indices":[11,21]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1492875416385867778,"in_reply_to_status_id_str":"1492875416385867778","in_reply_to_user_id":1299756443407613953,"in_reply_to_user_id_str":"1299756443407613953","in_reply_to_screen_name":"luwanka21","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1700843229\/imagesCA0M6B4Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1700843229\/imagesCA0M6B4Q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":449186485,"id_str":"449186485","name":"NZKZ\ud83c\uddf8\ud83c\uddf3\ud83c\uddfa\ud83c\udde6","screen_name":"jlou22rw","location":"Kigali - Rwanda ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":680,"friends_count":2020,"listed_count":20,"created_at":"Wed - Dec 28 20:59:41 +0000 2011","favourites_count":34987,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12132,"lang":null,"status":{"created_at":"Fri - Mar 25 17:47:35 +0000 2022","id":1507413901239103500,"id_str":"1507413901239103500","text":"RT - @moneyacademyKE: At least 40 African countries print money in UK, France & - Germany decades after independence.\n \nEthiopia & 14 other cou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"moneyacademyKE","name":"Moe","id":2413857985,"id_str":"2413857985","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:10:58 +0000 2022","id":1507389589773856774,"id_str":"1507389589773856774","text":"At - least 40 African countries print money in UK, France & Germany decades - after independence.\n \nEthiopia & 14 other\u2026 https:\/\/t.co\/YSm6jSkSpA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YSm6jSkSpA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507389589773856774","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[125,148]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":613,"favorite_count":1437,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":613,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332807123915431938\/bWuzeMsk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332807123915431938\/bWuzeMsk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449186485\/1414228341","profile_link_color":"00A4B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":109070380,"id_str":"109070380","name":"Sherif","screen_name":"sherif_k","location":"Alexandria, - Egypt","description":"Stuck in my Groundhog Day!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":1368,"listed_count":2,"created_at":"Wed - Jan 27 22:01:05 +0000 2010","favourites_count":20338,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9960,"lang":null,"status":{"created_at":"Thu - Mar 24 16:31:44 +0000 2022","id":1507032428589850627,"id_str":"1507032428589850627","text":"@mooodaaaa - \ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mooodaaaa","name":"moda - \uf8ff","id":2423663389,"id_str":"2423663389","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506712099258576898,"in_reply_to_status_id_str":"1506712099258576898","in_reply_to_user_id":2423663389,"in_reply_to_user_id_str":"2423663389","in_reply_to_screen_name":"mooodaaaa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055831678902562824\/VYKhIjUL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055831678902562824\/VYKhIjUL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109070380\/1540564817","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308997733911531520,"id_str":"1308997733911531520","name":"KAKOWA - HOLDINGS LTD","screen_name":"GrecianKanyund1","location":"Lilongwe","description":"General - Agriculturalist, field facilitator, Entrepreneurer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":464,"friends_count":2405,"listed_count":0,"created_at":"Thu - Sep 24 05:13:25 +0000 2020","favourites_count":401,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":122,"lang":null,"status":{"created_at":"Fri - Jan 07 12:53:35 +0000 2022","id":1479436051781505027,"id_str":"1479436051781505027","text":"@chizmonjuchi - Share the Audio bro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chizmonjuchi","name":"Rastar - Bwoy","id":1349354441879785475,"id_str":"1349354441879785475","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1479167569529556993,"in_reply_to_status_id_str":"1479167569529556993","in_reply_to_user_id":1349354441879785475,"in_reply_to_user_id_str":"1349354441879785475","in_reply_to_screen_name":"chizmonjuchi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310138811310125056\/j9GhvDjx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310138811310125056\/j9GhvDjx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":734900702347153408,"id_str":"734900702347153408","name":"curl - hard","screen_name":"officehpcoach","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":2175,"listed_count":0,"created_at":"Tue - May 24 00:15:56 +0000 2016","favourites_count":87959,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3981,"lang":null,"status":{"created_at":"Fri - Mar 25 14:42:16 +0000 2022","id":1507367267331420172,"id_str":"1507367267331420172","text":"@NydiaVelazquez - @joncoopertweets And since he won\u2019t what will actually be done about - it?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NydiaVelazquez","name":"Rep. - Nydia Velazquez","id":164369297,"id_str":"164369297","indices":[0,15]},{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[16,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507336391251972098,"in_reply_to_status_id_str":"1507336391251972098","in_reply_to_user_id":164369297,"in_reply_to_user_id_str":"164369297","in_reply_to_screen_name":"NydiaVelazquez","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/734902615864053760\/IzLBouIB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/734902615864053760\/IzLBouIB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/734900702347153408\/1543174764","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":915257025772249088,"id_str":"915257025772249088","name":"Love","screen_name":"supot_si","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":1600,"listed_count":0,"created_at":"Tue - Oct 03 16:47:34 +0000 2017","favourites_count":2948,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14232,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/915500606919393281\/DhTlRGIp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/915500606919393281\/DhTlRGIp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4494557178,"id_str":"4494557178","name":"Hany - Lukito \ud83c\uddee\ud83c\udde9","screen_name":"hany_lukito","location":"Surabaya, - East Java, Indonesia","description":"Praise the Lord \ud83d\ude4f. Enjoying - HIS Creatures, the natures \ud83d\udc4d. Adventurer \u26f0\ufe0f. Road runner - \ud83c\udfc35K & 10K. Please NO DM \ud83d\udeab","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":96,"friends_count":2617,"listed_count":0,"created_at":"Tue - Dec 08 07:57:40 +0000 2015","favourites_count":37936,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":85,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484163625032249347\/LY0IK8bi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484163625032249347\/LY0IK8bi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4494557178\/1645976977","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90795423,"id_str":"90795423","name":"Terry - Ennis","screen_name":"msterry2005","location":"Detroit","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":842,"listed_count":0,"created_at":"Wed - Nov 18 03:53:15 +0000 2009","favourites_count":11947,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264209099702636545\/xJLQAooD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264209099702636545\/xJLQAooD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":840096550772592642,"id_str":"840096550772592642","name":"OtiPaul\ud83c\uddf0\ud83c\uddea\ud83c\udde6\ud83c\uddfa\ud83c\uddec\ud83c\udde7","screen_name":"Kenyan_mafiah","location":"United - States of Africa \u2764\ufe0f","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":474,"friends_count":599,"listed_count":0,"created_at":"Fri - Mar 10 07:06:40 +0000 2017","favourites_count":14977,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311,"lang":null,"status":{"created_at":"Sat - Mar 26 05:36:26 +0000 2022","id":1507592292609232896,"id_str":"1507592292609232896","text":"RT - @Absa: Join the Absa Gen A Grad Programme for top mentorship, coaching, industry - experience & perks. #Africanacity #AbsaGenA","truncated":false,"entities":{"hashtags":[{"text":"Africanacity","indices":[108,121]},{"text":"AbsaGenA","indices":[122,131]}],"symbols":[],"user_mentions":[{"screen_name":"Absa","name":"Absa - Group","id":2432320914,"id_str":"2432320914","indices":[3,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 13:52:10 +0000 2022","id":1501918840682332173,"id_str":"1501918840682332173","text":"Join - the Absa Gen A Grad Programme for top mentorship, coaching, industry experience - & perks. #Africanacity #AbsaGenA","truncated":false,"entities":{"hashtags":[{"text":"Africanacity","indices":[98,111]},{"text":"AbsaGenA","indices":[112,121]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":2364,"favorited":false,"retweeted":false,"scopes":{"followers":false},"lang":"en"},"is_quote_status":false,"retweet_count":74,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262668487098544129\/dYlCtt4W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262668487098544129\/dYlCtt4W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/840096550772592642\/1589903339","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":925408920,"id_str":"925408920","name":"Mayow\u00e0","screen_name":"aremo115","location":"somewhere","description":"Before - I die, I will feed millions and inspire billions \u270c\ud83c\udf41","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1297,"friends_count":4219,"listed_count":2,"created_at":"Sun - Nov 04 14:05:32 +0000 2012","favourites_count":70872,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14579,"lang":null,"status":{"created_at":"Sat - Mar 26 05:45:55 +0000 2022","id":1507594676781649920,"id_str":"1507594676781649920","text":"@AbolanleNosiru - @yetuns564 @Seundammylola @Febsbaby_ Cpr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AbolanleNosiru","name":"Nosiru - Abolanle","id":1312774550216638465,"id_str":"1312774550216638465","indices":[0,15]},{"screen_name":"yetuns564","name":"Katty","id":703656732833288192,"id_str":"703656732833288192","indices":[16,26]},{"screen_name":"Seundammylola","name":"Ephphatha","id":863753316,"id_str":"863753316","indices":[27,41]},{"screen_name":"Febsbaby_","name":"Febechiloveschocolates","id":991661675618193408,"id_str":"991661675618193408","indices":[42,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507562442137780232,"in_reply_to_status_id_str":"1507562442137780232","in_reply_to_user_id":1312774550216638465,"in_reply_to_user_id_str":"1312774550216638465","in_reply_to_screen_name":"AbolanleNosiru","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456491501869993984\/tF1uCCur_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456491501869993984\/tF1uCCur_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925408920\/1390178515","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33754407,"id_str":"33754407","name":"Lesli - Johnston","screen_name":"LesliJohnston","location":"Raleigh, NC","description":"Speech - Language Pathologist, Infant Feeding Specialist, mother of two amazing children - who will succeed in spite of me not because of me, WVU \u201894","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":33,"friends_count":1067,"listed_count":0,"created_at":"Tue - Apr 21 01:25:51 +0000 2009","favourites_count":17705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1236,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1373497740475428868\/tAn1Ht96_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1373497740475428868\/tAn1Ht96_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242174802577829888,"id_str":"1242174802577829888","name":"Chia - Justin","screen_name":"ChiaJustin2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":162,"listed_count":0,"created_at":"Mon - Mar 23 19:42:21 +0000 2020","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Tue - Jun 22 20:33:13 +0000 2021","id":1407436533746053129,"id_str":"1407436533746053129","text":"RT - @237Showbiz: [ 237showbiz Paper 1 MCQ ]\n\nAccording to you , Who is the - JAY-Z of The Cameroon music Industry ? \n\nA) Jovi\nB) @TENOR_offi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"237Showbiz","name":"#237Showbiz\ud83c\udde8\ud83c\uddf2","id":3404523537,"id_str":"3404523537","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 22 19:18:09 +0000 2021","id":1407417643351564297,"id_str":"1407417643351564297","text":"[ - 237showbiz Paper 1 MCQ ]\n\nAccording to you , Who is the JAY-Z of The Cameroon - music Industry ? \n\nA) Jovi\nB)\u2026 https:\/\/t.co\/HDSO4pxAR3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HDSO4pxAR3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1407417643351564297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242175275284168707\/GxriSaDy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242175275284168707\/GxriSaDy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1153312294203531264,"id_str":"1153312294203531264","name":"Dickson - Arsen","screen_name":"DicksonArsen4","location":"","description":"I will...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":1218,"listed_count":0,"created_at":"Mon - Jul 22 14:34:13 +0000 2019","favourites_count":2477,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":172,"lang":null,"status":{"created_at":"Fri - Aug 13 20:08:56 +0000 2021","id":1426274591807246344,"id_str":"1426274591807246344","text":"RT - @John_Pambalu: Retweet 3,000 kuwaambia watawala kuwa. \n#MboweSioGaidi https:\/\/t.co\/gGndOUNTUf","truncated":false,"entities":{"hashtags":[{"text":"MboweSioGaidi","indices":[58,72]}],"symbols":[],"user_mentions":[{"screen_name":"John_Pambalu","name":"John - Pambalu","id":980521402678874113,"id_str":"980521402678874113","indices":[3,16]}],"urls":[],"media":[{"id":1426124316089978881,"id_str":"1426124316089978881","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","url":"https:\/\/t.co\/gGndOUNTUf","display_url":"pic.twitter.com\/gGndOUNTUf","expanded_url":"https:\/\/twitter.com\/John_Pambalu\/status\/1426124326470930433\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1426124326470930433,"source_status_id_str":"1426124326470930433","source_user_id":980521402678874113,"source_user_id_str":"980521402678874113"}]},"extended_entities":{"media":[{"id":1426124316089978881,"id_str":"1426124316089978881","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","url":"https:\/\/t.co\/gGndOUNTUf","display_url":"pic.twitter.com\/gGndOUNTUf","expanded_url":"https:\/\/twitter.com\/John_Pambalu\/status\/1426124326470930433\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1426124326470930433,"source_status_id_str":"1426124326470930433","source_user_id":980521402678874113,"source_user_id_str":"980521402678874113"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Aug 13 10:11:50 +0000 2021","id":1426124326470930433,"id_str":"1426124326470930433","text":"Retweet - 3,000 kuwaambia watawala kuwa. \n#MboweSioGaidi https:\/\/t.co\/gGndOUNTUf","truncated":false,"entities":{"hashtags":[{"text":"MboweSioGaidi","indices":[40,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1426124316089978881,"id_str":"1426124316089978881","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","url":"https:\/\/t.co\/gGndOUNTUf","display_url":"pic.twitter.com\/gGndOUNTUf","expanded_url":"https:\/\/twitter.com\/John_Pambalu\/status\/1426124326470930433\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1426124316089978881,"id_str":"1426124316089978881","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E8qcgnIXEAEWc7i.jpg","url":"https:\/\/t.co\/gGndOUNTUf","display_url":"pic.twitter.com\/gGndOUNTUf","expanded_url":"https:\/\/twitter.com\/John_Pambalu\/status\/1426124326470930433\/photo\/1","type":"photo","sizes":{"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":856,"favorite_count":996,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":856,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153313282868092930\/7H5FnNsE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153313282868092930\/7H5FnNsE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288773640801198080,"id_str":"1288773640801198080","name":"Biafra - wisdom","screen_name":"wisdom_biafra","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":0,"listed_count":0,"created_at":"Thu - Jul 30 09:50:11 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Thu - Nov 05 15:14:46 +0000 2020","id":1324369571571290123,"id_str":"1324369571571290123","text":"Don''t - mind them because America election is over since on 3 th https:\/\/t.co\/sdjhVA8NDn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sdjhVA8NDn","expanded_url":"https:\/\/twitter.com\/marklevinshow\/status\/1324334450252124161","display_url":"twitter.com\/marklevinshow\/\u2026","indices":[64,87]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1324334450252124161,"quoted_status_id_str":"1324334450252124161","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299374283488026627\/H_7aKUGa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299374283488026627\/H_7aKUGa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286072161346748417,"id_str":"1286072161346748417","name":"Randall - Johnson","screen_name":"Randall25306599","location":"","description":"I''m - an electrician by profession and a God fearing gentleman who believe in the - Trinity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":133,"listed_count":0,"created_at":"Wed - Jul 22 22:55:10 +0000 2020","favourites_count":550,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Sun - Nov 07 03:32:20 +0000 2021","id":1457189145907011594,"id_str":"1457189145907011594","text":"@Orange_Liberia - good morning, I''m Randall Stephen Johnson\nLive in schiefflin Town,lower - margibi county, my two oran\u2026 https:\/\/t.co\/CvItYwtbj9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Orange_Liberia","name":"Orange - Liberia","id":859729164848463872,"id_str":"859729164848463872","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/CvItYwtbj9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1457189145907011594","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":859729164848463872,"in_reply_to_user_id_str":"859729164848463872","in_reply_to_screen_name":"Orange_Liberia","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320859304900124672\/cM36np6p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320859304900124672\/cM36np6p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286072161346748417\/1603752362","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":919900486328881152,"id_str":"919900486328881152","name":"Joyce - Hale","screen_name":"JoyceHa05810816","location":"Greenville, SC","description":"Arts - & Culture Business & Finance Government & Politics History News News Politics - Science US News World News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":318,"listed_count":0,"created_at":"Mon - Oct 16 12:19:01 +0000 2017","favourites_count":9812,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7857,"lang":null,"status":{"created_at":"Fri - Mar 04 00:31:43 +0000 2022","id":1499543071918379009,"id_str":"1499543071918379009","text":"RT - @ImpudentCat: @OccupyDemocrats INSULIN SHOULD BE FREE! \ud83d\udc81\ud83c\udffb\u200d\u2640\ufe0f - When inventor Frederick Banting discovered insulin in 1923, he refused to - p\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ImpudentCat","name":"Impudent - Cat","id":887366707,"id_str":"887366707","indices":[3,15]},{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 19:05:19 +0000 2022","id":1499460931813724166,"id_str":"1499460931813724166","text":"@OccupyDemocrats - INSULIN SHOULD BE FREE! \ud83d\udc81\ud83c\udffb\u200d\u2640\ufe0f When inventor - Frederick Banting discovered insulin in 1923, he refus\u2026 https:\/\/t.co\/E9HbYpcSCd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/E9HbYpcSCd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499460931813724166","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1499425074369253383,"in_reply_to_status_id_str":"1499425074369253383","in_reply_to_user_id":878284831,"in_reply_to_user_id_str":"878284831","in_reply_to_screen_name":"OccupyDemocrats","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":278,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":87,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299424405991370752,"id_str":"1299424405991370752","name":"aisha","screen_name":"aisha50647548","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":17,"listed_count":0,"created_at":"Fri - Aug 28 19:11:58 +0000 2020","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sun - Oct 11 08:16:59 +0000 2020","id":1315204738103808000,"id_str":"1315204738103808000","text":"@muftimenk - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"muftimenk","name":"Mufti - Menk","id":247653244,"id_str":"247653244","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1314483668157693952,"in_reply_to_status_id_str":"1314483668157693952","in_reply_to_user_id":247653244,"in_reply_to_user_id_str":"247653244","in_reply_to_screen_name":"muftimenk","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299424623591788545\/dA1yqxu2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299424623591788545\/dA1yqxu2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":305319753,"id_str":"305319753","name":"Gail - Baker","screen_name":"SweetGailB","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":67,"listed_count":0,"created_at":"Thu - May 26 00:51:35 +0000 2011","favourites_count":351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554745216461459456\/3xIuVWwV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554745216461459456\/3xIuVWwV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305319753\/1421096370","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1000936398638088192,"id_str":"1000936398638088192","name":"Alex","screen_name":"Alex90942046","location":"Minneapolis, - MN","description":"For in the day of trouble he will keep me safe in his dwelling; - he will hide me in the shelter of his sacred tent and set me high upon a rock. - Psalm 27:5 NIV","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":5000,"listed_count":0,"created_at":"Mon - May 28 03:06:48 +0000 2018","favourites_count":19220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2841,"lang":null,"status":{"created_at":"Wed - Mar 23 19:09:29 +0000 2022","id":1506709739375407112,"id_str":"1506709739375407112","text":"@RBReich - Trump never actually impeached. Impeachment proceedings happened in Congress, - but he wasn\u2019t impeached.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506706393255931906,"in_reply_to_status_id_str":"1506706393255931906","in_reply_to_user_id":148529707,"in_reply_to_user_id_str":"148529707","in_reply_to_screen_name":"RBReich","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":79,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326264482499325955\/5nT2yN1d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326264482499325955\/5nT2yN1d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000936398638088192\/1603870278","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1022552843591532544,"id_str":"1022552843591532544","name":"khan - achakzai","screen_name":"yousufachakzai2","location":"Afghanistan","description":"Teachers - Only Teach The Rules... But Winners, Winners Make The Rules.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":1750,"listed_count":0,"created_at":"Thu - Jul 26 18:42:50 +0000 2018","favourites_count":360,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":131,"lang":null,"status":{"created_at":"Wed - Dec 30 18:34:55 +0000 2020","id":1344351275480215554,"id_str":"1344351275480215554","text":"@QaniEsmat - @rasolyaar \u067e\u0631 \u067e\u0646\u062c\u0627\u0628 \u062f\u06cc \u0632\u0631 - \u0648\u0627\u0631\u06cc \u0628\u0644\u0627 \u06ab\u0631\u0681\u06d0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QaniEsmat","name":"Esmat - Qani","id":1097023913341665280,"id_str":"1097023913341665280","indices":[0,10]},{"screen_name":"rasolyaar","name":"Mohammad - Rasolyaar","id":843683882,"id_str":"843683882","indices":[11,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1344113699297103873,"in_reply_to_status_id_str":"1344113699297103873","in_reply_to_user_id":1097023913341665280,"in_reply_to_user_id_str":"1097023913341665280","in_reply_to_screen_name":"QaniEsmat","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ps"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238547494482653186\/4wiF2yUE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238547494482653186\/4wiF2yUE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022552843591532544\/1585844228","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":225794847,"id_str":"225794847","name":"T - E C H N O L O G I S T\ud83d\udcad","screen_name":"SundayAffiku","location":"Federal - Capital Territory, Nig","description":"A man of multi dimensional perspectives, - courteous yet streetwise and a lover of caftans and red caps.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":172,"friends_count":3332,"listed_count":0,"created_at":"Sun - Dec 12 13:20:02 +0000 2010","favourites_count":3878,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1200,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485222079322542080\/Yj3Xu_MX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485222079322542080\/Yj3Xu_MX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225794847\/1610998984","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":622691919,"id_str":"622691919","name":"Shawn - Goodwin voted BLUE 30 OCTOBER","screen_name":"ShawnsFurKidz","location":"Florida","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":670,"listed_count":0,"created_at":"Sat - Jun 30 07:46:33 +0000 2012","favourites_count":8556,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11119,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2593061362\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2593061362\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622691919\/1495306592","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2918306534,"id_str":"2918306534","name":"Muhammad - Usman","screen_name":"Umuhammad345","location":"Abbottabad, Pakistan","description":"I - am Rj Muhammad Usman a part of Radio Pakistan and Upcoming Internationalist. - I am an actor anchor and writer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":433,"listed_count":0,"created_at":"Thu - Dec 04 07:22:26 +0000 2014","favourites_count":11932,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2248,"lang":null,"status":{"created_at":"Sat - Mar 26 05:20:58 +0000 2022","id":1507588400429285377,"id_str":"1507588400429285377","text":"In - shaa Allah https:\/\/t.co\/MacOLjfznd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507588389603790848,"id_str":"1507588389603790848","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwHpx3WUAAqENM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwHpx3WUAAqENM.jpg","url":"https:\/\/t.co\/MacOLjfznd","display_url":"pic.twitter.com\/MacOLjfznd","expanded_url":"https:\/\/twitter.com\/Umuhammad345\/status\/1507588400429285377\/photo\/1","type":"photo","sizes":{"small":{"w":549,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507588389603790848,"id_str":"1507588389603790848","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwHpx3WUAAqENM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwHpx3WUAAqENM.jpg","url":"https:\/\/t.co\/MacOLjfznd","display_url":"pic.twitter.com\/MacOLjfznd","expanded_url":"https:\/\/twitter.com\/Umuhammad345\/status\/1507588400429285377\/photo\/1","type":"photo","sizes":{"small":{"w":549,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":969,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1337,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497115427826192389\/sULQsdjX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497115427826192389\/sULQsdjX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918306534\/1636989720","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":191287740,"id_str":"191287740","name":"arsd","screen_name":"pointman0610","location":"Lake - Elsinore, CA","description":"Fighting authoritarianism and promoting human - rights anywhere, believer but not religious, Man\u2019s innate goodness shall - prevail. Bleeding heart liberal.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":370,"friends_count":4668,"listed_count":0,"created_at":"Thu - Sep 16 02:13:58 +0000 2010","favourites_count":5448,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8245,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2860611637\/2e7300c13a48cfb4bd0bc2cc8cd8b686_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2860611637\/2e7300c13a48cfb4bd0bc2cc8cd8b686_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191287740\/1353161542","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56142631,"id_str":"56142631","name":"julie - mack #fullyvaccinated","screen_name":"juliemack321","location":"","description":"Mental - health advocate, 45 is not my president, all are equal, animal lover, #resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1073,"friends_count":3743,"listed_count":1,"created_at":"Sun - Jul 12 17:34:30 +0000 2009","favourites_count":3502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2612,"lang":null,"status":{"created_at":"Sat - Mar 26 06:56:42 +0000 2022","id":1507612492004048900,"id_str":"1507612492004048900","text":"@mhdksafa - Always","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mhdksafa","name":"mohamad - safa","id":834078524277456897,"id_str":"834078524277456897","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507611147800883201,"in_reply_to_status_id_str":"1507611147800883201","in_reply_to_user_id":834078524277456897,"in_reply_to_user_id_str":"834078524277456897","in_reply_to_screen_name":"mhdksafa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581526482817699841\/oI1T0iwK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581526482817699841\/oI1T0iwK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56142631\/1532898855","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2358241562,"id_str":"2358241562","name":"Linda","screen_name":"55hackerkay","location":"Indiana, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":334,"listed_count":0,"created_at":"Sun - Feb 23 16:58:39 +0000 2014","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/758858867920863232\/2S1HTsnC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758858867920863232\/2S1HTsnC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2358241562\/1469761029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2886102683,"id_str":"2886102683","name":"Antti - Kari","screen_name":"Antti_Kari","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":389,"listed_count":0,"created_at":"Thu - Nov 20 20:52:35 +0000 2014","favourites_count":274,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535538051901292545\/Sv87WRoF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535538051901292545\/Sv87WRoF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886102683\/1416517198","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303521089755045888,"id_str":"1303521089755045888","name":"Frank - Corley","screen_name":"FrankCorley3","location":"China, Hong Kong and Manila","description":"Citizen - of the world. 28 years of international business working with some of the - largest companies in the world. Have lived and worked in 9 countries.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":581,"listed_count":0,"created_at":"Wed - Sep 09 02:30:47 +0000 2020","favourites_count":22191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14729,"lang":null,"status":{"created_at":"Wed - Oct 06 02:38:43 +0000 2021","id":1445579242868133893,"id_str":"1445579242868133893","text":"@TheRickyDavila - Sadly this is absolutely true.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRickyDavila","name":"Ricky - Davila \ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":341190477,"id_str":"341190477","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1445551392463081472,"in_reply_to_status_id_str":"1445551392463081472","in_reply_to_user_id":341190477,"in_reply_to_user_id_str":"341190477","in_reply_to_screen_name":"TheRickyDavila","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303521745878396931\/fuHTOShC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303521745878396931\/fuHTOShC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278236599550164993,"id_str":"1278236599550164993","name":"Karungi - Patience","screen_name":"KarungiPatienc6","location":"","description":"am - young and beautiful","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":173,"listed_count":0,"created_at":"Wed - Jul 01 07:59:00 +0000 2020","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":149,"lang":null,"status":{"created_at":"Thu - Dec 24 10:55:27 +0000 2020","id":1342061317746798595,"id_str":"1342061317746798595","text":"@Tinafierce1 - Tiii we love you so much , I followed you from sqoop on sqoop to random thoughts - , and am proud to be\u2026 https:\/\/t.co\/rkGZTMbzoH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tinafierce1","name":"I - AM FIERCE","id":708227052097441793,"id_str":"708227052097441793","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/rkGZTMbzoH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1342061317746798595","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1342022724517044226,"in_reply_to_status_id_str":"1342022724517044226","in_reply_to_user_id":708227052097441793,"in_reply_to_user_id_str":"708227052097441793","in_reply_to_screen_name":"Tinafierce1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329407868228005889\/9xNP-Xy8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329407868228005889\/9xNP-Xy8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24183538,"id_str":"24183538","name":"Paul - Gorman","screen_name":"PJGorman","location":"The Wild World","description":"THE - WILD WORLD OF BARNEY BUBBLES Thames & Hudson 6\/22 A BOX OF BUBBLES Volume - 6\/22 The Rise & Fall of The Music Press Thames & Hudson 9\/22","url":"https:\/\/t.co\/19ORk6Z5Q6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/19ORk6Z5Q6","expanded_url":"http:\/\/paulgormanis.com","display_url":"paulgormanis.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1893,"friends_count":1107,"listed_count":32,"created_at":"Fri - Mar 13 14:55:34 +0000 2009","favourites_count":82630,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12382,"lang":null,"status":{"created_at":"Wed - Mar 23 19:12:13 +0000 2022","id":1506710426196787208,"id_str":"1506710426196787208","text":"With - some honey (for the bears) and a Tiger? https:\/\/t.co\/32a4MaLJSc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/32a4MaLJSc","expanded_url":"https:\/\/twitter.com\/anthonyburgess\/status\/1506709469685854222","display_url":"twitter.com\/anthonyburgess\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506709469685854222,"quoted_status_id_str":"1506709469685854222","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506023031998754817\/dFllAzcC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506023031998754817\/dFllAzcC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24183538\/1647035452","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278627369058807808,"id_str":"1278627369058807808","name":"Julius - Oluyede","screen_name":"oluyede_julius","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":67,"listed_count":0,"created_at":"Thu - Jul 02 09:52:37 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Wed - May 26 09:29:13 +0000 2021","id":1397484963029790723,"id_str":"1397484963029790723","text":"Scrapped - is not the solution to insecurity of NYSC https:\/\/t.co\/01Z0XH7CYL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/01Z0XH7CYL","expanded_url":"https:\/\/twitter.com\/daily_trust\/status\/1397195774451195919","display_url":"twitter.com\/daily_trust\/st\u2026","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1397195774451195919,"quoted_status_id_str":"1397195774451195919","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278628616688095232\/Yde9cviK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278628616688095232\/Yde9cviK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":125701405,"id_str":"125701405","name":"mylilperfect","screen_name":"mylilperfect","location":"somewhere - over the rainbow","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":1918,"listed_count":1,"created_at":"Tue - Mar 23 15:55:15 +0000 2010","favourites_count":10019,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":761,"lang":null,"status":{"created_at":"Thu - Mar 24 01:12:41 +0000 2022","id":1506801138997379072,"id_str":"1506801138997379072","text":"RT - @JenBassAllen: What does Love mean to 4-8 year old kids? A thread\u2026\n\nA - group of professional people posed this question to a group of 4 t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JenBassAllen","name":"JBA","id":184506416,"id_str":"184506416","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:58:29 +0000 2022","id":1506284185429884931,"id_str":"1506284185429884931","text":"What - does Love mean to 4-8 year old kids? A thread\u2026\n\nA group of professional - people posed this question to a group\u2026 https:\/\/t.co\/rmHbi45EIf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rmHbi45EIf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506284185429884931","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":31439,"favorite_count":93638,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":31439,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/830021591656443904\/uWi7LTpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/830021591656443904\/uWi7LTpx_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241618760039051264,"id_str":"1241618760039051264","name":"Gaye - Allyn","screen_name":"Gayezo1","location":"Florida, USA","description":"\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83d\uddfdProud - Army Brat NY\/NJ\/AK\/AL\/GA\/OH\/KS\/TX\/FL\/IL\n #Resist\ud83d\udc99#VoteBlue\n - #Water is Life #BLM #SaveOurPlanet \ud83c\udf0d\ud83c\udf08\u270a\n\ud83d\udeabDM''s - #FinsUP #BlueWave\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4127,"friends_count":4995,"listed_count":5,"created_at":"Sun - Mar 22 06:53:14 +0000 2020","favourites_count":74434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57495,"lang":null,"status":{"created_at":"Sat - Mar 26 04:26:35 +0000 2022","id":1507574711458439168,"id_str":"1507574711458439168","text":"RT - @NMBlueVoter: @Gayezo1 @RepAdamSchiff Please? \n\nNo reply needed unless you - object. Thanks. https:\/\/t.co\/KRx0teBh1q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NMBlueVoter","name":"IStandWithUkraine","id":792176684266954752,"id_str":"792176684266954752","indices":[3,15]},{"screen_name":"Gayezo1","name":"Gaye - Allyn","id":1241618760039051264,"id_str":"1241618760039051264","indices":[17,25]},{"screen_name":"RepAdamSchiff","name":"Adam - Schiff","id":29501253,"id_str":"29501253","indices":[26,40]}],"urls":[],"media":[{"id":1507526597481582599,"id_str":"1507526597481582599","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","url":"https:\/\/t.co\/KRx0teBh1q","display_url":"pic.twitter.com\/KRx0teBh1q","expanded_url":"https:\/\/twitter.com\/NMBlueVoter\/status\/1507526630067081217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1507526630067081217,"source_status_id_str":"1507526630067081217","source_user_id":792176684266954752,"source_user_id_str":"792176684266954752"}]},"extended_entities":{"media":[{"id":1507526597481582599,"id_str":"1507526597481582599","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","url":"https:\/\/t.co\/KRx0teBh1q","display_url":"pic.twitter.com\/KRx0teBh1q","expanded_url":"https:\/\/twitter.com\/NMBlueVoter\/status\/1507526630067081217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1507526630067081217,"source_status_id_str":"1507526630067081217","source_user_id":792176684266954752,"source_user_id_str":"792176684266954752"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:15:31 +0000 2022","id":1507526630067081217,"id_str":"1507526630067081217","text":"@Gayezo1 - @RepAdamSchiff Please? \n\nNo reply needed unless you object. Thanks. https:\/\/t.co\/KRx0teBh1q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Gayezo1","name":"Gaye - Allyn","id":1241618760039051264,"id_str":"1241618760039051264","indices":[0,8]},{"screen_name":"RepAdamSchiff","name":"Adam - Schiff","id":29501253,"id_str":"29501253","indices":[9,23]}],"urls":[],"media":[{"id":1507526597481582599,"id_str":"1507526597481582599","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","url":"https:\/\/t.co\/KRx0teBh1q","display_url":"pic.twitter.com\/KRx0teBh1q","expanded_url":"https:\/\/twitter.com\/NMBlueVoter\/status\/1507526630067081217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507526597481582599,"id_str":"1507526597481582599","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvPdARX0AcYSfu.jpg","url":"https:\/\/t.co\/KRx0teBh1q","display_url":"pic.twitter.com\/KRx0teBh1q","expanded_url":"https:\/\/twitter.com\/NMBlueVoter\/status\/1507526630067081217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507182275716296719,"in_reply_to_status_id_str":"1507182275716296719","in_reply_to_user_id":1241618760039051264,"in_reply_to_user_id_str":"1241618760039051264","in_reply_to_screen_name":"Gayezo1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502534642452381696\/0y2KhUg5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502534642452381696\/0y2KhUg5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241618760039051264\/1647067149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":431195925,"id_str":"431195925","name":"Geoffrey - Beinart-Smollan","screen_name":"geoffreybs","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":50,"friends_count":1730,"listed_count":1,"created_at":"Thu - Dec 08 01:13:43 +0000 2011","favourites_count":528,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879516124383035393\/Em4_xgmj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879516124383035393\/Em4_xgmj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431195925\/1432001071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268520932001435654,"id_str":"1268520932001435654","name":"otis - konz","screen_name":"KonzOtis","location":"Manhattan, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":237,"listed_count":1,"created_at":"Thu - Jun 04 12:32:40 +0000 2020","favourites_count":35277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15734,"lang":null,"status":{"created_at":"Sat - Mar 26 08:04:28 +0000 2022","id":1507629542659264515,"id_str":"1507629542659264515","text":"RT - @Logically_JC: I am so relieved that when I checked my wife\u2019s phone she - hadn\u2019t been texting Mark Meadows.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Logically_JC","name":"John - Collins","id":1271162030393896968,"id_str":"1271162030393896968","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:49:22 +0000 2022","id":1507444548628365322,"id_str":"1507444548628365322","text":"I - am so relieved that when I checked my wife\u2019s phone she hadn\u2019t been - texting Mark Meadows.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":611,"favorite_count":6960,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":611,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269346239872729090\/DavZnBxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269346239872729090\/DavZnBxe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":743401531475656705,"id_str":"743401531475656705","name":"Eman - ghaleb","screen_name":"Emanghaleb2","location":"Qatar","description":"News - Editor-News Verification & Gathering Unit at Aljazera Network.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":234,"friends_count":3732,"listed_count":1,"created_at":"Thu - Jun 16 11:15:11 +0000 2016","favourites_count":3759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484704646795083777\/z-ygiT66_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484704646795083777\/z-ygiT66_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4784985034,"id_str":"4784985034","name":"Anita - Khushalani","screen_name":"worthworkplace","location":"New York and Washington - DC","description":"Worth Workplace Training is a provider of human resources - consulting and training for businesses of all sizes.","url":"https:\/\/t.co\/N8UwJPpZL1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N8UwJPpZL1","expanded_url":"http:\/\/www.worthworkplace.com","display_url":"worthworkplace.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":371,"listed_count":0,"created_at":"Tue - Jan 12 14:26:04 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Wed - Feb 06 18:07:51 +0000 2019","id":1093209671136145409,"id_str":"1093209671136145409","text":"RT - @SHRMHRNews: As remote work continues to increase, workplace experts find - that those who do their jobs from home are inclined to stay on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SHRMHRNews","name":"SHRM - HR News","id":31821652,"id_str":"31821652","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 06 18:05:05 +0000 2019","id":1093208975632461824,"id_str":"1093208975632461824","text":"As - remote work continues to increase, workplace experts find that those who do - their jobs from home are inclined to\u2026 https:\/\/t.co\/N8VPum4fkd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N8VPum4fkd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1093208975632461824","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/779005178406109184\/7U2qA4_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779005178406109184\/7U2qA4_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4784985034\/1474564628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3175726394,"id_str":"3175726394","name":"Texaswatterston","screen_name":"texaswatterston","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":9,"listed_count":0,"created_at":"Sun - Apr 26 09:01:41 +0000 2015","favourites_count":1659,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194189947554516994\/Jxg3GjEJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194189947554516994\/Jxg3GjEJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3175726394\/1603609009","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":752212195619069952,"id_str":"752212195619069952","name":"Mohamad - Berro","screen_name":"MohamadBerro2","location":"Doha, Qatar","description":"\ud83c\uddf1\ud83c\udde7:\ud83c\uddf6\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":753,"listed_count":3,"created_at":"Sun - Jul 10 18:45:37 +0000 2016","favourites_count":2255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":488,"lang":null,"status":{"created_at":"Tue - Mar 22 06:13:41 +0000 2022","id":1506152112216018946,"id_str":"1506152112216018946","text":"RT - @hamadlahdan: \u0635\u0628\u0627\u062d \u0627\u0644\u062e\u064a\u0631 \u064a\u0627\u0642\u0637\u0631 - \ud83c\uddf6\ud83c\udde6 https:\/\/t.co\/uacOgKhPtF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hamadlahdan","name":"\u062d\u0645\u062f - \u0644\u062d\u062f\u0627\u0646 \u0627\u0644\u0645\u0647\u0646\u062f\u064a","id":258420175,"id_str":"258420175","indices":[3,15]}],"urls":[],"media":[{"id":1506147955962748928,"id_str":"1506147955962748928","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","url":"https:\/\/t.co\/uacOgKhPtF","display_url":"pic.twitter.com\/uacOgKhPtF","expanded_url":"https:\/\/twitter.com\/hamadlahdan\/status\/1506147963197919232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1029,"h":649,"resize":"fit"},"large":{"w":1029,"h":649,"resize":"fit"},"small":{"w":680,"h":429,"resize":"fit"}},"source_status_id":1506147963197919232,"source_status_id_str":"1506147963197919232","source_user_id":258420175,"source_user_id_str":"258420175"}]},"extended_entities":{"media":[{"id":1506147955962748928,"id_str":"1506147955962748928","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","url":"https:\/\/t.co\/uacOgKhPtF","display_url":"pic.twitter.com\/uacOgKhPtF","expanded_url":"https:\/\/twitter.com\/hamadlahdan\/status\/1506147963197919232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1029,"h":649,"resize":"fit"},"large":{"w":1029,"h":649,"resize":"fit"},"small":{"w":680,"h":429,"resize":"fit"}},"source_status_id":1506147963197919232,"source_status_id_str":"1506147963197919232","source_user_id":258420175,"source_user_id_str":"258420175"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 05:57:11 +0000 2022","id":1506147963197919232,"id_str":"1506147963197919232","text":"\u0635\u0628\u0627\u062d - \u0627\u0644\u062e\u064a\u0631 \u064a\u0627\u0642\u0637\u0631 \ud83c\uddf6\ud83c\udde6 - https:\/\/t.co\/uacOgKhPtF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506147955962748928,"id_str":"1506147955962748928","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","url":"https:\/\/t.co\/uacOgKhPtF","display_url":"pic.twitter.com\/uacOgKhPtF","expanded_url":"https:\/\/twitter.com\/hamadlahdan\/status\/1506147963197919232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1029,"h":649,"resize":"fit"},"large":{"w":1029,"h":649,"resize":"fit"},"small":{"w":680,"h":429,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506147955962748928,"id_str":"1506147955962748928","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FObplgZXIAAZUwm.jpg","url":"https:\/\/t.co\/uacOgKhPtF","display_url":"pic.twitter.com\/uacOgKhPtF","expanded_url":"https:\/\/twitter.com\/hamadlahdan\/status\/1506147963197919232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1029,"h":649,"resize":"fit"},"large":{"w":1029,"h":649,"resize":"fit"},"small":{"w":680,"h":429,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":246,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353658347149529088\/_aMbBkb2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353658347149529088\/_aMbBkb2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":407433365,"id_str":"407433365","name":"Dina - Verace","screen_name":"dinaverace","location":"","description":"Progressive - biotech scientist seeking truth, aghast at what Fox News and Facebook have - done to America.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":281,"listed_count":0,"created_at":"Tue - Nov 08 02:27:50 +0000 2011","favourites_count":808,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5073,"lang":null,"status":{"created_at":"Fri - Mar 25 20:01:40 +0000 2022","id":1507447647283470337,"id_str":"1507447647283470337","text":"RT - @joshtpm: Hypothetical: Can a Supreme Court Justice credibly carry on in office - if it is revealed that his spouse was involved in a coup\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joshtpm","name":"Josh - Marshall","id":21268897,"id_str":"21268897","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:02:25 +0000 2022","id":1507402536797495299,"id_str":"1507402536797495299","text":"Hypothetical: - Can a Supreme Court Justice credibly carry on in office if it is revealed - that his spouse was involve\u2026 https:\/\/t.co\/Ze4mHerW2Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ze4mHerW2Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507402536797495299","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3204,"favorite_count":20230,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3204,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571458075979051008\/vuEUlwF5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571458075979051008\/vuEUlwF5_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":731829050256330752,"id_str":"731829050256330752","name":"Chuck - Maynard","screen_name":"ChasMay716","location":"Olcott Beach, NY","description":"Proud - father, husband, & Union member. I believe in Main Street before Wall Street.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":344,"listed_count":0,"created_at":"Sun - May 15 12:50:17 +0000 2016","favourites_count":1107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":726,"lang":null,"status":{"created_at":"Sat - Mar 19 13:31:43 +0000 2022","id":1505175186668240897,"id_str":"1505175186668240897","text":"@RepJacobs - https:\/\/t.co\/sLpJ38y0UG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepJacobs","name":"Rep. - Chris Jacobs","id":1276232539510919168,"id_str":"1276232539510919168","indices":[0,10]}],"urls":[],"media":[{"id":1505175172957065220,"id_str":"1505175172957065220","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FON02FTX0AQt4QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FON02FTX0AQt4QX.jpg","url":"https:\/\/t.co\/sLpJ38y0UG","display_url":"pic.twitter.com\/sLpJ38y0UG","expanded_url":"https:\/\/twitter.com\/ChasMay716\/status\/1505175186668240897\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505175172957065220,"id_str":"1505175172957065220","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/FON02FTX0AQt4QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FON02FTX0AQt4QX.jpg","url":"https:\/\/t.co\/sLpJ38y0UG","display_url":"pic.twitter.com\/sLpJ38y0UG","expanded_url":"https:\/\/twitter.com\/ChasMay716\/status\/1505175186668240897\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":960,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504971833942196227,"in_reply_to_status_id_str":"1504971833942196227","in_reply_to_user_id":1276232539510919168,"in_reply_to_user_id_str":"1276232539510919168","in_reply_to_screen_name":"RepJacobs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344630622527102976\/vRsjlb63_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344630622527102976\/vRsjlb63_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731829050256330752\/1609420340","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":746674721068974080,"id_str":"746674721068974080","name":"Gaby - Lopez","screen_name":"gabylopez7425","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":920,"listed_count":0,"created_at":"Sat - Jun 25 12:01:40 +0000 2016","favourites_count":2972,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":397,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825885322688995328\/0iDRMSMG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825885322688995328\/0iDRMSMG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/746674721068974080\/1485741381","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927066186415665152,"id_str":"927066186415665152","name":"Banka - L Tumi","screen_name":"ltumi34","location":"Bamenda ","description":"Sports","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":482,"listed_count":0,"created_at":"Sun - Nov 05 06:52:57 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331295755580174337\/fPzSnklT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331295755580174337\/fPzSnklT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/927066186415665152\/1566829692","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":126951356,"id_str":"126951356","name":"Gizem - K\u0131l\u0131\u00e7","screen_name":"gizem_kilic","location":"Rome","description":"MD - , BSc \u2022 La Sapienza","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":219,"friends_count":4574,"listed_count":0,"created_at":"Sat - Mar 27 14:51:02 +0000 2010","favourites_count":11507,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2288,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"030B0F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389646190615089154\/gziVm_Pe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389646190615089154\/gziVm_Pe_normal.jpg","profile_link_color":"164B5E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":120536153,"id_str":"120536153","name":"Jessica - Mistak \ud83c\uddfa\ud83c\udde6","screen_name":"JessicaLMistak","location":"Plymouth, - MI","description":"Tell your dog I said hi. She\/her.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":325,"listed_count":8,"created_at":"Sat - Mar 06 18:58:02 +0000 2010","favourites_count":5172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4791,"lang":null,"status":{"created_at":"Fri - Mar 25 16:06:52 +0000 2022","id":1507388555189960707,"id_str":"1507388555189960707","text":"@kristenmeinzer - This essay made me miss XoJane.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kristenmeinzer","name":"Kristen - Meinzer","id":244192315,"id_str":"244192315","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507371269636907009,"in_reply_to_status_id_str":"1507371269636907009","in_reply_to_user_id":244192315,"in_reply_to_user_id_str":"244192315","in_reply_to_screen_name":"kristenmeinzer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304554195832508416\/Esyhmoza_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304554195832508416\/Esyhmoza_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120536153\/1599865029","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":200529448,"id_str":"200529448","name":"youssef - hassan","screen_name":"chevalierdemer","location":"Xiamen","description":".","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":4825,"listed_count":0,"created_at":"Sat - Oct 09 14:58:00 +0000 2010","favourites_count":1566,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2390,"lang":null,"status":{"created_at":"Thu - Mar 24 12:06:40 +0000 2022","id":1506965720160247816,"id_str":"1506965720160247816","text":"RT - @BoudhanMoha: https:\/\/t.co\/DnwbGw0S8v","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BoudhanMoha","name":"Boudhan - Moha","id":1342190573499908097,"id_str":"1342190573499908097","indices":[3,15]}],"urls":[],"media":[{"id":1506413478499782660,"id_str":"1506413478499782660","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","url":"https:\/\/t.co\/DnwbGw0S8v","display_url":"pic.twitter.com\/DnwbGw0S8v","expanded_url":"https:\/\/twitter.com\/BoudhanMoha\/status\/1506413481125425155\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506413481125425155,"source_status_id_str":"1506413481125425155","source_user_id":1342190573499908097,"source_user_id_str":"1342190573499908097"}]},"extended_entities":{"media":[{"id":1506413478499782660,"id_str":"1506413478499782660","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","url":"https:\/\/t.co\/DnwbGw0S8v","display_url":"pic.twitter.com\/DnwbGw0S8v","expanded_url":"https:\/\/twitter.com\/BoudhanMoha\/status\/1506413481125425155\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506413481125425155,"source_status_id_str":"1506413481125425155","source_user_id":1342190573499908097,"source_user_id_str":"1342190573499908097"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 23:32:16 +0000 2022","id":1506413481125425155,"id_str":"1506413481125425155","text":"https:\/\/t.co\/DnwbGw0S8v","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506413478499782660,"id_str":"1506413478499782660","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","url":"https:\/\/t.co\/DnwbGw0S8v","display_url":"pic.twitter.com\/DnwbGw0S8v","expanded_url":"https:\/\/twitter.com\/BoudhanMoha\/status\/1506413481125425155\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506413478499782660,"id_str":"1506413478499782660","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfbE87XEAQ9tNn.jpg","url":"https:\/\/t.co\/DnwbGw0S8v","display_url":"pic.twitter.com\/DnwbGw0S8v","expanded_url":"https:\/\/twitter.com\/BoudhanMoha\/status\/1506413481125425155\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":771,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":52,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1028137666439667713\/4qFPISha_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1028137666439667713\/4qFPISha_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4182072916,"id_str":"4182072916","name":"Ross","screen_name":"rpdalzell","location":"Chelmsford, - East","description":"Government News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":1500,"listed_count":0,"created_at":"Fri - Nov 13 22:46:38 +0000 2015","favourites_count":4429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Wed - Jul 14 18:23:45 +0000 2021","id":1415376484689190914,"id_str":"1415376484689190914","text":"@Sanchooo10 - You and the team have nothing to apologise for. I watched the game with my - 8 year old daughter (her fir\u2026 https:\/\/t.co\/jvTWHNmXJH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sanchooo10","name":"Jadon - Sancho","id":2339333214,"id_str":"2339333214","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/jvTWHNmXJH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1415376484689190914","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1415348669809823751,"in_reply_to_status_id_str":"1415348669809823751","in_reply_to_user_id":2339333214,"in_reply_to_user_id_str":"2339333214","in_reply_to_screen_name":"Sanchooo10","geo":null,"coordinates":null,"place":{"id":"6a779d5cb7e570e8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6a779d5cb7e570e8.json","place_type":"city","name":"Chelmsford","full_name":"Chelmsford, - East","country_code":"GB","country":"United Kingdom","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[0.435659,51.698636],[0.521299,51.698636],[0.521299,51.78115],[0.435659,51.78115]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":975701118603923456,"id_str":"975701118603923456","name":"Enough - Lies@gimmesometruth","screen_name":"zanne2eight1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":575,"listed_count":1,"created_at":"Mon - Mar 19 11:50:49 +0000 2018","favourites_count":6711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2715,"lang":null,"status":{"created_at":"Sun - Nov 28 02:03:14 +0000 2021","id":1464776870117978113,"id_str":"1464776870117978113","text":"@patriottakes - What a disgrace she is to this country.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patriottakes","name":"PatriotTakes - \ud83c\uddfa\ud83c\uddf8","id":978265628426432512,"id_str":"978265628426432512","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1464359830760701968,"in_reply_to_status_id_str":"1464359830760701968","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":867257651968737280,"id_str":"867257651968737280","name":"Benson - Murambiwa","screen_name":"BMurambiwa","location":"Zimbabwe","description":"Electrician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":797,"listed_count":0,"created_at":"Wed - May 24 05:55:11 +0000 2017","favourites_count":143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Oct 01 16:31:39 +0000 2021","id":1443976918127235075,"id_str":"1443976918127235075","text":"I - beg a brief comments of the performances of huawei y7a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388926118057725958\/A1EFXLzh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388926118057725958\/A1EFXLzh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/867257651968737280\/1579697532","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1148239029424599040,"id_str":"1148239029424599040","name":"Megan - Schopp (Reder-Schopp)","screen_name":"Mmrederschopp","location":"South Dakota, - USA","description":"Research @BarrCenter, Doctoral Candidate @JHUEducation, - Tweets shared are my own.","url":"https:\/\/t.co\/CTv4UQsiH5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CTv4UQsiH5","expanded_url":"http:\/\/linkedin.com\/in\/meganreders","display_url":"linkedin.com\/in\/meganreders","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":563,"friends_count":1157,"listed_count":5,"created_at":"Mon - Jul 08 14:34:52 +0000 2019","favourites_count":7419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1350,"lang":null,"status":{"created_at":"Sat - Mar 26 04:36:22 +0000 2022","id":1507577174970224640,"id_str":"1507577174970224640","text":"RT - @tpinsonn: MOOD\u203c\ufe0f\u203c\ufe0f\u203c\ufe0f\u203c\ufe0f https:\/\/t.co\/dtzc9gav76","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tpinsonn","name":"Theo - pinson","id":257492235,"id_str":"257492235","indices":[3,12]}],"urls":[],"media":[{"id":1507567576670425090,"id_str":"1507567576670425090","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","url":"https:\/\/t.co\/dtzc9gav76","display_url":"pic.twitter.com\/dtzc9gav76","expanded_url":"https:\/\/twitter.com\/tpinsonn\/status\/1507567598656843780\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":551,"resize":"fit"},"large":{"w":1024,"h":830,"resize":"fit"},"medium":{"w":1024,"h":830,"resize":"fit"}},"source_status_id":1507567598656843780,"source_status_id_str":"1507567598656843780","source_user_id":257492235,"source_user_id_str":"257492235"}]},"extended_entities":{"media":[{"id":1507567576670425090,"id_str":"1507567576670425090","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","url":"https:\/\/t.co\/dtzc9gav76","display_url":"pic.twitter.com\/dtzc9gav76","expanded_url":"https:\/\/twitter.com\/tpinsonn\/status\/1507567598656843780\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":551,"resize":"fit"},"large":{"w":1024,"h":830,"resize":"fit"},"medium":{"w":1024,"h":830,"resize":"fit"}},"source_status_id":1507567598656843780,"source_status_id_str":"1507567598656843780","source_user_id":257492235,"source_user_id_str":"257492235"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:58:19 +0000 2022","id":1507567598656843780,"id_str":"1507567598656843780","text":"MOOD\u203c\ufe0f\u203c\ufe0f\u203c\ufe0f\u203c\ufe0f - https:\/\/t.co\/dtzc9gav76","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507567576670425090,"id_str":"1507567576670425090","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","url":"https:\/\/t.co\/dtzc9gav76","display_url":"pic.twitter.com\/dtzc9gav76","expanded_url":"https:\/\/twitter.com\/tpinsonn\/status\/1507567598656843780\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":551,"resize":"fit"},"large":{"w":1024,"h":830,"resize":"fit"},"medium":{"w":1024,"h":830,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507567576670425090,"id_str":"1507567576670425090","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOv0uTpWUAIWohT.jpg","url":"https:\/\/t.co\/dtzc9gav76","display_url":"pic.twitter.com\/dtzc9gav76","expanded_url":"https:\/\/twitter.com\/tpinsonn\/status\/1507567598656843780\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":551,"resize":"fit"},"large":{"w":1024,"h":830,"resize":"fit"},"medium":{"w":1024,"h":830,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1680,"favorite_count":8158,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1680,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488595419374374912\/4X-aTasl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488595419374374912\/4X-aTasl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1148239029424599040\/1646609428","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":53696679,"id_str":"53696679","name":"phyllis - danchisko","screen_name":"padanch","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":728,"listed_count":0,"created_at":"Sat - Jul 04 15:54:31 +0000 2009","favourites_count":17176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Mon - May 19 18:54:13 +0000 2014","id":468464659545473026,"id_str":"468464659545473026","text":"RT - @PatrickMagnino: https:\/\/t.co\/WGGtcgMRaK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PatrickMagnino","name":"Patrick - Magnino","id":2475746605,"id_str":"2475746605","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/WGGtcgMRaK","expanded_url":"https:\/\/twitter.com\/@PatrickMagnino","display_url":"twitter.com\/@PatrickMagnino","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 19 16:11:09 +0000 2014","id":468423624022831104,"id_str":"468423624022831104","text":"https:\/\/t.co\/WGGtcgMRaK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WGGtcgMRaK","expanded_url":"https:\/\/twitter.com\/@PatrickMagnino","display_url":"twitter.com\/@PatrickMagnino","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1384,"favorite_count":794,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1384,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30106760,"id_str":"30106760","name":"heejin","screen_name":"chungheejin","location":"Seoul, - The Republic of Korea.","description":"Freelancer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":817,"listed_count":0,"created_at":"Fri - Apr 10 00:19:29 +0000 2009","favourites_count":1008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2487,"lang":null,"status":{"created_at":"Sun - Aug 15 22:38:55 +0000 2021","id":1427037114244337667,"id_str":"1427037114244337667","text":"Jeju - Island province of South Korea will be that social distancing is level 4, - and the beaches will be closed.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/959869854311268352\/ReRN9rF3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959869854311268352\/ReRN9rF3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30106760\/1604617220","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250094207626350592,"id_str":"1250094207626350592","name":"\u1d00\u026a\u1d05\u1d00","screen_name":"ayy__duh","location":"","description":"\u2650\ufe0e - \u2022 \u2652\ufe0e \u2022 \u2652\ufe0e","url":"https:\/\/t.co\/irvNoJOYxh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/irvNoJOYxh","expanded_url":"https:\/\/open.spotify.com\/user\/s3s8drmmuninc2i4bewg0x0lk?si=hS3QrkbIT-iTi0EO0C-Vcw","display_url":"open.spotify.com\/user\/s3s8drmmu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":386,"friends_count":499,"listed_count":2,"created_at":"Tue - Apr 14 16:11:10 +0000 2020","favourites_count":16991,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7573,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505661816331984896\/7FplKoHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505661816331984896\/7FplKoHU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250094207626350592\/1647812865","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":863411605408821248,"id_str":"863411605408821248","name":"Scott - Shepard","screen_name":"shepardindc","location":"Washington, DC","description":"Recovering - speechwriter and longtime journalist with an in-depth understanding of little - but Elvis. Loves his native South like a mama loves her backward child.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":480,"friends_count":523,"listed_count":6,"created_at":"Sat - May 13 15:12:22 +0000 2017","favourites_count":20791,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8525,"lang":null,"status":{"created_at":"Fri - Mar 25 11:57:16 +0000 2022","id":1507325744480989193,"id_str":"1507325744480989193","text":"The - committee continues to aim too low. https:\/\/t.co\/v2QPE8RX1f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v2QPE8RX1f","expanded_url":"https:\/\/twitter.com\/joncoopertweets\/status\/1507057412121010177","display_url":"twitter.com\/joncoopertweet\u2026","indices":[40,63]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507057412121010177,"quoted_status_id_str":"1507057412121010177","retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903010994364059658\/xFPatbLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903010994364059658\/xFPatbLs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/863411605408821248\/1494724959","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1204769863283150848,"id_str":"1204769863283150848","name":"Vanessa - Reiber","screen_name":"DieReiber","location":"","description":"Hatte 2021 - ihr Twitter-Comeback. Schreibt f\u00fcr @dpa.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":515,"listed_count":6,"created_at":"Wed - Dec 11 14:28:25 +0000 2019","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Fri - Mar 25 10:43:51 +0000 2022","id":1507307267674234886,"id_str":"1507307267674234886","text":"@MarcNiedzolka - Ich setze da auf dich, dass dieses Wort auch noch seinen Weg in den Dienst - findet!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcNiedzolka","name":"Marc - Niedzolka","id":4876242467,"id_str":"4876242467","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507303240043536386,"in_reply_to_status_id_str":"1507303240043536386","in_reply_to_user_id":4876242467,"in_reply_to_user_id_str":"4876242467","in_reply_to_screen_name":"MarcNiedzolka","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369010527222005762\/Zt0L4wG__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369010527222005762\/Zt0L4wG__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204769863283150848\/1615413335","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309860047229538304,"id_str":"1309860047229538304","name":"Awere - Daniel","screen_name":"AwereDaniel1","location":"","description":"I am very - simple and funny person","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":585,"listed_count":0,"created_at":"Sat - Sep 26 14:19:33 +0000 2020","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Sat - Jan 09 07:31:44 +0000 2021","id":1347808256744431617,"id_str":"1347808256744431617","text":"@BruceJojo - He should investigate STX housing deal . Ghana lost almost 200 million dollars - in that deal.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BruceJojo","name":"Jojo - Bruce-Quansah","id":506981900,"id_str":"506981900","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1347481047223697416,"in_reply_to_status_id_str":"1347481047223697416","in_reply_to_user_id":506981900,"in_reply_to_user_id_str":"506981900","in_reply_to_screen_name":"BruceJojo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309860854255489024\/PgbNu91n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309860854255489024\/PgbNu91n_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":336515656,"id_str":"336515656","name":"sandra","screen_name":"sanlindsay","location":"norwich","description":"Married - with five children 28years to 14, huge manu fan, ,politics, reading , partying - and socialising . Following and retweets are NOT an endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":507,"friends_count":2517,"listed_count":11,"created_at":"Sat - Jul 16 12:36:30 +0000 2011","favourites_count":8574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7810,"lang":null,"status":{"created_at":"Sun - Mar 13 08:12:57 +0000 2022","id":1502920636171276293,"id_str":"1502920636171276293","text":"@LBC - @clivebull Don\u2019t need compensation,It\u2019s basic humanity","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LBC","name":"LBC","id":20973388,"id_str":"20973388","indices":[0,4]},{"screen_name":"clivebull","name":"Clive - Bull","id":21326127,"id_str":"21326127","indices":[5,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502844532915937281,"in_reply_to_status_id_str":"1502844532915937281","in_reply_to_user_id":20973388,"in_reply_to_user_id_str":"20973388","in_reply_to_screen_name":"LBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2817859250\/c375fa0e56c111646e11570659edaa31_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2817859250\/c375fa0e56c111646e11570659edaa31_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336515656\/1356652380","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957512010182418432,"id_str":"957512010182418432","name":"HASSAN - MATIVO","screen_name":"HassanMativo","location":"Kibwezi, Kenya","description":"Islam","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":130,"friends_count":632,"listed_count":0,"created_at":"Sun - Jan 28 07:13:47 +0000 2018","favourites_count":275,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":266,"lang":null,"status":{"created_at":"Fri - Oct 22 11:53:43 +0000 2021","id":1451517118843920394,"id_str":"1451517118843920394","text":"@christosm77 - @WilliamsRuto Wah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"christosm77","name":"Christos","id":2725540243,"id_str":"2725540243","indices":[0,12]},{"screen_name":"WilliamsRuto","name":"William - Samoei Ruto, PhD","id":333935142,"id_str":"333935142","indices":[13,26]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1451516047891341321,"in_reply_to_status_id_str":"1451516047891341321","in_reply_to_user_id":2725540243,"in_reply_to_user_id_str":"2725540243","in_reply_to_screen_name":"christosm77","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386183293515837443\/NP6HM70o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386183293515837443\/NP6HM70o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42348780,"id_str":"42348780","name":"banger71","screen_name":"tazlee71","location":"canada","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":2500,"listed_count":0,"created_at":"Mon - May 25 04:24:23 +0000 2009","favourites_count":2964,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":733,"lang":null,"status":{"created_at":"Fri - Jan 07 08:45:00 +0000 2022","id":1479373490717351937,"id_str":"1479373490717351937","text":"RT - @devaalexandra76: Found this video on my tiktok. Absolutely heartbreaking. - Went missing last year, he''s only 3 years old! \ud83d\ude22 from truro,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"devaalexandra76","name":"Deva - Moore","id":1476309949974122498,"id_str":"1476309949974122498","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 31 18:08:22 +0000 2021","id":1476978554076217344,"id_str":"1476978554076217344","text":"Found - this video on my tiktok. Absolutely heartbreaking. Went missing last year, - he''s only 3 years old! \ud83d\ude22 from trur\u2026 https:\/\/t.co\/RHHHNIiDNj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RHHHNIiDNj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1476978554076217344","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059869744101187584\/ExcqoOP2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059869744101187584\/ExcqoOP2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42348780\/1539943286","profile_link_color":"0D0401","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":965475370282704896,"id_str":"965475370282704896","name":"Jan - Russell","screen_name":"janrussell32","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":543,"listed_count":0,"created_at":"Mon - Feb 19 06:37:20 +0000 2018","favourites_count":113627,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":742,"lang":null,"status":{"created_at":"Sun - Sep 26 01:14:28 +0000 2021","id":1441934162169008131,"id_str":"1441934162169008131","text":"@sandibachom - 111.1K followers, not 11.1K !! Give credit where credit is due!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sandibachom","name":"Sandi - Bachom","id":17027632,"id_str":"17027632","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1441928090020564996,"in_reply_to_status_id_str":"1441928090020564996","in_reply_to_user_id":17027632,"in_reply_to_user_id_str":"17027632","in_reply_to_screen_name":"sandibachom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311006793733230593\/tkkV6z4G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311006793733230593\/tkkV6z4G_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312270187253489664,"id_str":"1312270187253489664","name":"","screen_name":"AmeliaM46583767","location":"","description":"@AmeliaM46583767''s - account is temporarily unavailable because it violates the Twitter Media Policy. - Learn more.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/support.twitter.com\/articles\/20169199","expanded_url":"https:\/\/support.twitter.com\/articles\/20169199","display_url":"Learn - more","indices":[100,110]}]}},"protected":false,"followers_count":207,"friends_count":1062,"listed_count":0,"created_at":"Sat - Oct 03 05:56:23 +0000 2020","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Thu - Dec 03 06:09:29 +0000 2020","id":1334379208034844674,"id_str":"1334379208034844674","text":"@AmeliaM46583767''s - account is temporarily unavailable because it violates the Twitter Media Policy. - Learn more.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/support.twitter.com\/articles\/20169199","expanded_url":"https:\/\/support.twitter.com\/articles\/20169199","display_url":"Learn - more","indices":[100,110]}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" - rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"","profile_image_url_https":"","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49207532,"id_str":"49207532","name":"Love2TravelNY","screen_name":"love2travelny","location":"","description":"Mom, - software engineer, world traveler","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":126,"listed_count":2,"created_at":"Sun - Jun 21 02:48:19 +0000 2009","favourites_count":7303,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Sat - Mar 12 23:44:56 +0000 2022","id":1502792788764680194,"id_str":"1502792788764680194","text":"@schmangee - @DandiaAsad There is privilege involved here. Elderly, differently abled & - parents of small children can\u2026 https:\/\/t.co\/UgmYsphXdZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"schmangee","name":"Angie - Schmitt\ud83d\udeb6\u200d\u2640\ufe0f","id":29476085,"id_str":"29476085","indices":[0,10]},{"screen_name":"DandiaAsad","name":"Asad - \u0623\u0633\u062f \ud83d\uddfd\ud83c\udf4e","id":2671231657,"id_str":"2671231657","indices":[11,22]}],"urls":[{"url":"https:\/\/t.co\/UgmYsphXdZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502792788764680194","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502286302280138759,"in_reply_to_status_id_str":"1502286302280138759","in_reply_to_user_id":29476085,"in_reply_to_user_id_str":"29476085","in_reply_to_screen_name":"schmangee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225348326524149761,"id_str":"1225348326524149761","name":"Evelyne - Wafula","screen_name":"EvelyneWafula5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":377,"listed_count":0,"created_at":"Thu - Feb 06 09:20:00 +0000 2020","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Thu - Mar 17 04:22:04 +0000 2022","id":1504312083810332676,"id_str":"1504312083810332676","text":"RT - @Tuko_co_ke: Deputy President William Ruto and ODM Party Leader Raila Odinga - gave separate speeches during their endorsements as preside\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tuko_co_ke","name":"TUKO.co.ke - | The Heartbeat of Kenya","id":3131354884,"id_str":"3131354884","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 15:13:25 +0000 2022","id":1504113614126559234,"id_str":"1504113614126559234","text":"Deputy - President William Ruto and ODM Party Leader Raila Odinga gave separate speeches - during their endorsements as\u2026 https:\/\/t.co\/41AMdiq72d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/41AMdiq72d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504113614126559234","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1014,"favorite_count":661,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1014,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2364266797,"id_str":"2364266797","name":"BRENDA - ARTINGSTALL","screen_name":"BRENDAARTINGSTA","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":170,"listed_count":0,"created_at":"Thu - Feb 27 14:34:22 +0000 2014","favourites_count":2671,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":996432885971410944,"id_str":"996432885971410944","name":"aaya","screen_name":"urlocalbabushka","location":"","description":"certified - nincompoop \ud83c\uddf9\ud83c\uddf3\n\npol sci @ucl","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":267,"listed_count":0,"created_at":"Tue - May 15 16:51:27 +0000 2018","favourites_count":11723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":807,"lang":null,"status":{"created_at":"Sat - Mar 19 18:21:26 +0000 2022","id":1505248094669406210,"id_str":"1505248094669406210","text":"@ThatsVix - that sucks so bad and i hope youre doing ok, heres my feral cat called mika - https:\/\/t.co\/gsLS4ZWP8i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatsVix","name":"Vix - \ud83c\udf37","id":1025021768006815744,"id_str":"1025021768006815744","indices":[0,9]}],"urls":[],"media":[{"id":1505248079339003907,"id_str":"1505248079339003907","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOO3JyvXIAMicM3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOO3JyvXIAMicM3.jpg","url":"https:\/\/t.co\/gsLS4ZWP8i","display_url":"pic.twitter.com\/gsLS4ZWP8i","expanded_url":"https:\/\/twitter.com\/urlocalbabushka\/status\/1505248094669406210\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":443,"h":632,"resize":"fit"},"large":{"w":443,"h":632,"resize":"fit"},"small":{"w":443,"h":632,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505248079339003907,"id_str":"1505248079339003907","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOO3JyvXIAMicM3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOO3JyvXIAMicM3.jpg","url":"https:\/\/t.co\/gsLS4ZWP8i","display_url":"pic.twitter.com\/gsLS4ZWP8i","expanded_url":"https:\/\/twitter.com\/urlocalbabushka\/status\/1505248094669406210\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":443,"h":632,"resize":"fit"},"large":{"w":443,"h":632,"resize":"fit"},"small":{"w":443,"h":632,"resize":"fit"}}},{"id":1505248082631536645,"id_str":"1505248082631536645","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOO3J_AXMAUi9ho.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOO3J_AXMAUi9ho.jpg","url":"https:\/\/t.co\/gsLS4ZWP8i","display_url":"pic.twitter.com\/gsLS4ZWP8i","expanded_url":"https:\/\/twitter.com\/urlocalbabushka\/status\/1505248094669406210\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1505248088113430529,"id_str":"1505248088113430529","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOO3KTbWQAExCNX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOO3KTbWQAExCNX.jpg","url":"https:\/\/t.co\/gsLS4ZWP8i","display_url":"pic.twitter.com\/gsLS4ZWP8i","expanded_url":"https:\/\/twitter.com\/urlocalbabushka\/status\/1505248094669406210\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}},{"id":1505248091749945346,"id_str":"1505248091749945346","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOO3Kg-XEAIBelZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOO3Kg-XEAIBelZ.jpg","url":"https:\/\/t.co\/gsLS4ZWP8i","display_url":"pic.twitter.com\/gsLS4ZWP8i","expanded_url":"https:\/\/twitter.com\/urlocalbabushka\/status\/1505248094669406210\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504943837348872193,"in_reply_to_status_id_str":"1504943837348872193","in_reply_to_user_id":1025021768006815744,"in_reply_to_user_id_str":"1025021768006815744","in_reply_to_screen_name":"ThatsVix","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350762266971529216\/rn2J8pZ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350762266971529216\/rn2J8pZ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/996432885971410944\/1619634020","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":711726764,"id_str":"711726764","name":"Megahn - Chun","screen_name":"MegahnChun","location":"NYC","description":"Fish out - of water.","url":"https:\/\/t.co\/szpmCjDOOO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/szpmCjDOOO","expanded_url":"http:\/\/megahncarter.tumblr.com\/","display_url":"megahncarter.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":283,"listed_count":1,"created_at":"Mon - Jul 23 03:31:33 +0000 2012","favourites_count":2935,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1399,"lang":null,"status":{"created_at":"Mon - Feb 28 17:54:01 +0000 2022","id":1498355826158751745,"id_str":"1498355826158751745","text":"RT - @chefjoseandres: People of the World\u2026Reporting from the Ukraine border! - This is one of the places @WCKitchen has hot meals. It is below\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chefjoseandres","name":"Jos\u00e9 - Andr\u00e9s","id":73206956,"id_str":"73206956","indices":[3,18]},{"screen_name":"WCKitchen","name":"World - Central Kitchen","id":156653779,"id_str":"156653779","indices":[101,111]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 00:22:48 +0000 2022","id":1498091276205535232,"id_str":"1498091276205535232","text":"People - of the World\u2026Reporting from the Ukraine border! This is one of the places - @WCKitchen has hot meals. It is be\u2026 https:\/\/t.co\/woOd7VykLY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WCKitchen","name":"World - Central Kitchen","id":156653779,"id_str":"156653779","indices":[81,91]}],"urls":[{"url":"https:\/\/t.co\/woOd7VykLY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498091276205535232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27413,"favorite_count":125994,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27413,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265290092740042753\/sjKUDRAl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265290092740042753\/sjKUDRAl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711726764\/1590503642","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1651444532,"id_str":"1651444532","name":"lene - white","screen_name":"lenewhite","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":102,"listed_count":0,"created_at":"Tue - Aug 06 22:52:32 +0000 2013","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1168206221062656002,"id_str":"1168206221062656002","name":"jojo","screen_name":"lugondigondoki","location":"Pakem, - Indonesia","description":"in African prosperity is an achievement\nnot an - trusted","url":"https:\/\/t.co\/fbfhwXw4xV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fbfhwXw4xV","expanded_url":"http:\/\/www.hotmail.upez.com","display_url":"hotmail.upez.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":141,"listed_count":0,"created_at":"Sun - Sep 01 16:57:39 +0000 2019","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273168540070273025\/qPm1v_fP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273168540070273025\/qPm1v_fP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168206221062656002\/1584887451","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":847725190322634752,"id_str":"847725190322634752","name":"The - Girl From Nowhere","screen_name":"shayareechanda","location":"","description":"\u2022She\/her\n\u2022Working - at the Hindustan Times\n\u2022My name is Poem and this is my story","url":"https:\/\/t.co\/Aaa0YLxSik","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Aaa0YLxSik","expanded_url":"https:\/\/instagram.com\/shayareesnaps?igshid=1t6n2s4zhgydf","display_url":"instagram.com\/shayareesnaps?\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":445,"listed_count":0,"created_at":"Fri - Mar 31 08:20:10 +0000 2017","favourites_count":9943,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1162,"lang":null,"status":{"created_at":"Fri - Mar 11 11:25:38 +0000 2022","id":1502244353766727687,"id_str":"1502244353766727687","text":"Which - ever book I add to my wishlist @netflix wants to make it into a original movie\/series? - Is @amazon sharing my\u2026 https:\/\/t.co\/cU23uFvl8N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"netflix","name":"Netflix","id":16573941,"id_str":"16573941","indices":[37,45]},{"screen_name":"amazon","name":"Amazon","id":20793816,"id_str":"20793816","indices":[96,103]}],"urls":[{"url":"https:\/\/t.co\/cU23uFvl8N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502244353766727687","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395302325812563975\/tdYkqy3L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395302325812563975\/tdYkqy3L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847725190322634752\/1587410981","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2920050921,"id_str":"2920050921","name":"Babyface.","screen_name":"ayindesamson84","location":"Chicago, - IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":356,"listed_count":0,"created_at":"Sat - Dec 13 18:35:29 +0000 2014","favourites_count":2639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Thu - Feb 17 23:48:59 +0000 2022","id":1494458890657878017,"id_str":"1494458890657878017","text":"RT - @SaharaReporters: BREAKING: Oyo Government To Hold Peace Talks With Street - Thugs, Cult Groups, Others Over Persistent Killings, Violence\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaharaReporters","name":"Sahara - Reporters","id":17409452,"id_str":"17409452","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 17 12:59:09 +0000 2022","id":1494295351356018690,"id_str":"1494295351356018690","text":"BREAKING: - Oyo Government To Hold Peace Talks With Street Thugs, Cult Groups, Others - Over Persistent Killings, Viole\u2026 https:\/\/t.co\/UtPS75zPSV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UtPS75zPSV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494295351356018690","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":129,"favorite_count":447,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":129,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1060202207067471873\/2fvoayeY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060202207067471873\/2fvoayeY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2920050921\/1599666132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258078521299214338,"id_str":"1258078521299214338","name":"John","screen_name":"John29297183","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":404,"listed_count":0,"created_at":"Wed - May 06 16:58:03 +0000 2020","favourites_count":12003,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10241,"lang":null,"status":{"created_at":"Sun - Mar 20 17:21:42 +0000 2022","id":1505595451361353733,"id_str":"1505595451361353733","text":"@Lollardfish - The fact that 22 women believe (rightly!) that they can extort a football - player by lying about sexual\u2026 https:\/\/t.co\/se0ubP4Xwu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Lollardfish","name":"David - M. Perry","id":108094234,"id_str":"108094234","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/se0ubP4Xwu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505595451361353733","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505363653125554179,"in_reply_to_status_id_str":"1505363653125554179","in_reply_to_user_id":108094234,"in_reply_to_user_id_str":"108094234","in_reply_to_screen_name":"Lollardfish","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":855052250,"id_str":"855052250","name":"Jeff - McCall","screen_name":"j_mccall05","location":"Alabama, USA","description":"","url":"https:\/\/t.co\/FAjxPQ2bbh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FAjxPQ2bbh","expanded_url":"http:\/\/www.crownyourtees.com","display_url":"crownyourtees.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":401,"listed_count":0,"created_at":"Sun - Sep 30 17:26:05 +0000 2012","favourites_count":700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Sat - Nov 28 20:28:48 +0000 2020","id":1332783523531542528,"id_str":"1332783523531542528","text":"RT - @RWTrollPatrol: @realDonaldTrump Trump''s bodyguard Kieth Schiller use to - change Trump''s diapers, his nickname on celebrity apprentice se\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RWTrollPatrol","name":"The - Trump Crisis","id":715617989656051712,"id_str":"715617989656051712","indices":[3,17]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[19,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 28 20:11:30 +0000 2020","id":1332779167419682831,"id_str":"1332779167419682831","text":"@realDonaldTrump - Trump''s bodyguard Kieth Schiller use to change Trump''s diapers, his nickname - on celebrity apprenti\u2026 https:\/\/t.co\/ip6fxDkaJt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/ip6fxDkaJt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1332779167419682831","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1332778938121203720,"in_reply_to_status_id_str":"1332778938121203720","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":184,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":43,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583787765663408128\/2IYIjzR-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583787765663408128\/2IYIjzR-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":118833303,"id_str":"118833303","name":"Kimberly - Hoyles","screen_name":"KAH500","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":624,"listed_count":0,"created_at":"Mon - Mar 01 21:55:36 +0000 2010","favourites_count":6523,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2772,"lang":null,"status":{"created_at":"Sat - Mar 26 01:09:48 +0000 2022","id":1507525188807581698,"id_str":"1507525188807581698","text":"RT - @Blue__America: @davidhogg111 Things that should never be based on a \"for-profit\" - model:\n\nHealthcare\nJustice For All (prisons)\nEducation\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Blue__America","name":"Blue - America \ud83d\udc99 \ud83c\uddfa\ud83c\uddf8 \ud83c\udd98","id":193887510,"id_str":"193887510","indices":[3,17]},{"screen_name":"davidhogg111","name":"David - Hogg \ud83c\udf3b","id":1915033663,"id_str":"1915033663","indices":[19,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:31:30 +0000 2022","id":1507424953271869445,"id_str":"1507424953271869445","text":"@davidhogg111 - Things that should never be based on a \"for-profit\" model:\n\nHealthcare\nJustice - For All (prisons)\nEduc\u2026 https:\/\/t.co\/CrSZqfdllK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidhogg111","name":"David - Hogg \ud83c\udf3b","id":1915033663,"id_str":"1915033663","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/CrSZqfdllK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507424953271869445","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507421629390929968,"in_reply_to_status_id_str":"1507421629390929968","in_reply_to_user_id":1915033663,"in_reply_to_user_id_str":"1915033663","in_reply_to_screen_name":"davidhogg111","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":38,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1185420885945008128,"id_str":"1185420885945008128","name":"cuttycuttcutt","screen_name":"cuttydlcrz","location":"","description":"peacefully - controlled.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":33,"friends_count":47,"listed_count":0,"created_at":"Sat - Oct 19 05:02:32 +0000 2019","favourites_count":5703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2858,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473562169321025543\/DjqlIr7p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473562169321025543\/DjqlIr7p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1185420885945008128\/1614056102","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258742140668084224,"id_str":"1258742140668084224","name":"Lantesil - Wondwosen","screen_name":"LantesilW","location":"Ethiopia","description":"\u2764\ud83c\uddea\ud83c\uddf9\u2764\n# - Be kind & \nThink positive !!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":218,"listed_count":0,"created_at":"Fri - May 08 12:55:25 +0000 2020","favourites_count":382,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Nov 07 14:45:44 +0000 2020","id":1325087043395973120,"id_str":"1325087043395973120","text":"@UnitedStandMUFC - Bruno and fred\u2764 !!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnitedStandMUFC","name":"The - United Stand","id":2613992689,"id_str":"2613992689","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1325084278422646784,"in_reply_to_status_id_str":"1325084278422646784","in_reply_to_user_id":2613992689,"in_reply_to_user_id_str":"2613992689","in_reply_to_screen_name":"UnitedStandMUFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287280261093371904\/8Iuxf7TY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287280261093371904\/8Iuxf7TY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1258742140668084224\/1597591537","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":775681457721372672,"id_str":"775681457721372672","name":"shivakumar","screen_name":"shiva_S_G","location":"Bengaluru, - India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":106,"listed_count":0,"created_at":"Tue - Sep 13 13:04:05 +0000 2016","favourites_count":358,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Thu - Mar 17 02:39:24 +0000 2022","id":1504286249577713665,"id_str":"1504286249577713665","text":"Wishing - you happy birthday power star .. always miss you sir we love you sir https:\/\/t.co\/oqm3CdJSjv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504286246813667330,"id_str":"1504286246813667330","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOBMXxXVkAI1nMk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOBMXxXVkAI1nMk.jpg","url":"https:\/\/t.co\/oqm3CdJSjv","display_url":"pic.twitter.com\/oqm3CdJSjv","expanded_url":"https:\/\/twitter.com\/shiva_S_G\/status\/1504286249577713665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504286246813667330,"id_str":"1504286246813667330","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOBMXxXVkAI1nMk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOBMXxXVkAI1nMk.jpg","url":"https:\/\/t.co\/oqm3CdJSjv","display_url":"pic.twitter.com\/oqm3CdJSjv","expanded_url":"https:\/\/twitter.com\/shiva_S_G\/status\/1504286249577713665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/808512481786142720\/KqxRvJzw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/808512481786142720\/KqxRvJzw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":137947330,"id_str":"137947330","name":"Michael - Forster","screen_name":"fossie46","location":"Cape Town South Africa","description":"Solar - Energy Solution Provider at Medsolar. \"How much can we save you?\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1382,"friends_count":2748,"listed_count":48,"created_at":"Wed - Apr 28 06:09:55 +0000 2010","favourites_count":105483,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1477,"lang":null,"status":{"created_at":"Sat - Mar 26 10:03:30 +0000 2022","id":1507659501507383296,"id_str":"1507659501507383296","text":"RT - @GoodLawProject: RT if you agree \ud83c\udf0a https:\/\/t.co\/4YgLxSOixc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GoodLawProject","name":"Good - Law Project","id":818455148271964160,"id_str":"818455148271964160","indices":[3,18]}],"urls":[],"media":[{"id":1507659123705491472,"id_str":"1507659123705491472","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","url":"https:\/\/t.co\/4YgLxSOixc","display_url":"pic.twitter.com\/4YgLxSOixc","expanded_url":"https:\/\/twitter.com\/GoodLawProject\/status\/1507659163769397249\/photo\/1","type":"photo","sizes":{"medium":{"w":800,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"}},"source_status_id":1507659163769397249,"source_status_id_str":"1507659163769397249","source_user_id":818455148271964160,"source_user_id_str":"818455148271964160"}]},"extended_entities":{"media":[{"id":1507659123705491472,"id_str":"1507659123705491472","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","url":"https:\/\/t.co\/4YgLxSOixc","display_url":"pic.twitter.com\/4YgLxSOixc","expanded_url":"https:\/\/twitter.com\/GoodLawProject\/status\/1507659163769397249\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":800,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"}},"source_status_id":1507659163769397249,"source_status_id_str":"1507659163769397249","source_user_id":818455148271964160,"source_user_id_str":"818455148271964160","video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOxH_C7XsBAp0UX.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 10:02:10 +0000 2022","id":1507659163769397249,"id_str":"1507659163769397249","text":"RT - if you agree \ud83c\udf0a https:\/\/t.co\/4YgLxSOixc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507659123705491472,"id_str":"1507659123705491472","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","url":"https:\/\/t.co\/4YgLxSOixc","display_url":"pic.twitter.com\/4YgLxSOixc","expanded_url":"https:\/\/twitter.com\/GoodLawProject\/status\/1507659163769397249\/photo\/1","type":"photo","sizes":{"medium":{"w":800,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507659123705491472,"id_str":"1507659123705491472","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOxH_C7XsBAp0UX.jpg","url":"https:\/\/t.co\/4YgLxSOixc","display_url":"pic.twitter.com\/4YgLxSOixc","expanded_url":"https:\/\/twitter.com\/GoodLawProject\/status\/1507659163769397249\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":800,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOxH_C7XsBAp0UX.mp4"}]}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":620,"favorite_count":585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":620,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275147184263114758\/L0G0xbBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275147184263114758\/L0G0xbBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137947330\/1588440364","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1155068297290932226,"id_str":"1155068297290932226","name":"AliAkbar - Nemati","screen_name":"dahraaab","location":"Tehran","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u06cc\u06a9 - \u0631\u0648\u0627\u062f\u0627\u0631\/\u062f\u0647\u0647 \u0634\u0635\u062a\u06cc - \u0645\u062a\u0648\u0644\u062f \u06f7\u06f9\/\u062c\u0633\u062a\u062c\u0648\u06af\u0631\/\u062a\u0644\u0627\u0634\u06af\u0631 - \u0641\u0647\u0645\u06cc\u062f\u0646\/\u0628\u0627\u062d\u0648\u0635\u0644\u0647\/\u06a9\u0645 - \u062e\u0648\u0627\u0628\/\u0632\u06cc\u0627\u062f\u06cc \u0645\u0647\u0631\u0628\u0648\u0646.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":164,"friends_count":430,"listed_count":0,"created_at":"Sat - Jul 27 10:51:56 +0000 2019","favourites_count":62124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2928,"lang":null,"status":{"created_at":"Tue - Mar 22 13:32:23 +0000 2022","id":1506262516292272136,"id_str":"1506262516292272136","text":"@marhoominhell - \u0628\u0627 \u0627\u0633\u0644\u062d\u0647 \u0628\u0631\u06cc \u0633\u0645\u062a - \u0639\u0642\u06cc\u062f\u062a\u06cc \u0646\u06af\u0647\u0628\u0627\u0646 - \u0633\u062a\u0627\u062f \u062a\u06cc\u06a9\u0647 \u062a\u06cc\u06a9\u062a - \u0645\u06cc \u06a9\u0646\u0647 :))))))","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marhoominhell","name":"\u0645\u0631\u062d\u0648\u0645 - \u062f\u0631 \u062c\u0647\u0646\u0645","id":1473416209702043656,"id_str":"1473416209702043656","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505957933724540933,"in_reply_to_status_id_str":"1505957933724540933","in_reply_to_user_id":1473416209702043656,"in_reply_to_user_id_str":"1473416209702043656","in_reply_to_screen_name":"marhoominhell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480240334072426504\/eorddKJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480240334072426504\/eorddKJ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1155068297290932226\/1619972260","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220425352406802432,"id_str":"1220425352406802432","name":"Nathan - Morrell #FBPE #progressivealliance, GTTO","screen_name":"NathanMorrell","location":"Nottingham, - England","description":"career retailer, love music, film, mini series and - red wine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2357,"friends_count":4996,"listed_count":1,"created_at":"Thu - Jan 23 19:17:46 +0000 2020","favourites_count":31138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12422,"lang":null,"status":{"created_at":"Sat - Mar 26 07:42:52 +0000 2022","id":1507624109391454212,"id_str":"1507624109391454212","text":"RT - @BBCLauraKT: BREAKING: Rishi Sunak\u2019s wife received a \u00a312 million - dividend from a company with a Russian office that helps to \"fund bulle\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCLauraKT","name":"Laura - Kuenssberg Translator","id":3025939600,"id_str":"3025939600","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:33:24 +0000 2022","id":1507455632810590214,"id_str":"1507455632810590214","text":"BREAKING: - Rishi Sunak\u2019s wife received a \u00a312 million dividend from a company - with a Russian office that helps to \"fu\u2026 https:\/\/t.co\/lUMaLsmw7V","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lUMaLsmw7V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507455632810590214","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3329,"favorite_count":13021,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3329,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261912251004575744\/OiC8-j7B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261912251004575744\/OiC8-j7B_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":200135178,"id_str":"200135178","name":"Marc - My Wordz","screen_name":"notmarcranucci","location":"Butt city","description":"\"Whatever - makes you think I''m the coolest\" enthusiast.\nhe\/him\/daddy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":281,"listed_count":1,"created_at":"Fri - Oct 08 14:47:33 +0000 2010","favourites_count":267,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Sat - Nov 20 07:46:43 +0000 2021","id":1461964208145199104,"id_str":"1461964208145199104","text":"@HenryLovesYou - @marcusparks got back on twitter to make sure y\u2019all see this newly surfaced - pic of Dennis Raider do\u2026 https:\/\/t.co\/QpoVFRTxaA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HenryLovesYou","name":"Henry - Zebrowski","id":57570629,"id_str":"57570629","indices":[0,14]},{"screen_name":"marcusparks","name":"Marcus - Parks","id":22555739,"id_str":"22555739","indices":[15,27]}],"urls":[{"url":"https:\/\/t.co\/QpoVFRTxaA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1461964208145199104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":57570629,"in_reply_to_user_id_str":"57570629","in_reply_to_screen_name":"HenryLovesYou","geo":null,"coordinates":null,"place":{"id":"07d9f16507486002","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9f16507486002.json","place_type":"poi","name":"Funky - Town","full_name":"Funky Town","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-118.6635002123958,34.14982146496909],[-118.6635002123958,34.14982146496909],[-118.6635002123958,34.14982146496909],[-118.6635002123958,34.14982146496909]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280673807745732608\/aOR_-pC3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280673807745732608\/aOR_-pC3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200135178\/1594174904","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719594692,"id_str":"719594692","name":"Carlos - Bonefont PhD","screen_name":"carlos51pr","location":"Puerto Rico, USA","description":"Christian - Counselor\/ Freemason\/ Secular Buddhist\/ 4Life Network Marketer\/ Tai Chi - Chuan & Aikido Practitioner","url":"https:\/\/t.co\/tnl47wGJeL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tnl47wGJeL","expanded_url":"https:\/\/www.4life.com\/10949301","display_url":"4life.com\/10949301","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":205,"listed_count":0,"created_at":"Thu - Oct 17 18:28:16 +0000 2013","favourites_count":7841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5551,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284660821612732423\/lOLAFGVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284660821612732423\/lOLAFGVc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719594692\/1398419247","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252860312836927488,"id_str":"1252860312836927488","name":"\u539f\u4e0a\u8349","screen_name":"5x3yOlUkuoTkchh","location":"","description":"\u9752\u9752\u5b50\u887f\uff0c\u60a0\u60a0\u6211\u5fc3\uff0c\u4f46\u4e3a\u541b\u6545\uff0c\u6c89\u541f\u81f3\u4eca\u3002\u6e34\u671b\u4eba\u751f\u4e4b\u81ea\u7531\uff0c\u7075\u9b42\u4e4b\u6170\u85c9\uff0c\u671b\u5723\u6bcd\u4e4b\u7075\u6c34\uff0c\u6d47\u704c\u6c99\u6f20\u7684\u5fc3\uff01","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":48,"listed_count":0,"created_at":"Wed - Apr 22 07:22:44 +0000 2020","favourites_count":249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Apr 22 08:41:52 +0000 2020","id":1252880285101776897,"id_str":"1252880285101776897","text":"Hello, - everyone. I just joined. I''m from China. I don''t know if I will be welcome, - but I would like to know you very much, thank you!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252868147989757953\/OS7Y6OE8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252868147989757953\/OS7Y6OE8_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825626525294874624,"id_str":"825626525294874624","name":"Jerry - Cooper","screen_name":"JerryCo64388531","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":37,"listed_count":0,"created_at":"Sun - Jan 29 08:47:57 +0000 2017","favourites_count":282,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Fri - Mar 11 12:39:39 +0000 2022","id":1502262980267986951,"id_str":"1502262980267986951","text":"@nytimes - p\u00bd787kmtg\nPu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502222820474245120,"in_reply_to_status_id_str":"1502222820474245120","in_reply_to_user_id":807095,"in_reply_to_user_id_str":"807095","in_reply_to_screen_name":"nytimes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291897110711828480,"id_str":"1291897110711828480","name":"Caprice","screen_name":"grieve_deborah","location":"","description":"very - curious and interested in world news and events","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":394,"listed_count":0,"created_at":"Sat - Aug 08 00:41:11 +0000 2020","favourites_count":7572,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Mon - Apr 26 03:00:16 +0000 2021","id":1386515442395541508,"id_str":"1386515442395541508","text":"@semperdiced - Um, it might be because she was born on 16 August 1958. Her age doesn''t - belie her beauty and her tale\u2026 https:\/\/t.co\/Ed48ac0Kff","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ed48ac0Kff","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1386515442395541508","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":468738916,"id_str":"468738916","name":"Quinn - Adams","screen_name":"RVA804life","location":"","description":"I enjoy discussing - religion, politics, foreign policy, and sports. Opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":935,"listed_count":6,"created_at":"Thu - Jan 19 21:23:03 +0000 2012","favourites_count":5018,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5605,"lang":null,"status":{"created_at":"Sat - Mar 26 10:39:07 +0000 2022","id":1507668463778684929,"id_str":"1507668463778684929","text":"@oifoeffml - @KatAdler21 @stillgray You still refuse to answer the simply question I asked. - Yes or no, are Russia\u2019s a\u2026 https:\/\/t.co\/ys60XDzWl8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oifoeffml","name":"Joseph - McCarthy was right all \u1430long","id":2986914000,"id_str":"2986914000","indices":[0,10]},{"screen_name":"KatAdler21","name":"\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udf0a\ud83e\udd93\ud83e\udd44\ud83d\ude37","id":922021191799287808,"id_str":"922021191799287808","indices":[11,22]},{"screen_name":"stillgray","name":"Ian - Miles Cheong","id":16106584,"id_str":"16106584","indices":[23,33]}],"urls":[{"url":"https:\/\/t.co\/ys60XDzWl8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507668463778684929","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507563332030582789,"in_reply_to_status_id_str":"1507563332030582789","in_reply_to_user_id":468738916,"in_reply_to_user_id_str":"468738916","in_reply_to_screen_name":"RVA804life","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482919498344767489\/AZV3HUE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482919498344767489\/AZV3HUE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468738916\/1550193940","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271743506021847040,"id_str":"1271743506021847040","name":"WhiteZulu","screen_name":"jak2461","location":"Down - the road .","description":"World Traveler . conscious conservative . lover - of Braai , food , wine and sport . He \/ Haw. \ud83c\uddff\ud83c\udde6\ud83c\udf0d\ud83c\uddfa\ud83c\uddf8 - .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":1249,"listed_count":1,"created_at":"Sat - Jun 13 09:57:51 +0000 2020","favourites_count":24819,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5173,"lang":null,"status":{"created_at":"Tue - Oct 05 14:17:00 +0000 2021","id":1445392582033514496,"id_str":"1445392582033514496","text":"@News24 - @karynmaughan And yet the SCA completely repudiated Salie -Hlope version of - events ? Something doesn\u2019t sound right here","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"News24","name":"News24","id":14697575,"id_str":"14697575","indices":[0,7]},{"screen_name":"karynmaughan","name":"Karyn - Maughan","id":217750417,"id_str":"217750417","indices":[8,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1445317627027599360,"in_reply_to_status_id_str":"1445317627027599360","in_reply_to_user_id":14697575,"in_reply_to_user_id_str":"14697575","in_reply_to_screen_name":"News24","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287019643652247552\/AN1UMEgV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287019643652247552\/AN1UMEgV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":178740614,"id_str":"178740614","name":"CatMonet","screen_name":"southwiz","location":"Northern - California","description":"Very liberal. Sicker every year since Trump.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":1244,"listed_count":1,"created_at":"Sun - Aug 15 15:29:20 +0000 2010","favourites_count":54414,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10313,"lang":null,"status":{"created_at":"Sat - Mar 26 06:55:29 +0000 2022","id":1507612186193014784,"id_str":"1507612186193014784","text":"RT - @lindyli: Ben Sasse says Judge Jackson is an \u201cextraordinary person\u201d - but refuses to vote for her anyway\n\nSusan Collins says she\u2019s \u201cconcer\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lindyli","name":"Lindy - Li","id":270132611,"id_str":"270132611","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:27:58 +0000 2022","id":1507529763837120517,"id_str":"1507529763837120517","text":"Ben - Sasse says Judge Jackson is an \u201cextraordinary person\u201d but refuses - to vote for her anyway\n\nSusan Collins says sh\u2026 https:\/\/t.co\/AynIc1HRKa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AynIc1HRKa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529763837120517","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"e4a0d228eb6be76b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e4a0d228eb6be76b.json","place_type":"city","name":"Philadelphia","full_name":"Philadelphia, - PA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-75.280284,39.871811],[-74.955712,39.871811],[-74.955712,40.13792],[-75.280284,40.13792]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2858,"favorite_count":9758,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2858,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829468525718798337\/MDaytpLD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829468525718798337\/MDaytpLD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178740614\/1603396849","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":354516064,"id_str":"354516064","name":"Mary - Spencer","screen_name":"MarySpencer2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":77,"listed_count":0,"created_at":"Sat - Aug 13 21:14:03 +0000 2011","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Aug 31 21:45:18 +0000 2014","id":506196053860044800,"id_str":"506196053860044800","text":"Parents - of Ashya arrested? What for? Poor child now surrounded by people he doesn''t - know and cannot understand.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2741457985,"id_str":"2741457985","name":"athena - chunn","screen_name":"chunn_athena","location":"California ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":692,"listed_count":0,"created_at":"Mon - Aug 18 06:04:33 +0000 2014","favourites_count":68381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52852,"lang":null,"status":{"created_at":"Mon - Mar 21 07:07:00 +0000 2022","id":1505803142197174273,"id_str":"1505803142197174273","text":"@AdamParkhomenko - my little tiger \u2026 https:\/\/t.co\/P12lpdmXea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamParkhomenko","name":"Adam - Parkhomenko","id":18382184,"id_str":"18382184","indices":[0,16]}],"urls":[],"media":[{"id":1505803029122932740,"id_str":"1505803029122932740","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWv4HyUYAQoKWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWv4HyUYAQoKWq.jpg","url":"https:\/\/t.co\/P12lpdmXea","display_url":"pic.twitter.com\/P12lpdmXea","expanded_url":"https:\/\/twitter.com\/chunn_athena\/status\/1505803142197174273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505803029122932740,"id_str":"1505803029122932740","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWv4HyUYAQoKWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWv4HyUYAQoKWq.jpg","url":"https:\/\/t.co\/P12lpdmXea","display_url":"pic.twitter.com\/P12lpdmXea","expanded_url":"https:\/\/twitter.com\/chunn_athena\/status\/1505803142197174273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505619432256720903,"in_reply_to_status_id_str":"1505619432256720903","in_reply_to_user_id":18382184,"in_reply_to_user_id_str":"18382184","in_reply_to_screen_name":"AdamParkhomenko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190856272972861442\/vmATuiw-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190856272972861442\/vmATuiw-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2412658269,"id_str":"2412658269","name":"Dr - Larry Nnanna","screen_name":"LarryNnanna","location":"Krugersdorp","description":"Family - physician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":1801,"listed_count":1,"created_at":"Sat - Mar 15 12:26:56 +0000 2014","favourites_count":20883,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":863,"lang":null,"status":{"created_at":"Thu - Mar 24 17:23:00 +0000 2022","id":1507045326678630400,"id_str":"1507045326678630400","text":"RT - @IgboHistoFacts: Peter Obi\n\nDon''t say anything. Just Retweet https:\/\/t.co\/9ujdlzmZtx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IgboHistoFacts","name":"IGBO - History & Facts","id":3179710631,"id_str":"3179710631","indices":[3,18]}],"urls":[],"media":[{"id":1507027785092681738,"id_str":"1507027785092681738","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","url":"https:\/\/t.co\/9ujdlzmZtx","display_url":"pic.twitter.com\/9ujdlzmZtx","expanded_url":"https:\/\/twitter.com\/IgboHistoFacts\/status\/1507027788552970246\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"}},"source_status_id":1507027788552970246,"source_status_id_str":"1507027788552970246","source_user_id":3179710631,"source_user_id_str":"3179710631"}]},"extended_entities":{"media":[{"id":1507027785092681738,"id_str":"1507027785092681738","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","url":"https:\/\/t.co\/9ujdlzmZtx","display_url":"pic.twitter.com\/9ujdlzmZtx","expanded_url":"https:\/\/twitter.com\/IgboHistoFacts\/status\/1507027788552970246\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"}},"source_status_id":1507027788552970246,"source_status_id_str":"1507027788552970246","source_user_id":3179710631,"source_user_id_str":"3179710631"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:13:18 +0000 2022","id":1507027788552970246,"id_str":"1507027788552970246","text":"Peter - Obi\n\nDon''t say anything. Just Retweet https:\/\/t.co\/9ujdlzmZtx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507027785092681738,"id_str":"1507027785092681738","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","url":"https:\/\/t.co\/9ujdlzmZtx","display_url":"pic.twitter.com\/9ujdlzmZtx","expanded_url":"https:\/\/twitter.com\/IgboHistoFacts\/status\/1507027788552970246\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507027785092681738,"id_str":"1507027785092681738","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoJyTUX0AoxltS.jpg","url":"https:\/\/t.co\/9ujdlzmZtx","display_url":"pic.twitter.com\/9ujdlzmZtx","expanded_url":"https:\/\/twitter.com\/IgboHistoFacts\/status\/1507027788552970246\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":453,"h":680,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9602,"favorite_count":8590,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9602,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/708150625767395328\/bCByLf_t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/708150625767395328\/bCByLf_t_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":533232454,"id_str":"533232454","name":"Stuart - Morley","screen_name":"stuart_morley","location":"Brighton, England","description":"Workforce - Change Analyst","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":50,"friends_count":1739,"listed_count":1,"created_at":"Thu - Mar 22 15:29:40 +0000 2012","favourites_count":32540,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2502,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036849932144181248\/Q9kt_5Lr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036849932144181248\/Q9kt_5Lr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/533232454\/1443857112","profile_link_color":"00B8AF","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1164618737099534336,"id_str":"1164618737099534336","name":"Rossboylan","screen_name":"Rossboylan1","location":"NSW.Australia.","description":"old - lefty, equity, resources for Kids,UBI a must.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2993,"friends_count":4999,"listed_count":5,"created_at":"Thu - Aug 22 19:22:44 +0000 2019","favourites_count":69341,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8210,"lang":null,"status":{"created_at":"Sat - Mar 26 07:14:28 +0000 2022","id":1507616960837976075,"id_str":"1507616960837976075","text":"@Smizzy777 - Agree mate ...it''s an embarrassment.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Smizzy777","name":"Norman - David","id":1482459276958642178,"id_str":"1482459276958642178","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507609824905035777,"in_reply_to_status_id_str":"1507609824905035777","in_reply_to_user_id":1482459276958642178,"in_reply_to_user_id_str":"1482459276958642178","in_reply_to_screen_name":"Smizzy777","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246956839842938880\/lYiLma31_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246956839842938880\/lYiLma31_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":376081619,"id_str":"376081619","name":"Olaseni - Lawrence","screen_name":"LawrenceOlaseni","location":"Ekiti ","description":"Well - educated @OAU Ife","url":"https:\/\/t.co\/iPTTeQOj26","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iPTTeQOj26","expanded_url":"http:\/\/lanrelaw.com","display_url":"lanrelaw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":42,"friends_count":670,"listed_count":0,"created_at":"Mon - Sep 19 08:26:51 +0000 2011","favourites_count":4664,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2325,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050311428140425216\/H4QElSeW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050311428140425216\/H4QElSeW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23042127,"id_str":"23042127","name":"Anthony - James McCall","screen_name":"Mixedoreeo","location":"anderson southcarolina","description":"Homosexual - male. Mixed with Black&White. Funny and Hysterical. In a realationship. I - love britney spears ever since 98'' #TeamBritneySpears #TeamGingah","url":"http:\/\/t.co\/e6HFsdyxEg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/e6HFsdyxEg","expanded_url":"http:\/\/facebook.com\/ajmccall","display_url":"facebook.com\/ajmccall","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":345,"friends_count":920,"listed_count":2,"created_at":"Fri - Mar 06 07:29:45 +0000 2009","favourites_count":558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12970,"lang":null,"status":{"created_at":"Sat - Mar 26 10:00:09 +0000 2022","id":1507658656938004481,"id_str":"1507658656938004481","text":"A - peer could bring a truly lovely opportunity right to your fr... More for Virgo - https:\/\/t.co\/RmaVAJRfrn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RmaVAJRfrn","expanded_url":"http:\/\/bit.ly\/A7Cwfs","display_url":"bit.ly\/A7Cwfs","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559339969861275649\/uxf63P6Q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559339969861275649\/uxf63P6Q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23042127\/1422192047","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288516003597615105,"id_str":"1288516003597615105","name":"Xjusilo","screen_name":"Chucks26741423","location":"","description":"tenacious - and a goal getter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":90,"listed_count":0,"created_at":"Wed - Jul 29 16:46:45 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Thu - Nov 19 20:41:50 +0000 2020","id":1329525313634775040,"id_str":"1329525313634775040","text":"RT - @Tutsy22: REAL INFLUENCERS use their platform to help others stay informed, - encourage others to think for themselves, & empower others t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tutsy22","name":"Adetutu - Balogun, MBA","id":498719623,"id_str":"498719623","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 19 20:31:02 +0000 2020","id":1329522595591557120,"id_str":"1329522595591557120","text":"REAL - INFLUENCERS use their platform to help others stay informed, encourage others - to think for themselves, & empow\u2026 https:\/\/t.co\/kK48sCEB2J","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kK48sCEB2J","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1329522595591557120","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":344,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318673936595537921\/BqQQRTks_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318673936595537921\/BqQQRTks_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":959677237447593989,"id_str":"959677237447593989","name":"Adamu - Barde","screen_name":"AdamuBarde3","location":"Bauchi, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":501,"listed_count":0,"created_at":"Sat - Feb 03 06:37:38 +0000 2018","favourites_count":2124,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Sat - Jan 22 04:25:08 +0000 2022","id":1484743913621667849,"id_str":"1484743913621667849","text":"Allah - yajikanta da Rahmah https:\/\/t.co\/tpXUAy57y8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1484743811041480714,"id_str":"1484743811041480714","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1484743811041480714\/pu\/img\/Of3svNhqWsy6zzhv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1484743811041480714\/pu\/img\/Of3svNhqWsy6zzhv.jpg","url":"https:\/\/t.co\/tpXUAy57y8","display_url":"pic.twitter.com\/tpXUAy57y8","expanded_url":"https:\/\/twitter.com\/AdamuBarde3\/status\/1484743913621667849\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":240,"resize":"fit"},"medium":{"w":426,"h":240,"resize":"fit"},"small":{"w":426,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1484743811041480714,"id_str":"1484743811041480714","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1484743811041480714\/pu\/img\/Of3svNhqWsy6zzhv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1484743811041480714\/pu\/img\/Of3svNhqWsy6zzhv.jpg","url":"https:\/\/t.co\/tpXUAy57y8","display_url":"pic.twitter.com\/tpXUAy57y8","expanded_url":"https:\/\/twitter.com\/AdamuBarde3\/status\/1484743913621667849\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":240,"resize":"fit"},"medium":{"w":426,"h":240,"resize":"fit"},"small":{"w":426,"h":240,"resize":"fit"}},"video_info":{"aspect_ratio":[71,40],"duration_millis":45013,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1484743811041480714\/pu\/pl\/6wqIXzd7vToIV-ns.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1484743811041480714\/pu\/vid\/426x240\/0N74sKgUEFQIY21v.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/988370991536594947\/aRYSiox6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/988370991536594947\/aRYSiox6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":279302694,"id_str":"279302694","name":"Potenski","screen_name":"Potenski1","location":"Lagos, - Nigeria.","description":"A believer of the Message of our Lord Jesus Christ, - un-assuming and easy going dude with enuff luv to go round.","url":"http:\/\/t.co\/ctcMG32k4B","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ctcMG32k4B","expanded_url":"http:\/\/www.milwayresources.com","display_url":"milwayresources.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":2385,"listed_count":0,"created_at":"Sat - Apr 09 00:44:48 +0000 2011","favourites_count":14317,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8769,"lang":null,"status":{"created_at":"Fri - Apr 09 06:05:45 +0000 2021","id":1380401526775164928,"id_str":"1380401526775164928","text":"RT - @AriBerman: 133 mass shootings in US already this year: let''s make it easier - to buy guns\n\n2 cases of voter fraud in 2020: let''s make it\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AriBerman","name":"Ari - Berman","id":15952856,"id_str":"15952856","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Apr 08 16:24:34 +0000 2021","id":1380194871563202560,"id_str":"1380194871563202560","text":"133 - mass shootings in US already this year: let''s make it easier to buy guns\n\n2 - cases of voter fraud in 2020: let''s make it harder to vote","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12737,"favorite_count":46415,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12737,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/881267865076338689\/c6vK_dFM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/881267865076338689\/c6vK_dFM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32713428,"id_str":"32713428","name":"Kelli - Jae Baeli\u00a9BestsellingGenreHoppingIndieAuthor","screen_name":"KelliJaeBaeli","location":"Eureka - Springs","description":"33 bestsellers\/60 books. #LoveAnimals #Treehugger - #Democrat #DisabledVeteran #Humanist #Feminist #LGBTQ #cannabis #NoMoreSnowflakes - #BLM #MeToo #organic","url":"https:\/\/t.co\/toHTyFzYIT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/toHTyFzYIT","expanded_url":"http:\/\/kellijaebaeli.com","display_url":"kellijaebaeli.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1903,"friends_count":3473,"listed_count":0,"created_at":"Sat - Apr 18 01:33:16 +0000 2009","favourites_count":55293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36921,"lang":null,"status":{"created_at":"Wed - Mar 23 22:29:01 +0000 2022","id":1506759950336344064,"id_str":"1506759950336344064","text":"\"Yet - again this author has managed to break molds in the stuffy, crowded genre - of #Lesfic to deliver a breath of fr\u2026 https:\/\/t.co\/YMEvnwlNYp","truncated":true,"entities":{"hashtags":[{"text":"Lesfic","indices":[82,89]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YMEvnwlNYp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506759950336344064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/social.zoho.com\" rel=\"nofollow\"\u003eZoho Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399713363521847299\/d-LLWoLh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399713363521847299\/d-LLWoLh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32713428\/1580022251","profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FCE2A4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289606668011966464,"id_str":"1289606668011966464","name":"Agent - \u00c9ducateur \ud83d\udd24","screen_name":"twirly_g","location":"Hellscape2.0","description":"In\u00f7Soap\u00f7We\u00f7Trust","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":656,"listed_count":0,"created_at":"Sat - Aug 01 16:59:40 +0000 2020","favourites_count":6738,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2196,"lang":null,"status":{"created_at":"Sat - Jun 12 16:39:37 +0000 2021","id":1403753868618436611,"id_str":"1403753868618436611","text":"@jones_zuzu - @chiphowardsrock @MonicaLewinsky You live by words. Ok...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jones_zuzu","name":"crown - of hearts, esq","id":18328579,"id_str":"18328579","indices":[0,11]},{"screen_name":"chiphowardsrock","name":"J - Christopher","id":398867565,"id_str":"398867565","indices":[12,28]},{"screen_name":"MonicaLewinsky","name":"Monica - Lewinsky (she\/her)","id":2835276183,"id_str":"2835276183","indices":[29,44]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1403737731390328834,"in_reply_to_status_id_str":"1403737731390328834","in_reply_to_user_id":18328579,"in_reply_to_user_id_str":"18328579","in_reply_to_screen_name":"jones_zuzu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369862816027480064\/aCE6T7IY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369862816027480064\/aCE6T7IY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1289606668011966464\/1613794799","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":101064667,"id_str":"101064667","name":"Annie - Sprinkle","screen_name":"AnnieSprinkle","location":"San Francisco, CA, Earth","description":"Artist, - filmmaker, former sex worker, Co-author \"Assuming the Ecosexual Position\" - https:\/\/t.co\/7YMbXfDXDe\u2026","url":"https:\/\/t.co\/5WVW2e2VHz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5WVW2e2VHz","expanded_url":"http:\/\/sprinklestephens.org","display_url":"sprinklestephens.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/7YMbXfDXDe","expanded_url":"http:\/\/upress.umn.edu\/book-division\/","display_url":"upress.umn.edu\/book-division\/","indices":[82,105]}]}},"protected":false,"followers_count":28958,"friends_count":547,"listed_count":605,"created_at":"Fri - Jan 01 21:40:09 +0000 2010","favourites_count":11382,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18976,"lang":null,"status":{"created_at":"Sat - Mar 26 03:36:46 +0000 2022","id":1507562176176799748,"id_str":"1507562176176799748","text":"@kindness_circle - Definitely a magnificent human being! Well done Mom!\nBig blessings. I for - one will continue to sup\u2026 https:\/\/t.co\/QTWrb1E6Xh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kindness_circle","name":"neva - \ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f\ud83c\udf0e\u2764\ufe0f","id":3840892214,"id_str":"3840892214","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/QTWrb1E6Xh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507562176176799748","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507555543929409539,"in_reply_to_status_id_str":"1507555543929409539","in_reply_to_user_id":3840892214,"in_reply_to_user_id_str":"3840892214","in_reply_to_screen_name":"kindness_circle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382025320216219651\/Q8t5iVUA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382025320216219651\/Q8t5iVUA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101064667\/1646466602","profile_link_color":"FF0091","profile_sidebar_border_color":"5F1087","profile_sidebar_fill_color":"ED7CD6","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2625233499,"id_str":"2625233499","name":"Tefo - Moholeng","screen_name":"MoholengT","location":"Kuruman, South Africa","description":"tourist!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":426,"listed_count":0,"created_at":"Fri - Jun 20 09:36:59 +0000 2014","favourites_count":134,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":502,"lang":null,"status":{"created_at":"Tue - Jan 19 16:55:30 +0000 2021","id":1351574014502854656,"id_str":"1351574014502854656","text":"RT - @given_ngomani: You deserve a husband as rich as your father https:\/\/t.co\/ZnfaHNNOHQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1351372947240443904,"id_str":"1351372947240443904","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","url":"https:\/\/t.co\/ZnfaHNNOHQ","display_url":"pic.twitter.com\/ZnfaHNNOHQ","expanded_url":"https:\/\/twitter.com\/given_ngomani\/status\/1351372950272933891\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":560,"h":409,"resize":"fit"},"medium":{"w":560,"h":409,"resize":"fit"},"large":{"w":560,"h":409,"resize":"fit"}},"source_status_id":1351372950272933891,"source_status_id_str":"1351372950272933891","source_user_id":2436096197,"source_user_id_str":"2436096197"}]},"extended_entities":{"media":[{"id":1351372947240443904,"id_str":"1351372947240443904","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","url":"https:\/\/t.co\/ZnfaHNNOHQ","display_url":"pic.twitter.com\/ZnfaHNNOHQ","expanded_url":"https:\/\/twitter.com\/given_ngomani\/status\/1351372950272933891\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":560,"h":409,"resize":"fit"},"medium":{"w":560,"h":409,"resize":"fit"},"large":{"w":560,"h":409,"resize":"fit"}},"source_status_id":1351372950272933891,"source_status_id_str":"1351372950272933891","source_user_id":2436096197,"source_user_id_str":"2436096197"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 19 03:36:33 +0000 2021","id":1351372950272933891,"id_str":"1351372950272933891","text":"You - deserve a husband as rich as your father https:\/\/t.co\/ZnfaHNNOHQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1351372947240443904,"id_str":"1351372947240443904","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","url":"https:\/\/t.co\/ZnfaHNNOHQ","display_url":"pic.twitter.com\/ZnfaHNNOHQ","expanded_url":"https:\/\/twitter.com\/given_ngomani\/status\/1351372950272933891\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":560,"h":409,"resize":"fit"},"medium":{"w":560,"h":409,"resize":"fit"},"large":{"w":560,"h":409,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1351372947240443904,"id_str":"1351372947240443904","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsEKiR9W4AASmJg.jpg","url":"https:\/\/t.co\/ZnfaHNNOHQ","display_url":"pic.twitter.com\/ZnfaHNNOHQ","expanded_url":"https:\/\/twitter.com\/given_ngomani\/status\/1351372950272933891\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":560,"h":409,"resize":"fit"},"medium":{"w":560,"h":409,"resize":"fit"},"large":{"w":560,"h":409,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":86,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239982373636378628\/Q2NhNI1m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239982373636378628\/Q2NhNI1m_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3483674902,"id_str":"3483674902","name":"Paul - Audu De-Cure","screen_name":"paulauduw","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":875,"listed_count":1,"created_at":"Sat - Aug 29 20:01:23 +0000 2015","favourites_count":1147,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":97,"lang":null,"status":{"created_at":"Fri - Mar 25 12:49:31 +0000 2022","id":1507338891279454217,"id_str":"1507338891279454217","text":"@vanguardngrnews - Why is d picture of the most eligible d smallest...?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vanguardngrnews","name":"Vanguard - Newspapers","id":39975533,"id_str":"39975533","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507251131998740480,"in_reply_to_status_id_str":"1507251131998740480","in_reply_to_user_id":39975533,"in_reply_to_user_id_str":"39975533","in_reply_to_screen_name":"vanguardngrnews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496483392019382273\/C0OfwI7q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496483392019382273\/C0OfwI7q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1072291159731367937,"id_str":"1072291159731367937","name":"imaunder","screen_name":"imaunder1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":43,"friends_count":835,"listed_count":1,"created_at":"Tue - Dec 11 00:45:09 +0000 2018","favourites_count":956,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318754393794203649\/UkZq2CCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318754393794203649\/UkZq2CCu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3106928376,"id_str":"3106928376","name":"\ud83d\udc95","screen_name":"annefruiiiiity","location":"Quezon - City, Philippines","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":132,"listed_count":0,"created_at":"Tue - Mar 24 14:27:59 +0000 2015","favourites_count":9603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4345,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494528363490594817\/-hoYBtRS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494528363490594817\/-hoYBtRS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106928376\/1621172500","profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221543588984692736,"id_str":"1221543588984692736","name":"Eric","screen_name":"Eric86084138","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":764,"listed_count":0,"created_at":"Sun - Jan 26 21:21:12 +0000 2020","favourites_count":53859,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1233367152,"id_str":"1233367152","name":"Johan - Stodberg \ud83c\uddfa\ud83c\udde6\ud83c\uddf8\ud83c\uddea\ud83c\uddfa\ud83c\uddf8","screen_name":"jstodberg","location":"Nashville, - TN","description":"Husband, father, technology geek, never ending learner. - Raise children, scare away ghosts and clean messes.","url":"https:\/\/t.co\/JWgNHyHxFz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWgNHyHxFz","expanded_url":"https:\/\/swedishfather.wordpress.com","display_url":"swedishfather.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2650,"friends_count":3024,"listed_count":87,"created_at":"Sat - Mar 02 07:27:54 +0000 2013","favourites_count":836,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8016,"lang":null,"status":{"created_at":"Fri - Mar 25 19:12:56 +0000 2022","id":1507435381737803779,"id_str":"1507435381737803779","text":"The - latest Circuit Imagination! https:\/\/t.co\/pmkN1wzHl6 Thanks to @hackaday - @Hacksterio @digikey #icymi #arduinoweek2022","truncated":false,"entities":{"hashtags":[{"text":"icymi","indices":[97,103]},{"text":"arduinoweek2022","indices":[104,120]}],"symbols":[],"user_mentions":[{"screen_name":"hackaday","name":"hackaday","id":14607140,"id_str":"14607140","indices":[66,75]},{"screen_name":"Hacksterio","name":"Hackster.io","id":1473686120,"id_str":"1473686120","indices":[76,87]},{"screen_name":"digikey","name":"Digi-Key - Electronics","id":17346756,"id_str":"17346756","indices":[88,96]}],"urls":[{"url":"https:\/\/t.co\/pmkN1wzHl6","expanded_url":"https:\/\/paper.li\/jstodberg\/1426000219?edition_id=93c82ec0-ac6f-11ec-9378-fa163ed80008","display_url":"paper.li\/jstodberg\/1426\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"https:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890596095264526338\/jqZjRakp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890596095264526338\/jqZjRakp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233367152\/1426775445","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3796232595,"id_str":"3796232595","name":"Sandy - Levesque","screen_name":"SandyLevesqueFL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":421,"listed_count":0,"created_at":"Sun - Sep 27 20:14:23 +0000 2015","favourites_count":21498,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16037,"lang":null,"status":{"created_at":"Fri - Mar 25 16:58:03 +0000 2022","id":1507401437755723785,"id_str":"1507401437755723785","text":"RT - @OccupyDemocrats: BREAKING: In a HUGE loss for Republican Senators Tom Cotton, - Ted Cruz, Lindsay Graham, and Josh Hawley, officials from\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:49:24 +0000 2022","id":1507097272030482436,"id_str":"1507097272030482436","text":"BREAKING: - In a HUGE loss for Republican Senators Tom Cotton, Ted Cruz, Lindsay Graham, - and Josh Hawley, officials f\u2026 https:\/\/t.co\/ANbLqubnPk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ANbLqubnPk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507097272030482436","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23497,"favorite_count":64984,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23497,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648236065699037184\/kEQevy2b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648236065699037184\/kEQevy2b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4848031526,"id_str":"4848031526","name":"Christopher - wade","screen_name":"losaltvboi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":364,"listed_count":1,"created_at":"Tue - Feb 02 06:29:48 +0000 2016","favourites_count":2254,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4265,"lang":null,"status":{"created_at":"Tue - Mar 22 16:25:27 +0000 2022","id":1506306069894623235,"id_str":"1506306069894623235","text":"RT - @SheriffTNehls: They spied on a sitting President. They spied on a sitting - Congressman, and they covered up Biden''s corruption.\n\nAnd, th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SheriffTNehls","name":"Troy - Nehls","id":3299995136,"id_str":"3299995136","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 14:56:55 +0000 2022","id":1505921402507259906,"id_str":"1505921402507259906","text":"They - spied on a sitting President. They spied on a sitting Congressman, and they - covered up Biden''s corruption.\n\nAn\u2026 https:\/\/t.co\/TgRD9Vl8HT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TgRD9Vl8HT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505921402507259906","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1561,"favorite_count":6600,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1561,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694408272883789825\/TIR-7UE-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694408272883789825\/TIR-7UE-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1044332131521110016,"id_str":"1044332131521110016","name":"Elisabetta - Somebody\u2019s Love Child","screen_name":"ElisabethWillm3","location":"Kent - OH","description":"Essential worker, grandmother, knitter, weaver, plant whisperer, - early riser, lost a beloved daughter to the opioid epidemic, Antifascist since - age 8 #resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":824,"listed_count":0,"created_at":"Mon - Sep 24 21:05:57 +0000 2018","favourites_count":12332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1278,"lang":null,"status":{"created_at":"Fri - Mar 25 19:40:21 +0000 2022","id":1507442281443438606,"id_str":"1507442281443438606","text":"RT - @rinanpakkala: How did the Russians ever think these people could be conquered, - my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rinanpakkala","name":"Rina","id":826477293472251904,"id_str":"826477293472251904","indices":[3,16]}],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904"}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1506799839509725196,"source_status_id_str":"1506799839509725196","source_user_id":826477293472251904,"source_user_id_str":"826477293472251904","video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 01:07:31 +0000 2022","id":1506799839509725196,"id_str":"1506799839509725196","text":"How - did the Russians ever think these people could be conquered, my god. https:\/\/t.co\/w2OkEBAacP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506788916879413252,"id_str":"1506788916879413252","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506788916879413252\/pu\/img\/H_RKC7658pluY9El.jpg","url":"https:\/\/t.co\/w2OkEBAacP","display_url":"pic.twitter.com\/w2OkEBAacP","expanded_url":"https:\/\/twitter.com\/rinanpakkala\/status\/1506799839509725196\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":102083,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/576x1024\/hNJUNUtUGZ8kupH-.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/480x852\/orkQmIMHDtlgUmzZ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/vid\/320x568\/ZkTTgejPRYTHY9LT.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506788916879413252\/pu\/pl\/0OraPric07-yQMey.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30519,"favorite_count":151738,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30519,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353865368083771393\/swIfaZV8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353865368083771393\/swIfaZV8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1044332131521110016\/1611621633","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18227254,"id_str":"18227254","name":"Brandi - Unger","screen_name":"ungerb","location":"St. Louis, MO","description":"digital - media sales @amplifieDigital |laundry loather | married a swede | mama | spotify - enthusiast | traveler | save ferris!","url":"http:\/\/t.co\/9Ea4LOsf9X","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9Ea4LOsf9X","expanded_url":"http:\/\/www.brandiu.etsy.com","display_url":"brandiu.etsy.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":488,"listed_count":9,"created_at":"Thu - Dec 18 22:22:58 +0000 2008","favourites_count":274,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":331,"lang":null,"status":{"created_at":"Thu - Nov 11 14:27:51 +0000 2021","id":1458803665322524672,"id_str":"1458803665322524672","text":"RT - @kerwinrae: Fixed mindset: I''ve heard this before \ud83d\udc4e\n\nGrowth - mindset: I''ve heard this 1,000 times but I''m going to learn something new - fr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kerwinrae","name":"Kerwin - Rae","id":17036693,"id_str":"17036693","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 11 04:19:28 +0000 2021","id":1458650559880175621,"id_str":"1458650559880175621","text":"Fixed - mindset: I''ve heard this before \ud83d\udc4e\n\nGrowth mindset: I''ve heard - this 1,000 times but I''m going to learn somethi\u2026 https:\/\/t.co\/kvNRFVLqai","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kvNRFVLqai","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1458650559880175621","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B267CF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000439605463\/64ffadf85b60065e48a4fde87476c952_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000439605463\/64ffadf85b60065e48a4fde87476c952_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18227254\/1366142742","profile_link_color":"141411","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2843774180,"id_str":"2843774180","name":"jt","screen_name":"jatint24","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":23,"friends_count":5001,"listed_count":2,"created_at":"Tue - Oct 07 16:21:49 +0000 2014","favourites_count":20860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2271,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/837902895462801408\/f-MpO8zc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/837902895462801408\/f-MpO8zc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843774180\/1434011693","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2902335261,"id_str":"2902335261","name":"Hana - Curak","screen_name":"HanaCurak","location":"Berlin, Sarajevo","description":"Graduate - @jfkinstitutefub.\nArt, resilience, gender, peace, daytonitis. Poetry.\nAlso - @svesutovjestice","url":"https:\/\/t.co\/ScbAzVvK4a","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ScbAzVvK4a","expanded_url":"http:\/\/www.hanacurak.com","display_url":"hanacurak.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":398,"friends_count":798,"listed_count":5,"created_at":"Tue - Dec 02 14:23:48 +0000 2014","favourites_count":1841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Mon - May 03 20:17:14 +0000 2021","id":1389313119860756487,"id_str":"1389313119860756487","text":"RT - @Sofiente: Kad smo kod politi\u010dki korektnih spomenika...\nStvarna Zagorka - vs malogra\u0111anska vizija Zagorke https:\/\/t.co\/XqDGfu7jcj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sofiente","name":"Quinn","id":767424000897277952,"id_str":"767424000897277952","indices":[3,12]}],"urls":[],"media":[{"id":1389226267761942533,"id_str":"1389226267761942533","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":436,"resize":"fit"},"medium":{"w":254,"h":436,"resize":"fit"},"small":{"w":254,"h":436,"resize":"fit"}},"source_status_id":1389226278830723073,"source_status_id_str":"1389226278830723073","source_user_id":767424000897277952,"source_user_id_str":"767424000897277952"}]},"extended_entities":{"media":[{"id":1389226267761942533,"id_str":"1389226267761942533","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":436,"resize":"fit"},"medium":{"w":254,"h":436,"resize":"fit"},"small":{"w":254,"h":436,"resize":"fit"}},"source_status_id":1389226278830723073,"source_status_id_str":"1389226278830723073","source_user_id":767424000897277952,"source_user_id_str":"767424000897277952"},{"id":1389226270647627776,"id_str":"1389226270647627776","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7saXsAAjFfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7saXsAAjFfB.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1500,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}},"source_status_id":1389226278830723073,"source_status_id_str":"1389226278830723073","source_user_id":767424000897277952,"source_user_id_str":"767424000897277952"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 03 14:32:10 +0000 2021","id":1389226278830723073,"id_str":"1389226278830723073","text":"Kad - smo kod politi\u010dki korektnih spomenika...\nStvarna Zagorka vs malogra\u0111anska - vizija Zagorke https:\/\/t.co\/XqDGfu7jcj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1389226267761942533,"id_str":"1389226267761942533","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":436,"resize":"fit"},"medium":{"w":254,"h":436,"resize":"fit"},"small":{"w":254,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1389226267761942533,"id_str":"1389226267761942533","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7hqXoAUaBD-.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":436,"resize":"fit"},"medium":{"w":254,"h":436,"resize":"fit"},"small":{"w":254,"h":436,"resize":"fit"}}},{"id":1389226270647627776,"id_str":"1389226270647627776","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/E0eF7saXsAAjFfB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0eF7saXsAAjFfB.jpg","url":"https:\/\/t.co\/XqDGfu7jcj","display_url":"pic.twitter.com\/XqDGfu7jcj","expanded_url":"https:\/\/twitter.com\/Sofiente\/status\/1389226278830723073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1500,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"},"medium":{"w":800,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":392,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":43,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286791979163099136\/Vp7EEbkf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286791979163099136\/Vp7EEbkf_normal.jpg","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":864517443355639815,"id_str":"864517443355639815","name":"Meegan - Thompson","screen_name":"MeeganThompson3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":388,"listed_count":0,"created_at":"Tue - May 16 16:26:35 +0000 2017","favourites_count":25700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":309,"lang":null,"status":{"created_at":"Sat - Mar 19 03:42:07 +0000 2022","id":1505026804968435712,"id_str":"1505026804968435712","text":"@DavidCornDC - @seanhannity All I heard was repetitive whistling\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidCornDC","name":"David - Corn","id":15220768,"id_str":"15220768","indices":[0,12]},{"screen_name":"seanhannity","name":"Sean - Hannity","id":41634520,"id_str":"41634520","indices":[13,25]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505020020463738880,"in_reply_to_status_id_str":"1505020020463738880","in_reply_to_user_id":15220768,"in_reply_to_user_id_str":"15220768","in_reply_to_screen_name":"DavidCornDC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1185949630942584833,"id_str":"1185949630942584833","name":"Nargis - Mng''onzi","screen_name":"mdoe_hashim","location":"","description":"Mkulima - wa matango Kijiji cha Kikundi","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":215,"listed_count":0,"created_at":"Sun - Oct 20 16:03:43 +0000 2019","favourites_count":3765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185950135722938368\/l_g0Hj83_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185950135722938368\/l_g0Hj83_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189111659161362433,"id_str":"1189111659161362433","name":"Don - Amor","screen_name":"NekhiliA","location":"Tunis, La Marsa","description":"Journaliste, - ex-directeur du Centre d''information des Nations Unies \u00e0 Tunis","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":496,"listed_count":0,"created_at":"Tue - Oct 29 09:28:51 +0000 2019","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":963,"lang":null,"status":{"created_at":"Thu - Jan 28 08:38:40 +0000 2021","id":1354710473187405827,"id_str":"1354710473187405827","text":"RT - @IWatchTN: \u0641\u064a \u0627\u0644\u0644\u064a\u0644\u0629 \u0627\u0644\u0638\u0644\u0645\u0627\u0621 - \u064a\u0641\u062a\u0642\u062f \u0627\u0644\u0628\u062f\u0631. \u0641\u0642\u062f\u0646\u0627 - \u0648\u0646\u0641\u062a\u0642\u062f \u0645\u0646\u0630 \u0633\u0646\u0629 - @benmhennilina. \u0633\u0646\u0629 \u063a\u0644\u0628\u062a \u0639\u0644\u064a\u0647\u0627 - \u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u0648\u0628\u0627\u0621 \u0648\u0647\u0646\u0627\u062a - \u0627\u0644\u0645\u0646\u0638\u0648\u0645\u0629 \u0627\u0644\u0635\u062d\u064a\u0629 - \u0627\u0644\u062a\u064a \u0642\u0636\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IWatchTN","name":"I - WATCH Organization","id":1048628316,"id_str":"1048628316","indices":[3,12]},{"screen_name":"benmhennilina","name":"lina - ben mhenni","id":130810427,"id_str":"130810427","indices":[66,80]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 27 20:04:25 +0000 2021","id":1354520660186456065,"id_str":"1354520660186456065","text":"\u0641\u064a - \u0627\u0644\u0644\u064a\u0644\u0629 \u0627\u0644\u0638\u0644\u0645\u0627\u0621 - \u064a\u0641\u062a\u0642\u062f \u0627\u0644\u0628\u062f\u0631. \u0641\u0642\u062f\u0646\u0627 - \u0648\u0646\u0641\u062a\u0642\u062f \u0645\u0646\u0630 \u0633\u0646\u0629 - @benmhennilina. \u0633\u0646\u0629 \u063a\u0644\u0628\u062a \u0639\u0644\u064a\u0647\u0627 - \u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u0648\u0628\u0627\u0621 \u0648\u0647\u0646\u0627\u062a - \u0627\u0644\u0645\u0646\u0638\u0648\u0645\u0629 \u0627\u0644\u0635\u062d\u2026 - https:\/\/t.co\/truGhEsv21","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"benmhennilina","name":"lina - ben mhenni","id":130810427,"id_str":"130810427","indices":[52,66]}],"urls":[{"url":"https:\/\/t.co\/truGhEsv21","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1354520660186456065","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":62,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189111944759988224\/TWUrc10R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189111944759988224\/TWUrc10R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":873177973318234112,"id_str":"873177973318234112","name":"Manjari - Gupta","screen_name":"Gupta243Manjari","location":"New Delhi, India","description":"hi, - I am a blogger and subscribe to my YouTube channel\nhttps:\/\/t.co\/QFLyqbmLzO\u2026","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/QFLyqbmLzO","expanded_url":"http:\/\/youtube.com\/channel\/UCTTZB","display_url":"youtube.com\/channel\/UCTTZB","indices":[55,78]}]}},"protected":false,"followers_count":35,"friends_count":1242,"listed_count":0,"created_at":"Fri - Jun 09 14:00:26 +0000 2017","favourites_count":2322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":404,"lang":null,"status":{"created_at":"Sun - Mar 06 10:13:31 +0000 2022","id":1500414264842010630,"id_str":"1500414264842010630","text":"Trent - Simmons is #hiring. Know anyone who might be interested? https:\/\/t.co\/WfeES6OEBF","truncated":false,"entities":{"hashtags":[{"text":"hiring","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WfeES6OEBF","expanded_url":"https:\/\/lnkd.in\/dRhpiSSQ","display_url":"lnkd.in\/dRhpiSSQ","indices":[63,86]}]},"source":"\u003ca - href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457360631451901953\/N9CUcRdf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457360631451901953\/N9CUcRdf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873177973318234112\/1636296827","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221720591650213888,"id_str":"1221720591650213888","name":"itsjustme","screen_name":"bozabozafronti1","location":"","description":"Ordinary - guy","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":2062,"listed_count":0,"created_at":"Mon - Jan 27 09:04:45 +0000 2020","favourites_count":15551,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2936,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1007138851448451072,"id_str":"1007138851448451072","name":"Mrs.Lyle","screen_name":"inaresha","location":"","description":"HENLO - :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":334,"listed_count":0,"created_at":"Thu - Jun 14 05:53:08 +0000 2018","favourites_count":7702,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":179,"lang":null,"status":{"created_at":"Tue - Feb 01 09:11:58 +0000 2022","id":1488439973607051267,"id_str":"1488439973607051267","text":"Is - it weird that I''m too excited about Rihanna having a baby? She doesn''t even - know I exist! #rihannapregnant #ASAPRocky #RihannaBaby","truncated":false,"entities":{"hashtags":[{"text":"rihannapregnant","indices":[93,109]},{"text":"ASAPRocky","indices":[110,120]},{"text":"RihannaBaby","indices":[121,133]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488439266032115715\/Lb8Gx1iU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488439266032115715\/Lb8Gx1iU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007138851448451072\/1585777837","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":351606009,"id_str":"351606009","name":"Ken - Egedi","screen_name":"EgediKen","location":"World","description":"Listen. - Learn. Live","url":"http:\/\/t.co\/dmM5dIl2","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/dmM5dIl2","expanded_url":"http:\/\/rullionassociates.blogspot.com","display_url":"rullionassociates.blogspot.com","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":460,"listed_count":3,"created_at":"Tue - Aug 09 13:56:22 +0000 2011","favourites_count":13667,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3544,"lang":null,"status":{"created_at":"Sat - Mar 26 05:14:27 +0000 2022","id":1507586758007001098,"id_str":"1507586758007001098","text":"@OvieNews - Anambra without a doubt has many more enterprise than Ebonyi but the collection - mechanism must be improve\u2026 https:\/\/t.co\/Xuhv6AyDxL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OvieNews","name":"\uf8ff\u1d0fnowvo_\u1d0f\u1d0d\u1d00s\u1d0f\u0280\u1d0f - \u1d00\u029f\u026a \u1d0f\u1d20\u026a\u1d07 \u2122\u2624\ud83c\uddf3\ud83c\uddec","id":1355004134274031618,"id_str":"1355004134274031618","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/Xuhv6AyDxL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507586758007001098","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507586662896910337,"in_reply_to_status_id_str":"1507586662896910337","in_reply_to_user_id":351606009,"in_reply_to_user_id_str":"351606009","in_reply_to_screen_name":"EgediKen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669427500867547137\/MOkbgNJS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669427500867547137\/MOkbgNJS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":428478476,"id_str":"428478476","name":"Cate","screen_name":"ladycate101","location":"England, - United Kingdom","description":"Interested in politics sports and the arts.Has - a sense of humour--definitely needed these days!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":78,"listed_count":0,"created_at":"Sun - Dec 04 20:22:17 +0000 2011","favourites_count":24033,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1682,"lang":null,"status":{"created_at":"Wed - Mar 16 15:42:57 +0000 2022","id":1504121045552410628,"id_str":"1504121045552410628","text":"@cjkgal - Me too. I took all the goes!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cjkgal","name":"Chris","id":233986540,"id_str":"233986540","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504097120449667074,"in_reply_to_status_id_str":"1504097120449667074","in_reply_to_user_id":233986540,"in_reply_to_user_id_str":"233986540","in_reply_to_screen_name":"cjkgal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/757195011301793793\/QdpkAybj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/757195011301793793\/QdpkAybj_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307480713441157121,"id_str":"1307480713441157121","name":"can''t - be pithy today \ud83c\uddfa\ud83c\udde6","screen_name":"tencentdrunk","location":"","description":"Constant - wanderer, liberal, sensitive soul. She\/her. I love classic films. \u201cCome - to my room in a half hour, and bring some rye bread!\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":321,"friends_count":860,"listed_count":0,"created_at":"Sun - Sep 20 00:44:45 +0000 2020","favourites_count":131680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2163,"lang":null,"status":{"created_at":"Sat - Mar 26 01:49:53 +0000 2022","id":1507535276326805507,"id_str":"1507535276326805507","text":"@sistercelluloid - Summertime is one of my favorites! Love that film! \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sistercelluloid","name":"Sister - Celluloid","id":1845439525,"id_str":"1845439525","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507414800070029312,"in_reply_to_status_id_str":"1507414800070029312","in_reply_to_user_id":1845439525,"in_reply_to_user_id_str":"1845439525","in_reply_to_screen_name":"sistercelluloid","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494087987281334275\/SOW8svOq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494087987281334275\/SOW8svOq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307480713441157121\/1609447205","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":760805738,"id_str":"760805738","name":"Steve","screen_name":"Steve_J_Londre","location":"La - Crosse","description":"Co-Owner \/ Creative Director at Elevate Media Group - Inc. Husband, Gamer, Trekie, Docter Whover.","url":"http:\/\/t.co\/i24cCEhodm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/i24cCEhodm","expanded_url":"http:\/\/www.elevatemginc.com","display_url":"elevatemginc.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":835,"listed_count":3,"created_at":"Thu - Aug 16 04:26:47 +0000 2012","favourites_count":162,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":475,"lang":null,"status":{"created_at":"Fri - May 14 13:29:45 +0000 2021","id":1393196839164391426,"id_str":"1393196839164391426","text":"@buitengebieden_ - Love a good ol balling ugly cry in the morning. Right in the feels!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"buitengebieden_","name":"Buitengebieden","id":1130021685351079938,"id_str":"1130021685351079938","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1392889184449449985,"in_reply_to_status_id_str":"1392889184449449985","in_reply_to_user_id":1130021685351079938,"in_reply_to_user_id_str":"1130021685351079938","in_reply_to_screen_name":"buitengebieden_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2509942243\/Steve_Profile_300_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2509942243\/Steve_Profile_300_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760805738\/1350013519","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1032445268137005056,"id_str":"1032445268137005056","name":"Dickson\u00b0\u00b0","screen_name":"just4fun0011","location":"Kampala, - Uganda","description":"New world order \u00b0\u00b0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":219,"friends_count":1359,"listed_count":0,"created_at":"Thu - Aug 23 01:51:48 +0000 2018","favourites_count":6067,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2862,"lang":null,"status":{"created_at":"Tue - Feb 02 12:08:55 +0000 2021","id":1356575321827459073,"id_str":"1356575321827459073","text":"RT - @PatriqKanyomozi: Apparently @HEBobiwine didn''t get a single vote at some - polling stations in Wakiso&Mukono. I mean,no single vote. As i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PatriqKanyomozi","name":"Kanyomozi - District","id":169041906,"id_str":"169041906","indices":[3,19]},{"screen_name":"HEBobiwine","name":"BOBI - WINE","id":1573440108,"id_str":"1573440108","indices":[32,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 01 07:24:33 +0000 2021","id":1356141373406195715,"id_str":"1356141373406195715","text":"Apparently - @HEBobiwine didn''t get a single vote at some polling stations in Wakiso&Mukono. - I mean,no single vote. A\u2026 https:\/\/t.co\/XhqX9jl5NQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HEBobiwine","name":"BOBI - WINE","id":1573440108,"id_str":"1573440108","indices":[11,22]}],"urls":[{"url":"https:\/\/t.co\/XhqX9jl5NQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1356141373406195715","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":986,"favorite_count":5080,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":986,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347849378107633664\/_h1mMyvn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347849378107633664\/_h1mMyvn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1032445268137005056\/1609805547","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28239032,"id_str":"28239032","name":"Leigh - Haubach","screen_name":"leighhaubach","location":"San Diego","description":"traveler, - photographer, teacher, hiker, pickle ball player, diver, mother, daughter, - sister","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":700,"listed_count":0,"created_at":"Thu - Apr 02 00:39:48 +0000 2009","favourites_count":2646,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"status":{"created_at":"Fri - Oct 15 16:55:52 +0000 2021","id":1449056441289953287,"id_str":"1449056441289953287","text":"@amyklobuchar - @MayoClinic I\u2019m so glad you got the care you needed. I\u2019d like to - change the narrative that patients t\u2026 https:\/\/t.co\/3ER47einWg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amyklobuchar","name":"Amy - Klobuchar","id":33537967,"id_str":"33537967","indices":[0,13]},{"screen_name":"MayoClinic","name":"Mayo - Clinic","id":14592723,"id_str":"14592723","indices":[14,25]}],"urls":[{"url":"https:\/\/t.co\/3ER47einWg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1449056441289953287","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1448793283828887557,"in_reply_to_status_id_str":"1448793283828887557","in_reply_to_user_id":33537967,"in_reply_to_user_id_str":"33537967","in_reply_to_screen_name":"amyklobuchar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085626364735021056\/AxLaepR3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085626364735021056\/AxLaepR3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28239032\/1547668579","profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":171242790,"id_str":"171242790","name":"Robert","screen_name":"RobGovus","location":"Malta","description":"An - easy going guy who lectures Philosophy at the University Junior College. I''m - big into photography and love reading as well. Spirituality interests me too.","url":"https:\/\/t.co\/npIrN8qvqG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/npIrN8qvqG","expanded_url":"http:\/\/robbie-examinedlife.blogspot.com\/","display_url":"robbie-examinedlife.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":730,"listed_count":3,"created_at":"Mon - Jul 26 22:23:15 +0000 2010","favourites_count":1472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13555,"lang":null,"status":{"created_at":"Sun - Jan 30 12:53:46 +0000 2022","id":1487771017330278401,"id_str":"1487771017330278401","text":"@karmdebattista - Hmmmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"karmdebattista","name":"Karm - Debattista","id":58863142,"id_str":"58863142","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1436666124318429184,"in_reply_to_status_id_str":"1436666124318429184","in_reply_to_user_id":58863142,"in_reply_to_user_id_str":"58863142","in_reply_to_screen_name":"karmdebattista","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469789879517257728\/h6iSCRmA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469789879517257728\/h6iSCRmA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171242790\/1639260191","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":882305549005664256,"id_str":"882305549005664256","name":"Sade","screen_name":"sadejustic","location":"","description":"Your - political affiliation doesnt matter to me. I try to be as impartial as I can. - I welcome all and follow all. I retweet, you decipher.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":521,"friends_count":3509,"listed_count":1,"created_at":"Tue - Jul 04 18:30:10 +0000 2017","favourites_count":9743,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9907,"lang":null,"status":{"created_at":"Sun - Aug 29 16:20:18 +0000 2021","id":1432015259691331595,"id_str":"1432015259691331595","text":"RT - @mSaleemJaved: Roya, filmmaker and photojournalist, is one example of the - massive brain drain out of #Afghanistan. #KabulAiport terror a\u2026","truncated":false,"entities":{"hashtags":[{"text":"Afghanistan","indices":[104,116]},{"text":"KabulAiport","indices":[118,130]}],"symbols":[],"user_mentions":[{"screen_name":"mSaleemJaved","name":"Saleem - Javed | \u0633\u0644\u06cc\u0645 \u062c\u0627\u0648\u06cc\u062f","id":50626629,"id_str":"50626629","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Aug 26 18:23:35 +0000 2021","id":1430959121537327105,"id_str":"1430959121537327105","text":"Roya, - filmmaker and photojournalist, is one example of the massive brain drain out - of #Afghanistan. #KabulAiport te\u2026 https:\/\/t.co\/xLCSv5eQxh","truncated":true,"entities":{"hashtags":[{"text":"Afghanistan","indices":[86,98]},{"text":"KabulAiport","indices":[100,112]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xLCSv5eQxh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1430959121537327105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1430883632168816642,"quoted_status_id_str":"1430883632168816642","retweet_count":239,"favorite_count":1110,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1430883632168816642,"quoted_status_id_str":"1430883632168816642","retweet_count":239,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326610030121070598\/ucqS6LqW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326610030121070598\/ucqS6LqW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882305549005664256\/1605123451","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2283067934,"id_str":"2283067934","name":"Catherine","screen_name":"ldybug_wolfe","location":"Milwaukee, - WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":930,"listed_count":0,"created_at":"Thu - Jan 09 04:55:35 +0000 2014","favourites_count":13499,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Mon - Mar 15 11:44:48 +0000 2021","id":1371427157407334402,"id_str":"1371427157407334402","text":"Yo - Yo Ma is just the best....he gave a concert at the vaccination site in MA. - WOW.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442947425192259586\/cHgnidna_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442947425192259586\/cHgnidna_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":211185425,"id_str":"211185425","name":"Dr. - Bradley Walck","screen_name":"bmwalck","location":"Shawnee, OK","description":"Lifelong - educator, coach, professor. Vice President Emeritus Seminole State College. - Co-Owner of Walck Farm","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1242,"friends_count":3005,"listed_count":1,"created_at":"Tue - Nov 02 15:24:01 +0000 2010","favourites_count":10818,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3696,"lang":null,"status":{"created_at":"Wed - Mar 23 12:50:44 +0000 2022","id":1506614424118964229,"id_str":"1506614424118964229","text":"RT - @MichaelSteele: As I watch Senators question #KBJ and opine on her fitness - to sit on the Supreme Court (often reading questions they cou\u2026","truncated":false,"entities":{"hashtags":[{"text":"KBJ","indices":[48,52]}],"symbols":[],"user_mentions":[{"screen_name":"MichaelSteele","name":"Michael - Steele","id":50317463,"id_str":"50317463","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 20:58:33 +0000 2022","id":1506374797642457090,"id_str":"1506374797642457090","text":"As - I watch Senators question #KBJ and opine on her fitness to sit on the Supreme - Court (often reading questions the\u2026 https:\/\/t.co\/z8lELpWz1r","truncated":true,"entities":{"hashtags":[{"text":"KBJ","indices":[29,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/z8lELpWz1r","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506374797642457090","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12644,"favorite_count":72840,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12644,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556101617205141504\/-5Qh4Hgd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556101617205141504\/-5Qh4Hgd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211185425\/1421419933","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1081300089547776002,"id_str":"1081300089547776002","name":"ReineTaku","screen_name":"ReineTaku","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":223,"listed_count":0,"created_at":"Fri - Jan 04 21:23:25 +0000 2019","favourites_count":981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Fri - Mar 11 20:04:03 +0000 2022","id":1502374817701548038,"id_str":"1502374817701548038","text":"@joncoopertweets - Excellent","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502108359872462882,"in_reply_to_status_id_str":"1502108359872462882","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":898930993,"id_str":"898930993","name":"Joanna","screen_name":"giovannadeliany","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":687,"listed_count":2,"created_at":"Tue - Oct 23 01:56:41 +0000 2012","favourites_count":11062,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5514,"lang":null,"status":{"created_at":"Sat - Nov 13 00:43:07 +0000 2021","id":1459320888936091660,"id_str":"1459320888936091660","text":"@sassytallblond - All three are \ud83e\udd2e\ud83e\udd2e\ud83e\udd2e\ud83e\udd2e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sassytallblond","name":"SassyTallBlonde\ud83d\udc8b","id":1320210348226564096,"id_str":"1320210348226564096","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1459110899285901329,"in_reply_to_status_id_str":"1459110899285901329","in_reply_to_user_id":1320210348226564096,"in_reply_to_user_id_str":"1320210348226564096","in_reply_to_screen_name":"sassytallblond","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463700890742837248\/rxilnRAS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463700890742837248\/rxilnRAS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/898930993\/1404214238","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240284362672930818,"id_str":"1240284362672930818","name":"Ojmezology","screen_name":"ojmezology","location":"","description":"I - am a movie director. I consider my self loving caring and understanding because - I know what true about life and what love is all about.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":259,"friends_count":2554,"listed_count":0,"created_at":"Wed - Mar 18 14:30:38 +0000 2020","favourites_count":989,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":152,"lang":null,"status":{"created_at":"Mon - Nov 30 05:46:06 +0000 2020","id":1333286158508445696,"id_str":"1333286158508445696","text":"@lady_soundtech - Your just right on point. People some people think everything are just right - by them.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lady_soundtech","name":"Tricey","id":1192222012187406336,"id_str":"1192222012187406336","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1333237643413516289,"in_reply_to_status_id_str":"1333237643413516289","in_reply_to_user_id":1192222012187406336,"in_reply_to_user_id_str":"1192222012187406336","in_reply_to_screen_name":"lady_soundtech","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324052954907901953\/kB3em6lV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324052954907901953\/kB3em6lV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1240284362672930818\/1603125236","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1408387488,"id_str":"1408387488","name":"Erica - S. \ud83c\uddf9\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8","screen_name":"__EricaSolano","location":"","description":"Associate - Video Producer @Time","url":"https:\/\/t.co\/dVXueZcSOu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dVXueZcSOu","expanded_url":"https:\/\/linktr.ee\/ericasolano","display_url":"linktr.ee\/ericasolano","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":214,"friends_count":2386,"listed_count":6,"created_at":"Mon - May 06 18:28:13 +0000 2013","favourites_count":16728,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311,"lang":null,"status":{"created_at":"Tue - Mar 15 03:05:26 +0000 2022","id":1503568023709442050,"id_str":"1503568023709442050","text":"RT - @RingerVerse: Tatooine after carrying every Star Wars story for the last 45 - years https:\/\/t.co\/XQxTcjuMZM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RingerVerse","name":"Ringer-Verse","id":1371534689874313217,"id_str":"1371534689874313217","indices":[3,15]}],"urls":[],"media":[{"id":1501655667462991872,"id_str":"1501655667462991872","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","url":"https:\/\/t.co\/XQxTcjuMZM","display_url":"pic.twitter.com\/XQxTcjuMZM","expanded_url":"https:\/\/twitter.com\/RingerVerse\/status\/1501655926008266753\/photo\/1","type":"photo","sizes":{"medium":{"w":880,"h":572,"resize":"fit"},"small":{"w":680,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":572,"resize":"fit"}},"source_status_id":1501655926008266753,"source_status_id_str":"1501655926008266753","source_user_id":1371534689874313217,"source_user_id_str":"1371534689874313217"}]},"extended_entities":{"media":[{"id":1501655667462991872,"id_str":"1501655667462991872","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","url":"https:\/\/t.co\/XQxTcjuMZM","display_url":"pic.twitter.com\/XQxTcjuMZM","expanded_url":"https:\/\/twitter.com\/RingerVerse\/status\/1501655926008266753\/photo\/1","type":"photo","sizes":{"medium":{"w":880,"h":572,"resize":"fit"},"small":{"w":680,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":572,"resize":"fit"}},"source_status_id":1501655926008266753,"source_status_id_str":"1501655926008266753","source_user_id":1371534689874313217,"source_user_id_str":"1371534689874313217"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 20:27:26 +0000 2022","id":1501655926008266753,"id_str":"1501655926008266753","text":"Tatooine - after carrying every Star Wars story for the last 45 years https:\/\/t.co\/XQxTcjuMZM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501655667462991872,"id_str":"1501655667462991872","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","url":"https:\/\/t.co\/XQxTcjuMZM","display_url":"pic.twitter.com\/XQxTcjuMZM","expanded_url":"https:\/\/twitter.com\/RingerVerse\/status\/1501655926008266753\/photo\/1","type":"photo","sizes":{"medium":{"w":880,"h":572,"resize":"fit"},"small":{"w":680,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":572,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501655667462991872,"id_str":"1501655667462991872","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNbz35oVcAA5Y0P.png","url":"https:\/\/t.co\/XQxTcjuMZM","display_url":"pic.twitter.com\/XQxTcjuMZM","expanded_url":"https:\/\/twitter.com\/RingerVerse\/status\/1501655926008266753\/photo\/1","type":"photo","sizes":{"medium":{"w":880,"h":572,"resize":"fit"},"small":{"w":680,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":572,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":573,"favorite_count":7344,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":573,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486392839885971458\/Mp4Mp6Wi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486392839885971458\/Mp4Mp6Wi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408387488\/1646458497","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17789435,"id_str":"17789435","name":"trvth","screen_name":"trvth","location":"Zembla","description":"Software - guy and martial arts instructor","url":"http:\/\/t.co\/wYqC1jaQJQ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wYqC1jaQJQ","expanded_url":"http:\/\/www.trvth.org\/","display_url":"trvth.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":179,"listed_count":1,"created_at":"Mon - Dec 01 21:11:35 +0000 2008","favourites_count":249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":751,"lang":null,"status":{"created_at":"Sat - Mar 26 03:50:15 +0000 2022","id":1507565568299352071,"id_str":"1507565568299352071","text":"TRVTH: - Mastery Through Adaptation https:\/\/t.co\/OgCfVMNww2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OgCfVMNww2","expanded_url":"https:\/\/blog.trvth.org\/2022\/03\/mastery-through-adaptation.html?spref=tw","display_url":"blog.trvth.org\/2022\/03\/master\u2026","indices":[34,57]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/66015044\/don_portrait_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/66015044\/don_portrait_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1202421521718939655,"id_str":"1202421521718939655","name":"TheArtStudio","screen_name":"TheArtStudio6","location":"Manhattan","description":"Fine - Art Painter with a Hopper touch. Swimmer. Cat Worshipper.\n\"You can''t have - everything. Where would you put it?\"\n\n#TheBlueWave #Resist","url":"https:\/\/t.co\/lWLAtM12WB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lWLAtM12WB","expanded_url":"http:\/\/www.engstromstudios.com","display_url":"engstromstudios.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1152,"friends_count":0,"listed_count":1,"created_at":"Thu - Dec 05 02:57:20 +0000 2019","favourites_count":4506,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3973,"lang":null,"status":{"created_at":"Wed - Dec 23 01:05:19 +0000 2020","id":1341550420871802882,"id_str":"1341550420871802882","text":"Blackwater - Guards should be hung. Publicly.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1341550071255588865,"in_reply_to_status_id_str":"1341550071255588865","in_reply_to_user_id":1202421521718939655,"in_reply_to_user_id_str":"1202421521718939655","in_reply_to_screen_name":"TheArtStudio6","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243045291198230529\/0DZIYE14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243045291198230529\/0DZIYE14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1202421521718939655\/1576823121","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267622590983671808,"id_str":"1267622590983671808","name":"Enrique - Ruiz","screen_name":"Enrique60802197","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":284,"listed_count":1,"created_at":"Tue - Jun 02 01:02:43 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Sun - Mar 13 18:46:42 +0000 2022","id":1503080127537819650,"id_str":"1503080127537819650","text":"RT - @RayDalio: As Carl Jung put it, \"Man needs difficulties. They are necessary - for health.\" Yet most people instinctually avoid pain. (1\/2)\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RayDalio","name":"Ray - Dalio","id":62603893,"id_str":"62603893","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 16:55:23 +0000 2022","id":1503052111852064780,"id_str":"1503052111852064780","text":"As - Carl Jung put it, \"Man needs difficulties. They are necessary for health.\" - Yet most people instinctually avoid p\u2026 https:\/\/t.co\/NJj29MHgVa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NJj29MHgVa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503052111852064780","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":405,"favorite_count":2015,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":405,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267622952171909122\/FWo1o9dl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267622952171909122\/FWo1o9dl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1078365021720072192,"id_str":"1078365021720072192","name":"M - J","screen_name":"Matthew18077818","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":177,"friends_count":3339,"listed_count":0,"created_at":"Thu - Dec 27 19:00:31 +0000 2018","favourites_count":2076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4907,"lang":null,"status":{"created_at":"Thu - Jan 13 04:03:02 +0000 2022","id":1481476857740595202,"id_str":"1481476857740595202","text":"RT - @aravosis: Is this not a serious felony?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aravosis","name":"John - Aravosis \ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\uddf7\ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":14146966,"id_str":"14146966","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 13 04:02:36 +0000 2022","id":1481476751154978817,"id_str":"1481476751154978817","text":"Is - this not a serious felony? https:\/\/t.co\/5XUwPUbFwI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5XUwPUbFwI","expanded_url":"https:\/\/twitter.com\/weareoversight\/status\/1481090180983537669","display_url":"twitter.com\/weareoversight\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1481090180983537669,"quoted_status_id_str":"1481090180983537669","retweet_count":23,"favorite_count":112,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1481090180983537669,"quoted_status_id_str":"1481090180983537669","retweet_count":23,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452447970331402247\/J8hLzsAc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452447970331402247\/J8hLzsAc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":152860734,"id_str":"152860734","name":"Kimberley - T. Elliott","screen_name":"EditorKimAZ","location":"","description":"Happily - married mom of two teens in the desert Southwest.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":482,"listed_count":0,"created_at":"Mon - Jun 07 02:19:38 +0000 2010","favourites_count":4369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":308,"lang":null,"status":{"created_at":"Fri - Mar 25 14:56:43 +0000 2022","id":1507370902681391106,"id_str":"1507370902681391106","text":"RT - @irkahajdas: INDEED!!! TURN ON AND AMPLIFY!!! what a nation! I am proud to - be born on the border of such a proud country!!! \n\u0413\u0435\u0440\u043e\u044f\u043c - \u0441\u043b\u0430\u0432\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"irkahajdas","name":"Irka - Hajdas","id":4635947242,"id_str":"4635947242","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:37:49 +0000 2022","id":1507366146739220513,"id_str":"1507366146739220513","text":"INDEED!!! - TURN ON AND AMPLIFY!!! what a nation! I am proud to be born on the border - of such a proud country!!! \n\u0413\u0435\u0440\u2026 https:\/\/t.co\/R8zrPN20Hq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/R8zrPN20Hq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507366146739220513","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507236136321699840,"quoted_status_id_str":"1507236136321699840","retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":true,"quoted_status_id":1507236136321699840,"quoted_status_id_str":"1507236136321699840","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546890177986437122\/broowMU2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546890177986437122\/broowMU2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152860734\/1400625612","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1049823942377005056,"id_str":"1049823942377005056","name":"Michele - McAuley","screen_name":"MIndustryMarke1","location":"Brooklyn, NY","description":"I - am a tenured Marketing Professional and aspiring author. I love impressionistic - art and the ocean; both flow effortlessly.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":203,"listed_count":0,"created_at":"Wed - Oct 10 00:48:27 +0000 2018","favourites_count":1671,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":744,"lang":null,"status":{"created_at":"Sun - Jan 30 01:13:00 +0000 2022","id":1487594663284510720,"id_str":"1487594663284510720","text":"RT - @UncleDrewGB: If Kyrie Irving scores 30+ points today vs Warriors, 3 people - who like this tweet will win a PS5. Must be following https:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UncleDrewGB","name":"Uncle - Drew","id":1240324158,"id_str":"1240324158","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 30 00:56:56 +0000 2022","id":1487590619144937474,"id_str":"1487590619144937474","text":"If - Kyrie Irving scores 30+ points today vs Warriors, 3 people who like this tweet - will win a PS5. Must be following https:\/\/t.co\/xR8Fc0fdR5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1487590616590655488,"id_str":"1487590616590655488","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/FKT7yMEXIAA7ePw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKT7yMEXIAA7ePw.jpg","url":"https:\/\/t.co\/xR8Fc0fdR5","display_url":"pic.twitter.com\/xR8Fc0fdR5","expanded_url":"https:\/\/twitter.com\/UncleDrewGB\/status\/1487590619144937474\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":918,"h":1148,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":918,"h":1148,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1487590616590655488,"id_str":"1487590616590655488","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/FKT7yMEXIAA7ePw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKT7yMEXIAA7ePw.jpg","url":"https:\/\/t.co\/xR8Fc0fdR5","display_url":"pic.twitter.com\/xR8Fc0fdR5","expanded_url":"https:\/\/twitter.com\/UncleDrewGB\/status\/1487590619144937474\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":918,"h":1148,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"},"medium":{"w":918,"h":1148,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":531,"favorite_count":4123,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":531,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507404166406230026\/sT_paXS-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507404166406230026\/sT_paXS-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1049823942377005056\/1558549303","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110181304,"id_str":"110181304","name":"Katy - King","screen_name":"KatyKing01","location":"Portland","description":"I know - all of my followers. My husband says I\u2019m missing the point of Twitter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":743,"listed_count":0,"created_at":"Sun - Jan 31 16:51:52 +0000 2010","favourites_count":20422,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":574,"lang":null,"status":{"created_at":"Thu - Mar 24 23:44:12 +0000 2022","id":1507141260225781763,"id_str":"1507141260225781763","text":"@MegGardiner1 - @ALA_PLA Huge crowd! Woo-hoo!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MegGardiner1","name":"Meg - Gardiner","id":168712933,"id_str":"168712933","indices":[0,13]},{"screen_name":"ALA_PLA","name":"PLA","id":20629465,"id_str":"20629465","indices":[14,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507103829736636447,"in_reply_to_status_id_str":"1507103829736636447","in_reply_to_user_id":168712933,"in_reply_to_user_id_str":"168712933","in_reply_to_screen_name":"MegGardiner1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341528450801098752\/MwgcysTI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341528450801098752\/MwgcysTI_normal.jpg","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1170601922077876225,"id_str":"1170601922077876225","name":"KDR","screen_name":"ezat10080621","location":"","description":"knowledge","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":388,"listed_count":0,"created_at":"Sun - Sep 08 07:37:21 +0000 2019","favourites_count":3471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2850,"lang":null,"status":{"created_at":"Sat - Mar 26 10:04:31 +0000 2022","id":1507659755644465155,"id_str":"1507659755644465155","text":"RT - @sirajuddinkhali: \u062f\u067e\u0648\u0647\u0646\u064a \u062f\u0648\u0632\u064a\u0631 - \u0635\u0627\u062d\u0628 \u062f\u0648\u0647 \u0644\u0648\u0631\u06ab\u0627\u0646\u064a - \u062f\u0645\u0631\u062f\u0627\u0646 \u067e\u0647 \u067e\u0648\u0647\u0646\u062a\u0648\u0646 - \u06a9\u064a \u062f\u0631\u0633 \u0648\u0627\u064a\u064a \u060c\n\u062f\u0645\u062a\u0642\u064a - \u0635\u0627\u062d\u0628 \u062f\u0648\u0647 \u0644\u0648\u0631\u06ab\u0627\u0646\u064a - \u062f\u0648\u0628\u06cc \u06a9\u064a \u062f\u0633\u0648\u064a\u0633 \u067e\u0647 - \u067e\u0648\u0647\u0646\u062a\u0648\u0646 \u06a9\u064a \u062f\u0631\u0633 - \u0648\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sirajuddinkhali","name":"Sirajuddin - Khalid","id":1324027758,"id_str":"1324027758","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:39:56 +0000 2022","id":1507442176581677065,"id_str":"1507442176581677065","text":"\u062f\u067e\u0648\u0647\u0646\u064a - \u062f\u0648\u0632\u064a\u0631 \u0635\u0627\u062d\u0628 \u062f\u0648\u0647 - \u0644\u0648\u0631\u06ab\u0627\u0646\u064a \u062f\u0645\u0631\u062f\u0627\u0646 - \u067e\u0647 \u067e\u0648\u0647\u0646\u062a\u0648\u0646 \u06a9\u064a \u062f\u0631\u0633 - \u0648\u0627\u064a\u064a \u060c\n\u062f\u0645\u062a\u0642\u064a \u0635\u0627\u062d\u0628 - \u062f\u0648\u0647 \u0644\u0648\u0631\u06ab\u0627\u0646\u064a \u062f\u0648\u0628\u06cc - \u06a9\u064a \u062f\u0633\u0648\u064a\u0633 \u067e\u0647 \u067e\u0648\u0647\u0646\u062a\u0648\u0646 - \u06a9\u064a \u062f\u0631\u2026 https:\/\/t.co\/xotWUf7aaz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xotWUf7aaz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507442176581677065","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":93,"favorited":false,"retweeted":false,"lang":"ps"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ps"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284549710821416960\/ZMdsYOJc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284549710821416960\/ZMdsYOJc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170601922077876225\/1593431113","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277070385595535363,"id_str":"1277070385595535363","name":"Rick - shell","screen_name":"Rickshell7","location":"","description":"Older black - man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":563,"listed_count":0,"created_at":"Sun - Jun 28 02:45:20 +0000 2020","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Wed - Apr 28 02:13:32 +0000 2021","id":1387228459605315585,"id_str":"1387228459605315585","text":"RT - @ProjectLincoln: We\u2019re getting there... \ud83c\udff4\u200d\u2620\ufe0f - https:\/\/t.co\/aZzWsbfj9K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[],"media":[{"id":1387156733366345734,"id_str":"1387156733366345734","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","url":"https:\/\/t.co\/aZzWsbfj9K","display_url":"pic.twitter.com\/aZzWsbfj9K","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1387156736658771969\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":872,"h":490,"resize":"fit"},"medium":{"w":872,"h":490,"resize":"fit"}},"source_status_id":1387156736658771969,"source_status_id_str":"1387156736658771969","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1387156733366345734,"id_str":"1387156733366345734","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","url":"https:\/\/t.co\/aZzWsbfj9K","display_url":"pic.twitter.com\/aZzWsbfj9K","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1387156736658771969\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":872,"h":490,"resize":"fit"},"medium":{"w":872,"h":490,"resize":"fit"}},"source_status_id":1387156736658771969,"source_status_id_str":"1387156736658771969","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 27 21:28:32 +0000 2021","id":1387156736658771969,"id_str":"1387156736658771969","text":"We\u2019re - getting there... \ud83c\udff4\u200d\u2620\ufe0f https:\/\/t.co\/aZzWsbfj9K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1387156733366345734,"id_str":"1387156733366345734","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","url":"https:\/\/t.co\/aZzWsbfj9K","display_url":"pic.twitter.com\/aZzWsbfj9K","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1387156736658771969\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":872,"h":490,"resize":"fit"},"medium":{"w":872,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1387156733366345734,"id_str":"1387156733366345734","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E0ArsxQXoAY35dW.jpg","url":"https:\/\/t.co\/aZzWsbfj9K","display_url":"pic.twitter.com\/aZzWsbfj9K","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1387156736658771969\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":872,"h":490,"resize":"fit"},"medium":{"w":872,"h":490,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1387155789920493577,"in_reply_to_status_id_str":"1387155789920493577","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1353,"favorite_count":3692,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1353,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3302837353,"id_str":"3302837353","name":"Michelle - Peterson","screen_name":"petermich66","location":"Boulder, CO","description":"mom, - wife and child abuse expert who loves her doggies, loves traveling and laying - by the beach.","url":"https:\/\/t.co\/m35d3sOj6u","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m35d3sOj6u","expanded_url":"http:\/\/www.mpetersonconsulting.com","display_url":"mpetersonconsulting.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":1586,"listed_count":0,"created_at":"Fri - Jul 31 22:13:29 +0000 2015","favourites_count":70,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sat - Sep 18 01:44:03 +0000 2021","id":1439042503248732160,"id_str":"1439042503248732160","text":"@jennycavnar - you are crushing it tonight!! Love listening to your play by play and you - giving it right back to Spilly. Lol!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jennycavnar","name":"Jenny - Cavnar","id":23685866,"id_str":"23685866","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":23685866,"in_reply_to_user_id_str":"23685866","in_reply_to_screen_name":"jennycavnar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/740921814797291520\/Ccv0ojqh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/740921814797291520\/Ccv0ojqh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302837353\/1465484502","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":571161488,"id_str":"571161488","name":"dana - wilson","screen_name":"danawilson14","location":"","description":"Iowa girl, - New Jersey transplant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":1115,"listed_count":0,"created_at":"Fri - May 04 21:21:25 +0000 2012","favourites_count":28629,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9245,"lang":null,"status":{"created_at":"Fri - Mar 18 04:00:25 +0000 2022","id":1504669022624833538,"id_str":"1504669022624833538","text":"RT - @RepSwalwell: Just voted to suspend trade with Russia. But many of Kevin McCarthy\u2019s - GOP colleagues voted to support Putin and the bombs\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepSwalwell","name":"Rep. - Eric Swalwell","id":942156122,"id_str":"942156122","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 23:35:22 +0000 2022","id":1504602322646835206,"id_str":"1504602322646835206","text":"Just - voted to suspend trade with Russia. But many of Kevin McCarthy\u2019s GOP - colleagues voted to support Putin and the\u2026 https:\/\/t.co\/IK8KvM0b0g","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IK8KvM0b0g","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504602322646835206","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16630,"favorite_count":37374,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16630,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243263687588220928\/I7pknwBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243263687588220928\/I7pknwBI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571161488\/1571274226","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65763288,"id_str":"65763288","name":"Robin - Meidas Mighty and Proud Patriot","screen_name":"robsabobs","location":"","description":"Together - we can make it better! Change is up to us!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":221,"friends_count":426,"listed_count":1,"created_at":"Fri - Aug 14 23:14:13 +0000 2009","favourites_count":41199,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7091,"lang":null,"status":{"created_at":"Fri - Mar 25 05:10:27 +0000 2022","id":1507223362032087073,"id_str":"1507223362032087073","text":"RT - @tabfreeweir: @NotHoodlum @HunterJCullen Clarence Thomas entered the Supreme - Court under scandal and will leave the Court under scandal.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tabfreeweir","name":"tabfree","id":3648297462,"id_str":"3648297462","indices":[3,15]},{"screen_name":"NotHoodlum","name":"Hoodlum - \ud83c\uddfa\ud83c\uddf8","id":1106771843929788419,"id_str":"1106771843929788419","indices":[17,28]},{"screen_name":"HunterJCullen","name":"Hunte\u2608 - Cullen \ud83d\udc89\ud83d\udc89\ud83d\udc89\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":3644915056,"id_str":"3644915056","indices":[29,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:05:10 +0000 2022","id":1507161634648862720,"id_str":"1507161634648862720","text":"@NotHoodlum - @HunterJCullen Clarence Thomas entered the Supreme Court under scandal and - will leave the Court under scandal.....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NotHoodlum","name":"Hoodlum - \ud83c\uddfa\ud83c\uddf8","id":1106771843929788419,"id_str":"1106771843929788419","indices":[0,11]},{"screen_name":"HunterJCullen","name":"Hunte\u2608 - Cullen \ud83d\udc89\ud83d\udc89\ud83d\udc89\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":3644915056,"id_str":"3644915056","indices":[12,26]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507136148673548288,"in_reply_to_status_id_str":"1507136148673548288","in_reply_to_user_id":1106771843929788419,"in_reply_to_user_id_str":"1106771843929788419","in_reply_to_screen_name":"NotHoodlum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":303,"favorite_count":3862,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":303,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313256665362427909\/BxxuiU31_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313256665362427909\/BxxuiU31_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3157576706,"id_str":"3157576706","name":"David - I STAND WITH UKRAINE Cummings","screen_name":"dcummingskg7dro","location":"Idaho, - DN43dw ","description":"Socialist Amateur Radio Operator, Old Hippie, Ice - Fisherman, Citizen Scientist, Union Man, Master Mason, Father, Grandfather, - American... Resist or Die! #FBR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4386,"friends_count":4633,"listed_count":4,"created_at":"Wed - Apr 15 14:00:54 +0000 2015","favourites_count":36318,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5851,"lang":null,"status":{"created_at":"Sat - Mar 26 03:33:38 +0000 2022","id":1507561385223352320,"id_str":"1507561385223352320","text":"RT - @Angry_Staffer: @RestlessNotions I don\u2019t know that there\u2019s any \u201ckeeping - SCOTUS in line\u201d anymore. \n\nWe need to expand our majority in Nov\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angry_Staffer","name":"Angry - Staffer \ud83c\udf3b","id":848148994102611969,"id_str":"848148994102611969","indices":[3,17]},{"screen_name":"RestlessNotions","name":"Restless - Musings","id":1274198987453665288,"id_str":"1274198987453665288","indices":[19,35]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:50:08 +0000 2022","id":1507535341867175936,"id_str":"1507535341867175936","text":"@RestlessNotions - I don\u2019t know that there\u2019s any \u201ckeeping SCOTUS in line\u201d - anymore. \n\nWe need to expand our majority i\u2026 https:\/\/t.co\/JoVGIwuM7u","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RestlessNotions","name":"Restless - Musings","id":1274198987453665288,"id_str":"1274198987453665288","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/JoVGIwuM7u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507535341867175936","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507532713879822336,"in_reply_to_status_id_str":"1507532713879822336","in_reply_to_user_id":1274198987453665288,"in_reply_to_user_id_str":"1274198987453665288","in_reply_to_screen_name":"RestlessNotions","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":412,"favorite_count":4402,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":412,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498028739413700609\/7EBmfuA0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498028739413700609\/7EBmfuA0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3157576706\/1641232340","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":84089575,"id_str":"84089575","name":"Lead - Matters","screen_name":"NicoleGSATX","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":39,"friends_count":319,"listed_count":3,"created_at":"Wed - Oct 21 14:19:09 +0000 2009","favourites_count":1320,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":241,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349581020018974720\/AJh-lbIQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349581020018974720\/AJh-lbIQ_normal.jpg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":886014538470043653,"id_str":"886014538470043653","name":"Sophie28","screen_name":"Sophie281032116","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":432,"listed_count":2,"created_at":"Sat - Jul 15 00:08:22 +0000 2017","favourites_count":220831,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":224273,"lang":null,"status":{"created_at":"Wed - Feb 02 06:29:19 +0000 2022","id":1488761431034060802,"id_str":"1488761431034060802","text":"RT - @RBReich: When Manchin and Sinema call for bipartisanship, what they\u2019re - really saying is \u201cI like having the power to coral corporate don\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 15 13:17:44 +0000 2022","id":1482341230822535170,"id_str":"1482341230822535170","text":"When - Manchin and Sinema call for bipartisanship, what they\u2019re really saying - is \u201cI like having the power to coral co\u2026 https:\/\/t.co\/2SG5CrR6Ml","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2SG5CrR6Ml","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1482341230822535170","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4306,"favorite_count":18934,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4306,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27786607,"id_str":"27786607","name":"Kathleen - McAleer","screen_name":"kathleenmca","location":"Massachusetts, USA","description":"Partner. - Mom. Persisting and Resisting. \"Social Workers Stand Up!\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":1656,"listed_count":0,"created_at":"Tue - Mar 31 01:59:33 +0000 2009","favourites_count":964,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Wed - Jun 17 05:15:03 +0000 2020","id":1273121958796853249,"id_str":"1273121958796853249","text":"@IvankaTrump - Stop. Just stop.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IvankaTrump","name":"Ivanka - Trump","id":52544275,"id_str":"52544275","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1273060877453996033,"in_reply_to_status_id_str":"1273060877453996033","in_reply_to_user_id":52544275,"in_reply_to_user_id_str":"52544275","in_reply_to_screen_name":"IvankaTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826608994018017281\/bjmHUB6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826608994018017281\/bjmHUB6u_normal.jpg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":227722375,"id_str":"227722375","name":"Larry - MacDougall \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"larrymacdougall","location":"Canada","description":"Fantasy - - Illustrator - Watercolour - Writing and drawing the world of Gwelf. \ud83c\udde8\ud83c\udde6","url":"https:\/\/t.co\/fJUSRf9maK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fJUSRf9maK","expanded_url":"https:\/\/larrymacdougallart.bigcartel.com\/","display_url":"larrymacdougallart.bigcartel.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24150,"friends_count":350,"listed_count":336,"created_at":"Fri - Dec 17 16:36:16 +0000 2010","favourites_count":14562,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3656,"lang":null,"status":{"created_at":"Fri - Mar 25 12:38:18 +0000 2022","id":1507336067204239378,"id_str":"1507336067204239378","text":"One - from a few years back. Was actually able to sneak this one into Spectrum at - the time. Thanks again for the supp\u2026 https:\/\/t.co\/MFlwftp6X1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MFlwftp6X1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507336067204239378","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":442,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1034594165634420736\/bRsm8Cp8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1034594165634420736\/bRsm8Cp8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227722375\/1588948513","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25547539,"id_str":"25547539","name":"Kara - Brown","screen_name":"KaraKaramanos","location":"Los Angeles \/ Long Beach, - SFV","description":"Specializing in Technology and implementing useful solutions - for law firms and corporations to optimize their bottom line profits.","url":"https:\/\/t.co\/Az1iVNN6YH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Az1iVNN6YH","expanded_url":"http:\/\/www.office1.com","display_url":"office1.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":301,"friends_count":2511,"listed_count":15,"created_at":"Fri - Mar 20 18:15:45 +0000 2009","favourites_count":3506,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":699,"lang":null,"status":{"created_at":"Sun - Mar 06 21:23:31 +0000 2022","id":1500582873786576899,"id_str":"1500582873786576899","text":"15-Year-Old - Shot and Wounded in Long Beach #NewsBreak https:\/\/t.co\/KcW6BC5UJV","truncated":false,"entities":{"hashtags":[{"text":"NewsBreak","indices":[43,53]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KcW6BC5UJV","expanded_url":"https:\/\/www.newsbreakapp.com\/n\/0eXQIqwY?pd=0C8pSi97&lang=en_US&s=i2","display_url":"newsbreakapp.com\/n\/0eXQIqwY?pd=\u2026","indices":[54,77]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160034490527309824\/GXmt8fBS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160034490527309824\/GXmt8fBS_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14114056,"id_str":"14114056","name":"\u20b2\u00d8\u20b1\u20b3\u2c60 - \u20ad\u20b3\u20a5\u20b3\u20ae","screen_name":"gopalkamat","location":"Michigan","description":"husband - & father -- music, movies, tv shows & cooking are my nirvana. my tweets represent - my own thoughts. he\/him\/his","url":"https:\/\/t.co\/yeh4u4smEw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yeh4u4smEw","expanded_url":"http:\/\/about.me\/gopalkamat","display_url":"about.me\/gopalkamat","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":394,"friends_count":1530,"listed_count":21,"created_at":"Mon - Mar 10 14:29:09 +0000 2008","favourites_count":3572,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8807,"lang":null,"status":{"created_at":"Thu - Mar 10 12:11:19 +0000 2022","id":1501893461221466114,"id_str":"1501893461221466114","text":"@pahlkadot - BitWarden","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pahlkadot","name":"Jennifer - Pahlka","id":74543,"id_str":"74543","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500544702617059328,"in_reply_to_status_id_str":"1500544702617059328","in_reply_to_user_id":74543,"in_reply_to_user_id_str":"74543","in_reply_to_screen_name":"pahlkadot","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361043563266641923\/4qDWo_r6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361043563266641923\/4qDWo_r6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14114056\/1613333048","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2817392829,"id_str":"2817392829","name":"Sheik - Deen","screen_name":"Saliedn","location":"Nashua, NH","description":"Salone - Borbor, Pan-African, IBmer, Everything Financial Markets, Crypto Enthusiast\u2026 - Views expressed here are entirely mine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":750,"listed_count":0,"created_at":"Wed - Oct 08 23:14:06 +0000 2014","favourites_count":1573,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":583,"lang":null,"status":{"created_at":"Tue - Mar 22 03:18:59 +0000 2022","id":1506108150029725699,"id_str":"1506108150029725699","text":"@zerohedge - Is domestic politics this pungent?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zerohedge","name":"zerohedge","id":18856867,"id_str":"18856867","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505999134569938952,"in_reply_to_status_id_str":"1505999134569938952","in_reply_to_user_id":18856867,"in_reply_to_user_id_str":"18856867","in_reply_to_screen_name":"zerohedge","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203441723206184960\/zAltcGZg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203441723206184960\/zAltcGZg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2833298486,"id_str":"2833298486","name":"ale~gre - \ud83c\udf1e","screen_name":"andthatsale","location":"IE","description":"get - some bomb lashes @lashes.glowup","url":"https:\/\/t.co\/lsZk8Npk3j","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lsZk8Npk3j","expanded_url":"https:\/\/instagram.com\/lashes.glowup?igshid=1bmf30vlqbhdv","display_url":"instagram.com\/lashes.glowup?\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":194,"friends_count":232,"listed_count":2,"created_at":"Fri - Sep 26 22:26:08 +0000 2014","favourites_count":9842,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4364,"lang":null,"status":{"created_at":"Sun - Mar 20 02:51:30 +0000 2022","id":1505376458834800648,"id_str":"1505376458834800648","text":"The - Starbucks inside Barnes and Nobles at citrus plaza sells Mac and cheese and - chicken nuggets \ud83d\ude26","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455764880116510725\/aZAJ0xfy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455764880116510725\/aZAJ0xfy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833298486\/1632972261","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2213001253,"id_str":"2213001253","name":"Steven - Dow","screen_name":"dow_steven","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":1427,"listed_count":1,"created_at":"Sun - Nov 24 19:52:02 +0000 2013","favourites_count":28,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158334076496961536,"id_str":"1158334076496961536","name":"shikhar - shukla","screen_name":"ShikhrShukla","location":"Uttar Pradesh, India","description":"WE - THE PEOPLE OF INDIA HAVING SOLEMNLY RESOLVED TO CONSTITUTE INDIA TO A SOVEREIGN,SOCIALIST,SECULAR, - DEMOCRATIC ,REPUBLIC.\nMore involved ,less attached.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":912,"listed_count":0,"created_at":"Mon - Aug 05 11:08:59 +0000 2019","favourites_count":6325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1672,"lang":null,"status":{"created_at":"Sat - Mar 12 05:07:25 +0000 2022","id":1502511559200763904,"id_str":"1502511559200763904","text":"RT - @arpit_verma13: \u0932\u0915\u094d\u0937\u094d\u092f \u092f\u0926\u093f \u0938\u0930\u094d\u0935\u094b\u092a\u0930\u093f - \u0939\u0948 \u0924\u094b \u092b\u093f\u0930 \u0906\u0932\u094b\u091a\u0928\u093e, - \u0935\u093f\u0935\u0947\u091a\u0928\u093e \u0914\u0930 \u092a\u094d\u0930\u0936\u0902\u0938\u093e - \u0915\u094b\u0908 \u092e\u093e\u092f\u0928\u0947 \u0928\u0939\u0940\u0902 - \u0930\u0916\u0924\u0940 \u0939\u0948...!!\n#\u0938\u0941\u092a\u094d\u0930\u092d\u093e\u0924 - \ud83d\ude4f\ud83c\udffb","truncated":false,"entities":{"hashtags":[{"text":"\u0938\u0941\u092a\u094d\u0930\u092d\u093e\u0924","indices":[104,113]}],"symbols":[],"user_mentions":[{"screen_name":"arpit_verma13","name":"Arpit - Verma IAS","id":1925390508,"id_str":"1925390508","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 12 02:36:04 +0000 2022","id":1502473471913500673,"id_str":"1502473471913500673","text":"\u0932\u0915\u094d\u0937\u094d\u092f - \u092f\u0926\u093f \u0938\u0930\u094d\u0935\u094b\u092a\u0930\u093f \u0939\u0948 - \u0924\u094b \u092b\u093f\u0930 \u0906\u0932\u094b\u091a\u0928\u093e, \u0935\u093f\u0935\u0947\u091a\u0928\u093e - \u0914\u0930 \u092a\u094d\u0930\u0936\u0902\u0938\u093e \u0915\u094b\u0908 - \u092e\u093e\u092f\u0928\u0947 \u0928\u0939\u0940\u0902 \u0930\u0916\u0924\u0940 - \u0939\u0948...!!\n#\u0938\u0941\u092a\u094d\u0930\u092d\u093e\u0924 \ud83d\ude4f\ud83c\udffb","truncated":false,"entities":{"hashtags":[{"text":"\u0938\u0941\u092a\u094d\u0930\u092d\u093e\u0924","indices":[85,94]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":513,"favorite_count":3695,"favorited":false,"retweeted":false,"lang":"hi"},"is_quote_status":false,"retweet_count":513,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494227951386169353\/IRU7MLa2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494227951386169353\/IRU7MLa2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":567874121,"id_str":"567874121","name":"Pap - Finn","screen_name":"huckspapa","location":"","description":"Shabby Malcontent, - Sentimental Slob, and Leader (possibly) of the Civilizing Forces","url":"http:\/\/t.co\/LJpRdz0KNh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/LJpRdz0KNh","expanded_url":"http:\/\/tactilepeggy.wordpress.com\/","display_url":"tactilepeggy.wordpress.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":602,"listed_count":0,"created_at":"Tue - May 01 05:09:09 +0000 2012","favourites_count":6875,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5873,"lang":null,"status":{"created_at":"Sat - Mar 26 02:57:35 +0000 2022","id":1507552316244779008,"id_str":"1507552316244779008","text":"RT - @JesseLaGreca: Clarence Thomas should resign \n\nThe fact that every Dem Senator - was not screaming that today like it was Hillary''s emails\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JesseLaGreca","name":"BoostedSteel&FireLiberal","id":91729248,"id_str":"91729248","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:38:50 +0000 2022","id":1507532497919299585,"id_str":"1507532497919299585","text":"Clarence - Thomas should resign \n\nThe fact that every Dem Senator was not screaming - that today like it was Hillary''s\u2026 https:\/\/t.co\/RlQhw3gOWH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RlQhw3gOWH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507532497919299585","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":30,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2212675852\/pap4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2212675852\/pap4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3110606363,"id_str":"3110606363","name":"Adrienne - Markworth","screen_name":"adrienneincali","location":"San Diego, CA","description":"Recovering - East Coaster","url":"https:\/\/t.co\/d8U9OJJvYm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d8U9OJJvYm","expanded_url":"http:\/\/www.leahspantrysf.org","display_url":"leahspantrysf.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":487,"listed_count":0,"created_at":"Tue - Mar 24 15:32:02 +0000 2015","favourites_count":1172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Thu - Mar 17 19:46:12 +0000 2022","id":1504544649037299723,"id_str":"1504544649037299723","text":"@leahspantry - has been talking about trauma-informed nutrition security since 2018 - we - are so happy to hear this la\u2026 https:\/\/t.co\/zwlcM7q4Op","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"leahspantry","name":"leahspantry","id":17223682,"id_str":"17223682","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/zwlcM7q4Op","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504544649037299723","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":17223682,"in_reply_to_user_id_str":"17223682","in_reply_to_screen_name":"leahspantry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/963651706948145152\/g036sk6K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/963651706948145152\/g036sk6K_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172036512986349568,"id_str":"1172036512986349568","name":"Said - Wais Rhamani","screen_name":"wais_said","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":202,"listed_count":0,"created_at":"Thu - Sep 12 06:37:57 +0000 2019","favourites_count":832,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Sun - Oct 04 06:58:35 +0000 2020","id":1312648291801272320,"id_str":"1312648291801272320","text":"\u062f\u0645\u0639\u0644\u0645 - \u062f\u0648\u0631\u062d\u06cc \u067e\u0647 \u0645\u0646\u0627\u0633\u0628\u062a - \u062a\u0648\u0644\u0648 \u0627\u0633\u062a\u0627\u062f\u0627\u0646\u0648 - \u062a\u0647 \u0645\u0628\u0627\u0631\u06a9\u06cc \u0648\u0627\u06cc\u0645 - \u0645\u0639\u0644\u0645 \u0644\u0648\u0631 \u0645\u0642\u0627\u0645 \u0644\u0631\u06cc - \u0648\u0644\u06cc \u0632\u0645\u0648\u06cc\u0698\u0647 \u0647\u06cc\u0648\u0627\u062f - \u06a9\u0647 \u063a\u0631\u06cc\u0628\u0647 \u0637\u0628\u0642\u0647 \u0645\u0639\u0644\u0645 - \u062f\u06cc \u0628\u0627\u06cc\u062f \u0627\u0631\u2026 https:\/\/t.co\/pkWPHTshBN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pkWPHTshBN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1312648291801272320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ps"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172038369175592960\/9h6Q89k2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172038369175592960\/9h6Q89k2_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947808533231296512,"id_str":"947808533231296512","name":"Zerofox1984","screen_name":"Zerofox1984","location":"Melbourne, - Australia ","description":"Old school lefty from before they all went crazy. Probably - sitting nicely in the centre now. Hate virtue signalling & identity politics - with a passion.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":406,"friends_count":1117,"listed_count":0,"created_at":"Mon - Jan 01 12:35:38 +0000 2018","favourites_count":73525,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/977532506089046016\/QqxjJoEc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/977532506089046016\/QqxjJoEc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1170485927183040513,"id_str":"1170485927183040513","name":"Joanna","screen_name":"JoannaSetowMA","location":"District - of Columbia, USA","description":"American University \u201823 | Boston \ud83d\udeeb - DC | she\/her | pop culture + politics","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":337,"friends_count":594,"listed_count":2,"created_at":"Sat - Sep 07 23:56:17 +0000 2019","favourites_count":39582,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507394948794097664\/GO1u9iYm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507394948794097664\/GO1u9iYm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170485927183040513\/1619363456","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":351283964,"id_str":"351283964","name":"Leslie - Tillman \ud83c\udff4\u200d\u2620\ufe0f","screen_name":"TillmanLeslie","location":"Strafford, - MO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":39,"listed_count":0,"created_at":"Tue - Aug 09 01:28:10 +0000 2011","favourites_count":376,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Fri - Jan 07 17:04:40 +0000 2022","id":1479499235699609601,"id_str":"1479499235699609601","text":"RT - @joncoopertweets: THIS IS BRILLIANT! Please retweet so it will go viral!!! - \ud83d\ude01\nhttps:\/\/t.co\/L91l7JEkOq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[],"media":[{"id":1479370894552313859,"id_str":"1479370894552313859","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","url":"https:\/\/t.co\/L91l7JEkOq","display_url":"pic.twitter.com\/L91l7JEkOq","expanded_url":"https:\/\/twitter.com\/TheGREATHoudin2\/status\/1479371041751318536\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":780,"h":360,"resize":"fit"},"medium":{"w":780,"h":360,"resize":"fit"}},"source_status_id":1479371041751318536,"source_status_id_str":"1479371041751318536","source_user_id":1120211230659051520,"source_user_id_str":"1120211230659051520"}]},"extended_entities":{"media":[{"id":1479370894552313859,"id_str":"1479370894552313859","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","url":"https:\/\/t.co\/L91l7JEkOq","display_url":"pic.twitter.com\/L91l7JEkOq","expanded_url":"https:\/\/twitter.com\/TheGREATHoudin2\/status\/1479371041751318536\/video\/1","type":"video","sizes":{"small":{"w":680,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":780,"h":360,"resize":"fit"},"medium":{"w":780,"h":360,"resize":"fit"}},"source_status_id":1479371041751318536,"source_status_id_str":"1479371041751318536","source_user_id":1120211230659051520,"source_user_id_str":"1120211230659051520","video_info":{"aspect_ratio":[13,6],"duration_millis":120550,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/pl\/WQUhOyScrRxe-bZ-.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/vid\/584x270\/h07eoWu3qs4SW9BY.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/vid\/780x360\/ymiIPlbv3jJ-5QRm.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 07 13:07:48 +0000 2022","id":1479439627979268099,"id_str":"1479439627979268099","text":"THIS - IS BRILLIANT! Please retweet so it will go viral!!! \ud83d\ude01\nhttps:\/\/t.co\/L91l7JEkOq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1479370894552313859,"id_str":"1479370894552313859","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","url":"https:\/\/t.co\/L91l7JEkOq","display_url":"pic.twitter.com\/L91l7JEkOq","expanded_url":"https:\/\/twitter.com\/TheGREATHoudin2\/status\/1479371041751318536\/video\/1","type":"photo","sizes":{"small":{"w":680,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":780,"h":360,"resize":"fit"},"medium":{"w":780,"h":360,"resize":"fit"}},"source_status_id":1479371041751318536,"source_status_id_str":"1479371041751318536","source_user_id":1120211230659051520,"source_user_id_str":"1120211230659051520"}]},"extended_entities":{"media":[{"id":1479370894552313859,"id_str":"1479370894552313859","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1479370894552313859\/pu\/img\/w0KQKVYUqRTD4mz8.jpg","url":"https:\/\/t.co\/L91l7JEkOq","display_url":"pic.twitter.com\/L91l7JEkOq","expanded_url":"https:\/\/twitter.com\/TheGREATHoudin2\/status\/1479371041751318536\/video\/1","type":"video","sizes":{"small":{"w":680,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":780,"h":360,"resize":"fit"},"medium":{"w":780,"h":360,"resize":"fit"}},"source_status_id":1479371041751318536,"source_status_id_str":"1479371041751318536","source_user_id":1120211230659051520,"source_user_id_str":"1120211230659051520","video_info":{"aspect_ratio":[13,6],"duration_millis":120550,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/pl\/WQUhOyScrRxe-bZ-.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/vid\/584x270\/h07eoWu3qs4SW9BY.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1479370894552313859\/pu\/vid\/780x360\/ymiIPlbv3jJ-5QRm.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13028,"favorite_count":19765,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13028,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351283964\/1595113009","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15662410,"id_str":"15662410","name":"Liz - Kramer, PhD","screen_name":"aquashed","location":"Georgia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":1455,"listed_count":1,"created_at":"Wed - Jul 30 16:38:28 +0000 2008","favourites_count":59,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":143462972,"id_str":"143462972","name":"fk","screen_name":"fkcool76","location":"Dubai, - United Arab Emirates","description":"Female","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":914,"listed_count":0,"created_at":"Thu - May 13 14:45:38 +0000 2010","favourites_count":2472,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395467067994906624\/sUjE07uK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395467067994906624\/sUjE07uK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3689076372,"id_str":"3689076372","name":"Berbs","screen_name":"berbsd","location":"San - Francisco, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":108,"listed_count":0,"created_at":"Sat - Sep 26 05:10:25 +0000 2015","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Mon - Nov 29 16:52:03 +0000 2021","id":1465362935841099776,"id_str":"1465362935841099776","text":"RT - @luckymarmot: Paw \u00b7 The most advanced REST & GraphQL API client for - Mac https:\/\/t.co\/9urIFDWKje \u00b7 Our crazy\ud83e\udd2f 2021 Black Friday - offer: Re\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"luckymarmot","name":"Paw","id":960567571,"id_str":"960567571","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/9urIFDWKje","expanded_url":"http:\/\/paw.cloud","display_url":"paw.cloud","indices":[79,102]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 26 15:34:46 +0000 2021","id":1464256324435329032,"id_str":"1464256324435329032","text":"Paw - \u00b7 The most advanced REST & GraphQL API client for Mac https:\/\/t.co\/9urIFDWKje - \u00b7 Our crazy\ud83e\udd2f 2021 Black Friday of\u2026 https:\/\/t.co\/mL3cjnsK0D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9urIFDWKje","expanded_url":"http:\/\/paw.cloud","display_url":"paw.cloud","indices":[62,85]},{"url":"https:\/\/t.co\/mL3cjnsK0D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1464256324435329032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3480,"favorite_count":803,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3480,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323477421572550657\/G4DzGd7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323477421572550657\/G4DzGd7t_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3242445839,"id_str":"3242445839","name":"The - king","screen_name":"bowenkaron","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":202,"friends_count":2013,"listed_count":1,"created_at":"Fri - May 08 21:07:54 +0000 2015","favourites_count":994,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Sat - Oct 23 03:42:40 +0000 2021","id":1451755927254839297,"id_str":"1451755927254839297","text":"RT - @WorldAthletics: #WorldAthleticsAwards announcement!\n\nFaith Kipyegon is - nominated for Female World Athlete of the Year 2021.\n\nRetweet to\u2026","truncated":false,"entities":{"hashtags":[{"text":"WorldAthleticsAwards","indices":[20,41]}],"symbols":[],"user_mentions":[{"screen_name":"WorldAthletics","name":"World - Athletics","id":37921383,"id_str":"37921383","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Oct 22 14:00:01 +0000 2021","id":1451548902692319248,"id_str":"1451548902692319248","text":"#WorldAthleticsAwards - announcement!\n\nFaith Kipyegon is nominated for Female World Athlete of the - Year 2021.\n\nRetwee\u2026 https:\/\/t.co\/gDVKWiicuQ","truncated":true,"entities":{"hashtags":[{"text":"WorldAthleticsAwards","indices":[0,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gDVKWiicuQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1451548902692319248","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7636,"favorite_count":4222,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258679701519941633\/5UdaMFsU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258679701519941633\/5UdaMFsU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242445839\/1455074597","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4861331448,"id_str":"4861331448","name":"Leelee - Broadwaybetch","screen_name":"LBroadwaybetch","location":"NY ","description":"Theater, - Disney, dog lover, TVEIT tot pop culture.NSYNC, Trivia whiz","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":310,"friends_count":1312,"listed_count":6,"created_at":"Thu - Feb 04 23:46:02 +0000 2016","favourites_count":66020,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14918,"lang":null,"status":{"created_at":"Fri - Mar 25 19:47:19 +0000 2022","id":1507444036671528964,"id_str":"1507444036671528964","text":"@AquariusAnthem - 22","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AquariusAnthem","name":"Aquarius - Anthem","id":1373610834572816384,"id_str":"1373610834572816384","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507414229644574726,"in_reply_to_status_id_str":"1507414229644574726","in_reply_to_user_id":1373610834572816384,"in_reply_to_user_id_str":"1373610834572816384","in_reply_to_screen_name":"AquariusAnthem","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/781300783560130563\/gr7EmZk__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/781300783560130563\/gr7EmZk__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4861331448\/1475500039","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15845891,"id_str":"15845891","name":"Brandie - Wiley","screen_name":"brandie_wiley","location":"Texas","description":"Mother - (to three amazing adopted autistic kiddos), Author, Advocate, Road Trip Planner - Extraordinaire. https:\/\/t.co\/2fKGBoPvWl","url":"https:\/\/t.co\/2fKGBoPvWl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2fKGBoPvWl","expanded_url":"http:\/\/www.facebook.com\/HomeIsWhereTheAutismIs","display_url":"facebook.com\/HomeIsWhereThe\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2fKGBoPvWl","expanded_url":"http:\/\/www.facebook.com\/HomeIsWhereTheAutismIs","display_url":"facebook.com\/HomeIsWhereThe\u2026","indices":[103,126]}]}},"protected":false,"followers_count":268,"friends_count":1260,"listed_count":6,"created_at":"Thu - Aug 14 02:54:53 +0000 2008","favourites_count":3776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3341,"lang":null,"status":{"created_at":"Sun - Jul 25 17:56:11 +0000 2021","id":1419355814674972678,"id_str":"1419355814674972678","text":"Hey! - A Christmas Story is doing something amazing, crazy, and fun this year! I - just signed up for it - it''s FREE! Y\u2026 https:\/\/t.co\/577x5rtozh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/577x5rtozh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1419355814674972678","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447675411006115843\/UPMzxe7d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447675411006115843\/UPMzxe7d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15845891\/1525013630","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1172480728078127104,"id_str":"1172480728078127104","name":"Davidkagunyi","screen_name":"Davidkagunyi8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":164,"listed_count":0,"created_at":"Fri - Sep 13 12:03:08 +0000 2019","favourites_count":1717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":787,"lang":null,"status":{"created_at":"Fri - Mar 25 03:29:04 +0000 2022","id":1507197849058127875,"id_str":"1507197849058127875","text":"@HonMoses_Kuria - you are a disgrace. It maybe politics, but no self respecting woman can be - your running mate.\nYou\u2026 https:\/\/t.co\/VMmEORUWln","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HonMoses_Kuria","name":"Reject - the Dynastic 3rd Term! Take up arms !","id":3924829823,"id_str":"3924829823","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/VMmEORUWln","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507197849058127875","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3924829823,"in_reply_to_user_id_str":"3924829823","in_reply_to_screen_name":"HonMoses_Kuria","geo":null,"coordinates":null,"place":{"id":"00fa17aa00b810c9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00fa17aa00b810c9.json","place_type":"admin","name":"Central","full_name":"Central, - Kenya","country_code":"KE","country":"Kenya","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[36.2020726,-1.3027912],[38.2704494,-1.3027912],[38.2704494,1.456831],[36.2020726,1.456831]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338583198268338177\/ihG-F2C2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338583198268338177\/ihG-F2C2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1209159734101721092,"id_str":"1209159734101721092","name":"thompson - imoudu","screen_name":"ThompsonImoudu","location":"","description":"My grey - hair","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":203,"listed_count":0,"created_at":"Mon - Dec 23 17:12:42 +0000 2019","favourites_count":97,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - Jan 23 06:24:26 +0000 2021","id":1352864752716967936,"id_str":"1352864752716967936","text":"https:\/\/t.co\/AwImmG94rM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1352864738338811904,"id_str":"1352864738338811904","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EsZXT83WMAAvMLu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsZXT83WMAAvMLu.jpg","url":"https:\/\/t.co\/AwImmG94rM","display_url":"pic.twitter.com\/AwImmG94rM","expanded_url":"https:\/\/twitter.com\/ThompsonImoudu\/status\/1352864752716967936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1352864738338811904,"id_str":"1352864738338811904","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EsZXT83WMAAvMLu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EsZXT83WMAAvMLu.jpg","url":"https:\/\/t.co\/AwImmG94rM","display_url":"pic.twitter.com\/AwImmG94rM","expanded_url":"https:\/\/twitter.com\/ThompsonImoudu\/status\/1352864752716967936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379101012393398272\/LaXrEV7-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379101012393398272\/LaXrEV7-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1209159734101721092\/1607890350","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312255146160726017,"id_str":"1312255146160726017","name":"Dixie - Robertson","screen_name":"DixieRo03328248","location":"","description":"good - Christian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":100,"listed_count":0,"created_at":"Sat - Oct 03 04:56:47 +0000 2020","favourites_count":295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Sun - Nov 15 00:27:08 +0000 2020","id":1327770071649935360,"id_str":"1327770071649935360","text":"@DanScavino - It was good to see him smile","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanScavino","name":"Dan - Scavino Jr.\ud83c\uddfa\ud83c\uddf8\ud83e\udd85","id":620571475,"id_str":"620571475","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1327675108895363072,"in_reply_to_status_id_str":"1327675108895363072","in_reply_to_user_id":620571475,"in_reply_to_user_id_str":"620571475","in_reply_to_screen_name":"DanScavino","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24181161,"id_str":"24181161","name":"Tony - Muslin","screen_name":"tonymus58","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":1338,"listed_count":0,"created_at":"Fri - Mar 13 14:41:40 +0000 2009","favourites_count":9904,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":378,"lang":null,"status":{"created_at":"Thu - Mar 24 14:47:55 +0000 2022","id":1507006298667335680,"id_str":"1507006298667335680","text":"@JoJoFromJerz - @TrendingLiberal Dr. J.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoJoFromJerz","name":"Jo - \ud83c\udf3b","id":818893114979061761,"id_str":"818893114979061761","indices":[0,13]},{"screen_name":"TrendingLiberal","name":"Trending - Liberal","id":1257817367238803456,"id_str":"1257817367238803456","indices":[14,30]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506767911104708608,"in_reply_to_status_id_str":"1506767911104708608","in_reply_to_user_id":818893114979061761,"in_reply_to_user_id_str":"818893114979061761","in_reply_to_screen_name":"JoJoFromJerz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441100226345857037\/dvtVh3ow_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441100226345857037\/dvtVh3ow_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1314045612799729667,"id_str":"1314045612799729667","name":"Steve - Dowinsky","screen_name":"SDowinsky","location":"Philadelphia, PA","description":"Retired - cardiologist with heart, former journalist, lifelong liberal Democrat #democratthroughandblue - #DumpTrump2020 #VoteBlue #BidenHarris2020 #AllVotesMatter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":197,"listed_count":0,"created_at":"Thu - Oct 08 03:31:27 +0000 2020","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":239,"lang":null,"status":{"created_at":"Fri - Mar 25 17:31:18 +0000 2022","id":1507409804381532167,"id_str":"1507409804381532167","text":"@StevenBeschloss - Why should some Supreme Court justices not be bought and paid for when so - many of our politicians are?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StevenBeschloss","name":"Steven - Beschloss","id":81741855,"id_str":"81741855","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507241422893641735,"in_reply_to_status_id_str":"1507241422893641735","in_reply_to_user_id":81741855,"in_reply_to_user_id_str":"81741855","in_reply_to_screen_name":"StevenBeschloss","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314049826707906565\/EMPUryjW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314049826707906565\/EMPUryjW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":137136638,"id_str":"137136638","name":"Dilights","screen_name":"dilights2010","location":"","description":"Venezolano - con esperanza que nuestros hijos disfruten un pa\u00eds libre y pr\u00f3spero! - Anticomunista y contra el New order, Deep state y esas nuevas porquerias","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":1043,"listed_count":2,"created_at":"Sun - Apr 25 22:43:49 +0000 2010","favourites_count":11135,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11061,"lang":null,"status":{"created_at":"Fri - Mar 25 05:01:59 +0000 2022","id":1507221231363403796,"id_str":"1507221231363403796","text":"RT - @guide__book: HOW TO Measure Remaining Daylight with Your Hand https:\/\/t.co\/r97Tsl3fYr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guide__book","name":"HOW - TO...","id":60091952,"id_str":"60091952","indices":[3,15]}],"urls":[],"media":[{"id":1505552158866874373,"id_str":"1505552158866874373","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","url":"https:\/\/t.co\/r97Tsl3fYr","display_url":"pic.twitter.com\/r97Tsl3fYr","expanded_url":"https:\/\/twitter.com\/guide__book\/status\/1505552312026075142\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":639,"h":1107,"resize":"fit"},"small":{"w":393,"h":680,"resize":"fit"},"large":{"w":639,"h":1107,"resize":"fit"}},"source_status_id":1505552312026075142,"source_status_id_str":"1505552312026075142","source_user_id":60091952,"source_user_id_str":"60091952"}]},"extended_entities":{"media":[{"id":1505552158866874373,"id_str":"1505552158866874373","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","url":"https:\/\/t.co\/r97Tsl3fYr","display_url":"pic.twitter.com\/r97Tsl3fYr","expanded_url":"https:\/\/twitter.com\/guide__book\/status\/1505552312026075142\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":639,"h":1107,"resize":"fit"},"small":{"w":393,"h":680,"resize":"fit"},"large":{"w":639,"h":1107,"resize":"fit"}},"source_status_id":1505552312026075142,"source_status_id_str":"1505552312026075142","source_user_id":60091952,"source_user_id_str":"60091952"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 14:30:17 +0000 2022","id":1505552312026075142,"id_str":"1505552312026075142","text":"HOW - TO Measure Remaining Daylight with Your Hand https:\/\/t.co\/r97Tsl3fYr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505552158866874373,"id_str":"1505552158866874373","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","url":"https:\/\/t.co\/r97Tsl3fYr","display_url":"pic.twitter.com\/r97Tsl3fYr","expanded_url":"https:\/\/twitter.com\/guide__book\/status\/1505552312026075142\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":639,"h":1107,"resize":"fit"},"small":{"w":393,"h":680,"resize":"fit"},"large":{"w":639,"h":1107,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505552158866874373,"id_str":"1505552158866874373","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOTLtjQVIAUWGiX.jpg","url":"https:\/\/t.co\/r97Tsl3fYr","display_url":"pic.twitter.com\/r97Tsl3fYr","expanded_url":"https:\/\/twitter.com\/guide__book\/status\/1505552312026075142\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":639,"h":1107,"resize":"fit"},"small":{"w":393,"h":680,"resize":"fit"},"large":{"w":639,"h":1107,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2645,"favorite_count":11770,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2645,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3292472055\/b208dded26d2d7522ff1fcae0ea951d5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3292472055\/b208dded26d2d7522ff1fcae0ea951d5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137136638\/1397632135","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":840011723490893824,"id_str":"840011723490893824","name":"Geno - Berkowitz","screen_name":"GenoBerkowitz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":353,"listed_count":0,"created_at":"Fri - Mar 10 01:29:36 +0000 2017","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Fri - Jan 21 22:52:15 +0000 2022","id":1484660139156291584,"id_str":"1484660139156291584","text":"@BeauMattLaFave - I know you dropped out of law school before you took Federal Jurisdiction, - but as someone who has a\u2026 https:\/\/t.co\/zlMkW6h6nY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeauMattLaFave","name":"Beau - M. LaFave","id":1257168498,"id_str":"1257168498","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/zlMkW6h6nY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484660139156291584","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484588105067896840,"in_reply_to_status_id_str":"1484588105067896840","in_reply_to_user_id":1257168498,"in_reply_to_user_id_str":"1257168498","in_reply_to_screen_name":"BeauMattLaFave","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240848840,"id_str":"1240848840","name":"NATHALIE - JEANPHILIPPE LLC & ASSOCIATES","screen_name":"jeanphilippe_n","location":"Nationwide - Investment Inbox me","description":"Mom| Wife| REALTOR\u00ae| Entrepreneur| - Real Investor| Mentor| ~ \"If you know anyone that may utilize my services, - please divulge my information\".","url":"https:\/\/t.co\/9Jtzg1ScWo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9Jtzg1ScWo","expanded_url":"https:\/\/www.jeanphilippen.com","display_url":"jeanphilippen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":4882,"listed_count":4,"created_at":"Mon - Mar 04 08:31:32 +0000 2013","favourites_count":1253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1238,"lang":null,"status":{"created_at":"Thu - Mar 24 20:36:44 +0000 2022","id":1507094082425868293,"id_str":"1507094082425868293","text":"@donwinslow - @January6thCmte Don\u2019t forget Marcia Blackburn, Linsey Graham and also - worried on 3 mths when @mattgaetz\u2026 https:\/\/t.co\/mIDtklXPm5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[0,11]},{"screen_name":"January6thCmte","name":"January - 6th Committee","id":1415384176593883137,"id_str":"1415384176593883137","indices":[12,27]},{"screen_name":"mattgaetz","name":"Matt - Gaetz","id":58579942,"id_str":"58579942","indices":[105,115]}],"urls":[{"url":"https:\/\/t.co\/mIDtklXPm5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507094082425868293","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507091996833329157,"in_reply_to_status_id_str":"1507091996833329157","in_reply_to_user_id":255812611,"in_reply_to_user_id_str":"255812611","in_reply_to_screen_name":"donwinslow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3336996669\/c2e0e2f22ba39e4def20ae2bc834fe08_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3336996669\/c2e0e2f22ba39e4def20ae2bc834fe08_normal.jpeg","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":935327184,"id_str":"935327184","name":"Sue - Redfern-Campbell","screen_name":"RevSueABQ","location":"","description":"Unitarian - Universalist Minister, semi-retired and living in New Mexico.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":1402,"listed_count":6,"created_at":"Thu - Nov 08 20:14:20 +0000 2012","favourites_count":7041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1061,"lang":null,"status":{"created_at":"Fri - Mar 18 16:05:10 +0000 2022","id":1504851415155445762,"id_str":"1504851415155445762","text":"@RevWeb - @CNN @jillrussia @JohnKingCNN @CNNInsidePolitx Thanks, Dan - I\u2019ve followed - her.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RevWeb","name":"Dan - Webster","id":30243176,"id_str":"30243176","indices":[0,7]},{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[8,12]},{"screen_name":"jillrussia","name":"Jill - Dougherty","id":18159985,"id_str":"18159985","indices":[13,24]},{"screen_name":"JohnKingCNN","name":"John - King","id":30043495,"id_str":"30043495","indices":[25,37]},{"screen_name":"CNNInsidePolitx","name":"CNN - InsidePolitics","id":2903664489,"id_str":"2903664489","indices":[38,54]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504503724663721986,"in_reply_to_status_id_str":"1504503724663721986","in_reply_to_user_id":30243176,"in_reply_to_user_id_str":"30243176","in_reply_to_screen_name":"RevWeb","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3189753382\/791d7495cde2a5ceec249b089afeee63_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3189753382\/791d7495cde2a5ceec249b089afeee63_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1058032362674483201,"id_str":"1058032362674483201","name":"zak - brown","screen_name":"doczsb","location":"Richmond, VA","description":"nlp, - music, things","url":"https:\/\/t.co\/3mbfXCahaq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3mbfXCahaq","expanded_url":"http:\/\/zacharysbrown.github.io","display_url":"zacharysbrown.github.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":387,"listed_count":4,"created_at":"Thu - Nov 01 16:25:47 +0000 2018","favourites_count":697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":565,"lang":null,"status":{"created_at":"Sun - Jul 04 16:05:13 +0000 2021","id":1411717745855639555,"id_str":"1411717745855639555","text":"RT - @ATLASexperiment: Happy #Higgsboson Discovery Day! \ud83e\udd73\ud83e\udd73\n\nNine - years ago today, the ATLAS Experiment and @CMSexperiment announced the disco\u2026","truncated":false,"entities":{"hashtags":[{"text":"Higgsboson","indices":[27,38]}],"symbols":[],"user_mentions":[{"screen_name":"ATLASexperiment","name":"ATLAS - Experiment","id":94818435,"id_str":"94818435","indices":[3,19]},{"screen_name":"CMSExperiment","name":"CMS - Experiment CERN","id":91143053,"id_str":"91143053","indices":[105,119]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jul 04 08:02:02 +0000 2021","id":1411596148473839619,"id_str":"1411596148473839619","text":"Happy - #Higgsboson Discovery Day! \ud83e\udd73\ud83e\udd73\n\nNine years ago today, - the ATLAS Experiment and @CMSexperiment announced the di\u2026 https:\/\/t.co\/1ld2wzdawe","truncated":true,"entities":{"hashtags":[{"text":"Higgsboson","indices":[6,17]}],"symbols":[],"user_mentions":[{"screen_name":"CMSExperiment","name":"CMS - Experiment CERN","id":91143053,"id_str":"91143053","indices":[84,98]}],"urls":[{"url":"https:\/\/t.co\/1ld2wzdawe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1411596148473839619","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":729,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":248,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393391803735359489\/Xdbc3S9-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393391803735359489\/Xdbc3S9-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1058032362674483201\/1603334759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107112842,"id_str":"1107112842","name":"Christopher - Barry","screen_name":"QabPcb14","location":"Massachusetts, USA","description":"Family, - Boston sports, Ironman, Independent.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":2444,"listed_count":0,"created_at":"Sun - Jan 20 19:42:59 +0000 2013","favourites_count":28702,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":131,"lang":null,"status":{"created_at":"Fri - Feb 11 21:29:13 +0000 2022","id":1492249389338877963,"id_str":"1492249389338877963","text":"@ThatEricAlper - The Doors - Gloria\nThe Spinners - Working My Way back to you\nChris Robinson - Brotherhood - Rock and Roll","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1492227075624865793,"in_reply_to_status_id_str":"1492227075624865793","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463992820176412678\/7qfbxxt6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463992820176412678\/7qfbxxt6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267472601699540994,"id_str":"1267472601699540994","name":"Anna - Klocke","screen_name":"AnnaKlocke1","location":"Massachusetts, USA","description":"Animal - Communicator,Connecting with people & animals beyond the tangible. \nLiving - with Polish Lowland Sheepdog and Lhasa Apso \ud83d\udc3e","url":"https:\/\/t.co\/0gqkBEtLgh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0gqkBEtLgh","expanded_url":"http:\/\/www.annaklocke.com","display_url":"annaklocke.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":85,"listed_count":0,"created_at":"Mon - Jun 01 15:06:56 +0000 2020","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Jan 08 22:50:56 +0000 2021","id":1347677195624456193,"id_str":"1347677195624456193","text":"@PAVGOD - My two girls are \ud83d\udc97\ud83d\udc3e https:\/\/t.co\/OzSrOWyejC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PAVGOD","name":"\u1d18\u1d00\u1d20\u029f\u1d0f\u1d20 - \u1d1b\u029c\u1d07 \u1d04\u1d0f\u0280\u0262\u026a","id":743983794173009920,"id_str":"743983794173009920","indices":[0,7]}],"urls":[],"media":[{"id":1347677192411619328,"id_str":"1347677192411619328","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/ErPpRCWXIAAFc0L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErPpRCWXIAAFc0L.jpg","url":"https:\/\/t.co\/OzSrOWyejC","display_url":"pic.twitter.com\/OzSrOWyejC","expanded_url":"https:\/\/twitter.com\/AnnaKlocke1\/status\/1347677195624456193\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1347677192411619328,"id_str":"1347677192411619328","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/ErPpRCWXIAAFc0L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErPpRCWXIAAFc0L.jpg","url":"https:\/\/t.co\/OzSrOWyejC","display_url":"pic.twitter.com\/OzSrOWyejC","expanded_url":"https:\/\/twitter.com\/AnnaKlocke1\/status\/1347677195624456193\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1347594169565421568,"in_reply_to_status_id_str":"1347594169565421568","in_reply_to_user_id":743983794173009920,"in_reply_to_user_id_str":"743983794173009920","in_reply_to_screen_name":"PAVGOD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288513557466841091\/yIc8l5u0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288513557466841091\/yIc8l5u0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267472601699540994\/1596040546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306808217947828224,"id_str":"1306808217947828224","name":"matias","screen_name":"matiasbid","location":"Illinois, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":715,"listed_count":0,"created_at":"Fri - Sep 18 04:12:28 +0000 2020","favourites_count":2995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465903458310103040\/aApq6O4V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465903458310103040\/aApq6O4V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306808217947828224\/1635972147","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":39486741,"id_str":"39486741","name":"Dan - Shaner","screen_name":"danshaner","location":"Fort Collins, CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":863,"listed_count":4,"created_at":"Tue - May 12 12:21:00 +0000 2009","favourites_count":7985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3680,"lang":null,"status":{"created_at":"Tue - Mar 22 17:26:38 +0000 2022","id":1506321468233244672,"id_str":"1506321468233244672","text":"@JDCocchiarella - It starts with a \u201cC\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JDCocchiarella","name":"Jack - Cocchiarella","id":713752653289955329,"id_str":"713752653289955329","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506296601639362574,"in_reply_to_status_id_str":"1506296601639362574","in_reply_to_user_id":713752653289955329,"in_reply_to_user_id_str":"713752653289955329","in_reply_to_screen_name":"JDCocchiarella","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/750514540631105536\/Y73OKoh6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/750514540631105536\/Y73OKoh6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1227715705019068416,"id_str":"1227715705019068416","name":"LisaSkibop2nd - Rock from the sun","screen_name":"lisaskibop","location":"Living on the Edge","description":"\ud83d\ude0fSome - people don\u2019t want some people to vote ~#BLM #LGBTQ Bay Area \ud83d\udd4a\ud83c\udf0a\ud83d\udc9e\u2615\ufe0f\ud83d\udcaf\u264f\ufe0f\ud83c\udf55\ud83d\udd96\ud83c\udffc\ud83d\ude37\u262f\ufe0f - Try Hard, Be Nice. Smile","url":"https:\/\/t.co\/YSE6OmbUde","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YSE6OmbUde","expanded_url":"http:\/\/Rothmetalflake.com","display_url":"Rothmetalflake.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4586,"friends_count":5030,"listed_count":7,"created_at":"Wed - Feb 12 22:07:23 +0000 2020","favourites_count":30680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12967,"lang":null,"status":{"created_at":"Sat - Mar 26 04:40:15 +0000 2022","id":1507578152863760385,"id_str":"1507578152863760385","text":"@CrashSheridan - 7 is young \ud83d\udc9a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CrashSheridan","name":"Robert - Crash Sheridan \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":3379548743,"id_str":"3379548743","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507446571604058117,"in_reply_to_status_id_str":"1507446571604058117","in_reply_to_user_id":3379548743,"in_reply_to_user_id_str":"3379548743","in_reply_to_screen_name":"CrashSheridan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326209524772974592\/6K0k3Dac_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326209524772974592\/6K0k3Dac_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227715705019068416\/1645503414","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":60604075,"id_str":"60604075","name":"Amarpal - Narang","screen_name":"narangas","location":"San Jose California","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":0,"listed_count":0,"created_at":"Mon - Jul 27 13:58:49 +0000 2009","favourites_count":281,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":307,"lang":null,"status":{"created_at":"Fri - Mar 12 13:16:54 +0000 2021","id":1370363169139347459,"id_str":"1370363169139347459","text":"@sweatystartup - @readwiseio save thread","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sweatystartup","name":"Nick - Huber","id":1067927682023915521,"id_str":"1067927682023915521","indices":[0,14]},{"screen_name":"readwiseio","name":"Readwise","id":920321515077414912,"id_str":"920321515077414912","indices":[15,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1370087998717575168,"in_reply_to_status_id_str":"1370087998717575168","in_reply_to_user_id":1067927682023915521,"in_reply_to_user_id_str":"1067927682023915521","in_reply_to_screen_name":"sweatystartup","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2179667534\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2179667534\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1173655799077527553,"id_str":"1173655799077527553","name":"rezanemati","screen_name":"rezanem93234526","location":"","description":"nemati","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":1357,"listed_count":0,"created_at":"Mon - Sep 16 17:52:17 +0000 2019","favourites_count":296,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Tue - Dec 14 15:30:26 +0000 2021","id":1470778211944521739,"id_str":"1470778211944521739","text":"@karbala60 - \u063a\u0644\u062a \u06a9\u0631\u062f\u06cc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"karbala60","name":"\u06a9\u0631\u0628\u0644\u0627","id":1031438990870761472,"id_str":"1031438990870761472","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470328495347838976,"in_reply_to_status_id_str":"1470328495347838976","in_reply_to_user_id":1031438990870761472,"in_reply_to_user_id_str":"1031438990870761472","in_reply_to_screen_name":"karbala60","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454778319669452800\/dSFjzPbr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454778319669452800\/dSFjzPbr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173655799077527553\/1632072698","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2819827780,"id_str":"2819827780","name":"Tamara - Seidman","screen_name":"herebydesign2","location":"Northport, Maine","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":188,"listed_count":0,"created_at":"Thu - Oct 09 15:28:23 +0000 2014","favourites_count":4213,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Sat - Dec 26 20:42:35 +0000 2020","id":1342933851916685320,"id_str":"1342933851916685320","text":"@Keelgood - @johnpavlovitz My apologies to both you and Dova! I should never assume!\nI - happen to live next to a town\u2026 https:\/\/t.co\/zr83WAoAuC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Keelgood","name":"Bryan - Keeling","id":17102743,"id_str":"17102743","indices":[0,9]},{"screen_name":"johnpavlovitz","name":"John - Pavlovitz","id":493714995,"id_str":"493714995","indices":[10,24]}],"urls":[{"url":"https:\/\/t.co\/zr83WAoAuC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1342933851916685320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1342930926821634049,"in_reply_to_status_id_str":"1342930926821634049","in_reply_to_user_id":17102743,"in_reply_to_user_id_str":"17102743","in_reply_to_screen_name":"Keelgood","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037141316537335808\/NSKKRSAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037141316537335808\/NSKKRSAH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213946443095916544,"id_str":"1213946443095916544","name":"Amy - Gjerde","screen_name":"GjerdeAmy","location":"Henderson, NV","description":"Live - in NV. Retired. New to Twitter. I live each day in Harmony. Democrat. Love - to travel to other countries. I love having fun. Good humored. #RESIST","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":403,"friends_count":961,"listed_count":0,"created_at":"Sun - Jan 05 22:13:07 +0000 2020","favourites_count":19832,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9031,"lang":null,"status":{"created_at":"Fri - Mar 25 23:01:09 +0000 2022","id":1507492813511880707,"id_str":"1507492813511880707","text":"RT - @Mindcite_US: Thank God it''s Friday! \n\n--And that Zelensky and Biden were - elected, not installed, as presidents of Ukraine and the USA b\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mindcite_US","name":"Mindcite\ud83d\udca5","id":4765169125,"id_str":"4765169125","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:32:28 +0000 2022","id":1507349699245789197,"id_str":"1507349699245789197","text":"Thank - God it''s Friday! \n\n--And that Zelensky and Biden were elected, not installed, - as presidents of Ukraine and th\u2026 https:\/\/t.co\/IirTrWEhwC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IirTrWEhwC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507349699245789197","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":121,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":66,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257824282874273792\/8QIhMYH7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257824282874273792\/8QIhMYH7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":414435570,"id_str":"414435570","name":"Amanda","screen_name":"mandavswild","location":"Baltimore, - MD","description":"Intersectionality.","url":"https:\/\/t.co\/GZBXeGIxrX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GZBXeGIxrX","expanded_url":"http:\/\/www.donatelife.net","display_url":"donatelife.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":260,"friends_count":1766,"listed_count":0,"created_at":"Thu - Nov 17 01:51:07 +0000 2011","favourites_count":38294,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15290,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0FC3DB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159962633522634753\/y5wUiarX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159962633522634753\/y5wUiarX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/414435570\/1473911024","profile_link_color":"B80062","profile_sidebar_border_color":"1CE63A","profile_sidebar_fill_color":"84E8EB","profile_text_color":"E3630D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":998519564404252673,"id_str":"998519564404252673","name":"Daniel - Frandsen","screen_name":"gamlefp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":736,"listed_count":0,"created_at":"Mon - May 21 11:03:10 +0000 2018","favourites_count":4083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":441,"lang":null,"status":{"created_at":"Thu - Feb 24 21:40:31 +0000 2022","id":1496963273970929669,"id_str":"1496963273970929669","text":"@ElectionWiz - where do you have this information from. important that people can fact check","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElectionWiz","name":"Election - Wizard \ud83c\uddfa\ud83c\uddf8","id":1290635110149169152,"id_str":"1290635110149169152","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1496953271977750531,"in_reply_to_status_id_str":"1496953271977750531","in_reply_to_user_id":1290635110149169152,"in_reply_to_user_id_str":"1290635110149169152","in_reply_to_screen_name":"ElectionWiz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463896392296972295\/9ixdyS-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463896392296972295\/9ixdyS-G_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":284279286,"id_str":"284279286","name":"Labrams","screen_name":"linds_abrams","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":445,"friends_count":865,"listed_count":3,"created_at":"Tue - Apr 19 00:28:12 +0000 2011","favourites_count":26016,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323017571340308482\/8YD7taih_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323017571340308482\/8YD7taih_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284279286\/1580955486","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":60334425,"id_str":"60334425","name":"Stephanie - Smith","screen_name":"texasrubyred","location":"Boerne, TX","description":"God-Loving - and God-Fearing. Daughter, Wife, Navy Mom, Grandmother and Friend. Texas Born. - Conservative. Blessed beyond measure!","url":"https:\/\/t.co\/1AFNC3Ze3r","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1AFNC3Ze3r","expanded_url":"http:\/\/www.texaslegislativeassociates.com\/","display_url":"texaslegislativeassociates.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":458,"friends_count":1593,"listed_count":1,"created_at":"Sun - Jul 26 16:08:20 +0000 2009","favourites_count":7891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":602,"lang":null,"status":{"created_at":"Sat - Oct 02 18:47:25 +0000 2021","id":1444373471753027595,"id_str":"1444373471753027595","text":"@ASoftstar - Ain\u2019t Goin Down on Brokeback Mountain by Willie Nelson","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ASoftstar","name":"Amanda - Softstar\ud83c\udff9","id":1290479032308338692,"id_str":"1290479032308338692","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1444047173591527425,"in_reply_to_status_id_str":"1444047173591527425","in_reply_to_user_id":1290479032308338692,"in_reply_to_user_id_str":"1290479032308338692","in_reply_to_screen_name":"ASoftstar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1121721440330502145\/abjwbtAz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1121721440330502145\/abjwbtAz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60334425\/1556279169","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1123843404532781057,"id_str":"1123843404532781057","name":"Hameed - Mir","screen_name":"HameedMir11","location":"Baramullah","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":701,"listed_count":0,"created_at":"Thu - May 02 06:55:22 +0000 2019","favourites_count":182,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Tue - Mar 01 09:28:56 +0000 2022","id":1498591106283433985,"id_str":"1498591106283433985","text":"@AFP - Kyiv will fall anytime from now... Assault is coming from north as well as - east..","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFP","name":"AFP - News Agency","id":380648579,"id_str":"380648579","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498587298585358340,"in_reply_to_status_id_str":"1498587298585358340","in_reply_to_user_id":380648579,"in_reply_to_user_id_str":"380648579","in_reply_to_screen_name":"AFP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248446870113796097\/9F-XYmoH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248446870113796097\/9F-XYmoH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123843404532781057\/1603956191","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1169392730851594240,"id_str":"1169392730851594240","name":"Megan","screen_name":"meganpociask","location":"Raleigh, - NC","description":"Writer, coffee addict, and reluctant fan of the Oxford - comma.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":132,"listed_count":0,"created_at":"Wed - Sep 04 23:32:38 +0000 2019","favourites_count":1099,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":437,"lang":null,"status":{"created_at":"Wed - Mar 16 18:28:28 +0000 2022","id":1504162702234722316,"id_str":"1504162702234722316","text":"RT - @kaitlancollins: Biden announces the U.S. will send drones to Ukraine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kaitlancollins","name":"Kaitlan - Collins","id":180107694,"id_str":"180107694","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 17:06:46 +0000 2022","id":1504142139101483025,"id_str":"1504142139101483025","text":"Biden - announces the U.S. will send drones to Ukraine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3064,"favorite_count":21082,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3064,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1394759549471662081\/H93WHnEx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1394759549471662081\/H93WHnEx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169392730851594240\/1625626767","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1071366427,"id_str":"1071366427","name":"Thought - Virus","screen_name":"thoughtvirus","location":"","description":"In the air, - everywhere","url":"http:\/\/t.co\/1sBBvw3z","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/1sBBvw3z","expanded_url":"http:\/\/www.viewser.com","display_url":"viewser.com","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":259,"listed_count":0,"created_at":"Tue - Jan 08 16:34:14 +0000 2013","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":98,"lang":null,"status":{"created_at":"Sat - Jul 17 16:14:22 +0000 2021","id":1416431091624284160,"id_str":"1416431091624284160","text":"@ABC7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC7","name":"ABC7 - Eyewitness News","id":16374678,"id_str":"16374678","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":16374678,"in_reply_to_user_id_str":"16374678","in_reply_to_screen_name":"ABC7","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3084864765\/072fcfce14982528d211762bacaf0335_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3084864765\/072fcfce14982528d211762bacaf0335_normal.jpeg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":981982026730475522,"id_str":"981982026730475522","name":"zs","screen_name":"SiadatZahra","location":"Greater - Vancouver","description":"Diverse thinking","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":615,"listed_count":0,"created_at":"Thu - Apr 05 19:48:54 +0000 2018","favourites_count":333,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981983331192483840\/ZCUkCar4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981983331192483840\/ZCUkCar4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1063576970,"id_str":"1063576970","name":"Alanda - Theriault","screen_name":"ProfTheriault","location":"Barrie, Ontario","description":"Liberal - Arts Lecturer | Lover of Wisdom | Feeder of Dogs | Georgian College","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":354,"friends_count":1742,"listed_count":6,"created_at":"Sat - Jan 05 17:48:38 +0000 2013","favourites_count":4358,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1972,"lang":null,"status":{"created_at":"Wed - Sep 29 13:50:56 +0000 2021","id":1443211695665688581,"id_str":"1443211695665688581","text":"@kevharrison_ - Wishing you a happy birthday Daniel, with love from your new friends in Canada!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kevharrison_","name":"Kev - & Daniel\u2019s #autism journey (& Bruce \ud83d\ude09)","id":26355129,"id_str":"26355129","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1443062146510860289,"in_reply_to_status_id_str":"1443062146510860289","in_reply_to_user_id":26355129,"in_reply_to_user_id_str":"26355129","in_reply_to_screen_name":"kevharrison_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"214542","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459305960641531904\/cBsxPFKa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459305960641531904\/cBsxPFKa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1063576970\/1452891440","profile_link_color":"94D487","profile_sidebar_border_color":"AEF5FA","profile_sidebar_fill_color":"3B615D","profile_text_color":"B4D9AD","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":868434956007211009,"id_str":"868434956007211009","name":"Amy - Alpert","screen_name":"amyalpertcoach","location":"South Orange, NJ","description":"As - a positive psychology career\/life coach, I love learning about creative careers - and how to find and manifest your passion and share what I learn with others.","url":"https:\/\/t.co\/PeS9FUnUs8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PeS9FUnUs8","expanded_url":"http:\/\/www.amyalpert.com","display_url":"amyalpert.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":913,"listed_count":3,"created_at":"Sat - May 27 11:53:23 +0000 2017","favourites_count":11866,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":390,"lang":null,"status":{"created_at":"Sun - Mar 13 14:50:43 +0000 2022","id":1503020738474876935,"id_str":"1503020738474876935","text":"The - pandemic has pushed millions of women out of the workforce. Companies need - to do more to bring them back, says\u2026 https:\/\/t.co\/Di6KkB24tx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Di6KkB24tx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503020738474876935","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869354604710027264\/SauUvkHF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869354604710027264\/SauUvkHF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1141490410889601025,"id_str":"1141490410889601025","name":"Sikh - Policy Center(www.sikhpc.org)","screen_name":"SikhPC","location":"Everywhere","description":"Nonpartisan - public interest group working to shape domestic and international policy in - American and around the globe. Policy based on Human rights over $$.","url":"https:\/\/t.co\/Pntqad25K5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pntqad25K5","expanded_url":"http:\/\/www.sikhpc.org","display_url":"sikhpc.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":352,"friends_count":844,"listed_count":0,"created_at":"Wed - Jun 19 23:38:16 +0000 2019","favourites_count":3870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7901,"lang":null,"status":{"created_at":"Sat - Mar 26 02:27:40 +0000 2022","id":1507544785388720128,"id_str":"1507544785388720128","text":"RT - @sikhsiyasat: KPS Gill''s \u201cPunjab - The Enemies Within\u201d: Bundle - of Lies, Distortions and Subterfuge [Op-ED] ~ https:\/\/t.co\/ZvUmfDokf1\n\n#S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sikhsiyasat","name":"Sikh - Siyasat News","id":86470713,"id_str":"86470713","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/ZvUmfDokf1","expanded_url":"https:\/\/bit.ly\/3IOtj2s","display_url":"bit.ly\/3IOtj2s","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:16:03 +0000 2022","id":1507466365610835969,"id_str":"1507466365610835969","text":"KPS - Gill''s \u201cPunjab - The Enemies Within\u201d: Bundle of Lies, Distortions - and Subterfuge [Op-ED] ~ https:\/\/t.co\/ZvUmfDokf1\n\n#SikhSiyasat","truncated":false,"entities":{"hashtags":[{"text":"SikhSiyasat","indices":[120,132]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZvUmfDokf1","expanded_url":"https:\/\/bit.ly\/3IOtj2s","display_url":"bit.ly\/3IOtj2s","indices":[95,118]}]},"source":"\u003ca - href=\"http:\/\/www.sikhsiyasat.net\" rel=\"nofollow\"\u003eSikh Siyasat News\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258180213785063425\/eh7A0Z3s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258180213785063425\/eh7A0Z3s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141490410889601025\/1574568850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":74570193,"id_str":"74570193","name":"Kathryn - Lewis","screen_name":"lewiskat","location":"","description":"Businesswoman, - Farmer, Activist, Equestrian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":300,"listed_count":0,"created_at":"Tue - Sep 15 22:06:25 +0000 2009","favourites_count":2958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":152,"lang":null,"status":{"created_at":"Fri - Mar 25 02:14:36 +0000 2022","id":1507179108693815300,"id_str":"1507179108693815300","text":"@SenTedCruz - What point in your life made you pursue self interest over morality ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenTedCruz","name":"Senator - Ted Cruz","id":1074480192,"id_str":"1074480192","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507074979921281028,"in_reply_to_status_id_str":"1507074979921281028","in_reply_to_user_id":1074480192,"in_reply_to_user_id_str":"1074480192","in_reply_to_screen_name":"SenTedCruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000246368732\/7d32d549e30807b1792055094098193d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000246368732\/7d32d549e30807b1792055094098193d_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311341250658918402,"id_str":"1311341250658918402","name":"An - GHI","screen_name":"AnGHI80706952","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":74,"listed_count":0,"created_at":"Wed - Sep 30 16:25:01 +0000 2020","favourites_count":456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Nov 02 19:24:41 +0000 2020","id":1323345301135007744,"id_str":"1323345301135007744","text":"RT - @JoeBiden: Are you still undecided about who to vote for or know someone who - is? My team put together some cheat sheets to show where Do\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 02 19:20:00 +0000 2020","id":1323344123873710081,"id_str":"1323344123873710081","text":"Are - you still undecided about who to vote for or know someone who is? My team - put together some cheat sheets to sho\u2026 https:\/\/t.co\/jlo3cM6Jbu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jlo3cM6Jbu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1323344123873710081","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19540,"favorite_count":66288,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":19540,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24810642,"id_str":"24810642","name":"Maureen - Monaghan","screen_name":"mhmonaghan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":1050,"listed_count":0,"created_at":"Tue - Mar 17 01:04:37 +0000 2009","favourites_count":96,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Feb 08 02:02:17 +0000 2018","id":961419883069177856,"id_str":"961419883069177856","text":"RT - @chrissyteigen: yes @johnlegend I buy and leave all the phone chargers all - around the house just so you can unplug them all and take the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chrissyteigen","name":"chrissy - teigen","id":39364684,"id_str":"39364684","indices":[3,17]},{"screen_name":"johnlegend","name":"John - Legend","id":18228898,"id_str":"18228898","indices":[23,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 08 00:44:46 +0000 2018","id":961400377462714369,"id_str":"961400377462714369","text":"yes - @johnlegend I buy and leave all the phone chargers all around the house just - so you can unplug them all and tak\u2026 https:\/\/t.co\/q2Xg4PsEaG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnlegend","name":"John - Legend","id":18228898,"id_str":"18228898","indices":[4,15]}],"urls":[{"url":"https:\/\/t.co\/q2Xg4PsEaG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/961400377462714369","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33899,"favorite_count":372563,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":33899,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3692473817\/6024c10d21c8bf4cd22bbf3f881e3270_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3692473817\/6024c10d21c8bf4cd22bbf3f881e3270_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280190371939549184,"id_str":"1280190371939549184","name":"lauri","screen_name":"lauri05821382","location":"","description":"I - love NYC and am learning to love SF now. My dogs are a huge part of my life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":285,"listed_count":0,"created_at":"Mon - Jul 06 17:22:40 +0000 2020","favourites_count":236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Wed - Dec 23 16:35:48 +0000 2020","id":1341784585080688641,"id_str":"1341784585080688641","text":"@archiproducts - worst customer service ever. 6-7 weeks is really 8+ months - and still waiting! So - disappointing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"archiproducts","name":"Archiproducts","id":255556403,"id_str":"255556403","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":255556403,"in_reply_to_user_id_str":"255556403","in_reply_to_screen_name":"archiproducts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280190803302690816\/WuRl5Tpl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280190803302690816\/WuRl5Tpl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267631844263989249,"id_str":"1267631844263989249","name":"Maria - Pacheco","screen_name":"MariaPa21619388","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":198,"listed_count":0,"created_at":"Tue - Jun 02 01:39:30 +0000 2020","favourites_count":1235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1052249043248787463,"id_str":"1052249043248787463","name":"Trump - supporter","screen_name":"Trump2024_____","location":"","description":"Trump - 2024","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":408,"listed_count":0,"created_at":"Tue - Oct 16 17:24:56 +0000 2018","favourites_count":2921,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1159,"lang":null,"status":{"created_at":"Fri - Mar 25 23:59:35 +0000 2022","id":1507507519928901641,"id_str":"1507507519928901641","text":"\ud83e\udd23\ud83e\udd23\ud83e\udd23 - https:\/\/t.co\/YRhCf4mERK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507507517236072454,"id_str":"1507507517236072454","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-GY0WUAYg-77.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-GY0WUAYg-77.jpg","url":"https:\/\/t.co\/YRhCf4mERK","display_url":"pic.twitter.com\/YRhCf4mERK","expanded_url":"https:\/\/twitter.com\/Trump2024_____\/status\/1507507519928901641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":576,"h":680,"resize":"fit"},"medium":{"w":1016,"h":1200,"resize":"fit"},"large":{"w":1284,"h":1517,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507507517236072454,"id_str":"1507507517236072454","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu-GY0WUAYg-77.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu-GY0WUAYg-77.jpg","url":"https:\/\/t.co\/YRhCf4mERK","display_url":"pic.twitter.com\/YRhCf4mERK","expanded_url":"https:\/\/twitter.com\/Trump2024_____\/status\/1507507519928901641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":576,"h":680,"resize":"fit"},"medium":{"w":1016,"h":1200,"resize":"fit"},"large":{"w":1284,"h":1517,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385730705141993472\/R8TWwOXM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385730705141993472\/R8TWwOXM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052249043248787463\/1619189689","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28833424,"id_str":"28833424","name":"David - Campbell","screen_name":"jude1972","location":"Lapeer, MI","description":"Attorney, - political junkie, and all around geek.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":1130,"listed_count":4,"created_at":"Sat - Apr 04 17:32:41 +0000 2009","favourites_count":6125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7888,"lang":null,"status":{"created_at":"Sat - Mar 26 06:38:47 +0000 2022","id":1507607982388953090,"id_str":"1507607982388953090","text":"RT - @garrettbucks: Whenever Ginni Thomas is in the news, I am required by law - to reshare that, when I was 13 and in my middle school''s orche\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"garrettbucks","name":"Garrett - Bucks","id":357915802,"id_str":"357915802","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:14:45 +0000 2022","id":1507405640058257411,"id_str":"1507405640058257411","text":"Whenever - Ginni Thomas is in the news, I am required by law to reshare that, when I - was 13 and in my middle school''s\u2026 https:\/\/t.co\/eYzB6Rp06C","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eYzB6Rp06C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507405640058257411","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4908,"favorite_count":29221,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4908,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423201721502806016\/JOQKOWw__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423201721502806016\/JOQKOWw__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28833424\/1401202085","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1090754900,"id_str":"1090754900","name":"\u274cICE\u274c","screen_name":"ICENation7777","location":"Kissimmee, - FL","description":"Self-employed, hardworking, independent, blunt, straightforward, - honest person who craves knowledge and interested by the interesting.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1174,"friends_count":4918,"listed_count":12,"created_at":"Tue - Jan 15 01:59:30 +0000 2013","favourites_count":81182,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28655,"lang":null,"status":{"created_at":"Sat - Mar 26 10:29:44 +0000 2022","id":1507666103639674882,"id_str":"1507666103639674882","text":"RT - @MeloniProject: Christopher Meloni on the set of Law & Order: #OrganizedCrime - today. \n\n\ud83d\udcf8 IG megannnreid https:\/\/t.co\/kv5rGZPA1y","truncated":false,"entities":{"hashtags":[{"text":"OrganizedCrime","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"MeloniProject","name":"mel - | hey my friend meloni","id":3192615109,"id_str":"3192615109","indices":[3,17]}],"urls":[],"media":[{"id":1507550620374515716,"id_str":"1507550620374515716","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1594,"resize":"fit"},"small":{"w":548,"h":680,"resize":"fit"},"medium":{"w":967,"h":1200,"resize":"fit"}},"source_status_id":1507550625197920264,"source_status_id_str":"1507550625197920264","source_user_id":3192615109,"source_user_id_str":"3192615109"}]},"extended_entities":{"media":[{"id":1507550620374515716,"id_str":"1507550620374515716","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1594,"resize":"fit"},"small":{"w":548,"h":680,"resize":"fit"},"medium":{"w":967,"h":1200,"resize":"fit"}},"source_status_id":1507550625197920264,"source_status_id_str":"1507550625197920264","source_user_id":3192615109,"source_user_id_str":"3192615109"},{"id":1507550620378615814,"id_str":"1507550620378615814","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUiWUAYgqxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUiWUAYgqxD.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":546,"h":680,"resize":"fit"},"large":{"w":1284,"h":1599,"resize":"fit"},"medium":{"w":964,"h":1200,"resize":"fit"}},"source_status_id":1507550625197920264,"source_status_id_str":"1507550625197920264","source_user_id":3192615109,"source_user_id_str":"3192615109"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:50:52 +0000 2022","id":1507550625197920264,"id_str":"1507550625197920264","text":"Christopher - Meloni on the set of Law & Order: #OrganizedCrime today. \n\n\ud83d\udcf8 - IG megannnreid https:\/\/t.co\/kv5rGZPA1y","truncated":false,"entities":{"hashtags":[{"text":"OrganizedCrime","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507550620374515716,"id_str":"1507550620374515716","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1594,"resize":"fit"},"small":{"w":548,"h":680,"resize":"fit"},"medium":{"w":967,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507550620374515716,"id_str":"1507550620374515716","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUhXwAQ0WD8.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1594,"resize":"fit"},"small":{"w":548,"h":680,"resize":"fit"},"medium":{"w":967,"h":1200,"resize":"fit"}}},{"id":1507550620378615814,"id_str":"1507550620378615814","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvlTUiWUAYgqxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvlTUiWUAYgqxD.jpg","url":"https:\/\/t.co\/kv5rGZPA1y","display_url":"pic.twitter.com\/kv5rGZPA1y","expanded_url":"https:\/\/twitter.com\/MeloniProject\/status\/1507550625197920264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":546,"h":680,"resize":"fit"},"large":{"w":1284,"h":1599,"resize":"fit"},"medium":{"w":964,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":115,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495520414780608527\/z1f6U_y7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495520414780608527\/z1f6U_y7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1090754900\/1642160996","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241203227066015745,"id_str":"1241203227066015745","name":"aryroneey","screen_name":"aryroneey","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":561,"listed_count":0,"created_at":"Sat - Mar 21 03:21:32 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":78479290,"id_str":"78479290","name":"Jonathan - E. Claasen","screen_name":"JonathanClaasen","location":"Arcata, California","description":"Mr. - Fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":183,"friends_count":1496,"listed_count":1,"created_at":"Wed - Sep 30 01:43:44 +0000 2009","favourites_count":1609,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363,"lang":null,"status":{"created_at":"Tue - Mar 22 13:54:04 +0000 2022","id":1506267971097808902,"id_str":"1506267971097808902","text":"RT - @mathilebrandts: We all need wood but not from the big ones https:\/\/t.co\/6qRmsT46VI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mathilebrandts","name":"mathile - brandts","id":736951399,"id_str":"736951399","indices":[3,18]}],"urls":[],"media":[{"id":1506030248453980162,"id_str":"1506030248453980162","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","url":"https:\/\/t.co\/6qRmsT46VI","display_url":"pic.twitter.com\/6qRmsT46VI","expanded_url":"https:\/\/twitter.com\/mathilebrandts\/status\/1506030253851955213\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":816,"resize":"fit"},"medium":{"w":612,"h":816,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1506030253851955213,"source_status_id_str":"1506030253851955213","source_user_id":736951399,"source_user_id_str":"736951399"}]},"extended_entities":{"media":[{"id":1506030248453980162,"id_str":"1506030248453980162","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","url":"https:\/\/t.co\/6qRmsT46VI","display_url":"pic.twitter.com\/6qRmsT46VI","expanded_url":"https:\/\/twitter.com\/mathilebrandts\/status\/1506030253851955213\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":816,"resize":"fit"},"medium":{"w":612,"h":816,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1506030253851955213,"source_status_id_str":"1506030253851955213","source_user_id":736951399,"source_user_id_str":"736951399"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 22:09:27 +0000 2022","id":1506030253851955213,"id_str":"1506030253851955213","text":"We - all need wood but not from the big ones https:\/\/t.co\/6qRmsT46VI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506030248453980162,"id_str":"1506030248453980162","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","url":"https:\/\/t.co\/6qRmsT46VI","display_url":"pic.twitter.com\/6qRmsT46VI","expanded_url":"https:\/\/twitter.com\/mathilebrandts\/status\/1506030253851955213\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":816,"resize":"fit"},"medium":{"w":612,"h":816,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506030248453980162,"id_str":"1506030248453980162","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOZ-iBwXwAIeoIz.jpg","url":"https:\/\/t.co\/6qRmsT46VI","display_url":"pic.twitter.com\/6qRmsT46VI","expanded_url":"https:\/\/twitter.com\/mathilebrandts\/status\/1506030253851955213\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":816,"resize":"fit"},"medium":{"w":612,"h":816,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":79,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501086477\/Jonathan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501086477\/Jonathan_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":232227229,"id_str":"232227229","name":"Erica - Layton","screen_name":"Bunniup1779","location":"New Jersey","description":"Mother, - daughter, sister, friend, Christ Follower","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":316,"friends_count":3450,"listed_count":0,"created_at":"Thu - Dec 30 15:45:29 +0000 2010","favourites_count":15946,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6571,"lang":null,"status":{"created_at":"Thu - Mar 24 20:10:30 +0000 2022","id":1507087479509327884,"id_str":"1507087479509327884","text":"RT - @DonaldJTrumpJr: Looks like democrats and pedophiles will have a strong advocate - on SCOTUS. Great work America.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 23:26:43 +0000 2022","id":1506774473286066183,"id_str":"1506774473286066183","text":"Looks - like democrats and pedophiles will have a strong advocate on SCOTUS. Great - work America. https:\/\/t.co\/AU56KmqtAj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AU56KmqtAj","expanded_url":"https:\/\/twitter.com\/mrddmia\/status\/1506768412307075073","display_url":"twitter.com\/mrddmia\/status\u2026","indices":[95,118]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506768412307075073,"quoted_status_id_str":"1506768412307075073","retweet_count":1732,"favorite_count":4461,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506768412307075073,"quoted_status_id_str":"1506768412307075073","retweet_count":1732,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/888948162597203969\/nVe-8NfD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888948162597203969\/nVe-8NfD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232227229\/1470279813","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":477477489,"id_str":"477477489","name":"Cheick-oumar","screen_name":"cheick82","location":"Toronto","description":"#Abidjan - #Toronto\nSupporter des \u00c9l\u00e9phants de C\u00f4te d''Ivoire et de l''OM - \ud83d\ude0e: \u00c0 jamais les premiers.\n*Un d\u00e9sagr\u00e9ment entra\u00eene - souvent une opportunit\u00e9* S.J.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":372,"friends_count":2514,"listed_count":0,"created_at":"Sun - Jan 29 07:09:09 +0000 2012","favourites_count":3529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2256,"lang":null,"status":{"created_at":"Thu - Mar 24 19:11:02 +0000 2022","id":1507072515759353866,"id_str":"1507072515759353866","text":"@CommeIvoir - \ud83e\udd23\ud83e\udd23\ud83e\udd23 non mais le fr\u00e8re, il faut qu''il - assume. On l''a djoh en plus il met \"chocobi\" dessus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CommeIvoir","name":"GammeDivoirien - \ud83c\udde8\ud83c\uddee","id":2981952473,"id_str":"2981952473","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506998822534275074,"in_reply_to_status_id_str":"1506998822534275074","in_reply_to_user_id":2981952473,"in_reply_to_user_id_str":"2981952473","in_reply_to_screen_name":"CommeIvoir","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342839498917474310\/iaEV80gY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342839498917474310\/iaEV80gY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/477477489\/1590801817","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4718870308,"id_str":"4718870308","name":"Olumide - omotosho","screen_name":"Olumideomotoso2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":282,"listed_count":0,"created_at":"Tue - Jan 05 22:21:30 +0000 2016","favourites_count":1311,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":333,"lang":null,"status":{"created_at":"Fri - Apr 23 18:59:30 +0000 2021","id":1385669678580879361,"id_str":"1385669678580879361","text":"RT - @FBI: The #FBI is seeking information that leads to the identification of - individuals who took part in the violence at the U.S. Capitol\u2026","truncated":false,"entities":{"hashtags":[{"text":"FBI","indices":[13,17]}],"symbols":[],"user_mentions":[{"screen_name":"FBI","name":"FBI","id":17629860,"id_str":"17629860","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Apr 23 13:30:16 +0000 2021","id":1385586822202503170,"id_str":"1385586822202503170","text":"The - #FBI is seeking information that leads to the identification of individuals - who took part in the violence at th\u2026 https:\/\/t.co\/pm3TZmT0UQ","truncated":true,"entities":{"hashtags":[{"text":"FBI","indices":[4,8]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pm3TZmT0UQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1385586822202503170","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10010,"favorite_count":10134,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10010,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1162658035417911299\/50gQDkMM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1162658035417911299\/50gQDkMM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4718870308\/1503788187","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4834152622,"id_str":"4834152622","name":"gina - montello","screen_name":"GinaMontello1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":167,"listed_count":0,"created_at":"Fri - Jan 22 03:49:32 +0000 2016","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Wed - Apr 08 01:56:59 +0000 2020","id":1247704962999767040,"id_str":"1247704962999767040","text":"@Miyahoka - @TwitterSupport @jack @Twitter @TwitterSafety Reported","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Miyahoka","name":"Rochelle","id":262675787,"id_str":"262675787","indices":[0,9]},{"screen_name":"TwitterSupport","name":"Twitter - Support","id":17874544,"id_str":"17874544","indices":[10,25]},{"screen_name":"jack","name":"jack\u26a1\ufe0f","id":12,"id_str":"12","indices":[26,31]},{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[32,40]},{"screen_name":"TwitterSafety","name":"Twitter - Safety","id":95731075,"id_str":"95731075","indices":[41,55]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1247465810559303680,"in_reply_to_status_id_str":"1247465810559303680","in_reply_to_user_id":262675787,"in_reply_to_user_id_str":"262675787","in_reply_to_screen_name":"Miyahoka","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189728567728496640\/TNMWKs1Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189728567728496640\/TNMWKs1Z_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":830795687046574080,"id_str":"830795687046574080","name":"Ryan - McMenamin","screen_name":"wolf___hall","location":"","description":"Laughter - is my job. Tears are my game. Law is my profession.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":3351,"listed_count":2,"created_at":"Sun - Feb 12 15:08:22 +0000 2017","favourites_count":470,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Sep 06 21:24:43 +0000 2020","id":1302719402585063424,"id_str":"1302719402585063424","text":"RT - @stuartpstevens: In the 2000 Bush campaign, when working on debate prep, I - heard there was a guy on staff who had been a good college de\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stuartpstevens","name":"stuart - stevens","id":1543986138,"id_str":"1543986138","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 06 21:23:49 +0000 2020","id":1302719175505346560,"id_str":"1302719175505346560","text":"In - the 2000 Bush campaign, when working on debate prep, I heard there was a guy - on staff who had been a good colleg\u2026 https:\/\/t.co\/pAH5jdx2js","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pAH5jdx2js","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1302719175505346560","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1302270625252347905,"quoted_status_id_str":"1302270625252347905","retweet_count":285,"favorite_count":1496,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1302270625252347905,"quoted_status_id_str":"1302270625252347905","retweet_count":285,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158397346390188034\/fo7Bw8gs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158397346390188034\/fo7Bw8gs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":590283856,"id_str":"590283856","name":"Colleen - Smedley","screen_name":"collsmed","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":139,"listed_count":0,"created_at":"Fri - May 25 20:10:58 +0000 2012","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2787983927\/eecc518941e26aefeafd27d17e9312fb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2787983927\/eecc518941e26aefeafd27d17e9312fb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590283856\/1351670336","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1281610546068914176,"id_str":"1281610546068914176","name":"onigiri","screen_name":"d_enasaur","location":"","description":"she\/her - \ud83e\udd5c hates chunky peanut butter \ud83e\udd5c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":390,"listed_count":0,"created_at":"Fri - Jul 10 15:25:52 +0000 2020","favourites_count":27017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3073,"lang":null,"status":{"created_at":"Fri - Mar 25 05:19:52 +0000 2022","id":1507225735916064774,"id_str":"1507225735916064774","text":"i - feel like i''ve been running a month-long marathon","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325612042590380033\/F8PnLVB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325612042590380033\/F8PnLVB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1281610546068914176\/1626011678","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17451108,"id_str":"17451108","name":"sand3317","screen_name":"sand3317","location":"Texas, - USA","description":"Bge cooker. What''s fair is fair.\ntrump hater...blue - dot red state.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1853,"friends_count":4991,"listed_count":9,"created_at":"Mon - Nov 17 21:28:29 +0000 2008","favourites_count":11518,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12852,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:35 +0000 2022","id":1507559109457068033,"id_str":"1507559109457068033","text":"@kikirodi64 - @GovRonDeSantis @POTUS And Florida would not send the National Guard to help - DC. Screw you @GovDeSantis","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kikirodi64","name":"Kiki - \ud83c\udf3b\ud83c\udf3b\ud83c\udf3b\ud83d\udd4a\ud83c\uddfa\ud83c\udde6","id":42715567,"id_str":"42715567","indices":[0,11]},{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[12,27]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[28,34]},{"screen_name":"GovDeSantis","name":"GovDeSantis","id":1267247816931512322,"id_str":"1267247816931512322","indices":[103,115]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507443115900166155,"in_reply_to_status_id_str":"1507443115900166155","in_reply_to_user_id":42715567,"in_reply_to_user_id_str":"42715567","in_reply_to_screen_name":"kikirodi64","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477819655716802564\/Qm9DFtVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477819655716802564\/Qm9DFtVc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17451108\/1641174576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":178111110,"id_str":"178111110","name":"Ashley - Koning","screen_name":"AshleyAKoning","location":"NJ","description":"Assistant - Professor\/Director, Rutgers Eagleton Center for Public Interest Polling. - PhD, political science, Rutgers University. Jersey girl. Opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":657,"friends_count":732,"listed_count":35,"created_at":"Fri - Aug 13 22:24:22 +0000 2010","favourites_count":1621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1748,"lang":null,"status":{"created_at":"Wed - Mar 16 19:04:34 +0000 2022","id":1504171784177963009,"id_str":"1504171784177963009","text":"RT - @taftcomms: Attitudes on #diversity in US workplaces show significant divisions - by race, gender, and political affiliation, a Taft and @\u2026","truncated":false,"entities":{"hashtags":[{"text":"diversity","indices":[28,38]}],"symbols":[],"user_mentions":[{"screen_name":"taftcomms","name":"Taft - Communications","id":54513647,"id_str":"54513647","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 14:23:37 +0000 2022","id":1503738694074834948,"id_str":"1503738694074834948","text":"Attitudes - on #diversity in US workplaces show significant divisions by race, gender, - and political affiliation, a T\u2026 https:\/\/t.co\/vxxYvi7WXo","truncated":true,"entities":{"hashtags":[{"text":"diversity","indices":[13,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vxxYvi7WXo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503738694074834948","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640168712562212864\/2FUOg9Iv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640168712562212864\/2FUOg9Iv_normal.jpg","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267469839293087744,"id_str":"1267469839293087744","name":"thedissociatelibrarian","screen_name":"disinfoslayer","location":"Osseo, - MN","description":"Nerd. Spouse. Parent. Purveyor of Knowledge and Knowledge - Accessories.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":148,"listed_count":0,"created_at":"Mon - Jun 01 14:55:48 +0000 2020","favourites_count":267,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Tue - Feb 01 16:50:59 +0000 2022","id":1488555490992865283,"id_str":"1488555490992865283","text":"@williamottens - This is my library life right now, except add the patron in question is also - absent-mindedly picking\u2026 https:\/\/t.co\/Yk2IUKsUCt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"williamottens","name":"William - Ottens","id":34446088,"id_str":"34446088","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/Yk2IUKsUCt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1488555490992865283","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488300931196325889,"in_reply_to_status_id_str":"1488300931196325889","in_reply_to_user_id":34446088,"in_reply_to_user_id_str":"34446088","in_reply_to_screen_name":"williamottens","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381980416685436929\/D-5vKaMR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381980416685436929\/D-5vKaMR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3550696102,"id_str":"3550696102","name":"Shane - Felts","screen_name":"jsf62872","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":50,"listed_count":0,"created_at":"Sat - Sep 05 01:52:15 +0000 2015","favourites_count":78,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":80,"lang":null,"status":{"created_at":"Thu - Mar 24 13:44:15 +0000 2022","id":1506990278036660227,"id_str":"1506990278036660227","text":"@WesDurham - The last time a south carolina team played a north carolina team in Greensboro - was the famous Kevin joyc\u2026 https:\/\/t.co\/Pcx17zSybH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WesDurham","name":"Wes - Durham","id":156798981,"id_str":"156798981","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/Pcx17zSybH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506990278036660227","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":156798981,"in_reply_to_user_id_str":"156798981","in_reply_to_screen_name":"WesDurham","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639980203771600897\/-2JhXUng_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639980203771600897\/-2JhXUng_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":595162282,"id_str":"595162282","name":"God - Bless Our @Potus\/@FLOTUS","screen_name":"Patrici20765403","location":"United - States","description":"#IStandWithUkraines\n#VoteBlue2022\n#StaceyAbramsForGeorgiasGovern\n#CancerSucks\n#SpineDisorderReallySucks","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":709,"friends_count":5005,"listed_count":6,"created_at":"Thu - May 31 04:11:01 +0000 2012","favourites_count":349866,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":350513,"lang":null,"status":{"created_at":"Sat - Mar 26 09:00:42 +0000 2022","id":1507643695537045504,"id_str":"1507643695537045504","text":"RT - @VABVOX: So Ketanji Brown Jackson has to promise to recuse herself from a - case on Harvard admissions but Clarence Thomas has been ruling\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VABVOX","name":"Victoria - Brownworth","id":138168339,"id_str":"138168339","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:12:40 +0000 2022","id":1507239019565961243,"id_str":"1507239019565961243","text":"So - Ketanji Brown Jackson has to promise to recuse herself from a case on Harvard - admissions but Clarence Thomas has\u2026 https:\/\/t.co\/b3bsTwBGMW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/b3bsTwBGMW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507239019565961243","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4205,"favorite_count":16907,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4205,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506935052394971138\/4wkUWoOJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506935052394971138\/4wkUWoOJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/595162282\/1648116233","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2526013815,"id_str":"2526013815","name":"Arlene - Quinones Perez, Esq.","screen_name":"arleneqperez","location":"New Jersey, - USA","description":"Family first | Strong Latina | Equity Partner @DeCotiisLaw - | Adjunct Faculty @setonhalllaw |Chair @demsofhunterdon | Past President @HBANewJersey - | @njdsc","url":"https:\/\/t.co\/1vHOz8BrV6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1vHOz8BrV6","expanded_url":"http:\/\/decotiislaw.com","display_url":"decotiislaw.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4385,"friends_count":5003,"listed_count":9,"created_at":"Sat - May 03 18:22:00 +0000 2014","favourites_count":65492,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7805,"lang":null,"status":{"created_at":"Fri - Mar 25 16:03:44 +0000 2022","id":1507387768263135238,"id_str":"1507387768263135238","text":"Thank - you @Jmd9190! So incredibly proud to belong to this team of amazing women - @DeCotiisLaw!!! https:\/\/t.co\/qDJwrGLxGv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jmd9190","name":"Joseph - M. Decotiis","id":231924341,"id_str":"231924341","indices":[10,18]},{"screen_name":"DeCotiisLaw","name":"DeCotiis - Law","id":3152751533,"id_str":"3152751533","indices":[80,92]}],"urls":[{"url":"https:\/\/t.co\/qDJwrGLxGv","expanded_url":"https:\/\/twitter.com\/decotiislaw\/status\/1507377036918247427","display_url":"twitter.com\/decotiislaw\/st\u2026","indices":[96,119]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"65b4760a2b411e11","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/65b4760a2b411e11.json","place_type":"admin","name":"New - Jersey","full_name":"New Jersey, USA","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-75.563587,38.788657],[-73.88506,38.788657],[-73.88506,41.357424],[-75.563587,41.357424]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1507377036918247427,"quoted_status_id_str":"1507377036918247427","retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357505505837649921\/w787QU9g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357505505837649921\/w787QU9g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2526013815\/1648137069","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1683958195,"id_str":"1683958195","name":"Betsy - Perry","screen_name":"BetsyPerry1000","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":120,"listed_count":0,"created_at":"Mon - Aug 19 18:46:46 +0000 2013","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":154249419,"id_str":"154249419","name":"Harold - F. Cobin","screen_name":"hcobin","location":"Norwalk, Connecticut","description":"Multimedia - reporter\/still-video photographer. Contributor to \"Nancy On Norwalk.\" Former - newspaper reporter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":4051,"listed_count":0,"created_at":"Thu - Jun 10 19:24:20 +0000 2010","favourites_count":60,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4913,"lang":null,"status":{"created_at":"Tue - Mar 22 18:33:42 +0000 2022","id":1506338343335997447,"id_str":"1506338343335997447","text":"RT - @mariana057: I hope, at my funeral someone takes the bouquet of flowers off - my casket and throws them into the crowd to see who''s next\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mariana057","name":"mariana - Z\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":15284799,"id_str":"15284799","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:44:41 +0000 2022","id":1506069318286643200,"id_str":"1506069318286643200","text":"I - hope, at my funeral someone takes the bouquet of flowers off my casket and - throws them into the crowd to see who''s next\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":387,"favorite_count":4248,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":387,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/978719458\/HFC_profile_photo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/978719458\/HFC_profile_photo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154249419\/1605238880","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1615310478,"id_str":"1615310478","name":"Tom - Fung","screen_name":"tomtfung","location":"","description":"Lexus Learning","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":1216,"listed_count":0,"created_at":"Tue - Jul 23 14:00:13 +0000 2013","favourites_count":223,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Wed - Jul 28 22:51:38 +0000 2021","id":1420517332766580739,"id_str":"1420517332766580739","text":"RT - @danahall62: @jamiedupree So a follow-up question to Jordan should have been - So why would we need to beef up security on the eve of Jan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"danahall62","name":"Badger","id":794892858557919232,"id_str":"794892858557919232","indices":[3,14]},{"screen_name":"jamiedupree","name":"Jamie - Dupree","id":27882000,"id_str":"27882000","indices":[16,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jul 28 19:37:12 +0000 2021","id":1420468399851941888,"id_str":"1420468399851941888","text":"@jamiedupree - So a follow-up question to Jordan should have been So why would we need to - beef up security on the eve\u2026 https:\/\/t.co\/LajSRijbHf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jamiedupree","name":"Jamie - Dupree","id":27882000,"id_str":"27882000","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/LajSRijbHf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1420468399851941888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1420160510385868800,"in_reply_to_status_id_str":"1420160510385868800","in_reply_to_user_id":27882000,"in_reply_to_user_id_str":"27882000","in_reply_to_screen_name":"jamiedupree","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/412399972101787648\/gci-8wDu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/412399972101787648\/gci-8wDu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1615310478\/1387751942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":275021218,"id_str":"275021218","name":"Celia - Allen","screen_name":"marinca82a","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":126,"listed_count":0,"created_at":"Thu - Mar 31 13:42:34 +0000 2011","favourites_count":1903,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":149,"lang":null,"status":{"created_at":"Mon - Feb 28 09:26:42 +0000 2022","id":1498228153835487234,"id_str":"1498228153835487234","text":"RT - @RexChapman: Oh my god. Humanity. Sports. Break out the tissues\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RexChapman","name":"Rex - Chapman\ud83c\udfc7\ud83c\udffc","id":324703658,"id_str":"324703658","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 05:56:32 +0000 2022","id":1498175264353918977,"id_str":"1498175264353918977","text":"Oh - my god. Humanity. Sports. Break out the tissues\u2026 https:\/\/t.co\/8NW6fhFiqv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8NW6fhFiqv","expanded_url":"https:\/\/twitter.com\/p_zalewski\/status\/1498058235626020864","display_url":"twitter.com\/p_zalewski\/sta\u2026","indices":[52,75]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498058235626020864,"quoted_status_id_str":"1498058235626020864","retweet_count":3275,"favorite_count":30617,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1498058235626020864,"quoted_status_id_str":"1498058235626020864","retweet_count":3275,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084048644284792833,"id_str":"1084048644284792833","name":"Lymesha - Douglas","screen_name":"LymeshaD","location":"Wilmington Delaware ","description":"no - games or bullshit I''m to grown for that shit \ud83d\udcaf\ud83d\udcaf\ud83d\udcaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":180,"listed_count":0,"created_at":"Sat - Jan 12 11:25:12 +0000 2019","favourites_count":97,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Mon - Jan 24 04:10:21 +0000 2022","id":1485464968674033664,"id_str":"1485464968674033664","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary https:\/\/t.co\/IXEDxhqFMu","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1485464956153864195,"id_str":"1485464956153864195","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FJ1ugd3XoAMVXOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJ1ugd3XoAMVXOR.jpg","url":"https:\/\/t.co\/IXEDxhqFMu","display_url":"pic.twitter.com\/IXEDxhqFMu","expanded_url":"https:\/\/twitter.com\/LymeshaD\/status\/1485464968674033664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1485464956153864195,"id_str":"1485464956153864195","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FJ1ugd3XoAMVXOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJ1ugd3XoAMVXOR.jpg","url":"https:\/\/t.co\/IXEDxhqFMu","display_url":"pic.twitter.com\/IXEDxhqFMu","expanded_url":"https:\/\/twitter.com\/LymeshaD\/status\/1485464968674033664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182831827263901696\/CDc0KxHh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182831827263901696\/CDc0KxHh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084048644284792833\/1570844056","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1071933187075596288,"id_str":"1071933187075596288","name":"itdepends","screen_name":"elonabel","location":"","description":"When - people meet me, they ask if I''m a lawyer. So yes being in law school is my - entire personality.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":238,"listed_count":0,"created_at":"Mon - Dec 10 01:02:42 +0000 2018","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Sun - Nov 08 21:42:36 +0000 2020","id":1325554339809800193,"id_str":"1325554339809800193","text":"@thehill - The GOP needs to make it clear to the far right that they almost cost us our - democracy.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325275600693592065,"in_reply_to_status_id_str":"1325275600693592065","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1072347864754503680\/Z9Yvb28v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072347864754503680\/Z9Yvb28v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071933187075596288\/1544502628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":929415472109576192,"id_str":"929415472109576192","name":"Tyler - Goodwin","screen_name":"TJohn789","location":"Maine, USA","description":"Cancer - survivor. In a lifesaving clinical trial for Car T Cell Therapy \u2764\ufe0fTennis\ud83c\udfbe - my Golden Retriever . No not interested in Bitcoin. Worried but hopeful \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/aUUxwrtn1K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aUUxwrtn1K","expanded_url":"http:\/\/thesimplescore.com","display_url":"thesimplescore.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":891,"listed_count":0,"created_at":"Sat - Nov 11 18:28:11 +0000 2017","favourites_count":24505,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3663,"lang":null,"status":{"created_at":"Fri - Mar 25 18:48:27 +0000 2022","id":1507429222159110162,"id_str":"1507429222159110162","text":"The - last Republican with a spine that put country over party. @RandPaul is compromised - just as he said and is a com\u2026 https:\/\/t.co\/FVzWLIbYcm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RandPaul","name":"Rand - Paul","id":216881337,"id_str":"216881337","indices":[62,71]}],"urls":[{"url":"https:\/\/t.co\/FVzWLIbYcm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507429222159110162","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507367849597284357,"quoted_status_id_str":"1507367849597284357","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460054623335727113\/kN7pv5e2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460054623335727113\/kN7pv5e2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/929415472109576192\/1539463355","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":94485505,"id_str":"94485505","name":"David - Suess","screen_name":"Dsuess1","location":"","description":"Father, Husband, - Friend, Lawyer, Traveler.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":650,"listed_count":0,"created_at":"Fri - Dec 04 04:20:49 +0000 2009","favourites_count":8508,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14858,"lang":null,"status":{"created_at":"Thu - Mar 24 12:18:14 +0000 2022","id":1506968630269034497,"id_str":"1506968630269034497","text":"Says - hateful, racist moron who apparently slept through the entire Trump Administration, - with its historically \u2014 an\u2026 https:\/\/t.co\/IhSytuluWh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IhSytuluWh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506968630269034497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506818178432733188,"quoted_status_id_str":"1506818178432733188","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294976087072690176\/_s1ZvFGq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294976087072690176\/_s1ZvFGq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2610044652,"id_str":"2610044652","name":"Reshu - Jain","screen_name":"reshujain96","location":"Bulandshahr, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":164,"friends_count":1731,"listed_count":0,"created_at":"Mon - Jul 07 16:23:39 +0000 2014","favourites_count":620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":117,"lang":null,"status":{"created_at":"Thu - Oct 01 11:20:52 +0000 2020","id":1311627136243916801,"id_str":"1311627136243916801","text":"@ipsvijrk - Sar shoot & side ka order hone chahiye without any movement no court no - arresting only shoot & side","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ipsvijrk","name":"RK - Vij","id":4773092064,"id_str":"4773092064","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1311305114301288448,"in_reply_to_status_id_str":"1311305114301288448","in_reply_to_user_id":4773092064,"in_reply_to_user_id_str":"4773092064","in_reply_to_screen_name":"ipsvijrk","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1201020988957192193\/VewVDbiQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201020988957192193\/VewVDbiQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2610044652\/1530464183","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311345347118141442,"id_str":"1311345347118141442","name":"Jenny - Myers Ballew","screen_name":"BallewJenny","location":"Independence MISSOURI - ","description":"Married,Follow me I\u2019ll follow you,So glad The loser - is Gone!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":909,"listed_count":0,"created_at":"Wed - Sep 30 16:41:22 +0000 2020","favourites_count":4195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3527,"lang":null,"status":{"created_at":"Fri - May 07 01:36:37 +0000 2021","id":1390480659337076737,"id_str":"1390480659337076737","text":"RT - @DrydenNovelette: @kylegriffin1 \u201cIvanka and son-in-law Jared Kushner - took a ten-day vacation with their family to Salt Lake City immedia\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrydenNovelette","name":"Novelette - Dryden","id":1379144882095280128,"id_str":"1379144882095280128","indices":[3,19]},{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[21,34]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - May 06 22:41:22 +0000 2021","id":1390436556784250885,"id_str":"1390436556784250885","text":"@kylegriffin1 - \u201cIvanka and son-in-law Jared Kushner took a ten-day vacation with their - family to Salt Lake City imme\u2026 https:\/\/t.co\/nhSlpg0GA3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/nhSlpg0GA3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1390436556784250885","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1390312900724678659,"in_reply_to_status_id_str":"1390312900724678659","in_reply_to_user_id":32871086,"in_reply_to_user_id_str":"32871086","in_reply_to_screen_name":"kylegriffin1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349160137383096323\/H-hE4EAn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349160137383096323\/H-hE4EAn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311345347118141442\/1610499858","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234686015438065669,"id_str":"1234686015438065669","name":"Wang","screen_name":"Wang28193661","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":43,"listed_count":0,"created_at":"Tue - Mar 03 03:44:32 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1092853244420870149,"id_str":"1092853244420870149","name":"databudget","screen_name":"databudget","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":404,"listed_count":0,"created_at":"Tue - Feb 05 18:31:32 +0000 2019","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1194249361397571584,"id_str":"1194249361397571584","name":"Gerald! - #YoApruebus","screen_name":"Machucator1","location":"Chile","description":"Persona, - comput\u00edn con afici\u00f3n por la guitarra el\u00e9ctrica, los temas imposibles - y otras vol\u00e1s...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":128,"listed_count":0,"created_at":"Tue - Nov 12 13:43:47 +0000 2019","favourites_count":1172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":278,"lang":null,"status":{"created_at":"Sat - Mar 05 21:46:04 +0000 2022","id":1500226159799414785,"id_str":"1500226159799414785","text":"@ProgramaNTN - Dar\u00eda lo que fuera por ver ese video y todos los otros completo wnnnnn, - ahora solo queda como un gran\u2026 https:\/\/t.co\/CI58G0W6NM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProgramaNTN","name":"\u00a8\u30ce - RicardoNTN","id":43034659,"id_str":"43034659","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/CI58G0W6NM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500226159799414785","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499931059596808192,"in_reply_to_status_id_str":"1499931059596808192","in_reply_to_user_id":43034659,"in_reply_to_user_id_str":"43034659","in_reply_to_screen_name":"ProgramaNTN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235339542212866055\/djPvQIGV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235339542212866055\/djPvQIGV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194249361397571584\/1576983388","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65976898,"id_str":"65976898","name":"jesus - gonzalez","screen_name":"jessed1","location":"Chicago, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":1848,"listed_count":0,"created_at":"Sat - Aug 15 20:59:55 +0000 2009","favourites_count":113651,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3850,"lang":null,"status":{"created_at":"Sat - Mar 26 00:15:45 +0000 2022","id":1507511588869361671,"id_str":"1507511588869361671","text":"@BrendaJWebber - \ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrendaJWebber","name":"Brenda - Webber \ud83c\uddfa\ud83c\udde6","id":429421297,"id_str":"429421297","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507476143343087619,"in_reply_to_status_id_str":"1507476143343087619","in_reply_to_user_id":429421297,"in_reply_to_user_id_str":"429421297","in_reply_to_screen_name":"BrendaJWebber","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507342451052318725\/n9HtCDZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507342451052318725\/n9HtCDZH_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1113092319979409408,"id_str":"1113092319979409408","name":"Nduke\ud83c\uddf3\ud83c\uddec","screen_name":"nd_eteyen","location":"Uyo","description":"https:\/\/t.co\/jT6ZUZtQI1 - Political Science and Public Administration.A Christian,Researcher, Political - Analyst,Sport Enthusiast, Humanitarian, Diplomat in making.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/jT6ZUZtQI1","expanded_url":"http:\/\/B.Sc","display_url":"B.Sc","indices":[0,23]}]}},"protected":false,"followers_count":169,"friends_count":647,"listed_count":0,"created_at":"Tue - Apr 02 14:54:24 +0000 2019","favourites_count":3431,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":426,"lang":null,"status":{"created_at":"Sun - Mar 20 11:23:15 +0000 2022","id":1505505242225467400,"id_str":"1505505242225467400","text":"@LFC - @Torres Happy birthday Toress","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LFC","name":"Liverpool - FC","id":19583545,"id_str":"19583545","indices":[0,4]},{"screen_name":"Torres","name":"Fernando - Torres","id":394581283,"id_str":"394581283","indices":[5,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505440251279413252,"in_reply_to_status_id_str":"1505440251279413252","in_reply_to_user_id":19583545,"in_reply_to_user_id_str":"19583545","in_reply_to_screen_name":"LFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428915384107872263\/At8z-VOi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428915384107872263\/At8z-VOi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113092319979409408\/1629515985","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313872921253691392,"id_str":"1313872921253691392","name":"Lori - Skoll","screen_name":"LoriSkoll","location":"","description":"Starting over...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":222,"listed_count":0,"created_at":"Wed - Oct 07 16:04:59 +0000 2020","favourites_count":313,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Wed - May 12 19:47:58 +0000 2021","id":1392567246220783616,"id_str":"1392567246220783616","text":"@d_maydabeast - Get well soon \u26be\ufe0f\ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"d_maydabeast","name":"Dustin - May","id":838832833,"id_str":"838832833","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1392553855288631297,"in_reply_to_status_id_str":"1392553855288631297","in_reply_to_user_id":838832833,"in_reply_to_user_id_str":"838832833","in_reply_to_screen_name":"d_maydabeast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313873166578511872\/W8Av-V9G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313873166578511872\/W8Av-V9G_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":189386449,"id_str":"189386449","name":"Brian","screen_name":"baubele","location":"Cheswick, - PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":248,"listed_count":0,"created_at":"Sat - Sep 11 03:24:40 +0000 2010","favourites_count":5538,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1092,"lang":null,"status":{"created_at":"Mon - Oct 18 15:41:24 +0000 2021","id":1450124867081281541,"id_str":"1450124867081281541","text":"RT - @jaketapper: Also worth repeating that one of the many reasons for folks to - get vaccinated and to wear masks as of now is to protect peo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jaketapper","name":"Jake - Tapper","id":14529929,"id_str":"14529929","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 18 14:18:56 +0000 2021","id":1450104112125779969,"id_str":"1450104112125779969","text":"Also - worth repeating that one of the many reasons for folks to get vaccinated and - to wear masks as of now is to pro\u2026 https:\/\/t.co\/Z6Sb1XqUhw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Z6Sb1XqUhw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1450104112125779969","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1450099373619154951,"in_reply_to_status_id_str":"1450099373619154951","in_reply_to_user_id":14529929,"in_reply_to_user_id_str":"14529929","in_reply_to_screen_name":"jaketapper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":683,"favorite_count":3590,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":683,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463701621063430145\/pGmlr13r_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463701621063430145\/pGmlr13r_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189386449\/1402748975","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796490750427090944,"id_str":"796490750427090944","name":"Tony - Hanslin","screen_name":"TonyHanslin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":35,"friends_count":607,"listed_count":0,"created_at":"Wed - Nov 09 23:12:47 +0000 2016","favourites_count":1083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":885,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379490227639685126\/4dLM-R6C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379490227639685126\/4dLM-R6C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51210573,"id_str":"51210573","name":"Katya - Navarro","screen_name":"Kerfuffle25","location":"Deep in the heart of Texas...","description":"ello - govna''! if you read that with a british accent we can be tweeps.","url":"https:\/\/t.co\/jAysHFgvS5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jAysHFgvS5","expanded_url":"http:\/\/kefuffle25.tumblr.com","display_url":"kefuffle25.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":327,"friends_count":1193,"listed_count":3,"created_at":"Fri - Jun 26 20:24:53 +0000 2009","favourites_count":20084,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19971,"lang":null,"status":{"created_at":"Wed - Mar 02 04:17:56 +0000 2022","id":1498875224883961858,"id_str":"1498875224883961858","text":"RT - @BravoWWHL: \"Texas, the best way to stand up to this bully is to vote like - your life depends on it, because for a lot of transgender kid\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BravoWWHL","name":"WWHL","id":251164136,"id_str":"251164136","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 04:08:56 +0000 2022","id":1498872963428462592,"id_str":"1498872963428462592","text":"\"Texas, - the best way to stand up to this bully is to vote like your life depends on - it, because for a lot of transg\u2026 https:\/\/t.co\/GZZaUL0oen","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GZZaUL0oen","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498872963428462592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":661,"favorite_count":3242,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":661,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"181610","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3501010176\/08f41e468e36d96be4f41f4e1f4d10a7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3501010176\/08f41e468e36d96be4f41f4e1f4d10a7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51210573\/1361941309","profile_link_color":"E31515","profile_sidebar_border_color":"EAE5DD","profile_sidebar_fill_color":"1B2141","profile_text_color":"5AC78F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":909427376337051649,"id_str":"909427376337051649","name":"Jamie - jean","screen_name":"Jeanjamie0606","location":"Singapore","description":"feminist, - lesbian, minimalist \ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":304,"friends_count":4380,"listed_count":1,"created_at":"Sun - Sep 17 14:42:37 +0000 2017","favourites_count":4192,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":404,"lang":null,"status":{"created_at":"Thu - Jun 17 15:13:25 +0000 2021","id":1405544114892926978,"id_str":"1405544114892926978","text":"RT - @christii_anna: Sex is the last thing I want. This is what I want. https:\/\/t.co\/zFcIak63mj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"christii_anna","name":"Christianna","id":732541015412887552,"id_str":"732541015412887552","indices":[3,17]}],"urls":[],"media":[{"id":1405351894550298632,"id_str":"1405351894550298632","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1405351913034502144,"source_status_id_str":"1405351913034502144","source_user_id":732541015412887552,"source_user_id_str":"732541015412887552"}]},"extended_entities":{"media":[{"id":1405351894550298632,"id_str":"1405351894550298632","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1405351913034502144,"source_status_id_str":"1405351913034502144","source_user_id":732541015412887552,"source_user_id_str":"732541015412887552"},{"id":1405351894550290435,"id_str":"1405351894550290435","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXoAMlkqC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXoAMlkqC.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1440,"h":1440,"resize":"fit"}},"source_status_id":1405351913034502144,"source_status_id_str":"1405351913034502144","source_user_id":732541015412887552,"source_user_id_str":"732541015412887552"},{"id":1405351894550208516,"id_str":"1405351894550208516","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisWYAQ3WSJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisWYAQ3WSJ.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1405351913034502144,"source_status_id_str":"1405351913034502144","source_user_id":732541015412887552,"source_user_id_str":"732541015412887552"},{"id":1405351894562783233,"id_str":"1405351894562783233","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGivWQAEZQec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGivWQAEZQec.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1405351913034502144,"source_status_id_str":"1405351913034502144","source_user_id":732541015412887552,"source_user_id_str":"732541015412887552"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jun 17 02:29:40 +0000 2021","id":1405351913034502144,"id_str":"1405351913034502144","text":"Sex - is the last thing I want. This is what I want. https:\/\/t.co\/zFcIak63mj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1405351894550298632,"id_str":"1405351894550298632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1405351894550298632,"id_str":"1405351894550298632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXwAgdEL1.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}},{"id":1405351894550290435,"id_str":"1405351894550290435","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisXoAMlkqC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisXoAMlkqC.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1440,"h":1440,"resize":"fit"}}},{"id":1405351894550208516,"id_str":"1405351894550208516","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGisWYAQ3WSJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGisWYAQ3WSJ.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}},{"id":1405351894562783233,"id_str":"1405351894562783233","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/E4DQGivWQAEZQec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4DQGivWQAEZQec.jpg","url":"https:\/\/t.co\/zFcIak63mj","display_url":"pic.twitter.com\/zFcIak63mj","expanded_url":"https:\/\/twitter.com\/christii_anna\/status\/1405351913034502144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/946417241540542464\/OscKNJo0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/946417241540542464\/OscKNJo0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1071226642842902528,"id_str":"1071226642842902528","name":"Ashley - SUN","screen_name":"JingSun07056558","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":759,"listed_count":0,"created_at":"Sat - Dec 08 02:15:08 +0000 2018","favourites_count":100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Mar 16 03:14:24 +0000 2020","id":1239389525509435392,"id_str":"1239389525509435392","text":"COVID-19: - New orders to help slow the spread of COVID-19 https:\/\/t.co\/6lvq0TzQJm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6lvq0TzQJm","expanded_url":"http:\/\/nixle.us\/BPGXG","display_url":"nixle.us\/BPGXG","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241521715450007552\/QTkALfej_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241521715450007552\/QTkALfej_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071226642842902528\/1544235875","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3409298593,"id_str":"3409298593","name":"MD","screen_name":"DPCDoctor","location":"Medford, - OR","description":"#DPC Dr, Wannabe STOL pilot, #Veteran, Farmer","url":"https:\/\/t.co\/djdfWdLWBN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/djdfWdLWBN","expanded_url":"http:\/\/www.drmcclaneduncan.com","display_url":"drmcclaneduncan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":453,"listed_count":18,"created_at":"Tue - Sep 01 00:40:12 +0000 2015","favourites_count":8966,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2284,"lang":null,"status":{"created_at":"Sat - Mar 26 08:21:13 +0000 2022","id":1507633761076228097,"id_str":"1507633761076228097","text":"@KeyBank_Help - My point is that you don\u2019t recognize the medical degree. Can we change - this? It would help so many\u2026 https:\/\/t.co\/b07u4BTYF5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeyBank_Help","name":"KeyBank - Expert Help","id":113527012,"id_str":"113527012","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/b07u4BTYF5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507633761076228097","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507484412757393408,"in_reply_to_status_id_str":"1507484412757393408","in_reply_to_user_id":113527012,"in_reply_to_user_id_str":"113527012","in_reply_to_screen_name":"KeyBank_Help","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270583968920813568\/68hIf9cl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270583968920813568\/68hIf9cl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3409298593\/1449726028","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":117980984,"id_str":"117980984","name":"Manoj","screen_name":"trojan_manoj2","location":"Decatur, - TX","description":"Macro to micro trader, top down investor. Tweets personal - view not a recommendation","url":"https:\/\/t.co\/SIG9Na670Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SIG9Na670Q","expanded_url":"http:\/\/macromicrotrader.finance","display_url":"macromicrotrader.finance","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1250,"listed_count":52,"created_at":"Sat - Feb 27 06:36:47 +0000 2010","favourites_count":4317,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4761,"lang":null,"status":{"created_at":"Fri - Mar 25 19:53:21 +0000 2022","id":1507445552648278020,"id_str":"1507445552648278020","text":"$YM - - Dow sandwiched between 20 and 50 weekly SMAs. https:\/\/t.co\/0Mq8RPZOTE","truncated":false,"entities":{"hashtags":[],"symbols":[{"text":"YM","indices":[0,3]}],"user_mentions":[],"urls":[],"media":[{"id":1507445522809901064,"id_str":"1507445522809901064","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuFt1lWUAgqtuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuFt1lWUAgqtuu.jpg","url":"https:\/\/t.co\/0Mq8RPZOTE","display_url":"pic.twitter.com\/0Mq8RPZOTE","expanded_url":"https:\/\/twitter.com\/trojan_manoj2\/status\/1507445552648278020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":931,"h":525,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":931,"h":525,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507445522809901064,"id_str":"1507445522809901064","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuFt1lWUAgqtuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuFt1lWUAgqtuu.jpg","url":"https:\/\/t.co\/0Mq8RPZOTE","display_url":"pic.twitter.com\/0Mq8RPZOTE","expanded_url":"https:\/\/twitter.com\/trojan_manoj2\/status\/1507445552648278020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":931,"h":525,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":931,"h":525,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507443375611523075,"in_reply_to_status_id_str":"1507443375611523075","in_reply_to_user_id":117980984,"in_reply_to_user_id_str":"117980984","in_reply_to_screen_name":"trojan_manoj2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356746727089397760\/D6222den_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356746727089397760\/D6222den_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117980984\/1500058433","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293625021953224704,"id_str":"1293625021953224704","name":"Selene - Ixchel\ud83c\udf3a","screen_name":"Selene_Ixchel_","location":"\u2638","description":"Starting - over again\n\ud83c\uddf2\ud83c\uddfd\ud83e\udd8b\ud83c\uddfa\ud83c\uddf8\nI - follow accts w\/ \ud83d\udc08\u200d\u2b1bfaces (ppl 2\ud83d\ude3a)\n\ud83d\udcae#SaveOurPlanet - \ud83d\udc1d \ud83d\udc28\n#BlackLivesMatter\n#EqualRightsForAll \n#MaskUp - \ud83d\ude37\n\ud83c\udff4\u200d\u2620\ufe0f#LGBTQ+\ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":403,"listed_count":0,"created_at":"Wed - Aug 12 19:08:31 +0000 2020","favourites_count":5531,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3688,"lang":null,"status":{"created_at":"Sun - Oct 17 16:07:00 +0000 2021","id":1449768919569424387,"id_str":"1449768919569424387","text":"@antifa_rp - What a terrific Aryan specimen \ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"antifa_rp","name":"Antifa - Report Pfalz","id":721740925198811137,"id_str":"721740925198811137","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1449445025260216331,"in_reply_to_status_id_str":"1449445025260216331","in_reply_to_user_id":721740925198811137,"in_reply_to_user_id_str":"721740925198811137","in_reply_to_screen_name":"antifa_rp","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1416896095347695626\/f7rWPyO-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1416896095347695626\/f7rWPyO-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1293625021953224704\/1601760717","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":757750661446459392,"id_str":"757750661446459392","name":"Aimee","screen_name":"aimeelalone1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":171,"listed_count":0,"created_at":"Tue - Jul 26 01:33:30 +0000 2016","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":949685108436619267,"id_str":"949685108436619267","name":"Edmund - Todd Bennett","screen_name":"RoomfiveTodd","location":"Cape St Claire, MD","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":467,"listed_count":0,"created_at":"Sat - Jan 06 16:52:28 +0000 2018","favourites_count":995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"status":{"created_at":"Sat - Mar 05 18:20:58 +0000 2022","id":1500174547437469700,"id_str":"1500174547437469700","text":"@thebrianfallon - Great show at the Count Basie last night! https:\/\/t.co\/CXjLnpZGvJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thebrianfallon","name":"Brian - Fallon","id":2522666481,"id_str":"2522666481","indices":[0,15]}],"urls":[],"media":[{"id":1500174543528337410,"id_str":"1500174543528337410","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGwzJAXIAIhld7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGwzJAXIAIhld7.jpg","url":"https:\/\/t.co\/CXjLnpZGvJ","display_url":"pic.twitter.com\/CXjLnpZGvJ","expanded_url":"https:\/\/twitter.com\/RoomfiveTodd\/status\/1500174547437469700\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500174543528337410,"id_str":"1500174543528337410","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGwzJAXIAIhld7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGwzJAXIAIhld7.jpg","url":"https:\/\/t.co\/CXjLnpZGvJ","display_url":"pic.twitter.com\/CXjLnpZGvJ","expanded_url":"https:\/\/twitter.com\/RoomfiveTodd\/status\/1500174547437469700\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500003476100849669,"in_reply_to_status_id_str":"1500003476100849669","in_reply_to_user_id":2522666481,"in_reply_to_user_id_str":"2522666481","in_reply_to_screen_name":"thebrianfallon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/949689950072696832\/utBh5E94_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949689950072696832\/utBh5E94_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/949685108436619267\/1515258765","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17931080,"id_str":"17931080","name":"Robert - Campbell","screen_name":"rfctex","location":"Portland, OR","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":822,"listed_count":0,"created_at":"Sat - Dec 06 23:12:39 +0000 2008","favourites_count":3152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":189,"lang":null,"status":{"created_at":"Sat - Mar 19 05:30:55 +0000 2022","id":1505054186815123462,"id_str":"1505054186815123462","text":"RT - @TimbersFC: Game day colors.\ud83c\udf39\n\nRT this post for a chance to win - 10,000 @AlaskaAir miles. #RCTID https:\/\/t.co\/o8py69oRMo","truncated":false,"entities":{"hashtags":[{"text":"RCTID","indices":[92,98]}],"symbols":[],"user_mentions":[{"screen_name":"TimbersFC","name":"Portland - Timbers","id":22556296,"id_str":"22556296","indices":[3,13]},{"screen_name":"AlaskaAir","name":"Alaska - Airlines","id":13192972,"id_str":"13192972","indices":[74,84]}],"urls":[],"media":[{"id":1504894422319730688,"id_str":"1504894422319730688","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","url":"https:\/\/t.co\/o8py69oRMo","display_url":"pic.twitter.com\/o8py69oRMo","expanded_url":"https:\/\/twitter.com\/TimbersFC\/status\/1504910513188208641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1504910513188208641,"source_status_id_str":"1504910513188208641","source_user_id":22556296,"source_user_id_str":"22556296"}]},"extended_entities":{"media":[{"id":1504894422319730688,"id_str":"1504894422319730688","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","url":"https:\/\/t.co\/o8py69oRMo","display_url":"pic.twitter.com\/o8py69oRMo","expanded_url":"https:\/\/twitter.com\/TimbersFC\/status\/1504910513188208641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1504910513188208641,"source_status_id_str":"1504910513188208641","source_user_id":22556296,"source_user_id_str":"22556296"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 20:00:00 +0000 2022","id":1504910513188208641,"id_str":"1504910513188208641","text":"Game - day colors.\ud83c\udf39\n\nRT this post for a chance to win 10,000 @AlaskaAir - miles. #RCTID https:\/\/t.co\/o8py69oRMo","truncated":false,"entities":{"hashtags":[{"text":"RCTID","indices":[77,83]}],"symbols":[],"user_mentions":[{"screen_name":"AlaskaAir","name":"Alaska - Airlines","id":13192972,"id_str":"13192972","indices":[59,69]}],"urls":[],"media":[{"id":1504894422319730688,"id_str":"1504894422319730688","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","url":"https:\/\/t.co\/o8py69oRMo","display_url":"pic.twitter.com\/o8py69oRMo","expanded_url":"https:\/\/twitter.com\/TimbersFC\/status\/1504910513188208641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504894422319730688,"id_str":"1504894422319730688","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJ1gPrVkAA2Pbn.jpg","url":"https:\/\/t.co\/o8py69oRMo","display_url":"pic.twitter.com\/o8py69oRMo","expanded_url":"https:\/\/twitter.com\/TimbersFC\/status\/1504910513188208641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":601,"favorite_count":366,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":601,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501378487109578754\/2w2W-jN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501378487109578754\/2w2W-jN0_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":256277739,"id_str":"256277739","name":"Mattu","screen_name":"mbockd","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":553,"listed_count":0,"created_at":"Wed - Feb 23 01:03:25 +0000 2011","favourites_count":5763,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5758,"lang":null,"status":{"created_at":"Fri - Mar 11 00:17:55 +0000 2022","id":1502076315423358978,"id_str":"1502076315423358978","text":"RT - @Kaepernick7: Still Working https:\/\/t.co\/ezBzWf6bUI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kaepernick7","name":"Colin - Kaepernick","id":45055696,"id_str":"45055696","indices":[3,15]}],"urls":[],"media":[{"id":1502021287396347918,"id_str":"1502021287396347918","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","url":"https:\/\/t.co\/ezBzWf6bUI","display_url":"pic.twitter.com\/ezBzWf6bUI","expanded_url":"https:\/\/twitter.com\/Kaepernick7\/status\/1502021319075926023\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1502021319075926023,"source_status_id_str":"1502021319075926023","source_user_id":45055696,"source_user_id_str":"45055696"}]},"extended_entities":{"media":[{"id":1502021287396347918,"id_str":"1502021287396347918","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","url":"https:\/\/t.co\/ezBzWf6bUI","display_url":"pic.twitter.com\/ezBzWf6bUI","expanded_url":"https:\/\/twitter.com\/Kaepernick7\/status\/1502021319075926023\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1502021319075926023,"source_status_id_str":"1502021319075926023","source_user_id":45055696,"source_user_id_str":"45055696","video_info":{"aspect_ratio":[9,16],"duration_millis":7540,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/480x852\/1rY9q71If-8lljEI.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/320x568\/SQ1pI_i10Sut36z2.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/pl\/VLpILahJMS5PyEh6.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/720x1280\/K3CnbbMS505srzlE.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 20:39:23 +0000 2022","id":1502021319075926023,"id_str":"1502021319075926023","text":"Still - Working https:\/\/t.co\/ezBzWf6bUI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1502021287396347918,"id_str":"1502021287396347918","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","url":"https:\/\/t.co\/ezBzWf6bUI","display_url":"pic.twitter.com\/ezBzWf6bUI","expanded_url":"https:\/\/twitter.com\/Kaepernick7\/status\/1502021319075926023\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1502021287396347918,"id_str":"1502021287396347918","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1502021287396347918\/pu\/img\/6oI_uf_2S3P_j-qc.jpg","url":"https:\/\/t.co\/ezBzWf6bUI","display_url":"pic.twitter.com\/ezBzWf6bUI","expanded_url":"https:\/\/twitter.com\/Kaepernick7\/status\/1502021319075926023\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":7540,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/480x852\/1rY9q71If-8lljEI.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/320x568\/SQ1pI_i10Sut36z2.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/pl\/VLpILahJMS5PyEh6.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1502021287396347918\/pu\/vid\/720x1280\/K3CnbbMS505srzlE.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6646,"favorite_count":64447,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6646,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/922238025173819392\/EgVCikD0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/922238025173819392\/EgVCikD0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256277739\/1508713177","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":446466901,"id_str":"446466901","name":"DONALD - ROSENBERGER","screen_name":"DONALDROSENBERG","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":718,"listed_count":0,"created_at":"Sun - Dec 25 19:20:04 +0000 2011","favourites_count":452,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sat - Aug 22 17:55:54 +0000 2020","id":1297231031783895040,"id_str":"1297231031783895040","text":"RT - @daveweigel: I\u2019m a Nagourney Bro, but I feel that this piece is too hand-wavy - about reality. If Dukakis went to a state school and passe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"daveweigel","name":"David - Weigel","id":13524182,"id_str":"13524182","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 22 17:09:21 +0000 2020","id":1297219318313181184,"id_str":"1297219318313181184","text":"I\u2019m - a Nagourney Bro, but I feel that this piece is too hand-wavy about reality. - If Dukakis went to a state school a\u2026 https:\/\/t.co\/ILjrcJU3C2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ILjrcJU3C2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1297219318313181184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1297174036175175681,"quoted_status_id_str":"1297174036175175681","retweet_count":13,"favorite_count":138,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1297174036175175681,"quoted_status_id_str":"1297174036175175681","retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":523904684,"id_str":"523904684","name":"Madelyn - Funk","screen_name":"madelynvfunk","location":"","description":"wisco | insta: - madelynvfunk","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":155,"listed_count":0,"created_at":"Wed - Mar 14 01:54:42 +0000 2012","favourites_count":3760,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":752,"lang":null,"status":{"created_at":"Sun - Jun 10 22:54:02 +0000 2018","id":1005946219393363969,"id_str":"1005946219393363969","text":"RT - @roobsleiser: a) vaccines don''t cause autism\nb) EVEN IF THEY DID, if you''d - prefer ur kid to get diphtheria & die a really painful & dist\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"roobsleiser","name":"roobs","id":37645802,"id_str":"37645802","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jun 10 11:40:00 +0000 2018","id":1005776590880600064,"id_str":"1005776590880600064","text":"a) - vaccines don''t cause autism\nb) EVEN IF THEY DID, if you''d prefer ur kid - to get diphtheria & die a really painful\u2026 https:\/\/t.co\/FDL7C2Q4fG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FDL7C2Q4fG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1005776590880600064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"791e00bcadc4615f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/791e00bcadc4615f.json","place_type":"city","name":"Glasgow","full_name":"Glasgow, - Scotland","country_code":"GB","country":"United Kingdom","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-4.3932845,55.796184],[-4.0902182,55.796184],[-4.0902182,55.9204214],[-4.3932845,55.9204214]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":80203,"favorite_count":285296,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":80203,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DDCAE6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315129071551082497\/q2gx2OQK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315129071551082497\/q2gx2OQK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/523904684\/1469747088","profile_link_color":"4BD1A7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C8C865","profile_text_color":"DC8C5C","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":824702323612004352,"id_str":"824702323612004352","name":"My - Voice","screen_name":"VoicesCarry808","location":"United States","description":"We - have just begun! We are here, we have a voice and we WILL NOT accept this - administration! WE CHOSE for ourselves our bodies and our families. #WhyIMarch","url":"https:\/\/t.co\/NhqNw8okhD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NhqNw8okhD","expanded_url":"http:\/\/www.WomensMarch.com","display_url":"WomensMarch.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":967,"listed_count":0,"created_at":"Thu - Jan 26 19:35:30 +0000 2017","favourites_count":29726,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35416,"lang":null,"status":{"created_at":"Sat - Dec 04 03:03:02 +0000 2021","id":1466966246373560321,"id_str":"1466966246373560321","text":"RT - @AthenaSalman: For folks who are confused, anti-abortion laws passed by the - radical right in Arizona will still send women to prison for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AthenaSalman","name":"Rep. - Athena Salman","id":3279277182,"id_str":"3279277182","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 04 01:53:23 +0000 2021","id":1466948718121263110,"id_str":"1466948718121263110","text":"For - folks who are confused, anti-abortion laws passed by the radical right in - Arizona will still send women to pris\u2026 https:\/\/t.co\/vJvRn5gTOA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vJvRn5gTOA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1466948718121263110","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1466938082167377922,"quoted_status_id_str":"1466938082167377922","retweet_count":31,"favorite_count":62,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1466938082167377922,"quoted_status_id_str":"1466938082167377922","retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/842168519588376576\/1u52MXQD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/842168519588376576\/1u52MXQD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824702323612004352\/1498871316","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156278100931555329,"id_str":"1156278100931555329","name":"Paulo - Fernandes da Silva","screen_name":"shancariasharia","location":"Bahia\/Brazil.","description":"De\u00edsta - espiritualista, e livre-pensador Shancashariano.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":685,"listed_count":1,"created_at":"Tue - Jul 30 18:59:16 +0000 2019","favourites_count":25980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2007,"lang":null,"status":{"created_at":"Tue - Dec 29 15:21:13 +0000 2020","id":1343940142160080897,"id_str":"1343940142160080897","text":"@BolsonaroSP - O que ela ganhou, foi honesto.. j\u00e1 voc\u00ea ? Desonestamente...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BolsonaroSP","name":"Eduardo - Bolsonaro\ud83c\udde7\ud83c\uddf7","id":74756085,"id_str":"74756085","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1343927977579606018,"in_reply_to_status_id_str":"1343927977579606018","in_reply_to_user_id":74756085,"in_reply_to_user_id_str":"74756085","in_reply_to_screen_name":"BolsonaroSP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278320775502737410\/2J7jlLTa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278320775502737410\/2J7jlLTa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156278100931555329\/1567905599","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":917550172640563202,"id_str":"917550172640563202","name":"Foxymangleinit - RIP @Etika","screen_name":"Foxymangle34565","location":"l''manberg","description":"@WWEFAN18930988 - @julieantonette3 @reallyfeelingya @WWE @TheSunVanished @binaryMproject @gr3gory88 - @TheSunVanished2 RIP @etika","url":"https:\/\/t.co\/PcZz4bMZIR","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PcZz4bMZIR","expanded_url":"https:\/\/tr.whotwi.com\/Foxymangle34565","display_url":"tr.whotwi.com\/Foxymangle34565","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":5000,"listed_count":0,"created_at":"Tue - Oct 10 00:39:43 +0000 2017","favourites_count":7310,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11187,"lang":null,"status":{"created_at":"Sat - Mar 26 02:15:11 +0000 2022","id":1507541643397894153,"id_str":"1507541643397894153","text":"https:\/\/t.co\/6OXs4dbOzA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507541641304936455,"id_str":"1507541641304936455","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvdIq4XEAcjdUX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvdIq4XEAcjdUX.jpg","url":"https:\/\/t.co\/6OXs4dbOzA","display_url":"pic.twitter.com\/6OXs4dbOzA","expanded_url":"https:\/\/twitter.com\/Foxymangle34565\/status\/1507541643397894153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507541641304936455,"id_str":"1507541641304936455","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvdIq4XEAcjdUX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvdIq4XEAcjdUX.jpg","url":"https:\/\/t.co\/6OXs4dbOzA","display_url":"pic.twitter.com\/6OXs4dbOzA","expanded_url":"https:\/\/twitter.com\/Foxymangle34565\/status\/1507541643397894153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199444719417413638\/FuAyKcvb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199444719417413638\/FuAyKcvb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917550172640563202\/1574805068","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2720162985,"id_str":"2720162985","name":"Anita - La Fuze","screen_name":"pawzandfuz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":672,"listed_count":0,"created_at":"Mon - Jul 21 22:51:43 +0000 2014","favourites_count":5357,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3212,"lang":null,"status":{"created_at":"Mon - Mar 21 00:34:03 +0000 2022","id":1505704252261294080,"id_str":"1505704252261294080","text":"RT - @MeidasTouch: The Republican Party doesn\u2019t want you to see this video. - Too bad. We are not holding back in exposing their despicable beh\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 22:50:36 +0000 2022","id":1505678218623291393,"id_str":"1505678218623291393","text":"The - Republican Party doesn\u2019t want you to see this video. Too bad. We are - not holding back in exposing their despica\u2026 https:\/\/t.co\/RMylKwHK8n","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RMylKwHK8n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505678218623291393","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9403,"favorite_count":13028,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9403,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491358999921446912\/WOk8WTVS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491358999921446912\/WOk8WTVS_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293635368546435073,"id_str":"1293635368546435073","name":"steve","screen_name":"steve08381461","location":"Vancouver, - British Columbia","description":"american ex pat living in vancouver BC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":286,"listed_count":0,"created_at":"Wed - Aug 12 19:48:13 +0000 2020","favourites_count":331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":124,"lang":null,"status":{"created_at":"Wed - Mar 23 18:47:07 +0000 2022","id":1506704110543785987,"id_str":"1506704110543785987","text":"RT - @b_nishanov: I\u2019ve been trying to avoid posting images of the destruction - in Ukraine but this obliteration of Mariupol by the Russian tro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"b_nishanov","name":"Bakhti - Nishanov","id":2981752395,"id_str":"2981752395","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 13:56:28 +0000 2022","id":1506630965766070272,"id_str":"1506630965766070272","text":"I\u2019ve - been trying to avoid posting images of the destruction in Ukraine but this - obliteration of Mariupol by the Rus\u2026 https:\/\/t.co\/7RszVFo6m4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7RszVFo6m4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506630965766070272","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10237,"favorite_count":19870,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10237,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348034668579282944\/2tDSNjV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348034668579282944\/2tDSNjV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1293635368546435073\/1610212556","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238263589456056320,"id_str":"1238263589456056320","name":"Freed - Rich Knee Cha","screen_name":"SLiningSputnik","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":1344,"listed_count":0,"created_at":"Fri - Mar 13 00:40:32 +0000 2020","favourites_count":27256,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1526,"lang":null,"status":{"created_at":"Sat - Feb 12 16:45:10 +0000 2022","id":1492540293509693440,"id_str":"1492540293509693440","text":"@baseballbrewzne - *Clue* he directed The French Dispatch of the Liberty, Kansas Evening Sun.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baseballbrewzne","name":"\ud835\udc01\ud835\udc2b\ud835\udc1e\ud835\udc30 - \ud835\udc0c\ud835\udc22\ud835\udc24\ud835\udc1e\ud83e\uddc0","id":985660814442074113,"id_str":"985660814442074113","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1492335302043586564,"in_reply_to_status_id_str":"1492335302043586564","in_reply_to_user_id":985660814442074113,"in_reply_to_user_id_str":"985660814442074113","in_reply_to_screen_name":"baseballbrewzne","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310225744836980737\/QZW7mZNS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310225744836980737\/QZW7mZNS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238263589456056320\/1597753295","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":358378660,"id_str":"358378660","name":"Abby-Wan - Kenobi","screen_name":"AbigailEgan93","location":"Boston, MA","description":"\ud83d\udcf8 - photographer + \u270d\ud83c\udffb writer \/\/ she\/her","url":"https:\/\/t.co\/pYWmlA7yer","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pYWmlA7yer","expanded_url":"http:\/\/www.abigailegan.com","display_url":"abigailegan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":5000,"listed_count":9,"created_at":"Fri - Aug 19 20:45:17 +0000 2011","favourites_count":68914,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14965,"lang":null,"status":{"created_at":"Fri - Mar 25 19:20:06 +0000 2022","id":1507437186337193989,"id_str":"1507437186337193989","text":"@bruceholsinger - I grew up with 3 adorable cats: Celeste, Daisy, and Page. \n\nNot Paige, but - Page. My mom\u2019s book grou\u2026 https:\/\/t.co\/uuqslagW6i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bruceholsinger","name":"Bruce - Holsinger","id":472540675,"id_str":"472540675","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/uuqslagW6i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507437186337193989","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507116847669391369,"in_reply_to_status_id_str":"1507116847669391369","in_reply_to_user_id":472540675,"in_reply_to_user_id_str":"472540675","in_reply_to_screen_name":"bruceholsinger","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258826049493893123\/Lpb-KD10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258826049493893123\/Lpb-KD10_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358378660\/1611165443","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297442009066635264,"id_str":"1297442009066635264","name":"ERICA - ROBITAILLE-VENABLE","screen_name":"EricaRobitaill1","location":"AMERICA","description":"A - passion for learning and applying. A need for understanding politics and policy. - A serious obsession for HORROR MOVIES. FLOWERS AND PHARMACEUTICALS!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":108,"listed_count":0,"created_at":"Sun - Aug 23 07:55:45 +0000 2020","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":305,"lang":null,"status":{"created_at":"Tue - Oct 26 20:42:52 +0000 2021","id":1453099836459388930,"id_str":"1453099836459388930","text":"@PageSix - Everything!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PageSix","name":"Page - Six","id":182107650,"id_str":"182107650","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1453092046839894019,"in_reply_to_status_id_str":"1453092046839894019","in_reply_to_user_id":182107650,"in_reply_to_user_id_str":"182107650","in_reply_to_screen_name":"PageSix","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20542436,"id_str":"20542436","name":"Dave - Holicky","screen_name":"Holicky","location":"Richmond, Virginia USA","description":"Father. - Grandfather. Retired Technical Education Teacher. Let''s get things done!Progressive - point of view.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":685,"listed_count":0,"created_at":"Tue - Feb 10 20:26:56 +0000 2009","favourites_count":409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Sun - Feb 06 15:30:34 +0000 2022","id":1490347189889118209,"id_str":"1490347189889118209","text":"@HVACTC - @Bakingchefjay @ccpstechcenter @ccpsinfo OMG! Are those Brussel sprouts?!? - Stop! Love you guys, but those t\u2026 https:\/\/t.co\/x4wXsOsbop","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HVACTC","name":"Will - Willis","id":902713423498272769,"id_str":"902713423498272769","indices":[0,7]},{"screen_name":"Bakingchefjay","name":"Chef - Sarah Jurewicz","id":743202062524100609,"id_str":"743202062524100609","indices":[8,22]},{"screen_name":"ccpstechcenter","name":"Chesterfield - Career and Technical Center","id":1080286224051523584,"id_str":"1080286224051523584","indices":[23,38]},{"screen_name":"ccpsinfo","name":"Chesterfield - Schools","id":54294321,"id_str":"54294321","indices":[39,48]}],"urls":[{"url":"https:\/\/t.co\/x4wXsOsbop","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490347189889118209","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1490081488301441026,"in_reply_to_status_id_str":"1490081488301441026","in_reply_to_user_id":902713423498272769,"in_reply_to_user_id_str":"902713423498272769","in_reply_to_screen_name":"HVACTC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501308025461637123\/xr6zaot4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501308025461637123\/xr6zaot4_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":987216169978548224,"id_str":"987216169978548224","name":"David - Blackwelder","screen_name":"PoliceWake","location":"Raleigh, NC","description":"\u2b50 - Wake County Sheriff (Candidate) \ud83d\udcf1Text WAKE to 22525","url":"https:\/\/t.co\/VabR29AaS3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VabR29AaS3","expanded_url":"https:\/\/www.wakecountysheriff.com","display_url":"wakecountysheriff.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":27002,"friends_count":8396,"listed_count":42,"created_at":"Fri - Apr 20 06:27:31 +0000 2018","favourites_count":11949,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1952,"lang":null,"status":{"created_at":"Fri - Mar 25 04:23:22 +0000 2022","id":1507211513811066880,"id_str":"1507211513811066880","text":"Great - event with the Northern Wake Alliance, Dimitry Slabyak For NC Senate, VoteVillaverde - - Christine Villaverde f\u2026 https:\/\/t.co\/O486ZmOBeu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/O486ZmOBeu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507211513811066880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487116745798307844\/wKUg3_NY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487116745798307844\/wKUg3_NY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/987216169978548224\/1643390552","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":374617230,"id_str":"374617230","name":"wmb","screen_name":"bambrickmike","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":311,"listed_count":1,"created_at":"Fri - Sep 16 16:39:05 +0000 2011","favourites_count":535,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":139,"lang":null,"status":{"created_at":"Wed - Nov 25 02:31:18 +0000 2020","id":1331425197132541952,"id_str":"1331425197132541952","text":"@JonAcuff - Forest Gump","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JonAcuff","name":"Jon - Acuff","id":14183663,"id_str":"14183663","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1331323845157003272,"in_reply_to_status_id_str":"1331323845157003272","in_reply_to_user_id":14183663,"in_reply_to_user_id_str":"14183663","in_reply_to_screen_name":"JonAcuff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3614675434\/02408232315f285209e4193740f6927e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3614675434\/02408232315f285209e4193740f6927e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374617230\/1550415144","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":378860765,"id_str":"378860765","name":"Kathryn - Kent","screen_name":"KentKathryn","location":"Ontario Canada","description":"Retired..Travelling, - Cruising","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":1387,"listed_count":9,"created_at":"Fri - Sep 23 23:14:34 +0000 2011","favourites_count":70643,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54811,"lang":null,"status":{"created_at":"Sat - Mar 26 03:16:35 +0000 2022","id":1507557094530056195,"id_str":"1507557094530056195","text":"RT - @JacinthePayant: Man, I respect my PM so very much! \u270a\ud83c\udde8\ud83c\udde6\u270c\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JacinthePayant","name":"JC - \ud83d\ude37 \ud83d\udc89\ud83d\udc89\ud83d\udc89 I support PM Justin Trudeau - \u270a","id":531718121,"id_str":"531718121","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:04:06 +0000 2022","id":1507553953109753856,"id_str":"1507553953109753856","text":"Man, - I respect my PM so very much! \u270a\ud83c\udde8\ud83c\udde6\u270c\ufe0f https:\/\/t.co\/Hb0ETgIuJY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Hb0ETgIuJY","expanded_url":"https:\/\/twitter.com\/jarogiesbrecht\/status\/1507450059515826177","display_url":"twitter.com\/jarogiesbrecht\u2026","indices":[41,64]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507450059515826177,"quoted_status_id_str":"1507450059515826177","retweet_count":15,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507450059515826177,"quoted_status_id_str":"1507450059515826177","retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1911821007\/GetAttachment_1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1911821007\/GetAttachment_1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378860765\/1487129851","profile_link_color":"B34F4F","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3308312592,"id_str":"3308312592","name":"lois_martha","screen_name":"lois_martha","location":"Clackamas, - Oregon, 97015","description":"Martha Lois Thompson:writer, integrity mapper - for organizations & countries\/university teacher\/public speaker, course - designer, musician, inventor","url":"https:\/\/t.co\/ThMxrhem1g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ThMxrhem1g","expanded_url":"http:\/\/worldintegrityinstitute.com","display_url":"worldintegrityinstitute.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":293,"friends_count":3032,"listed_count":7,"created_at":"Fri - Aug 07 02:37:27 +0000 2015","favourites_count":11718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4309,"lang":null,"status":{"created_at":"Fri - Mar 25 23:10:10 +0000 2022","id":1507495083255377923,"id_str":"1507495083255377923","text":"https:\/\/t.co\/JNybWTuuAT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507495079321034753,"id_str":"1507495079321034753","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuyyZ-UYAEyIrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuyyZ-UYAEyIrU.jpg","url":"https:\/\/t.co\/JNybWTuuAT","display_url":"pic.twitter.com\/JNybWTuuAT","expanded_url":"https:\/\/twitter.com\/lois_martha\/status\/1507495083255377923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507495079321034753,"id_str":"1507495079321034753","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuyyZ-UYAEyIrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuyyZ-UYAEyIrU.jpg","url":"https:\/\/t.co\/JNybWTuuAT","display_url":"pic.twitter.com\/JNybWTuuAT","expanded_url":"https:\/\/twitter.com\/lois_martha\/status\/1507495083255377923\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664565834384211968\/OXInqFef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664565834384211968\/OXInqFef_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308312592\/1622136025","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3398587473,"id_str":"3398587473","name":"Josh","screen_name":"realjoshmoses","location":"Brooklyn, - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":27,"friends_count":254,"listed_count":0,"created_at":"Sat - Aug 01 12:03:06 +0000 2015","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/776800576214556673\/SFbARh05_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/776800576214556673\/SFbARh05_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1099460803126652928,"id_str":"1099460803126652928","name":"Lolita - Ann Shodahl-Perreira","screen_name":"AnnShodahl","location":"Spokane, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":483,"listed_count":0,"created_at":"Sun - Feb 24 00:07:37 +0000 2019","favourites_count":4170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":721,"lang":null,"status":{"created_at":"Mon - Jul 19 23:00:19 +0000 2021","id":1417258026663243776,"id_str":"1417258026663243776","text":"@ewarren - I tell it Miss Warren \nGod\u2019s blessings for you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1417113042098212864,"in_reply_to_status_id_str":"1417113042098212864","in_reply_to_user_id":357606935,"in_reply_to_user_id_str":"357606935","in_reply_to_screen_name":"ewarren","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297765937060302850\/kxziD3ZS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297765937060302850\/kxziD3ZS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":466632744,"id_str":"466632744","name":"JoanCJo","screen_name":"JoanCJo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":130,"listed_count":0,"created_at":"Tue - Jan 17 16:33:30 +0000 2012","favourites_count":763,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26118418,"id_str":"26118418","name":"ToryG","screen_name":"TykeTory","location":"","description":"Keeping - Britain Blue. Socialism is evil. Nazis and Communists are both Socialists. - #godsaveourqueen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":472,"friends_count":802,"listed_count":2,"created_at":"Mon - Mar 23 23:19:50 +0000 2009","favourites_count":19112,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16054,"lang":null,"status":{"created_at":"Sat - Mar 26 10:07:43 +0000 2022","id":1507660562058076161,"id_str":"1507660562058076161","text":"She - can\u2019t she\u2019s thick and pushing a \u2018if you\u2019re black your - a victim\u2019 lefty rubbish message. https:\/\/t.co\/pjtWo3kFnP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pjtWo3kFnP","expanded_url":"https:\/\/twitter.com\/denisedennyp342\/status\/1507658704962965507","display_url":"twitter.com\/denisedennyp34\u2026","indices":[91,114]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507658704962965507,"quoted_status_id_str":"1507658704962965507","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368856050116538371\/So37tshT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368856050116538371\/So37tshT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26118418\/1615195230","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":441548399,"id_str":"441548399","name":"G - B","screen_name":"jgarrettbrennan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":150,"listed_count":0,"created_at":"Tue - Dec 20 05:57:49 +0000 2011","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204537472623038469\/qbG7nI30_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204537472623038469\/qbG7nI30_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2726765458,"id_str":"2726765458","name":"Abrantie - Quejo Owusu \u2649\ud83d\udc51\ud83c\udf93","screen_name":"pheg11","location":"Kumasi, - Ghana","description":"ig:pheg_meizzy_junia facebook; Oheneba Quejo Owusu #233203506072.... - Sapiosexual Madridista \ud83e\udd34\u262f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":2498,"listed_count":0,"created_at":"Sun - Jul 27 21:31:26 +0000 2014","favourites_count":1222,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7027,"lang":null,"status":{"created_at":"Sun - Mar 13 14:18:51 +0000 2022","id":1503012718340628488,"id_str":"1503012718340628488","text":"RT - @Efiaodo1: If no one believes in you, believe in yourself. God hasn\u2019t - given up on you, so don\u2019t give up on yourself.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Efiaodo1","name":"EFIAODO","id":961221171726385153,"id_str":"961221171726385153","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 12:08:48 +0000 2022","id":1502979990740254720,"id_str":"1502979990740254720","text":"If - no one believes in you, believe in yourself. God hasn\u2019t given up on you, - so don\u2019t give up on yourself.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":542,"favorite_count":4339,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":542,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461407811439579148\/Oifcvwqx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461407811439579148\/Oifcvwqx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726765458\/1590396917","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":441316867,"id_str":"441316867","name":"rhema craib","screen_name":"dayesrhema","location":"BROOKLYN - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":1438,"listed_count":0,"created_at":"Mon - Dec 19 23:51:54 +0000 2011","favourites_count":13846,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1086,"lang":null,"status":{"created_at":"Wed - Oct 27 22:11:39 +0000 2021","id":1453484565989896193,"id_str":"1453484565989896193","text":"RT - @politvidchannel: Donald Trump just accused Bill Barr of rigging the 2020 - election against him. You can''t make this stuff up.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"politvidchannel","name":"PoliticsVideoChannel","id":4878610324,"id_str":"4878610324","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 27 21:53:02 +0000 2021","id":1453479879865892868,"id_str":"1453479879865892868","text":"Donald - Trump just accused Bill Barr of rigging the 2020 election against him. You - can''t make this stuff up.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":984,"favorite_count":4545,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":984,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432128878324162563\/OVvqbQCY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432128878324162563\/OVvqbQCY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441316867\/1566684145","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":596802514,"id_str":"596802514","name":"Karen - Griffin","screen_name":"KarenGrif","location":"","description":"It''s all - stupid, all of it *waves hands*","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":551,"friends_count":5005,"listed_count":1,"created_at":"Fri - Jun 01 21:01:52 +0000 2012","favourites_count":37890,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6053,"lang":null,"status":{"created_at":"Fri - Mar 25 16:35:46 +0000 2022","id":1507395829316788226,"id_str":"1507395829316788226","text":"RT - @circleofdeceit: I just found out that the Titanic had 13,000 grapefruit on - it. The fuck you need all that grapefruit for? No wonder it\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"circleofdeceit","name":"Fuck - with fire","id":1287702457,"id_str":"1287702457","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 03:19:12 +0000 2022","id":1506832980123258884,"id_str":"1506832980123258884","text":"I - just found out that the Titanic had 13,000 grapefruit on it. The fuck you - need all that grapefruit for? No wonder it sank","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3369,"favorite_count":54311,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3369,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2270270413\/m5owiksz9ldfp94r9q5r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2270270413\/m5owiksz9ldfp94r9q5r_normal.jpeg","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":816347514420989952,"id_str":"816347514420989952","name":"I - was told there would be cake","screen_name":"RabidAtoms","location":"Dallas, - TX","description":"Trying hard to be independent. Vote the person not the - party and all that. But really, I just hope to vote the way my sweet dogs - would want me to.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":1104,"listed_count":0,"created_at":"Tue - Jan 03 18:16:29 +0000 2017","favourites_count":205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2088,"lang":null,"status":{"created_at":"Wed - Mar 23 15:48:42 +0000 2022","id":1506659210528006156,"id_str":"1506659210528006156","text":"@MysterySolvent - Poopknife","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MysterySolvent","name":"Mystery - Solvent","id":1094713876132872192,"id_str":"1094713876132872192","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506656302386327554,"in_reply_to_status_id_str":"1506656302386327554","in_reply_to_user_id":1094713876132872192,"in_reply_to_user_id_str":"1094713876132872192","in_reply_to_screen_name":"MysterySolvent","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292177296686821376\/0xd1PQq1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292177296686821376\/0xd1PQq1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/816347514420989952\/1536516460","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":173320139,"id_str":"173320139","name":"Neusa - Andrade","screen_name":"neusamandrade","location":"Sao Paulo, Brazil","description":"Professor - and Production Engineering Ph.D. (ICT) and e-Health Specialist and interoperability - HL7 FHIR standard and International Patient Summary.","url":"https:\/\/t.co\/VNeRlalGei","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VNeRlalGei","expanded_url":"http:\/\/universalmedrecords.com","display_url":"universalmedrecords.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25092,"friends_count":25667,"listed_count":76,"created_at":"Sun - Aug 01 02:40:20 +0000 2010","favourites_count":388730,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":397532,"lang":null,"status":{"created_at":"Sat - Mar 26 02:33:46 +0000 2022","id":1507546319178637314,"id_str":"1507546319178637314","text":"RT - @beatrizdiniz: Agora, mais de 30 anos depois da exibi\u00e7\u00e3o da primeira - vers\u00e3o na extinta TV Manchete, a novela Pantanal chega como um grit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"beatrizdiniz","name":"beatriz - #MarcoTemporalN\u00e3o \ud83d\ude37","id":16284408,"id_str":"16284408","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:28:37 +0000 2022","id":1507545023122149376,"id_str":"1507545023122149376","text":"Agora, - mais de 30 anos depois da exibi\u00e7\u00e3o da primeira vers\u00e3o na extinta - TV Manchete, a novela Pantanal chega como u\u2026 https:\/\/t.co\/ljXQcvs0RA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ljXQcvs0RA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507545023122149376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507543794639638530,"in_reply_to_status_id_str":"1507543794639638530","in_reply_to_user_id":16284408,"in_reply_to_user_id_str":"16284408","in_reply_to_screen_name":"beatrizdiniz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":27,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496196363205455879\/WBdMS1ko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496196363205455879\/WBdMS1ko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173320139\/1596147499","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":769954064,"id_str":"769954064","name":"lynn","screen_name":"wanderluster98","location":"Illinois, - USA","description":"she\/her\nI literally don''t know what''s going on at - any given moment","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":245,"listed_count":2,"created_at":"Mon - Aug 20 18:01:53 +0000 2012","favourites_count":19198,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2756,"lang":null,"status":{"created_at":"Sun - Mar 20 15:43:00 +0000 2022","id":1505570610574938112,"id_str":"1505570610574938112","text":"RT - @_cam_shaft_: Bad journalism. The title of this should be \u201cshitty cop - defies basic traffic laws and runs over mother and 4 year old chil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_cam_shaft_","name":"Cameron","id":1451727884696096769,"id_str":"1451727884696096769","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 23:36:10 +0000 2022","id":1504964910249385984,"id_str":"1504964910249385984","text":"Bad - journalism. The title of this should be \u201cshitty cop defies basic traffic - laws and runs over mother and 4 year o\u2026 https:\/\/t.co\/8Uk7P3XuWb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8Uk7P3XuWb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504964910249385984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504904219912019969,"quoted_status_id_str":"1504904219912019969","retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504904219912019969,"quoted_status_id_str":"1504904219912019969","retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479687684666843141\/TzJHBnUn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479687684666843141\/TzJHBnUn_normal.jpg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":340502646,"id_str":"340502646","name":"Omar - Ali","screen_name":"omarali91","location":"toronto","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":264,"listed_count":0,"created_at":"Fri - Jul 22 20:15:25 +0000 2011","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Tue - Mar 01 17:47:37 +0000 2022","id":1498716603386671105,"id_str":"1498716603386671105","text":"This - is not a great look when the pretence for invading your country is the denazification - of it https:\/\/t.co\/Tyi5cstjSg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Tyi5cstjSg","expanded_url":"https:\/\/twitter.com\/BijanCNN\/status\/1498693084028276746","display_url":"twitter.com\/BijanCNN\/statu\u2026","indices":[99,122]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498693084028276746,"quoted_status_id_str":"1498693084028276746","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1064971201821515776\/nnfEZNQW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1064971201821515776\/nnfEZNQW_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1315524384,"id_str":"1315524384","name":"edward - roach","screen_name":"edwardroach4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":236,"listed_count":0,"created_at":"Sat - Mar 30 01:20:50 +0000 2013","favourites_count":19833,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":951524705743327232,"id_str":"951524705743327232","name":"CryptoNerd","screen_name":"KryptoNerd007","location":"None - of your biz","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":201,"listed_count":4,"created_at":"Thu - Jan 11 18:42:23 +0000 2018","favourites_count":126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Tue - Jan 04 03:35:00 +0000 2022","id":1478208313254985729,"id_str":"1478208313254985729","text":"RT - @coybranscum: Chip Roy has supported the Government shutdown, voted against - impeachment, and denounces the January 6th Committee. When I\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"coybranscum","name":"Coy - Branscum","id":808849223701643264,"id_str":"808849223701643264","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 28 22:14:34 +0000 2021","id":1475953348738224136,"id_str":"1475953348738224136","text":"Chip - Roy has supported the Government shutdown, voted against impeachment, and - denounces the January 6th Committee.\u2026 https:\/\/t.co\/MONB7S2WCB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MONB7S2WCB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1475953348738224136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4015,"favorite_count":10187,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4015,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/952628238609600513\/KS1Z8eRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/952628238609600513\/KS1Z8eRc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21155556,"id_str":"21155556","name":"Themisjo","screen_name":"Themisjo","location":"Ann - Arbor Mi","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":38,"friends_count":577,"listed_count":1,"created_at":"Wed - Feb 18 01:23:02 +0000 2009","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170814071647719426\/O_bn9VTn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170814071647719426\/O_bn9VTn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21155556\/1362329367","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250469064704765952,"id_str":"1250469064704765952","name":"HalleHour\ud83d\udcab","screen_name":"Sugaroonstar","location":"Somewhere - under the \ud83c\udf08 ","description":"Here for a good time not a long time\ud83e\udd0d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":1826,"listed_count":1,"created_at":"Wed - Apr 15 17:00:43 +0000 2020","favourites_count":11339,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7688,"lang":null,"status":{"created_at":"Sat - Mar 26 01:06:22 +0000 2022","id":1507524325494120450,"id_str":"1507524325494120450","text":"RT - @mjBeats: \ud83d\udc93 | ''''Eu os vejo como minha fam\u00edlia, meus amigos, - meus filhos. Eu n\u00e3o sou o mesmo homem sem os meus f\u00e3s.'''' \n\n- - Michael Jackso\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mjBeats","name":"MJ - Beats","id":27879183,"id_str":"27879183","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:30:00 +0000 2022","id":1507454775230664746,"id_str":"1507454775230664746","text":"\ud83d\udc93 - | ''''Eu os vejo como minha fam\u00edlia, meus amigos, meus filhos. Eu n\u00e3o - sou o mesmo homem sem os meus f\u00e3s.'''' \n\n- Mic\u2026 https:\/\/t.co\/twVpltgc41","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/twVpltgc41","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507454775230664746","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":127,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506346497373356041\/-coE8Cch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506346497373356041\/-coE8Cch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250469064704765952\/1644863786","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":975057015612559360,"id_str":"975057015612559360","name":"N.O.","screen_name":"Taurus452","location":"Pennsylvania, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2462,"friends_count":961,"listed_count":0,"created_at":"Sat - Mar 17 17:11:22 +0000 2018","favourites_count":12579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1473,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483082894436454401\/X3Ce67M0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483082894436454401\/X3Ce67M0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/975057015612559360\/1642429467","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2744016267,"id_str":"2744016267","name":"Ben - Boggs","screen_name":"bennettboggs","location":"Denver, Colorado","description":"#HigherEd - policy geek and nonpartisan political observer, native Southerner exploring - the American West, Chief of Staff @CoHigherEd, Dad.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":230,"friends_count":1205,"listed_count":1,"created_at":"Sat - Aug 16 01:12:01 +0000 2014","favourites_count":4176,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":673,"lang":null,"status":{"created_at":"Fri - Mar 25 23:40:44 +0000 2022","id":1507502775428517890,"id_str":"1507502775428517890","text":"There\u2019s - Jim Wilson - A Nice Guy - with Aaron Harber. Both are Colorado\u2019s Finest. @CoHigherEd - appreciates their se\u2026 https:\/\/t.co\/CCc06qPrA3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoHigherEd","name":"CO - Dept of Higher Education","id":1561297867,"id_str":"1561297867","indices":[83,94]}],"urls":[{"url":"https:\/\/t.co\/CCc06qPrA3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507502775428517890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507462405864845316,"quoted_status_id_str":"1507462405864845316","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500470333489827840\/etoW4pZ6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500470333489827840\/etoW4pZ6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2744016267\/1567048419","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2155872222,"id_str":"2155872222","name":"George - J Klems","screen_name":"KlemsJ","location":"Lincoln, NE","description":"retired - metallurgist, amateur photographer","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":314,"listed_count":0,"created_at":"Sat - Oct 26 00:50:58 +0000 2013","favourites_count":27490,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":946,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434148126006312960\/iF1_juYy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434148126006312960\/iF1_juYy_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1199669970881245184,"id_str":"1199669970881245184","name":"elba - m rubin","screen_name":"elbamrubin1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":111,"listed_count":0,"created_at":"Wed - Nov 27 12:44:27 +0000 2019","favourites_count":2820,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Wed - Mar 23 21:09:05 +0000 2022","id":1506739838359273472,"id_str":"1506739838359273472","text":"RT - @o2bnobx: @alfranken @LindseyGrahamSC @tedcruz @HawleyMO @TomCottonAR Republicans - ought think very carefully about how they address Judg\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"o2bnobx","name":"Alan!","id":21859500,"id_str":"21859500","indices":[3,11]},{"screen_name":"alfranken","name":"Al - Franken","id":7334402,"id_str":"7334402","indices":[13,23]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[24,40]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[41,49]},{"screen_name":"HawleyMO","name":"Josh - Hawley","id":2352629311,"id_str":"2352629311","indices":[50,59]},{"screen_name":"TomCottonAR","name":"Tom - Cotton","id":343041182,"id_str":"343041182","indices":[60,72]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:18:54 +0000 2022","id":1506727206487314433,"id_str":"1506727206487314433","text":"@alfranken - @LindseyGrahamSC @tedcruz @HawleyMO @TomCottonAR Republicans ought think very - carefully about how they a\u2026 https:\/\/t.co\/W6KpYmVoG3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alfranken","name":"Al - Franken","id":7334402,"id_str":"7334402","indices":[0,10]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[11,27]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[28,36]},{"screen_name":"HawleyMO","name":"Josh - Hawley","id":2352629311,"id_str":"2352629311","indices":[37,46]},{"screen_name":"TomCottonAR","name":"Tom - Cotton","id":343041182,"id_str":"343041182","indices":[47,59]}],"urls":[{"url":"https:\/\/t.co\/W6KpYmVoG3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506727206487314433","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506726653229252608,"in_reply_to_status_id_str":"1506726653229252608","in_reply_to_user_id":7334402,"in_reply_to_user_id_str":"7334402","in_reply_to_screen_name":"alfranken","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":89,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244375640406732802,"id_str":"1244375640406732802","name":"Charlie - Walters","screen_name":"Charlie04175497","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":254,"listed_count":1,"created_at":"Sun - Mar 29 21:27:41 +0000 2020","favourites_count":579,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Jun 27 06:46:11 +0000 2020","id":1276768771684827136,"id_str":"1276768771684827136","text":"RT - @MCYeeehaaa: Liam Treadwell. A young man. Loved & liked. Gone. This is - the most important column I have ever written. If you have an iss\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MCYeeehaaa","name":"Matt - Chapman","id":278036061,"id_str":"278036061","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jun 26 19:01:09 +0000 2020","id":1276591344715169799,"id_str":"1276591344715169799","text":"Liam - Treadwell. A young man. Loved & liked. Gone. This is the most important - column I have ever written. If you hav\u2026 https:\/\/t.co\/PQeki2Tdu5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PQeki2Tdu5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1276591344715169799","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1390,"favorite_count":3548,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1390,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244377207813914629\/KR29SYyt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244377207813914629\/KR29SYyt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1071944918719959041,"id_str":"1071944918719959041","name":"Juan - Batlle, MD, MBA","screen_name":"docjuanb","location":"Miami, FL","description":"Cardiothoracic - Rad @MiamiVasc, Chief of Thoracic Imaging @BaptistHealthSF, Assoc Prof @FIUMedicine. MSK - Radiologist - @MiamiDolphins, @MiamiHeat, @FlaPanthers","url":"https:\/\/t.co\/bh2FNcYrJd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bh2FNcYrJd","expanded_url":"http:\/\/www.rasf.net","display_url":"rasf.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":998,"friends_count":3292,"listed_count":12,"created_at":"Mon - Dec 10 01:49:19 +0000 2018","favourites_count":2508,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1053,"lang":null,"status":{"created_at":"Tue - Mar 22 23:16:48 +0000 2022","id":1506409590438592513,"id_str":"1506409590438592513","text":"RT - @thoracicrad: Do you need a strategy for identifying common patterns of diffuse - lung disease on CXR and their differential diagnoses?\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thoracicrad","name":"Society - of Thoracic Radiology","id":3073806055,"id_str":"3073806055","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 21:03:58 +0000 2022","id":1506013771520614404,"id_str":"1506013771520614404","text":"Do - you need a strategy for identifying common patterns of diffuse lung disease - on CXR and their differential diagno\u2026 https:\/\/t.co\/jRI6KDiBJr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jRI6KDiBJr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506013771520614404","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":89,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1150156563065245696\/2yaNhCAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150156563065245696\/2yaNhCAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071944918719959041\/1636756026","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":989371678990925829,"id_str":"989371678990925829","name":"john - cecil","screen_name":"johncec88287264","location":"South East, England","description":"bass - player for the English rock band the photos check us out on YouTube under - the photos 1970s rock band \ud83c\uddec\ud83c\udde7. and big BHA FC fan. fav. - band rush \ud83c\udfb8\ud83c\udfb8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":911,"friends_count":2481,"listed_count":0,"created_at":"Thu - Apr 26 05:12:44 +0000 2018","favourites_count":6088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":537,"lang":null,"status":{"created_at":"Wed - Mar 23 19:07:16 +0000 2022","id":1506709178089447437,"id_str":"1506709178089447437","text":"@AngelaRayner - The banks \ud83c\udfe6 should bail us out just like we did for them \ud83d\udcb0\ud83e\udd1f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AngelaRayner","name":"Angela - Rayner","id":222748037,"id_str":"222748037","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506638701912367108,"in_reply_to_status_id_str":"1506638701912367108","in_reply_to_user_id":222748037,"in_reply_to_user_id_str":"222748037","in_reply_to_screen_name":"AngelaRayner","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301221429015392256\/BiWade9K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301221429015392256\/BiWade9K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/989371678990925829\/1540817197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215174987281129473,"id_str":"1215174987281129473","name":"Desiree","screen_name":"dc_descul","location":"Queensland, - Australia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":161,"friends_count":1444,"listed_count":0,"created_at":"Thu - Jan 09 07:34:51 +0000 2020","favourites_count":65624,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4306,"lang":null,"status":{"created_at":"Sat - Mar 26 07:53:07 +0000 2022","id":1507626689118887942,"id_str":"1507626689118887942","text":"RT - @mick_minion: @knarfnamduh @devalara44 @KR2440 @CGWJS54139911 For goodness - sake, they hounded Craig Thompson for months over allegations\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mick_minion","name":"Mick - Minion","id":166328555,"id_str":"166328555","indices":[3,15]},{"screen_name":"knarfnamduh","name":"John - H aka Corvus coronoides","id":95718878,"id_str":"95718878","indices":[17,29]},{"screen_name":"devalara44","name":"Tweety - - its easy, VOTE for ALBANESE","id":26160313,"id_str":"26160313","indices":[30,41]},{"screen_name":"KR2440","name":"K.R. - O''Connell","id":1449983518717612033,"id_str":"1449983518717612033","indices":[42,49]},{"screen_name":"CGWJS54139911","name":"ColinGWJS51199415","id":1333969328006283264,"id_str":"1333969328006283264","indices":[50,64]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:58:56 +0000 2022","id":1507250663700701185,"id_str":"1507250663700701185","text":"@knarfnamduh - @devalara44 @KR2440 @CGWJS54139911 For goodness sake, they hounded Craig Thompson - for months over alle\u2026 https:\/\/t.co\/bKy9iZaAMJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"knarfnamduh","name":"John - H aka Corvus coronoides","id":95718878,"id_str":"95718878","indices":[0,12]},{"screen_name":"devalara44","name":"Tweety - - its easy, VOTE for ALBANESE","id":26160313,"id_str":"26160313","indices":[13,24]},{"screen_name":"KR2440","name":"K.R. - O''Connell","id":1449983518717612033,"id_str":"1449983518717612033","indices":[25,32]},{"screen_name":"CGWJS54139911","name":"ColinGWJS51199415","id":1333969328006283264,"id_str":"1333969328006283264","indices":[33,47]}],"urls":[{"url":"https:\/\/t.co\/bKy9iZaAMJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507250663700701185","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507228841575858180,"in_reply_to_status_id_str":"1507228841575858180","in_reply_to_user_id":95718878,"in_reply_to_user_id_str":"95718878","in_reply_to_screen_name":"knarfnamduh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253864110736814082\/9CiUdJn0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253864110736814082\/9CiUdJn0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888559873868218368,"id_str":"888559873868218368","name":"Hns","screen_name":"BuanaHans","location":"Singapore","description":"Confidence - is silent, Insecurities are loud","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":402,"listed_count":0,"created_at":"Sat - Jul 22 00:42:37 +0000 2017","favourites_count":3299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":86,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126398039692701696\/SemeoaZL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126398039692701696\/SemeoaZL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/888559873868218368\/1525672831","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858219077571035136,"id_str":"858219077571035136","name":"Maxi - Prime","screen_name":"ShChang6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":193,"listed_count":0,"created_at":"Sat - Apr 29 07:19:07 +0000 2017","favourites_count":10052,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1204,"lang":null,"status":{"created_at":"Wed - Oct 20 15:01:20 +0000 2021","id":1450839558212362247,"id_str":"1450839558212362247","text":"@ManUtdMEN - Nowhere with Ole","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ManUtdMEN","name":"Man - United News","id":57299064,"id_str":"57299064","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1449408122624294914,"in_reply_to_status_id_str":"1449408122624294914","in_reply_to_user_id":57299064,"in_reply_to_user_id_str":"57299064","in_reply_to_screen_name":"ManUtdMEN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/858223239595663360\/pa4iuvcD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/858223239595663360\/pa4iuvcD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266802765646495750,"id_str":"1266802765646495750","name":"\u1021\u1001\u1019\u1032\u1037\u1019\u103c\u1014\u103a\u1019\u102c","screen_name":"dulc3td3corum","location":"On - the village green","description":"Barrister |\nSound engineer |\nRight arm - medium |\nAmateur cosmologist |\nRussian Troll Hunter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":50,"listed_count":1,"created_at":"Sat - May 30 18:45:59 +0000 2020","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Mon - Feb 28 09:47:33 +0000 2022","id":1498233402067243009,"id_str":"1498233402067243009","text":"@Reuters - \u201cI don\u2019t think, probably, that one should suggest that, in theory, - Russia might possibly want to use nucle\u2026 https:\/\/t.co\/82nYPObjbx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/82nYPObjbx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498233402067243009","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498226563959119875,"in_reply_to_status_id_str":"1498226563959119875","in_reply_to_user_id":1652541,"in_reply_to_user_id_str":"1652541","in_reply_to_screen_name":"Reuters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269068780770136064\/ZgXQiEGZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269068780770136064\/ZgXQiEGZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266802765646495750\/1617621756","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250381934112407554,"id_str":"1250381934112407554","name":"\u59dc\u7acb\u519b","screen_name":"jianglijun2025","location":"China","description":"\u59dc\u7acb\u519b\uff08\u529b\u94a7\uff09\u57fa\u7763\u5f92\u3001\u72ec\u7acb\u4f5c\u5bb6\u3001\u4eba\u6743\u5de5\u4f5c\u8005\u3002\u541b\u5fc3\u5982\u6c34\u81f3\u6e05\u767d\uff0c\u72ec\u996e\u5bc2\u5bde\u4ea6\u5f00\u6000\u3002\u4e00\u751f\u4e0d\u6094\u79e6\u57ce\u4f4f\uff0c\u8d62\u5f97\u6c11\u4e3b\u81ea\u7531\u6765\u3002\u56e0\u4fe1\u884c\u4e49\uff0c\u6d3b\u51fa\u4f7f\u547d\uff01\n13941068999","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4069,"friends_count":2938,"listed_count":9,"created_at":"Wed - Apr 15 11:14:37 +0000 2020","favourites_count":42396,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18891,"lang":null,"status":{"created_at":"Sat - Mar 26 10:27:53 +0000 2022","id":1507665635567828992,"id_str":"1507665635567828992","text":"\u611f\u8c22\u515a\u548c\u653f\u5e9c\uff0c\u6e05\u96f6\u653f\u7b56\u6df1\u5f97\u6c11\u5fc3\u3002\u6bd5\u7adf\u5c1a\u6709\u6781\u4e2a\u522b\u53ef\u4ee5\u4e70\u5230\u83dc\uff0c\u81f3\u4eca\u6ca1\u53d1\u73b0\u54ea\u4e2a\u5c0f\u533a\u997f\u6b7b\u4eba\uff0c\u66f4\u6ca1\u6709\u7fa4\u4f17\u5bf9\u515a\u548c\u653f\u5e9c\u7684\u82f1\u660e\u51b3\u7b56\u6709\u534a\u53e5\u6028\u8a00\uff0c\u6ca1\u6709\u4eba\u8bf4\u574f\u8bdd\u5531\u53cd\u52a8\u6b4c\u66f2\u5199\uff0c\u8db3\u4ee5\u8bc1\u660e\u653f\u5e9c\u6e05\u96f6\u653f\u7b56\u662f\u5bf9\u7684\u3002\u8981\u575a\u6301\u6e05\u96f6\u4e0d\u52a8\u6447\uff0c\u8a93\u4e0e\u75c5\u6bd2\u6597\u4e89\u5230\u5e95\uff01 - https:\/\/t.co\/hCfiKh4YVQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507664224905879558,"id_str":"1507664224905879558","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxMn-YUYAYu9RQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxMn-YUYAYu9RQ.jpg","url":"https:\/\/t.co\/hCfiKh4YVQ","display_url":"pic.twitter.com\/hCfiKh4YVQ","expanded_url":"https:\/\/twitter.com\/jianglijun2025\/status\/1507665635567828992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507664224905879558,"id_str":"1507664224905879558","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxMn-YUYAYu9RQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxMn-YUYAYu9RQ.jpg","url":"https:\/\/t.co\/hCfiKh4YVQ","display_url":"pic.twitter.com\/hCfiKh4YVQ","expanded_url":"https:\/\/twitter.com\/jianglijun2025\/status\/1507665635567828992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497362249970851843\/D_Fn15ZJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497362249970851843\/D_Fn15ZJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250381934112407554\/1647489727","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":112189332,"id_str":"112189332","name":"Sheri","screen_name":"schiodo40","location":"Augusta, - ME","description":"Proud Democrat and member of the Resistance! \ud83c\udf39I - am a 59 year old disabled widow and I paid more taxes than the Former guy - in 2018! No DMs!\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":944,"friends_count":1813,"listed_count":1,"created_at":"Sun - Feb 07 15:16:28 +0000 2010","favourites_count":3016,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2329,"lang":null,"status":{"created_at":"Fri - Mar 25 17:41:18 +0000 2022","id":1507412321592872963,"id_str":"1507412321592872963","text":"@tonyposnanski - Dunkin every time!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507353471363817478,"in_reply_to_status_id_str":"1507353471363817478","in_reply_to_user_id":17642747,"in_reply_to_user_id_str":"17642747","in_reply_to_screen_name":"tonyposnanski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429955468462546950\/WsRkalnN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429955468462546950\/WsRkalnN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112189332\/1625262385","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25168306,"id_str":"25168306","name":"Pam - Harris, PhD APR","screen_name":"PamMHarris","location":"Tennessee","description":"Professor: - Mass Media Law & Ethics. Speech. Journalism. Advertising. Crisis Comm. PR - Strategy. APR from PRSA. Organist, St. Francis of Assisi Episcopal Church.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2137,"friends_count":4594,"listed_count":84,"created_at":"Wed - Mar 18 22:12:37 +0000 2009","favourites_count":24783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26605,"lang":null,"status":{"created_at":"Thu - Mar 24 21:37:45 +0000 2022","id":1507109439442141195,"id_str":"1507109439442141195","text":"RT - @BillNeelyReport: Marc Chagal\u2019s \u2018The Ukrainian family\u2019 painted - in the early years of WW2. It could have been painted yesterday. #Ukraine\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillNeelyReport","name":"Bill - Neely","id":87165980,"id_str":"87165980","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 09:56:58 +0000 2022","id":1506933080271032321,"id_str":"1506933080271032321","text":"Marc - Chagal\u2019s \u2018The Ukrainian family\u2019 painted in the early years - of WW2. It could have been painted yesterday.\u2026 https:\/\/t.co\/4s7tM3ETl5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4s7tM3ETl5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506933080271032321","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2198,"favorite_count":6469,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2198,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502499219566997504\/1fkaaeXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502499219566997504\/1fkaaeXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25168306\/1528929469","profile_link_color":"ABB8C2","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41007823,"id_str":"41007823","name":"Robyn - Crain","screen_name":"rbcrain","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":1204,"listed_count":0,"created_at":"Tue - May 19 00:12:57 +0000 2009","favourites_count":14626,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - Aug 24 03:19:00 +0000 2021","id":1430006701562998789,"id_str":"1430006701562998789","text":"@meena - Cardamom!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"meena","name":"Meena - Harris","id":574795929,"id_str":"574795929","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1429900237607358469,"in_reply_to_status_id_str":"1429900237607358469","in_reply_to_user_id":574795929,"in_reply_to_user_id_str":"574795929","in_reply_to_screen_name":"meena","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23369158,"id_str":"23369158","name":"Jaime - Fonseca \uf8ff","screen_name":"jaimefonseca","location":"iPhone: 41.000961,-8.631632","description":"Marketeer, - Nice guy & Easy going... Love to sail and listen to music (reggae). Apple - is my Lovebrand :) The Business of Business... Is Business!!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":210,"friends_count":1376,"listed_count":1,"created_at":"Sun - Mar 08 23:15:34 +0000 2009","favourites_count":173,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1301,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3405143523\/c99432c44a352dc79a43daf71819bf52_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3405143523\/c99432c44a352dc79a43daf71819bf52_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23369158\/1363788484","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"FF5B14","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4799375888,"id_str":"4799375888","name":"Amy - Williams","screen_name":"naka_willi49","location":"Arizona, USA","description":"human - mom to basset hounds","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":161,"listed_count":0,"created_at":"Fri - Jan 22 18:46:06 +0000 2016","favourites_count":1538,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":526,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376392299890962435\/0pncKSZo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376392299890962435\/0pncKSZo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4799375888\/1466611316","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":786564264819437568,"id_str":"786564264819437568","name":"Hugh - Savage","screen_name":"HughSavage10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":235,"listed_count":0,"created_at":"Thu - Oct 13 13:48:29 +0000 2016","favourites_count":24004,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":107,"lang":null,"status":{"created_at":"Mon - Mar 21 12:41:14 +0000 2022","id":1505887257399644161,"id_str":"1505887257399644161","text":"RT - @paterson_lynn: \u2066@mrjamesob\u2069 \nToday is world Down syndrome day, - would love a retweet to help raise awareness \ud83e\udde6\ud83e\udde6#WDSD22 - https:\/\/t.co\/WKm9\u2026","truncated":false,"entities":{"hashtags":[{"text":"WDSD22","indices":[114,121]}],"symbols":[],"user_mentions":[{"screen_name":"paterson_lynn","name":"Lynn - patterson","id":1496568726,"id_str":"1496568726","indices":[3,17]},{"screen_name":"mrjamesob","name":"James - Oh Brien","id":152656121,"id_str":"152656121","indices":[20,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 11:38:45 +0000 2022","id":1505871530793783299,"id_str":"1505871530793783299","text":"\u2066@mrjamesob\u2069 - \nToday is world Down syndrome day, would love a retweet to help raise awareness - \ud83e\udde6\ud83e\udde6#WDSD22 https:\/\/t.co\/WKm9PIEGsL","truncated":false,"entities":{"hashtags":[{"text":"WDSD22","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"mrjamesob","name":"James - Oh Brien","id":152656121,"id_str":"152656121","indices":[1,11]}],"urls":[],"media":[{"id":1505871420110348290,"id_str":"1505871420110348290","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505871420110348290\/pu\/img\/opKi_UgoHDkrpqWy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505871420110348290\/pu\/img\/opKi_UgoHDkrpqWy.jpg","url":"https:\/\/t.co\/WKm9PIEGsL","display_url":"pic.twitter.com\/WKm9PIEGsL","expanded_url":"https:\/\/twitter.com\/paterson_lynn\/status\/1505871530793783299\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505871420110348290,"id_str":"1505871420110348290","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505871420110348290\/pu\/img\/opKi_UgoHDkrpqWy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505871420110348290\/pu\/img\/opKi_UgoHDkrpqWy.jpg","url":"https:\/\/t.co\/WKm9PIEGsL","display_url":"pic.twitter.com\/WKm9PIEGsL","expanded_url":"https:\/\/twitter.com\/paterson_lynn\/status\/1505871530793783299\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":78597,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505871420110348290\/pu\/vid\/540x540\/H1Agy9wt2QJDh_JS.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505871420110348290\/pu\/pl\/G-kVJSqXMWTws1nl.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505871420110348290\/pu\/vid\/320x320\/EuRt6bzWf9uOgFmz.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505871420110348290\/pu\/vid\/640x640\/uMc1TTPnaPT_yKes.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":407,"favorite_count":680,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":407,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/796255355701460994\/ZClH12-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/796255355701460994\/ZClH12-v_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299469508776792064,"id_str":"1299469508776792064","name":"jacobean67","screen_name":"jacobean67","location":"","description":"Leftist, - artist, musician and gardener. This is my political shit post account.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":267,"listed_count":0,"created_at":"Fri - Aug 28 22:11:05 +0000 2020","favourites_count":2132,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1528,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449586438761295878\/2sx7fJau_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449586438761295878\/2sx7fJau_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299469508776792064\/1634443314","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":293856178,"id_str":"293856178","name":"Frank - Roller Jr","screen_name":"frankrollerjr","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":1805,"listed_count":1,"created_at":"Fri - May 06 03:06:17 +0000 2011","favourites_count":7887,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":618,"lang":null,"status":{"created_at":"Sun - May 23 22:47:38 +0000 2021","id":1396598726056054786,"id_str":"1396598726056054786","text":"@nillythesquid - Congrats girl!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nillythesquid","name":"Nilsa - Prowant","id":387930866,"id_str":"387930866","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1395490685793488898,"in_reply_to_status_id_str":"1395490685793488898","in_reply_to_user_id":387930866,"in_reply_to_user_id_str":"387930866","in_reply_to_screen_name":"nillythesquid","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/774975297993269249\/YtrLU85C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/774975297993269249\/YtrLU85C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293856178\/1473603485","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1152406867806547969,"id_str":"1152406867806547969","name":"Todd - Swink","screen_name":"Blue_Maudezilla","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":319,"listed_count":0,"created_at":"Sat - Jul 20 02:36:22 +0000 2019","favourites_count":6963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":160,"lang":null,"status":{"created_at":"Thu - Mar 24 22:42:48 +0000 2022","id":1507125809391280139,"id_str":"1507125809391280139","text":"RT - @CBSNews: BREAKING: CBS News and The Washington Post have obtained copies - of numerous texts between Supreme Court Justice Clarence Thoma\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBSNews","name":"CBS - News","id":15012486,"id_str":"15012486","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:26:54 +0000 2022","id":1507106706672783364,"id_str":"1507106706672783364","text":"BREAKING: - CBS News and The Washington Post have obtained copies of numerous texts between - Supreme Court Justice Cla\u2026 https:\/\/t.co\/TqjyuEWSsW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TqjyuEWSsW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507106706672783364","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20744,"favorite_count":46802,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20744,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":948307357616001026,"id_str":"948307357616001026","name":"Margaret - Kinsell","screen_name":"KinsellMargaret","location":"USA","description":"I - am a 76 year old grand ma who wants to see the USA I grew up with..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":889,"friends_count":816,"listed_count":0,"created_at":"Tue - Jan 02 21:37:47 +0000 2018","favourites_count":88279,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32996,"lang":null,"status":{"created_at":"Fri - Mar 25 14:21:24 +0000 2022","id":1507362013172883465,"id_str":"1507362013172883465","text":"RT - @BBCTimFranks: BREAKING: confirmation from a Mariupol official of what would - be the single worst loss of life in the Ukraine war so far\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCTimFranks","name":"Tim - Franks","id":117047389,"id_str":"117047389","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:47:10 +0000 2022","id":1507323202527277059,"id_str":"1507323202527277059","text":"BREAKING: - confirmation from a Mariupol official of what would be the single worst loss - of life in the Ukraine war s\u2026 https:\/\/t.co\/q447oMFZsJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/q447oMFZsJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507323202527277059","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6437,"favorite_count":17642,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6437,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349486937221050379\/WyiCsSwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349486937221050379\/WyiCsSwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/948307357616001026\/1610577734","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14623367,"id_str":"14623367","name":"John - Fellows","screen_name":"John_Fellows","location":"Perth, Scotland","description":"Husband, - father, communications professional, politics geek.","url":"https:\/\/t.co\/53009ig08f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/53009ig08f","expanded_url":"http:\/\/www.johnfellows.org","display_url":"johnfellows.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1870,"friends_count":2027,"listed_count":55,"created_at":"Fri - May 02 07:50:08 +0000 2008","favourites_count":5122,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9518,"lang":null,"status":{"created_at":"Tue - Mar 22 10:22:37 +0000 2022","id":1506214758659284995,"id_str":"1506214758659284995","text":"@AndrewALindsay - https:\/\/t.co\/5cdoR8wJSV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewALindsay","name":"Andrew - Lindsay","id":728164463984160768,"id_str":"728164463984160768","indices":[0,15]}],"urls":[],"media":[{"id":1506214751352901633,"id_str":"1506214751352901633","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOcmVgnX0AE9ldj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOcmVgnX0AE9ldj.jpg","url":"https:\/\/t.co\/5cdoR8wJSV","display_url":"pic.twitter.com\/5cdoR8wJSV","expanded_url":"https:\/\/twitter.com\/John_Fellows\/status\/1506214758659284995\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506214751352901633,"id_str":"1506214751352901633","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOcmVgnX0AE9ldj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOcmVgnX0AE9ldj.jpg","url":"https:\/\/t.co\/5cdoR8wJSV","display_url":"pic.twitter.com\/5cdoR8wJSV","expanded_url":"https:\/\/twitter.com\/John_Fellows\/status\/1506214758659284995\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[249,140],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOcmVgnX0AE9ldj.mp4"}]}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506204357427187713,"in_reply_to_status_id_str":"1506204357427187713","in_reply_to_user_id":728164463984160768,"in_reply_to_user_id_str":"728164463984160768","in_reply_to_screen_name":"AndrewALindsay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53744656\/warholizer6634794_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53744656\/warholizer6634794_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14623367\/1398457920","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2543489960,"id_str":"2543489960","name":"mike - kefford","screen_name":"mikekefford","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":211,"listed_count":2,"created_at":"Tue - Jun 03 13:17:20 +0000 2014","favourites_count":378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Mon - Apr 12 07:13:30 +0000 2021","id":1381505740230307843,"id_str":"1381505740230307843","text":"Well - played CTVHC M2 , game played in great spirit and some great talent on show - from both sides @SurreyHockey\u2026 https:\/\/t.co\/OCCimh3WjJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SurreyHockey","name":"Surrey - Hockey Assoc.","id":295607280,"id_str":"295607280","indices":[97,110]}],"urls":[{"url":"https:\/\/t.co\/OCCimh3WjJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1381505740230307843","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1381268178945331208,"quoted_status_id_str":"1381268178945331208","retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489324973572366336\/iDv8B7SZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489324973572366336\/iDv8B7SZ_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22282371,"id_str":"22282371","name":"Cari - Ann McCarthy","screen_name":"filthyinnocent","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":107,"listed_count":0,"created_at":"Sat - Feb 28 18:40:33 +0000 2009","favourites_count":575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Thu - Jun 24 20:19:50 +0000 2021","id":1408157944714194945,"id_str":"1408157944714194945","text":"@ProjectLincoln - Jeff Gololly and Tanya Harding","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1407146580780716041,"in_reply_to_status_id_str":"1407146580780716041","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421111508647428096\/H_1g7jTt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421111508647428096\/H_1g7jTt_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3138071283,"id_str":"3138071283","name":"Chateaubavolier - #FBPE\ud83d\udd77","screen_name":"chateaubavolier","location":"Bordeaux France","description":"Luxury - Accommadation Rental in SW France Stunning 18th Century Chateau antiques and - twinkling chandeliers. This is not the real world nor is it meant to be! 5*","url":"https:\/\/t.co\/sQl75R0t2w","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sQl75R0t2w","expanded_url":"http:\/\/www.chateau-bavolier.com","display_url":"chateau-bavolier.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":635,"listed_count":31,"created_at":"Sun - Apr 05 18:48:44 +0000 2015","favourites_count":7910,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3671,"lang":null,"status":{"created_at":"Thu - Mar 24 00:20:55 +0000 2022","id":1506788112495751169,"id_str":"1506788112495751169","text":"RT - @BBCYaldaHakim: Every evening Ukraine''s President #Zelenskyy addresses his - nation. Tonight for the first time, he did it in English. Cal\u2026","truncated":false,"entities":{"hashtags":[{"text":"Zelenskyy","indices":[53,63]}],"symbols":[],"user_mentions":[{"screen_name":"BBCYaldaHakim","name":"Yalda - Hakim","id":27831488,"id_str":"27831488","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:04:26 +0000 2022","id":1506753765994647556,"id_str":"1506753765994647556","text":"Every - evening Ukraine''s President #Zelenskyy addresses his nation. Tonight for - the first time, he did it in English\u2026 https:\/\/t.co\/DcjfJfvRZd","truncated":true,"entities":{"hashtags":[{"text":"Zelenskyy","indices":[34,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DcjfJfvRZd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506753765994647556","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15499,"favorite_count":55665,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15499,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584796366523785217\/qN5BlEgh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584796366523785217\/qN5BlEgh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3138071283\/1428261297","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":976196584282185728,"id_str":"976196584282185728","name":"Lucy - Edmondson","screen_name":"pongoed1","location":"Raleigh, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":18,"friends_count":2082,"listed_count":0,"created_at":"Tue - Mar 20 20:39:37 +0000 2018","favourites_count":89,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979053428625244161\/qcTQWXWo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979053428625244161\/qcTQWXWo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2975538488,"id_str":"2975538488","name":"$limeflowerb0t\ud83e\uddda\ud83c\udffd","screen_name":"aviannahhh","location":"","description":"","url":"https:\/\/t.co\/k0ZoR65rAW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k0ZoR65rAW","expanded_url":"http:\/\/vsco.co\/aviannah","display_url":"vsco.co\/aviannah","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":767,"friends_count":1152,"listed_count":2,"created_at":"Mon - Jan 12 01:33:46 +0000 2015","favourites_count":23524,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4072,"lang":null,"status":{"created_at":"Wed - Mar 03 21:07:07 +0000 2021","id":1367220013078175745,"id_str":"1367220013078175745","text":"RT - @AndreaRussett: w peace and love, i cannot stop saying w peace and love.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndreaRussett","name":"Andrea - Russett","id":30495613,"id_str":"30495613","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 03 17:34:46 +0000 2021","id":1367166573153185797,"id_str":"1367166573153185797","text":"w - peace and love, i cannot stop saying w peace and love.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":497,"favorite_count":5678,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":497,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496715606883639299\/aRynrn2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496715606883639299\/aRynrn2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975538488\/1645679808","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":410120005,"id_str":"410120005","name":"Michael - Arum","screen_name":"NYC527","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":1062,"listed_count":1,"created_at":"Fri - Nov 11 17:25:32 +0000 2011","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Tue - Dec 21 19:18:45 +0000 2021","id":1473372386053533699,"id_str":"1473372386053533699","text":"@SNYtv - Good luck. Very happy for you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SNYtv","name":"SNY","id":19556528,"id_str":"19556528","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1473354441906655242,"in_reply_to_status_id_str":"1473354441906655242","in_reply_to_user_id":19556528,"in_reply_to_user_id_str":"19556528","in_reply_to_screen_name":"SNYtv","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303778350142386176,"id_str":"1303778350142386176","name":"MartinWatner","screen_name":"MartinWatner","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":138,"listed_count":0,"created_at":"Wed - Sep 09 19:32:51 +0000 2020","favourites_count":2963,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jul 14 23:43:04 +0000 2021","id":1415456846156992513,"id_str":"1415456846156992513","text":"Andy - Serling discusses Saratoga''s opening day amid the coronavirus pandemic https:\/\/t.co\/UwvevCUbB3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UwvevCUbB3","expanded_url":"https:\/\/cbs6albany.com\/sports\/content\/andy-serling-discusses-saratogas-opening-day-amid-the-coronavirus-pandemic","display_url":"cbs6albany.com\/sports\/content\u2026","indices":[76,99]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":259392669,"id_str":"259392669","name":"Chuck - Simundson","screen_name":"chucksimundson","location":"Winnipeg, Manitoba CANADA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":460,"listed_count":3,"created_at":"Tue - Mar 01 20:41:51 +0000 2011","favourites_count":10369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3473,"lang":null,"status":{"created_at":"Fri - Mar 25 02:05:37 +0000 2022","id":1507176848236683268,"id_str":"1507176848236683268","text":"@DrGJackBrown - No.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrGJackBrown","name":"Dr. - Jack Brown","id":212445456,"id_str":"212445456","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507160939866456074,"in_reply_to_status_id_str":"1507160939866456074","in_reply_to_user_id":212445456,"in_reply_to_user_id_str":"212445456","in_reply_to_screen_name":"DrGJackBrown","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620422333505802240\/vnzbRo0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620422333505802240\/vnzbRo0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259392669\/1576338759","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1096920848756338688,"id_str":"1096920848756338688","name":"SQUIDWARDIAN - SCHOOL OF THOUGHT","screen_name":"Ghost_ofRebecca","location":"","description":"She\/they. - 23. Promise I didn''t read Forty Rules and The Alchemist by personal choice. - My course instructor made me.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1006,"friends_count":2868,"listed_count":3,"created_at":"Sat - Feb 16 23:54:44 +0000 2019","favourites_count":35727,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18136,"lang":null,"status":{"created_at":"Thu - Feb 24 04:39:36 +0000 2022","id":1496706353397649411,"id_str":"1496706353397649411","text":"RT - @sanakhusri: im so so thankful that y''all have helped every time i post about - queer people in need; so please share\/retweet this too \ud83c\udf38.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sanakhusri","name":"sana","id":1029830033454583808,"id_str":"1029830033454583808","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 23 16:31:58 +0000 2022","id":1496523238997954564,"id_str":"1496523238997954564","text":"im - so so thankful that y''all have helped every time i post about queer people - in need; so please share\/retweet this\u2026 https:\/\/t.co\/BEJkjdxweM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BEJkjdxweM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496523238997954564","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":53,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":59,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442123607849594885\/OOzhmkq8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442123607849594885\/OOzhmkq8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096920848756338688\/1611770448","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1190370398228975616,"id_str":"1190370398228975616","name":"Observer","screen_name":"Observer24_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":342,"listed_count":0,"created_at":"Fri - Nov 01 20:50:11 +0000 2019","favourites_count":2067,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Fri - Apr 02 00:47:09 +0000 2021","id":1377784636114264068,"id_str":"1377784636114264068","text":"RT - @MittRomney: A Senate evenly split between both parties and a bare Democratic - House majority are hardly a mandate to \u201cgo it alone.\u201d The\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MittRomney","name":"Mitt - Romney","id":50055701,"id_str":"50055701","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Apr 01 19:54:45 +0000 2021","id":1377711051060482058,"id_str":"1377711051060482058","text":"A - Senate evenly split between both parties and a bare Democratic House majority - are hardly a mandate to \u201cgo it alon\u2026 https:\/\/t.co\/pg3ByofOoI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pg3ByofOoI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1377711051060482058","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1126,"favorite_count":9573,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1126,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190380063046406145\/ORrhyiL0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190380063046406145\/ORrhyiL0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1190370398228975616\/1572644083","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21218453,"id_str":"21218453","name":"Connie - Coopersmith","screen_name":"conniecoop","location":"Miami- where else?","description":"writer, - producer, aspiring Bon Vivant fantasies: Triple Crown winner this century, - Lettuce that tastes like Lasagna","url":"http:\/\/t.co\/fU0HLgCZLD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/fU0HLgCZLD","expanded_url":"http:\/\/www.venturata.com","display_url":"venturata.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":527,"friends_count":3554,"listed_count":9,"created_at":"Wed - Feb 18 17:38:06 +0000 2009","favourites_count":92998,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8512,"lang":null,"status":{"created_at":"Wed - Mar 16 22:30:47 +0000 2022","id":1504223682201366531,"id_str":"1504223682201366531","text":"Jane - Fonda could live a life of Splendid Sybaritsm, but opts tonSave the Planet. - And US. https:\/\/t.co\/RZqUhe1pZn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RZqUhe1pZn","expanded_url":"https:\/\/twitter.com\/WandaHammoud\/status\/1504214352752226305","display_url":"twitter.com\/WandaHammoud\/s\u2026","indices":[89,112]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504214352752226305,"quoted_status_id_str":"1504214352752226305","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562321604395696129\/hOLc97ZF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562321604395696129\/hOLc97ZF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21218453\/1422837497","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":263503180,"id_str":"263503180","name":"Bob - Kirkwood","screen_name":"jacquescarteir","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":1635,"listed_count":0,"created_at":"Thu - Mar 10 04:45:20 +0000 2011","favourites_count":8883,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1695,"lang":null,"status":{"created_at":"Fri - Mar 25 00:14:18 +0000 2022","id":1507148837240066048,"id_str":"1507148837240066048","text":"RT - @CBSNews: BREAKING: Copies of text messages obtained by CBS News and The Washington - Post reveal Ginni Thomas, Justice Clarence Thomas'' w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBSNews","name":"CBS - News","id":15012486,"id_str":"15012486","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:38:03 +0000 2022","id":1507109512863494149,"id_str":"1507109512863494149","text":"BREAKING: - Copies of text messages obtained by CBS News and The Washington Post reveal - Ginni Thomas, Justice Clarenc\u2026 https:\/\/t.co\/C1oq5yU0bE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C1oq5yU0bE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507109512863494149","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.snapstream.com\" rel=\"nofollow\"\u003eSnapStream TV Search\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5964,"favorite_count":14742,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5964,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263503180\/1514604798","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":183488728,"id_str":"183488728","name":"Jake - Kring","screen_name":"Jake_Kring","location":"Arlington, VA","description":"Software - Dev @FaegreDrinker - Tritura, Co-Founder @Hibersense, Founding Angel Investor - @vitalizevc, Computer Engineering @PittTweet","url":"https:\/\/t.co\/8pylrnftuZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8pylrnftuZ","expanded_url":"http:\/\/www.hibersense.com","display_url":"hibersense.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":899,"listed_count":4,"created_at":"Fri - Aug 27 03:23:34 +0000 2010","favourites_count":1480,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Tue - Feb 15 02:18:49 +0000 2022","id":1493409431509422088,"id_str":"1493409431509422088","text":"@eppievojt - @hometownsports2 @PantherLair That''s a good comparison, didn''t realize that. - Perhaps I''m selling him short","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eppievojt","name":"Eppie - Vojt","id":14322771,"id_str":"14322771","indices":[0,10]},{"screen_name":"hometownsports2","name":"all - things Pitt","id":985929920160428032,"id_str":"985929920160428032","indices":[11,27]},{"screen_name":"PantherLair","name":"Chris - Peak","id":61771891,"id_str":"61771891","indices":[28,40]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1493400453127757827,"in_reply_to_status_id_str":"1493400453127757827","in_reply_to_user_id":14322771,"in_reply_to_user_id_str":"14322771","in_reply_to_screen_name":"eppievojt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024659334469509122\/zxFVlveT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024659334469509122\/zxFVlveT_normal.jpg","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":427865650,"id_str":"427865650","name":"LizGo","screen_name":"Lizgo46","location":"","description":"old - gal who loves movies","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":257,"listed_count":0,"created_at":"Sun - Dec 04 02:20:01 +0000 2011","favourites_count":3159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":157,"lang":null,"status":{"created_at":"Wed - Mar 23 03:00:41 +0000 2022","id":1506465931844857858,"id_str":"1506465931844857858","text":"@BoldenSkip - The costumes in Casino were amazing. And I loved Sharon Stones performance.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BoldenSkip","name":"Skip_Bolden - \ud83c\udfac \ud83c\udf9e\ufe0f \ud83c\udf08","id":1368215793952055304,"id_str":"1368215793952055304","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506391102739394565,"in_reply_to_status_id_str":"1506391102739394565","in_reply_to_user_id":1368215793952055304,"in_reply_to_user_id_str":"1368215793952055304","in_reply_to_screen_name":"BoldenSkip","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198332812849557504\/AyiZXaVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198332812849557504\/AyiZXaVf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1111011438758424576,"id_str":"1111011438758424576","name":"Vahidoo","screen_name":"vahidfalsafi","location":"","description":"#Bitcoin - #Ethereum #Solana #Avalanche #NFTCollector \/ NYC Real Estate Agent","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":405,"friends_count":1233,"listed_count":0,"created_at":"Wed - Mar 27 21:05:43 +0000 2019","favourites_count":10154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":357,"lang":null,"status":{"created_at":"Tue - Mar 22 14:06:02 +0000 2022","id":1506270986282414084,"id_str":"1506270986282414084","text":"@DeezNutzNFT - I tried staking mine 3 days ago and it still hasn''t gone through. why is - that?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeezNutzNFT","name":"Deez - NFTs \ud83e\udd5c","id":1437925469043712005,"id_str":"1437925469043712005","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1503119422839754753,"in_reply_to_status_id_str":"1503119422839754753","in_reply_to_user_id":1437925469043712005,"in_reply_to_user_id_str":"1437925469043712005","in_reply_to_screen_name":"DeezNutzNFT","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430665625484025858\/Lfj-K48q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430665625484025858\/Lfj-K48q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":800654144,"id_str":"800654144","name":"Carla - Thue","screen_name":"thue_carla","location":"","description":"Truth seeker - and giver \ud83c\uddfa\ud83c\uddf8 soccer mom \u26bd\ufe0fvolunteer \u2764\ufe0f - Loves the lord \u271d\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":273,"listed_count":0,"created_at":"Mon - Sep 03 15:42:34 +0000 2012","favourites_count":14581,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1320,"lang":null,"status":{"created_at":"Tue - Dec 14 01:53:38 +0000 2021","id":1470572658047733766,"id_str":"1470572658047733766","text":"@LivePDDave1 - New Year\u2019s Resolution needs to come early.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LivePDDave1","name":"LivePDDave - \ud83c\uddfa\ud83c\uddf8 \ud83d\udea8 \ud83e\udd4a","id":1009560837734846464,"id_str":"1009560837734846464","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470441184606625796,"in_reply_to_status_id_str":"1470441184606625796","in_reply_to_user_id":1009560837734846464,"in_reply_to_user_id_str":"1009560837734846464","in_reply_to_screen_name":"LivePDDave1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000407755871\/ac6dbd83838eccf974389bbd1d74439f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000407755871\/ac6dbd83838eccf974389bbd1d74439f_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":959968319255273473,"id_str":"959968319255273473","name":"Judith - Kelly McCormack","screen_name":"JudithKellyMcC1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":148,"listed_count":0,"created_at":"Sun - Feb 04 01:54:17 +0000 2018","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":178,"lang":null,"status":{"created_at":"Fri - Aug 20 22:49:25 +0000 2021","id":1428851693433892864,"id_str":"1428851693433892864","text":"RT - @kimmeruwp: @glennkirschner2 @write2bheard1 I am so freaking angry that there - has been literally NOTHING happening to give us hope that\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kimmeruwp","name":"Kimmy - Browneyed Girl\ud83d\udc99\ud83d\udc9b \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83d\udc99\ud83d\udc9b","id":25629024,"id_str":"25629024","indices":[3,13]},{"screen_name":"glennkirschner2","name":"Glenn - Kirschner","id":1003107003693137921,"id_str":"1003107003693137921","indices":[15,31]},{"screen_name":"write2bheard1","name":"Grannyto4","id":753693711830097920,"id_str":"753693711830097920","indices":[32,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Aug 20 12:18:54 +0000 2021","id":1428693019323162628,"id_str":"1428693019323162628","text":"@glennkirschner2 - @write2bheard1 I am so freaking angry that there has been literally NOTHING - happening to give us h\u2026 https:\/\/t.co\/o7HzR4oue3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"glennkirschner2","name":"Glenn - Kirschner","id":1003107003693137921,"id_str":"1003107003693137921","indices":[0,16]},{"screen_name":"write2bheard1","name":"Grannyto4","id":753693711830097920,"id_str":"753693711830097920","indices":[17,31]}],"urls":[{"url":"https:\/\/t.co\/o7HzR4oue3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1428693019323162628","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1428683550061219841,"in_reply_to_status_id_str":"1428683550061219841","in_reply_to_user_id":1003107003693137921,"in_reply_to_user_id_str":"1003107003693137921","in_reply_to_screen_name":"glennkirschner2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":92,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240398721218641925,"id_str":"1240398721218641925","name":"Jim - Walsh","screen_name":"JimWals05532801","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":471,"listed_count":0,"created_at":"Wed - Mar 18 22:05:01 +0000 2020","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240400140281819137\/TmAe2oB1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240400140281819137\/TmAe2oB1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2523327060,"id_str":"2523327060","name":"Typhoon - Investigations","screen_name":"TyphoonPI","location":"Temple, TX","description":"Martin - Aspen, investigator","url":"https:\/\/t.co\/3JLuqwZNcO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3JLuqwZNcO","expanded_url":"http:\/\/noneofyourbusiness.com","display_url":"noneofyourbusiness.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":1363,"listed_count":5,"created_at":"Sun - May 25 19:39:57 +0000 2014","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5005,"lang":null,"status":{"created_at":"Fri - Mar 25 14:13:54 +0000 2022","id":1507360128684773377,"id_str":"1507360128684773377","text":"@OnStar - I need directions and o star keeps hanging up on me.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OnStar","name":"OnStar","id":43193105,"id_str":"43193105","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":43193105,"in_reply_to_user_id_str":"43193105","in_reply_to_screen_name":"OnStar","geo":null,"coordinates":null,"place":{"id":"1c69a67ad480e1b1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1c69a67ad480e1b1.json","place_type":"city","name":"Houston","full_name":"Houston, - TX","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-95.823268,29.522325],[-95.069705,29.522325],[-95.069705,30.1546646],[-95.823268,30.1546646]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339673379893358605\/VRBdRaUn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339673379893358605\/VRBdRaUn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2523327060\/1608238000","profile_link_color":"C15953","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2193530084,"id_str":"2193530084","name":"Henry - Mantel","screen_name":"MantelHenry","location":"Los Angeles, CA","description":"Political - progressive | Eviction Defense Attorney | Jew-ish | House music fan | He\/Him - | Opinions my own.","url":"https:\/\/t.co\/NWcjzRn9c3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NWcjzRn9c3","expanded_url":"https:\/\/politicsincontext.blogspot.com\/","display_url":"politicsincontext.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":1095,"listed_count":1,"created_at":"Thu - Nov 14 04:47:37 +0000 2013","favourites_count":21663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2898,"lang":null,"status":{"created_at":"Sat - Mar 26 03:30:19 +0000 2022","id":1507560553442529287,"id_str":"1507560553442529287","text":"RT - @wokeglobaltimes: holy shit he''s not lying\n\nI couldn''t find any record - of \"Julius\" Pringles before December 2006, when this edit was mad\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wokeglobaltimes","name":"Jake - Eberts \"Uncle Sam''s Think Tank Gigolo\"","id":1350312231649636353,"id_str":"1350312231649636353","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:19:38 +0000 2022","id":1507210574970728459,"id_str":"1507210574970728459","text":"holy - shit he''s not lying\n\nI couldn''t find any record of \"Julius\" Pringles - before December 2006, when this edit was\u2026 https:\/\/t.co\/wB7T94gFfm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wB7T94gFfm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507210574970728459","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506254119421493255,"quoted_status_id_str":"1506254119421493255","retweet_count":1839,"favorite_count":11199,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506254119421493255,"quoted_status_id_str":"1506254119421493255","retweet_count":1839,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230654222997303298\/LJ-e6z7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230654222997303298\/LJ-e6z7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193530084\/1596183861","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1209547662376284160,"id_str":"1209547662376284160","name":"Adam - Lolo","screen_name":"AdamLolo15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":366,"listed_count":0,"created_at":"Tue - Dec 24 18:53:59 +0000 2019","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":191063340,"id_str":"191063340","name":"Christine - Seifert","screen_name":"MeanChristy","location":"Salt Lake City, UT","description":"Author, - professor, reader, murder hornet.","url":"https:\/\/t.co\/QWMl0KxuKg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QWMl0KxuKg","expanded_url":"https:\/\/ladyprofessorreads.com\/","display_url":"ladyprofessorreads.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":252,"listed_count":1,"created_at":"Wed - Sep 15 14:36:41 +0000 2010","favourites_count":1074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":245,"lang":null,"status":{"created_at":"Wed - Mar 23 19:08:05 +0000 2022","id":1506709384553922563,"id_str":"1506709384553922563","text":"According - to an email I just received, an Important Business Person has reviewed my - credentials and finds I''m the p\u2026 https:\/\/t.co\/Vdus9xyqxh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Vdus9xyqxh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506709384553922563","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364704382248361984\/IYbIbz_e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364704382248361984\/IYbIbz_e_normal.jpg","profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276198382248382464,"id_str":"1276198382248382464","name":"George","screen_name":"George18299245","location":"","description":"has - arrived u","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":218,"listed_count":0,"created_at":"Thu - Jun 25 17:00:07 +0000 2020","favourites_count":761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2974,"lang":null,"status":{"created_at":"Mon - May 31 23:21:37 +0000 2021","id":1399506379711393794,"id_str":"1399506379711393794","text":"RT - @Helper37216548: Remember what @MaziNnamdiKanu said on Friday, when you finished - writing your junk, you must sit at home on Monday.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Helper37216548","name":"Helpers","id":1267412417941774338,"id_str":"1267412417941774338","indices":[3,18]},{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[34,49]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 31 11:37:35 +0000 2021","id":1399329206182592512,"id_str":"1399329206182592512","text":"Remember - what @MaziNnamdiKanu said on Friday, when you finished writing your junk, - you must sit at home on Monday.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":417,"favorite_count":592,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":417,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276198674100609025\/sC19x2MA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276198674100609025\/sC19x2MA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267178912376905730,"id_str":"1267178912376905730","name":"Josi - Sansom","screen_name":"JosiSansom","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":1073,"listed_count":0,"created_at":"Sun - May 31 19:39:59 +0000 2020","favourites_count":1520,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Fri - Jul 23 02:39:07 +0000 2021","id":1418400251556339716,"id_str":"1418400251556339716","text":"@Ijustcant2020 - @thekjohnston #clearthelists","truncated":false,"entities":{"hashtags":[{"text":"clearthelists","indices":[29,43]}],"symbols":[],"user_mentions":[{"screen_name":"Ijustcant2020","name":"Stef","id":44466582,"id_str":"44466582","indices":[0,14]},{"screen_name":"thekjohnston","name":"kristen - johnston","id":426962696,"id_str":"426962696","indices":[15,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1417524979524984835,"in_reply_to_status_id_str":"1417524979524984835","in_reply_to_user_id":44466582,"in_reply_to_user_id_str":"44466582","in_reply_to_screen_name":"Ijustcant2020","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267179402154123266\/gP_EMx8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267179402154123266\/gP_EMx8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267178912376905730\/1603071587","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176981355370033153,"id_str":"1176981355370033153","name":"NordicNancy","screen_name":"NancyMcArthur7","location":"","description":"Committed - to a kinder world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":107,"listed_count":0,"created_at":"Wed - Sep 25 22:06:51 +0000 2019","favourites_count":8172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3617,"lang":null,"status":{"created_at":"Thu - Mar 24 21:45:26 +0000 2022","id":1507111372265566208,"id_str":"1507111372265566208","text":"RT - @OccupyDemocrats: BREAKING: President Biden will name Chef Jos\u00e9 Andr\u00e9s, - a man known for his generous charity and activism, to replace MA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:19:47 +0000 2022","id":1507044517936918530,"id_str":"1507044517936918530","text":"BREAKING: - President Biden will name Chef Jos\u00e9 Andr\u00e9s, a man known for his - generous charity and activism, to replace\u2026 https:\/\/t.co\/j38ct2yYcx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j38ct2yYcx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507044517936918530","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14492,"favorite_count":60157,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14492,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276308789856174081\/AtSlk3WG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276308789856174081\/AtSlk3WG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3853944323,"id_str":"3853944323","name":"Jill - Patterson","screen_name":"jillpatt0418","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":388,"listed_count":1,"created_at":"Sat - Oct 03 16:45:28 +0000 2015","favourites_count":10816,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Thu - Mar 24 14:39:10 +0000 2022","id":1507004098519965700,"id_str":"1507004098519965700","text":"@CRileyNL - Feel better. Stay warm.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CRileyNL","name":"Claudette - Riley","id":156131309,"id_str":"156131309","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506990242234048520,"in_reply_to_status_id_str":"1506990242234048520","in_reply_to_user_id":156131309,"in_reply_to_user_id_str":"156131309","in_reply_to_screen_name":"CRileyNL","geo":null,"coordinates":null,"place":{"id":"017f694e6fedad16","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/017f694e6fedad16.json","place_type":"city","name":"Ozark","full_name":"Ozark, - MO","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-93.26591,36.9910783],[-93.1771581,36.9910783],[-93.1771581,37.082128],[-93.26591,37.082128]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650353295173791744\/dYO_sn5R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650353295173791744\/dYO_sn5R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32579257,"id_str":"32579257","name":"charlene - gatchell","screen_name":"charlenegatc","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":703,"listed_count":0,"created_at":"Fri - Apr 17 20:56:08 +0000 2009","favourites_count":511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Sun - Sep 19 18:21:35 +0000 2021","id":1439655929872625673,"id_str":"1439655929872625673","text":"RT - @MarineGOfficial: This is how a starfish walks in her natural element! \u2b50\n\nNature - holds so many wonders beyond our belief. Protect her in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 19 03:30:06 +0000 2021","id":1439431579810549761,"id_str":"1439431579810549761","text":"This - is how a starfish walks in her natural element! \u2b50\n\nNature holds so - many wonders beyond our belief. Protect her\u2026 https:\/\/t.co\/ZNy2PAC58F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZNy2PAC58F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1439431579810549761","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1294,"favorite_count":5652,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1294,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20484041,"id_str":"20484041","name":"Judy","screen_name":"jumperl","location":"Hot - Springs AR","description":"kickin'' ass & takin'' names, getting by with me - & my dog, cat, goldfish & chickens. artist, underwater scenes & political - specialty #resist #swat. NO DMs PERIOD","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2916,"friends_count":4559,"listed_count":6,"created_at":"Tue - Feb 10 01:29:41 +0000 2009","favourites_count":8310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":51800,"lang":null,"status":{"created_at":"Sat - Mar 26 01:51:32 +0000 2022","id":1507535693257531394,"id_str":"1507535693257531394","text":"@jesflres - Yes me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461734095608819714\/clAuVH5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461734095608819714\/clAuVH5S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36629538,"id_str":"36629538","name":"Nick - Crosby","screen_name":"nickwc58","location":"Nottingham","description":"Family - man.Wife Christina,Daughter & Son and four grandchildren.Nottingham Forest - fan since I was 7.Loves to travel.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":766,"listed_count":2,"created_at":"Thu - Apr 30 09:37:26 +0000 2009","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"status":{"created_at":"Fri - Mar 18 16:54:06 +0000 2022","id":1504863726217969669,"id_str":"1504863726217969669","text":"@NFFC - @NFFCNYC On holiday in Tenerife. Of all the weeks to be away, just my luck.Fingers - crossed for a Colin Barrett moment #nffc","truncated":false,"entities":{"hashtags":[{"text":"nffc","indices":[124,129]}],"symbols":[],"user_mentions":[{"screen_name":"NFFC","name":"Nottingham - Forest FC","id":39754653,"id_str":"39754653","indices":[0,5]},{"screen_name":"NFFCNYC","name":"NFFCNYC","id":801725617,"id_str":"801725617","indices":[6,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504856445342388226,"in_reply_to_status_id_str":"1504856445342388226","in_reply_to_user_id":39754653,"in_reply_to_user_id_str":"39754653","in_reply_to_screen_name":"NFFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439012738304446466\/NzsWXnUe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439012738304446466\/NzsWXnUe_normal.jpeg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":177060655,"id_str":"177060655","name":"Marchala - Sssss","screen_name":"NativeFlaGal","location":" Florida","description":"Native - Floridian. Florida grad. Liberal thinker. Left corporate payroll for government - job. Retired!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":564,"listed_count":2,"created_at":"Wed - Aug 11 04:10:01 +0000 2010","favourites_count":8389,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3425,"lang":null,"status":{"created_at":"Sat - Mar 26 01:16:37 +0000 2022","id":1507526906660405253,"id_str":"1507526906660405253","text":"@MSNBC - @AriMelber I guess we\u2019ve all been duped all these years\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[0,6]},{"screen_name":"AriMelber","name":"Ari - Melber, MSNBC","id":15441965,"id_str":"15441965","indices":[7,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507523235847577600,"in_reply_to_status_id_str":"1507523235847577600","in_reply_to_user_id":2836421,"in_reply_to_user_id_str":"2836421","in_reply_to_screen_name":"MSNBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158396717890506753\/glngYqMC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158396717890506753\/glngYqMC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230489279614324736,"id_str":"1230489279614324736","name":"Joe-sam","screen_name":"joe_sammy1","location":"World - ","description":"Young Gooner \ud83c\uddec\ud83c\udded. Believe in actions - not words","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":783,"friends_count":3416,"listed_count":2,"created_at":"Thu - Feb 20 13:48:22 +0000 2020","favourites_count":2121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":323,"lang":null,"status":{"created_at":"Fri - Mar 25 21:19:51 +0000 2022","id":1507467322738442242,"id_str":"1507467322738442242","text":"@onehdtelevision - Ghana hard","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"onehdtelevision","name":"ONE - HD Televison","id":1445046048167235593,"id_str":"1445046048167235593","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507286646441586689,"in_reply_to_status_id_str":"1507286646441586689","in_reply_to_user_id":1445046048167235593,"in_reply_to_user_id_str":"1445046048167235593","in_reply_to_screen_name":"onehdtelevision","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1373197916534366211\/O6Xf0s-r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1373197916534366211\/O6Xf0s-r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230489279614324736\/1625223219","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":317407381,"id_str":"317407381","name":"Elaine - Porterfield","screen_name":"PorterfieldE","location":"Seattle","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":51,"friends_count":278,"listed_count":1,"created_at":"Tue - Jun 14 22:00:38 +0000 2011","favourites_count":34170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2888,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1061047266671087617\/cHY5J7Dw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061047266671087617\/cHY5J7Dw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1120482561711595520,"id_str":"1120482561711595520","name":"NN","screen_name":"DrWho_GOT","location":"Denver, - CO","description":"Against Bullying in All Forms; Advocate of Privacy; Advocate - of equality, democracy and freedom of speech;","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":176,"listed_count":0,"created_at":"Tue - Apr 23 00:20:35 +0000 2019","favourites_count":143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Thu - Oct 28 15:28:05 +0000 2021","id":1453745394412838920,"id_str":"1453745394412838920","text":"Why - it''s so hard to tax wealth - Axios https:\/\/t.co\/vdTDoxBSBH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vdTDoxBSBH","expanded_url":"https:\/\/www.axios.com\/us-wealth-tax-difficulties-fba21625-1e86-4e1d-b8ff-9f576655883b.html","display_url":"axios.com\/us-wealth-tax-\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2352685964,"id_str":"2352685964","name":"Laurie - Lee\ud83d\udcab\ud83c\udf3b\ud83d\udd4a","screen_name":"Dragonladylee93","location":"California, - USA","description":"#FormerResister \ud83c\udf0a #FullyVaxxed\ud83d\udc89#IStandwithUkraine\ud83c\udf3b#WearaMaskPeople - \ud83d\ude37Mom, Grandma and freedom fighter \u262e\ufe0f\ud83e\uddb9\u200d\u2640\ufe0f - Love is the Law, Love under Will","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":1175,"listed_count":0,"created_at":"Thu - Feb 20 04:12:36 +0000 2014","favourites_count":29155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":641,"lang":null,"status":{"created_at":"Fri - Mar 25 03:29:34 +0000 2022","id":1507197977697271808,"id_str":"1507197977697271808","text":"RT - @caslernoel: Is this the moment of clarity our nation needs to realize the - political rot has eaten all the way up from the baseboards in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caslernoel","name":"NoelCaslerComedy","id":1073047860260814848,"id_str":"1073047860260814848","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:35:01 +0000 2022","id":1507138948753240072,"id_str":"1507138948753240072","text":"Is - this the moment of clarity our nation needs to realize the political rot has - eaten all the way up from the baseb\u2026 https:\/\/t.co\/C4yZ2vsXmQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C4yZ2vsXmQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507138948753240072","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3186,"favorite_count":12735,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3186,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237140150989107201\/M9CVjdNN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237140150989107201\/M9CVjdNN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352685964\/1583792173","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":951218390106017795,"id_str":"951218390106017795","name":"casey - horton","screen_name":"casey54385025","location":"Hurricane, WV","description":"love","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":830,"listed_count":0,"created_at":"Wed - Jan 10 22:25:11 +0000 2018","favourites_count":475,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Thu - Mar 10 00:07:17 +0000 2022","id":1501711249733832705,"id_str":"1501711249733832705","text":"@IAmSteveHarvey - 7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAmSteveHarvey","name":"Steve - Harvey","id":96846955,"id_str":"96846955","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501416411075211265,"in_reply_to_status_id_str":"1501416411075211265","in_reply_to_user_id":96846955,"in_reply_to_user_id_str":"96846955","in_reply_to_screen_name":"IAmSteveHarvey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221222737147916288\/-CXipMfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221222737147916288\/-CXipMfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951218390106017795\/1552515795","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312837100073615360,"id_str":"1312837100073615360","name":"Nathan - Mount","screen_name":"NathanMount9","location":"","description":"18\nWarick - Uni student\nCOYS\n@na.mount","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":635,"listed_count":0,"created_at":"Sun - Oct 04 19:29:04 +0000 2020","favourites_count":2050,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1113,"lang":null,"status":{"created_at":"Wed - Dec 09 19:28:25 +0000 2020","id":1336754593821302784,"id_str":"1336754593821302784","text":"RT - @CursedFootball: https:\/\/t.co\/fKpKi7NCLJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CursedFootball","name":"football - images that precede unfortunate events","id":1129767161063444481,"id_str":"1129767161063444481","indices":[3,18]}],"urls":[],"media":[{"id":1336682917976805381,"id_str":"1336682917976805381","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","url":"https:\/\/t.co\/fKpKi7NCLJ","display_url":"pic.twitter.com\/fKpKi7NCLJ","expanded_url":"https:\/\/twitter.com\/CursedFootball\/status\/1336682922158460930\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":1529,"resize":"fit"},"medium":{"w":918,"h":1200,"resize":"fit"},"small":{"w":520,"h":680,"resize":"fit"}},"source_status_id":1336682922158460930,"source_status_id_str":"1336682922158460930","source_user_id":1129767161063444481,"source_user_id_str":"1129767161063444481"}]},"extended_entities":{"media":[{"id":1336682917976805381,"id_str":"1336682917976805381","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","url":"https:\/\/t.co\/fKpKi7NCLJ","display_url":"pic.twitter.com\/fKpKi7NCLJ","expanded_url":"https:\/\/twitter.com\/CursedFootball\/status\/1336682922158460930\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":1529,"resize":"fit"},"medium":{"w":918,"h":1200,"resize":"fit"},"small":{"w":520,"h":680,"resize":"fit"}},"source_status_id":1336682922158460930,"source_status_id_str":"1336682922158460930","source_user_id":1129767161063444481,"source_user_id_str":"1129767161063444481"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 09 14:43:37 +0000 2020","id":1336682922158460930,"id_str":"1336682922158460930","text":"https:\/\/t.co\/fKpKi7NCLJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1336682917976805381,"id_str":"1336682917976805381","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","url":"https:\/\/t.co\/fKpKi7NCLJ","display_url":"pic.twitter.com\/fKpKi7NCLJ","expanded_url":"https:\/\/twitter.com\/CursedFootball\/status\/1336682922158460930\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":1529,"resize":"fit"},"medium":{"w":918,"h":1200,"resize":"fit"},"small":{"w":520,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1336682917976805381,"id_str":"1336682917976805381","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EozaCCdXEAUlnU4.jpg","url":"https:\/\/t.co\/fKpKi7NCLJ","display_url":"pic.twitter.com\/fKpKi7NCLJ","expanded_url":"https:\/\/twitter.com\/CursedFootball\/status\/1336682922158460930\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1170,"h":1529,"resize":"fit"},"medium":{"w":918,"h":1200,"resize":"fit"},"small":{"w":520,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":353,"favorite_count":14881,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":353,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1334419757915910145\/CnAva2HX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1334419757915910145\/CnAva2HX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312837100073615360\/1604162903","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1061428888105074688,"id_str":"1061428888105074688","name":"Ley - Hyppolite","screen_name":"HyppoliteLey","location":"Tabarre","description":"Passion\u00e9 - de Sports \n&Culture .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":1979,"listed_count":0,"created_at":"Sun - Nov 11 01:22:22 +0000 2018","favourites_count":1914,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1291,"lang":null,"status":{"created_at":"Fri - Mar 25 17:08:12 +0000 2022","id":1507403993496104961,"id_str":"1507403993496104961","text":"RT - @LegionHoops: If Michael Jordan played the same amount of games as LeBron, - and kept his same averages on the Bulls, he\u2019d have 41K points\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LegionHoops","name":"Legion - Hoops","id":291438698,"id_str":"291438698","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:19:40 +0000 2022","id":1507255881422934022,"id_str":"1507255881422934022","text":"If - Michael Jordan played the same amount of games as LeBron, and kept his same - averages on the Bulls, he\u2019d have 41K\u2026 https:\/\/t.co\/cKVaZJY59N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cKVaZJY59N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507255881422934022","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":295,"favorite_count":2141,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":295,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496544141798481927\/1Jc2IINn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496544141798481927\/1Jc2IINn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061428888105074688\/1542213572","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235203038454976515,"id_str":"1235203038454976515","name":"Used - Balance","screen_name":"llSDGBll","location":"NC","description":"Get the fuck - out of here.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":363,"friends_count":4669,"listed_count":0,"created_at":"Wed - Mar 04 13:58:55 +0000 2020","favourites_count":69086,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14789,"lang":null,"status":{"created_at":"Sat - Mar 26 09:13:55 +0000 2022","id":1507647021771067392,"id_str":"1507647021771067392","text":"RT - @xRamneet: @JeffHardyStan Time for you to listen to future \nAnd become Shimon - Hayut https:\/\/t.co\/PeCyuvxxik","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xRamneet","name":"Ramneet","id":1476365005,"id_str":"1476365005","indices":[3,12]},{"screen_name":"JeffHardyStan","name":"Reece\ud83e\udee1","id":1216913966204477441,"id_str":"1216913966204477441","indices":[14,28]}],"urls":[],"media":[{"id":1507500040985612289,"id_str":"1507500040985612289","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1453,"h":1694,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"},"medium":{"w":1029,"h":1200,"resize":"fit"}},"source_status_id":1507500047767781378,"source_status_id_str":"1507500047767781378","source_user_id":1476365005,"source_user_id_str":"1476365005"}]},"extended_entities":{"media":[{"id":1507500040985612289,"id_str":"1507500040985612289","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1453,"h":1694,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"},"medium":{"w":1029,"h":1200,"resize":"fit"}},"source_status_id":1507500047767781378,"source_status_id_str":"1507500047767781378","source_user_id":1476365005,"source_user_id_str":"1476365005"},{"id":1507500040981385220,"id_str":"1507500040981385220","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNmVEAQ2jO1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNmVEAQ2jO1.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":680,"resize":"fit"},"medium":{"w":634,"h":694,"resize":"fit"}},"source_status_id":1507500047767781378,"source_status_id_str":"1507500047767781378","source_user_id":1476365005,"source_user_id_str":"1476365005"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:29:54 +0000 2022","id":1507500047767781378,"id_str":"1507500047767781378","text":"@JeffHardyStan - Time for you to listen to future \nAnd become Shimon Hayut https:\/\/t.co\/PeCyuvxxik","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JeffHardyStan","name":"Reece\ud83e\udee1","id":1216913966204477441,"id_str":"1216913966204477441","indices":[0,14]}],"urls":[],"media":[{"id":1507500040985612289,"id_str":"1507500040985612289","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1453,"h":1694,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"},"medium":{"w":1029,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507500040985612289,"id_str":"1507500040985612289","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNnVkAEdF70.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1453,"h":1694,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"},"medium":{"w":1029,"h":1200,"resize":"fit"}}},{"id":1507500040981385220,"id_str":"1507500040981385220","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu3TNmVEAQ2jO1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu3TNmVEAQ2jO1.jpg","url":"https:\/\/t.co\/PeCyuvxxik","display_url":"pic.twitter.com\/PeCyuvxxik","expanded_url":"https:\/\/twitter.com\/xRamneet\/status\/1507500047767781378\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":680,"resize":"fit"},"medium":{"w":634,"h":694,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507409949437083667,"in_reply_to_status_id_str":"1507409949437083667","in_reply_to_user_id":1216913966204477441,"in_reply_to_user_id_str":"1216913966204477441","in_reply_to_screen_name":"JeffHardyStan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":43,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504253846515814405\/3cpVjh9e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504253846515814405\/3cpVjh9e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1235203038454976515\/1644876155","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37578960,"id_str":"37578960","name":"Nicolas - Nunes","screen_name":"NicolasNunes","location":"Brazil","description":"\ud83c\uddf5\ud83c\uddea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":201,"friends_count":1497,"listed_count":2,"created_at":"Mon - May 04 03:01:48 +0000 2009","favourites_count":33374,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":604,"lang":null,"status":{"created_at":"Thu - Mar 24 03:04:59 +0000 2022","id":1506829399378780166,"id_str":"1506829399378780166","text":"@doncosta_ - Rebaxemo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"doncosta_","name":"GC.","id":1336308039335415809,"id_str":"1336308039335415809","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506817970164670470,"in_reply_to_status_id_str":"1506817970164670470","in_reply_to_user_id":1336308039335415809,"in_reply_to_user_id_str":"1336308039335415809","in_reply_to_screen_name":"doncosta_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454233218824220673\/ef7SwKGm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454233218824220673\/ef7SwKGm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37578960\/1605920981","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":179033490,"id_str":"179033490","name":"Jo - Swadkin","screen_name":"jaspergreenwich","location":"Sevenoaks","description":"I - was an English Teacher, but have taken to Family History in a big way, frequently - visiting the Isle of Man, which I love. Now I try to fight B.....!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":354,"friends_count":731,"listed_count":1,"created_at":"Mon - Aug 16 09:47:06 +0000 2010","favourites_count":98473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43678,"lang":null,"status":{"created_at":"Fri - Mar 25 19:49:50 +0000 2022","id":1507444668501479434,"id_str":"1507444668501479434","text":"RT - @HuffPostPol: President Joe Biden paid tribute to Poland for giving refuge - to more than 2 million Ukrainians who have fled their country\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HuffPostPol","name":"HuffPost - Politics","id":15458694,"id_str":"15458694","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:37:35 +0000 2022","id":1507426487124770833,"id_str":"1507426487124770833","text":"President - Joe Biden paid tribute to Poland for giving refuge to more than 2 million - Ukrainians who have fled their\u2026 https:\/\/t.co\/aCiFDxH3nD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aCiFDxH3nD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507426487124770833","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/pubhub.buzzfeed.com\" rel=\"nofollow\"\u003ePubHub by BuzzFeed\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":31,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":808138039188865025,"id_str":"808138039188865025","name":"Craig - Hutchings","screen_name":"CraigHutchings7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":36,"listed_count":0,"created_at":"Mon - Dec 12 02:34:57 +0000 2016","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265386393481760771,"id_str":"1265386393481760771","name":"futboljock","screen_name":"futboljock1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":83,"listed_count":0,"created_at":"Tue - May 26 20:56:53 +0000 2020","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":483,"lang":null,"status":{"created_at":"Mon - Mar 07 20:59:04 +0000 2022","id":1500939109531013122,"id_str":"1500939109531013122","text":"@GOPChairwoman - look in the mirror and take a look at your face. How disgusting","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPChairwoman","name":"Ronna - McDaniel","id":2353605901,"id_str":"2353605901","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2353605901,"in_reply_to_user_id_str":"2353605901","in_reply_to_screen_name":"GOPChairwoman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2879119217,"id_str":"2879119217","name":"Deidre - A. Kellogg","screen_name":"Syrians_Matter","location":"United States","description":"A - human rights & political activist focusing on the plight of the Syrian people; - all oppressed peoples; and calling out the lies of the current WH Occupant.","url":"https:\/\/t.co\/b0XKnh38MJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b0XKnh38MJ","expanded_url":"http:\/\/about.me\/deidre.kellogg","display_url":"about.me\/deidre.kellogg","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1032,"friends_count":4064,"listed_count":7,"created_at":"Sun - Nov 16 04:43:22 +0000 2014","favourites_count":3224,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4692,"lang":null,"status":{"created_at":"Sat - Mar 19 01:11:10 +0000 2022","id":1504988820688801793,"id_str":"1504988820688801793","text":"@TonySanneh - @amyklobuchar Congratulations! Well-deserved!\nThank you both, @TonySanneh - and @amyklobuchar for your ha\u2026 https:\/\/t.co\/5C8haSqKzg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TonySanneh","name":"Tony - Sanneh","id":324670459,"id_str":"324670459","indices":[0,11]},{"screen_name":"amyklobuchar","name":"Amy - Klobuchar","id":33537967,"id_str":"33537967","indices":[12,25]},{"screen_name":"TonySanneh","name":"Tony - Sanneh","id":324670459,"id_str":"324670459","indices":[74,85]},{"screen_name":"amyklobuchar","name":"Amy - Klobuchar","id":33537967,"id_str":"33537967","indices":[90,103]}],"urls":[{"url":"https:\/\/t.co\/5C8haSqKzg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504988820688801793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504926107132383236,"in_reply_to_status_id_str":"1504926107132383236","in_reply_to_user_id":324670459,"in_reply_to_user_id_str":"324670459","in_reply_to_screen_name":"TonySanneh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222439683013128192\/L9YRTYsw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222439683013128192\/L9YRTYsw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2879119217\/1613861775","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":729646087,"id_str":"729646087","name":"Ken - Connolly","screen_name":"carbonfreeme","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":301,"listed_count":0,"created_at":"Wed - Aug 01 01:09:30 +0000 2012","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Jun 29 17:43:15 +0000 2013","id":351033132750868481,"id_str":"351033132750868481","text":"Yolo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2539298765\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2539298765\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312483624894320641,"id_str":"1312483624894320641","name":"Liberal - Dog Mom","screen_name":"LiberalDogMom1","location":"","description":"liberal - female animal rights","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":107,"friends_count":734,"listed_count":0,"created_at":"Sat - Oct 03 20:05:05 +0000 2020","favourites_count":2692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1747,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326921289391611904\/42rN_PRh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326921289391611904\/42rN_PRh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312483624894320641\/1603126526","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":561749291,"id_str":"561749291","name":"Jonathan","screen_name":"JonathanChen194","location":"Sunnyvale, - CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":193,"friends_count":440,"listed_count":6,"created_at":"Tue - Apr 24 05:26:51 +0000 2012","favourites_count":12412,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23354,"lang":null,"status":{"created_at":"Sat - Mar 26 07:59:08 +0000 2022","id":1507628201031335938,"id_str":"1507628201031335938","text":"RT - @MattWallace888: Press RETWEET if you think Elon Musk should BUY TWITTER!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattWallace888","name":"Matt - Wallace","id":805532293951606785,"id_str":"805532293951606785","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:09:30 +0000 2022","id":1507449619411832854,"id_str":"1507449619411832854","text":"Press - RETWEET if you think Elon Musk should BUY TWITTER!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":380,"favorite_count":943,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":380,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239283420972253186\/WE3dRrof_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239283420972253186\/WE3dRrof_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25117117,"id_str":"25117117","name":"Philip","screen_name":"not_the_drummer","location":"Glasgow, - Scotland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":1515,"listed_count":3,"created_at":"Wed - Mar 18 17:55:09 +0000 2009","favourites_count":3295,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1410,"lang":null,"status":{"created_at":"Mon - Mar 21 16:38:13 +0000 2022","id":1505946896120139780,"id_str":"1505946896120139780","text":"@slats76 - @raykwong Should''ve used three sticks","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"slats76","name":"Pete","id":240205874,"id_str":"240205874","indices":[0,8]},{"screen_name":"raykwong","name":"Ray - \u913a\u7fa1\u83ef","id":14926475,"id_str":"14926475","indices":[9,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505941703622070280,"in_reply_to_status_id_str":"1505941703622070280","in_reply_to_user_id":240205874,"in_reply_to_user_id_str":"240205874","in_reply_to_screen_name":"slats76","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/813173392576749569\/0YfzJg3Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/813173392576749569\/0YfzJg3Z_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":12804102,"id_str":"12804102","name":"Resisting - from afar","screen_name":"le_fino","location":"Paris, France","description":"Husband, - Father of 2, Parisian, Music\/Art\/Literature Afficianado, Marathonian, Author - of The Gramble Chronicles I: Sophie''s Playlist #resist #NotMyPresident","url":"https:\/\/t.co\/VNWTpyC2WN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VNWTpyC2WN","expanded_url":"http:\/\/mfinocchiaro.wordpress.com","display_url":"mfinocchiaro.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1457,"friends_count":4873,"listed_count":30,"created_at":"Mon - Jan 28 22:24:51 +0000 2008","favourites_count":6432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18659,"lang":null,"status":{"created_at":"Sat - Mar 26 06:29:36 +0000 2022","id":1507605669117050882,"id_str":"1507605669117050882","text":"RT - @atrupar: Mentions on Fox News so far today\n\nHunter Biden: 9\nVirginia Thomas: - 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:49:55 +0000 2022","id":1507399391698690055,"id_str":"1507399391698690055","text":"Mentions - on Fox News so far today\n\nHunter Biden: 9\nVirginia Thomas: 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4882,"favorite_count":25549,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4882,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852021287006253056\/c3DSZcQu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852021287006253056\/c3DSZcQu_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1186025007929024518,"id_str":"1186025007929024518","name":"John - Edah","screen_name":"JohnEdah7","location":"","description":"#Cryptocurrency - enthusiast #Bitcoin","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":2147,"listed_count":7,"created_at":"Sun - Oct 20 21:03:17 +0000 2019","favourites_count":1596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Sat - Mar 12 19:49:44 +0000 2022","id":1502733601766612995,"id_str":"1502733601766612995","text":"@mrmacaronii - Thanks boss \ud83d\ude4f\n\n0038398033\nSterling bank","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrmacaronii","name":"DeboMacaroni","id":302413828,"id_str":"302413828","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502732488623464458,"in_reply_to_status_id_str":"1502732488623464458","in_reply_to_user_id":302413828,"in_reply_to_user_id_str":"302413828","in_reply_to_screen_name":"mrmacaronii","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1433873698746875906\/fCB7hdQt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1433873698746875906\/fCB7hdQt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238360384584720385,"id_str":"1238360384584720385","name":"Sid - Abu","screen_name":"SidAbu11","location":"Lagos vs ilorin","description":"Do - what make''s you happy \ud83d\ude0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":1296,"listed_count":0,"created_at":"Fri - Mar 13 07:05:09 +0000 2020","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":148,"lang":null,"status":{"created_at":"Fri - Jun 11 22:27:59 +0000 2021","id":1403479150334185472,"id_str":"1403479150334185472","text":"@Rhynie__ - beautiful","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rhynie__","name":"Temitope","id":1253678144629780480,"id_str":"1253678144629780480","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1403467550495752201,"in_reply_to_status_id_str":"1403467550495752201","in_reply_to_user_id":1253678144629780480,"in_reply_to_user_id_str":"1253678144629780480","in_reply_to_screen_name":"Rhynie__","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238360645084594176\/RNrHWsdx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238360645084594176\/RNrHWsdx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238360384584720385\/1603054045","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34408291,"id_str":"34408291","name":"E - Harris","screen_name":"eharris1of1","location":"Oakland, CA","description":"@Google - by day, but the hustle continues! \ud83d\udcad My Own \ud83c\udf0d Trotter - #Warriors#Raiders Oakland,Ca \ud83e\udd1f\ud83c\udffe Black American \ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/P1BHQb245z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/P1BHQb245z","expanded_url":"https:\/\/m.youtube.com\/channel\/UC76YcmMh1wzj7JfEKL6aiDg","display_url":"m.youtube.com\/channel\/UC76Yc\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":144,"listed_count":0,"created_at":"Wed - Apr 22 21:39:45 +0000 2009","favourites_count":14596,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2312,"lang":null,"status":{"created_at":"Fri - Mar 25 06:28:27 +0000 2022","id":1507242991777292291,"id_str":"1507242991777292291","text":"RT - @BK9419: I want Draymond in Detroit. We will see if people still care about - his opinion","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BK9419","name":"Beke","id":1356805474083958785,"id_str":"1356805474083958785","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:45:46 +0000 2022","id":1507126553326415894,"id_str":"1507126553326415894","text":"I - want Draymond in Detroit. We will see if people still care about his opinion","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":118,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427749995852099587\/QRftt7LQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427749995852099587\/QRftt7LQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34408291\/1607753104","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15489436,"id_str":"15489436","name":"Henry - Ramdass jr","screen_name":"hank72","location":"\u00dcT: 40.710834,-73.985526","description":"Born - in Brooklyn but live in Manhattan. Life long New Yorker","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":437,"friends_count":1974,"listed_count":2,"created_at":"Sat - Jul 19 03:26:59 +0000 2008","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1361,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445562946\/73390086_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445562946\/73390086_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89038602,"id_str":"89038602","name":"stephen - turner","screen_name":"stevo1t","location":"Saltcoats","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":59,"friends_count":611,"listed_count":0,"created_at":"Tue - Nov 10 22:24:09 +0000 2009","favourites_count":6190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":683,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175870607902367746\/sil8AaQD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175870607902367746\/sil8AaQD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89038602\/1623015108","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288196591061479425,"id_str":"1288196591061479425","name":"Echo - Phil Agada","screen_name":"EchoAgada","location":"","description":"my gray - hair","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":148,"listed_count":0,"created_at":"Tue - Jul 28 19:36:53 +0000 2020","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288197024245059594\/sRNhVt-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288197024245059594\/sRNhVt-u_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":821778686856855552,"id_str":"821778686856855552","name":"Gina - Kentopp","screen_name":"GinaKentopp","location":"","description":"Wife\/Mom\/Democrat\/Recovering - Evangelical\/LGBTQIA+ally\/She\/Her\/Hers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":482,"listed_count":0,"created_at":"Wed - Jan 18 17:58:01 +0000 2017","favourites_count":17272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":366,"lang":null,"status":{"created_at":"Fri - Mar 25 14:43:04 +0000 2022","id":1507367469379375105,"id_str":"1507367469379375105","text":"RT - @Patbagley: The wife of a Supreme Court Justice texted 29 times to Trump''s - Chief of Staff to overturn the 2020 election, giving aid and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Patbagley","name":"Pat - Bagley","id":442593662,"id_str":"442593662","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:48:15 +0000 2022","id":1507247976950861825,"id_str":"1507247976950861825","text":"The - wife of a Supreme Court Justice texted 29 times to Trump''s Chief of Staff - to overturn the 2020 election, giving\u2026 https:\/\/t.co\/VLzW8A1z0S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VLzW8A1z0S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507247976950861825","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"bd7c511e9f8bc5da","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bd7c511e9f8bc5da.json","place_type":"city","name":"Salt - Lake City","full_name":"Salt Lake City, UT","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-112.0383105,40.6998952],[-111.795741,40.6998952],[-111.795741,40.8317151],[-112.0383105,40.8317151]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":881,"favorite_count":3741,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":881,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244244240609280000\/_oMbORJN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244244240609280000\/_oMbORJN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":440105398,"id_str":"440105398","name":"AZCNYC","screen_name":"ArnoldZaelCruz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":2042,"listed_count":0,"created_at":"Sun - Dec 18 15:39:37 +0000 2011","favourites_count":11221,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":641,"lang":null,"status":{"created_at":"Fri - Mar 25 11:24:08 +0000 2022","id":1507317402874306564,"id_str":"1507317402874306564","text":"RT - @joncoopertweets: BREAKING: The heroic Snake Island sailors who went viral - for shouting \"Russian warship, go fuck yourself\" were freed o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:20:19 +0000 2022","id":1507316444060700682,"id_str":"1507316444060700682","text":"BREAKING: - The heroic Snake Island sailors who went viral for shouting \"Russian warship, - go fuck yourself\" were free\u2026 https:\/\/t.co\/aMf5DypA8e","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aMf5DypA8e","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507316444060700682","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1032,"favorite_count":5614,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1032,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331090032397082625\/MDIN1qcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331090032397082625\/MDIN1qcg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17689979,"id_str":"17689979","name":"moscow04","screen_name":"moscow04","location":"Moscow, - Russia","description":"New Yorker. Georgetown University 1986. Fluent Russian-speaker\/translator. - FMCG. English Language Editor at Interfax.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":1929,"listed_count":3,"created_at":"Thu - Nov 27 21:50:01 +0000 2008","favourites_count":4923,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1428,"lang":null,"status":{"created_at":"Sat - Mar 26 07:55:51 +0000 2022","id":1507627376393568258,"id_str":"1507627376393568258","text":"@ElizabethRBess - @leonidragozin It does! \ud83c\udf19","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElizabethRBess","name":"ElizabethR - \ud83d\ude4f\ud83c\uddfa\ud83c\udde6","id":820577460886458368,"id_str":"820577460886458368","indices":[0,15]},{"screen_name":"leonidragozin","name":"Leonid - Ragozin","id":29010710,"id_str":"29010710","indices":[16,30]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507626818286678020,"in_reply_to_status_id_str":"1507626818286678020","in_reply_to_user_id":820577460886458368,"in_reply_to_user_id_str":"820577460886458368","in_reply_to_screen_name":"ElizabethRBess","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903099538214400003\/rnqwoB3r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903099538214400003\/rnqwoB3r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17689979\/1647842934","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947961487141818369,"id_str":"947961487141818369","name":"Kaye","screen_name":"Kaye33572017","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":468,"listed_count":0,"created_at":"Mon - Jan 01 22:43:25 +0000 2018","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Tue - Mar 01 03:29:04 +0000 2022","id":1498500539985838080,"id_str":"1498500539985838080","text":"RT - @PhillyMcMahon: Powerful \ud83c\uddfa\ud83c\udde6 https:\/\/t.co\/Y7LGK5Mif5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhillyMcMahon","name":"Philly - Mc Mahon","id":616522334,"id_str":"616522334","indices":[3,17]}],"urls":[],"media":[{"id":1497941879282937857,"id_str":"1497941879282937857","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","url":"https:\/\/t.co\/Y7LGK5Mif5","display_url":"pic.twitter.com\/Y7LGK5Mif5","expanded_url":"https:\/\/twitter.com\/PhillyMcMahon\/status\/1497941884395835403\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"large":{"w":970,"h":2048,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}},"source_status_id":1497941884395835403,"source_status_id_str":"1497941884395835403","source_user_id":616522334,"source_user_id_str":"616522334"}]},"extended_entities":{"media":[{"id":1497941879282937857,"id_str":"1497941879282937857","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","url":"https:\/\/t.co\/Y7LGK5Mif5","display_url":"pic.twitter.com\/Y7LGK5Mif5","expanded_url":"https:\/\/twitter.com\/PhillyMcMahon\/status\/1497941884395835403\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"large":{"w":970,"h":2048,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}},"source_status_id":1497941884395835403,"source_status_id_str":"1497941884395835403","source_user_id":616522334,"source_user_id_str":"616522334"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 14:29:10 +0000 2022","id":1497941884395835403,"id_str":"1497941884395835403","text":"Powerful - \ud83c\uddfa\ud83c\udde6 https:\/\/t.co\/Y7LGK5Mif5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1497941879282937857,"id_str":"1497941879282937857","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","url":"https:\/\/t.co\/Y7LGK5Mif5","display_url":"pic.twitter.com\/Y7LGK5Mif5","expanded_url":"https:\/\/twitter.com\/PhillyMcMahon\/status\/1497941884395835403\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"large":{"w":970,"h":2048,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1497941879282937857,"id_str":"1497941879282937857","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMnCM-jXMAE817t.jpg","url":"https:\/\/t.co\/Y7LGK5Mif5","display_url":"pic.twitter.com\/Y7LGK5Mif5","expanded_url":"https:\/\/twitter.com\/PhillyMcMahon\/status\/1497941884395835403\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"large":{"w":970,"h":2048,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":344,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280886025225744384,"id_str":"1280886025225744384","name":"ky","screen_name":"itskylieag","location":"","description":"Do - I ever cross your mind? she\/her","url":"https:\/\/t.co\/sXLdunJ1cm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sXLdunJ1cm","expanded_url":"https:\/\/dotherightthing.carrd.co\/","display_url":"dotherightthing.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":152,"friends_count":107,"listed_count":1,"created_at":"Wed - Jul 08 15:26:50 +0000 2020","favourites_count":2974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":986,"lang":null,"status":{"created_at":"Thu - Mar 24 04:12:36 +0000 2022","id":1506846418098659332,"id_str":"1506846418098659332","text":"RT - @rruthbb: 9\/10 times my snap memories make me cringe so bad \ud83d\ude2d - like girl what are you doinnnn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rruthbb","name":"ruth","id":2249738726,"id_str":"2249738726","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 15:35:25 +0000 2022","id":1506293478418006025,"id_str":"1506293478418006025","text":"9\/10 - times my snap memories make me cringe so bad \ud83d\ude2d like girl what are - you doinnnn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50111,"favorite_count":374839,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":50111,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353145286030450688\/T_HelGv7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353145286030450688\/T_HelGv7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280886025225744384\/1605393717","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":830917227973136385,"id_str":"830917227973136385","name":"Abubakar - Marzuk","screen_name":"i_amtussy","location":"Kumasi, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":1757,"listed_count":0,"created_at":"Sun - Feb 12 23:11:19 +0000 2017","favourites_count":1011,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Wed - Jun 23 05:17:53 +0000 2021","id":1407568571979517954,"id_str":"1407568571979517954","text":"RT - @TheDailyShow: Here it is, your Moment of Zen. https:\/\/t.co\/4FfHctionR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDailyShow","name":"The - Daily Show","id":158414847,"id_str":"158414847","indices":[3,16]}],"urls":[],"media":[{"id":1407465091755302919,"id_str":"1407465091755302919","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","url":"https:\/\/t.co\/4FfHctionR","display_url":"pic.twitter.com\/4FfHctionR","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1407533872334606336\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1407533872334606336,"source_status_id_str":"1407533872334606336","source_user_id":158414847,"source_user_id_str":"158414847"}]},"extended_entities":{"media":[{"id":1407465091755302919,"id_str":"1407465091755302919","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","url":"https:\/\/t.co\/4FfHctionR","display_url":"pic.twitter.com\/4FfHctionR","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1407533872334606336\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1407533872334606336,"source_status_id_str":"1407533872334606336","source_user_id":158414847,"source_user_id_str":"158414847","video_info":{"aspect_ratio":[16,9],"duration_millis":18051,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/pl\/fcUJyttqamqinjF0.m3u8?tag=14"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/1280x720\/CqIl3tiJwXCsL9xf.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/640x360\/a_PkmzoJdRcQ3C6G.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/480x270\/c8IvY0TdjTns5uq0.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 23 03:00:00 +0000 2021","id":1407533872334606336,"id_str":"1407533872334606336","text":"Here - it is, your Moment of Zen. https:\/\/t.co\/4FfHctionR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1407465091755302919,"id_str":"1407465091755302919","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","url":"https:\/\/t.co\/4FfHctionR","display_url":"pic.twitter.com\/4FfHctionR","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1407533872334606336\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1407465091755302919,"id_str":"1407465091755302919","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4hTC5cXwAAaMXr.jpg","url":"https:\/\/t.co\/4FfHctionR","display_url":"pic.twitter.com\/4FfHctionR","expanded_url":"https:\/\/twitter.com\/TheDailyShow\/status\/1407533872334606336\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":18051,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/pl\/fcUJyttqamqinjF0.m3u8?tag=14"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/1280x720\/CqIl3tiJwXCsL9xf.mp4?tag=14"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/640x360\/a_PkmzoJdRcQ3C6G.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1407465091755302919\/vid\/480x270\/c8IvY0TdjTns5uq0.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":762,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":75,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388089458835214341\/unHSOo-D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388089458835214341\/unHSOo-D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830917227973136385\/1554304310","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":283191634,"id_str":"283191634","name":"Danielle - Schwalbach","screen_name":"danielleerica05","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":185,"friends_count":311,"listed_count":0,"created_at":"Sat - Apr 16 19:37:55 +0000 2011","favourites_count":16834,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12908,"lang":null,"status":{"created_at":"Thu - Dec 24 00:07:02 +0000 2020","id":1341898138576179201,"id_str":"1341898138576179201","text":"@tbonee_steak - and i thought i knew you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tbonee_steak","name":"T","id":219842478,"id_str":"219842478","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1341882408254246912,"in_reply_to_status_id_str":"1341882408254246912","in_reply_to_user_id":219842478,"in_reply_to_user_id_str":"219842478","in_reply_to_screen_name":"tbonee_steak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/803100241587277825\/UuY0ni-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/803100241587277825\/UuY0ni-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283191634\/1465873750","profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2951907833,"id_str":"2951907833","name":"mel - \u2081\u2081.\u2080\u2087.\u2082\u2080\u2082\u2080 | louis the brave","screen_name":"harrysdxm","location":"11:11 - \u25b2\u25b3","description":"\u25df\u033d\u25de\u033d mi nivel de flama es - gal\u00e1ctico. 11\/07\/20 louis is free","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":431,"friends_count":472,"listed_count":8,"created_at":"Tue - Dec 30 21:27:43 +0000 2014","favourites_count":21927,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13348,"lang":null,"status":{"created_at":"Wed - Mar 23 16:44:36 +0000 2022","id":1506673276977750016,"id_str":"1506673276977750016","text":"RT - @SonyMusicUK: Harry\u2019s House. May 20th. #HarryStyles https:\/\/t.co\/KsBdrPrApO","truncated":false,"entities":{"hashtags":[{"text":"HarryStyles","indices":[42,54]}],"symbols":[],"user_mentions":[{"screen_name":"SonyMusicUK","name":"Sony - Music UK","id":111601992,"id_str":"111601992","indices":[3,15]}],"urls":[],"media":[{"id":1506664752042360846,"id_str":"1506664752042360846","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","url":"https:\/\/t.co\/KsBdrPrApO","display_url":"pic.twitter.com\/KsBdrPrApO","expanded_url":"https:\/\/twitter.com\/SonyMusicUK\/status\/1506664757864157191\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1600,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506664757864157191,"source_status_id_str":"1506664757864157191","source_user_id":111601992,"source_user_id_str":"111601992"}]},"extended_entities":{"media":[{"id":1506664752042360846,"id_str":"1506664752042360846","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","url":"https:\/\/t.co\/KsBdrPrApO","display_url":"pic.twitter.com\/KsBdrPrApO","expanded_url":"https:\/\/twitter.com\/SonyMusicUK\/status\/1506664757864157191\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1600,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506664757864157191,"source_status_id_str":"1506664757864157191","source_user_id":111601992,"source_user_id_str":"111601992"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:10:45 +0000 2022","id":1506664757864157191,"id_str":"1506664757864157191","text":"Harry\u2019s - House. May 20th. #HarryStyles https:\/\/t.co\/KsBdrPrApO","truncated":false,"entities":{"hashtags":[{"text":"HarryStyles","indices":[25,37]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506664752042360846,"id_str":"1506664752042360846","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","url":"https:\/\/t.co\/KsBdrPrApO","display_url":"pic.twitter.com\/KsBdrPrApO","expanded_url":"https:\/\/twitter.com\/SonyMusicUK\/status\/1506664757864157191\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1600,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506664752042360846,"id_str":"1506664752042360846","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOi_m_0WQA40uz5.jpg","url":"https:\/\/t.co\/KsBdrPrApO","display_url":"pic.twitter.com\/KsBdrPrApO","expanded_url":"https:\/\/twitter.com\/SonyMusicUK\/status\/1506664757864157191\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1600,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2619,"favorite_count":15524,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2619,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356444019266527232\/ZKLdUshV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356444019266527232\/ZKLdUshV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2951907833\/1610140799","profile_link_color":"7FDBB6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":601418159,"id_str":"601418159","name":"lay$ha - \u2728","screen_name":"prettyaspearls_","location":"\ud83e\uddd8\ud83c\udffe\u200d\u2640\ufe0f","description":"IG: - Carlayshaa_ \ud83d\udc7b: Carlayshaaa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":949,"friends_count":486,"listed_count":1,"created_at":"Thu - Jun 07 00:42:57 +0000 2012","favourites_count":5521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":58829,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:14 +0000 2022","id":1507551974077652996,"id_str":"1507551974077652996","text":"I - literally just said this to my cousin \ud83e\udd23 https:\/\/t.co\/mgsfLPu7Fa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mgsfLPu7Fa","expanded_url":"https:\/\/twitter.com\/dreanicole_\/status\/1507393017736478727","display_url":"twitter.com\/dreanicole_\/st\u2026","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507393017736478727,"quoted_status_id_str":"1507393017736478727","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D7C1EB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500960240405200896\/mONan9wr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500960240405200896\/mONan9wr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601418159\/1646691935","profile_link_color":"1DEBE1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313481854,"id_str":"1313481854","name":"funk_wrench - - the other Joe Mooney","screen_name":"funk_wrench","location":"Baltimore","description":"I - have all my shots. Unlikely to take you seriously if you routinely use any - of these words in your arguments: Rothschild, Soros, Bill Gates, the Jews, - Hunter.","url":"https:\/\/t.co\/H5ckHwvSZw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H5ckHwvSZw","expanded_url":"https:\/\/www.youtube.com\/channel\/UC6AFj8BkBKN6NtPKvQFWwaQ","display_url":"youtube.com\/channel\/UC6AFj\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":1275,"listed_count":1,"created_at":"Fri - Mar 29 11:40:10 +0000 2013","favourites_count":12545,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":930,"lang":null,"status":{"created_at":"Mon - Mar 21 19:11:54 +0000 2022","id":1505985572468314115,"id_str":"1505985572468314115","text":"@JMeanypants - @ssamplern Brilliant.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JMeanypants","name":"Julie - B(rooklyn) Multi Racial Resister\ud83c\uddfa\ud83c\uddf8\ud83c\uddef\ud83c\uddf2\ud83d\ude37","id":1348691356059897861,"id_str":"1348691356059897861","indices":[0,12]},{"screen_name":"ssamplern","name":"Sandy - RN *Vaxxed and Masked* \ud83c\uddfa\ud83c\uddf8\ud83d\udc99\ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\udc9c","id":4441986089,"id_str":"4441986089","indices":[13,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505966978644815883,"in_reply_to_status_id_str":"1505966978644815883","in_reply_to_user_id":1348691356059897861,"in_reply_to_user_id_str":"1348691356059897861","in_reply_to_screen_name":"JMeanypants","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453766008821387270\/spjnq9Sh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453766008821387270\/spjnq9Sh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1313481854\/1608169828","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1055692152854978560,"id_str":"1055692152854978560","name":"TheM","screen_name":"tmmcn12","location":"Philadelphia, - PA","description":"Protect our Constitution, our democracy and our Presidential - elections.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":230,"listed_count":0,"created_at":"Fri - Oct 26 05:26:37 +0000 2018","favourites_count":1835,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":278,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055699841223966720\/UDKsqLJW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055699841223966720\/UDKsqLJW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1055692152854978560\/1543932939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":364888571,"id_str":"364888571","name":"Christian - Jackson","screen_name":"Jackchrisdesign","location":"Nigeria","description":"Architect - | Building Construction supervisor | Entrepreneur. If you can dream it, you - can do it. @jackchris design service limited.","url":"https:\/\/t.co\/9x9aAsTMYf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9x9aAsTMYf","expanded_url":"https:\/\/www.facebook.com\/jackchrisdesign\/","display_url":"facebook.com\/jackchrisdesig\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":608,"listed_count":0,"created_at":"Tue - Aug 30 14:27:54 +0000 2011","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Wed - Mar 02 20:04:42 +0000 2022","id":1499113486584008709,"id_str":"1499113486584008709","text":"@PMBreakingNews - @ewong They''re talking delay as if no human life will be lost.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PMBreakingNews","name":"PM - Breaking News","id":2532127677,"id_str":"2532127677","indices":[0,15]},{"screen_name":"ewong","name":"Edward - Wong","id":39030654,"id_str":"39030654","indices":[16,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499103927069036545,"in_reply_to_status_id_str":"1499103927069036545","in_reply_to_user_id":2532127677,"in_reply_to_user_id_str":"2532127677","in_reply_to_screen_name":"PMBreakingNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482759008213770245\/MEhnO7Hc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482759008213770245\/MEhnO7Hc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364888571\/1604658528","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":767060935915732992,"id_str":"767060935915732992","name":"Dinosour - Slayer \ud83e\udd96\ud83e\udd95\u2694\ufe0f\ud83d\udd2a","screen_name":"my_davialphonce","location":"Tanzania","description":"Believer| - Annah is my vision| Baba paris.. In love with Word of God, Technology, Business,Music - and Medicine. Think Different and Big.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":1383,"listed_count":0,"created_at":"Sat - Aug 20 18:09:13 +0000 2016","favourites_count":19788,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":302,"lang":null,"status":{"created_at":"Wed - Mar 23 08:54:21 +0000 2022","id":1506554933226708993,"id_str":"1506554933226708993","text":"@prosperbartha - @HimidMao @George_Ambangil @MichaelMwebe @salimosaid @geoffiejeff @ibrinho26 - @AliKamwe @GeorgeJob14\u2026 https:\/\/t.co\/dMuXQIkCmG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"prosperbartha","name":"Prosper - Bartalomew","id":879314754556366848,"id_str":"879314754556366848","indices":[0,14]},{"screen_name":"HimidMao","name":"Himid - Mao","id":3645115877,"id_str":"3645115877","indices":[15,24]},{"screen_name":"George_Ambangil","name":"George - Ambangile","id":4110587662,"id_str":"4110587662","indices":[25,41]},{"screen_name":"MichaelMwebe","name":"MichaelMwebe","id":1136854538,"id_str":"1136854538","indices":[42,55]},{"screen_name":"salimosaid","name":"Salim - Masoud Said","id":231897923,"id_str":"231897923","indices":[56,67]},{"screen_name":"geoffiejeff","name":"Geoffrey - Lea","id":236397148,"id_str":"236397148","indices":[68,80]},{"screen_name":"ibrinho26","name":"ibra","id":178289697,"id_str":"178289697","indices":[81,91]},{"screen_name":"AliKamwe","name":"AliKamwe","id":1214053558984667136,"id_str":"1214053558984667136","indices":[92,101]},{"screen_name":"GeorgeJob14","name":"George - Job","id":1218784088141783041,"id_str":"1218784088141783041","indices":[102,114]}],"urls":[{"url":"https:\/\/t.co\/dMuXQIkCmG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506554933226708993","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505813419454353408,"in_reply_to_status_id_str":"1505813419454353408","in_reply_to_user_id":879314754556366848,"in_reply_to_user_id_str":"879314754556366848","in_reply_to_screen_name":"prosperbartha","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"cy"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282720909581746176\/mzPSwaK4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282720909581746176\/mzPSwaK4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/767060935915732992\/1624532020","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":751279350398410752,"id_str":"751279350398410752","name":"Lauren. - Kidd Secero","screen_name":"laurens0922","location":"North Carolina, USA","description":"Been - around for 1\/2 century,,,now I have found serenity! I''m a beach baby from - Jersey shore .Now on the shores of Eastern North Carolina.Grateful for D&D","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":380,"listed_count":0,"created_at":"Fri - Jul 08 04:58:50 +0000 2016","favourites_count":9717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1836,"lang":null,"status":{"created_at":"Sun - Mar 13 15:49:06 +0000 2022","id":1503035432916955141,"id_str":"1503035432916955141","text":"@aimealleycard - I lost 50 in 2020\/21 , gained back 35in 21\/22 ugh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aimealleycard","name":"Aime - Card","id":807623061470060544,"id_str":"807623061470060544","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502741988705189891,"in_reply_to_status_id_str":"1502741988705189891","in_reply_to_user_id":807623061470060544,"in_reply_to_user_id_str":"807623061470060544","in_reply_to_screen_name":"aimealleycard","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242824100504092677\/IJ3vPgBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242824100504092677\/IJ3vPgBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/751279350398410752\/1472135874","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2229800400,"id_str":"2229800400","name":"cynthia","screen_name":"cienick1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":157,"listed_count":0,"created_at":"Wed - Dec 04 12:08:17 +0000 2013","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Dec 06 16:40:23 +0000 2015","id":673542511495917570,"id_str":"673542511495917570","text":"New - Jersey, RT this! If we hit 5K tweets by 12\/5, we get 50% off weekday @Lyft - rides through 12\/18. #LyftNewJersey","truncated":false,"entities":{"hashtags":[{"text":"LyftNewJersey","indices":[100,114]}],"symbols":[],"user_mentions":[{"screen_name":"lyft","name":"Lyft","id":569569550,"id_str":"569569550","indices":[73,78]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":365641430,"id_str":"365641430","name":"ali - uii","screen_name":"mwadiniudi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":41,"friends_count":1865,"listed_count":2,"created_at":"Wed - Aug 31 19:43:34 +0000 2011","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000028809209\/7a2687b7d2f6b5396b461ad542ffc5f8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000028809209\/7a2687b7d2f6b5396b461ad542ffc5f8_normal.jpeg","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1819024405,"id_str":"1819024405","name":"Avrom - S Brown, DO, FAAFP","screen_name":"DrAvromBrown","location":"215-913-2402","description":"Special - interests: Functional\/Integrative Med, Opioid Free Pain Tx, Lyme, Research - Med, Disability Med, IME, Addiction Med, Med Marijuana, FP, Bway, TV, Soc - Med","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":440,"friends_count":4974,"listed_count":3,"created_at":"Sun - Sep 08 08:44:07 +0000 2013","favourites_count":5707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/925477421733892096\/urVdkBXX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/925477421733892096\/urVdkBXX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308284515635417088,"id_str":"1308284515635417088","name":"Patrick - Ekidor","screen_name":"Imojos1","location":"Nairobi, Kenya","description":"y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":844,"listed_count":0,"created_at":"Tue - Sep 22 05:58:46 +0000 2020","favourites_count":205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Sat - Jul 03 13:00:11 +0000 2021","id":1411308793816924160,"id_str":"1411308793816924160","text":"RT - @missnguru: \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80 - https:\/\/t.co\/3pa77RhvGI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"missnguru","name":"Sukari - Nguru","id":762806486833700864,"id_str":"762806486833700864","indices":[3,13]}],"urls":[],"media":[{"id":1411067277882109956,"id_str":"1411067277882109956","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","url":"https:\/\/t.co\/3pa77RhvGI","display_url":"pic.twitter.com\/3pa77RhvGI","expanded_url":"https:\/\/twitter.com\/missnguru\/status\/1411067608397496322\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":1200,"resize":"fit"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":576,"h":1280,"resize":"fit"}},"source_status_id":1411067608397496322,"source_status_id_str":"1411067608397496322","source_user_id":762806486833700864,"source_user_id_str":"762806486833700864"}]},"extended_entities":{"media":[{"id":1411067277882109956,"id_str":"1411067277882109956","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","url":"https:\/\/t.co\/3pa77RhvGI","display_url":"pic.twitter.com\/3pa77RhvGI","expanded_url":"https:\/\/twitter.com\/missnguru\/status\/1411067608397496322\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":1200,"resize":"fit"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":576,"h":1280,"resize":"fit"}},"source_status_id":1411067608397496322,"source_status_id_str":"1411067608397496322","source_user_id":762806486833700864,"source_user_id_str":"762806486833700864","video_info":{"aspect_ratio":[9,20],"duration_millis":59801,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/576x1280\/O96pe5k1pNukaVEI.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/pl\/lCPsgD-koIYtD6RJ.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/480x1066\/YJULT-BESb7d6jQK.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/320x710\/eOAj7w3u-n2g7Y7h.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jul 02 21:01:48 +0000 2021","id":1411067608397496322,"id_str":"1411067608397496322","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80 - https:\/\/t.co\/3pa77RhvGI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1411067277882109956,"id_str":"1411067277882109956","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","url":"https:\/\/t.co\/3pa77RhvGI","display_url":"pic.twitter.com\/3pa77RhvGI","expanded_url":"https:\/\/twitter.com\/missnguru\/status\/1411067608397496322\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":1200,"resize":"fit"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":576,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1411067277882109956,"id_str":"1411067277882109956","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1411067277882109956\/pu\/img\/6TGjneOOJLc0qii7.jpg","url":"https:\/\/t.co\/3pa77RhvGI","display_url":"pic.twitter.com\/3pa77RhvGI","expanded_url":"https:\/\/twitter.com\/missnguru\/status\/1411067608397496322\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":1200,"resize":"fit"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":576,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[9,20],"duration_millis":59801,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/576x1280\/O96pe5k1pNukaVEI.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/pl\/lCPsgD-koIYtD6RJ.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/480x1066\/YJULT-BESb7d6jQK.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1411067277882109956\/pu\/vid\/320x710\/eOAj7w3u-n2g7Y7h.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"01e215db7136a37e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01e215db7136a37e.json","place_type":"city","name":"Nairobi","full_name":"Nairobi, - Kenya","country_code":"KE","country":"Kenya","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[36.6645733,-1.3890532],[37.0626672,-1.3890532],[37.0626672,-1.1606735],[36.6645733,-1.1606735]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":314,"favorite_count":820,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":314,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368264776506368003\/u5JQv9h__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368264776506368003\/u5JQv9h__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2317416018,"id_str":"2317416018","name":"Husein - Hamirani","screen_name":"HamiraniHusein","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":60,"listed_count":0,"created_at":"Wed - Jan 29 16:23:34 +0000 2014","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42730368,"id_str":"42730368","name":"David - Barth","screen_name":"david_barth","location":"Los Angeles, CA","description":"\"God - bless.\" - Red Skelton\n\n\"Saw wrong, and tried to right it.\" (Eulogy for - Bobby Kennedy)\n\n\u201c...disturber and an annoyer of his (Satan) kingdom.\" - - Joseph Smith","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1903,"friends_count":4178,"listed_count":2,"created_at":"Tue - May 26 21:43:45 +0000 2009","favourites_count":1598,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":108994,"lang":null,"status":{"created_at":"Fri - Mar 25 21:14:57 +0000 2022","id":1507466089961189376,"id_str":"1507466089961189376","text":"@maria90886 - That would be ''must see TV.''","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maria90886","name":"Maria90886","id":1230148806362173441,"id_str":"1230148806362173441","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507465351441043457,"in_reply_to_status_id_str":"1507465351441043457","in_reply_to_user_id":1230148806362173441,"in_reply_to_user_id_str":"1230148806362173441","in_reply_to_screen_name":"maria90886","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1343757896031596548\/FCqyjRLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1343757896031596548\/FCqyjRLq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":324627242,"id_str":"324627242","name":"Auntie - Cracker","screen_name":"juekat","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":884,"listed_count":0,"created_at":"Sun - Jun 26 23:35:18 +0000 2011","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Wed - Aug 04 15:59:57 +0000 2021","id":1422950442565316611,"id_str":"1422950442565316611","text":"@MattGertz - @MollyJongFast Newt\u2019s hair-do is approaching Trumpian levels.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattGertz","name":"Matthew - Gertz","id":55376380,"id_str":"55376380","indices":[0,10]},{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[11,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1422918810563194883,"in_reply_to_status_id_str":"1422918810563194883","in_reply_to_user_id":55376380,"in_reply_to_user_id_str":"55376380","in_reply_to_screen_name":"MattGertz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775608963828113409\/bOCcw_ab_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775608963828113409\/bOCcw_ab_normal.jpg","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17758342,"id_str":"17758342","name":"Joseph - Dorman","screen_name":"jadorman","location":"New York, USA","description":"Riverside - Films","url":"https:\/\/t.co\/tkxNw8Qp8x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tkxNw8Qp8x","expanded_url":"http:\/\/www.riversidefilms.com","display_url":"riversidefilms.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":229,"listed_count":0,"created_at":"Sun - Nov 30 17:39:37 +0000 2008","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":null,"status":{"created_at":"Thu - Jan 07 16:35:15 +0000 2021","id":1347220261767163904,"id_str":"1347220261767163904","text":"@KaivanShroff - @Tim_Matheson Has no one at OANN or Newsmax yet claimed that this box was - pulled from under a table a\u2026 https:\/\/t.co\/WSRpP9Quj3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KaivanShroff","name":"Kaivan - Shroff","id":2289770467,"id_str":"2289770467","indices":[0,13]},{"screen_name":"Tim_Matheson","name":"Tim - Matheson","id":17164500,"id_str":"17164500","indices":[14,27]}],"urls":[{"url":"https:\/\/t.co\/WSRpP9Quj3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347220261767163904","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1347098542364631040,"in_reply_to_status_id_str":"1347098542364631040","in_reply_to_user_id":2289770467,"in_reply_to_user_id_str":"2289770467","in_reply_to_screen_name":"KaivanShroff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/689945834201350144\/_lrH1FKz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/689945834201350144\/_lrH1FKz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1067723964678578176,"id_str":"1067723964678578176","name":"Buckle - Up!","screen_name":"Pops_ll84","location":"","description":"Sit back and observe.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":3567,"listed_count":3,"created_at":"Wed - Nov 28 10:16:45 +0000 2018","favourites_count":855,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":211,"lang":null,"status":{"created_at":"Mon - Mar 21 23:21:44 +0000 2022","id":1506048444175167495,"id_str":"1506048444175167495","text":"RT - @Kid_Ink: people who mind their business live longer","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kid_Ink","name":"Kid - Ink","id":24472704,"id_str":"24472704","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 17:51:11 +0000 2022","id":1505965258929676288,"id_str":"1505965258929676288","text":"people - who mind their business live longer","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13118,"favorite_count":42739,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13118,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316609939943587841\/8by8IKOy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316609939943587841\/8by8IKOy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1067723964678578176\/1601145661","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":935844157968539649,"id_str":"935844157968539649","name":"Rotimi - Andrew Rowland","screen_name":"rotimi_andrew","location":"Kano, Nigeria","description":"Lawyer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":826,"listed_count":2,"created_at":"Wed - Nov 29 12:13:29 +0000 2017","favourites_count":4684,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":176,"lang":null,"status":{"created_at":"Wed - Sep 15 20:20:43 +0000 2021","id":1438236359156813824,"id_str":"1438236359156813824","text":"RT - @Twitter: ok but why should we follow you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Sep 15 14:19:46 +0000 2021","id":1438145523853053955,"id_str":"1438145523853053955","text":"ok - but why should we follow you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6775,"favorite_count":156352,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6775,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216014068663967749\/E3kJQhpX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216014068663967749\/E3kJQhpX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/935844157968539649\/1578755387","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":221936889,"id_str":"221936889","name":"Ryan - Mahan","screen_name":"_rmahan","location":"Boston MA","description":"Software - Engineer, NPR Listener, and Dog Dad. \nUMass Amherst ''19","url":"https:\/\/t.co\/WOXE6K8iGi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WOXE6K8iGi","expanded_url":"http:\/\/ryanlmahan.com","display_url":"ryanlmahan.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":241,"friends_count":320,"listed_count":0,"created_at":"Thu - Dec 02 01:08:10 +0000 2010","favourites_count":5347,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4545,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300966629635915776\/GUI23rZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300966629635915776\/GUI23rZd_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":394309160,"id_str":"394309160","name":"Jeff - Gusdorf","screen_name":"JGusdorf","location":"","description":"","url":"https:\/\/t.co\/UkV03ovEQW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UkV03ovEQW","expanded_url":"http:\/\/www.software4distributors.com","display_url":"software4distributors.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":198,"listed_count":1,"created_at":"Wed - Oct 19 21:48:55 +0000 2011","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Fri - Nov 01 14:47:26 +0000 2019","id":1190279183857078273,"id_str":"1190279183857078273","text":"DDI - System Releases Inform ERP Software Version 20 https:\/\/t.co\/yOPPkOW04s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yOPPkOW04s","expanded_url":"https:\/\/www.ddisystem.com\/newsblog\/ddi-system-releases-version-20","display_url":"ddisystem.com\/newsblog\/ddi-s\u2026","indices":[51,74]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1827712603\/BSWC_logo_250x130_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1827712603\/BSWC_logo_250x130_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":149525065,"id_str":"149525065","name":"RodTed","screen_name":"Rodrigo_Tedesco","location":"Sao - Paulo, Brazil","description":"Communication expert, always connected. Politics, - Economy and Business news & trends.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1317,"listed_count":1,"created_at":"Sat - May 29 14:23:44 +0000 2010","favourites_count":10752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":650,"lang":null,"status":{"created_at":"Fri - Mar 18 23:03:04 +0000 2022","id":1504956580948848641,"id_str":"1504956580948848641","text":"RT - @ETallnews: Em destaque no \ud83c\udde7\ud83c\uddf7 (I)!\n\n#capasderevistas\n#magazinescovers\n@ETallnews - \n@futpapers \n\n@VEJA\n@RevistaISTOE \n@revistaoeste \n@Revi\u2026","truncated":false,"entities":{"hashtags":[{"text":"capasderevistas","indices":[39,55]},{"text":"magazinescovers","indices":[56,72]}],"symbols":[],"user_mentions":[{"screen_name":"ETallnews","name":"Eduardo - Tedesco","id":843283389105000448,"id_str":"843283389105000448","indices":[3,13]},{"screen_name":"ETallnews","name":"Eduardo - Tedesco","id":843283389105000448,"id_str":"843283389105000448","indices":[73,83]},{"screen_name":"futpapers","name":"FutPapers","id":143870001,"id_str":"143870001","indices":[85,95]},{"screen_name":"VEJA","name":"VEJA","id":17715048,"id_str":"17715048","indices":[98,103]},{"screen_name":"RevistaISTOE","name":"Revista - ISTO\u00c9","id":29913589,"id_str":"29913589","indices":[104,117]},{"screen_name":"revistaoeste","name":"Revista - Oeste","id":1222939896349970432,"id_str":"1222939896349970432","indices":[119,132]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 16:15:30 +0000 2022","id":1504854015812718593,"id_str":"1504854015812718593","text":"Em - destaque no \ud83c\udde7\ud83c\uddf7 (I)!\n\n#capasderevistas\n#magazinescovers\n@ETallnews - \n@futpapers \n\n@VEJA\n@RevistaISTOE\u2026 https:\/\/t.co\/2xm7YSHLpZ","truncated":true,"entities":{"hashtags":[{"text":"capasderevistas","indices":[24,40]},{"text":"magazinescovers","indices":[41,57]}],"symbols":[],"user_mentions":[{"screen_name":"ETallnews","name":"Eduardo - Tedesco","id":843283389105000448,"id_str":"843283389105000448","indices":[58,68]},{"screen_name":"futpapers","name":"FutPapers","id":143870001,"id_str":"143870001","indices":[70,80]},{"screen_name":"VEJA","name":"VEJA","id":17715048,"id_str":"17715048","indices":[83,88]},{"screen_name":"RevistaISTOE","name":"Revista - ISTO\u00c9","id":29913589,"id_str":"29913589","indices":[89,102]}],"urls":[{"url":"https:\/\/t.co\/2xm7YSHLpZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504854015812718593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1049458002590351366\/oG8UwVtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1049458002590351366\/oG8UwVtU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":861324179420790784,"id_str":"861324179420790784","name":"Biff - Manly","screen_name":"BiffManly1","location":"Carmel Highlands ","description":"JD, - PhD, sense of humor of 12 yr old\n\"Among people lacking distinction, Biff - stands out as the person lacking the most distinction.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":437,"listed_count":2,"created_at":"Sun - May 07 20:57:41 +0000 2017","favourites_count":5280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1260,"lang":null,"status":{"created_at":"Fri - Mar 25 15:54:10 +0000 2022","id":1507385362359980039,"id_str":"1507385362359980039","text":"@baseballcrank - Well, you\u2019re one of the biggest gaslighting trolls \u2014 is this true?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baseballcrank","name":"Dan - McLaughlin","id":38021361,"id_str":"38021361","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507382166732349441,"in_reply_to_status_id_str":"1507382166732349441","in_reply_to_user_id":38021361,"in_reply_to_user_id_str":"38021361","in_reply_to_screen_name":"baseballcrank","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/861324179420790784\/1622323911","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":917203282644348928,"id_str":"917203282644348928","name":"\ud83c\udf35Marci - Morgan \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"marci_morgan1","location":"Phoenix, - AZ","description":"Mom, Grandma, Former Paramedic, LPN... aneurysm and stroke - survivor, trying to make the world a better place.. \ud83d\udeabunsolicited - DM''s please-I don''t need a hook-up","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":517,"listed_count":0,"created_at":"Mon - Oct 09 01:41:18 +0000 2017","favourites_count":23957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3537,"lang":null,"status":{"created_at":"Thu - Mar 24 20:27:40 +0000 2022","id":1507091802246946819,"id_str":"1507091802246946819","text":"@wahlstedt007 - I agree. I felt the same way, as sick as I was, I couldn''t imagine how sick - I would have been without the vaccines.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wahlstedt007","name":"Sidney - W.\ud83c\udde9\ud83c\uddea\ud83c\uddfa\ud83c\uddf2\ud83c\uddfa\ud83c\udde6","id":1219902654492659712,"id_str":"1219902654492659712","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506975575847714817,"in_reply_to_status_id_str":"1506975575847714817","in_reply_to_user_id":1219902654492659712,"in_reply_to_user_id_str":"1219902654492659712","in_reply_to_screen_name":"wahlstedt007","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356391012449443840\/3qe0noJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356391012449443840\/3qe0noJt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917203282644348928\/1628134694","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1873092852,"id_str":"1873092852","name":"Theresa - Merchant","screen_name":"resachant1039","location":"Brooklyn, NY","description":"Protagonist","url":"https:\/\/t.co\/AolPck8m8Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AolPck8m8Q","expanded_url":"http:\/\/theresamerchant.com","display_url":"theresamerchant.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":225,"listed_count":1,"created_at":"Mon - Sep 16 21:44:57 +0000 2013","favourites_count":458,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Wed - Mar 02 18:41:13 +0000 2022","id":1499092478783283211,"id_str":"1499092478783283211","text":"Abstraction - of a Good Boy 2\n\n#digitalart #TriangleStrategy #GlitchArt #GermanShepherd - https:\/\/t.co\/Yy7ChrXuag","truncated":false,"entities":{"hashtags":[{"text":"digitalart","indices":[29,40]},{"text":"TriangleStrategy","indices":[41,58]},{"text":"GlitchArt","indices":[59,69]},{"text":"GermanShepherd","indices":[70,85]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499092473871749125,"id_str":"1499092473871749125","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FM3YqZaWUAUHW6w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM3YqZaWUAUHW6w.jpg","url":"https:\/\/t.co\/Yy7ChrXuag","display_url":"pic.twitter.com\/Yy7ChrXuag","expanded_url":"https:\/\/twitter.com\/resachant1039\/status\/1499092478783283211\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1535,"h":2048,"resize":"fit"},"medium":{"w":899,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499092473871749125,"id_str":"1499092473871749125","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FM3YqZaWUAUHW6w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM3YqZaWUAUHW6w.jpg","url":"https:\/\/t.co\/Yy7ChrXuag","display_url":"pic.twitter.com\/Yy7ChrXuag","expanded_url":"https:\/\/twitter.com\/resachant1039\/status\/1499092478783283211\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1535,"h":2048,"resize":"fit"},"medium":{"w":899,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487685509895929859\/xCGBachU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487685509895929859\/xCGBachU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1873092852\/1646163395","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":736493153109311488,"id_str":"736493153109311488","name":"Ojo - Lawrence O.","screen_name":"lawrence_o1","location":"Lagos, Nigeria","description":"\u201call - things are possible to him that believes...\u201d","url":"https:\/\/t.co\/b8pfzDfdog","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b8pfzDfdog","expanded_url":"http:\/\/www.davlawenterprises.com","display_url":"davlawenterprises.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":720,"listed_count":0,"created_at":"Sat - May 28 09:43:45 +0000 2016","favourites_count":577,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":296,"lang":null,"status":{"created_at":"Fri - Dec 17 17:27:45 +0000 2021","id":1471894899347890178,"id_str":"1471894899347890178","text":"RT - @mrmacaronii: Just look at this madness!!! Are these the ones to protect the - people? These ones are thieves and murderers!!! https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrmacaronii","name":"DeboMacaroni","id":302413828,"id_str":"302413828","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 12:15:07 +0000 2021","id":1471816223923253248,"id_str":"1471816223923253248","text":"Just - look at this madness!!! Are these the ones to protect the people? These ones - are thieves and murderers!!! https:\/\/t.co\/pOXNuNbxbO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1471815940992118786,"id_str":"1471815940992118786","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471815940992118786\/pu\/img\/NSmprMBd9IWVEy7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471815940992118786\/pu\/img\/NSmprMBd9IWVEy7u.jpg","url":"https:\/\/t.co\/pOXNuNbxbO","display_url":"pic.twitter.com\/pOXNuNbxbO","expanded_url":"https:\/\/twitter.com\/mrmacaronii\/status\/1471816223923253248\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":888,"h":1106,"resize":"fit"},"small":{"w":546,"h":680,"resize":"fit"},"large":{"w":888,"h":1106,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1471815940992118786,"id_str":"1471815940992118786","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471815940992118786\/pu\/img\/NSmprMBd9IWVEy7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471815940992118786\/pu\/img\/NSmprMBd9IWVEy7u.jpg","url":"https:\/\/t.co\/pOXNuNbxbO","display_url":"pic.twitter.com\/pOXNuNbxbO","expanded_url":"https:\/\/twitter.com\/mrmacaronii\/status\/1471816223923253248\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":888,"h":1106,"resize":"fit"},"small":{"w":546,"h":680,"resize":"fit"},"large":{"w":888,"h":1106,"resize":"fit"}},"video_info":{"aspect_ratio":[444,553],"duration_millis":45001,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471815940992118786\/pu\/vid\/320x398\/ztObyeeyNlQtOZ1R.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471815940992118786\/pu\/pl\/8pOpcYoKertzNX-t.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471815940992118786\/pu\/vid\/480x596\/8Z0RvCrdGEvQK2YO.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471815940992118786\/pu\/vid\/720x896\/NR525IgEJRytezo1.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5269,"favorite_count":5675,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5269,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736495404603330561\/lyUvQSaN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736495404603330561\/lyUvQSaN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27737000,"id_str":"27737000","name":"JCricket\ud83c\uddfa\ud83c\udde6","screen_name":"SanAntoneBorn","location":"Las - Vegas, NV","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":88,"friends_count":1596,"listed_count":0,"created_at":"Mon - Mar 30 21:43:12 +0000 2009","favourites_count":40620,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4216,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439023714377494531\/jCer3_nY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439023714377494531\/jCer3_nY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27737000\/1564345627","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":549908325,"id_str":"549908325","name":"Mary - Holton","screen_name":"marylholton","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":827,"listed_count":0,"created_at":"Tue - Apr 10 05:06:16 +0000 2012","favourites_count":3453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":105,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3720942819\/7bbbc554597e248f2bcc4ef15fd365a5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3720942819\/7bbbc554597e248f2bcc4ef15fd365a5_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":151410054,"id_str":"151410054","name":"Mig - Lumley","screen_name":"migLum","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":2192,"listed_count":3,"created_at":"Thu - Jun 03 10:19:53 +0000 2010","favourites_count":459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Thu - Aug 26 18:35:12 +0000 2021","id":1430962047098015745,"id_str":"1430962047098015745","text":"@TomLumley","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TomLumley","name":"Tom - Lumley","id":21670771,"id_str":"21670771","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21670771,"in_reply_to_user_id_str":"21670771","in_reply_to_screen_name":"TomLumley","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":133888547,"id_str":"133888547","name":"Rebecca - JeanTamietti","screen_name":"TamandEddie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":370,"listed_count":0,"created_at":"Fri - Apr 16 22:36:19 +0000 2010","favourites_count":5336,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":845,"lang":null,"status":{"created_at":"Sat - Feb 06 00:21:47 +0000 2021","id":1357846916533391361,"id_str":"1357846916533391361","text":"@StephenKing - Majorie Taylor Greene is the real Nadine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenKing","name":"Stephen - King","id":2233154425,"id_str":"2233154425","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2233154425,"in_reply_to_user_id_str":"2233154425","in_reply_to_screen_name":"StephenKing","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927747268488323072,"id_str":"927747268488323072","name":"Honey - Fitz","screen_name":"CharlieFitz14","location":"California, USA","description":"General - News History Music News Politics Science Technology US News World News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":359,"listed_count":0,"created_at":"Tue - Nov 07 03:59:20 +0000 2017","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Sat - Aug 07 04:32:45 +0000 2021","id":1423864669052178440,"id_str":"1423864669052178440","text":"@BreitbartNews - If that\u2019s really the case, I wonder why of the 500+ people jailed for - this, not one has yet been cha\u2026 https:\/\/t.co\/1ufgLdvsgv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BreitbartNews","name":"Breitbart - News","id":457984599,"id_str":"457984599","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/1ufgLdvsgv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1423864669052178440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1423823661740462082,"in_reply_to_status_id_str":"1423823661740462082","in_reply_to_user_id":457984599,"in_reply_to_user_id_str":"457984599","in_reply_to_screen_name":"BreitbartNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1228023303509594113,"id_str":"1228023303509594113","name":"Barry","screen_name":"Barry72036251","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":221,"listed_count":0,"created_at":"Thu - Feb 13 18:29:30 +0000 2020","favourites_count":375,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Jul 30 22:49:26 +0000 2020","id":1288969984211922948,"id_str":"1288969984211922948","text":"RT - @ProjectLincoln: Retweet if you agree. https:\/\/t.co\/KBNQJvhS76","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[],"media":[{"id":1288961303135035392,"id_str":"1288961303135035392","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","url":"https:\/\/t.co\/KBNQJvhS76","display_url":"pic.twitter.com\/KBNQJvhS76","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1288961311716630528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1033,"h":688,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1033,"h":688,"resize":"fit"}},"source_status_id":1288961311716630528,"source_status_id_str":"1288961311716630528","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1288961303135035392,"id_str":"1288961303135035392","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","url":"https:\/\/t.co\/KBNQJvhS76","display_url":"pic.twitter.com\/KBNQJvhS76","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1288961311716630528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1033,"h":688,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1033,"h":688,"resize":"fit"}},"source_status_id":1288961311716630528,"source_status_id_str":"1288961311716630528","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 30 22:14:59 +0000 2020","id":1288961311716630528,"id_str":"1288961311716630528","text":"Retweet - if you agree. https:\/\/t.co\/KBNQJvhS76","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1288961303135035392,"id_str":"1288961303135035392","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","url":"https:\/\/t.co\/KBNQJvhS76","display_url":"pic.twitter.com\/KBNQJvhS76","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1288961311716630528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1033,"h":688,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1033,"h":688,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1288961303135035392,"id_str":"1288961303135035392","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeNPedqWoAADRfY.jpg","url":"https:\/\/t.co\/KBNQJvhS76","display_url":"pic.twitter.com\/KBNQJvhS76","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1288961311716630528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1033,"h":688,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1033,"h":688,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65990,"favorite_count":158186,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":65990,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284852482632486912\/0isMSEhU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284852482632486912\/0isMSEhU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228023303509594113\/1630796338","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247313341376323585,"id_str":"1247313341376323585","name":"Susan - Rosenbaum","screen_name":"SusanRoseb28","location":"Venice, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":158,"listed_count":0,"created_at":"Tue - Apr 07 00:01:18 +0000 2020","favourites_count":98,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sat - Oct 24 22:07:49 +0000 2020","id":1320124866478116864,"id_str":"1320124866478116864","text":"RT - @TriumphICDHQ: Yes, more of this! People vote on policies, not Trump-is-a-douchebag - jokes. What''s at stake isn''t remotely funny. Thank y\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TriumphICDHQ","name":"Triumph\u00ae - \u1d1b\u029c\u1d07 \u026a\u0274s\u1d1c\u029f\u1d1b \u1d04\u1d0f\u1d0d\u026a\u1d04 - \u1d05\u1d0f\u0262\u2122 Headquarters\ud83d\udca9","id":2951538370,"id_str":"2951538370","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 24 12:00:55 +0000 2020","id":1319972136526749697,"id_str":"1319972136526749697","text":"Yes, - more of this! People vote on policies, not Trump-is-a-douchebag jokes. What''s - at stake isn''t remotely funny. T\u2026 https:\/\/t.co\/f7UmCu7jfk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f7UmCu7jfk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1319972136526749697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1319751198992314368,"quoted_status_id_str":"1319751198992314368","retweet_count":276,"favorite_count":1340,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1319751198992314368,"quoted_status_id_str":"1319751198992314368","retweet_count":276,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3351030803,"id_str":"3351030803","name":"emmanuel - otah (M7)","screen_name":"e_otah","location":"ABIRIBA","description":"Easy - going","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":1006,"listed_count":7,"created_at":"Mon - Jun 29 18:33:58 +0000 2015","favourites_count":2185,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5062,"lang":null,"status":{"created_at":"Tue - Feb 08 14:31:44 +0000 2022","id":1491057159572168712,"id_str":"1491057159572168712","text":"RT - @funshographix: China official language is Chinese. France is French.Germany - is German. Korean is Korean. Ukraine is Ukrainian.Finland i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"funshographix","name":"IF\u00c1 - FUNSHO","id":258722207,"id_str":"258722207","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 07 23:14:12 +0000 2022","id":1490826256925011968,"id_str":"1490826256925011968","text":"China - official language is Chinese. France is French.Germany is German. Korean is - Korean. Ukraine is Ukrainian.Finl\u2026 https:\/\/t.co\/pt99EVYhrX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pt99EVYhrX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490826256925011968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":479,"favorite_count":907,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":479,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2544712004,"id_str":"2544712004","name":"Sarah - Baker","screen_name":"sarahdelB","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":541,"listed_count":0,"created_at":"Wed - Jun 04 00:14:38 +0000 2014","favourites_count":372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474524233893429248\/IR4RO36e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474524233893429248\/IR4RO36e_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1456100101,"id_str":"1456100101","name":"robert","screen_name":"pharmacy_rob","location":"San - Diego, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":470,"listed_count":0,"created_at":"Sat - May 25 05:33:22 +0000 2013","favourites_count":5586,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":332,"lang":null,"status":{"created_at":"Sun - Mar 13 04:57:38 +0000 2022","id":1502871483319656448,"id_str":"1502871483319656448","text":"@jaketapper - harvey milk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jaketapper","name":"Jake - Tapper","id":14529929,"id_str":"14529929","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502868901859926017,"in_reply_to_status_id_str":"1502868901859926017","in_reply_to_user_id":14529929,"in_reply_to_user_id_str":"14529929","in_reply_to_screen_name":"jaketapper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":23,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408656875432726528\/ZyHcPF9D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408656875432726528\/ZyHcPF9D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1456100101\/1601130983","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":931022559579201541,"id_str":"931022559579201541","name":"torch!!","screen_name":"torch318","location":"","description":"combat - vet !!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":301,"listed_count":0,"created_at":"Thu - Nov 16 04:54:10 +0000 2017","favourites_count":3864,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/949920094506930176\/02iHaBEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949920094506930176\/02iHaBEZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3326550096,"id_str":"3326550096","name":"Barbara - Dolan ","screen_name":"BarbaraDolan11","location":"South Dakota, USA","description":"Mom Registered - Nurse for 32 years in Medical & Psychiatric areas Pro-life Love our Earth- - I work to decrease my Carbon footprint Stay Informed Citizen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":225,"listed_count":0,"created_at":"Sun - Aug 23 14:22:57 +0000 2015","favourites_count":5100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4647,"lang":null,"status":{"created_at":"Thu - Mar 24 18:34:24 +0000 2022","id":1507063295089463298,"id_str":"1507063295089463298","text":"RT - @POTUS: Tune in as I hold a press conference about my meetings in Europe with - Allies and partners on our response to Russia\u2019s war on Ukr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:32:33 +0000 2022","id":1507047733613445122,"id_str":"1507047733613445122","text":"Tune - in as I hold a press conference about my meetings in Europe with Allies and - partners on our response to Russia\u2026 https:\/\/t.co\/Kpp1C0qS28","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kpp1C0qS28","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507047733613445122","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1180,"favorite_count":5587,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1180,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384999232751472640\/k9FHH1Jy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384999232751472640\/k9FHH1Jy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3326550096\/1593210660","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":95840746,"id_str":"95840746","name":"social - media","screen_name":"socialmediaez","location":"","description":"i love being - a social media addict and leverage on the power of internet marketing","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1276,"listed_count":0,"created_at":"Thu - Dec 10 06:27:56 +0000 2009","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309752356641308672,"id_str":"1309752356641308672","name":"Morocco - Living","screen_name":"LivingMorocco","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":172,"listed_count":0,"created_at":"Sat - Sep 26 07:11:54 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3127984131,"id_str":"3127984131","name":"Dennis - J Grocki","screen_name":"DGrocki","location":"Peabody, MA","description":"l - was born deaf in one ear and told by a doctor that I would never be in the - military. Well 66 came and I was drafted. Join the USN 66-71","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":1408,"listed_count":1,"created_at":"Mon - Mar 30 01:36:13 +0000 2015","favourites_count":29718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9929,"lang":null,"status":{"created_at":"Sat - Mar 26 00:39:33 +0000 2022","id":1507517578641612809,"id_str":"1507517578641612809","text":"Why - isn\u2019t trump in jail? https:\/\/t.co\/1FzzA5gOZ3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1FzzA5gOZ3","expanded_url":"https:\/\/twitter.com\/pbump\/status\/1507418479468687360","display_url":"twitter.com\/pbump\/status\/1\u2026","indices":[25,48]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507418479468687360,"quoted_status_id_str":"1507418479468687360","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/777313744967852032\/41_RU2yx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/777313744967852032\/41_RU2yx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785821028752642049,"id_str":"785821028752642049","name":"rizwanrashid8","screen_name":"rizwan_fsd143","location":"","description":"I - am gold jewelry business man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":394,"friends_count":4430,"listed_count":0,"created_at":"Tue - Oct 11 12:35:07 +0000 2016","favourites_count":3482,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Fri - Aug 11 19:17:34 +0000 2017","id":896088217702678529,"id_str":"896088217702678529","text":"@Elaine_Hyatt - you have size no 41 plz ....and how much","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Elaine_Hyatt","name":"Elaine - A. Hyatt","id":715862385039290368,"id_str":"715862385039290368","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":896028261041315840,"in_reply_to_status_id_str":"896028261041315840","in_reply_to_user_id":715862385039290368,"in_reply_to_user_id_str":"715862385039290368","in_reply_to_screen_name":"Elaine_Hyatt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328400388618383364\/yevaAm_F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328400388618383364\/yevaAm_F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4262298742,"id_str":"4262298742","name":"Alan - Rubenstein","screen_name":"UWBigAl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":483,"listed_count":0,"created_at":"Tue - Nov 24 04:38:34 +0000 2015","favourites_count":3267,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2397,"lang":null,"status":{"created_at":"Thu - Mar 24 00:16:47 +0000 2022","id":1506787072887201802,"id_str":"1506787072887201802","text":"RT - @nycsouthpaw: NYT\u2019s team gets a copy of Mark Pomerantz\u2019s resignation - letter. He wrote Trump was guilty of numerous felonies and it was a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nycsouthpaw","name":"southpaw","id":22429979,"id_str":"22429979","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:54:35 +0000 2022","id":1506766385652903941,"id_str":"1506766385652903941","text":"NYT\u2019s - team gets a copy of Mark Pomerantz\u2019s resignation letter. He wrote Trump - was guilty of numerous felonies and i\u2026 https:\/\/t.co\/nSAolcv0M2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nSAolcv0M2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506766385652903941","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2464,"favorite_count":5960,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2464,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097631952377704448\/UC6C-f62_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097631952377704448\/UC6C-f62_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4262298742\/1560709581","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1009880612398878720,"id_str":"1009880612398878720","name":"Chuck","screen_name":"chuck40764034","location":"Winnipeg, - Manitoba","description":"Music Music Food History World News US Politics US - Politics Celebrity Winnipeg Jets Movies Canadian Politics Food TV Shows Television - Classic Rock MLB Weather","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":1140,"listed_count":1,"created_at":"Thu - Jun 21 19:27:55 +0000 2018","favourites_count":14695,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7340,"lang":null,"status":{"created_at":"Sun - Jan 10 02:32:45 +0000 2021","id":1348095406077399041,"id_str":"1348095406077399041","text":"Enjoying - long winter hikes!! https:\/\/t.co\/mbDK8bZRzR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1348095385793818624,"id_str":"1348095385793818624","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ErVlnGGVcAA7sAE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErVlnGGVcAA7sAE.jpg","url":"https:\/\/t.co\/mbDK8bZRzR","display_url":"pic.twitter.com\/mbDK8bZRzR","expanded_url":"https:\/\/twitter.com\/chuck40764034\/status\/1348095406077399041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1348095385793818624,"id_str":"1348095385793818624","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ErVlnGGVcAA7sAE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErVlnGGVcAA7sAE.jpg","url":"https:\/\/t.co\/mbDK8bZRzR","display_url":"pic.twitter.com\/mbDK8bZRzR","expanded_url":"https:\/\/twitter.com\/chuck40764034\/status\/1348095406077399041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}},{"id":1348095385789632514,"id_str":"1348095385789632514","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ErVlnGFVkAI06ed.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErVlnGFVkAI06ed.jpg","url":"https:\/\/t.co\/mbDK8bZRzR","display_url":"pic.twitter.com\/mbDK8bZRzR","expanded_url":"https:\/\/twitter.com\/chuck40764034\/status\/1348095406077399041\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}},{"id":1348095385793753092,"id_str":"1348095385793753092","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/ErVlnGGUcAQUxCC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ErVlnGGUcAQUxCC.jpg","url":"https:\/\/t.co\/mbDK8bZRzR","display_url":"pic.twitter.com\/mbDK8bZRzR","expanded_url":"https:\/\/twitter.com\/chuck40764034\/status\/1348095406077399041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295926799872831488\/ABwSliUP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295926799872831488\/ABwSliUP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009880612398878720\/1597808002","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44892039,"id_str":"44892039","name":"Russ - Kane","screen_name":"RussellKane","location":"London UK","description":"''The - Flying Eye''. Author, Broadcaster. P.A. to Ebony the Mini-Schnauzer. Co-Founder - Men''s Radio Station. Founder of The Espresso Bar Facebook Group. Stand-Up","url":"https:\/\/t.co\/8VgJEXOxz5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8VgJEXOxz5","expanded_url":"http:\/\/www.russkane.com","display_url":"russkane.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5616,"friends_count":3981,"listed_count":67,"created_at":"Fri - Jun 05 13:32:23 +0000 2009","favourites_count":96647,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61696,"lang":null,"status":{"created_at":"Sat - Mar 26 10:44:50 +0000 2022","id":1507669903167348737,"id_str":"1507669903167348737","text":"@RodneyMarshall1 - Didn''t they just! Dad just wanted to conclude his business & leave but - I was fascinated & captivated by it all.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RodneyMarshall1","name":"Rodney - Marshall","id":286408281,"id_str":"286408281","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507654927165890560,"in_reply_to_status_id_str":"1507654927165890560","in_reply_to_user_id":286408281,"in_reply_to_user_id_str":"286408281","in_reply_to_screen_name":"RodneyMarshall1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EFF89C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169101935649206272\/1GI07-Jt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169101935649206272\/1GI07-Jt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44892039\/1559152423","profile_link_color":"981CEB","profile_sidebar_border_color":"8E18DE","profile_sidebar_fill_color":"061200","profile_text_color":"71DEB3","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3002247064,"id_str":"3002247064","name":"LN68","screen_name":"68_ln68","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":400,"listed_count":0,"created_at":"Tue - Jan 27 22:37:48 +0000 2015","favourites_count":40915,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":262,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560205841312124928\/Mc-IykTR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560205841312124928\/Mc-IykTR_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21009728,"id_str":"21009728","name":"Marjorie - Adis","screen_name":"RoxMom","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":575,"listed_count":0,"created_at":"Mon - Feb 16 18:17:50 +0000 2009","favourites_count":4588,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879706468433440768\/pLRHF50F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879706468433440768\/pLRHF50F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21009728\/1488226939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3031842283,"id_str":"3031842283","name":"Amanda - Casteel","screen_name":"aedeshazo","location":"Tigard, OR","description":"\"Persistence - without insight will lead to the same outcome\" -The Armorer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":165,"listed_count":0,"created_at":"Fri - Feb 20 00:08:15 +0000 2015","favourites_count":1770,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":444,"lang":null,"status":{"created_at":"Sun - Jan 30 06:05:47 +0000 2022","id":1487668342739529732,"id_str":"1487668342739529732","text":"https:\/\/t.co\/QoPwFJGeFz - #GoFundMe","truncated":false,"entities":{"hashtags":[{"text":"GoFundMe","indices":[24,33]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QoPwFJGeFz","expanded_url":"https:\/\/gofund.me\/6dec9bc7","display_url":"gofund.me\/6dec9bc7","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487644556149477377\/HFzQwTnA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487644556149477377\/HFzQwTnA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3031842283\/1643517078","profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18812994,"id_str":"18812994","name":"Andrea - Dew Steele","screen_name":"DewSteele","location":"San Francisco, CA","description":"Strategic - giving advisor. (She\/Her) Founder of @EmergeAmerica. Passionate about getting - great Dem women elected & grad of @TuftsUniversity & @LSE.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2770,"friends_count":1167,"listed_count":0,"created_at":"Fri - Jan 09 20:02:08 +0000 2009","favourites_count":4968,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2902,"lang":null,"status":{"created_at":"Fri - Mar 11 04:31:02 +0000 2022","id":1502140012606808071,"id_str":"1502140012606808071","text":"I - am so upset about this. @lateefahsimon is an amazing public servant. Her passion - for public transportation is ama\u2026 https:\/\/t.co\/4gA9nlm8Uo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lateefahsimon","name":"Lateefah - Simon","id":112275757,"id_str":"112275757","indices":[26,40]}],"urls":[{"url":"https:\/\/t.co\/4gA9nlm8Uo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502140012606808071","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502102557199515654,"quoted_status_id_str":"1502102557199515654","retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143246036229509120\/Z6Buiuoj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143246036229509120\/Z6Buiuoj_normal.png","profile_link_color":"5EB445","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":108168701,"id_str":"108168701","name":"George - Carney","screen_name":"vivsavagesf","location":"San Francisco","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":23,"friends_count":255,"listed_count":1,"created_at":"Mon - Jan 25 02:30:51 +0000 2010","favourites_count":155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653671891\/This_notes_for_you_Linus__normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653671891\/This_notes_for_you_Linus__normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108334686479237125,"id_str":"1108334686479237125","name":"Mtnz","screen_name":"Mtnz7","location":"","description":"hhh","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":374,"listed_count":0,"created_at":"Wed - Mar 20 11:49:15 +0000 2019","favourites_count":603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Sat - Apr 24 21:27:39 +0000 2021","id":1386069350877122560,"id_str":"1386069350877122560","text":"#OneLove - \nPic up dj leather and sobo Moto mo \ud83d\udd25 we''re locked in at Serenus - Kitale massive.","truncated":false,"entities":{"hashtags":[{"text":"OneLove","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1157394961635131394\/o-oTCFAi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157394961635131394\/o-oTCFAi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1217471495234031617,"id_str":"1217471495234031617","name":"Beardless - Agba","screen_name":"BetrandEzequiel","location":"","description":"I AM who - GOD says I AM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":751,"friends_count":2241,"listed_count":1,"created_at":"Wed - Jan 15 15:40:37 +0000 2020","favourites_count":55230,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27905,"lang":null,"status":{"created_at":"Thu - Mar 24 09:56:37 +0000 2022","id":1506932993675382786,"id_str":"1506932993675382786","text":"RT - @_funguyzz: Experience on a plane\ud83d\ude02\ud83d\ude02 part 1 https:\/\/t.co\/kZuXquorUP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_funguyzz","name":"FUNGUYZZ","id":1432794303370305538,"id_str":"1432794303370305538","indices":[3,13]}],"urls":[],"media":[{"id":1506919802497085455,"id_str":"1506919802497085455","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","url":"https:\/\/t.co\/kZuXquorUP","display_url":"pic.twitter.com\/kZuXquorUP","expanded_url":"https:\/\/twitter.com\/_funguyzz\/status\/1506920407550550024\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"},"large":{"w":406,"h":720,"resize":"fit"}},"source_status_id":1506920407550550024,"source_status_id_str":"1506920407550550024","source_user_id":1432794303370305538,"source_user_id_str":"1432794303370305538"}]},"extended_entities":{"media":[{"id":1506919802497085455,"id_str":"1506919802497085455","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","url":"https:\/\/t.co\/kZuXquorUP","display_url":"pic.twitter.com\/kZuXquorUP","expanded_url":"https:\/\/twitter.com\/_funguyzz\/status\/1506920407550550024\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"},"large":{"w":406,"h":720,"resize":"fit"}},"source_status_id":1506920407550550024,"source_status_id_str":"1506920407550550024","source_user_id":1432794303370305538,"source_user_id_str":"1432794303370305538","video_info":{"aspect_ratio":[203,360],"duration_millis":100116,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/pl\/pR6bE4e3_E5DG5jY.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/vid\/406x720\/12mlesLJQqPQQsBN.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/vid\/320x566\/-CRSyOHVeyJ6cfVJ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 09:06:37 +0000 2022","id":1506920407550550024,"id_str":"1506920407550550024","text":"Experience - on a plane\ud83d\ude02\ud83d\ude02 part 1 https:\/\/t.co\/kZuXquorUP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506919802497085455,"id_str":"1506919802497085455","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","url":"https:\/\/t.co\/kZuXquorUP","display_url":"pic.twitter.com\/kZuXquorUP","expanded_url":"https:\/\/twitter.com\/_funguyzz\/status\/1506920407550550024\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"},"large":{"w":406,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506919802497085455,"id_str":"1506919802497085455","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506919802497085455\/pu\/img\/snH8F2JlFtdm-mF8.jpg","url":"https:\/\/t.co\/kZuXquorUP","display_url":"pic.twitter.com\/kZuXquorUP","expanded_url":"https:\/\/twitter.com\/_funguyzz\/status\/1506920407550550024\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"},"large":{"w":406,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[203,360],"duration_millis":100116,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/pl\/pR6bE4e3_E5DG5jY.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/vid\/406x720\/12mlesLJQqPQQsBN.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506919802497085455\/pu\/vid\/320x566\/-CRSyOHVeyJ6cfVJ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2833,"favorite_count":9439,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2833,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361240522841612288\/x-ZhR9ic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361240522841612288\/x-ZhR9ic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217471495234031617\/1619341405","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237005954354462720,"id_str":"1237005954354462720","name":"Smokey3313","screen_name":"smokey3313","location":"","description":"Outgoing, - selfless, honest & passionate about life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":201,"listed_count":0,"created_at":"Mon - Mar 09 13:23:31 +0000 2020","favourites_count":1839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Tue - Nov 03 14:55:09 +0000 2020","id":1323639859576250369,"id_str":"1323639859576250369","text":"RT - @kingsrush: How soon they forget.\nEl Paso had one of the worst mass shootings - in U.S. history Bc a white man was inspired by Trump\u2019s lan\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kingsrush","name":"Chicano - Marine \ud83c\uddf2\ud83c\uddfd\ud83c\uddfa\ud83c\uddf8\ud83d\udc99","id":132737804,"id_str":"132737804","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 03 03:01:46 +0000 2020","id":1323460333562855424,"id_str":"1323460333562855424","text":"How - soon they forget.\nEl Paso had one of the worst mass shootings in U.S. history - Bc a white man was inspired by Tr\u2026 https:\/\/t.co\/iTkIKqvzvG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iTkIKqvzvG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1323460333562855424","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":376,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":90,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292551425277534210\/z4ox6Pna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292551425277534210\/z4ox6Pna_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2179030582,"id_str":"2179030582","name":"Julie","screen_name":"Ms_Methven","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":205,"listed_count":0,"created_at":"Wed - Nov 13 02:47:30 +0000 2013","favourites_count":892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":205,"lang":null,"status":{"created_at":"Mon - Jul 05 22:00:51 +0000 2021","id":1412169632212045829,"id_str":"1412169632212045829","text":"RT - @scottsantens: Iceland recently completed a 4-yr trial of a 4-day week with - no reduction of pay with 1% of its population taking part. T\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"scottsantens","name":"Scott - Santens","id":14297863,"id_str":"14297863","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 05 14:43:54 +0000 2021","id":1412059669842042880,"id_str":"1412059669842042880","text":"Iceland - recently completed a 4-yr trial of a 4-day week with no reduction of pay with - 1% of its population taking p\u2026 https:\/\/t.co\/xFjU4GqM9N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xFjU4GqM9N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1412059669842042880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6973,"favorite_count":19210,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6973,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000733136955\/8981fcf45a73b8aad98cbc8b06d47b0a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000733136955\/8981fcf45a73b8aad98cbc8b06d47b0a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179030582\/1384311131","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":384459299,"id_str":"384459299","name":"Sameul - Shajid","screen_name":"ASameul","location":"New York City","description":"Hi, - my name is Sameul Shajid, I''m a graphic designer. If you are in need of a - professional and responsible graphic designer https:\/\/t.co\/hhXVEMJAcA","url":"https:\/\/t.co\/0CztHthNbk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0CztHthNbk","expanded_url":"https:\/\/sameuls.blogspot.com\/","display_url":"sameuls.blogspot.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hhXVEMJAcA","expanded_url":"https:\/\/www.fiverr.com\/sameulshajid","display_url":"fiverr.com\/sameulshajid","indices":[124,147]}]}},"protected":false,"followers_count":524,"friends_count":4143,"listed_count":1,"created_at":"Mon - Oct 03 18:34:36 +0000 2011","favourites_count":11200,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4348,"lang":null,"status":{"created_at":"Sun - Jan 30 16:56:34 +0000 2022","id":1487832117589704712,"id_str":"1487832117589704712","text":"Check - out new work on my @Behance profile: \"Cute dinosaur seamless pattern design - for kids\" https:\/\/t.co\/SIIrLSFedG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Behance","name":"Behance","id":9313022,"id_str":"9313022","indices":[25,33]}],"urls":[{"url":"https:\/\/t.co\/SIIrLSFedG","expanded_url":"http:\/\/be.net\/gallery\/136268473\/Cute-dinosaur-seamless-pattern-design-for-kids","display_url":"be.net\/gallery\/136268\u2026","indices":[92,115]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311945211350642689\/Wkgppw6L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311945211350642689\/Wkgppw6L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384459299\/1602486438","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3568232415,"id_str":"3568232415","name":"Aron - Schnell","screen_name":"aronschnell","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":568,"listed_count":0,"created_at":"Sun - Sep 06 17:20:11 +0000 2015","favourites_count":3023,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Apr 16 13:24:42 +0000 2019","id":1118143176659935233,"id_str":"1118143176659935233","text":"@slimemo_ - @LongwoodBase @jack_schnell atta boy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"slimemo_","name":"slimemo - \u2764\ufe0f\u200d\ud83d\udd25\u2764\ufe0f\u200d\ud83d\udd25\u2764\ufe0f\u200d\ud83d\udd25","id":1457417518272888842,"id_str":"1457417518272888842","indices":[0,9]},{"screen_name":"LongwoodBase","name":"Longwood - Baseball","id":2826585277,"id_str":"2826585277","indices":[10,23]},{"screen_name":"jack_schnell","name":"Jack - Schnell\u2122","id":731475830,"id_str":"731475830","indices":[24,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"sv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1102296127083286530,"id_str":"1102296127083286530","name":"Eric - Pruitt","screen_name":"Crispin92241145","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":139,"listed_count":0,"created_at":"Sun - Mar 03 19:54:11 +0000 2019","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Jan 11 04:03:32 +0000 2021","id":1348480639448834053,"id_str":"1348480639448834053","text":"@BL0NDAMBITION - This made me really happy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BL0NDAMBITION","name":"Blond - Ambition","id":741092148804603905,"id_str":"741092148804603905","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1348415203092951043,"in_reply_to_status_id_str":"1348415203092951043","in_reply_to_user_id":741092148804603905,"in_reply_to_user_id_str":"741092148804603905","in_reply_to_screen_name":"BL0NDAMBITION","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1102300557367218177\/r_pMatox_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1102300557367218177\/r_pMatox_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":885716047000739840,"id_str":"885716047000739840","name":"Noga - Shavit","screen_name":"noga_shavit","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":511,"listed_count":0,"created_at":"Fri - Jul 14 04:22:16 +0000 2017","favourites_count":4595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Wed - Feb 23 16:39:36 +0000 2022","id":1496525160186322948,"id_str":"1496525160186322948","text":"@uriel_tzaitlin - \u05d0\u05d9\u05e8\u05dc\u05e0\u05d3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"uriel_tzaitlin","name":"\u05d0\u05d5\u05e8\u05d9 - \u05e6\u05d9\u05d9\u05d8\u05dc\u05d9\u05df (\u05e4\u05d4 \u05d5\u05d9 \u05db\u05d7\u05d5\u05dc)","id":856934076380479488,"id_str":"856934076380479488","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1496509987559985157,"in_reply_to_status_id_str":"1496509987559985157","in_reply_to_user_id":856934076380479488,"in_reply_to_user_id_str":"856934076380479488","in_reply_to_screen_name":"uriel_tzaitlin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"iw"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":157832731,"id_str":"157832731","name":"Charles - Verhoeve","screen_name":"CharlieVerhoeve","location":"Madison, WI","description":"Profession: - Attorney. Avocation: Runner. \"We grow in kindness when our kindness is tested.\" - Desmond Tutu.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":551,"listed_count":0,"created_at":"Mon - Jun 21 01:20:48 +0000 2010","favourites_count":2626,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2018,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000624852002\/31c2d27e58777666e85da52bd0c2c0dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000624852002\/31c2d27e58777666e85da52bd0c2c0dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157832731\/1382296268","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":127257246,"id_str":"127257246","name":"Jose - A. Gomez Lopez","screen_name":"jagl81","location":"McAllen, Texas","description":"Bi-National, - MX-US. traveling the world for business. Interested in politics, both countries. - Against corruption and unethical behavior in government.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":292,"friends_count":2216,"listed_count":12,"created_at":"Sun - Mar 28 16:12:29 +0000 2010","favourites_count":28075,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9379,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551541932254445568\/khp_rh2s_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551541932254445568\/khp_rh2s_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127257246\/1403459932","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261763947855839234,"id_str":"1261763947855839234","name":"Debbie - Famulary","screen_name":"DebbieFamular12","location":"","description":"Just - an average Joe being nosy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":39,"listed_count":0,"created_at":"Sat - May 16 21:02:37 +0000 2020","favourites_count":215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":122,"lang":null,"status":{"created_at":"Tue - Jun 15 00:36:26 +0000 2021","id":1404598641352974342,"id_str":"1404598641352974342","text":"@njdotcom - If they are able to return to work for a $500 bonus, they are able to return - to work, period.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"njdotcom","name":"njdotcom","id":14179819,"id_str":"14179819","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1404589412105719812,"in_reply_to_status_id_str":"1404589412105719812","in_reply_to_user_id":14179819,"in_reply_to_user_id_str":"14179819","in_reply_to_screen_name":"njdotcom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":832569475270639616,"id_str":"832569475270639616","name":"Hack - of all trades","screen_name":"saywhatalston","location":"Winston-Salem, NC","description":"The - one and only... let\u2019s go!! Have you called your elected representatives - lately?","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":57,"friends_count":246,"listed_count":0,"created_at":"Fri - Feb 17 12:36:46 +0000 2017","favourites_count":29428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3799,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1048140382926770176\/KTJ15UwT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1048140382926770176\/KTJ15UwT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832569475270639616\/1574085692","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2478378834,"id_str":"2478378834","name":"TrevorWilson","screen_name":"CBCnewscamera","location":"Edmonton, - Alberta","description":"CBC Edm. News Cameraman","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":210,"friends_count":613,"listed_count":13,"created_at":"Mon - May 05 13:44:07 +0000 2014","favourites_count":745,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":298,"lang":null,"status":{"created_at":"Fri - Mar 25 15:00:59 +0000 2022","id":1507371978444836867,"id_str":"1507371978444836867","text":"RT - @stephcoombs: Heads-up journalism students and recent grads: @CBCEdmonton - is hiring for our summer scholarship program. \n\nThis is a paid\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stephcoombs","name":"Stephanie - Coombs","id":17047916,"id_str":"17047916","indices":[3,15]},{"screen_name":"CBCEdmonton","name":"CBC - Edmonton","id":18999830,"id_str":"18999830","indices":[64,76]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:47:06 +0000 2022","id":1507368483310473220,"id_str":"1507368483310473220","text":"Heads-up - journalism students and recent grads: @CBCEdmonton is hiring for our summer - scholarship program. \n\nThis is\u2026 https:\/\/t.co\/dXI7LYlyap","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBCEdmonton","name":"CBC - Edmonton","id":18999830,"id_str":"18999830","indices":[47,59]}],"urls":[{"url":"https:\/\/t.co\/dXI7LYlyap","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507368483310473220","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463320144572190722\/LqjMBHG0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463320144572190722\/LqjMBHG0_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1314079340653576192,"id_str":"1314079340653576192","name":"pocketAll","screen_name":"AlimMaalim","location":"South - Africa","description":"\ud83c\udf96\ud83c\udfc5\ud83e\udd47\ud83e\udd48\ud83e\udd49\ud83c\udfb1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":445,"listed_count":0,"created_at":"Thu - Oct 08 05:46:03 +0000 2020","favourites_count":852,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":222,"lang":null,"status":{"created_at":"Tue - Nov 17 06:02:12 +0000 2020","id":1328579171082178561,"id_str":"1328579171082178561","text":"@samyi__ - Jamaa kakutana na Acid.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1328364642314366976,"in_reply_to_status_id_str":"1328364642314366976","in_reply_to_user_id":1313076009231679489,"in_reply_to_user_id_str":"1313076009231679489","in_reply_to_screen_name":"thegreatmgs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323859121809096710\/dBYny5ic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323859121809096710\/dBYny5ic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314079340653576192\/1604467369","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":298300749,"id_str":"298300749","name":"Ronni - Zecher","screen_name":"ronniz7","location":"","description":"Licensed realtor - in both Arizona & Connecticut w\/ Sotheby''s International Realty. I reach - both coast specializing in second home and Luxury markets.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":487,"listed_count":1,"created_at":"Sat - May 14 02:29:28 +0000 2011","favourites_count":8485,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20939,"lang":null,"status":{"created_at":"Fri - Mar 25 21:56:18 +0000 2022","id":1507476496360742917,"id_str":"1507476496360742917","text":"Maybe - some \u201c Truth\u201d dashed in as well! https:\/\/t.co\/Foczix4FjR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Foczix4FjR","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1507240478957219840","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507240478957219840,"quoted_status_id_str":"1507240478957219840","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849463666911178752\/5Vq5mlfp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849463666911178752\/5Vq5mlfp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1001064329033199617,"id_str":"1001064329033199617","name":"Jim - Mulley","screen_name":"MulleyJim","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":513,"listed_count":0,"created_at":"Mon - May 28 11:35:09 +0000 2018","favourites_count":364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Oct 09 17:38:31 +0000 2021","id":1446892847622356992,"id_str":"1446892847622356992","text":"@gcraig1 - Yes. Had a blast! \nBeautiful stadium. And Great result!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gcraig1","name":"Gary - Craig","id":16414197,"id_str":"16414197","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1446891449916735496,"in_reply_to_status_id_str":"1446891449916735496","in_reply_to_user_id":16414197,"in_reply_to_user_id_str":"16414197","in_reply_to_screen_name":"gcraig1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":816332405166505984,"id_str":"816332405166505984","name":"Hannie - Schaft","screen_name":"elladoes","location":"United States","description":"legit - news,. #resist, #VoteBlueNoMatterWho Trump engages in genocide in our name. - DefeatTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3050,"friends_count":4120,"listed_count":7,"created_at":"Tue - Jan 03 17:16:26 +0000 2017","favourites_count":52135,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76720,"lang":null,"status":{"created_at":"Thu - Mar 17 00:45:01 +0000 2022","id":1504257460575551494,"id_str":"1504257460575551494","text":"RT - @MeidasTouch: When people tell you Republicans are \u201csmall government - conservatives,\u201d correct them. Republicans are big government author\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 12 15:29:27 +0000 2022","id":1502668098289094656,"id_str":"1502668098289094656","text":"When - people tell you Republicans are \u201csmall government conservatives,\u201d - correct them. Republicans are big government\u2026 https:\/\/t.co\/sAyGGr0SS4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sAyGGr0SS4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502668098289094656","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2998,"favorite_count":7443,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2998,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825176035293528065\/KUVrUhAf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825176035293528065\/KUVrUhAf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/816332405166505984\/1571312155","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1272412412654698496,"id_str":"1272412412654698496","name":"Ponleu - Moeun","screen_name":"MoeunPonleu","location":"Phnom Penh","description":"Be - happy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":724,"listed_count":1,"created_at":"Mon - Jun 15 06:15:41 +0000 2020","favourites_count":1942,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"status":{"created_at":"Thu - Oct 07 15:02:32 +0000 2021","id":1446128815420309505,"id_str":"1446128815420309505","text":"RT - @FerranTorres20: About last night \ud83d\udc42\ud83c\uddea\ud83c\uddf8 https:\/\/t.co\/bF3Lkvbvye","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FerranTorres20","name":"Ferran - Torres","id":816154566,"id_str":"816154566","indices":[3,18]}],"urls":[],"media":[{"id":1446049155810566151,"id_str":"1446049155810566151","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","url":"https:\/\/t.co\/bF3Lkvbvye","display_url":"pic.twitter.com\/bF3Lkvbvye","expanded_url":"https:\/\/twitter.com\/FerranTorres20\/status\/1446049163444162560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1446049163444162560,"source_status_id_str":"1446049163444162560","source_user_id":816154566,"source_user_id_str":"816154566"}]},"extended_entities":{"media":[{"id":1446049155810566151,"id_str":"1446049155810566151","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","url":"https:\/\/t.co\/bF3Lkvbvye","display_url":"pic.twitter.com\/bF3Lkvbvye","expanded_url":"https:\/\/twitter.com\/FerranTorres20\/status\/1446049163444162560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1446049163444162560,"source_status_id_str":"1446049163444162560","source_user_id":816154566,"source_user_id_str":"816154566"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 07 09:46:01 +0000 2021","id":1446049163444162560,"id_str":"1446049163444162560","text":"About - last night \ud83d\udc42\ud83c\uddea\ud83c\uddf8 https:\/\/t.co\/bF3Lkvbvye","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1446049155810566151,"id_str":"1446049155810566151","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","url":"https:\/\/t.co\/bF3Lkvbvye","display_url":"pic.twitter.com\/bF3Lkvbvye","expanded_url":"https:\/\/twitter.com\/FerranTorres20\/status\/1446049163444162560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1446049155810566151,"id_str":"1446049155810566151","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FBFmC7PXoAceITx.jpg","url":"https:\/\/t.co\/bF3Lkvbvye","display_url":"pic.twitter.com\/bF3Lkvbvye","expanded_url":"https:\/\/twitter.com\/FerranTorres20\/status\/1446049163444162560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2100,"favorite_count":42498,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2100,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1373707387115249669\/vNTbZE1W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1373707387115249669\/vNTbZE1W_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":988098320,"id_str":"988098320","name":"me\/rightnow","screen_name":"greyicewtr","location":"","description":"coffee - all day \/has adopted the metric system\/drainredhill\/standwithukraine","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":1504,"listed_count":0,"created_at":"Tue - Dec 04 05:31:52 +0000 2012","favourites_count":625,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":111,"lang":null,"status":{"created_at":"Wed - Mar 23 14:42:36 +0000 2022","id":1506642574840573952,"id_str":"1506642574840573952","text":"@BeschlossDC - Nebraska https:\/\/t.co\/Wst5TB9UOR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeschlossDC","name":"Michael - Beschloss","id":874916178,"id_str":"874916178","indices":[0,12]}],"urls":[],"media":[{"id":1506642569010188290,"id_str":"1506642569010188290","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FOirbxlVkAIM5QL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOirbxlVkAIM5QL.jpg","url":"https:\/\/t.co\/Wst5TB9UOR","display_url":"pic.twitter.com\/Wst5TB9UOR","expanded_url":"https:\/\/twitter.com\/greyicewtr\/status\/1506642574840573952\/photo\/1","type":"photo","sizes":{"large":{"w":1702,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":997,"h":1200,"resize":"fit"},"small":{"w":565,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506642569010188290,"id_str":"1506642569010188290","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FOirbxlVkAIM5QL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOirbxlVkAIM5QL.jpg","url":"https:\/\/t.co\/Wst5TB9UOR","display_url":"pic.twitter.com\/Wst5TB9UOR","expanded_url":"https:\/\/twitter.com\/greyicewtr\/status\/1506642574840573952\/photo\/1","type":"photo","sizes":{"large":{"w":1702,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":997,"h":1200,"resize":"fit"},"small":{"w":565,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506641097400987648,"in_reply_to_status_id_str":"1506641097400987648","in_reply_to_user_id":874916178,"in_reply_to_user_id_str":"874916178","in_reply_to_screen_name":"BeschlossDC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497726821105762305\/YLXQ8LzM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497726821105762305\/YLXQ8LzM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/988098320\/1641714960","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":771850274143105026,"id_str":"771850274143105026","name":"Daisy","screen_name":"MarkeyCarrie","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":21,"friends_count":628,"listed_count":0,"created_at":"Fri - Sep 02 23:20:20 +0000 2016","favourites_count":5346,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":444,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370453611948486658\/9KRb3e7J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370453611948486658\/9KRb3e7J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771850274143105026\/1472862426","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1183951912942686208,"id_str":"1183951912942686208","name":"baileyjames*ToDareIsToDo*\ud83c\udff3\ufe0f\u200d\ud83c\udf08","screen_name":"baileyjames978","location":"Portland","description":"Liberal, - writer, hospitality professional, StarWars nerd. Tacos. Tottenham Hotspur. - USMNT.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1412,"friends_count":2460,"listed_count":2,"created_at":"Tue - Oct 15 03:45:25 +0000 2019","favourites_count":37172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11328,"lang":null,"status":{"created_at":"Wed - Mar 23 14:00:10 +0000 2022","id":1506631895182090242,"id_str":"1506631895182090242","text":"Not - good. https:\/\/t.co\/89AApcs9lE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/89AApcs9lE","expanded_url":"https:\/\/twitter.com\/JoyAnnReid\/status\/1506625248871002121","display_url":"twitter.com\/JoyAnnReid\/sta\u2026","indices":[10,33]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506625248871002121,"quoted_status_id_str":"1506625248871002121","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183952111819788288\/6vpjCATr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183952111819788288\/6vpjCATr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3635775677,"id_str":"3635775677","name":"Jose - Barreto \ud83e\udde2","screen_name":"jose_barreto29","location":"","description":"I - be on here. I share funny stuff (sometimes).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":358,"listed_count":0,"created_at":"Sat - Sep 12 22:39:08 +0000 2015","favourites_count":2392,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":390,"lang":null,"status":{"created_at":"Thu - Nov 25 02:31:17 +0000 2021","id":1463696764175851522,"id_str":"1463696764175851522","text":"RT - @JeffCryptoKing: Family at thanksgiving: how\u2019s your Bitcoin crypto doing, - did you hit 100k yet?\n\nMe: https:\/\/t.co\/TkR4Bph4yW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1463548768658378767,"id_str":"1463548768658378767","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","url":"https:\/\/t.co\/TkR4Bph4yW","display_url":"pic.twitter.com\/TkR4Bph4yW","expanded_url":"https:\/\/twitter.com\/JeffCryptoKing\/status\/1463548828561420288\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":679,"resize":"fit"},"large":{"w":1280,"h":724,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"source_status_id":1463548828561420288,"source_status_id_str":"1463548828561420288","source_user_id":1267313252486307840,"source_user_id_str":"1267313252486307840"}]},"extended_entities":{"media":[{"id":1463548768658378767,"id_str":"1463548768658378767","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","url":"https:\/\/t.co\/TkR4Bph4yW","display_url":"pic.twitter.com\/TkR4Bph4yW","expanded_url":"https:\/\/twitter.com\/JeffCryptoKing\/status\/1463548828561420288\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":679,"resize":"fit"},"large":{"w":1280,"h":724,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"source_status_id":1463548828561420288,"source_status_id_str":"1463548828561420288","source_user_id":1267313252486307840,"source_user_id_str":"1267313252486307840","video_info":{"aspect_ratio":[320,181],"duration_millis":9151,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/pl\/Ey_3c3v-kXV3FP6h.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/1272x720\/nMfZS9FswSROYEwQ.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/476x270\/8UkXXApTTHhzWcfu.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/636x360\/WpjiwLj48J8NwKgo.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 24 16:43:26 +0000 2021","id":1463548828561420288,"id_str":"1463548828561420288","text":"Family - at thanksgiving: how\u2019s your Bitcoin crypto doing, did you hit 100k yet?\n\nMe: - https:\/\/t.co\/TkR4Bph4yW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1463548768658378767,"id_str":"1463548768658378767","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","url":"https:\/\/t.co\/TkR4Bph4yW","display_url":"pic.twitter.com\/TkR4Bph4yW","expanded_url":"https:\/\/twitter.com\/JeffCryptoKing\/status\/1463548828561420288\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":679,"resize":"fit"},"large":{"w":1280,"h":724,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1463548768658378767,"id_str":"1463548768658378767","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1463548768658378767\/pu\/img\/jq0kcB6ptqavbm9J.jpg","url":"https:\/\/t.co\/TkR4Bph4yW","display_url":"pic.twitter.com\/TkR4Bph4yW","expanded_url":"https:\/\/twitter.com\/JeffCryptoKing\/status\/1463548828561420288\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":679,"resize":"fit"},"large":{"w":1280,"h":724,"resize":"fit"},"small":{"w":680,"h":385,"resize":"fit"}},"video_info":{"aspect_ratio":[320,181],"duration_millis":9151,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/pl\/Ey_3c3v-kXV3FP6h.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/1272x720\/nMfZS9FswSROYEwQ.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/476x270\/8UkXXApTTHhzWcfu.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1463548768658378767\/pu\/vid\/636x360\/WpjiwLj48J8NwKgo.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":526,"favorite_count":3425,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":526,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206462033962655745\/O4IRl8oD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206462033962655745\/O4IRl8oD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3635775677\/1581567564","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1000922448282423296,"id_str":"1000922448282423296","name":"bug\ud83d\udc1d\ud83e\udd70","screen_name":"brittroerick3","location":"Texas, - USA","description":"can\u2019t hangout I\u2019m working","url":"https:\/\/t.co\/mXwoVFF0Ci","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mXwoVFF0Ci","expanded_url":"https:\/\/youtu.be\/F2_D1yWG3mI","display_url":"youtu.be\/F2_D1yWG3mI","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":740,"listed_count":0,"created_at":"Mon - May 28 02:11:22 +0000 2018","favourites_count":50332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3138,"lang":null,"status":{"created_at":"Wed - Mar 09 15:49:56 +0000 2022","id":1501586091123560456,"id_str":"1501586091123560456","text":"RT - @PallaviGunalan: i\u2019m dating a guy who actually likes me and i\u2019ve - never been more terrified in my life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PallaviGunalan","name":"i - can be your long lost pal","id":135191418,"id_str":"135191418","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 07:35:01 +0000 2022","id":1501099151316062209,"id_str":"1501099151316062209","text":"i\u2019m - dating a guy who actually likes me and i\u2019ve never been more terrified - in my life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15259,"favorite_count":199738,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15259,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489820322572521472\/A0TXHZoX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489820322572521472\/A0TXHZoX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000922448282423296\/1640785526","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1407908143,"id_str":"1407908143","name":"tunde - dickson","screen_name":"OladejiDickson","location":"Lagos,Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":187,"listed_count":0,"created_at":"Mon - May 06 14:37:39 +0000 2013","favourites_count":125,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":349,"lang":null,"status":{"created_at":"Wed - May 12 07:16:44 +0000 2021","id":1392378189259972608,"id_str":"1392378189259972608","text":"@MobilePunch - This statement is ridiculous!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MobilePunch","name":"Punch - Newspapers","id":24291371,"id_str":"24291371","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1392266290988003330,"in_reply_to_status_id_str":"1392266290988003330","in_reply_to_user_id":24291371,"in_reply_to_user_id_str":"24291371","in_reply_to_screen_name":"MobilePunch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317548594984079360\/09IF6fsI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317548594984079360\/09IF6fsI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1407908143\/1602963039","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":238099710,"id_str":"238099710","name":"trisha - mckelvey","screen_name":"trishamckelvey","location":"Ballingarry","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":542,"listed_count":0,"created_at":"Fri - Jan 14 10:52:04 +0000 2011","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22947,"lang":null,"status":{"created_at":"Sat - Mar 26 09:26:19 +0000 2022","id":1507650143528570880,"id_str":"1507650143528570880","text":"RT - @Independent_ie: \u2018Her name will not be forgotten'' \u2013 Prince Charles - pays tribute after meeting with the parents of Ashling Murphy during\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Independent_ie","name":"Independent.ie","id":91334232,"id_str":"91334232","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:45:01 +0000 2022","id":1507428356391936010,"id_str":"1507428356391936010","text":"\u2018Her - name will not be forgotten'' \u2013 Prince Charles pays tribute after meeting - with the parents of Ashling Murphy dur\u2026 https:\/\/t.co\/aa9AmLbZui","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aa9AmLbZui","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507428356391936010","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":48,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":174860735,"id_str":"174860735","name":"Marianne - Zinkewicz","screen_name":"zinkma","location":"Southern California","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":130,"friends_count":770,"listed_count":0,"created_at":"Thu - Aug 05 00:43:25 +0000 2010","favourites_count":14796,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2795,"lang":null,"status":{"created_at":"Fri - Mar 25 23:04:00 +0000 2022","id":1507493532235452424,"id_str":"1507493532235452424","text":"@Ann91237283 - @brennan_elliott He is the best that\u2019s why!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ann91237283","name":"Ann- - Brennie Forever","id":876150313669021696,"id_str":"876150313669021696","indices":[0,12]},{"screen_name":"brennan_elliott","name":"Brennan - Elliott","id":1651606801,"id_str":"1651606801","indices":[13,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507335830809067520,"in_reply_to_status_id_str":"1507335830809067520","in_reply_to_user_id":876150313669021696,"in_reply_to_user_id_str":"876150313669021696","in_reply_to_screen_name":"Ann91237283","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1037544151472992257\/dIh9KLi0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1037544151472992257\/dIh9KLi0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1078068290226933766,"id_str":"1078068290226933766","name":"Barbara","screen_name":"Barbara52144504","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":496,"listed_count":0,"created_at":"Wed - Dec 26 23:21:24 +0000 2018","favourites_count":11696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2328759827,"id_str":"2328759827","name":"Marcie - Gibson","screen_name":"marcie_mg","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":593,"listed_count":0,"created_at":"Thu - Feb 06 20:06:31 +0000 2014","favourites_count":8907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":169,"lang":null,"status":{"created_at":"Sat - Mar 26 00:48:02 +0000 2022","id":1507519711000604674,"id_str":"1507519711000604674","text":"@joncoopertweets - A 20.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507502441717280772,"in_reply_to_status_id_str":"1507502441717280772","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":718519627219890176,"id_str":"718519627219890176","name":"Margaret - Temple","screen_name":"MargaretTempl10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":442,"listed_count":0,"created_at":"Fri - Apr 08 19:23:23 +0000 2016","favourites_count":1513,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261511246056247307,"id_str":"1261511246056247307","name":"Mohammed - alkazal \u0645\u062d\u0645\u062f \u0627\u0644\u062e\u0632\u0639\u0644\u064a","screen_name":"Mohamme70617889","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":462,"friends_count":648,"listed_count":1,"created_at":"Sat - May 16 04:18:24 +0000 2020","favourites_count":1576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1807,"lang":null,"status":{"created_at":"Fri - Mar 25 23:52:25 +0000 2022","id":1507505717963636738,"id_str":"1507505717963636738","text":"\u0633\u0628\u062d\u0627\u0646 - \u0627\u0644\u0644\u0647 \u2026.\n\n\ufd3f \u064a\u064f\u0624\u0652\u062a\u0650\u064a - \u0627\u0644\u0652\u062d\u0650\u0643\u0652\u0645\u064e\u0629\u064e \u0645\u064e\u0646 - \u064a\u064e\u0634\u064e\u0627\u0621\u064f \u06da \u0648\u064e\u0645\u064e\u0646 - \u064a\u064f\u0624\u0652\u062a\u064e \u0627\u0644\u0652\u062d\u0650\u0643\u0652\u0645\u064e\u0629\u064e - \u0641\u064e\u0642\u064e\u062f\u0652 \u0623\u064f\u0648\u062a\u0650\u064a\u064e - \u062e\u064e\u064a\u0652\u0631\u064b\u0627 \u0643\u064e\u062b\u0650\u064a\u0631\u064b\u0627 - \u06d7 \ufd3e https:\/\/t.co\/iV1lKD7Tz5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507505646668861441,"id_str":"1507505646668861441","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507505646668861441\/pu\/img\/VNJ9zh5UakMrSV2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507505646668861441\/pu\/img\/VNJ9zh5UakMrSV2X.jpg","url":"https:\/\/t.co\/iV1lKD7Tz5","display_url":"pic.twitter.com\/iV1lKD7Tz5","expanded_url":"https:\/\/twitter.com\/Mohamme70617889\/status\/1507505717963636738\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":884,"resize":"fit"},"medium":{"w":576,"h":884,"resize":"fit"},"small":{"w":443,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507505646668861441,"id_str":"1507505646668861441","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507505646668861441\/pu\/img\/VNJ9zh5UakMrSV2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507505646668861441\/pu\/img\/VNJ9zh5UakMrSV2X.jpg","url":"https:\/\/t.co\/iV1lKD7Tz5","display_url":"pic.twitter.com\/iV1lKD7Tz5","expanded_url":"https:\/\/twitter.com\/Mohamme70617889\/status\/1507505717963636738\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":884,"resize":"fit"},"medium":{"w":576,"h":884,"resize":"fit"},"small":{"w":443,"h":680,"resize":"fit"}},"video_info":{"aspect_ratio":[144,221],"duration_millis":81014,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507505646668861441\/pu\/vid\/320x490\/NI3jQkAHd2qTkzRb.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507505646668861441\/pu\/pl\/nxQ4r55RVVDO9LK4.m3u8?tag=12&container=fmp4&v=0cb"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507505646668861441\/pu\/vid\/576x884\/d14-5zP6PUIoES3M.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507505646668861441\/pu\/vid\/480x736\/nKPgvbfSaScSCxNs.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261512415688175618\/xJ215e2I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261512415688175618\/xJ215e2I_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221638400375054340,"id_str":"1221638400375054340","name":"Joseph - White","screen_name":"JosephW57325287","location":"","description":"I am an - Aquarius and Aquariuses rule the air! That is what makes me so special! It - is Who I am as an Individual!!!!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":477,"listed_count":1,"created_at":"Mon - Jan 27 03:38:15 +0000 2020","favourites_count":3190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2082,"lang":null,"status":{"created_at":"Sat - Feb 20 06:36:34 +0000 2021","id":1363014664607592451,"id_str":"1363014664607592451","text":"A - Very Happy Birthday, Rihuanna, and I thank God for keeping You alive, for - keeping You in my Love Life, to become my Wife, in 2021!!!!!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":896268238325243904,"id_str":"896268238325243904","name":"Alfonso - Ibrahshoto Lambertin","screen_name":"ibrahshoto","location":"Mbeya, Tanzania","description":"Through - My Rise And Fall","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":475,"listed_count":0,"created_at":"Sat - Aug 12 07:12:54 +0000 2017","favourites_count":711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":347,"lang":null,"status":{"created_at":"Sun - Mar 20 19:59:41 +0000 2022","id":1505635206736322562,"id_str":"1505635206736322562","text":"@FidQ - Album","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FidQ","name":"#SHUJAA","id":116454853,"id_str":"116454853","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505630745330655250,"in_reply_to_status_id_str":"1505630745330655250","in_reply_to_user_id":116454853,"in_reply_to_user_id_str":"116454853","in_reply_to_screen_name":"FidQ","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379800164873949184\/K66cXhV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379800164873949184\/K66cXhV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896268238325243904\/1502522908","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":857310010057076736,"id_str":"857310010057076736","name":"Nordean - Mikati","screen_name":"nournews12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":976,"listed_count":0,"created_at":"Wed - Apr 26 19:06:49 +0000 2017","favourites_count":3107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108401524546383872,"id_str":"1108401524546383872","name":"Penina - Abuga","screen_name":"AbugaPenina","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":180,"listed_count":0,"created_at":"Wed - Mar 20 16:14:51 +0000 2019","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Fri - Feb 11 19:16:45 +0000 2022","id":1492216052402507778,"id_str":"1492216052402507778","text":"RE-OPENING - OF THE UNIVERSITY https:\/\/t.co\/Cbs6utzKE3 via @@egertonunikenya","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"egertonunikenya","name":"Egerton - University","id":701837484028727299,"id_str":"701837484028727299","indices":[58,74]}],"urls":[{"url":"https:\/\/t.co\/Cbs6utzKE3","expanded_url":"https:\/\/www.egerton.ac.ke\/notice-board\/re-opening-of-the-university","display_url":"egerton.ac.ke\/notice-board\/r\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1108401781850234880\/bC3IdeUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108401781850234880\/bC3IdeUy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957946756305649666,"id_str":"957946756305649666","name":"Mark - Richardson","screen_name":"DiploRichardson","location":"Brussels,Belgium","description":"Deputy - Permanent Representative of Canada to NATO\nRepr\u00e9sentant Permanent Adjoint du - Canada aupr\u00e8s de l''OTAN","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":3319,"listed_count":6,"created_at":"Mon - Jan 29 12:01:19 +0000 2018","favourites_count":1899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":652,"lang":null,"status":{"created_at":"Fri - Mar 18 07:23:54 +0000 2022","id":1504720233042436122,"id_str":"1504720233042436122","text":"RT - @ALanoszka: NATO''s Eastern Flank as of 16 March 2022: a reinforced presence - involving many allies. https:\/\/t.co\/YWNTJv3D9d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ALanoszka","name":"Alexander - Lanoszka","id":2879883826,"id_str":"2879883826","indices":[3,13]}],"urls":[],"media":[{"id":1504511963656826890,"id_str":"1504511963656826890","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","url":"https:\/\/t.co\/YWNTJv3D9d","display_url":"pic.twitter.com\/YWNTJv3D9d","expanded_url":"https:\/\/twitter.com\/ALanoszka\/status\/1504511966638923781\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1504511966638923781,"source_status_id_str":"1504511966638923781","source_user_id":2879883826,"source_user_id_str":"2879883826"}]},"extended_entities":{"media":[{"id":1504511963656826890,"id_str":"1504511963656826890","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","url":"https:\/\/t.co\/YWNTJv3D9d","display_url":"pic.twitter.com\/YWNTJv3D9d","expanded_url":"https:\/\/twitter.com\/ALanoszka\/status\/1504511966638923781\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1504511966638923781,"source_status_id_str":"1504511966638923781","source_user_id":2879883826,"source_user_id_str":"2879883826"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 17:36:19 +0000 2022","id":1504511966638923781,"id_str":"1504511966638923781","text":"NATO''s - Eastern Flank as of 16 March 2022: a reinforced presence involving many allies. - https:\/\/t.co\/YWNTJv3D9d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504511963656826890,"id_str":"1504511963656826890","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","url":"https:\/\/t.co\/YWNTJv3D9d","display_url":"pic.twitter.com\/YWNTJv3D9d","expanded_url":"https:\/\/twitter.com\/ALanoszka\/status\/1504511966638923781\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504511963656826890,"id_str":"1504511963656826890","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOEZqOIXMAoxTvg.jpg","url":"https:\/\/t.co\/YWNTJv3D9d","display_url":"pic.twitter.com\/YWNTJv3D9d","expanded_url":"https:\/\/twitter.com\/ALanoszka\/status\/1504511966638923781\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":184,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039432080126562304\/jmOSKHXR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039432080126562304\/jmOSKHXR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957946756305649666\/1521036317","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":848182474878328834,"id_str":"848182474878328834","name":"Sharon - Wilden","screen_name":"SharWilden2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":359,"listed_count":0,"created_at":"Sat - Apr 01 14:37:15 +0000 2017","favourites_count":1253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Wed - Feb 24 17:47:03 +0000 2021","id":1364632951057711105,"id_str":"1364632951057711105","text":"@RpsAgainstTrump - So Democrats should always resign when accused yet Republicans accused of - the same can go on as if\u2026 https:\/\/t.co\/2Tya716MSp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RpsAgainstTrump","name":"Republicans - against Trumpism","id":1221462414744596483,"id_str":"1221462414744596483","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/2Tya716MSp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1364632951057711105","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1364631128464891908,"in_reply_to_status_id_str":"1364631128464891908","in_reply_to_user_id":1221462414744596483,"in_reply_to_user_id_str":"1221462414744596483","in_reply_to_screen_name":"RpsAgainstTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1084488766448906240\/FJT7_t30_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084488766448906240\/FJT7_t30_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848182474878328834\/1547397276","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":127936452,"id_str":"127936452","name":"Sukeert - Shanker","screen_name":"SukeertShanker","location":"Silicon Valley","description":"Eclectic. - New dad. Scaling the first global private bank for global citizens wherever - they may be. Getting younger by the day.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":133,"listed_count":0,"created_at":"Tue - Mar 30 17:22:07 +0000 2010","favourites_count":204,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":178,"lang":null,"status":{"created_at":"Wed - Jan 27 20:43:06 +0000 2021","id":1354530394008293378,"id_str":"1354530394008293378","text":"@AndrewYNg - Education and healthcare for the masses in developing countries","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewYNg","name":"Andrew - Ng","id":216939636,"id_str":"216939636","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1354489514652131328,"in_reply_to_status_id_str":"1354489514652131328","in_reply_to_user_id":216939636,"in_reply_to_user_id_str":"216939636","in_reply_to_screen_name":"AndrewYNg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346884894455078917\/7Nay0NUB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346884894455078917\/7Nay0NUB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127936452\/1609957689","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":930115089566400512,"id_str":"930115089566400512","name":"Nabeel - Asghar","screen_name":"Techblitz20","location":"Islamabad, Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":1390,"listed_count":0,"created_at":"Mon - Nov 13 16:48:12 +0000 2017","favourites_count":75,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384963262178070531\/izWz78nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384963262178070531\/izWz78nc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":218332407,"id_str":"218332407","name":"Amy","screen_name":"amybliles","location":"Texas, - USA","description":"Recovering lawyer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1196,"friends_count":1758,"listed_count":36,"created_at":"Mon - Nov 22 01:56:57 +0000 2010","favourites_count":35233,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6581,"lang":null,"status":{"created_at":"Sat - Mar 26 02:30:57 +0000 2022","id":1507545613617057793,"id_str":"1507545613617057793","text":"When - someone shows you who they are believe them. https:\/\/t.co\/GOAs0xpA7g","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GOAs0xpA7g","expanded_url":"https:\/\/twitter.com\/lgkatzphd\/status\/1507318366503112706","display_url":"twitter.com\/lgkatzphd\/stat\u2026","indices":[50,73]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507318366503112706,"quoted_status_id_str":"1507318366503112706","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000033","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313979396940853248\/HYB2HVFx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313979396940853248\/HYB2HVFx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218332407\/1549852824","profile_link_color":"FF6699","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27792033,"id_str":"27792033","name":"Travon - Free","screen_name":"Travon","location":"Mars Bitches.","description":"Writer. - Director. Oscar & Emmy(s) winner in no particular order. Black Bi Popular - Demand. \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udfc1","url":"https:\/\/t.co\/ifbAd75C4H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ifbAd75C4H","expanded_url":"http:\/\/www.instagram.com\/travon","display_url":"instagram.com\/travon","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":154069,"friends_count":3745,"listed_count":1557,"created_at":"Tue - Mar 31 02:25:10 +0000 2009","favourites_count":133322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":62478,"lang":null,"status":{"created_at":"Sat - Mar 26 07:35:17 +0000 2022","id":1507622198478991362,"id_str":"1507622198478991362","text":"@kylebuchanan - Exact plate from last year. Loved the smoked salmon Oscar.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylebuchanan","name":"Kyle - Buchanan","id":33466150,"id_str":"33466150","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507518852040560640,"in_reply_to_status_id_str":"1507518852040560640","in_reply_to_user_id":33466150,"in_reply_to_user_id_str":"33466150","in_reply_to_screen_name":"kylebuchanan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459339515806425091\/TBZI3bvA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459339515806425091\/TBZI3bvA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27792033\/1639510608","profile_link_color":"D90D0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231911375552774144,"id_str":"1231911375552774144","name":"MICHAEL","screen_name":"MICHAEL68717662","location":"Limpopo - ","description":"POULTRY FARMER","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":344,"listed_count":1,"created_at":"Mon - Feb 24 11:59:03 +0000 2020","favourites_count":1831,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Sat - Feb 26 19:11:35 +0000 2022","id":1497650568529006592,"id_str":"1497650568529006592","text":"@Tsogang3 - You said it all bro","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tsogang3","name":"#BuyFromBlackPeopleEveryDay - And Create Jobs \ud83c\udff4\ud83c\udff4\ud83c\udff4","id":1176474017030639618,"id_str":"1176474017030639618","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1497602447845605378,"in_reply_to_status_id_str":"1497602447845605378","in_reply_to_user_id":1176474017030639618,"in_reply_to_user_id_str":"1176474017030639618","in_reply_to_screen_name":"Tsogang3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280960075805450243\/jNRoXLoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280960075805450243\/jNRoXLoy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780802880122949632,"id_str":"780802880122949632","name":"Frankie","screen_name":"hanky_frankie","location":"Portland, - OR","description":"There is no Tim Sims. I made him up. | Full of hot water","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":309,"friends_count":442,"listed_count":0,"created_at":"Tue - Sep 27 16:14:48 +0000 2016","favourites_count":21902,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Thu - Sep 30 21:49:20 +0000 2021","id":1443694476870905875,"id_str":"1443694476870905875","text":"@ineedtorebrand - \ud83d\udc40","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ineedtorebrand","name":"1000 - pound cheese wheel","id":152911449,"id_str":"152911449","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1443684184967442433,"in_reply_to_status_id_str":"1443684184967442433","in_reply_to_user_id":152911449,"in_reply_to_user_id_str":"152911449","in_reply_to_screen_name":"ineedtorebrand","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328900004816175105\/MUXrCukC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328900004816175105\/MUXrCukC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780802880122949632\/1506673893","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719829873838186497,"id_str":"719829873838186497","name":"Michael - J. Weil","screen_name":"mj_weil","location":"Wayne, NJ","description":"Husband. - Daddy. New Jersey Family Law Attorney. Democrat. One-time aspiring D.C. political - type. @Mets fan. NJ native. @GWtweets \u201808 and @UConn Law \u201813.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":899,"listed_count":0,"created_at":"Tue - Apr 12 10:09:50 +0000 2016","favourites_count":986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":279,"lang":null,"status":{"created_at":"Thu - Mar 24 23:49:31 +0000 2022","id":1507142599093760001,"id_str":"1507142599093760001","text":"@abaumania - Like you trusted him before today.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abaumania","name":"Andrew - Baumann","id":136473044,"id_str":"136473044","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507139124922585093,"in_reply_to_status_id_str":"1507139124922585093","in_reply_to_user_id":136473044,"in_reply_to_user_id_str":"136473044","in_reply_to_screen_name":"abaumania","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/719832306886787072\/4gPWnqE3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/719832306886787072\/4gPWnqE3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719829873838186497\/1485362381","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246737919127085056,"id_str":"1246737919127085056","name":"Sandra","screen_name":"Sandra64285000","location":"","description":"suka - jadi sayang klo d kepoin","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":360,"listed_count":0,"created_at":"Sun - Apr 05 09:54:37 +0000 2020","favourites_count":253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Wed - Sep 15 06:04:29 +0000 2021","id":1438020879678513154,"id_str":"1438020879678513154","text":"@kristoimmanuel - Aku","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kristoimmanuel","name":"Kristo - Kentang udah vaksin (YUK VAKSIN)","id":1105524072471945216,"id_str":"1105524072471945216","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1437800653988843523,"in_reply_to_status_id_str":"1437800653988843523","in_reply_to_user_id":1105524072471945216,"in_reply_to_user_id_str":"1105524072471945216","in_reply_to_screen_name":"kristoimmanuel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246739056467173378\/c_o8Q9Mk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246739056467173378\/c_o8Q9Mk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235904436997931009,"id_str":"1235904436997931009","name":"Roger - Dennie","screen_name":"RogerDennie1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":352,"listed_count":0,"created_at":"Fri - Mar 06 12:26:16 +0000 2020","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - May 03 10:56:50 +0000 2021","id":1389172089328836608,"id_str":"1389172089328836608","text":"@SpiroAgnewGhost - Horse\u2019s ass","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpiroAgnewGhost","name":"Spiro - Agnew\u2019s Ghost \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":2323448533,"id_str":"2323448533","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1388914516939874305,"in_reply_to_status_id_str":"1388914516939874305","in_reply_to_user_id":2323448533,"in_reply_to_user_id_str":"2323448533","in_reply_to_screen_name":"SpiroAgnewGhost","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947813442865565696,"id_str":"947813442865565696","name":"lily - Islam","screen_name":"AAsma_Islam","location":"Kaduna","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":167,"listed_count":0,"created_at":"Mon - Jan 01 12:55:09 +0000 2018","favourites_count":1487,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":573,"lang":null,"status":{"created_at":"Thu - Mar 24 15:09:18 +0000 2022","id":1507011682287034379,"id_str":"1507011682287034379","text":"I - received a peer recognition @Viewbug https:\/\/t.co\/5G1HGKkI8C #photography","truncated":false,"entities":{"hashtags":[{"text":"photography","indices":[63,75]}],"symbols":[],"user_mentions":[{"screen_name":"viewbug","name":"VIEWBUG","id":16119090,"id_str":"16119090","indices":[30,38]}],"urls":[{"url":"https:\/\/t.co\/5G1HGKkI8C","expanded_url":"https:\/\/www.viewbug.com\/photo\/77759037","display_url":"viewbug.com\/photo\/77759037","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/www.viewbug.com\" rel=\"nofollow\"\u003eViewBug\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1040696438634754048\/xNtNXqeZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1040696438634754048\/xNtNXqeZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947813442865565696\/1547750239","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":746771938052284417,"id_str":"746771938052284417","name":"RaDonna - Wood","screen_name":"radonna_wood","location":"Lexington, TN","description":"works - at Easter Seals of Tennessee , single, cat lady, happy!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":1763,"listed_count":0,"created_at":"Sat - Jun 25 18:27:59 +0000 2016","favourites_count":20265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5220,"lang":null,"status":{"created_at":"Thu - Mar 24 19:55:29 +0000 2022","id":1507083701443776513,"id_str":"1507083701443776513","text":"@KevinSixx13 - By cheating!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KevinSixx13","name":"Kevin - \u2615\ufe0f\ud83c\udfb6","id":1248654952639037442,"id_str":"1248654952639037442","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506831380885377024,"in_reply_to_status_id_str":"1506831380885377024","in_reply_to_user_id":1248654952639037442,"in_reply_to_user_id_str":"1248654952639037442","in_reply_to_screen_name":"KevinSixx13","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/828099154769494016\/mPedTwqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/828099154769494016\/mPedTwqC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269445804797894656,"id_str":"1269445804797894656","name":"Brit","screen_name":"brit11634936","location":"Atlanta, - GA","description":"yoga instructor. mobility specialist. photographer. dogmom - to piper. \u270c\ud83c\udffc RYT-200, FRCms, FRA","url":"https:\/\/t.co\/IwuE7pbsD5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IwuE7pbsD5","expanded_url":"http:\/\/britkidd.com","display_url":"britkidd.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":155,"listed_count":0,"created_at":"Sun - Jun 07 01:47:34 +0000 2020","favourites_count":4323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335593908072542208\/_DyDbjwZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335593908072542208\/_DyDbjwZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269445804797894656\/1593883838","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289431906946342912,"id_str":"1289431906946342912","name":"Debbie - Richmond","screen_name":"DebbieR26062279","location":"Fenton, MO","description":"Live - in St. Louis, County, Fenton, MO. Born and raised here. Huge STL Cardinals - Fan. Vote for the best Candidate. @Biden\/Harris2020.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":245,"listed_count":0,"created_at":"Sat - Aug 01 05:26:38 +0000 2020","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":165,"lang":null,"status":{"created_at":"Fri - Nov 20 01:32:52 +0000 2020","id":1329598551664586757,"id_str":"1329598551664586757","text":"@Cardinals - Hopefully they''ll be able to play all of their games, and won''t have to - sit out because most of the play\u2026 https:\/\/t.co\/FsDM1JaeZ2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cardinals","name":"St. - Louis Cardinals","id":52847728,"id_str":"52847728","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/FsDM1JaeZ2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1329598551664586757","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1329165247232544771,"in_reply_to_status_id_str":"1329165247232544771","in_reply_to_user_id":52847728,"in_reply_to_user_id_str":"52847728","in_reply_to_screen_name":"Cardinals","geo":null,"coordinates":null,"place":{"id":"00b12a4d4b1e946f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00b12a4d4b1e946f.json","place_type":"city","name":"Fenton","full_name":"Fenton, - MO","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-90.49599,38.461929],[-90.405045,38.461929],[-90.405045,38.55905],[-90.49599,38.55905]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308108869164507142\/mfR7LIhy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308108869164507142\/mfR7LIhy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290502838192308224,"id_str":"1290502838192308224","name":"Good& - Plenty","screen_name":"BrendaGoodell1","location":"Angola Ny","description":"To - conquer the swamp monster''s of what was once the Republican party","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":126,"friends_count":166,"listed_count":0,"created_at":"Tue - Aug 04 04:21:01 +0000 2020","favourites_count":14567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4340,"lang":null,"status":{"created_at":"Fri - Apr 16 23:52:24 +0000 2021","id":1383206673712623618,"id_str":"1383206673712623618","text":"Everyone - one knows they picked who would be standing behind Trump at his rallies and - this was before the debate whe\u2026 https:\/\/t.co\/61bwFPeL16","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/61bwFPeL16","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1383206673712623618","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351263503382945796\/o018iGey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351263503382945796\/o018iGey_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1002304169708015616,"id_str":"1002304169708015616","name":"manny - bernardo","screen_name":"mannybernardo7","location":"United States","description":"General - News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":218,"listed_count":0,"created_at":"Thu - May 31 21:41:50 +0000 2018","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032725667262197760\/qTqzI5eD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032725667262197760\/qTqzI5eD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2270242099,"id_str":"2270242099","name":"\u0645\u0648\u0627\u0637\u0646","screen_name":"amrnasreldinamr","location":"The - World","description":"Silent observer of the dynamic universe... Interested - in politics\/history (especially Egypt and the ME), history of warfare, trains - and aircraft...","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":181,"friends_count":5000,"listed_count":1,"created_at":"Tue - Dec 31 11:14:09 +0000 2013","favourites_count":24019,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6040,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159537016587149312\/aQXLwYqr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159537016587149312\/aQXLwYqr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270242099\/1611425497","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1098081412329234432,"id_str":"1098081412329234432","name":"\u2661 - k","screen_name":"kayladistler","location":"Paradise, IN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":609,"listed_count":1,"created_at":"Wed - Feb 20 04:46:24 +0000 2019","favourites_count":43986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2381,"lang":null,"status":{"created_at":"Tue - Mar 15 23:40:13 +0000 2022","id":1503878765486788610,"id_str":"1503878765486788610","text":"RT - @kaithebulll: No relationship is perfect but please realize when someone is - taking advantage of you, belittling you, emotionally abusing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kaithebulll","name":"The - Red Sunflower","id":1179987074751094785,"id_str":"1179987074751094785","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 13:31:43 +0000 2022","id":1503725634534748166,"id_str":"1503725634534748166","text":"No - relationship is perfect but please realize when someone is taking advantage - of you, belittling you, emotionally\u2026 https:\/\/t.co\/v1HfPrdnqT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v1HfPrdnqT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503725634534748166","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121331,"favorite_count":588959,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":121331,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443680331744296963\/jxyObcqA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443680331744296963\/jxyObcqA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098081412329234432\/1633035189","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4194916949,"id_str":"4194916949","name":"Maureen - Swanson","screen_name":"moswan199","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":824,"listed_count":0,"created_at":"Sun - Nov 15 15:40:00 +0000 2015","favourites_count":6075,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4348,"lang":null,"status":{"created_at":"Tue - Mar 22 01:19:05 +0000 2022","id":1506077973262311424,"id_str":"1506077973262311424","text":"RT - @ccano1971: 94 years old- \u201cI\u2019m going to work hard to get you in - office!\u201d https:\/\/t.co\/yGMC0pJvj6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ccano1971","name":"Cynthia - Cano","id":1025359190,"id_str":"1025359190","indices":[3,13]}],"urls":[],"media":[{"id":1505764734766915588,"id_str":"1505764734766915588","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","url":"https:\/\/t.co\/yGMC0pJvj6","display_url":"pic.twitter.com\/yGMC0pJvj6","expanded_url":"https:\/\/twitter.com\/ccano1971\/status\/1505764745101680642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1512,"h":2016,"resize":"fit"}},"source_status_id":1505764745101680642,"source_status_id_str":"1505764745101680642","source_user_id":1025359190,"source_user_id_str":"1025359190"}]},"extended_entities":{"media":[{"id":1505764734766915588,"id_str":"1505764734766915588","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","url":"https:\/\/t.co\/yGMC0pJvj6","display_url":"pic.twitter.com\/yGMC0pJvj6","expanded_url":"https:\/\/twitter.com\/ccano1971\/status\/1505764745101680642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1512,"h":2016,"resize":"fit"}},"source_status_id":1505764745101680642,"source_status_id_str":"1505764745101680642","source_user_id":1025359190,"source_user_id_str":"1025359190"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 04:34:25 +0000 2022","id":1505764745101680642,"id_str":"1505764745101680642","text":"94 - years old- \u201cI\u2019m going to work hard to get you in office!\u201d https:\/\/t.co\/yGMC0pJvj6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505764734766915588,"id_str":"1505764734766915588","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","url":"https:\/\/t.co\/yGMC0pJvj6","display_url":"pic.twitter.com\/yGMC0pJvj6","expanded_url":"https:\/\/twitter.com\/ccano1971\/status\/1505764745101680642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1512,"h":2016,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505764734766915588,"id_str":"1505764734766915588","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOWNDGMXoAQtr-M.jpg","url":"https:\/\/t.co\/yGMC0pJvj6","display_url":"pic.twitter.com\/yGMC0pJvj6","expanded_url":"https:\/\/twitter.com\/ccano1971\/status\/1505764745101680642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1512,"h":2016,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1769,"favorite_count":13302,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1769,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/834018088056127488\/3ZGPwWux_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/834018088056127488\/3ZGPwWux_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":859432130186665984,"id_str":"859432130186665984","name":"tira\u2077","screen_name":"__sharifahatira","location":"","description":"kth.v","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":67,"friends_count":144,"listed_count":0,"created_at":"Tue - May 02 15:39:22 +0000 2017","favourites_count":25773,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28570,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497624381324857346\/VbmFwnYG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497624381324857346\/VbmFwnYG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859432130186665984\/1647877354","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2543051297,"id_str":"2543051297","name":"JeshurunJudah - \u05d9\u05b0\u05e9\u05bb\u05c1\u05e8\u05d5\u05bc\u05df\u2764\ufe0f","screen_name":"Jeshurunjudah","location":"Cape - Town, next to heaven. ","description":"There is no one like the God of Jeshurun. - University of Western Cape Alumni. AKA: Uni of the Wild Coloureds. Politics - junkie. Apartheid survivor \ud83c\uddff\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":132,"listed_count":0,"created_at":"Mon - May 12 14:00:08 +0000 2014","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":257,"lang":null,"status":{"created_at":"Mon - Nov 29 15:04:00 +0000 2021","id":1465335743384068103,"id_str":"1465335743384068103","text":"@GregAbbott_TX - We have lived through South African Apartheid, thanks, but we are not inclined - to experience America\u2026 https:\/\/t.co\/kJztLVNW85","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GregAbbott_TX","name":"Greg - Abbott","id":90651198,"id_str":"90651198","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/kJztLVNW85","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1465335743384068103","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1465060080131489797,"in_reply_to_status_id_str":"1465060080131489797","in_reply_to_user_id":90651198,"in_reply_to_user_id_str":"90651198","in_reply_to_screen_name":"GregAbbott_TX","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342899803760586753\/ROI6SMZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342899803760586753\/ROI6SMZA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2543051297\/1605551964","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19737709,"id_str":"19737709","name":"Matt - Gibson","screen_name":"tamnosbig","location":"Spokane, WA","description":"Living - a good life with my incredible wife, my sweet kids, and many, many friends. - Star Wars is awesome even when it''s not. Be excellent to each other.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":1253,"listed_count":0,"created_at":"Thu - Jan 29 22:03:37 +0000 2009","favourites_count":9220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3057,"lang":null,"status":{"created_at":"Mon - Feb 28 21:14:44 +0000 2022","id":1498406338279337984,"id_str":"1498406338279337984","text":"@vinniep27 - I''ve waited for almost 40 years to see Luke back in action. Step OFF, Madeline. - #FanSince1977 #StarWars","truncated":false,"entities":{"hashtags":[{"text":"FanSince1977","indices":[91,104]},{"text":"StarWars","indices":[105,114]}],"symbols":[],"user_mentions":[{"screen_name":"vinniep27","name":"Vindiana - Jones \ud83c\uddee\ud83c\uddf9","id":55016777,"id_str":"55016777","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1498289508894363654,"in_reply_to_status_id_str":"1498289508894363654","in_reply_to_user_id":55016777,"in_reply_to_user_id_str":"55016777","in_reply_to_screen_name":"vinniep27","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323288134356930561\/HtcNmdit_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323288134356930561\/HtcNmdit_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19737709\/1604331452","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290321390332084232,"id_str":"1290321390332084232","name":"Janelle\ud83d\ude37","screen_name":"JanelleJR7676","location":"Fresno, - CA","description":"Dem for life, mom of teenager, Alzheimer\u2019s Caregiver, - Petsitter,VW lover, Never Trumper, Atheist and Aquarius \ud83e\udd13","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":687,"listed_count":1,"created_at":"Mon - Aug 03 16:19:43 +0000 2020","favourites_count":48570,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45411,"lang":null,"status":{"created_at":"Wed - Oct 06 22:52:48 +0000 2021","id":1445884776435515395,"id_str":"1445884776435515395","text":"\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f - https:\/\/t.co\/fAB6KyLku0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fAB6KyLku0","expanded_url":"https:\/\/twitter.com\/ThisWeekABC\/status\/1445884112288591872","display_url":"twitter.com\/ThisWeekABC\/st\u2026","indices":[4,27]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1445884112288591872,"quoted_status_id_str":"1445884112288591872","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347655717520506881\/o9kexeo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347655717520506881\/o9kexeo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1290321390332084232\/1610141136","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":542413728,"id_str":"542413728","name":"#FreeAssange&HafeezBaloch - #FreePalestine&Kashmir","screen_name":"SaniRattani","location":"Karachi, Pakistan","description":"Foodie - | Obsessed with World Politics |\"Full paindu production\"| Neither all retweets - nor \"Following\" are (necessarily) endorsements #FreeAssange #FreePalestine","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":5008,"listed_count":3,"created_at":"Sun - Apr 01 07:21:38 +0000 2012","favourites_count":129491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":90371,"lang":null,"status":{"created_at":"Sat - Mar 26 05:01:58 +0000 2022","id":1507583616519491586,"id_str":"1507583616519491586","text":"RT - @IndieWire: Steven Spielberg spent 30 years trying to direct a Tintin film, - and it was worth the wait. \u201cThe Adventures of Tintin\u201d captur\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IndieWire","name":"IndieWire","id":13992132,"id_str":"13992132","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:38:40 +0000 2022","id":1507381459094495235,"id_str":"1507381459094495235","text":"Steven - Spielberg spent 30 years trying to direct a Tintin film, and it was worth - the wait. \u201cThe Adventures of Tinti\u2026 https:\/\/t.co\/KF8LwFc5OE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KF8LwFc5OE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507381459094495235","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507381202059239426,"in_reply_to_status_id_str":"1507381202059239426","in_reply_to_user_id":13992132,"in_reply_to_user_id_str":"13992132","in_reply_to_screen_name":"IndieWire","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876916078135451648\/5UI7jB2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876916078135451648\/5UI7jB2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542413728\/1434955389","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":732869688846340096,"id_str":"732869688846340096","name":"Naimat - sahb","screen_name":"ghoseali7686","location":"khushab","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":335,"friends_count":3015,"listed_count":1,"created_at":"Wed - May 18 09:45:24 +0000 2016","favourites_count":101382,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":136743,"lang":null,"status":{"created_at":"Sat - Mar 26 10:00:40 +0000 2022","id":1507658785627668484,"id_str":"1507658785627668484","text":"RT - @PakpattanPTI1: \u0645\u0631\u06a9\u0632\u06cc \u0631\u06c1\u0646\u0645\u0627 - \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u062a\u062d\u0631\u06cc\u06a9 - \u0627\u0646\u0635\u0627\u0641 \u0631\u0627\u0626\u06d2 \u062d\u0633\u0646 - \u0646\u0648\u0627\u0632 \u062e\u0627\u06ba \u0627\u0648\u0631 \u0645\u0645\u0628\u0631 - \u0642\u0648\u0645\u06cc \u0627\u0633\u0645\u0628\u0644\u06cc \u0631\u0627\u0626\u06d2 - \u0645\u062d\u0645\u062f \u0645\u0631\u062a\u0636\u06cc\u0670 \u0627\u0642\u0628\u0627\u0644 - \u06a9\u06cc \u0642\u06cc\u0627\u062f\u062a \u0645\u06cc\u06ba \u0686\u06cc\u0686\u06c1 - \u0648\u0637\u0646\u06cc \u0633\u06d2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PakpattanPTI1","name":"PTI - Pakpattan","id":1503441260249600001,"id_str":"1503441260249600001","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:53:54 +0000 2022","id":1507657083033997312,"id_str":"1507657083033997312","text":"\u0645\u0631\u06a9\u0632\u06cc - \u0631\u06c1\u0646\u0645\u0627 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 - \u062a\u062d\u0631\u06cc\u06a9 \u0627\u0646\u0635\u0627\u0641 \u0631\u0627\u0626\u06d2 - \u062d\u0633\u0646 \u0646\u0648\u0627\u0632 \u062e\u0627\u06ba \u0627\u0648\u0631 - \u0645\u0645\u0628\u0631 \u0642\u0648\u0645\u06cc \u0627\u0633\u0645\u0628\u0644\u06cc - \u0631\u0627\u0626\u06d2 \u0645\u062d\u0645\u062f \u0645\u0631\u062a\u0636\u06cc\u0670 - \u0627\u0642\u0628\u0627\u0644 \u06a9\u06cc \u0642\u06cc\u0627\u062f\u062a - \u0645\u06cc\u06ba \u0686\u06cc\u0686\u06c1 \u0648\u0637\u0646\u2026 https:\/\/t.co\/rXjYqE4Jin","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rXjYqE4Jin","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507657083033997312","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":68,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381282697138561024\/euRV4FUx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381282697138561024\/euRV4FUx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732869688846340096\/1618155327","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268271359651708930,"id_str":"1268271359651708930","name":"Damilola - Abiodun","screen_name":"squareblaze","location":"Lagos","description":"A teacher - || writer || instrumentalist || hairstylist || lover of sports || Manchester - United fan || abiodunabiola001@gmail.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":2121,"listed_count":0,"created_at":"Wed - Jun 03 20:01:14 +0000 2020","favourites_count":728,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":192,"lang":null,"status":{"created_at":"Tue - Mar 08 20:03:39 +0000 2022","id":1501287549746171909,"id_str":"1501287549746171909","text":"@Arakunrin02 - @squareblaze","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Arakunrin02","name":"Ar\u00e1k\u00f9nrin\ud83c\udf84\u265a","id":1260683012364173313,"id_str":"1260683012364173313","indices":[0,12]},{"screen_name":"squareblaze","name":"Damilola - Abiodun","id":1268271359651708930,"id_str":"1268271359651708930","indices":[13,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501287325694709766,"in_reply_to_status_id_str":"1501287325694709766","in_reply_to_user_id":1260683012364173313,"in_reply_to_user_id_str":"1260683012364173313","in_reply_to_screen_name":"Arakunrin02","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1387536501609836552\/MnlIGKoC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1387536501609836552\/MnlIGKoC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268271359651708930\/1592755524","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":971774272472539136,"id_str":"971774272472539136","name":"Tadeusz - Wies\u0142aw Zawidzki","screen_name":"Gymno_Sophist","location":"","description":"Z\u0142ota - wolno\u015b\u0107 dla wszystkich!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":1090,"listed_count":2,"created_at":"Thu - Mar 08 15:46:56 +0000 2018","favourites_count":41224,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":493,"lang":null,"status":{"created_at":"Fri - Mar 25 17:22:30 +0000 2022","id":1507407588845101061,"id_str":"1507407588845101061","text":"RT - @KenRoth: The Saudi crown prince reportedly won''t pump more oil (to make - up for the Russian loss) without more weapons to bomb Yemeni ci\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KenRoth","name":"Kenneth - Roth","id":17839398,"id_str":"17839398","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:57:08 +0000 2022","id":1507371007765585944,"id_str":"1507371007765585944","text":"The - Saudi crown prince reportedly won''t pump more oil (to make up for the Russian - loss) without more weapons to bom\u2026 https:\/\/t.co\/qGH3zhVVes","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qGH3zhVVes","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507371007765585944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":132,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":69,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499734279970041858\/PawFWL-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499734279970041858\/PawFWL-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971774272472539136\/1520539702","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225848536387989509,"id_str":"1225848536387989509","name":"dave - b","screen_name":"daveb02761492","location":"Southampton, England","description":"63 - years old semi retired mad for the saints fc only one more years of remission - to go beat this cancer \u26bd\ufe0f\ud83d\udc4d\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":96,"listed_count":0,"created_at":"Fri - Feb 07 18:27:54 +0000 2020","favourites_count":429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":651,"lang":null,"status":{"created_at":"Wed - Mar 09 13:46:58 +0000 2022","id":1501555142608494598,"id_str":"1501555142608494598","text":"\ud83d\udc0e\ud83d\udc0e\ud83d\udc0eridiculous - amount of runners at fontwell today \ud83d\udc4e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225848918451290112\/YvlS8RKc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225848918451290112\/YvlS8RKc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297872357382656001,"id_str":"1297872357382656001","name":"Jackson - Koko","screen_name":"JacksonKoko6","location":"Akwa Ibom, Nigeria","description":"fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":141,"listed_count":0,"created_at":"Mon - Aug 24 12:24:57 +0000 2020","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Oct 29 19:35:04 +0000 2020","id":1321898366440267776,"id_str":"1321898366440267776","text":"@MobilePunch - U are a fool","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MobilePunch","name":"Punch - Newspapers","id":24291371,"id_str":"24291371","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1321894773989527557,"in_reply_to_status_id_str":"1321894773989527557","in_reply_to_user_id":24291371,"in_reply_to_user_id_str":"24291371","in_reply_to_screen_name":"MobilePunch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297874128830169088\/Wm9pzq9w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297874128830169088\/Wm9pzq9w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1879889671,"id_str":"1879889671","name":"Coderina.Org","screen_name":"coderina","location":"Africa - ","description":"Building capacity for young learners & teachers since 2012. - Leveraging #Robotics #Entrep #AI #IOT #ML #STEAM for empowerment 1 next-gen - African at a time.","url":"https:\/\/t.co\/Qf6hZGFuN9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qf6hZGFuN9","expanded_url":"http:\/\/www.coderina.org","display_url":"coderina.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1452,"friends_count":4842,"listed_count":2,"created_at":"Wed - Sep 18 15:26:05 +0000 2013","favourites_count":1237,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1972,"lang":null,"status":{"created_at":"Sat - Mar 26 06:07:28 +0000 2022","id":1507600099496579078,"id_str":"1507600099496579078","text":"#saturdaytrivia\nThe - Japanese government is spending one-third of its budget on the growth of #Care-Robots - to help t\u2026 https:\/\/t.co\/YLp4Toy9r9","truncated":true,"entities":{"hashtags":[{"text":"saturdaytrivia","indices":[0,15]},{"text":"Care","indices":[93,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YLp4Toy9r9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507600099496579078","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379063614921904130\/grGuvheu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379063614921904130\/grGuvheu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1879889671\/1605018423","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301587031059918849,"id_str":"1301587031059918849","name":"Miltos","screen_name":"MiltosVr","location":"New - York ","description":"clean energy advocate, product guy, wannabe surfer, - professional sports watcher","url":"https:\/\/t.co\/iCoJNeF09U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iCoJNeF09U","expanded_url":"https:\/\/www.linkedin.com\/in\/miltos-vratimos-7718634b","display_url":"linkedin.com\/in\/miltos-vrat\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":309,"listed_count":1,"created_at":"Thu - Sep 03 18:25:16 +0000 2020","favourites_count":308,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Mon - Mar 21 18:59:09 +0000 2022","id":1505982363075067911,"id_str":"1505982363075067911","text":"@garethlewin - I was there last week, had the same experience. Vaccination status wasn''t - really checked, no occupancy\u2026 https:\/\/t.co\/xXgWeryh2P","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"garethlewin","name":"Gareth - Lewin","id":14195214,"id_str":"14195214","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/xXgWeryh2P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505982363075067911","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505981601636777987,"in_reply_to_status_id_str":"1505981601636777987","in_reply_to_user_id":14195214,"in_reply_to_user_id_str":"14195214","in_reply_to_screen_name":"garethlewin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356012510197940228\/s4Ug8rQ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356012510197940228\/s4Ug8rQ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301587031059918849\/1599953435","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":598278537,"id_str":"598278537","name":"Lisa - jones","screen_name":"Msaries32Lisa","location":"Nevada, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":441,"listed_count":0,"created_at":"Sun - Jun 03 09:45:06 +0000 2012","favourites_count":2175,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"status":{"created_at":"Wed - Apr 14 17:17:59 +0000 2021","id":1382382641899458561,"id_str":"1382382641899458561","text":"RT - @FINALLEVEL: I have a big meeting at the Bank today and if everything goes - as planned I\u2019ll receive a lotta money.. I want to share it wi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FINALLEVEL","name":"ICE - T","id":28420827,"id_str":"28420827","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Apr 14 14:06:44 +0000 2021","id":1382334511690694663,"id_str":"1382334511690694663","text":"I - have a big meeting at the Bank today and if everything goes as planned I\u2019ll - receive a lotta money.. I want to sha\u2026 https:\/\/t.co\/FUODTrhHsC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FUODTrhHsC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1382334511690694663","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1632,"favorite_count":27886,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1632,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085071937838010368\/Aa_ZPCVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085071937838010368\/Aa_ZPCVH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":814046857,"id_str":"814046857","name":"Maria - Mora","screen_name":"mariagmora_mora","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":1892,"listed_count":0,"created_at":"Sun - Sep 09 22:59:52 +0000 2012","favourites_count":914,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1240,"lang":null,"status":{"created_at":"Fri - Mar 25 04:11:05 +0000 2022","id":1507208424442019843,"id_str":"1507208424442019843","text":"@tedcruz - https:\/\/t.co\/R5QIFvZOoQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/R5QIFvZOoQ","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1506399679239446528?t=XSD9pdeV9R9GU3MHP1tpzg&s=19","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[9,32]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506839959218671620,"in_reply_to_status_id_str":"1506839959218671620","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506399679239446528,"quoted_status_id_str":"1506399679239446528","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352246388248162304\/8v5WCyCm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352246388248162304\/8v5WCyCm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2685595675,"id_str":"2685595675","name":".Quincy.","screen_name":"marcquincyquinn","location":"Kilkenny, - Ireland","description":"\u00af\\_(\u30c4)_\/\u00af\n\u2692\ufe0fStonemason\u2692\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":536,"listed_count":0,"created_at":"Sun - Jul 27 17:32:19 +0000 2014","favourites_count":411,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Sat - Jan 22 00:17:37 +0000 2022","id":1484681624419811332,"id_str":"1484681624419811332","text":"RT - @BNODesk: Singer Meat Loaf died after falling seriously ill with COVID-19, - according to TMZ. He had previously spoken out against vaccin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BNODesk","name":"BNO - Newsroom","id":2985479932,"id_str":"2985479932","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 21 19:46:10 +0000 2022","id":1484613308065927178,"id_str":"1484613308065927178","text":"Singer - Meat Loaf died after falling seriously ill with COVID-19, according to TMZ. - He had previously spoken out aga\u2026 https:\/\/t.co\/ssLIYFN0zd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ssLIYFN0zd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484613308065927178","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2985,"favorite_count":9350,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2985,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479440716824780804\/02p6M_YR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479440716824780804\/02p6M_YR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2685595675\/1627957316","profile_link_color":"2D3133","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1135600789123141634,"id_str":"1135600789123141634","name":"Christina - Lynn Remek","screen_name":"ChristinaRemek","location":"Miller Place, NY 11764","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":19,"listed_count":0,"created_at":"Mon - Jun 03 17:35:01 +0000 2019","favourites_count":1628,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25198210,"id_str":"25198210","name":"Chase","screen_name":"SlowSpeedChase","location":"Austin, - TX","description":"Wireless Engineer | BHAM | AU | ATX","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":631,"listed_count":0,"created_at":"Thu - Mar 19 00:39:56 +0000 2009","favourites_count":1920,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7037,"lang":null,"status":{"created_at":"Sat - Mar 26 01:14:18 +0000 2022","id":1507526322632937479,"id_str":"1507526322632937479","text":"@Jason - Ok, but who gives a fuck? Did he have a government position or steer COVID - policy into the ground? Sell stat\u2026 https:\/\/t.co\/E9rQJdugVw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jason","name":"@jason - calacanis","id":3840,"id_str":"3840","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/E9rQJdugVw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507526322632937479","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507525454156115970,"in_reply_to_status_id_str":"1507525454156115970","in_reply_to_user_id":3840,"in_reply_to_user_id_str":"3840","in_reply_to_screen_name":"Jason","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331667734296473601\/W-W0GHdE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331667734296473601\/W-W0GHdE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25198210\/1600479507","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":704973631,"id_str":"704973631","name":"Matthew - Forman","screen_name":"MatticusForman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":529,"listed_count":0,"created_at":"Thu - Jul 19 12:27:22 +0000 2012","favourites_count":1837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":584,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238786154629074945\/9G2SyKPP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238786154629074945\/9G2SyKPP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":329222522,"id_str":"329222522","name":"Myrna - S. Gasc, MPA","screen_name":"marylena1223","location":"Dallas, TX","description":"Public - Servant | Mom of 2 gentle young men | wife of media guru Pedro | BAAS, MPA, - MS in Clinical PSY in progress | optimist | proudly Hispanic| visionary |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":435,"listed_count":0,"created_at":"Mon - Jul 04 18:35:45 +0000 2011","favourites_count":694,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":556,"lang":null,"status":{"created_at":"Fri - Mar 25 13:03:09 +0000 2022","id":1507342322878529547,"id_str":"1507342322878529547","text":"Her - demeanor is fascinating! SCOTUS needs you Judge KBJ! https:\/\/t.co\/hTOngHyQET","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hTOngHyQET","expanded_url":"https:\/\/twitter.com\/forbes\/status\/1506768840600002570","display_url":"twitter.com\/forbes\/status\/\u2026","indices":[57,80]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506768840600002570,"quoted_status_id_str":"1506768840600002570","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349483473141116933\/ibxQHwoZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349483473141116933\/ibxQHwoZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329222522\/1605464708","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1008897892944367616,"id_str":"1008897892944367616","name":"Cyrilla-Lyn - (she\/they)","screen_name":"cyrillalyn_","location":"San Antonio, TX","description":"\ud83c\udff3\ufe0f\u200d\ud83c\udf08 - | st. mary\u2019s law \ud83d\udc9b\ud83d\udc99 | BLM","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":100,"friends_count":250,"listed_count":0,"created_at":"Tue - Jun 19 02:22:56 +0000 2018","favourites_count":19274,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2770,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341089541931851782\/tuOsce9i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341089541931851782\/tuOsce9i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008897892944367616\/1599659583","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":409656764,"id_str":"409656764","name":"Todd - Combs","screen_name":"todd_combs","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":573,"listed_count":0,"created_at":"Fri - Nov 11 01:48:02 +0000 2011","favourites_count":1133,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":305,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":924259803123331072,"id_str":"924259803123331072","name":"kim","screen_name":"CounselKimanthi","location":"\ud83c\uddf0\ud83c\uddea","description":"lawyer - || human rights activist || @chelseafc fan || #mentalhealth awareness || empathic - & sarcastic || #everythingtwitter || LLB || LSSK || county 013, TNC ||","url":"https:\/\/t.co\/4bkP3CJyrC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4bkP3CJyrC","expanded_url":"http:\/\/counselkimanthi.com","display_url":"counselkimanthi.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2064,"friends_count":2090,"listed_count":1,"created_at":"Sat - Oct 28 13:01:23 +0000 2017","favourites_count":9675,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2440,"lang":null,"status":{"created_at":"Sat - Mar 26 04:28:59 +0000 2022","id":1507575316218269704,"id_str":"1507575316218269704","text":"RT - @Sam_Baja: @brianmutinda_ This is the way it should be done https:\/\/t.co\/IDy6ptqH6V","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sam_Baja","name":"Bo$$\ud83c\uddf0\ud83c\uddea\ud83c\uddfa\ud83c\uddec\ud83c\uddf9\ud83c\uddff","id":49634274,"id_str":"49634274","indices":[3,12]},{"screen_name":"brianmutinda_","name":"Mutinda","id":1371517854,"id_str":"1371517854","indices":[14,28]}],"urls":[],"media":[{"id":1507333427460251651,"id_str":"1507333427460251651","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","url":"https:\/\/t.co\/IDy6ptqH6V","display_url":"pic.twitter.com\/IDy6ptqH6V","expanded_url":"https:\/\/twitter.com\/Sam_Baja\/status\/1507333478144167940\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":854,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":480,"h":854,"resize":"fit"}},"source_status_id":1507333478144167940,"source_status_id_str":"1507333478144167940","source_user_id":49634274,"source_user_id_str":"49634274"}]},"extended_entities":{"media":[{"id":1507333427460251651,"id_str":"1507333427460251651","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","url":"https:\/\/t.co\/IDy6ptqH6V","display_url":"pic.twitter.com\/IDy6ptqH6V","expanded_url":"https:\/\/twitter.com\/Sam_Baja\/status\/1507333478144167940\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":854,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":480,"h":854,"resize":"fit"}},"source_status_id":1507333478144167940,"source_status_id_str":"1507333478144167940","source_user_id":49634274,"source_user_id_str":"49634274","video_info":{"aspect_ratio":[240,427],"duration_millis":30077,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/vid\/320x568\/hsAsVlPI53bWm12N.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/pl\/0mQuykyn1fuEpZH-.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/vid\/480x854\/F6HBGcK3DWXOFeAi.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:28:00 +0000 2022","id":1507333478144167940,"id_str":"1507333478144167940","text":"@brianmutinda_ - This is the way it should be done https:\/\/t.co\/IDy6ptqH6V","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brianmutinda_","name":"Mutinda","id":1371517854,"id_str":"1371517854","indices":[0,14]}],"urls":[],"media":[{"id":1507333427460251651,"id_str":"1507333427460251651","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","url":"https:\/\/t.co\/IDy6ptqH6V","display_url":"pic.twitter.com\/IDy6ptqH6V","expanded_url":"https:\/\/twitter.com\/Sam_Baja\/status\/1507333478144167940\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":854,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":480,"h":854,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507333427460251651,"id_str":"1507333427460251651","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507333427460251651\/pu\/img\/ZlG0IgC2cqyBwBt3.jpg","url":"https:\/\/t.co\/IDy6ptqH6V","display_url":"pic.twitter.com\/IDy6ptqH6V","expanded_url":"https:\/\/twitter.com\/Sam_Baja\/status\/1507333478144167940\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":854,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":480,"h":854,"resize":"fit"}},"video_info":{"aspect_ratio":[240,427],"duration_millis":30077,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/vid\/320x568\/hsAsVlPI53bWm12N.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/pl\/0mQuykyn1fuEpZH-.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507333427460251651\/pu\/vid\/480x854\/F6HBGcK3DWXOFeAi.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507254544526364698,"in_reply_to_status_id_str":"1507254544526364698","in_reply_to_user_id":1371517854,"in_reply_to_user_id_str":"1371517854","in_reply_to_screen_name":"brianmutinda_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":73,"favorite_count":236,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":73,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345828337973911562\/hp2h98ZC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345828337973911562\/hp2h98ZC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/924259803123331072\/1627362399","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1184629048351318016,"id_str":"1184629048351318016","name":"jvpimentel","screen_name":"jvpimentel2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":659,"listed_count":0,"created_at":"Thu - Oct 17 00:36:48 +0000 2019","favourites_count":241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87,"lang":null,"status":{"created_at":"Tue - Oct 12 17:16:59 +0000 2021","id":1447974591364730882,"id_str":"1447974591364730882","text":"RT - @SoniaBridi: Bora imitar?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SoniaBridi","name":"S\u00f4nia - Bridi","id":97555792,"id_str":"97555792","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 11 20:56:23 +0000 2021","id":1447667416213954561,"id_str":"1447667416213954561","text":"Bora - imitar? https:\/\/t.co\/c4E4tNBeam","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c4E4tNBeam","expanded_url":"https:\/\/twitter.com\/dias_silvia\/status\/1447666827916726272","display_url":"twitter.com\/dias_silvia\/st\u2026","indices":[13,36]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1447666827916726272,"quoted_status_id_str":"1447666827916726272","retweet_count":26,"favorite_count":482,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1447666827916726272,"quoted_status_id_str":"1447666827916726272","retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2344255856,"id_str":"2344255856","name":"Shelley - Ferguson","screen_name":"shelleyff","location":"Mineola, Texas","description":"Nurse, - single mom of two girls and an admitted fangirl!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":784,"friends_count":2861,"listed_count":13,"created_at":"Fri - Feb 14 23:34:07 +0000 2014","favourites_count":111628,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40683,"lang":null,"status":{"created_at":"Sat - Mar 26 02:52:27 +0000 2022","id":1507551024696889349,"id_str":"1507551024696889349","text":"RT - @garrettbucks: Whenever Ginni Thomas is in the news, I am required by law - to reshare that, when I was 13 and in my middle school''s orche\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"garrettbucks","name":"Garrett - Bucks","id":357915802,"id_str":"357915802","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:14:45 +0000 2022","id":1507405640058257411,"id_str":"1507405640058257411","text":"Whenever - Ginni Thomas is in the news, I am required by law to reshare that, when I - was 13 and in my middle school''s\u2026 https:\/\/t.co\/eYzB6Rp06C","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eYzB6Rp06C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507405640058257411","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4907,"favorite_count":29218,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4907,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/519860688043274240\/Y-KQdRBn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519860688043274240\/Y-KQdRBn_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300062912015413253,"id_str":"1300062912015413253","name":"Desi - Tobias","screen_name":"TobiasDesi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":1125,"listed_count":1,"created_at":"Sun - Aug 30 13:29:06 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Aug 11 01:57:32 +0000 2021","id":1425275158365933577,"id_str":"1425275158365933577","text":"@CawthornforNC - Have you read Orwell\u2019s essays? They are prescient as well.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CawthornforNC","name":"Madison - Cawthorn","id":1207874097251639296,"id_str":"1207874097251639296","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1425253812370083844,"in_reply_to_status_id_str":"1425253812370083844","in_reply_to_user_id":1207874097251639296,"in_reply_to_user_id_str":"1207874097251639296","in_reply_to_screen_name":"CawthornforNC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":793922131235078145,"id_str":"793922131235078145","name":"Captain - Henry","screen_name":"CaptainCulpeper","location":"Knoxville, TN","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":120,"listed_count":0,"created_at":"Wed - Nov 02 21:06:01 +0000 2016","favourites_count":474,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":253,"lang":null,"status":{"created_at":"Thu - Mar 03 18:11:34 +0000 2022","id":1499447406299123714,"id_str":"1499447406299123714","text":"@KYSenateGOP - I hear he''s worried about whether or not his birthday wishes will be age-appropriate.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KYSenateGOP","name":"KY - Senate Majority","id":1117720224,"id_str":"1117720224","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1407027805288861697,"in_reply_to_status_id_str":"1407027805288861697","in_reply_to_user_id":1117720224,"in_reply_to_user_id_str":"1117720224","in_reply_to_screen_name":"KYSenateGOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/794221007737339904\/LDhh0T0I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/794221007737339904\/LDhh0T0I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793922131235078145\/1478192254","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":180656397,"id_str":"180656397","name":"MikIrreb","screen_name":"adirfyimk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":700,"listed_count":3,"created_at":"Fri - Aug 20 04:19:53 +0000 2010","favourites_count":546,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":317,"lang":null,"status":{"created_at":"Sat - Mar 12 22:52:35 +0000 2022","id":1502779616750145537,"id_str":"1502779616750145537","text":"Who - says it\u2019s a man\u2019s watch???? We loved this article, what do you think?\n\nhttps:\/\/t.co\/Ey5LxTJH9W - https:\/\/t.co\/Iw0Ahhf6RO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ey5LxTJH9W","expanded_url":"https:\/\/www.watchuseek.com\/threads\/charming-women-wearing-mens-watches-bring-your-pics.991619\/","display_url":"watchuseek.com\/threads\/charmi\u2026","indices":[75,98]}],"media":[{"id":1502779613331681282,"id_str":"1502779613331681282","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FNryGKRVcAIFOx4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNryGKRVcAIFOx4.jpg","url":"https:\/\/t.co\/Iw0Ahhf6RO","display_url":"pic.twitter.com\/Iw0Ahhf6RO","expanded_url":"https:\/\/twitter.com\/adirfyimk\/status\/1502779616750145537\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":760,"h":712,"resize":"fit"},"small":{"w":680,"h":637,"resize":"fit"},"large":{"w":760,"h":712,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1502779613331681282,"id_str":"1502779613331681282","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FNryGKRVcAIFOx4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNryGKRVcAIFOx4.jpg","url":"https:\/\/t.co\/Iw0Ahhf6RO","display_url":"pic.twitter.com\/Iw0Ahhf6RO","expanded_url":"https:\/\/twitter.com\/adirfyimk\/status\/1502779616750145537\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":760,"h":712,"resize":"fit"},"small":{"w":680,"h":637,"resize":"fit"},"large":{"w":760,"h":712,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275126941478240257\/fL2ndZYX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275126941478240257\/fL2ndZYX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180656397\/1592849522","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":569417695,"id_str":"569417695","name":"Brian - D","screen_name":"BrianD1609","location":"Earth","description":"father, husband,humanist, - welfare rights \/money advice manager , rejects absolutes supports Social - Democracy, tweets do not represent any organisation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":1494,"listed_count":3,"created_at":"Wed - May 02 20:51:14 +0000 2012","favourites_count":4464,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1834,"lang":null,"status":{"created_at":"Fri - Mar 25 23:10:24 +0000 2022","id":1507495141061365762,"id_str":"1507495141061365762","text":"@scottishgreens - @patrickharvie Patrick as a Green, you should know that Scotland doesn\u2019t - produce 100% renewable.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"scottishgreens","name":"Scottish - Greens","id":131282783,"id_str":"131282783","indices":[0,15]},{"screen_name":"patrickharvie","name":"Patrick - Harvie \ud83c\uddea\ud83c\uddfa\ud83c\udf08","id":21125405,"id_str":"21125405","indices":[16,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507288682897633283,"in_reply_to_status_id_str":"1507288682897633283","in_reply_to_user_id":131282783,"in_reply_to_user_id_str":"131282783","in_reply_to_screen_name":"scottishgreens","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441883615416053760\/RYX-uIZf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441883615416053760\/RYX-uIZf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/569417695\/1567795527","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":158794003,"id_str":"158794003","name":"Kevin - Cook","screen_name":"kevincook80","location":"Redondo Beach, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":674,"listed_count":2,"created_at":"Wed - Jun 23 17:27:52 +0000 2010","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Thu - Jan 27 18:25:48 +0000 2022","id":1486767413039288320,"id_str":"1486767413039288320","text":"RT - @PaulPabst: @andrewperloff @BarstoolBigCat @KyleBrandt Eberflus sounds like - the name of a Dutch music festival.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulPabst","name":"Paul - Pabst","id":241209954,"id_str":"241209954","indices":[3,13]},{"screen_name":"andrewperloff","name":"Andrew - Perloff","id":20270332,"id_str":"20270332","indices":[15,29]},{"screen_name":"BarstoolBigCat","name":"B1G - Cat","id":123276343,"id_str":"123276343","indices":[30,45]},{"screen_name":"KyleBrandt","name":"Kyle - Brandt","id":105909196,"id_str":"105909196","indices":[46,57]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 27 18:18:09 +0000 2022","id":1486765486285148160,"id_str":"1486765486285148160","text":"@andrewperloff - @BarstoolBigCat @KyleBrandt Eberflus sounds like the name of a Dutch music - festival.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andrewperloff","name":"Andrew - Perloff","id":20270332,"id_str":"20270332","indices":[0,14]},{"screen_name":"BarstoolBigCat","name":"B1G - Cat","id":123276343,"id_str":"123276343","indices":[15,30]},{"screen_name":"KyleBrandt","name":"Kyle - Brandt","id":105909196,"id_str":"105909196","indices":[31,42]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1486761974797156354,"in_reply_to_status_id_str":"1486761974797156354","in_reply_to_user_id":20270332,"in_reply_to_user_id_str":"20270332","in_reply_to_screen_name":"andrewperloff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":79,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0B5275","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736764478268706816\/h0G80c-L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736764478268706816\/h0G80c-L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158794003\/1362275373","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3778069154,"id_str":"3778069154","name":"Tony - williams","screen_name":"Tonywil15365684","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":794,"listed_count":0,"created_at":"Sun - Oct 04 06:05:12 +0000 2015","favourites_count":4073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":593,"lang":null,"status":{"created_at":"Sun - Feb 20 19:12:09 +0000 2022","id":1495476386437513216,"id_str":"1495476386437513216","text":"Righteousness - delivers from death. Do the right thing always and no harm will come to you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318458821921165312\/nfUs4H6T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318458821921165312\/nfUs4H6T_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1264730900497080320,"id_str":"1264730900497080320","name":"KietricHarrell25","screen_name":"KHarrell25","location":"","description":"kietricHarrell290","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":193,"friends_count":827,"listed_count":0,"created_at":"Mon - May 25 01:32:27 +0000 2020","favourites_count":951,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":997,"lang":null,"status":{"created_at":"Thu - May 06 17:42:46 +0000 2021","id":1390361410786430980,"id_str":"1390361410786430980","text":"RT - @VallartaAirport: A place where adventure and relaxation are one and the same. - Follow us and visit Puerto Vallarta! https:\/\/t.co\/a92afyY\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VallartaAirport","name":"Puerto - Vallarta International Airport. IATA: PVR","id":1087842062861361154,"id_str":"1087842062861361154","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Apr 05 16:28:43 +0000 2021","id":1379108749323948032,"id_str":"1379108749323948032","text":"A - place where adventure and relaxation are one and the same. Follow us and visit - Puerto Vallarta! https:\/\/t.co\/a92afyY29k","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1379108684094177285,"id_str":"1379108684094177285","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EyOUCpYXAAUYBx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EyOUCpYXAAUYBx2.jpg","url":"https:\/\/t.co\/a92afyY29k","display_url":"pic.twitter.com\/a92afyY29k","expanded_url":"https:\/\/twitter.com\/VallartaAirport\/status\/1379108749323948032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1379108684094177285,"id_str":"1379108684094177285","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EyOUCpYXAAUYBx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EyOUCpYXAAUYBx2.jpg","url":"https:\/\/t.co\/a92afyY29k","display_url":"pic.twitter.com\/a92afyY29k","expanded_url":"https:\/\/twitter.com\/VallartaAirport\/status\/1379108749323948032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264731189979549698\/fDBetpno_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264731189979549698\/fDBetpno_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":863911134335614976,"id_str":"863911134335614976","name":"Jack","screen_name":"freeusa123","location":"San - Diego, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":690,"listed_count":0,"created_at":"Mon - May 15 00:17:19 +0000 2017","favourites_count":19535,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3478,"lang":null,"status":{"created_at":"Sat - Dec 04 19:48:18 +0000 2021","id":1467219227832557569,"id_str":"1467219227832557569","text":"Loser racist - https:\/\/t.co\/4liW55mJtO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4liW55mJtO","expanded_url":"https:\/\/twitter.com\/thereidout\/status\/1466049229646962691","display_url":"twitter.com\/thereidout\/sta\u2026","indices":[14,37]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1466049229646962691,"quoted_status_id_str":"1466049229646962691","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/863914084474867712\/xKCH9Bj6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/863914084474867712\/xKCH9Bj6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198285552107343872,"id_str":"1198285552107343872","name":"\u0647\u0647\u0647","screen_name":"_jxxtme","location":"","description":"value - of percept\u0131on\n@ManUtd\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":853,"friends_count":984,"listed_count":0,"created_at":"Sat - Nov 23 17:02:06 +0000 2019","favourites_count":17754,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13080,"lang":null,"status":{"created_at":"Sat - Mar 26 09:31:40 +0000 2022","id":1507651490667712514,"id_str":"1507651490667712514","text":"@_owurakuampofo - nd for other forwards? \ud83d\udc40","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_owurakuampofo","name":"Owuraku - Ampofo","id":1200006853872291841,"id_str":"1200006853872291841","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507649319993815046,"in_reply_to_status_id_str":"1507649319993815046","in_reply_to_user_id":1200006853872291841,"in_reply_to_user_id_str":"1200006853872291841","in_reply_to_screen_name":"_owurakuampofo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1334509942309523467\/vE39K_xU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1334509942309523467\/vE39K_xU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198285552107343872\/1611571392","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":353065163,"id_str":"353065163","name":"Ben - Miller","screen_name":"ScalpEm_93_99","location":"Orlando, Fl","description":"Former - Restaurant Wrangler, Stay At Home Dad, Wine Enthusiast, Golf Fantasizer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":596,"listed_count":0,"created_at":"Thu - Aug 11 14:07:25 +0000 2011","favourites_count":1538,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":356,"lang":null,"status":{"created_at":"Wed - Mar 16 20:19:10 +0000 2022","id":1504190560550236170,"id_str":"1504190560550236170","text":"@RonFilipkowski - So much for never letting the flag touch the ground.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonFilipkowski","name":"Ron - Filipkowski \ud83c\uddfa\ud83c\udde6","id":1298372735383605249,"id_str":"1298372735383605249","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503858888931688451,"in_reply_to_status_id_str":"1503858888931688451","in_reply_to_user_id":1298372735383605249,"in_reply_to_user_id_str":"1298372735383605249","in_reply_to_screen_name":"RonFilipkowski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361159876714627072\/E8NZc2rF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361159876714627072\/E8NZc2rF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353065163\/1613360779","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1113916341348651016,"id_str":"1113916341348651016","name":"hewasasandwich","screen_name":"zealrzz","location":"England, - United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":158,"listed_count":0,"created_at":"Thu - Apr 04 21:28:46 +0000 2019","favourites_count":13010,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1543,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237834488098557952\/yLC41wDi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237834488098557952\/yLC41wDi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113916341348651016\/1571167038","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1021371992006709257,"id_str":"1021371992006709257","name":"Not - Yet Anyway \ud83d\udcc9\ud83d\udcc8","screen_name":"NotanECatGirl","location":"Georgia, - USA","description":"just here for stonks\/crypto\/politics\/lols. antiauthoritarian. - I will not DM you.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":1108,"listed_count":7,"created_at":"Mon - Jul 23 12:30:33 +0000 2018","favourites_count":4528,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":417,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395393039456210948\/jOJLnU4D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395393039456210948\/jOJLnU4D_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":950000885240909824,"id_str":"950000885240909824","name":"James - Urban","screen_name":"JamesUr44523620","location":"Winsted, CT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":101,"listed_count":0,"created_at":"Sun - Jan 07 13:47:16 +0000 2018","favourites_count":9368,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Wed - Mar 23 02:32:33 +0000 2022","id":1506458852056875018,"id_str":"1506458852056875018","text":"@JamesUrbaniak - ...Aldo Ray...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamesUrbaniak","name":"James - Urbaniak","id":16956955,"id_str":"16956955","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506442072189939712,"in_reply_to_status_id_str":"1506442072189939712","in_reply_to_user_id":16956955,"in_reply_to_user_id_str":"16956955","in_reply_to_screen_name":"JamesUrbaniak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/966689658234163205\/mm-3fgIa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/966689658234163205\/mm-3fgIa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/950000885240909824\/1609120882","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888071944360349696,"id_str":"888071944360349696","name":"Kim - Thompson","screen_name":"KimThom19667164","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":35,"listed_count":0,"created_at":"Thu - Jul 20 16:23:45 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277745832767500289,"id_str":"1277745832767500289","name":"Megan - Beth Richardson","screen_name":"meganbeth1207","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":700,"listed_count":0,"created_at":"Mon - Jun 29 23:28:50 +0000 2020","favourites_count":2642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Feb 25 19:32:09 +0000 2021","id":1365021786446921729,"id_str":"1365021786446921729","text":"@hil_richardson - @EdinburghUni @EdinUniImaging @SchoolofPPLS @theirworld @JamesPeterBoar2 @SueReviews - Breaking my Tw\u2026 https:\/\/t.co\/KWOcGdz7dY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hil_richardson","name":"Hilary - Richardson","id":770498610,"id_str":"770498610","indices":[0,15]},{"screen_name":"EdinburghUni","name":"The - University of Edinburgh","id":23426889,"id_str":"23426889","indices":[16,29]},{"screen_name":"EdinUniImaging","name":"Edinburgh - Imaging \ud83d\udc99","id":1338987882,"id_str":"1338987882","indices":[30,45]},{"screen_name":"SchoolofPPLS","name":"School - of PPLS","id":894556339632037888,"id_str":"894556339632037888","indices":[46,59]},{"screen_name":"theirworld","name":"Theirworld","id":29953962,"id_str":"29953962","indices":[60,71]},{"screen_name":"SueReviews","name":"Sue - Fletcher-Watson","id":1300316983,"id_str":"1300316983","indices":[89,100]}],"urls":[{"url":"https:\/\/t.co\/KWOcGdz7dY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1365021786446921729","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1364970996529299459,"in_reply_to_status_id_str":"1364970996529299459","in_reply_to_user_id":770498610,"in_reply_to_user_id_str":"770498610","in_reply_to_screen_name":"hil_richardson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277746965351104520\/fvvARRS7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277746965351104520\/fvvARRS7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277745832767500289\/1593474003","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226216731674152960,"id_str":"1226216731674152960","name":"Madge - M(aka Mabel Brown Stewart)","screen_name":"MadgeM8","location":"","description":"Novelist, - teacher, theater artist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":895,"listed_count":1,"created_at":"Sat - Feb 08 18:50:38 +0000 2020","favourites_count":6216,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":263,"lang":null,"status":{"created_at":"Tue - Jan 25 13:22:47 +0000 2022","id":1485966378578300932,"id_str":"1485966378578300932","text":"@WestMetroFire - Thank you so much. You truly are heroes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WestMetroFire","name":"WestMetroFire","id":23115037,"id_str":"23115037","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484273276541186055,"in_reply_to_status_id_str":"1484273276541186055","in_reply_to_user_id":23115037,"in_reply_to_user_id_str":"23115037","in_reply_to_screen_name":"WestMetroFire","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226217701997023233\/tDyQM8Wo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226217701997023233\/tDyQM8Wo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167462994856595456,"id_str":"1167462994856595456","name":"Janice - Milner Lasseter","screen_name":"MilnerLasseter","location":"Birmingham, AL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":177,"listed_count":0,"created_at":"Fri - Aug 30 15:45:33 +0000 2019","favourites_count":425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Wed - Mar 16 23:42:55 +0000 2022","id":1504241832766623745,"id_str":"1504241832766623745","text":"@aldotcom - Shame on Alabama","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aldotcom","name":"AL.com","id":14528874,"id_str":"14528874","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504080134814547969,"in_reply_to_status_id_str":"1504080134814547969","in_reply_to_user_id":14528874,"in_reply_to_user_id_str":"14528874","in_reply_to_screen_name":"aldotcom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170421521187258370\/6lYH47ju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170421521187258370\/6lYH47ju_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304893925254193153,"id_str":"1304893925254193153","name":"Joseph","screen_name":"Joseph71846768","location":"Abuja - Nigeria ","description":"Joseph Inegbedion","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":130,"listed_count":0,"created_at":"Sat - Sep 12 21:25:56 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Nov 01 17:45:48 +0000 2020","id":1322958030355529728,"id_str":"1322958030355529728","text":"True - word https:\/\/t.co\/IkIZ2LsAyx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IkIZ2LsAyx","expanded_url":"https:\/\/twitter.com\/ShehuSani\/status\/1322952234007777281","display_url":"twitter.com\/ShehuSani\/stat\u2026","indices":[10,33]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1322952234007777281,"quoted_status_id_str":"1322952234007777281","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319761041065201667\/wE6v70BN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319761041065201667\/wE6v70BN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":833331250752536577,"id_str":"833331250752536577","name":"Judy - Quinn","screen_name":"JudyQui86545373","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":1607,"listed_count":0,"created_at":"Sun - Feb 19 15:03:47 +0000 2017","favourites_count":4095,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Fri - Jan 07 14:06:35 +0000 2022","id":1479454422711291906,"id_str":"1479454422711291906","text":"RT - @hmforcongress: Officer Eugene Goodman, a fellow army veteran, displayed true - courage and patriotism one year ago today. His bravery kep\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hmforcongress","name":"Henry - Martin For Congress","id":942052787059351555,"id_str":"942052787059351555","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 06 14:32:49 +0000 2022","id":1479098633953886211,"id_str":"1479098633953886211","text":"Officer - Eugene Goodman, a fellow army veteran, displayed true courage and patriotism - one year ago today. His braver\u2026 https:\/\/t.co\/qAIzZHnz55","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qAIzZHnz55","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479098633953886211","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2192,"favorite_count":5545,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2192,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/872184711002673152\/c5l8w-cY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/872184711002673152\/c5l8w-cY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":783469086776791040,"id_str":"783469086776791040","name":"Monti","screen_name":"MontiLT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":332,"listed_count":0,"created_at":"Wed - Oct 05 00:49:21 +0000 2016","favourites_count":20379,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":796,"lang":null,"status":{"created_at":"Fri - Mar 25 20:51:48 +0000 2022","id":1507460263146053633,"id_str":"1507460263146053633","text":"RT - @davidhogg111: While we are talking about ''Ginni'' Thomas I thought I would - remind everyone she also has mocked Parkland students and com\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidhogg111","name":"David - Hogg \ud83c\udf3b","id":1915033663,"id_str":"1915033663","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:40:41 +0000 2022","id":1507457466493067266,"id_str":"1507457466493067266","text":"While - we are talking about ''Ginni'' Thomas I thought I would remind everyone she - also has mocked Parkland students a\u2026 https:\/\/t.co\/j6jGOFHePO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j6jGOFHePO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507457466493067266","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":947,"favorite_count":2710,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":947,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1124196949,"id_str":"1124196949","name":"Angela - Roller","screen_name":"rollerangela","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":1856,"listed_count":1,"created_at":"Sun - Jan 27 06:41:27 +0000 2013","favourites_count":31242,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":324,"lang":null,"status":{"created_at":"Wed - Mar 02 01:15:48 +0000 2022","id":1498829391807275013,"id_str":"1498829391807275013","text":"RT - @DeidreDeJear: Tonight, my opponent, GOP Gov. Kim Reynolds, will give the - Republican rebuttal to the State of the Union. In her speech,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeidreDeJear","name":"Deidre - DeJear","id":36231074,"id_str":"36231074","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 20:40:47 +0000 2022","id":1498760181378912258,"id_str":"1498760181378912258","text":"Tonight, - my opponent, GOP Gov. Kim Reynolds, will give the Republican rebuttal to the - State of the Union. In her sp\u2026 https:\/\/t.co\/MzyuwvexVY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MzyuwvexVY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498760181378912258","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2624,"favorite_count":6613,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2624,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/962316099680374784\/Cfso46QG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/962316099680374784\/Cfso46QG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1124196949\/1522122794","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":185365584,"id_str":"185365584","name":"Laura - Bray","screen_name":"laura___bray","location":"Limerick, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":94,"friends_count":975,"listed_count":1,"created_at":"Tue - Aug 31 20:33:38 +0000 2010","favourites_count":4392,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2446,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429078775736713218\/tzeiPIve_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429078775736713218\/tzeiPIve_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185365584\/1531164345","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1187085241275600896,"id_str":"1187085241275600896","name":"#MyOpinionCounts","screen_name":"BMitch0213","location":"","description":"#TrumpNobodyLikesYou\n#TrumpSuperSpeaderInChief\n438,000AmericansMurdererd\n#TrumpsAMassMurderer\n#BIDENISPRESIDENT\n#HARRISVICEPRESIDENT\n#YoureFiredTrump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":309,"friends_count":605,"listed_count":0,"created_at":"Wed - Oct 23 19:16:14 +0000 2019","favourites_count":2273,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4241,"lang":null,"status":{"created_at":"Thu - Feb 11 20:45:38 +0000 2021","id":1359966851107872769,"id_str":"1359966851107872769","text":"@EricTrump - Today in America Eric you your father''s followers and that Red Cap are considered - terrorists, once Merri\u2026 https:\/\/t.co\/semeE9oWOr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EricTrump","name":"Eric - Trump","id":39349894,"id_str":"39349894","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/semeE9oWOr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1359966851107872769","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1359871495644852228,"in_reply_to_status_id_str":"1359871495644852228","in_reply_to_user_id":39349894,"in_reply_to_user_id_str":"39349894","in_reply_to_screen_name":"EricTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318387797053628422\/ZuTJCEg4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318387797053628422\/ZuTJCEg4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1187085241275600896\/1606895024","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":948759842533101568,"id_str":"948759842533101568","name":"Alexander - Dimitrijevich","screen_name":"alexd93255609","location":"Wisconsin, USA","description":"I - am a Immigrant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":312,"listed_count":0,"created_at":"Thu - Jan 04 03:35:48 +0000 2018","favourites_count":9441,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":557,"lang":null,"status":{"created_at":"Sat - Oct 09 18:41:35 +0000 2021","id":1446908718864609281,"id_str":"1446908718864609281","text":"@ThatEricAlper - Smoke filled rooms","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1446664222121803777,"in_reply_to_status_id_str":"1446664222121803777","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085576298947317763\/ZhMcdams_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085576298947317763\/ZhMcdams_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16264637,"id_str":"16264637","name":"Ben - Oelsner","screen_name":"techlawyer","location":"Boulder and Niwot, CO","description":"Attorney - helping software\/SaaS \ncompanies in their customer agreements and technology - transactions. Father of two wonderful young men. Partner at KO.","url":"https:\/\/t.co\/WDj4M2KzV5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WDj4M2KzV5","expanded_url":"http:\/\/www.kofirm.com","display_url":"kofirm.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1049,"friends_count":1827,"listed_count":76,"created_at":"Fri - Sep 12 22:17:02 +0000 2008","favourites_count":3518,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2854,"lang":null,"status":{"created_at":"Mon - Mar 21 22:45:18 +0000 2022","id":1506039273077850121,"id_str":"1506039273077850121","text":"@katherinecodes - @NickOelsner Nice job KO!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"katherinecodes","name":"Katherine","id":1354159191296864256,"id_str":"1354159191296864256","indices":[0,15]},{"screen_name":"NickOelsner","name":"Nick - Oelsner","id":1364044326334918656,"id_str":"1364044326334918656","indices":[16,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506029808328732681,"in_reply_to_status_id_str":"1506029808328732681","in_reply_to_user_id":1354159191296864256,"in_reply_to_user_id_str":"1354159191296864256","in_reply_to_screen_name":"katherinecodes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137911680267038722\/T82Vt4a0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137911680267038722\/T82Vt4a0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16264637\/1515638442","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":514039144,"id_str":"514039144","name":"Nilufar - Begum","screen_name":"BegumNilufar","location":"Purana Paltan, Dhaka, Banglade","description":"I - am a retired Government officer. I worked as Joint Chief of the Government - of Bangladesh. I believe that love is the best virtue and all humans are equal.","url":"https:\/\/t.co\/O8CzPUwx3Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O8CzPUwx3Q","expanded_url":"http:\/\/nilufarbegum.blogspot.com","display_url":"nilufarbegum.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":177,"friends_count":287,"listed_count":0,"created_at":"Sun - Mar 04 06:52:41 +0000 2012","favourites_count":3275,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2941,"lang":null,"status":{"created_at":"Fri - Mar 25 10:23:31 +0000 2022","id":1507302148844843011,"id_str":"1507302148844843011","text":"@RassdNewsN - This is an excellent message.\nThe East should be economically independent - of the West. \nWe will be frie\u2026 https:\/\/t.co\/QuShsQ4nRt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RassdNewsN","name":"\u0634\u0628\u0643\u0629 - \u0631\u0635\u062f","id":103591569,"id_str":"103591569","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QuShsQ4nRt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507302148844843011","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506941405482131458,"in_reply_to_status_id_str":"1506941405482131458","in_reply_to_user_id":103591569,"in_reply_to_user_id_str":"103591569","in_reply_to_screen_name":"RassdNewsN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302278357334126593\/Ix3rZYBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302278357334126593\/Ix3rZYBl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237087460808630272,"id_str":"1237087460808630272","name":"ebkesq123","screen_name":"ebkesq123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":780,"listed_count":0,"created_at":"Mon - Mar 09 18:46:57 +0000 2020","favourites_count":22721,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11781,"lang":null,"status":{"created_at":"Sat - Mar 26 04:22:29 +0000 2022","id":1507573680540463109,"id_str":"1507573680540463109","text":"@natsechobbyist - @MarissaRothkopf Can I gently correct : denied TO many","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"natsechobbyist","name":"Rachel - Vindman \ud83c\udf3b","id":1192160073897988096,"id_str":"1192160073897988096","indices":[0,15]},{"screen_name":"MarissaRothkopf","name":"Marissa - Rothkopf\ud83c\udf3b\ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":15489452,"id_str":"15489452","indices":[16,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507350614954721289,"in_reply_to_status_id_str":"1507350614954721289","in_reply_to_user_id":1192160073897988096,"in_reply_to_user_id_str":"1192160073897988096","in_reply_to_screen_name":"natsechobbyist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23028724,"id_str":"23028724","name":"TCR","screen_name":"TCRoth","location":"Denver, - CO","description":"STL native now calling Denver home. Husband to one and - father of two. Cancer survivor. Unapologetically Midwestern... #stlcards #stlblues - #mcfc #stlCITYsc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":3569,"listed_count":2,"created_at":"Fri - Mar 06 04:12:26 +0000 2009","favourites_count":91925,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":899,"lang":null,"status":{"created_at":"Thu - Mar 24 19:54:37 +0000 2022","id":1507083483813855256,"id_str":"1507083483813855256","text":"RT - @hawthornegc: Join Cannabis industry leader, Brian Herrington, at @regennabis - in New York City on May 5th! Brian will lead the ''Environm\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hawthornegc","name":"Hawthorne\u2122","id":217600625,"id_str":"217600625","indices":[3,15]},{"screen_name":"regennabis","name":"Regennabis","id":1189987749622775808,"id_str":"1189987749622775808","indices":[69,80]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:54:28 +0000 2022","id":1507083446975356936,"id_str":"1507083446975356936","text":"Join - Cannabis industry leader, Brian Herrington, at @regennabis in New York City - on May 5th! Brian will lead the ''E\u2026 https:\/\/t.co\/aOP3gpj2gD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"regennabis","name":"Regennabis","id":1189987749622775808,"id_str":"1189987749622775808","indices":[52,63]}],"urls":[{"url":"https:\/\/t.co\/aOP3gpj2gD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507083446975356936","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/775089261456556032\/byeYI0-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/775089261456556032\/byeYI0-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23028724\/1396741754","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274421406219067393,"id_str":"1274421406219067393","name":"Theodore - Doug","screen_name":"theodoredoug28","location":"Texas, USA","description":"And - Jesus Increase in Wisdom and stature, and in favour with God and man.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":34,"friends_count":453,"listed_count":0,"created_at":"Sat - Jun 20 19:19:41 +0000 2020","favourites_count":401,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338625133620174850\/M8KHxih9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338625133620174850\/M8KHxih9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301246433195184129,"id_str":"1301246433195184129","name":"wendy - heurung","screen_name":"wwhdemocracynut","location":"St Paul, MN","description":"reading - , writing, fighting Ageism and for people with disabilities , hanging onto - democracy with bloody fingers.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":160,"listed_count":0,"created_at":"Wed - Sep 02 19:52:05 +0000 2020","favourites_count":1744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":700,"lang":null,"status":{"created_at":"Tue - Jan 19 22:36:36 +0000 2021","id":1351659854054780932,"id_str":"1351659854054780932","text":"People - are rightly outraged by the My Pillow guy. The saddest part is that many hard - working Minnesotans will now l\u2026 https:\/\/t.co\/CGReEYle6K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CGReEYle6K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1351659854054780932","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326674603612180481\/xj5rcQZa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326674603612180481\/xj5rcQZa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58249803,"id_str":"58249803","name":"Ben - Fleschert","screen_name":"benfleschert","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":2839,"listed_count":0,"created_at":"Sun - Jul 19 17:48:29 +0000 2009","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242651599153041419\/tIRudLUt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242651599153041419\/tIRudLUt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1112330472,"id_str":"1112330472","name":"Debra - Volkmar","screen_name":"NeeneeVolkmar","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":653,"listed_count":0,"created_at":"Tue - Jan 22 18:52:10 +0000 2013","favourites_count":526,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":258,"lang":null,"status":{"created_at":"Sat - Mar 26 04:36:27 +0000 2022","id":1507577194738032640,"id_str":"1507577194738032640","text":"@dailytarheel - I heard that too and was confused.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dailytarheel","name":"The - Daily Tar Heel","id":16656851,"id_str":"16656851","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507573211218817024,"in_reply_to_status_id_str":"1507573211218817024","in_reply_to_user_id":16656851,"in_reply_to_user_id_str":"16656851","in_reply_to_screen_name":"dailytarheel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280699247118233602\/--efJ7Sd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280699247118233602\/--efJ7Sd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296574996962324481,"id_str":"1296574996962324481","name":"Mark - MERRYMAN","screen_name":"MarkMERRYMAN2","location":"","description":"senior - citizen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":43,"listed_count":0,"created_at":"Thu - Aug 20 22:29:17 +0000 2020","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"status":{"created_at":"Sat - Mar 27 23:29:50 +0000 2021","id":1375953238894260226,"id_str":"1375953238894260226","text":"@mjfree - Yea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mjfree","name":"Morgan - J. Freeman","id":24113137,"id_str":"24113137","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1375544533845475328,"in_reply_to_status_id_str":"1375544533845475328","in_reply_to_user_id":24113137,"in_reply_to_user_id_str":"24113137","in_reply_to_screen_name":"mjfree","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307030987545640960\/4wmqzeJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307030987545640960\/4wmqzeJt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16590220,"id_str":"16590220","name":"Ed - Farrelly","screen_name":"edfarr","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":209,"friends_count":3855,"listed_count":0,"created_at":"Sat - Oct 04 10:34:14 +0000 2008","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5878,"lang":null,"status":{"created_at":"Tue - Mar 22 20:13:19 +0000 2022","id":1506363413685014528,"id_str":"1506363413685014528","text":"@CharlesPPierce - From what I hear nobody did.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CharlesPPierce","name":"Charles - P. Pierce","id":121489431,"id_str":"121489431","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506346774251950086,"in_reply_to_status_id_str":"1506346774251950086","in_reply_to_user_id":121489431,"in_reply_to_user_id_str":"121489431","in_reply_to_screen_name":"CharlesPPierce","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/875392573556367360\/eZyNsjml_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/875392573556367360\/eZyNsjml_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16590220\/1480961668","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16322423,"id_str":"16322423","name":"L - \ud83c\udf3b\ud83d\udc99\ud83d\udc9b","screen_name":"lmbimmerle","location":"Denver, - CO","description":"\ud83c\udf3b","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":600,"listed_count":0,"created_at":"Wed - Sep 17 02:33:48 +0000 2008","favourites_count":11744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":171,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/856724320009113600\/ammJDJU__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/856724320009113600\/ammJDJU__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16322423\/1645999080","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1059887859879022592,"id_str":"1059887859879022592","name":"Reynaldo","screen_name":"Reynald68306289","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":154,"listed_count":0,"created_at":"Tue - Nov 06 19:18:52 +0000 2018","favourites_count":3384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Wed - Dec 02 03:39:45 +0000 2020","id":1333979140937162752,"id_str":"1333979140937162752","text":"@JudicialWatch - FYI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JudicialWatch","name":"Judicial - Watch \u2696\ufe0f","id":18247062,"id_str":"18247062","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1333955293563088896,"in_reply_to_status_id_str":"1333955293563088896","in_reply_to_user_id":18247062,"in_reply_to_user_id_str":"18247062","in_reply_to_screen_name":"JudicialWatch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1907337074,"id_str":"1907337074","name":"BILL - MURAGE","screen_name":"BillMurage","location":"Nairobi, Kenya","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":863,"listed_count":0,"created_at":"Thu - Sep 26 09:41:30 +0000 2013","favourites_count":2148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":172,"lang":null,"status":{"created_at":"Sun - Mar 20 13:29:17 +0000 2022","id":1505536960408047624,"id_str":"1505536960408047624","text":"@Coopbankenya_2 - 0738656356","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Coopbankenya_2","name":"Coop - Bank Kenya","id":1504090477078982661,"id_str":"1504090477078982661","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505533259589079042,"in_reply_to_status_id_str":"1505533259589079042","in_reply_to_user_id":1504090477078982661,"in_reply_to_user_id_str":"1504090477078982661","in_reply_to_screen_name":"Coopbankenya_2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":870112728,"id_str":"870112728","name":"Ali - Nawaz Korai (\u0639\u0644\u064a \u0646\u0648\u0627\u0632 \u06aa\u0648\u0631\u0627\u0626\u064a)","screen_name":"Ali_Nawaz_Korai","location":"Karachi - Sindh Pakistan","description":"Advocate High Court","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":323,"friends_count":2046,"listed_count":0,"created_at":"Tue - Oct 09 15:46:58 +0000 2012","favourites_count":9439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":183,"lang":null,"status":{"created_at":"Mon - Jan 24 18:39:57 +0000 2022","id":1485683810423422982,"id_str":"1485683810423422982","text":"@KhawajaSyed - \ud83d\udc96\ud83d\udc96\ud83d\udc96\ud83d\udc96\u2764\u2764\u2764\u2764","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KhawajaSyed","name":"khawaja - syed ppp uk (HR)president uk","id":329956381,"id_str":"329956381","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1485658480212123650,"in_reply_to_status_id_str":"1485658480212123650","in_reply_to_user_id":329956381,"in_reply_to_user_id_str":"329956381","in_reply_to_screen_name":"KhawajaSyed","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466174038837968904\/porqYT_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466174038837968904\/porqYT_5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20877820,"id_str":"20877820","name":"Rob - Soni","screen_name":"Roblsoni","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":1981,"listed_count":11,"created_at":"Sat - Feb 14 23:07:56 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Mon - Jun 12 02:58:53 +0000 2017","id":874098654189170689,"id_str":"874098654189170689","text":"@DjokerNole - When it counted against Sam Q. at Wimbledon your serves hit the outside of - two lines but you were out of challenges.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DjokerNole","name":"Novak - Djokovic","id":259925559,"id_str":"259925559","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":259925559,"in_reply_to_user_id_str":"259925559","in_reply_to_screen_name":"DjokerNole","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308344960324907009,"id_str":"1308344960324907009","name":"Regasa - Abdisa","screen_name":"RegasaAbdisa6","location":"","description":"#God is - M strength\u270a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":1444,"listed_count":0,"created_at":"Tue - Sep 22 09:59:09 +0000 2020","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Fri - Nov 26 06:35:40 +0000 2021","id":1464120653053898794,"id_str":"1464120653053898794","text":"#NewProfilePic - https:\/\/t.co\/0SmJhYKKyH","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1464120650814177282,"id_str":"1464120650814177282","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FFGZ-YQXwAIHXEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFGZ-YQXwAIHXEU.jpg","url":"https:\/\/t.co\/0SmJhYKKyH","display_url":"pic.twitter.com\/0SmJhYKKyH","expanded_url":"https:\/\/twitter.com\/RegasaAbdisa6\/status\/1464120653053898794\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":512,"h":512,"resize":"fit"},"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1464120650814177282,"id_str":"1464120650814177282","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FFGZ-YQXwAIHXEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFGZ-YQXwAIHXEU.jpg","url":"https:\/\/t.co\/0SmJhYKKyH","display_url":"pic.twitter.com\/0SmJhYKKyH","expanded_url":"https:\/\/twitter.com\/RegasaAbdisa6\/status\/1464120653053898794\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":512,"h":512,"resize":"fit"},"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464120628483665942\/3UbWWXUS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464120628483665942\/3UbWWXUS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308344960324907009\/1628597563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":710664359509254145,"id_str":"710664359509254145","name":"Mama''s - Screamlicious","screen_name":"MScreamlicious","location":"","description":"","url":"https:\/\/t.co\/JTDP8bUVSn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JTDP8bUVSn","expanded_url":"https:\/\/www.facebook.com\/mamasscreamlicious","display_url":"facebook.com\/mamasscreamlic\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":437,"listed_count":0,"created_at":"Fri - Mar 18 03:09:21 +0000 2016","favourites_count":1305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":223,"lang":null,"status":{"created_at":"Thu - Jan 07 22:20:20 +0000 2021","id":1347307106370654208,"id_str":"1347307106370654208","text":"@WhiteHouse - @PressSec No questions?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhiteHouse","name":"The - White House","id":1323730225067339784,"id_str":"1323730225067339784","indices":[0,11]},{"screen_name":"PressSec","name":"Jen - Psaki","id":1349170292564905988,"id_str":"1349170292564905988","indices":[12,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1347306600462045185,"in_reply_to_status_id_str":"1347306600462045185","in_reply_to_user_id":822215673812119553,"in_reply_to_user_id_str":"822215673812119553","in_reply_to_screen_name":"WhiteHouse45","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/936316104133156865\/LVl5qKaR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/936316104133156865\/LVl5qKaR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/710664359509254145\/1512070547","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":151814912,"id_str":"151814912","name":"Crystal - Carrol","screen_name":"kirk_crissy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":290,"listed_count":0,"created_at":"Fri - Jun 04 09:19:54 +0000 2010","favourites_count":955,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":49,"lang":null,"status":{"created_at":"Sun - Mar 28 14:06:32 +0000 2021","id":1376173866515636224,"id_str":"1376173866515636224","text":"@IAmSteveHarvey - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAmSteveHarvey","name":"Steve - Harvey","id":96846955,"id_str":"96846955","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1375963510383935492,"in_reply_to_status_id_str":"1375963510383935492","in_reply_to_user_id":96846955,"in_reply_to_user_id_str":"96846955","in_reply_to_screen_name":"IAmSteveHarvey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251899309710364674,"id_str":"1251899309710364674","name":"Gary - Jusino","screen_name":"jusino_gary","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":229,"listed_count":0,"created_at":"Sun - Apr 19 15:45:47 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Sep 13 17:28:12 +0000 2021","id":1437468165848584196,"id_str":"1437468165848584196","text":"@billmaher - Just want to say that I have enjoyed the show for many years and have seen - Bill in person as well. I rea\u2026 https:\/\/t.co\/K7ioDbpAVC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"billmaher","name":"Bill - Maher","id":19697415,"id_str":"19697415","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/K7ioDbpAVC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1437468165848584196","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1436543707763777546,"in_reply_to_status_id_str":"1436543707763777546","in_reply_to_user_id":19697415,"in_reply_to_user_id_str":"19697415","in_reply_to_screen_name":"billmaher","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3011747682,"id_str":"3011747682","name":"zach - zipfel","screen_name":"zachzipfel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":2254,"listed_count":0,"created_at":"Sat - Feb 07 00:39:30 +0000 2015","favourites_count":5192,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":961,"lang":null,"status":{"created_at":"Tue - Mar 22 16:38:07 +0000 2022","id":1506309259125936132,"id_str":"1506309259125936132","text":"@GOP - You''re disgusting.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506282786843410432,"in_reply_to_status_id_str":"1506282786843410432","in_reply_to_user_id":11134252,"in_reply_to_user_id_str":"11134252","in_reply_to_screen_name":"GOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563860479349493760\/DneDZ-sr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563860479349493760\/DneDZ-sr_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1214702952755142656,"id_str":"1214702952755142656","name":"Matt","screen_name":"Matt37786990","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":66,"listed_count":0,"created_at":"Wed - Jan 08 00:18:56 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1239909512166944769,"id_str":"1239909512166944769","name":"Colleen - S","screen_name":"Colleen03842273","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":1124,"listed_count":0,"created_at":"Tue - Mar 17 13:41:10 +0000 2020","favourites_count":3132,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1252,"lang":null,"status":{"created_at":"Sat - Mar 19 13:00:21 +0000 2022","id":1505167289322246144,"id_str":"1505167289322246144","text":"RT - @RetroCrone: \u201cRing the bells that still can ring\nForget your perfect - offering\nThere is a crack, a crack in everything\nIt\u2019s how the light\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RetroCrone","name":"RetroCrone","id":295003818,"id_str":"295003818","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 19:12:35 +0000 2022","id":1499825147758485508,"id_str":"1499825147758485508","text":"\u201cRing - the bells that still can ring\nForget your perfect offering\nThere is a crack, - a crack in everything\nIt\u2019s how the light gets in\u201d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":58,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306581187431993348,"id_str":"1306581187431993348","name":"kral_21","screen_name":"kral2107868542","location":"","description":"","url":"https:\/\/t.co\/ny9tBbLEPw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ny9tBbLEPw","expanded_url":"https:\/\/www.youtube.com\/channel\/UC3djPE90pPZC2F0FQwQOuZA\/videos","display_url":"youtube.com\/channel\/UC3djP\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":316,"listed_count":0,"created_at":"Thu - Sep 17 13:10:18 +0000 2020","favourites_count":1620,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Nov 03 12:14:38 +0000 2020","id":1323599466092548096,"id_str":"1323599466092548096","text":"https:\/\/t.co\/toUoMnTvml","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/toUoMnTvml","expanded_url":"https:\/\/images.app.goo.gl\/czyMncoqnM6BJjRV9","display_url":"images.app.goo.gl\/czyMncoqnM6BJj\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315316538212261888\/am_189xP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315316538212261888\/am_189xP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306581187431993348\/1602430963","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":66746800,"id_str":"66746800","name":"Mike - Smith","screen_name":"mikesmith_DC","location":"Washington, DC","description":"senior - advisor @HouseMajPAC, @DCCC, and @TeamPelosi. @HillaryClinton ''16 alum. Dog - parent to Mollie & Billy. Incredibly less talented spouse to @sabrinasingh24","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2131,"friends_count":1361,"listed_count":0,"created_at":"Tue - Aug 18 17:50:12 +0000 2009","favourites_count":7699,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":592,"lang":null,"status":{"created_at":"Thu - Feb 10 20:51:43 +0000 2022","id":1491877563559518208,"id_str":"1491877563559518208","text":"RT - @DigiDems: \ud83d\udde3 JOB ALERT: Join our next cohort of Campaign #DigiDems! - From voting rights to healthcare to combating climate change, 2022 w\u2026","truncated":false,"entities":{"hashtags":[{"text":"DigiDems","indices":[60,69]}],"symbols":[],"user_mentions":[{"screen_name":"DigiDems","name":"DigiDems","id":981337902134132736,"id_str":"981337902134132736","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 14:59:23 +0000 2022","id":1491064118538821633,"id_str":"1491064118538821633","text":"\ud83d\udde3 - JOB ALERT: Join our next cohort of Campaign #DigiDems! From voting rights - to healthcare to combating climate chan\u2026 https:\/\/t.co\/6TotnG1qIE","truncated":true,"entities":{"hashtags":[{"text":"DigiDems","indices":[46,55]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6TotnG1qIE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491064118538821633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.hubspot.com\/\" rel=\"nofollow\"\u003eHubSpot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292812580986269696\/L6NEos5q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292812580986269696\/L6NEos5q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":968410088,"id_str":"968410088","name":"Laurel - Owen","screen_name":"laurelmarieowen","location":"NW Arkansas","description":"Actress, - cook, piano and violin player. INFJ. Runner. Meditator. Reader. Dog lover. - Druid. Lived in Balto, NYC, Oregon, San Francisco,and E TN.","url":"https:\/\/t.co\/cdDEGwbGUl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cdDEGwbGUl","expanded_url":"http:\/\/dorianmuse.com","display_url":"dorianmuse.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":554,"friends_count":1992,"listed_count":13,"created_at":"Sat - Nov 24 17:15:42 +0000 2012","favourites_count":7982,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1680,"lang":null,"status":{"created_at":"Fri - Mar 25 22:51:22 +0000 2022","id":1507490350931324937,"id_str":"1507490350931324937","text":"RT - @PaulCogan: BREAKING: In a HUGE loss for Republican Senators Tom Cotton, Ted - Cruz, Lindsay Graham, and Josh Hawley, officials from the A\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulCogan","name":"Paul - Cogan","id":110194870,"id_str":"110194870","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:05:55 +0000 2022","id":1507388317150683145,"id_str":"1507388317150683145","text":"BREAKING: - In a HUGE loss for Republican Senators Tom Cotton, Ted Cruz, Lindsay Graham, - and Josh Hawley, officials f\u2026 https:\/\/t.co\/Je0CuiekXe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Je0CuiekXe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507388317150683145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8106,"favorite_count":35821,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8106,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209808329876393985\/ql4QURfp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209808329876393985\/ql4QURfp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/968410088\/1475218035","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1134032678032891936,"id_str":"1134032678032891936","name":"sai","screen_name":"sai_k__m","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":349,"friends_count":828,"listed_count":0,"created_at":"Thu - May 30 09:43:54 +0000 2019","favourites_count":17812,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4750,"lang":null,"status":{"created_at":"Sat - Mar 26 07:04:40 +0000 2022","id":1507614497259032583,"id_str":"1507614497259032583","text":"@Vampire_Karthik - \ud83d\udd25","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Vampire_Karthik","name":"Dr.V\u03b1\u043c\u03c1\u03b9\u044f\u0454 - \u30c4","id":1267671935246233600,"id_str":"1267671935246233600","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507575690652049411,"in_reply_to_status_id_str":"1507575690652049411","in_reply_to_user_id":1267671935246233600,"in_reply_to_user_id_str":"1267671935246233600","in_reply_to_screen_name":"Vampire_Karthik","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503596789596786688\/PWMH1iaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503596789596786688\/PWMH1iaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134032678032891936\/1646484052","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":789670068229509120,"id_str":"789670068229509120","name":"Lilies - Of The Field","screen_name":"margarid_b","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":585,"listed_count":0,"created_at":"Sat - Oct 22 03:29:50 +0000 2016","favourites_count":13679,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311,"lang":null,"status":{"created_at":"Wed - Mar 23 12:36:14 +0000 2022","id":1506610773883203584,"id_str":"1506610773883203584","text":"RT - @mmpadellan: Good morning and Happy Hump Day to everyone who is convinced - after watching Judge Ketanji Brown Jackson for the past few da\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mmpadellan","name":"BrooklynDad_Defiant!","id":1640929196,"id_str":"1640929196","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 12:15:10 +0000 2022","id":1506605471486128131,"id_str":"1506605471486128131","text":"Good - morning and Happy Hump Day to everyone who is convinced after watching Judge - Ketanji Brown Jackson for the pas\u2026 https:\/\/t.co\/moZYTLlM2E","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/moZYTLlM2E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506605471486128131","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1124,"favorite_count":7572,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1124,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/789673313156988929\/XVmWfmBP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/789673313156988929\/XVmWfmBP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2740645982,"id_str":"2740645982","name":"Nelson","screen_name":"njplutz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":675,"listed_count":0,"created_at":"Sun - Aug 17 22:27:07 +0000 2014","favourites_count":213,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1194860356579016704,"id_str":"1194860356579016704","name":"M. - Hussein A. Mohammed","screen_name":"MHusseinAli8","location":"Iraq","description":"Instructor-Lecture - in University of kirkuk\/ Msn in Medical Surgical Nursing","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":3794,"listed_count":0,"created_at":"Thu - Nov 14 06:11:37 +0000 2019","favourites_count":77423,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4803,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194860798209867776\/qyBMy0Wm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194860798209867776\/qyBMy0Wm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194860356579016704\/1631129401","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241505812226273280,"id_str":"1241505812226273280","name":"Anna. - Heath","screen_name":"AnnaHea36530320","location":"Kent, WA","description":"A - pleasant mix of Melissa McCarthy, Stevie Nicks, and Lois Griffen.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":300,"listed_count":0,"created_at":"Sat - Mar 21 23:23:59 +0000 2020","favourites_count":155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":273,"lang":null,"status":{"created_at":"Thu - Mar 24 20:12:43 +0000 2022","id":1507088039947878410,"id_str":"1507088039947878410","text":"@tedcruz - Teddy.....dude! I''m at a loss here. You tweet the stupid so well.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506839959218671620,"in_reply_to_status_id_str":"1506839959218671620","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299195767509233664\/pJO1sNrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299195767509233664\/pJO1sNrL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241505812226273280\/1613097804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15560268,"id_str":"15560268","name":"jasonconga","screen_name":"jasonconga","location":"Freiburg - im Breisgau, Germany","description":"from California to Deutschland, YNWA - my opinions are mine only and represent no one else. Oh, and Barack Obama - follows me so there\u2019s that.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":1884,"listed_count":6,"created_at":"Wed - Jul 23 12:01:36 +0000 2008","favourites_count":7905,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1199,"lang":null,"status":{"created_at":"Thu - Mar 24 22:08:00 +0000 2022","id":1507117049276948480,"id_str":"1507117049276948480","text":"RT - @sammyjowymer: Giving myself Thiago Alcantara vibes \ud83c\udfaf\n\n@Thiago6 - https:\/\/t.co\/QWNvl0AX4U","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sammyjowymer","name":"Sammy","id":26730216,"id_str":"26730216","indices":[3,16]},{"screen_name":"Thiago6","name":"Thiago - Alcantara","id":152987149,"id_str":"152987149","indices":[58,66]}],"urls":[],"media":[{"id":1505593686079549446,"id_str":"1505593686079549446","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","url":"https:\/\/t.co\/QWNvl0AX4U","display_url":"pic.twitter.com\/QWNvl0AX4U","expanded_url":"https:\/\/twitter.com\/sammyjowymer\/status\/1505593718304350211\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"source_status_id":1505593718304350211,"source_status_id_str":"1505593718304350211","source_user_id":26730216,"source_user_id_str":"26730216"}]},"extended_entities":{"media":[{"id":1505593686079549446,"id_str":"1505593686079549446","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","url":"https:\/\/t.co\/QWNvl0AX4U","display_url":"pic.twitter.com\/QWNvl0AX4U","expanded_url":"https:\/\/twitter.com\/sammyjowymer\/status\/1505593718304350211\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"source_status_id":1505593718304350211,"source_status_id_str":"1505593718304350211","source_user_id":26730216,"source_user_id_str":"26730216","video_info":{"aspect_ratio":[30,53],"duration_millis":10678,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/pl\/EiykdLQU1P6kQafr.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/vid\/320x564\/jOe5Ijbj_svU4shA.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/vid\/480x848\/pt81XywEl8Rt7Hzm.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 17:14:49 +0000 2022","id":1505593718304350211,"id_str":"1505593718304350211","text":"Giving - myself Thiago Alcantara vibes \ud83c\udfaf\n\n@Thiago6 https:\/\/t.co\/QWNvl0AX4U","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Thiago6","name":"Thiago - Alcantara","id":152987149,"id_str":"152987149","indices":[40,48]}],"urls":[],"media":[{"id":1505593686079549446,"id_str":"1505593686079549446","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","url":"https:\/\/t.co\/QWNvl0AX4U","display_url":"pic.twitter.com\/QWNvl0AX4U","expanded_url":"https:\/\/twitter.com\/sammyjowymer\/status\/1505593718304350211\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505593686079549446,"id_str":"1505593686079549446","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505593686079549446\/pu\/img\/pbmZaHAtXlnNcAS3.jpg","url":"https:\/\/t.co\/QWNvl0AX4U","display_url":"pic.twitter.com\/QWNvl0AX4U","expanded_url":"https:\/\/twitter.com\/sammyjowymer\/status\/1505593718304350211\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":848,"resize":"fit"},"small":{"w":385,"h":680,"resize":"fit"},"medium":{"w":480,"h":848,"resize":"fit"}},"video_info":{"aspect_ratio":[30,53],"duration_millis":10678,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/pl\/EiykdLQU1P6kQafr.m3u8?tag=12&container=fmp4"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/vid\/320x564\/jOe5Ijbj_svU4shA.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505593686079549446\/pu\/vid\/480x848\/pt81XywEl8Rt7Hzm.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"297642d53265f8b4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/297642d53265f8b4.json","place_type":"city","name":"Freiburg - im Breisgau","full_name":"Freiburg im Breisgau, Germany","country_code":"DE","country":"Germany","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[7.6620758,47.903611],[7.930815,47.903611],[7.930815,48.070923],[7.6620758,48.070923]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442591293188812801\/fSM6Tjlv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442591293188812801\/fSM6Tjlv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15560268\/1632775542","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":364680165,"id_str":"364680165","name":"3301sf","screen_name":"3301sf","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":4254,"listed_count":0,"created_at":"Tue - Aug 30 04:30:44 +0000 2011","favourites_count":310,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":900943329197555712,"id_str":"900943329197555712","name":"Nancy - Luna","screen_name":"nancylunalaw","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":261,"listed_count":0,"created_at":"Fri - Aug 25 04:50:03 +0000 2017","favourites_count":160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":184850257,"id_str":"184850257","name":"Alba - X Realpe","screen_name":"A_Xime","location":"","description":"Author of Barriers - to recruitment in an ankle surgery trial in @bonejointopen. Read here: https:\/\/t.co\/gHho7ScydY","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/gHho7ScydY","expanded_url":"https:\/\/pubmed.ncbi.nlm.nih.gov\/34378406\/","display_url":"pubmed.ncbi.nlm.nih.gov\/34378406\/","indices":[90,113]}]}},"protected":false,"followers_count":61,"friends_count":385,"listed_count":0,"created_at":"Mon - Aug 30 16:53:01 +0000 2010","favourites_count":122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":null,"status":{"created_at":"Fri - Mar 18 10:17:02 +0000 2022","id":1504763803711545354,"id_str":"1504763803711545354","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306593215701594114\/R5f9LEnm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306593215701594114\/R5f9LEnm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184850257\/1600174846","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1092058908833861632,"id_str":"1092058908833861632","name":"Karen - Elizabeth","screen_name":"k_bisetti","location":"New York, USA","description":"I - make stuff.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":456,"listed_count":0,"created_at":"Sun - Feb 03 13:55:08 +0000 2019","favourites_count":6483,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1831,"lang":null,"status":{"created_at":"Fri - Jan 21 02:48:39 +0000 2022","id":1484357242333712388,"id_str":"1484357242333712388","text":"@joncoopertweets - Yes, yes, yes !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1484271988982140931,"in_reply_to_status_id_str":"1484271988982140931","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097681324931014657\/dhu-y7dQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097681324931014657\/dhu-y7dQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1092058908833861632\/1611502158","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":401216115,"id_str":"401216115","name":"solaria","screen_name":"mochajtito","location":"","description":"Griffindor - \ud83c\udf19\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":580,"friends_count":348,"listed_count":1,"created_at":"Sun - Oct 30 07:00:18 +0000 2011","favourites_count":35902,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40000,"lang":null,"status":{"created_at":"Fri - Mar 25 19:48:04 +0000 2022","id":1507444222193856515,"id_str":"1507444222193856515","text":"My - comfort zone is just rebahan and stay laying with phone \ud83e\udd79","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506322329303142400\/FFHalKNm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506322329303142400\/FFHalKNm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401216115\/1645210010","profile_link_color":"F58EA8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFCD86","profile_text_color":"FED8B1","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231220087014641664,"id_str":"1231220087014641664","name":"\u9ec4\u836f\u5e08","screen_name":"cvRB8plG8R6WZkg","location":"","description":"\u770b\u4e00\u770b\uff0c\u542c\u4e00\u542c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":349,"listed_count":0,"created_at":"Sat - Feb 22 14:12:19 +0000 2020","favourites_count":37,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231220482738769922\/unXEepSn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231220482738769922\/unXEepSn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1066075381847994368,"id_str":"1066075381847994368","name":"Margaret - Fornia","screen_name":"ForniaMargaret","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":374,"listed_count":0,"created_at":"Fri - Nov 23 21:05:52 +0000 2018","favourites_count":75,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sun - Oct 31 19:38:31 +0000 2021","id":1454895580472352770,"id_str":"1454895580472352770","text":"RT - @TristanSnell: BREAKING - Trump claimed he was invited to attend World Series - by Major League Baseball commissioner \u2014 and now MLB says i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TristanSnell","name":"Tristan - Snell","id":15801906,"id_str":"15801906","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 30 21:35:52 +0000 2021","id":1454562723308654603,"id_str":"1454562723308654603","text":"BREAKING - - Trump claimed he was invited to attend World Series by Major League Baseball - commissioner \u2014 and now MLB\u2026 https:\/\/t.co\/n4vp6FgJi5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/n4vp6FgJi5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1454562723308654603","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3006,"favorite_count":10469,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3006,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276743324259450880,"id_str":"1276743324259450880","name":"Engr - Moses Okoye","screen_name":"EngrMosesOkoye2","location":"Lagos, Nigeria","description":"specialize - in building contractor (commercial and residential), real estate development - and management, property sales, lease or rent","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":29,"listed_count":0,"created_at":"Sat - Jun 27 05:05:24 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97,"lang":null,"status":{"created_at":"Fri - Jun 04 05:35:09 +0000 2021","id":1400687546263379972,"id_str":"1400687546263379972","text":"For - more enquires call \ud83d\udcde 08064826214 https:\/\/t.co\/q0Q63EvAQr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1400687535672672256,"id_str":"1400687535672672256","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/E3A95H0WQAAv2HL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3A95H0WQAAv2HL.jpg","url":"https:\/\/t.co\/q0Q63EvAQr","display_url":"pic.twitter.com\/q0Q63EvAQr","expanded_url":"https:\/\/twitter.com\/EngrMosesOkoye2\/status\/1400687546263379972\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":761,"h":1080,"resize":"fit"},"small":{"w":479,"h":680,"resize":"fit"},"large":{"w":761,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1400687535672672256,"id_str":"1400687535672672256","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/E3A95H0WQAAv2HL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3A95H0WQAAv2HL.jpg","url":"https:\/\/t.co\/q0Q63EvAQr","display_url":"pic.twitter.com\/q0Q63EvAQr","expanded_url":"https:\/\/twitter.com\/EngrMosesOkoye2\/status\/1400687546263379972\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":761,"h":1080,"resize":"fit"},"small":{"w":479,"h":680,"resize":"fit"},"large":{"w":761,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276743576748163072\/jC4pinYA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276743576748163072\/jC4pinYA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":128101784,"id_str":"128101784","name":"Lily - G","screen_name":"SoylaLilita","location":"Mexico","description":"yo no soy - yo. Soy esta que va a mi lado, sin yo verlo; la que calla, serena, cuando - hablo, \u2026la que quedar\u00e1 en pie, cuando yo muera. JR Jim\u00e9nez","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":1324,"listed_count":0,"created_at":"Wed - Mar 31 03:13:31 +0000 2010","favourites_count":10258,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3146,"lang":null,"status":{"created_at":"Sun - Mar 20 13:24:19 +0000 2022","id":1505535710530473984,"id_str":"1505535710530473984","text":"RT - @AndreaChavezTre: \ud83d\udfe5 ANTI EFEM\u00c9RIDE\n\nHoy se cumplen 12 a\u00f1os - del terrible asesinato de Jorge Mercado y Javier Arredondo en el Tec de Monte\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndreaChavezTre","name":"Andrea - Ch\u00e1vez","id":258383944,"id_str":"258383944","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 17:01:35 +0000 2022","id":1505227999725211651,"id_str":"1505227999725211651","text":"\ud83d\udfe5 - ANTI EFEM\u00c9RIDE\n\nHoy se cumplen 12 a\u00f1os del terrible asesinato - de Jorge Mercado y Javier Arredondo en el Tec de Mo\u2026 https:\/\/t.co\/VAYrAInSUH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VAYrAInSUH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505227999725211651","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3925,"favorite_count":7636,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":3925,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408945744686587906\/E-0btA05_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408945744686587906\/E-0btA05_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128101784\/1643584788","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":140894535,"id_str":"140894535","name":"Pax","screen_name":"paxpakiao","location":"-34.588017,","description":"XRP&GESARA - Enthusiast","url":"https:\/\/t.co\/VP1HE1ecEA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VP1HE1ecEA","expanded_url":"http:\/\/500px.com\/paxluxart","display_url":"500px.com\/paxluxart","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":988,"listed_count":5,"created_at":"Thu - May 06 16:52:45 +0000 2010","favourites_count":6677,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3874,"lang":null,"status":{"created_at":"Fri - Mar 25 19:49:24 +0000 2022","id":1507444557541216284,"id_str":"1507444557541216284","text":"RT - @GetCasinoCoin: Say my name \ud83d\ude0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GetCasinoCoin","name":"GetCasinoCoin\u2600\ufe0f","id":1358495419911839750,"id_str":"1358495419911839750","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:11:03 +0000 2022","id":1507374510420467712,"id_str":"1507374510420467712","text":"Say - my name \ud83d\ude0a https:\/\/t.co\/UPi0ENvGK1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UPi0ENvGK1","expanded_url":"https:\/\/twitter.com\/casinocoin\/status\/1507317084912435208","display_url":"twitter.com\/casinocoin\/sta\u2026","indices":[14,37]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507317084912435208,"quoted_status_id_str":"1507317084912435208","retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507317084912435208,"quoted_status_id_str":"1507317084912435208","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349005896584724485\/1JmP2mGH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349005896584724485\/1JmP2mGH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140894535\/1605248844","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1081209660282204160,"id_str":"1081209660282204160","name":"Tim_Sperry_CT","screen_name":"YankeeinCT","location":"","description":"Connecticut - native returning home after many years. Political junkie and lifelong Democrat. - Married to a brilliant critical thinker. #HandMarkedPaperBallots","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":549,"friends_count":1429,"listed_count":1,"created_at":"Fri - Jan 04 15:24:05 +0000 2019","favourites_count":40853,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19117,"lang":null,"status":{"created_at":"Sat - Mar 26 02:27:04 +0000 2022","id":1507544637120159746,"id_str":"1507544637120159746","text":"@donwinslow - @BenSasse @ElieNYC Always.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[0,11]},{"screen_name":"BenSasse","name":"Ben - Sasse","id":1480852568,"id_str":"1480852568","indices":[12,21]},{"screen_name":"ElieNYC","name":"Elie - Mystal","id":40353407,"id_str":"40353407","indices":[22,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507496428314062848,"in_reply_to_status_id_str":"1507496428314062848","in_reply_to_user_id":255812611,"in_reply_to_user_id_str":"255812611","in_reply_to_screen_name":"donwinslow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418680213379194884\/IELuLFvB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418680213379194884\/IELuLFvB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081209660282204160\/1580312577","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108169341906927617,"id_str":"1108169341906927617","name":"lona2have","screen_name":"lona2havelka","location":"Born - in Chicago, Illinois","description":"Working to save OUR Democracy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":357,"friends_count":1583,"listed_count":0,"created_at":"Wed - Mar 20 00:52:14 +0000 2019","favourites_count":91582,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9515,"lang":null,"status":{"created_at":"Sat - Mar 26 02:21:37 +0000 2022","id":1507543265062567940,"id_str":"1507543265062567940","text":"RT - @KyivIndependent: \u26a1\ufe0fRussian occupiers plan paid rally in temporarily - occupied Melitopol for March 26, according to the Zaporizhzhia Mili\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:01:29 +0000 2022","id":1507538196606992387,"id_str":"1507538196606992387","text":"\u26a1\ufe0fRussian - occupiers plan paid rally in temporarily occupied Melitopol for March 26, - according to the Zaporizhzhia M\u2026 https:\/\/t.co\/VK3bjBWdYb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VK3bjBWdYb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507538196606992387","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2215,"favorite_count":6925,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2215,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500255457281298433\/eUXLnYwM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500255457281298433\/eUXLnYwM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108169341906927617\/1611165300","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2848158408,"id_str":"2848158408","name":"\ud83d\udef9\ud83c\udf88\ud83e\ude82AirBaG\u00ae\ufe0f","screen_name":"Symposive","location":"","description":"\ud83e\ude82 - #JesusIsKing #BusinessMagnet #sK8r\ud83c\udfc2 #Fixer #Strategist #RealEstate - EST 1991\u2122\ufe0f#farmer #furniture #logistics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":691,"friends_count":3554,"listed_count":8,"created_at":"Thu - Oct 09 03:36:45 +0000 2014","favourites_count":6898,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8052,"lang":null,"status":{"created_at":"Thu - Mar 24 10:32:06 +0000 2022","id":1506941920521728004,"id_str":"1506941920521728004","text":"Serious - gang relations\ud83e\udd1e\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504589348284645380\/OnExabtH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504589348284645380\/OnExabtH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848158408\/1613766197","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223719890713968641,"id_str":"1223719890713968641","name":"Ajimohammed","screen_name":"Ajimohammed8","location":"","description":"Because - in myself","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":88,"listed_count":0,"created_at":"Sat - Feb 01 21:29:31 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251516009699258369,"id_str":"1251516009699258369","name":"Lucas - Ferreira Fruhauf","screen_name":"LFF22044373","location":"","description":"piloto, - m\u00fasico, de esquerda, vasca\u00edno, aficionado em Cristo...e um tanto - esquisito!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":751,"listed_count":0,"created_at":"Sat - Apr 18 14:21:02 +0000 2020","favourites_count":7618,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":483,"lang":null,"status":{"created_at":"Tue - Mar 15 15:13:14 +0000 2022","id":1503751179116892169,"id_str":"1503751179116892169","text":"@GuedinhoExplica - Lula","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GuedinhoExplica","name":"Guedinho - Explica","id":1286383377885667329,"id_str":"1286383377885667329","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503493269837258756,"in_reply_to_status_id_str":"1503493269837258756","in_reply_to_user_id":1286383377885667329,"in_reply_to_user_id_str":"1286383377885667329","in_reply_to_screen_name":"GuedinhoExplica","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471186249008525324\/KzVoaEiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471186249008525324\/KzVoaEiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251516009699258369\/1617290500","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3319969726,"id_str":"3319969726","name":"Diana - Kipp","screen_name":"Diamakipp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":374,"listed_count":0,"created_at":"Thu - Jun 11 23:53:57 +0000 2015","favourites_count":417,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Thu - Jan 21 00:57:49 +0000 2021","id":1352057779918278656,"id_str":"1352057779918278656","text":"@IvankaTrump - Not really agreeable to your idea of America. Byeeeee","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IvankaTrump","name":"Ivanka - Trump","id":52544275,"id_str":"52544275","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1351677756547936256,"in_reply_to_status_id_str":"1351677756547936256","in_reply_to_user_id":52544275,"in_reply_to_user_id_str":"52544275","in_reply_to_screen_name":"IvankaTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":295730858,"id_str":"295730858","name":"\ud835\udc40\ud835\udc4e\ud835\udc66\ud835\udc4f\ud835\udc61\ud835\udc5a\ud835\udc5f\ud80c\udc83\u0dc6 - \u2734\ufe0e\ud83d\udc31\ud83d\udc2f","screen_name":"_Maey","location":" \u007b - 10 & Mark \u007d only","description":"\u0e44\u0e21\u0e48\u0e0a\u0e34\u0e21\u0e02\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e2d\u0e23\u0e48\u0e2d\u0e22\u0e04\u0e48\u0e30 - .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":219,"friends_count":585,"listed_count":1,"created_at":"Mon - May 09 15:31:40 +0000 2011","favourites_count":21651,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":183151,"lang":null,"status":{"created_at":"Sat - Mar 26 09:19:35 +0000 2022","id":1507648449218371586,"id_str":"1507648449218371586","text":"\u0e2a\u0e35\u0e40\u0e1a\u0e1a\u0e35\u0e49\u0e1a\u0e25\u0e39\u0e2a\u0e27\u0e22\u0e14\u0e35\u0e19\u0e30","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429431587683278851\/VJBcTvGQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429431587683278851\/VJBcTvGQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/295730858\/1621437362","profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C21111","profile_text_color":"474A57","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3107136516,"id_str":"3107136516","name":"LinkerBlinker","screen_name":"grgrgrshark","location":"Sydney, - New South Wales","description":"my opinions are my own. Follows are not endorsements, - nor are retweets.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":67,"friends_count":975,"listed_count":0,"created_at":"Wed - Mar 25 08:36:34 +0000 2015","favourites_count":12974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":953,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1355367448376053767\/6etsVw8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1355367448376053767\/6etsVw8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3107136516\/1611979838","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2931865536,"id_str":"2931865536","name":"Ali - Shah","screen_name":"da474315","location":"badin sindh Pakistan","description":"mbbs - Doctor","url":"https:\/\/t.co\/BXrNXp1JEL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BXrNXp1JEL","expanded_url":"http:\/\/Tih.org.pk","display_url":"Tih.org.pk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5559,"friends_count":6568,"listed_count":2,"created_at":"Tue - Dec 16 06:08:32 +0000 2014","favourites_count":13611,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10411,"lang":null,"status":{"created_at":"Sat - Mar 26 07:22:22 +0000 2022","id":1507618948145160192,"id_str":"1507618948145160192","text":"RT - @SindhiNews021: \u06af\u064a\u06be \u0633\u0645\u064a\u062a \u06f2\u06f5 \u0634\u064a\u0646 - \u062c\u0648\u0646 \u0642\u064a\u0645\u062a\u0648\u0646 \u0648\u068c\u064a - \u0648\u064a\u0648\u0646:\n \u0645\u06be\u0627\u0646\u06af\u0627\u0626\u064a - \u062c\u064a \u0633\u0631\u0627\u0633\u0631\u064a 15.67 \u0633\u064a\u06aa\u0699\u0648 - \u067f\u064a \u0648\u0626\u064a\u060c \u0632\u0646\u062f\u0647 \u0645\u0631\u063a\u064a - \u062c\u064a \u0641\u064a \u06aa\u0644\u0648 \u0642\u064a\u0645\u062a \u06fe - 23 \u0631\u067e\u064a\u0627 59 \u067e\u064a\u0633\u0627\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SindhiNews021","name":"\u0633\u0646\u068c\u064a - \u062e\u0628\u0631\u0648\u0646 \u06f0\u06f2\u06f1","id":1704399853,"id_str":"1704399853","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:15:22 +0000 2022","id":1507602090310438912,"id_str":"1507602090310438912","text":"\u06af\u064a\u06be - \u0633\u0645\u064a\u062a \u06f2\u06f5 \u0634\u064a\u0646 \u062c\u0648\u0646 - \u0642\u064a\u0645\u062a\u0648\u0646 \u0648\u068c\u064a \u0648\u064a\u0648\u0646:\n - \u0645\u06be\u0627\u0646\u06af\u0627\u0626\u064a \u062c\u064a \u0633\u0631\u0627\u0633\u0631\u064a - 15.67 \u0633\u064a\u06aa\u0699\u0648 \u067f\u064a \u0648\u0626\u064a\u060c - \u0632\u0646\u062f\u0647 \u0645\u0631\u063a\u064a \u062c\u064a \u0641\u064a - \u06aa\u0644\u0648 \u0642\u064a\u0645\u062a \u06fe 23 \u0631\u067e\u064a\u0627 - 59\u2026 https:\/\/t.co\/C8A9z1adyN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C8A9z1adyN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507602090310438912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"sd"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"sd"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457704096954204163\/m7LvvxMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457704096954204163\/m7LvvxMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2931865536\/1636378753","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256359195244474372,"id_str":"1256359195244474372","name":"Billy - \ud83d\udc8e\ud83d\ude4c\ud83c\udffe","screen_name":"ble8319","location":"","description":"38yo.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":539,"listed_count":2,"created_at":"Fri - May 01 23:06:00 +0000 2020","favourites_count":2585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":389,"lang":null,"status":{"created_at":"Thu - Mar 24 15:00:19 +0000 2022","id":1507009418914775055,"id_str":"1507009418914775055","text":"@Benzinga - $VIX calls","truncated":false,"entities":{"hashtags":[],"symbols":[{"text":"VIX","indices":[10,14]}],"user_mentions":[{"screen_name":"Benzinga","name":"Benzinga","id":44060322,"id_str":"44060322","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506976551778324483,"in_reply_to_status_id_str":"1506976551778324483","in_reply_to_user_id":44060322,"in_reply_to_user_id_str":"44060322","in_reply_to_screen_name":"Benzinga","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256359790227456000\/MGJfkevA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256359790227456000\/MGJfkevA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":246006836,"id_str":"246006836","name":"Stephen - Kuusisto","screen_name":"StephenKuusisto","location":"Syracuse, NY","description":"Disability - Activist, Poet, Memoirist: latest book \"Old Horse, What Is to Be Done?\" - Blog: https:\/\/t.co\/3h45Ke2mFq\nPronouns, he, him, but not stuffy about - it.","url":"https:\/\/t.co\/IBIpyUoUw8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBIpyUoUw8","expanded_url":"http:\/\/www.stephenkuusisto.com","display_url":"stephenkuusisto.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/3h45Ke2mFq","expanded_url":"http:\/\/stephenkuusisto.com","display_url":"stephenkuusisto.com","indices":[89,112]}]}},"protected":false,"followers_count":2157,"friends_count":3725,"listed_count":61,"created_at":"Tue - Feb 01 22:55:50 +0000 2011","favourites_count":11197,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24916,"lang":null,"status":{"created_at":"Sat - Mar 26 00:41:46 +0000 2022","id":1507518136601481224,"id_str":"1507518136601481224","text":"RT - @JYSexton: The Ginni Thomas story is bigger than Clarence Thomas or his position - on the Supreme Court.\n\nIt reveals what a lot of us have\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JYSexton","name":"Jared - Yates Sexton","id":325385270,"id_str":"325385270","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:25:25 +0000 2022","id":1507453624607195138,"id_str":"1507453624607195138","text":"The - Ginni Thomas story is bigger than Clarence Thomas or his position on the Supreme - Court.\n\nIt reveals what a lot\u2026 https:\/\/t.co\/OmQ5mc2oYP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OmQ5mc2oYP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507453624607195138","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7528,"favorite_count":31529,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7528,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2391343068\/d8vpm6etlt11s593iilz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2391343068\/d8vpm6etlt11s593iilz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246006836\/1399131742","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":913845839109517317,"id_str":"913845839109517317","name":"Teresa - Bevilacqua","screen_name":"TeresaBevilac13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":153,"listed_count":0,"created_at":"Fri - Sep 29 19:20:01 +0000 2017","favourites_count":15612,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Thu - Oct 08 01:33:21 +0000 2020","id":1314015997888733189,"id_str":"1314015997888733189","text":"@CNN - Mk\n))\n\nNip7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1313955022426775553,"in_reply_to_status_id_str":"1313955022426775553","in_reply_to_user_id":759251,"in_reply_to_user_id_str":"759251","in_reply_to_screen_name":"CNN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33523728,"id_str":"33523728","name":"tirzha\u2763\ud83d\udc9a\ud83d\udd96 - alcaide","screen_name":"tirzha","location":"San Juan Puerto Rico","description":"Vive - la Vida q Amas\nInfluencer, blogger, Dating Guru, radio seg. on SalSoulFM - and TV Colab TelemundoPR, Designer Matahari Jewelry since 2002. Women''s - Advocate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2875,"friends_count":4214,"listed_count":53,"created_at":"Mon - Apr 20 14:12:24 +0000 2009","favourites_count":40659,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43133,"lang":null,"status":{"created_at":"Sat - Mar 26 10:26:14 +0000 2022","id":1507665223448203272,"id_str":"1507665223448203272","text":"RT - @jeforse: @PalmerReport #Ukraine\ufe0fDefeatingRussia #StandingWithUkraine - #StopPutinNOW #SlavaUkraini https:\/\/t.co\/OaDyMsgjh6","truncated":false,"entities":{"hashtags":[{"text":"Ukraine\ufe0fDefeatingRussia","indices":[27,51]},{"text":"StandingWithUkraine","indices":[52,72]},{"text":"StopPutinNOW","indices":[73,86]},{"text":"SlavaUkraini","indices":[87,100]}],"symbols":[],"user_mentions":[{"screen_name":"jeforse","name":"JEForse","id":1402869817,"id_str":"1402869817","indices":[3,11]},{"screen_name":"PalmerReport","name":"Palmer - Report","id":15115280,"id_str":"15115280","indices":[13,26]}],"urls":[],"media":[{"id":1507636369232998408,"id_str":"1507636369232998408","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1432,"resize":"fit"},"small":{"w":513,"h":680,"resize":"fit"},"medium":{"w":905,"h":1200,"resize":"fit"}},"source_status_id":1507636375390150658,"source_status_id_str":"1507636375390150658","source_user_id":1402869817,"source_user_id_str":"1402869817"}]},"extended_entities":{"media":[{"id":1507636369232998408,"id_str":"1507636369232998408","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1432,"resize":"fit"},"small":{"w":513,"h":680,"resize":"fit"},"medium":{"w":905,"h":1200,"resize":"fit"}},"source_status_id":1507636375390150658,"source_status_id_str":"1507636375390150658","source_user_id":1402869817,"source_user_id_str":"1402869817"},{"id":1507636372588445697,"id_str":"1507636372588445697","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSwaXwAEGS3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSwaXwAEGS3K.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":933,"h":1089,"resize":"fit"},"large":{"w":933,"h":1089,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"}},"source_status_id":1507636375390150658,"source_status_id_str":"1507636375390150658","source_user_id":1402869817,"source_user_id_str":"1402869817"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:31:37 +0000 2022","id":1507636375390150658,"id_str":"1507636375390150658","text":"@PalmerReport - #Ukraine\ufe0fDefeatingRussia #StandingWithUkraine #StopPutinNOW #SlavaUkraini - https:\/\/t.co\/OaDyMsgjh6","truncated":false,"entities":{"hashtags":[{"text":"Ukraine\ufe0fDefeatingRussia","indices":[14,38]},{"text":"StandingWithUkraine","indices":[39,59]},{"text":"StopPutinNOW","indices":[60,73]},{"text":"SlavaUkraini","indices":[74,87]}],"symbols":[],"user_mentions":[{"screen_name":"PalmerReport","name":"Palmer - Report","id":15115280,"id_str":"15115280","indices":[0,13]}],"urls":[],"media":[{"id":1507636369232998408,"id_str":"1507636369232998408","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1432,"resize":"fit"},"small":{"w":513,"h":680,"resize":"fit"},"medium":{"w":905,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507636369232998408,"id_str":"1507636369232998408","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSj6XsAg7tcW.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1432,"resize":"fit"},"small":{"w":513,"h":680,"resize":"fit"},"medium":{"w":905,"h":1200,"resize":"fit"}}},{"id":1507636372588445697,"id_str":"1507636372588445697","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwzSwaXwAEGS3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwzSwaXwAEGS3K.jpg","url":"https:\/\/t.co\/OaDyMsgjh6","display_url":"pic.twitter.com\/OaDyMsgjh6","expanded_url":"https:\/\/twitter.com\/jeforse\/status\/1507636375390150658\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":933,"h":1089,"resize":"fit"},"large":{"w":933,"h":1089,"resize":"fit"},"small":{"w":583,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507623108282392581,"in_reply_to_status_id_str":"1507623108282392581","in_reply_to_user_id":15115280,"in_reply_to_user_id_str":"15115280","in_reply_to_screen_name":"PalmerReport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492277579641987074\/6aTDxejK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492277579641987074\/6aTDxejK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33523728\/1599058489","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":206018500,"id_str":"206018500","name":"NC - Resistance","screen_name":"NCResist2020","location":"Durham, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":217,"friends_count":903,"listed_count":0,"created_at":"Fri - Oct 22 03:05:38 +0000 2010","favourites_count":2037,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1633,"lang":null,"status":{"created_at":"Wed - Mar 23 06:47:30 +0000 2022","id":1506523013604274180,"id_str":"1506523013604274180","text":"@EllenBarkin - OK, but can we compare him to Bevis?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EllenBarkin","name":"Ellen - Barkin","id":390377012,"id_str":"390377012","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504221064347500546,"in_reply_to_status_id_str":"1504221064347500546","in_reply_to_user_id":390377012,"in_reply_to_user_id_str":"390377012","in_reply_to_screen_name":"EllenBarkin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/842031650573819905\/loq_czxp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/842031650573819905\/loq_czxp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206018500\/1590178617","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25380712,"id_str":"25380712","name":"marc - matza","screen_name":"mmatza","location":"New York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":288,"listed_count":0,"created_at":"Thu - Mar 19 20:42:10 +0000 2009","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1091311949663621120\/xOA7eLxf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1091311949663621120\/xOA7eLxf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48225987,"id_str":"48225987","name":"BarbY - \ud83c\udf3b\ud83c\udf3b\ud83c\udf3b\ud83c\udf3b","screen_name":"BarbBroadie","location":"Iowa","description":"Iowa - Hawkeye fan. Mom, wife, daughter, sister, aunt, of humans and animals. Social - justice Christian. Moderate Dem, I love football, INDYCAR , History,#BLM \ud83c\udf3b\ud83c\udf3b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":306,"friends_count":1983,"listed_count":1,"created_at":"Thu - Jun 18 03:15:10 +0000 2009","favourites_count":35006,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2522,"lang":null,"status":{"created_at":"Fri - Mar 25 21:07:09 +0000 2022","id":1507464125949042690,"id_str":"1507464125949042690","text":"@BaddCompani - Is this so they can get their own soldiers out of the way and unleash a biological - or nuclear assault? I don\u2019t trust this","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BaddCompani","name":"Badd - Company","id":868673067223887872,"id_str":"868673067223887872","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507462999140814852,"in_reply_to_status_id_str":"1507462999140814852","in_reply_to_user_id":868673067223887872,"in_reply_to_user_id_str":"868673067223887872","in_reply_to_screen_name":"BaddCompani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":137,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324681991619514368\/8q8ECCia_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324681991619514368\/8q8ECCia_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48225987\/1620099237","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":382815059,"id_str":"382815059","name":"heidi - Mitnick","screen_name":"heidi_h_m_DDS","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":333,"listed_count":0,"created_at":"Fri - Sep 30 18:49:06 +0000 2011","favourites_count":3265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":87,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2871656049,"id_str":"2871656049","name":"bullit - marquez","screen_name":"BullitMarquez","location":"","description":"Photojournalist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":304,"friends_count":853,"listed_count":4,"created_at":"Tue - Nov 11 02:36:01 +0000 2014","favourites_count":78114,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7770,"lang":null,"status":{"created_at":"Thu - Mar 24 01:00:48 +0000 2022","id":1506798149309894656,"id_str":"1506798149309894656","text":"RT - @joncoopertweets: Has anyone else noticed that some of the most rabidly anti-LGBT - Republicans turn out to be closeted gays, and some of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 17:36:06 +0000 2022","id":1506686237142405120,"id_str":"1506686237142405120","text":"Has - anyone else noticed that some of the most rabidly anti-LGBT Republicans turn - out to be closeted gays, and some\u2026 https:\/\/t.co\/dTXytXRvIu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dTXytXRvIu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506686237142405120","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6765,"favorite_count":37700,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6765,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2871656049\/1598003428","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858665016505118722,"id_str":"858665016505118722","name":"Jean - Lyon","screen_name":"keeny27","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":97,"listed_count":0,"created_at":"Sun - Apr 30 12:51:07 +0000 2017","favourites_count":405,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1502498250,"id_str":"1502498250","name":"\u0646\u0628\u064a\u0644 - \u062d\u0645\u062f\u064a","screen_name":"na2006el","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":246,"listed_count":0,"created_at":"Tue - Jun 11 12:11:07 +0000 2013","favourites_count":902,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":243,"lang":null,"status":{"created_at":"Fri - Mar 25 21:57:15 +0000 2022","id":1507476733502660610,"id_str":"1507476733502660610","text":"@M_N_Albukhaiti - \u062a\u0633\u0644\u0645 \u0627\u0644\u0623\u064a\u0627\u062f\u064a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"M_N_Albukhaiti","name":"\u0645\u062d\u0645\u062f - \u0627\u0644\u0628\u062e\u064a\u062a\u064a(Mohammed Al-Bukaiti)","id":1063515256184557574,"id_str":"1063515256184557574","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507460853121142795,"in_reply_to_status_id_str":"1507460853121142795","in_reply_to_user_id":1063515256184557574,"in_reply_to_user_id_str":"1063515256184557574","in_reply_to_screen_name":"M_N_Albukhaiti","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378195711033020416\/b-97ntE1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378195711033020416\/b-97ntE1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1502498250\/1617422363","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253750410843688962,"id_str":"1253750410843688962","name":"Aulona","screen_name":"AulonaHaxhiu","location":"Kosovo","description":"new - acc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":89,"listed_count":0,"created_at":"Fri - Apr 24 18:19:34 +0000 2020","favourites_count":1213,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Thu - Aug 12 19:17:40 +0000 2021","id":1425899302673649668,"id_str":"1425899302673649668","text":"RT - @zoexfr: I feel like as you get older you realise literally no one cares, - so just live for you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zoexfr","name":"zee","id":960945677256871936,"id_str":"960945677256871936","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Aug 11 16:33:48 +0000 2021","id":1425495677342191617,"id_str":"1425495677342191617","text":"I - feel like as you get older you realise literally no one cares, so just live - for you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3882,"favorite_count":15141,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3882,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253751152493166592\/LCx4K2UQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253751152493166592\/LCx4K2UQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205463044618362880,"id_str":"1205463044618362880","name":"The - Hannibals","screen_name":"hanniba67591960","location":"Houston, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":330,"listed_count":0,"created_at":"Fri - Dec 13 12:22:53 +0000 2019","favourites_count":1317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112,"lang":null,"status":{"created_at":"Sat - Jan 16 18:16:47 +0000 2021","id":1350507305025085443,"id_str":"1350507305025085443","text":"RT - @Keystones_O_S: https:\/\/t.co\/Sg4umy8B6K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Keystones_O_S","name":"Keystones - Of Success","id":817407869503029249,"id_str":"817407869503029249","indices":[3,17]}],"urls":[],"media":[{"id":1350432602348466178,"id_str":"1350432602348466178","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","url":"https:\/\/t.co\/Sg4umy8B6K","display_url":"pic.twitter.com\/Sg4umy8B6K","expanded_url":"https:\/\/twitter.com\/Keystones_O_S\/status\/1350432668824043521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"},"medium":{"w":500,"h":500,"resize":"fit"}},"source_status_id":1350432668824043521,"source_status_id_str":"1350432668824043521","source_user_id":817407869503029249,"source_user_id_str":"817407869503029249"}]},"extended_entities":{"media":[{"id":1350432602348466178,"id_str":"1350432602348466178","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","url":"https:\/\/t.co\/Sg4umy8B6K","display_url":"pic.twitter.com\/Sg4umy8B6K","expanded_url":"https:\/\/twitter.com\/Keystones_O_S\/status\/1350432668824043521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"},"medium":{"w":500,"h":500,"resize":"fit"}},"source_status_id":1350432668824043521,"source_status_id_str":"1350432668824043521","source_user_id":817407869503029249,"source_user_id_str":"817407869503029249"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 16 13:20:12 +0000 2021","id":1350432668824043521,"id_str":"1350432668824043521","text":"https:\/\/t.co\/Sg4umy8B6K","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1350432602348466178,"id_str":"1350432602348466178","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","url":"https:\/\/t.co\/Sg4umy8B6K","display_url":"pic.twitter.com\/Sg4umy8B6K","expanded_url":"https:\/\/twitter.com\/Keystones_O_S\/status\/1350432668824043521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"},"medium":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1350432602348466178,"id_str":"1350432602348466178","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Er2zTAQWMAInrzZ.jpg","url":"https:\/\/t.co\/Sg4umy8B6K","display_url":"pic.twitter.com\/Sg4umy8B6K","expanded_url":"https:\/\/twitter.com\/Keystones_O_S\/status\/1350432668824043521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"},"medium":{"w":500,"h":500,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295709435030122496\/-9LUzODR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295709435030122496\/-9LUzODR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205463044618362880\/1597756178","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2363976995,"id_str":"2363976995","name":"Liz - Lister","screen_name":"ldlister88_liz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":978,"listed_count":0,"created_at":"Tue - Feb 25 00:43:58 +0000 2014","favourites_count":3989,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":688,"lang":null,"status":{"created_at":"Thu - Mar 24 12:53:02 +0000 2022","id":1506977389749932044,"id_str":"1506977389749932044","text":"@DrOz - Adios","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506747209966133252,"in_reply_to_status_id_str":"1506747209966133252","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438115066832252928\/fvbVByK2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438115066832252928\/fvbVByK2_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3187850603,"id_str":"3187850603","name":"Nicky - Jennings","screen_name":"JenningsNicky","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":573,"listed_count":0,"created_at":"Mon - Apr 20 18:12:58 +0000 2015","favourites_count":15361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Tue - Jan 25 18:20:49 +0000 2022","id":1486041380971495424,"id_str":"1486041380971495424","text":"RT - @Ottojizzmark: GREAT NEWS \nMy ongoing campaign to limit the number of people - retweeting this image and causing any upset to Boris Johnso\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ottojizzmark","name":"Otto - Von Jizzmark \ud83c\uddfa\ud83c\udde6","id":1247020867529453568,"id_str":"1247020867529453568","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 24 23:51:26 +0000 2022","id":1485762194792984576,"id_str":"1485762194792984576","text":"GREAT - NEWS \nMy ongoing campaign to limit the number of people retweeting this image - and causing any upset to Boris\u2026 https:\/\/t.co\/7aLQfyjabi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7aLQfyjabi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1485762194792984576","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21225,"favorite_count":23520,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21225,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14243900,"id_str":"14243900","name":"Chris - \ud83c\udf3b","screen_name":"csmyers88","location":"D.C. via Pgh | (He, Him, - His)","description":"Life\u2019s better on a bike. \ud83d\udeb4 If not the - bike, then a train. #bikedc\ud83d\ude8a \ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":621,"friends_count":677,"listed_count":25,"created_at":"Fri - Mar 28 14:20:41 +0000 2008","favourites_count":16081,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18130,"lang":null,"status":{"created_at":"Fri - Mar 25 20:17:18 +0000 2022","id":1507451582203703298,"id_str":"1507451582203703298","text":"RT - @TheX2BusDC: it''s friday.\u270c\ud83c\udffd\ufe0f if you made it to today, - keep going.\u2665\ufe0f https:\/\/t.co\/NPiHImtW9l","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheX2BusDC","name":"The - X2","id":190343865,"id_str":"190343865","indices":[3,14]}],"urls":[],"media":[{"id":1507326832592498690,"id_str":"1507326832592498690","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","url":"https:\/\/t.co\/NPiHImtW9l","display_url":"pic.twitter.com\/NPiHImtW9l","expanded_url":"https:\/\/twitter.com\/TheX2BusDC\/status\/1507326835725672451\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1507326835725672451,"source_status_id_str":"1507326835725672451","source_user_id":190343865,"source_user_id_str":"190343865"}]},"extended_entities":{"media":[{"id":1507326832592498690,"id_str":"1507326832592498690","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","url":"https:\/\/t.co\/NPiHImtW9l","display_url":"pic.twitter.com\/NPiHImtW9l","expanded_url":"https:\/\/twitter.com\/TheX2BusDC\/status\/1507326835725672451\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1507326835725672451,"source_status_id_str":"1507326835725672451","source_user_id":190343865,"source_user_id_str":"190343865"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:01:37 +0000 2022","id":1507326835725672451,"id_str":"1507326835725672451","text":"it''s - friday.\u270c\ud83c\udffd\ufe0f if you made it to today, keep going.\u2665\ufe0f - https:\/\/t.co\/NPiHImtW9l","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507326832592498690,"id_str":"1507326832592498690","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","url":"https:\/\/t.co\/NPiHImtW9l","display_url":"pic.twitter.com\/NPiHImtW9l","expanded_url":"https:\/\/twitter.com\/TheX2BusDC\/status\/1507326835725672451\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507326832592498690,"id_str":"1507326832592498690","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsZxKEXMAIw_7K.jpg","url":"https:\/\/t.co\/NPiHImtW9l","display_url":"pic.twitter.com\/NPiHImtW9l","expanded_url":"https:\/\/twitter.com\/TheX2BusDC\/status\/1507326835725672451\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":444,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":40,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"543F20","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418940321149378563\/pmhZEBP0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418940321149378563\/pmhZEBP0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14243900\/1640628063","profile_link_color":"01080A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42899508,"id_str":"42899508","name":"Thomas - Osmon","screen_name":"ozzies123","location":"Riverside, CA","description":"HDR local - 12","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":3799,"listed_count":8,"created_at":"Wed - May 27 15:00:54 +0000 2009","favourites_count":1139,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4527,"lang":null,"status":{"created_at":"Sat - Feb 19 13:09:40 +0000 2022","id":1495022776851173381,"id_str":"1495022776851173381","text":"RT - @GrumblesTDwarf: I made a nexus site so if you are looking to get some games - check out items I have played or plan to play on there.\n\nEv\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GrumblesTDwarf","name":"GrumblesTheDwarf","id":1246108410648690688,"id_str":"1246108410648690688","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 19 09:13:38 +0000 2022","id":1494963374509236226,"id_str":"1494963374509236226","text":"I - made a nexus site so if you are looking to get some games check out items - I have played or plan to play on there.\u2026 https:\/\/t.co\/BghAJbtCy2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BghAJbtCy2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494963374509236226","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223966238331719680\/GF3WSKNM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223966238331719680\/GF3WSKNM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42899508\/1359044993","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":75743818,"id_str":"75743818","name":"ihsan - murat gok","screen_name":"ihsan_murat_gok","location":"Istanbul, Turkey","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":130,"friends_count":3175,"listed_count":0,"created_at":"Sun - Sep 20 07:45:24 +0000 2009","favourites_count":6235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2494,"lang":null,"status":{"created_at":"Sat - Mar 26 04:01:22 +0000 2022","id":1507568365828653059,"id_str":"1507568365828653059","text":"RT - @TripkovicMilena: Me, a PhD student, first time at a big conference https:\/\/t.co\/K4YfG9IFAf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TripkovicMilena","name":"Milena - Tripkovic","id":831096585497018368,"id_str":"831096585497018368","indices":[3,19]}],"urls":[],"media":[{"id":1506923225149812738,"id_str":"1506923225149812738","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","url":"https:\/\/t.co\/K4YfG9IFAf","display_url":"pic.twitter.com\/K4YfG9IFAf","expanded_url":"https:\/\/twitter.com\/tradasro\/status\/1506923395765653510\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506923395765653510,"source_status_id_str":"1506923395765653510","source_user_id":2752028613,"source_user_id_str":"2752028613"}]},"extended_entities":{"media":[{"id":1506923225149812738,"id_str":"1506923225149812738","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","url":"https:\/\/t.co\/K4YfG9IFAf","display_url":"pic.twitter.com\/K4YfG9IFAf","expanded_url":"https:\/\/twitter.com\/tradasro\/status\/1506923395765653510\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506923395765653510,"source_status_id_str":"1506923395765653510","source_user_id":2752028613,"source_user_id_str":"2752028613","video_info":{"aspect_ratio":[16,9],"duration_millis":25618,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/1280x720\/j5jdae6tI2vYP8Jq.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/480x270\/QWXDFloaz0gZvcmr.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/640x360\/e3Hb8DZz2hoHLA7u.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/pl\/YW2-6Pqa-uD3ZTud.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:14:51 +0000 2022","id":1507028175917826050,"id_str":"1507028175917826050","text":"Me, - a PhD student, first time at a big conference https:\/\/t.co\/K4YfG9IFAf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506923225149812738,"id_str":"1506923225149812738","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","url":"https:\/\/t.co\/K4YfG9IFAf","display_url":"pic.twitter.com\/K4YfG9IFAf","expanded_url":"https:\/\/twitter.com\/tradasro\/status\/1506923395765653510\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506923395765653510,"source_status_id_str":"1506923395765653510","source_user_id":2752028613,"source_user_id_str":"2752028613"}]},"extended_entities":{"media":[{"id":1506923225149812738,"id_str":"1506923225149812738","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506923225149812738\/pu\/img\/L4f0i0K9w7OCxjME.jpg","url":"https:\/\/t.co\/K4YfG9IFAf","display_url":"pic.twitter.com\/K4YfG9IFAf","expanded_url":"https:\/\/twitter.com\/tradasro\/status\/1506923395765653510\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506923395765653510,"source_status_id_str":"1506923395765653510","source_user_id":2752028613,"source_user_id_str":"2752028613","video_info":{"aspect_ratio":[16,9],"duration_millis":25618,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/1280x720\/j5jdae6tI2vYP8Jq.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/480x270\/QWXDFloaz0gZvcmr.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/vid\/640x360\/e3Hb8DZz2hoHLA7u.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506923225149812738\/pu\/pl\/YW2-6Pqa-uD3ZTud.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":337,"favorite_count":5689,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":337,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494535348\/twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494535348\/twitter_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":43255156,"id_str":"43255156","name":"Rafael - Alfaro","screen_name":"RafaelAlfaroP","location":"","description":"Diplomat. - Former Deputy Foreign Minister and Ambassador of El Salvador (\ud83c\udde8\ud83c\udde6\ud83c\uddee\ud83c\uddf1\ud83c\uddfb\ud83c\uddea\ud83c\uddea\ud83c\udde8\ud83c\uddf9\ud83c\uddf9\ud83c\uddec\ud83c\uddfe) - Alternate Representative to \ud83c\uddfa\ud83c\uddf3. Minister Counsellor - in \ud83c\uddfa\ud83c\uddf8.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":898,"friends_count":2384,"listed_count":12,"created_at":"Fri - May 29 02:44:45 +0000 2009","favourites_count":4462,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7403,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/700877120520720384\/YIknNuJu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/700877120520720384\/YIknNuJu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43255156\/1594998699","profile_link_color":"5E412F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1088149490496925699,"id_str":"1088149490496925699","name":"tomctwc","screen_name":"tomc1hotmailco1","location":"Bradford, - England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":2730,"listed_count":0,"created_at":"Wed - Jan 23 19:00:30 +0000 2019","favourites_count":110889,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5000,"lang":null,"status":{"created_at":"Sat - Mar 26 06:18:18 +0000 2022","id":1507602828856020994,"id_str":"1507602828856020994","text":"@lloydblankfein - What a ridiculous tweet!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lloydblankfein","name":"Lloyd - Blankfein","id":313381067,"id_str":"313381067","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507072804646236168,"in_reply_to_status_id_str":"1507072804646236168","in_reply_to_user_id":313381067,"in_reply_to_user_id_str":"313381067","in_reply_to_screen_name":"lloydblankfein","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332525834784137218\/GEdi2rU1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332525834784137218\/GEdi2rU1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088149490496925699\/1592528885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1149339313210978305,"id_str":"1149339313210978305","name":"Dakota - Ching","screen_name":"dakotaching","location":"San Francisco","description":"I - \u2764\ufe0f Fog","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":257,"listed_count":2,"created_at":"Thu - Jul 11 15:27:00 +0000 2019","favourites_count":20913,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7591,"lang":null,"status":{"created_at":"Fri - Mar 25 21:27:49 +0000 2022","id":1507469324537065477,"id_str":"1507469324537065477","text":"@BBCNews - So they haven\u2019t changed it up?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCNews","name":"BBC - News (UK)","id":612473,"id_str":"612473","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507468971444142080,"in_reply_to_status_id_str":"1507468971444142080","in_reply_to_user_id":612473,"in_reply_to_user_id_str":"612473","in_reply_to_screen_name":"BBCNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441442898357080069\/xjikd2rR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441442898357080069\/xjikd2rR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149339313210978305\/1632501776","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1207239131627237376,"id_str":"1207239131627237376","name":"King - Medish","screen_name":"medish_king","location":"","description":"Am am man - with enthusiasm to achieve my goal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":903,"listed_count":0,"created_at":"Wed - Dec 18 10:00:36 +0000 2019","favourites_count":3990,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sat - Sep 12 13:53:04 +0000 2020","id":1304780067835387906,"id_str":"1304780067835387906","text":"Hard - work pays not magic https:\/\/t.co\/IsoOJsA5j0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1304780054627594240,"id_str":"1304780054627594240","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EhuCi_IXsAAH7vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EhuCi_IXsAAH7vd.jpg","url":"https:\/\/t.co\/IsoOJsA5j0","display_url":"pic.twitter.com\/IsoOJsA5j0","expanded_url":"https:\/\/twitter.com\/medish_king\/status\/1304780067835387906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1304780054627594240,"id_str":"1304780054627594240","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EhuCi_IXsAAH7vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EhuCi_IXsAAH7vd.jpg","url":"https:\/\/t.co\/IsoOJsA5j0","display_url":"pic.twitter.com\/IsoOJsA5j0","expanded_url":"https:\/\/twitter.com\/medish_king\/status\/1304780067835387906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}},{"id":1304780054619189248,"id_str":"1304780054619189248","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EhuCi_GXcAA3LSZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EhuCi_GXcAA3LSZ.jpg","url":"https:\/\/t.co\/IsoOJsA5j0","display_url":"pic.twitter.com\/IsoOJsA5j0","expanded_url":"https:\/\/twitter.com\/medish_king\/status\/1304780067835387906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}},{"id":1304780054640103424,"id_str":"1304780054640103424","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EhuCi_LWkAA4q7d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EhuCi_LWkAA4q7d.jpg","url":"https:\/\/t.co\/IsoOJsA5j0","display_url":"pic.twitter.com\/IsoOJsA5j0","expanded_url":"https:\/\/twitter.com\/medish_king\/status\/1304780067835387906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}},{"id":1304780054656888832,"id_str":"1304780054656888832","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EhuCi_PWsAAuAlq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EhuCi_PWsAAuAlq.jpg","url":"https:\/\/t.co\/IsoOJsA5j0","display_url":"pic.twitter.com\/IsoOJsA5j0","expanded_url":"https:\/\/twitter.com\/medish_king\/status\/1304780067835387906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303140190286950434\/tE30TtQC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303140190286950434\/tE30TtQC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1207239131627237376\/1599527808","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":581343974,"id_str":"581343974","name":"Uchenna - Ezeh","screen_name":"uchenna_ezeh","location":"Enugu, Nigeria ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":243,"friends_count":3081,"listed_count":0,"created_at":"Tue - May 15 23:37:24 +0000 2012","favourites_count":4024,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1484,"lang":null,"status":{"created_at":"Tue - Mar 01 16:53:54 +0000 2022","id":1498703083576213510,"id_str":"1498703083576213510","text":"@NaijaPidgin_ - Customer Care","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NaijaPidgin_","name":"Naija - Pidgin","id":3085163355,"id_str":"3085163355","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498674647298154504,"in_reply_to_status_id_str":"1498674647298154504","in_reply_to_user_id":3085163355,"in_reply_to_user_id_str":"3085163355","in_reply_to_screen_name":"NaijaPidgin_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586265868818055168\/LHQXcPM2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586265868818055168\/LHQXcPM2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581343974\/1585515735","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":246433324,"id_str":"246433324","name":"Abdelmoniem - Alkhalil","screen_name":"abdulmonhem","location":"Doha-Qatar","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":367,"listed_count":0,"created_at":"Wed - Feb 02 19:44:57 +0000 2011","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":252,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000391165654\/bcf7bc7289eb377fe80d1e80cc7b3f45_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000391165654\/bcf7bc7289eb377fe80d1e80cc7b3f45_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":757624928,"id_str":"757624928","name":"vm","screen_name":"VeneMoses","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":96,"friends_count":753,"listed_count":0,"created_at":"Tue - Aug 14 18:16:03 +0000 2012","favourites_count":3962,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/726424371326242816\/II0-CV7Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/726424371326242816\/II0-CV7Q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1129247834417577990,"id_str":"1129247834417577990","name":"Heather - Struck","screen_name":"HeatherStruck3","location":"Union, KY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":843,"listed_count":0,"created_at":"Fri - May 17 04:50:38 +0000 2019","favourites_count":4986,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277786089491759104\/_jl2CK1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277786089491759104\/_jl2CK1__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24969268,"id_str":"24969268","name":"Alan - Litsey","screen_name":"Alanlit","location":"Birmingham, AL","description":"Husband, - Dad, Educator, Human Rights and Democracy Supporter","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":163,"friends_count":734,"listed_count":2,"created_at":"Tue - Mar 17 22:26:19 +0000 2009","favourites_count":14518,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13085,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/181931750\/AlanLitsey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/181931750\/AlanLitsey_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2763555482,"id_str":"2763555482","name":"Lynn - Tedder","screen_name":"LynnyBob1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":273,"listed_count":1,"created_at":"Sun - Aug 24 18:57:34 +0000 2014","favourites_count":1021,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1458,"lang":null,"status":{"created_at":"Wed - Mar 09 13:53:45 +0000 2022","id":1501556849384079367,"id_str":"1501556849384079367","text":"RT - @ForecasterEnten: One of the great things in life is going from age 10 \"man - i''m weird and everyone is normal\" to age 25 \"man I''m weird..\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ForecasterEnten","name":"(((Harry - Enten)))","id":138141495,"id_str":"138141495","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 13:49:37 +0000 2022","id":1501555812229160971,"id_str":"1501555812229160971","text":"One - of the great things in life is going from age 10 \"man i''m weird and everyone - is normal\" to age 25 \"man I''m weir\u2026 https:\/\/t.co\/RRBKyNwvhZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RRBKyNwvhZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501555812229160971","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":367,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251637724295159810,"id_str":"1251637724295159810","name":"ParentsAgainstHCJFS","screen_name":"stolenchildren5","location":"Hamilton - County, Ohio, USA","description":"Advocates fighting to bring our children - home. Hamilton County Job and Family Services steals loving family''s kids. - Please contact us if we can help your family","url":"https:\/\/t.co\/dpXGDLPY8w","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dpXGDLPY8w","expanded_url":"https:\/\/childrensinitiatives.ohio.gov\/wps\/portal\/gov\/ci\/","display_url":"childrensinitiatives.ohio.gov\/wps\/portal\/gov\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":1929,"listed_count":0,"created_at":"Sat - Apr 18 22:24:37 +0000 2020","favourites_count":4684,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2787,"lang":null,"status":{"created_at":"Sun - Mar 13 07:11:36 +0000 2022","id":1502905196577492995,"id_str":"1502905196577492995","text":"Same - here, in Hamilton County! https:\/\/t.co\/5tZuxKqiJa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5tZuxKqiJa","expanded_url":"https:\/\/twitter.com\/ulanda_waiters\/status\/1502192514459222021","display_url":"twitter.com\/ulanda_waiters\u2026","indices":[31,54]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502192514459222021,"quoted_status_id_str":"1502192514459222021","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344089676030865408\/LRlDFMq6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344089676030865408\/LRlDFMq6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251637724295159810\/1609290777","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":382392716,"id_str":"382392716","name":"Suzanne - Chomas","screen_name":"SuzanneChomas","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":530,"listed_count":0,"created_at":"Fri - Sep 30 00:23:17 +0000 2011","favourites_count":2384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":400,"lang":null,"status":{"created_at":"Thu - Mar 10 19:41:04 +0000 2022","id":1502006643596353539,"id_str":"1502006643596353539","text":"@MikeKellyPA - Oh Mike. We knew you''d be taking credit for this even though you voted against - this support. My, my\u2026 https:\/\/t.co\/Yf6voytyVM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikeKellyPA","name":"Rep. - Mike Kelly","id":935368364,"id_str":"935368364","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/Yf6voytyVM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502006643596353539","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501993866194530304,"in_reply_to_status_id_str":"1501993866194530304","in_reply_to_user_id":935368364,"in_reply_to_user_id_str":"935368364","in_reply_to_screen_name":"MikeKellyPA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359644689574617093\/5gOwxx2L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359644689574617093\/5gOwxx2L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/382392716\/1612999602","profile_link_color":"8C94A2","profile_sidebar_border_color":"8CB2BD","profile_sidebar_fill_color":"424C55","profile_text_color":"8CB2BD","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":296817260,"id_str":"296817260","name":"Marian - Mallon","screen_name":"MarianMallon","location":"London","description":"Feisty - Scottish female living in London!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1158,"friends_count":2574,"listed_count":47,"created_at":"Wed - May 11 13:10:19 +0000 2011","favourites_count":25971,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71253,"lang":null,"status":{"created_at":"Sat - Mar 26 07:59:09 +0000 2022","id":1507628206911856644,"id_str":"1507628206911856644","text":"RT - @UndisScot: 620 years ago today. David Stewart, 1st Duke of Rothesay, son - of King Robert III and heir to the Scottish crown, was murdere\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UndisScot","name":"Undiscovered - Scotland","id":154834539,"id_str":"154834539","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:33:36 +0000 2022","id":1507621778520223745,"id_str":"1507621778520223745","text":"620 - years ago today. David Stewart, 1st Duke of Rothesay, son of King Robert III - and heir to the Scottish crown, wa\u2026 https:\/\/t.co\/0PegO7x5rk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0PegO7x5rk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507621778520223745","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":49,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":882474476,"id_str":"882474476","name":"S - M Culbert","screen_name":"MariaGrandi1025","location":"","description":"Former - public librarian who loves a good read, travel, politics and poodles.\r\nA - bit of an info junkie, but nobody''s perfect.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":788,"listed_count":1,"created_at":"Mon - Oct 15 14:51:45 +0000 2012","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":774,"lang":null,"status":{"created_at":"Tue - Feb 15 01:57:40 +0000 2022","id":1493404108753145858,"id_str":"1493404108753145858","text":"RT - @RedWineBlueUSA: INTRODUCING: Book Ban Busters!\n\nYou\u2019d think they would - have learned by now not to come between parents and their kids\u2019\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RedWineBlueUSA","name":"Red - Wine and Blue","id":1179547142802817024,"id_str":"1179547142802817024","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 31 14:26:53 +0000 2022","id":1488156838549934080,"id_str":"1488156838549934080","text":"INTRODUCING: - Book Ban Busters!\n\nYou\u2019d think they would have learned by now not to - come between parents and their ki\u2026 https:\/\/t.co\/v7MWjfHkzm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/v7MWjfHkzm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1488156838549934080","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2737,"favorite_count":5148,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2737,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/934846969784209409\/ZB9h_WVe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/934846969784209409\/ZB9h_WVe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882474476\/1511719863","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243365862612119558,"id_str":"1243365862612119558","name":"ECO2898","screen_name":"eco2898","location":"Redmond, - WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":20,"listed_count":0,"created_at":"Fri - Mar 27 02:35:19 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243390689766854659\/sg5dftun_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243390689766854659\/sg5dftun_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1186830499559477248,"id_str":"1186830499559477248","name":"Democritus - - \ud83c\uddf2\ud83c\uddfd\ud83c\uddfa\ud83c\uddf8 Pass Voting Rights","screen_name":"ElPenolTepeh","location":"","description":"\ud83c\udf0a - Science, Engineering, History, Human Rights. I block stupid ppl.\n#DreamersAreAmericans\n#SeparationOfChurchAndState\n#MakeLobbyingIllegal\n#PassVotingRightsBill","url":"https:\/\/t.co\/jC37xLLSRv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jC37xLLSRv","expanded_url":"https:\/\/en.m.wikipedia.org\/wiki\/Democritus","display_url":"en.m.wikipedia.org\/wiki\/Democritus","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3167,"friends_count":4994,"listed_count":3,"created_at":"Wed - Oct 23 02:24:02 +0000 2019","favourites_count":14083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12124,"lang":null,"status":{"created_at":"Sat - Mar 26 02:47:26 +0000 2022","id":1507549760697339906,"id_str":"1507549760697339906","text":"@balalogy - I just saved the link to watch when an fully awake.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"balalogy","name":"tl;dr","id":617944033,"id_str":"617944033","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507548565115379713,"in_reply_to_status_id_str":"1507548565115379713","in_reply_to_user_id":617944033,"in_reply_to_user_id_str":"617944033","in_reply_to_screen_name":"balalogy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426293386915586048\/FMB52NgP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426293386915586048\/FMB52NgP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186830499559477248\/1572649946","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14802206,"id_str":"14802206","name":"Perry - Schaffer","screen_name":"psbx","location":"Southold, NY","description":"Talent - wrangler. Disrupter. Family. Justice. The zeitgeist. NYC. NoFo. Trying to - be the person my dog thinks I am. https:\/\/t.co\/4SAYLtXRyb, https:\/\/t.co\/DaEuGtoB2T.","url":"https:\/\/t.co\/b8LNKdHCC3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b8LNKdHCC3","expanded_url":"http:\/\/about.me\/pschaffer","display_url":"about.me\/pschaffer","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/4SAYLtXRyb","expanded_url":"http:\/\/schafferrogers.com","display_url":"schafferrogers.com","indices":[115,138]},{"url":"https:\/\/t.co\/DaEuGtoB2T","expanded_url":"http:\/\/wheresspot.com","display_url":"wheresspot.com","indices":[140,163]}]}},"protected":false,"followers_count":794,"friends_count":522,"listed_count":21,"created_at":"Fri - May 16 18:26:02 +0000 2008","favourites_count":8560,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25717,"lang":null,"status":{"created_at":"Sat - Mar 26 02:31:43 +0000 2022","id":1507545804600487941,"id_str":"1507545804600487941","text":"RT - @EricLiptonNYT: The law says that \u201cany justice, judge or magistrate judge - of the United States shall disqualify himself in any proceedin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EricLiptonNYT","name":"Eric - Lipton","id":375662595,"id_str":"375662595","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:07:23 +0000 2022","id":1507539682447577094,"id_str":"1507539682447577094","text":"The - law says that \u201cany justice, judge or magistrate judge of the United States - shall disqualify himself in any proc\u2026 https:\/\/t.co\/ak5dnS8uQ4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ak5dnS8uQ4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507539682447577094","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":242,"favorite_count":947,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":242,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"306EBA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1343985902511665152\/pNB6d3fV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1343985902511665152\/pNB6d3fV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14802206\/1402773504","profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":850619834,"id_str":"850619834","name":"yeyeokechukwu1","screen_name":"Efxconcepts","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":1130,"listed_count":0,"created_at":"Fri - Sep 28 07:12:49 +0000 2012","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sat - Jan 09 12:08:47 +0000 2021","id":1347877981440667648,"id_str":"1347877981440667648","text":"RT - @latimes: \u201cHow would you feel,\u201d Ponsetto said, \u201cif you were - alone in New York ... and you lose the one thing that gets stolen from you - t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"latimes","name":"Los - Angeles Times","id":16664681,"id_str":"16664681","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 08 18:03:47 +0000 2021","id":1347604932531159040,"id_str":"1347604932531159040","text":"\u201cHow - would you feel,\u201d Ponsetto said, \u201cif you were alone in New York ... - and you lose the one thing that gets stolen\u2026 https:\/\/t.co\/Y2W7Cn3mdQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y2W7Cn3mdQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347604932531159040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1347604924822032384,"in_reply_to_status_id_str":"1347604924822032384","in_reply_to_user_id":16664681,"in_reply_to_user_id_str":"16664681","in_reply_to_screen_name":"latimes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":184,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":39,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/798675758839398401\/hguq0gT-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/798675758839398401\/hguq0gT-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1160543410161410048,"id_str":"1160543410161410048","name":"Lori - Brown","screen_name":"LoriBro96623866","location":"","description":"Self appointed - Chief Happiness Officer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":45,"listed_count":0,"created_at":"Sun - Aug 11 13:28:05 +0000 2019","favourites_count":3552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sat - Feb 26 19:51:13 +0000 2022","id":1497660543922024450,"id_str":"1497660543922024450","text":"@NotreDame - I hope President Biden receives an honorary degree!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NotreDame","name":"Notre - Dame","id":6507762,"id_str":"6507762","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495803880004800512,"in_reply_to_status_id_str":"1495803880004800512","in_reply_to_user_id":6507762,"in_reply_to_user_id_str":"6507762","in_reply_to_screen_name":"NotreDame","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160544341397573632\/dbT4DlGI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160544341397573632\/dbT4DlGI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":98124420,"id_str":"98124420","name":"Krishna - Tekale","screen_name":"ktekale","location":"Monroe Twp NJ","description":"Agnostic - Atheist. Mundane, Realist. Likes\/Retweets do not equal endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":1689,"listed_count":3,"created_at":"Sun - Dec 20 13:13:42 +0000 2009","favourites_count":16158,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":709,"lang":null,"status":{"created_at":"Fri - Mar 25 11:43:00 +0000 2022","id":1507322153179533323,"id_str":"1507322153179533323","text":"RT - @Acyn: Hannity debates Tulsi https:\/\/t.co\/DGvluFdfA7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Acyn","name":"Acyn","id":16635277,"id_str":"16635277","indices":[3,8]}],"urls":[],"media":[{"id":1507192927050641441,"id_str":"1507192927050641441","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","url":"https:\/\/t.co\/DGvluFdfA7","display_url":"pic.twitter.com\/DGvluFdfA7","expanded_url":"https:\/\/twitter.com\/Acyn\/status\/1507193027244175370\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":377,"resize":"fit"},"medium":{"w":826,"h":458,"resize":"fit"},"large":{"w":826,"h":458,"resize":"fit"}},"source_status_id":1507193027244175370,"source_status_id_str":"1507193027244175370","source_user_id":16635277,"source_user_id_str":"16635277"}]},"extended_entities":{"media":[{"id":1507192927050641441,"id_str":"1507192927050641441","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","url":"https:\/\/t.co\/DGvluFdfA7","display_url":"pic.twitter.com\/DGvluFdfA7","expanded_url":"https:\/\/twitter.com\/Acyn\/status\/1507193027244175370\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":377,"resize":"fit"},"medium":{"w":826,"h":458,"resize":"fit"},"large":{"w":826,"h":458,"resize":"fit"}},"source_status_id":1507193027244175370,"source_status_id_str":"1507193027244175370","source_user_id":16635277,"source_user_id_str":"16635277","video_info":{"aspect_ratio":[413,229],"duration_millis":126536,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/vid\/826x458\/-HgO32JP54bQo3No.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/vid\/486x270\/dtDDPvGcUOvP9-Rs.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/pl\/DWyRgQUp7DEjx866.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003eTwitterrific - for iOS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:09:54 +0000 2022","id":1507193027244175370,"id_str":"1507193027244175370","text":"Hannity - debates Tulsi https:\/\/t.co\/DGvluFdfA7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507192927050641441,"id_str":"1507192927050641441","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","url":"https:\/\/t.co\/DGvluFdfA7","display_url":"pic.twitter.com\/DGvluFdfA7","expanded_url":"https:\/\/twitter.com\/Acyn\/status\/1507193027244175370\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":377,"resize":"fit"},"medium":{"w":826,"h":458,"resize":"fit"},"large":{"w":826,"h":458,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507192927050641441,"id_str":"1507192927050641441","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507192927050641441\/pu\/img\/WyUaHobtV4ioF_MK.jpg","url":"https:\/\/t.co\/DGvluFdfA7","display_url":"pic.twitter.com\/DGvluFdfA7","expanded_url":"https:\/\/twitter.com\/Acyn\/status\/1507193027244175370\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":377,"resize":"fit"},"medium":{"w":826,"h":458,"resize":"fit"},"large":{"w":826,"h":458,"resize":"fit"}},"video_info":{"aspect_ratio":[413,229],"duration_millis":126536,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/vid\/826x458\/-HgO32JP54bQo3No.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/vid\/486x270\/dtDDPvGcUOvP9-Rs.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507192927050641441\/pu\/pl\/DWyRgQUp7DEjx866.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":862,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":148,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333863355266850819\/fC61zmud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333863355266850819\/fC61zmud_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2854796390,"id_str":"2854796390","name":"Sarah - Payne","screen_name":"drspayne_payne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":392,"listed_count":1,"created_at":"Mon - Oct 13 21:08:36 +0000 2014","favourites_count":73973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26062,"lang":null,"status":{"created_at":"Fri - Mar 25 21:55:45 +0000 2022","id":1507476354228719616,"id_str":"1507476354228719616","text":"RT - @Klitschko: In the end, love and unity always win.\n\n#WeAreAllUkrainians - #united #Standtogether #KlitschkoBrothers #Birthday #Ukraine #Ky\u2026","truncated":false,"entities":{"hashtags":[{"text":"WeAreAllUkrainians","indices":[55,74]},{"text":"united","indices":[75,82]},{"text":"Standtogether","indices":[83,97]},{"text":"KlitschkoBrothers","indices":[98,116]},{"text":"Birthday","indices":[117,126]},{"text":"Ukraine","indices":[127,135]}],"symbols":[],"user_mentions":[{"screen_name":"Klitschko","name":"Klitschko","id":18869484,"id_str":"18869484","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:41:40 +0000 2022","id":1507352014673805313,"id_str":"1507352014673805313","text":"In - the end, love and unity always win.\n\n#WeAreAllUkrainians #united #Standtogether - #KlitschkoBrothers #Birthday\u2026 https:\/\/t.co\/rUNfAZc1Nf","truncated":true,"entities":{"hashtags":[{"text":"WeAreAllUkrainians","indices":[40,59]},{"text":"united","indices":[60,67]},{"text":"Standtogether","indices":[68,82]},{"text":"KlitschkoBrothers","indices":[83,101]},{"text":"Birthday","indices":[102,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rUNfAZc1Nf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507352014673805313","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3990,"favorite_count":32218,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3990,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490893286843768832\/75LGDnBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490893286843768832\/75LGDnBI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1020842558,"id_str":"1020842558","name":"John - Macleod","screen_name":"JohnMac04183308","location":"","description":"Priest","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":639,"listed_count":0,"created_at":"Tue - Dec 18 23:00:11 +0000 2012","favourites_count":29027,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13660,"lang":null,"status":{"created_at":"Wed - Mar 16 15:38:17 +0000 2022","id":1504119871038177287,"id_str":"1504119871038177287","text":"RT - @nickreeves9876: Marr is a disgrace who propagates lies by giving them a platform - while refusing to challenge them. Which in effect make\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nickreeves9876","name":"Nick - Reeves #StandWithUkraine #FBPA #FBPE #PATH","id":746371177174679552,"id_str":"746371177174679552","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 23:51:50 +0000 2022","id":1503881692599263236,"id_str":"1503881692599263236","text":"Marr - is a disgrace who propagates lies by giving them a platform while refusing - to challenge them. Which in effect\u2026 https:\/\/t.co\/ESmGc81cA9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ESmGc81cA9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503881692599263236","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503799009298849797,"quoted_status_id_str":"1503799009298849797","retweet_count":46,"favorite_count":166,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1503799009298849797,"quoted_status_id_str":"1503799009298849797","retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1065301498467442689,"id_str":"1065301498467442689","name":"Kalli - Teeters","screen_name":"kallit1721","location":"","description":"mehs 22\u2019 - she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":325,"listed_count":0,"created_at":"Wed - Nov 21 17:50:44 +0000 2018","favourites_count":5504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":627,"lang":null,"status":{"created_at":"Mon - Mar 21 12:29:51 +0000 2022","id":1505884391406551040,"id_str":"1505884391406551040","text":"RT - @MEFastpitch: https:\/\/t.co\/KgZ2AwweCa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MEFastpitch","name":"Miami - East Fastpitch","id":951223397060628480,"id_str":"951223397060628480","indices":[3,15]}],"urls":[],"media":[{"id":1505884298519453696,"id_str":"1505884298519453696","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","url":"https:\/\/t.co\/KgZ2AwweCa","display_url":"pic.twitter.com\/KgZ2AwweCa","expanded_url":"https:\/\/twitter.com\/MEFastpitch\/status\/1505884322770870281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1505884322770870281,"source_status_id_str":"1505884322770870281","source_user_id":951223397060628480,"source_user_id_str":"951223397060628480"}]},"extended_entities":{"media":[{"id":1505884298519453696,"id_str":"1505884298519453696","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","url":"https:\/\/t.co\/KgZ2AwweCa","display_url":"pic.twitter.com\/KgZ2AwweCa","expanded_url":"https:\/\/twitter.com\/MEFastpitch\/status\/1505884322770870281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1505884322770870281,"source_status_id_str":"1505884322770870281","source_user_id":951223397060628480,"source_user_id_str":"951223397060628480"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 12:29:35 +0000 2022","id":1505884322770870281,"id_str":"1505884322770870281","text":"https:\/\/t.co\/KgZ2AwweCa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505884298519453696,"id_str":"1505884298519453696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","url":"https:\/\/t.co\/KgZ2AwweCa","display_url":"pic.twitter.com\/KgZ2AwweCa","expanded_url":"https:\/\/twitter.com\/MEFastpitch\/status\/1505884322770870281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505884298519453696,"id_str":"1505884298519453696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOX5yn4XIAAtfa5.jpg","url":"https:\/\/t.co\/KgZ2AwweCa","display_url":"pic.twitter.com\/KgZ2AwweCa","expanded_url":"https:\/\/twitter.com\/MEFastpitch\/status\/1505884322770870281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446456236845699089\/oHl2voVr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446456236845699089\/oHl2voVr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1065301498467442689\/1585690822","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294373696816271360,"id_str":"1294373696816271360","name":"Rudy - One Love","screen_name":"RudyOneLove2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":415,"listed_count":0,"created_at":"Fri - Aug 14 20:42:16 +0000 2020","favourites_count":277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sun - Feb 28 11:08:41 +0000 2021","id":1365982250815418368,"id_str":"1365982250815418368","text":"@wanderlustt13 - Happy birthday to you from Jamaica","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wanderlustt13","name":"Kim - \ud83c\udde8\ud83c\udde6","id":701906169980436480,"id_str":"701906169980436480","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1365618545787363331,"in_reply_to_status_id_str":"1365618545787363331","in_reply_to_user_id":701906169980436480,"in_reply_to_user_id_str":"701906169980436480","in_reply_to_screen_name":"wanderlustt13","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344605030628929537\/SQA8zkDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344605030628929537\/SQA8zkDD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822926919570259968,"id_str":"822926919570259968","name":"Jim - Chrystie","screen_name":"JimChrystie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":197,"listed_count":0,"created_at":"Sat - Jan 21 22:00:41 +0000 2017","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Nov 20 14:08:08 +0000 2020","id":1329788622049075204,"id_str":"1329788622049075204","text":"@HOMESofFOOTBALL - Yes. Found myself next to my brother. Was it last stand of the Holmesdale - against Watford?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HOMESofFOOTBALL","name":"homesoffootball - \u2665\ufe0f\u2665\ufe0f\ud83d\udc9b\ud83d\udc99","id":90138778,"id_str":"90138778","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1329463582896123913,"in_reply_to_status_id_str":"1329463582896123913","in_reply_to_user_id":90138778,"in_reply_to_user_id_str":"90138778","in_reply_to_screen_name":"HOMESofFOOTBALL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":571093973,"id_str":"571093973","name":"Ala` - Salama|content creator|Marketer","screen_name":"alaaactivist","location":"Gaza","description":"A - deamer from Gaza, optimist, idealist,\n TEFL teacher,human rights advocate, - writer, news,editor,translator,focus on refugees issues\nLife is all about - learning","url":"https:\/\/t.co\/65S6YxgaRO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/65S6YxgaRO","expanded_url":"http:\/\/newwn-gaza.blogspot.com","display_url":"newwn-gaza.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":876,"listed_count":4,"created_at":"Fri - May 04 19:37:17 +0000 2012","favourites_count":4772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2073,"lang":null,"status":{"created_at":"Sat - Feb 12 11:32:21 +0000 2022","id":1492461569745244160,"id_str":"1492461569745244160","text":"@mohabari1993 - \u0645\u0634 \u0627\u0644\u0643\u0644 ..\u0648\u062d\u062a\u0649 \u0647\u0627\u062f - \u0627\u0644\u0645\u0646\u0637\u0642 \u0635\u0627\u0631 \u0645\u062a\u0637\u0631\u0641 - \u0627\u0643\u062a\u0631 \u0648\u0627\u0643\u062a\u0631 \u0628\u0639\u0627\u0644\u0645\u0646\u0627 - \u062e\u0627\u0635\u0629 \u0628\u0639\u062f \u062a\u063a\u0644\u063a\u0644 - \u0627\u0644\u0641\u0631\u062f\u064a\u0629","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mohabari1993","name":"mohammed - bari","id":2426807712,"id_str":"2426807712","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1492455022927429633,"in_reply_to_status_id_str":"1492455022927429633","in_reply_to_user_id":2426807712,"in_reply_to_user_id_str":"2426807712","in_reply_to_screen_name":"mohabari1993","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243585953329004546\/71Ol5r2r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243585953329004546\/71Ol5r2r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571093973\/1559955337","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":342491254,"id_str":"342491254","name":"Christopher - McCann","screen_name":"TheChrisMcCann","location":"New York City","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":574,"listed_count":1,"created_at":"Tue - Jul 26 03:00:12 +0000 2011","favourites_count":945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1088,"lang":null,"status":{"created_at":"Sun - Mar 06 02:03:16 +0000 2022","id":1500290886399401989,"id_str":"1500290886399401989","text":"RT - @MichaelJStern1: https:\/\/t.co\/BpoxafLZ9q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelJStern1","name":"Michael - J. Stern","id":1075865638642597893,"id_str":"1075865638642597893","indices":[3,18]}],"urls":[],"media":[{"id":1500288611912138753,"id_str":"1500288611912138753","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","url":"https:\/\/t.co\/BpoxafLZ9q","display_url":"pic.twitter.com\/BpoxafLZ9q","expanded_url":"https:\/\/twitter.com\/MichaelJStern1\/status\/1500288622813143040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":656,"h":680,"resize":"fit"},"medium":{"w":1158,"h":1200,"resize":"fit"},"large":{"w":1440,"h":1492,"resize":"fit"}},"source_status_id":1500288622813143040,"source_status_id_str":"1500288622813143040","source_user_id":1075865638642597893,"source_user_id_str":"1075865638642597893"}]},"extended_entities":{"media":[{"id":1500288611912138753,"id_str":"1500288611912138753","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","url":"https:\/\/t.co\/BpoxafLZ9q","display_url":"pic.twitter.com\/BpoxafLZ9q","expanded_url":"https:\/\/twitter.com\/MichaelJStern1\/status\/1500288622813143040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":656,"h":680,"resize":"fit"},"medium":{"w":1158,"h":1200,"resize":"fit"},"large":{"w":1440,"h":1492,"resize":"fit"}},"source_status_id":1500288622813143040,"source_status_id_str":"1500288622813143040","source_user_id":1075865638642597893,"source_user_id_str":"1075865638642597893"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 01:54:16 +0000 2022","id":1500288622813143040,"id_str":"1500288622813143040","text":"https:\/\/t.co\/BpoxafLZ9q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500288611912138753,"id_str":"1500288611912138753","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","url":"https:\/\/t.co\/BpoxafLZ9q","display_url":"pic.twitter.com\/BpoxafLZ9q","expanded_url":"https:\/\/twitter.com\/MichaelJStern1\/status\/1500288622813143040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":656,"h":680,"resize":"fit"},"medium":{"w":1158,"h":1200,"resize":"fit"},"large":{"w":1440,"h":1492,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500288611912138753,"id_str":"1500288611912138753","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNIYiy2WQAEFcVW.jpg","url":"https:\/\/t.co\/BpoxafLZ9q","display_url":"pic.twitter.com\/BpoxafLZ9q","expanded_url":"https:\/\/twitter.com\/MichaelJStern1\/status\/1500288622813143040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":656,"h":680,"resize":"fit"},"medium":{"w":1158,"h":1200,"resize":"fit"},"large":{"w":1440,"h":1492,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5350,"favorite_count":26055,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":5350,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"7BA9BA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/968174497403568128\/oOAT9sOY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/968174497403568128\/oOAT9sOY_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":197467077,"id_str":"197467077","name":"Hamish - Smyth","screen_name":"hamishsmyth","location":"Brooklyn","description":"co-founder - @standards_site + @standardsmanual + @order \/ \ud83d\udcf7 \ud83c\udf9e https:\/\/t.co\/Cszs44wiFb","url":"https:\/\/t.co\/YcxbGIv6Lr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YcxbGIv6Lr","expanded_url":"https:\/\/foundation.app\/@hamishsmyth?tab=created","display_url":"foundation.app\/@hamishsmyth?t\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Cszs44wiFb","expanded_url":"http:\/\/foundation.app\/@hamishsmyth","display_url":"foundation.app\/@hamishsmyth","indices":[61,84]}]}},"protected":false,"followers_count":4352,"friends_count":2758,"listed_count":115,"created_at":"Fri - Oct 01 15:43:29 +0000 2010","favourites_count":2905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2689,"lang":null,"status":{"created_at":"Sat - Mar 19 04:33:01 +0000 2022","id":1505039617325740035,"id_str":"1505039617325740035","text":"RT - @miaforrestphoto: The garden is blooming over at @foundation \ud83d\udc90 - Just a few more species to plant!\n\nThank you collectors !\n\nhttps:\/\/t.co\/g\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"miaforrestphoto","name":"Mia - Forrest","id":1442310920449843205,"id_str":"1442310920449843205","indices":[3,19]},{"screen_name":"foundation","name":"Foundation - \ud83c\udf10","id":1232540254457847808,"id_str":"1232540254457847808","indices":[52,63]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 09:34:51 +0000 2022","id":1504390799961718784,"id_str":"1504390799961718784","text":"The - garden is blooming over at @foundation \ud83d\udc90 Just a few more species - to plant!\n\nThank you collectors !\u2026 https:\/\/t.co\/1is3DxM3P4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"foundation","name":"Foundation - \ud83c\udf10","id":1232540254457847808,"id_str":"1232540254457847808","indices":[31,42]}],"urls":[{"url":"https:\/\/t.co\/1is3DxM3P4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504390799961718784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1494480812858753024,"quoted_status_id_str":"1494480812858753024","retweet_count":10,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1494480812858753024,"quoted_status_id_str":"1494480812858753024","retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466598925113212935\/GpmWChdx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466598925113212935\/GpmWChdx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197467077\/1641435044","profile_link_color":"FC6521","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270960991870869505,"id_str":"1270960991870869505","name":"Carolyn - Moorehead","screen_name":"CarolynMoorehe2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":87,"listed_count":0,"created_at":"Thu - Jun 11 06:09:41 +0000 2020","favourites_count":791,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":614,"lang":null,"status":{"created_at":"Thu - Jul 08 15:39:59 +0000 2021","id":1413160947229855744,"id_str":"1413160947229855744","text":"@kathygriffin - You can tell by looking at your face you are excluded from that club.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kathygriffin","name":"Kathy - Griffin","id":21148293,"id_str":"21148293","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1412809660785070087,"in_reply_to_status_id_str":"1412809660785070087","in_reply_to_user_id":21148293,"in_reply_to_user_id_str":"21148293","in_reply_to_screen_name":"kathygriffin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270962028560162816\/54PByMhk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270962028560162816\/54PByMhk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288153624317763584,"id_str":"1288153624317763584","name":"Susanminka","screen_name":"susanminka","location":"","description":"70years - of experience","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":321,"listed_count":0,"created_at":"Tue - Jul 28 16:45:57 +0000 2020","favourites_count":14324,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11081,"lang":null,"status":{"created_at":"Fri - Mar 25 19:14:43 +0000 2022","id":1507435830901674003,"id_str":"1507435830901674003","text":"RT - @susanminka: @DrRubyeSullivan My FOOTIE\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susanminka","name":"Susanminka","id":1288153624317763584,"id_str":"1288153624317763584","indices":[3,14]},{"screen_name":"DrRubyeSullivan","name":"Rubye - Sullivan","id":501932920,"id_str":"501932920","indices":[16,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:13:28 +0000 2022","id":1507435515930415125,"id_str":"1507435515930415125","text":"@DrRubyeSullivan - My FOOTIE\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrRubyeSullivan","name":"Rubye - Sullivan","id":501932920,"id_str":"501932920","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507397316004753411,"in_reply_to_status_id_str":"1507397316004753411","in_reply_to_user_id":501932920,"in_reply_to_user_id_str":"501932920","in_reply_to_screen_name":"DrRubyeSullivan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":837317718080544769,"id_str":"837317718080544769","name":"MK","screen_name":"Miwa_Official__","location":"Tokyo - \u21c6 Yokosuka","description":"B.A. of Liberal Arts. Tokyoite. \u3044\u3044\u306d\u3070\u3063\u304b\u308a\u3067\u3042\u307e\u308a\u545f\u304d\u307e\u305b\u3093\u304c\u3001 - 2020\u5e74\u304b\u3089\u30df\u30ea\u306e\u5f7c\u5973 \ud83c\uddfa\ud83c\uddf8 - \u7269\u6d41\u696d\u754c\u3092\u751f\u304d\u308b\u30aa\u30f3\u30ca","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":118,"listed_count":1,"created_at":"Thu - Mar 02 15:04:35 +0000 2017","favourites_count":1984,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":301,"lang":null,"status":{"created_at":"Sat - Mar 26 04:08:41 +0000 2022","id":1507570208805773312,"id_str":"1507570208805773312","text":"@sunnyitsmehi - \u6016\u304f\u3066\u3057\u3070\u3089\u304f\u9707\u3048\u3066\u305f\u3088\u301c\ud83e\udd7a\u3053\u3093\u306a\u3053\u3068\u7d4c\u9a13\u3057\u305f\u3089\u304a\u5ba2\u3055\u3093\u3084\u4e0a\u53f8\u306b\u6012\u3089\u308c\u308b\u306e\u306f\u5168\u7136\u8010\u3048\u3089\u308c\u308b\u3068\u601d\u3046\u301c\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sunnyitsmehi","name":"Sunny(they\/them)","id":834368315032088581,"id_str":"834368315032088581","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507564515285602304,"in_reply_to_status_id_str":"1507564515285602304","in_reply_to_user_id":834368315032088581,"in_reply_to_user_id_str":"834368315032088581","in_reply_to_screen_name":"sunnyitsmehi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090982976932855809\/0Zy06b7g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090982976932855809\/0Zy06b7g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/837317718080544769\/1490352423","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":122100560,"id_str":"122100560","name":"Mia - Wisnoski","screen_name":"MiaWisnoski","location":"Westhampton, NY","description":"I - am a fine art photographer specializing in black & white and abstract digital - images.","url":"https:\/\/t.co\/i2fgTn88dF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i2fgTn88dF","expanded_url":"http:\/\/miawisnoskiphotography.com","display_url":"miawisnoskiphotography.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":267,"listed_count":0,"created_at":"Thu - Mar 11 15:57:05 +0000 2010","favourites_count":6496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303484701957554178,"id_str":"1303484701957554178","name":"Emmy\u270c\ufe0f\ud83d\udc4c","screen_name":"Emmanue69460888","location":"Ogun, - Nigeria","description":"simple and jovial...God first \ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":837,"friends_count":2441,"listed_count":0,"created_at":"Wed - Sep 09 00:06:09 +0000 2020","favourites_count":25579,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Tue - Apr 27 21:15:59 +0000 2021","id":1387153577186058247,"id_str":"1387153577186058247","text":"@Tife_fabunmi - \ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tife_fabunmi","name":"Tife - \ud83c\udf1a\ud83c\uddec\ud83c\udde7","id":1047218585289072641,"id_str":"1047218585289072641","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1387150431403532289,"in_reply_to_status_id_str":"1387150431403532289","in_reply_to_user_id":1047218585289072641,"in_reply_to_user_id_str":"1047218585289072641","in_reply_to_screen_name":"Tife_fabunmi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379048151793950728\/GdiM65tQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379048151793950728\/GdiM65tQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823817191359270912,"id_str":"823817191359270912","name":"Ly","screen_name":"ly_abg","location":"Masinloc, - Central Luzon","description":"I WILL FINISH STRONG !","url":"https:\/\/t.co\/wjQSUXoU11","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wjQSUXoU11","expanded_url":"https:\/\/m.facebook.com\/lyraabagabuna","display_url":"m.facebook.com\/lyraabagabuna","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":206,"friends_count":375,"listed_count":0,"created_at":"Tue - Jan 24 08:58:19 +0000 2017","favourites_count":19536,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17274,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487760644963446785\/D4WiNMcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487760644963446785\/D4WiNMcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823817191359270912\/1646958145","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796375404479127553,"id_str":"796375404479127553","name":"Mc - Ragga","screen_name":"ragga_mc","location":"Jinja","description":"entrepreneur, - radio and TV aspirations.... stage host(MC).. God fearing always reliable...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":491,"friends_count":3997,"listed_count":4,"created_at":"Wed - Nov 09 15:34:27 +0000 2016","favourites_count":27497,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":495,"lang":null,"status":{"created_at":"Fri - Mar 25 17:46:56 +0000 2022","id":1507413738894381057,"id_str":"1507413738894381057","text":"RT - @Omojuwa: That\u2019s such a stupid own goal. Goes to show the power pressing. - Tunisia with a big away goal. Do away goals count in this CAF\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Omojuwa","name":"JJ. - Omojuwa","id":115628224,"id_str":"115628224","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:39:04 +0000 2022","id":1507411760596271133,"id_str":"1507411760596271133","text":"That\u2019s - such a stupid own goal. Goes to show the power pressing. Tunisia with a big - away goal. Do away goals count in this CAF play-off?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":136,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247616400983822337\/KJ6r2WVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247616400983822337\/KJ6r2WVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796375404479127553\/1586289905","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1148885953848782853,"id_str":"1148885953848782853","name":"Umar","screen_name":"Umar74554877","location":"Kano, - Nigeria","description":"I love Nigeria","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":1125,"listed_count":0,"created_at":"Wed - Jul 10 09:25:31 +0000 2019","favourites_count":1443,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2222,"lang":null,"status":{"created_at":"Tue - May 18 16:46:39 +0000 2021","id":1394695941379219457,"id_str":"1394695941379219457","text":"RT - @elrufai: KADUNA UPDATE: Ayuba Wabba & others of @NLCHeadquarters declared - wanted for economic sabotage & attacks on public infrastructu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elrufai","name":"Nasir - Ahmad El-Rufai","id":22059388,"id_str":"22059388","indices":[3,11]},{"screen_name":"NLCHeadquarters","name":"Nigeria - Labour Congress HQ","id":2389144578,"id_str":"2389144578","indices":[56,72]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 18 08:26:12 +0000 2021","id":1394570000229412865,"id_str":"1394570000229412865","text":"KADUNA - UPDATE: Ayuba Wabba & others of @NLCHeadquarters declared wanted for economic - sabotage & attacks on public i\u2026 https:\/\/t.co\/PZtgOqK6Iq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NLCHeadquarters","name":"Nigeria - Labour Congress HQ","id":2389144578,"id_str":"2389144578","indices":[43,59]}],"urls":[{"url":"https:\/\/t.co\/PZtgOqK6Iq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1394570000229412865","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[125,148]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1903,"favorite_count":3840,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1903,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257773766882529281\/zq59fo5P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257773766882529281\/zq59fo5P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1148885953848782853\/1575564476","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37702211,"id_str":"37702211","name":"Norbert - Nowicki","screen_name":"njnjr","location":"New Jersey, USA","description":"Husband, - father, grandfather. Observer of the world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":2124,"listed_count":5,"created_at":"Mon - May 04 17:01:18 +0000 2009","favourites_count":11336,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":74183,"lang":null,"status":{"created_at":"Sat - Mar 26 09:50:21 +0000 2022","id":1507656189450063878,"id_str":"1507656189450063878","text":"@newrepublic - This woman doesn\u2019t have the intelligence of a dog catcher your hometown. - She wants to run for presiden\u2026 https:\/\/t.co\/6eJNdzoOSC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newrepublic","name":"The - New Republic","id":82689705,"id_str":"82689705","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/6eJNdzoOSC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507656189450063878","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507654146278797314,"in_reply_to_status_id_str":"1507654146278797314","in_reply_to_user_id":82689705,"in_reply_to_user_id_str":"82689705","in_reply_to_screen_name":"newrepublic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273577913263284224\/BzGY2PAA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273577913263284224\/BzGY2PAA_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298581570253729798,"id_str":"1298581570253729798","name":"Miss7twic","screen_name":"miss7twic","location":"","description":"I - like to make people laugh\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\ud83d\udc69\ud83c\udffd\u200d\u2695\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":301,"listed_count":0,"created_at":"Wed - Aug 26 11:23:23 +0000 2020","favourites_count":1468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1090,"lang":null,"status":{"created_at":"Wed - Dec 01 18:38:26 +0000 2021","id":1466114485010247680,"id_str":"1466114485010247680","text":"@mrsmiathornton - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrsmiathornton","name":"Mia - Thornton","id":1133170301771108353,"id_str":"1133170301771108353","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1465506886858547203,"in_reply_to_status_id_str":"1465506886858547203","in_reply_to_user_id":1133170301771108353,"in_reply_to_user_id_str":"1133170301771108353","in_reply_to_screen_name":"mrsmiathornton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298582417154936835\/ejaAYhMr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298582417154936835\/ejaAYhMr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":813168494724444160,"id_str":"813168494724444160","name":"Mark - Duthe","screen_name":"MarkDuthe","location":"Newburyport, MA","description":"Go - Bills!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":568,"listed_count":0,"created_at":"Sun - Dec 25 23:44:11 +0000 2016","favourites_count":3176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":276,"lang":null,"status":{"created_at":"Sat - Feb 12 01:17:35 +0000 2022","id":1492306857779675139,"id_str":"1492306857779675139","text":"RT - @WhiskeyBuffalo: Got the Valintines buffalos out. @26shirts @DelReid i want - more colors of these so bad.. also does anyone want a free B\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhiskeyBuffalo","name":"i - am Grootsseau","id":1013585994765996032,"id_str":"1013585994765996032","indices":[3,18]},{"screen_name":"26shirts","name":"26 - Shirts","id":2178658712,"id_str":"2178658712","indices":[53,62]},{"screen_name":"DelReid","name":"Del - Reid \ud83e\uddac","id":15146402,"id_str":"15146402","indices":[63,71]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 11 14:02:36 +0000 2022","id":1492136994834718720,"id_str":"1492136994834718720","text":"Got - the Valintines buffalos out. @26shirts @DelReid i want more colors of these - so bad.. also does anyone want a fr\u2026 https:\/\/t.co\/LDVdY6IoKK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"26shirts","name":"26 - Shirts","id":2178658712,"id_str":"2178658712","indices":[33,42]},{"screen_name":"DelReid","name":"Del - Reid \ud83e\uddac","id":15146402,"id_str":"15146402","indices":[43,51]}],"urls":[{"url":"https:\/\/t.co\/LDVdY6IoKK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492136994834718720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":122,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":90,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195752967711969280\/zA6Qi18i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195752967711969280\/zA6Qi18i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813168494724444160\/1549153217","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1281548728042758148,"id_str":"1281548728042758148","name":"Sylvester - Kwame Makae","screen_name":"KwameMakae","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":263,"listed_count":0,"created_at":"Fri - Jul 10 11:20:13 +0000 2020","favourites_count":3803,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sun - Mar 07 17:18:10 +0000 2021","id":1368611947957149696,"id_str":"1368611947957149696","text":"@JoySportsGH - Medeama all the way....never give up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoySportsGH","name":"Joy - Sports","id":4842452951,"id_str":"4842452951","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1368610328855076866,"in_reply_to_status_id_str":"1368610328855076866","in_reply_to_user_id":4842452951,"in_reply_to_user_id_str":"4842452951","in_reply_to_screen_name":"JoySportsGH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1281548951683059714\/TIjL9od9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1281548951683059714\/TIjL9od9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265870831479029770,"id_str":"1265870831479029770","name":"Satan''s - dick is stuck in Nigeria''s ass","screen_name":"maazi_uk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":532,"friends_count":1832,"listed_count":1,"created_at":"Thu - May 28 05:01:58 +0000 2020","favourites_count":102146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21343,"lang":null,"status":{"created_at":"Tue - Feb 01 14:42:21 +0000 2022","id":1488523119627276290,"id_str":"1488523119627276290","text":"RT - @SocDoneLeft: https:\/\/t.co\/WGmwSsvg5i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SocDoneLeft","name":"SDL","id":995006376962396160,"id_str":"995006376962396160","indices":[3,15]}],"urls":[],"media":[{"id":1468437059429875714,"id_str":"1468437059429875714","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","url":"https:\/\/t.co\/WGmwSsvg5i","display_url":"pic.twitter.com\/WGmwSsvg5i","expanded_url":"https:\/\/twitter.com\/SocDoneLeft\/status\/1488262562848202753\/photo\/1","type":"photo","sizes":{"small":{"w":419,"h":650,"resize":"fit"},"large":{"w":419,"h":650,"resize":"fit"},"medium":{"w":419,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1488262562848202753,"source_status_id_str":"1488262562848202753","source_user_id":995006376962396160,"source_user_id_str":"995006376962396160"}]},"extended_entities":{"media":[{"id":1468437059429875714,"id_str":"1468437059429875714","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","url":"https:\/\/t.co\/WGmwSsvg5i","display_url":"pic.twitter.com\/WGmwSsvg5i","expanded_url":"https:\/\/twitter.com\/SocDoneLeft\/status\/1488262562848202753\/photo\/1","type":"photo","sizes":{"small":{"w":419,"h":650,"resize":"fit"},"large":{"w":419,"h":650,"resize":"fit"},"medium":{"w":419,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1488262562848202753,"source_status_id_str":"1488262562848202753","source_user_id":995006376962396160,"source_user_id_str":"995006376962396160"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 31 21:27:00 +0000 2022","id":1488262562848202753,"id_str":"1488262562848202753","text":"https:\/\/t.co\/WGmwSsvg5i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1468437059429875714,"id_str":"1468437059429875714","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","url":"https:\/\/t.co\/WGmwSsvg5i","display_url":"pic.twitter.com\/WGmwSsvg5i","expanded_url":"https:\/\/twitter.com\/SocDoneLeft\/status\/1488262562848202753\/photo\/1","type":"photo","sizes":{"small":{"w":419,"h":650,"resize":"fit"},"large":{"w":419,"h":650,"resize":"fit"},"medium":{"w":419,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1468437059429875714,"id_str":"1468437059429875714","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGDvubZWQAICxrV.png","url":"https:\/\/t.co\/WGmwSsvg5i","display_url":"pic.twitter.com\/WGmwSsvg5i","expanded_url":"https:\/\/twitter.com\/SocDoneLeft\/status\/1488262562848202753\/photo\/1","type":"photo","sizes":{"small":{"w":419,"h":650,"resize":"fit"},"large":{"w":419,"h":650,"resize":"fit"},"medium":{"w":419,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":298,"favorite_count":4441,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":298,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290793034905460737\/lwiN6l6P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290793034905460737\/lwiN6l6P_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243209546,"id_str":"243209546","name":"Mary - Baca","screen_name":"125ethel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":400,"listed_count":0,"created_at":"Wed - Jan 26 15:09:31 +0000 2011","favourites_count":2201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":981,"lang":null,"status":{"created_at":"Fri - Mar 18 20:08:40 +0000 2022","id":1504912691902640128,"id_str":"1504912691902640128","text":"RT - @kaitlancollins: President Biden will attend the NATO summit on Ukraine in - Brussels next Thursday, go to the European Council meeting af\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kaitlancollins","name":"Kaitlan - Collins","id":180107694,"id_str":"180107694","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 19:27:07 +0000 2022","id":1504902237063155714,"id_str":"1504902237063155714","text":"President - Biden will attend the NATO summit on Ukraine in Brussels next Thursday, go - to the European Council meetin\u2026 https:\/\/t.co\/uq6uAbNQEj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uq6uAbNQEj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504902237063155714","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2096,"favorite_count":12197,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2096,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1078883195557425152,"id_str":"1078883195557425152","name":"Robert - Sehring","screen_name":"RobertSehring","location":"Margate","description":"I - just turned 60,in, November I am5,11about155,I am,in the best shape of my,life - music is my,main ,thing, it,is what brings me alive and keeps me alive","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":91,"listed_count":0,"created_at":"Sat - Dec 29 05:19:33 +0000 2018","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":593,"lang":null,"status":{"created_at":"Tue - Mar 15 14:49:08 +0000 2022","id":1503745117311713297,"id_str":"1503745117311713297","text":"@JaceyBirch - Hi \ud83d\ude0c jacey the \ud83d\udc60 shows are really cute","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JaceyBirch","name":"Jacey - Birch","id":421044945,"id_str":"421044945","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1502744866513686537,"in_reply_to_status_id_str":"1502744866513686537","in_reply_to_user_id":421044945,"in_reply_to_user_id_str":"421044945","in_reply_to_screen_name":"JaceyBirch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284045391793664001\/APEnTjD3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284045391793664001\/APEnTjD3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1078883195557425152\/1594974203","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241267726762405893,"id_str":"1241267726762405893","name":"Lee","screen_name":"Lee03456627","location":"Sydney, - New South Wales","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1266,"listed_count":4,"created_at":"Sat - Mar 21 07:37:58 +0000 2020","favourites_count":11269,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Sat - Mar 19 22:07:00 +0000 2022","id":1505304860161634305,"id_str":"1505304860161634305","text":"@nothinknoam - @GiantSpaceAss @jennydeluxe @ejeancarroll What on earth does that mean? Do - you know anything about Australian","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nothinknoam","name":"adrian - \ud83e\udd87","id":1311900469946650624,"id_str":"1311900469946650624","indices":[0,12]},{"screen_name":"GiantSpaceAss","name":"Dr. - GiantSpaceAss","id":892159422075719680,"id_str":"892159422075719680","indices":[13,27]},{"screen_name":"jennydeluxe","name":"Jenna - Wortham","id":10454572,"id_str":"10454572","indices":[28,40]},{"screen_name":"ejeancarroll","name":"E. - Jean Carroll","id":15740776,"id_str":"15740776","indices":[41,54]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505208821261737985,"in_reply_to_status_id_str":"1505208821261737985","in_reply_to_user_id":1311900469946650624,"in_reply_to_user_id_str":"1311900469946650624","in_reply_to_screen_name":"nothinknoam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1112254380806455296,"id_str":"1112254380806455296","name":"Sephora","screen_name":"sePHOpho_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":200,"listed_count":0,"created_at":"Sun - Mar 31 07:24:43 +0000 2019","favourites_count":2289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352181906939506688\/3a7dyOYb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352181906939506688\/3a7dyOYb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154707768126758912,"id_str":"1154707768126758912","name":"Bob\u2019s - Your Uncle","screen_name":"BobsYou93897341","location":"Towson, MD","description":"True - Democrat, Boston sports nut, working in Bangladesh. Big Brady fan. JCDWorld - is other Twitter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":289,"listed_count":0,"created_at":"Fri - Jul 26 10:59:20 +0000 2019","favourites_count":342,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":699,"lang":null,"status":{"created_at":"Fri - Mar 25 10:33:23 +0000 2022","id":1507304632108056576,"id_str":"1507304632108056576","text":"@BFriedmanDC - @sarahcpr Tulsi is the Sarah Palin of Laura Angles.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BFriedmanDC","name":"Brandon - Friedman","id":15327996,"id_str":"15327996","indices":[0,12]},{"screen_name":"sarahcpr","name":"Sarah - Cooper","id":14642495,"id_str":"14642495","indices":[13,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507007106741768201,"in_reply_to_status_id_str":"1507007106741768201","in_reply_to_user_id":15327996,"in_reply_to_user_id_str":"15327996","in_reply_to_screen_name":"BFriedmanDC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1154708037501763585\/GH3dYhu5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1154708037501763585\/GH3dYhu5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1824083846,"id_str":"1824083846","name":"ihsan - mutlu","screen_name":"ihsanmutlu6","location":"Mersin, T\u00fcrkiye","description":"01.06.1951","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":252,"listed_count":0,"created_at":"Sun - Sep 08 09:56:36 +0000 2013","favourites_count":6388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2088,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642039795779244033\/0VitAlCd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642039795779244033\/0VitAlCd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1824083846\/1452689146","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":526731060,"id_str":"526731060","name":"FruitCake","screen_name":"dpg2222","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":687,"listed_count":1,"created_at":"Fri - Mar 16 19:44:54 +0000 2012","favourites_count":260,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":864,"lang":null,"status":{"created_at":"Fri - Mar 25 15:25:15 +0000 2022","id":1507378082986008584,"id_str":"1507378082986008584","text":"@ladbible - Chips","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ladbible","name":"LADbible","id":331311644,"id_str":"331311644","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507371741957423108,"in_reply_to_status_id_str":"1507371741957423108","in_reply_to_user_id":331311644,"in_reply_to_user_id_str":"331311644","in_reply_to_screen_name":"ladbible","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158077862852870144\/sAYPDFbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158077862852870144\/sAYPDFbK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284036066475798528,"id_str":"1284036066475798528","name":"BIAFRA - MY NATION REPUBLIC OF BIAFRA \ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf3\ud83c\uddee\ud83c\uddf1","screen_name":"Biafran2020","location":"Scotland, - United Kingdom","description":"BIAFRAN MY NATION\ud83c\uddec\ud83c\udde7\ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf3\ud83c\uddfa\ud83c\uddf3\ud83c\uddee\ud83c\uddf1\ud83c\uddee\ud83c\uddf1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":854,"friends_count":5000,"listed_count":3,"created_at":"Fri - Jul 17 08:04:05 +0000 2020","favourites_count":4364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39729,"lang":null,"status":{"created_at":"Fri - Mar 25 18:31:35 +0000 2022","id":1507424974021496834,"id_str":"1507424974021496834","text":"RT - @DurunwaMazi: #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow - #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow #FreeMa\u2026","truncated":false,"entities":{"hashtags":[{"text":"FreeMaziNnamdiKanuNow","indices":[17,39]},{"text":"FreeMaziNnamdiKanuNow","indices":[40,62]},{"text":"FreeMaziNnamdiKanuNow","indices":[63,85]},{"text":"FreeMaziNnamdiKanuNow","indices":[86,108]},{"text":"FreeMaziNnamdiKanuNow","indices":[109,131]}],"symbols":[],"user_mentions":[{"screen_name":"DurunwaMazi","name":"Mazi - Durunwa Nonso","id":1390597159729483779,"id_str":"1390597159729483779","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 10:31:27 +0000 2022","id":1506579372123336707,"id_str":"1506579372123336707","text":"#FreeMaziNnamdiKanuNow - #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow #FreeMaziNnamdiKanuNow\u2026 - https:\/\/t.co\/hByc4HaU3P","truncated":true,"entities":{"hashtags":[{"text":"FreeMaziNnamdiKanuNow","indices":[0,22]},{"text":"FreeMaziNnamdiKanuNow","indices":[23,45]},{"text":"FreeMaziNnamdiKanuNow","indices":[46,68]},{"text":"FreeMaziNnamdiKanuNow","indices":[69,91]},{"text":"FreeMaziNnamdiKanuNow","indices":[92,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hByc4HaU3P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506579372123336707","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":157,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":243,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477366684990066688\/OQHpRZJ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477366684990066688\/OQHpRZJ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1284036066475798528\/1630854988","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":309396861,"id_str":"309396861","name":"Juliet - will pay $15\/gal for gas to stop Russia","screen_name":"Longlivejuliet","location":"Atlanta, - GA","description":"She\/Her, Learning Specialist. Proud Union Member. Mother - of five public educated children. All views my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":1388,"listed_count":1,"created_at":"Thu - Jun 02 01:13:02 +0000 2011","favourites_count":27238,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2696,"lang":null,"status":{"created_at":"Sat - Mar 26 02:09:22 +0000 2022","id":1507540179694886914,"id_str":"1507540179694886914","text":"\ud83e\udd14 - https:\/\/t.co\/sINNB8Of2w","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sINNB8Of2w","expanded_url":"https:\/\/twitter.com\/DanPriceSeattle\/status\/1507451178531098662","display_url":"twitter.com\/DanPriceSeattl\u2026","indices":[2,25]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507451178531098662,"quoted_status_id_str":"1507451178531098662","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1010611832913121285\/uRbzsdrd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1010611832913121285\/uRbzsdrd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309396861\/1517946341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1170610698738647040,"id_str":"1170610698738647040","name":"liv","screen_name":"rip_frosties","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":344,"listed_count":1,"created_at":"Sun - Sep 08 08:12:50 +0000 2019","favourites_count":9167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1431,"lang":null,"status":{"created_at":"Sat - Aug 21 09:25:54 +0000 2021","id":1429011870485303299,"id_str":"1429011870485303299","text":"@c0ldbrw - once I got called an emo and I was wearing blue jeans \ud83d\ude2d\ud83d\ude2dwtf - are they on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"c0ldbrw","name":"\ud83d\ude2c","id":1001799455350370304,"id_str":"1001799455350370304","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1428836653569806336,"in_reply_to_status_id_str":"1428836653569806336","in_reply_to_user_id":1001799455350370304,"in_reply_to_user_id_str":"1001799455350370304","in_reply_to_screen_name":"c0ldbrw","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374130117140754435\/0s3SOeXd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374130117140754435\/0s3SOeXd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170610698738647040\/1614111724","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4421884100,"id_str":"4421884100","name":"Mathilde - Halcomb","screen_name":"MathildeMobile","location":"","description":"Virtue - signaling all day, every day","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":878,"listed_count":0,"created_at":"Tue - Dec 01 15:49:33 +0000 2015","favourites_count":36618,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":545,"lang":null,"status":{"created_at":"Mon - Dec 06 03:50:31 +0000 2021","id":1467702969877643271,"id_str":"1467702969877643271","text":"@ImSpeaking13 - Who trusts the Supreme Court now?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ImSpeaking13","name":"Kate - \ud83e\udd0d\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":2640729706,"id_str":"2640729706","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1467579971531124745,"in_reply_to_status_id_str":"1467579971531124745","in_reply_to_user_id":2640729706,"in_reply_to_user_id_str":"2640729706","in_reply_to_screen_name":"ImSpeaking13","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266205648913682433\/Im9Qg_tB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266205648913682433\/Im9Qg_tB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248506505713704960,"id_str":"1248506505713704960","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 - \u0628\u0646 \u0639\u0628\u062f\u0627\u0644\u0644\u0647","screen_name":"Peace_be_on_u","location":"","description":"\u200f\u200f\u0642\u064a\u0644 - \u0625\u0646 \u064a\u0648\u0633\u0641 \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u0644\u0627\u0645 - \u0643\u062a\u0628 \u0639\u0644\u0649 \u0628\u0627\u0628 \u0627\u0644\u0633\u062c\u0646 - \u0644\u0645\u0627 \u062e\u0631\u062c \u0645\u0646\u0647 :- \u06be\u0630\u0647 - \u0645\u0646\u0627\u0632\u0644 \u0627\u0644\u0628\u0644\u0627 \u0648\u0642\u0628\u0648\u0631 - \u0627\u0644\u0623\u062d\u064a\u0627\u0621, \u0648\u0634\u0645\u0627\u062a\u0629 - \u0627\u0644\u0623\u0639\u062f\u0627\u0621, \u0648\u062a\u062c\u0631\u0628\u0629 - \u0627\u0644\u0623\u0635\u062f\u0642\u0627\u0621","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":908,"friends_count":971,"listed_count":1,"created_at":"Fri - Apr 10 07:02:18 +0000 2020","favourites_count":11524,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10238,"lang":null,"status":{"created_at":"Sat - Mar 26 08:17:12 +0000 2022","id":1507632748298895364,"id_str":"1507632748298895364","text":"@1ii0ii_01 - @1ii0 @1ii0t @1ii0_l @1ii0_7 @1Ii0ii0 @1ii00_1 @1ii001 @1iisha1 @1il1__ @1Ghaith1_ - @MuslimDuaa\u2026 https:\/\/t.co\/8UkCogaP5X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"1ii0ii_01","name":"\u0645\u0634\u0627\u0627\u0639\u0644 - \u007b\u063a\u064a\u0645\u0629 \u0627\u0644\u0645\u064a\u0644\u0627\u062f - \u007d \ud83e\uddf8\ud83c\udf88.","id":1182565107190108161,"id_str":"1182565107190108161","indices":[0,10]},{"screen_name":"1ii0","name":"s\u00f8\u2113\u03c4\u03b1\u0438","id":1544415012,"id_str":"1544415012","indices":[11,16]},{"screen_name":"1ii0t","name":"7","id":1010663543769911296,"id_str":"1010663543769911296","indices":[17,23]},{"screen_name":"1ii0_l","name":"\u0649\u062d\u062f","id":1258213509034381315,"id_str":"1258213509034381315","indices":[24,31]},{"screen_name":"1ii0_7","name":"7_1ii0","id":1362888601554604032,"id_str":"1362888601554604032","indices":[32,39]},{"screen_name":"1Ii0ii0","name":"\u0648\u064e\u0627\u0646\u064d","id":829193506916810754,"id_str":"829193506916810754","indices":[40,48]},{"screen_name":"1ii00_1","name":"\u263c","id":4819420875,"id_str":"4819420875","indices":[49,57]},{"screen_name":"1ii001","name":"\u0643\u0626\u064a\u0628\u0629","id":701485144,"id_str":"701485144","indices":[58,65]},{"screen_name":"1iisha1","name":"\ud83e\udd84isha","id":1142026965039419397,"id_str":"1142026965039419397","indices":[66,74]},{"screen_name":"1il1__","name":".","id":815291381312786433,"id_str":"815291381312786433","indices":[75,82]},{"screen_name":"1Ghaith1_","name":"\u200f\u063a\u064e\u064a\u0652\u062b.","id":1217598431398678528,"id_str":"1217598431398678528","indices":[83,93]},{"screen_name":"MuslimDuaa","name":"\u062f\u064f\u0639\u064e\u0627\u0621 - | \u200eDuaa","id":3339291280,"id_str":"3339291280","indices":[94,105]}],"urls":[{"url":"https:\/\/t.co\/8UkCogaP5X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507632748298895364","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1182565107190108161,"in_reply_to_user_id_str":"1182565107190108161","in_reply_to_screen_name":"1ii0ii_01","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248507178475851776\/zTzqhCa-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248507178475851776\/zTzqhCa-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248506505713704960\/1586719723","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18038587,"id_str":"18038587","name":"Chris - Cuthbertson","screen_name":"chriscuthberts","location":"New England","description":"A - teacher and a learner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":807,"listed_count":0,"created_at":"Thu - Dec 11 02:40:40 +0000 2008","favourites_count":10944,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3618,"lang":null,"status":{"created_at":"Fri - Mar 25 20:59:10 +0000 2022","id":1507462117481398279,"id_str":"1507462117481398279","text":"RT - @LeimerUddin: Spring has arrived, and with it, you may have new energy calling - you to make change by becoming a school principal! Contac\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeimerUddin","name":"Kimberly - Uddin Leimer","id":1417222077673877511,"id_str":"1417222077673877511","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:12:19 +0000 2022","id":1507374829971849218,"id_str":"1507374829971849218","text":"Spring - has arrived, and with it, you may have new energy calling you to make change - by becoming a school principal!\u2026 https:\/\/t.co\/a6LgusipLI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a6LgusipLI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507374829971849218","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1501618956469157889,"quoted_status_id_str":"1501618956469157889","retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1501618956469157889,"quoted_status_id_str":"1501618956469157889","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459039024863129600\/RKp3lHFd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459039024863129600\/RKp3lHFd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18038587\/1398278511","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22241483,"id_str":"22241483","name":"Mary","screen_name":"maryalam","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":154,"listed_count":0,"created_at":"Sat - Feb 28 08:51:13 +0000 2009","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Mon - Oct 11 03:06:29 +0000 2021","id":1447398171060031493,"id_str":"1447398171060031493","text":"RT - @NAINorCal: NAI NorCal and @MaryAlam, Executive Vice President, are pleased - to present for sale at a reduced price this prime mixed-use-\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NAINorCal","name":"NAI - NorCal","id":22979265,"id_str":"22979265","indices":[3,13]},{"screen_name":"maryalam","name":"Mary","id":22241483,"id_str":"22241483","indices":[30,39]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Oct 08 18:59:01 +0000 2021","id":1446550718975037441,"id_str":"1446550718975037441","text":"NAI - NorCal and @MaryAlam, Executive Vice President, are pleased to present for - sale at a reduced price this prime m\u2026 https:\/\/t.co\/09nrn6QgpU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maryalam","name":"Mary","id":22241483,"id_str":"22241483","indices":[15,24]}],"urls":[{"url":"https:\/\/t.co\/09nrn6QgpU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1446550718975037441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":66781433,"id_str":"66781433","name":"SactoFreddy","screen_name":"fkhall","location":"Sacramento, - CA","description":"Ret MSGT, HD rider, beer drinking observer of the American - tragedy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":347,"friends_count":1301,"listed_count":0,"created_at":"Tue - Aug 18 19:54:56 +0000 2009","favourites_count":151723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Mon - Mar 14 06:40:26 +0000 2022","id":1503259742621167616,"id_str":"1503259742621167616","text":"RT - @Ok_Solly: May his memory be a blessing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ok_Solly","name":"Ok_Solly","id":2465469642,"id_str":"2465469642","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 23:31:22 +0000 2022","id":1503151762554843145,"id_str":"1503151762554843145","text":"May - his memory be a blessing. https:\/\/t.co\/LTrAsFOHiD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LTrAsFOHiD","expanded_url":"https:\/\/twitter.com\/avalaina\/status\/1503051857559703558","display_url":"twitter.com\/avalaina\/statu\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503051857559703558,"quoted_status_id_str":"1503051857559703558","retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1503051857559703558,"quoted_status_id_str":"1503051857559703558","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2498411509,"id_str":"2498411509","name":"AOL","screen_name":"AK65er","location":"Accra, - Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":2305,"listed_count":0,"created_at":"Fri - May 16 11:44:06 +0000 2014","favourites_count":2477,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2753,"lang":null,"status":{"created_at":"Fri - Mar 25 05:46:08 +0000 2022","id":1507232344473751578,"id_str":"1507232344473751578","text":"RT - @fearlessislam: Ya All\u0101h rescue me from my hardships like you rescued - \u02beIbr\u0101h\u012bm \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u0644\u0627\u0645 - from the fire, like you rescued M\u016bs\u0101 \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fearlessislam","name":"Fearless - Islam","id":1440905783982444554,"id_str":"1440905783982444554","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 04:16:04 +0000 2022","id":1497062818365186048,"id_str":"1497062818365186048","text":"Ya - All\u0101h rescue me from my hardships like you rescued \u02beIbr\u0101h\u012bm - \u0639\u0644\u064a\u0647 \u0627\u0644\u0633\u0644\u0627\u0645 from the fire, - like you rescued M\u016bs\u0101 \u0639\u0644\u064a\u2026 https:\/\/t.co\/GLEkGnnTd1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GLEkGnnTd1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497062818365186048","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"ca"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456933823212662792\/BNZQzoFj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456933823212662792\/BNZQzoFj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":984019672189341696,"id_str":"984019672189341696","name":"hal - \ud83e\udd5f","screen_name":"serendipity_hhj","location":"District 9","description":"run - through the maze like a beast. | #UWULINE | #\uc2a4\ud2b8\ub808\uc774\ud0a4\uc988","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":382,"friends_count":601,"listed_count":4,"created_at":"Wed - Apr 11 10:45:46 +0000 2018","favourites_count":59972,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22763,"lang":null,"status":{"created_at":"Sat - Mar 26 08:23:11 +0000 2022","id":1507634256360607744,"id_str":"1507634256360607744","text":"RT - @ctrlhwng: jisung greeting with \u201cayo wassup sunbaenim-deul hello\u201d - is the most jisung thing ever https:\/\/t.co\/va09QlMDuu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ctrlhwng","name":"\ub0e0","id":1084492324866908160,"id_str":"1084492324866908160","indices":[3,12]}],"urls":[],"media":[{"id":1507604783208665090,"id_str":"1507604783208665090","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","url":"https:\/\/t.co\/va09QlMDuu","display_url":"pic.twitter.com\/va09QlMDuu","expanded_url":"https:\/\/twitter.com\/ctrlhwng\/status\/1507604828985315329\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1507604828985315329,"source_status_id_str":"1507604828985315329","source_user_id":1084492324866908160,"source_user_id_str":"1084492324866908160"}]},"extended_entities":{"media":[{"id":1507604783208665090,"id_str":"1507604783208665090","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","url":"https:\/\/t.co\/va09QlMDuu","display_url":"pic.twitter.com\/va09QlMDuu","expanded_url":"https:\/\/twitter.com\/ctrlhwng\/status\/1507604828985315329\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1507604828985315329,"source_status_id_str":"1507604828985315329","source_user_id":1084492324866908160,"source_user_id_str":"1084492324866908160","video_info":{"aspect_ratio":[16,9],"duration_millis":7251,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/pl\/DIScwsp8_S_RutV_.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/480x270\/PoeGH1UBLiKG5JQr.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/1280x720\/vus0GoNnW_JpLftb.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/640x360\/9QzBtx4JWKgmJs3T.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:26:15 +0000 2022","id":1507604828985315329,"id_str":"1507604828985315329","text":"jisung - greeting with \u201cayo wassup sunbaenim-deul hello\u201d is the most jisung - thing ever https:\/\/t.co\/va09QlMDuu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507604783208665090,"id_str":"1507604783208665090","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","url":"https:\/\/t.co\/va09QlMDuu","display_url":"pic.twitter.com\/va09QlMDuu","expanded_url":"https:\/\/twitter.com\/ctrlhwng\/status\/1507604828985315329\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507604783208665090,"id_str":"1507604783208665090","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507604783208665090\/pu\/img\/DqLrwMiDEfiB7qCz.jpg","url":"https:\/\/t.co\/va09QlMDuu","display_url":"pic.twitter.com\/va09QlMDuu","expanded_url":"https:\/\/twitter.com\/ctrlhwng\/status\/1507604828985315329\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":7251,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/pl\/DIScwsp8_S_RutV_.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/480x270\/PoeGH1UBLiKG5JQr.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/1280x720\/vus0GoNnW_JpLftb.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507604783208665090\/pu\/vid\/640x360\/9QzBtx4JWKgmJs3T.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4602,"favorite_count":13412,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4602,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504354472017145857\/X8LVD-Qe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504354472017145857\/X8LVD-Qe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984019672189341696\/1627809619","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":169136190,"id_str":"169136190","name":"DOMINIC - M SANGMA","screen_name":"DominicmsangmaM","location":"India","description":"Male","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":164,"friends_count":4991,"listed_count":2,"created_at":"Wed - Jul 21 16:48:32 +0000 2010","favourites_count":58011,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3023,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460042208371871744\/u2COQxYc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460042208371871744\/u2COQxYc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169136190\/1374154576","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":121500446,"id_str":"121500446","name":"$h\u25ce\u25cen\u00a5a","screen_name":"Sowmya_mswamy","location":"India","description":"Patience - is the key to joy...... Simplicity is not a simple thing.......Do what you - will, your wisdom be your guide.......","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":115,"friends_count":1164,"listed_count":5,"created_at":"Tue - Mar 09 18:03:46 +0000 2010","favourites_count":2752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1829,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DCF1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641926340308930560\/e_BEc3BD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641926340308930560\/e_BEc3BD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121500446\/1441882113","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1C1C1C","profile_text_color":"C0DCF1","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273354568257220608,"id_str":"1273354568257220608","name":"warriorpoet","screen_name":"edudyke","location":"","description":"Author - Of Famous Poems: Mandela - The Immoral Icon, The Evil Face Of Religion, Poetic - Masterpiece... \nhttps:\/\/t.co\/q4eHP7fo0O","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/q4eHP7fo0O","expanded_url":"http:\/\/www.poemhunter.com\/poem\/mandela-the-immortal-icon\/","display_url":"poemhunter.com\/poem\/mandela-t\u2026","indices":[102,125]}]}},"protected":false,"followers_count":86,"friends_count":398,"listed_count":0,"created_at":"Wed - Jun 17 20:40:13 +0000 2020","favourites_count":4589,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4351,"lang":null,"status":{"created_at":"Sat - Mar 26 03:40:09 +0000 2022","id":1507563028518219784,"id_str":"1507563028518219784","text":"@WarintheFuture - Very insightful","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WarintheFuture","name":"Major - General (just retired!) Mick Ryan","id":943906396180905984,"id_str":"943906396180905984","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507462797268901889,"in_reply_to_status_id_str":"1507462797268901889","in_reply_to_user_id":943906396180905984,"in_reply_to_user_id_str":"943906396180905984","in_reply_to_screen_name":"WarintheFuture","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426536075128885252\/JP-itVbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426536075128885252\/JP-itVbd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1506973184,"id_str":"1506973184","name":"Jorge - F. Sanchez","screen_name":"JFSLT905","location":"Cielo Vista East, El Paso","description":"Retired - firefighter\/ investigator. From El Paso,Tx. DOB September. Lifelong Democrat.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":625,"friends_count":1819,"listed_count":2,"created_at":"Tue - Jun 11 21:41:35 +0000 2013","favourites_count":19106,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27111,"lang":null,"status":{"created_at":"Sat - Mar 26 07:49:34 +0000 2022","id":1507625794453098498,"id_str":"1507625794453098498","text":"RT - @Kushbae112: John Eastman clerked for Clarence lol. They\u2019re all crazy - \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kushbae112","name":"Imsickofallthisshit","id":874414267071475712,"id_str":"874414267071475712","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:39:11 +0000 2022","id":1507562783281324036,"id_str":"1507562783281324036","text":"John - Eastman clerked for Clarence lol. They\u2019re all crazy \ud83d\ude02 https:\/\/t.co\/MjzOOuqip2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MjzOOuqip2","expanded_url":"https:\/\/twitter.com\/TheDailyEdge\/status\/1507538669384736779","display_url":"twitter.com\/TheDailyEdge\/s\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507538669384736779,"quoted_status_id_str":"1507538669384736779","retweet_count":8,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507538669384736779,"quoted_status_id_str":"1507538669384736779","retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927692618821234688\/7wODGDwy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927692618821234688\/7wODGDwy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":515510386,"id_str":"515510386","name":"Aymen - SALAH","screen_name":"salah_aymen","location":"Tunisia","description":"Senior - Data Analyst,\nSenior ICT Expert,\nCSO Activist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":396,"listed_count":1,"created_at":"Mon - Mar 05 14:16:43 +0000 2012","favourites_count":148,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":598,"lang":null,"status":{"created_at":"Thu - Mar 24 19:51:14 +0000 2022","id":1507082633452429326,"id_str":"1507082633452429326","text":"RT - @InsightsTn: Labeled version\n#OPC #Insights_TN #dataviz #DataAnalytics https:\/\/t.co\/OUNBGNz6sA","truncated":false,"entities":{"hashtags":[{"text":"OPC","indices":[32,36]},{"text":"Insights_TN","indices":[37,49]},{"text":"dataviz","indices":[50,58]},{"text":"DataAnalytics","indices":[59,73]}],"symbols":[],"user_mentions":[{"screen_name":"InsightsTn","name":"Insights - TN","id":1366388314203381760,"id_str":"1366388314203381760","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:34:50 +0000 2022","id":1507018106752757777,"id_str":"1507018106752757777","text":"Labeled - version\n#OPC #Insights_TN #dataviz #DataAnalytics https:\/\/t.co\/8IIsc0cVBY - https:\/\/t.co\/OUNBGNz6sA","truncated":false,"entities":{"hashtags":[{"text":"OPC","indices":[16,20]},{"text":"Insights_TN","indices":[21,33]},{"text":"dataviz","indices":[34,42]},{"text":"DataAnalytics","indices":[43,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8IIsc0cVBY","expanded_url":"https:\/\/twitter.com\/InsightsTn\/status\/1506986406463348736","display_url":"twitter.com\/InsightsTn\/sta\u2026","indices":[58,81]}],"media":[{"id":1507017545756266496,"id_str":"1507017545756266496","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoAeS0VUAA9FkE.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoAeS0VUAA9FkE.png","url":"https:\/\/t.co\/OUNBGNz6sA","display_url":"pic.twitter.com\/OUNBGNz6sA","expanded_url":"https:\/\/twitter.com\/InsightsTn\/status\/1507018106752757777\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507017545756266496,"id_str":"1507017545756266496","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoAeS0VUAA9FkE.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoAeS0VUAA9FkE.png","url":"https:\/\/t.co\/OUNBGNz6sA","display_url":"pic.twitter.com\/OUNBGNz6sA","expanded_url":"https:\/\/twitter.com\/InsightsTn\/status\/1507018106752757777\/photo\/1","type":"photo","sizes":{"large":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506986406463348736,"quoted_status_id_str":"1506986406463348736","retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506986406463348736,"quoted_status_id_str":"1506986406463348736","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506231905594789889\/-srgm_Lw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506231905594789889\/-srgm_Lw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/515510386\/1545603457","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310741792552349696,"id_str":"1310741792552349696","name":"Nesredin - Negash","screen_name":"NesredinNegash2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":252,"listed_count":0,"created_at":"Tue - Sep 29 00:43:10 +0000 2020","favourites_count":400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Wed - Mar 02 12:03:14 +0000 2022","id":1498992323329409025,"id_str":"1498992323329409025","text":"RT - @Efrem_at: #ResettleEritreanRefugees from Afar&Tigray Eritrean refugees - are vulnerable needs protection and basic life-saving assistanc\u2026","truncated":false,"entities":{"hashtags":[{"text":"ResettleEritreanRefugees","indices":[14,39]}],"symbols":[],"user_mentions":[{"screen_name":"Efrem_at","name":"Efrem - (\u123d\u12f0\u1295\/\u12be\u12f0\u1295)","id":886447661200662529,"id_str":"886447661200662529","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 23:09:41 +0000 2022","id":1498797655119462404,"id_str":"1498797655119462404","text":"#ResettleEritreanRefugees - from Afar&Tigray Eritrean refugees are vulnerable needs protection and - basic life-saving\u2026 https:\/\/t.co\/yHYhMFEU6x","truncated":true,"entities":{"hashtags":[{"text":"ResettleEritreanRefugees","indices":[0,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yHYhMFEU6x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498797655119462404","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498993979785981953\/6Sgr8bln_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498993979785981953\/6Sgr8bln_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888415879842725889,"id_str":"888415879842725889","name":"Henry - Dubon Hill","screen_name":"HillDubon","location":"North Carolina, USA","description":"Sports - Lover and Soccer fanatic...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":1343,"listed_count":0,"created_at":"Fri - Jul 21 15:10:26 +0000 2017","favourites_count":7048,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145,"lang":null,"status":{"created_at":"Wed - Mar 23 23:56:36 +0000 2022","id":1506781994214166534,"id_str":"1506781994214166534","text":"This - cause is close to my heart - please sign: https:\/\/t.co\/mhhRAReqPb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mhhRAReqPb","expanded_url":"https:\/\/sign.moveon.org\/petitions\/act-fast-appoint-justice-breyer-s-replacement-as-soon-as-possible?share=35d7bf28-1c30-4505-a26c-46251063082d&source=s.tw.ty&time=1648077363&utm_source=s.tw.ty","display_url":"sign.moveon.org\/petitions\/act-\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1073101813811957760\/c3EBoQvz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1073101813811957760\/c3EBoQvz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/888415879842725889\/1502348073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234289482624458752,"id_str":"1234289482624458752","name":"Sandy","screen_name":"Sandy97013955","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":641,"listed_count":0,"created_at":"Mon - Mar 02 01:28:53 +0000 2020","favourites_count":1735,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Tue - Jan 04 08:12:23 +0000 2022","id":1478278119488249856,"id_str":"1478278119488249856","text":"@kenolin1 - 5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kenolin1","name":"Ken - Olin","id":164679813,"id_str":"164679813","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478213972532744194,"in_reply_to_status_id_str":"1478213972532744194","in_reply_to_user_id":164679813,"in_reply_to_user_id_str":"164679813","in_reply_to_screen_name":"kenolin1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260641879651225600,"id_str":"1260641879651225600","name":"LORI - MARTINDALE","screen_name":"LORIMARTINDALE4","location":"","description":"mom\ngramma","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":279,"listed_count":0,"created_at":"Wed - May 13 18:44:00 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29617389,"id_str":"29617389","name":"Paul - Moya","screen_name":"PaulMoya","location":"","description":"CEO, Millennial - Labs Inc || \ud83c\udfc6 \u201cOne of the Top 10 Prof. Speakers in the \ud83c\udf0f\u201d - -@bigspeak || #TheHarvardCowboy ||\u2063\u2063\u2063","url":"https:\/\/t.co\/83O2NNHRDS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/83O2NNHRDS","expanded_url":"http:\/\/www.PaulMoya.com","display_url":"PaulMoya.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7103,"friends_count":3335,"listed_count":34,"created_at":"Wed - Apr 08 02:30:34 +0000 2009","favourites_count":3043,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1113,"lang":null,"status":{"created_at":"Sun - Jan 23 06:31:16 +0000 2022","id":1485138043707133952,"id_str":"1485138043707133952","text":"RT - @TammyDuckworth: Men of quality don''t fear equality. \n\nNot on the floor - of the U.S. Senate. Not anywhere.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TammyDuckworth","name":"Tammy - Duckworth","id":328679423,"id_str":"328679423","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 22 21:03:03 +0000 2022","id":1484995045996519427,"id_str":"1484995045996519427","text":"Men - of quality don''t fear equality. \n\nNot on the floor of the U.S. Senate. - Not anywhere.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9060,"favorite_count":54575,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9060,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E4DFDC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243032209025454080\/XkgM-PHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243032209025454080\/XkgM-PHs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29617389\/1545371438","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7A7A7A","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2236797787,"id_str":"2236797787","name":"Dave - Dement","screen_name":"alnav5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":1117,"listed_count":0,"created_at":"Mon - Dec 09 00:57:57 +0000 2013","favourites_count":34861,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1410,"lang":null,"status":{"created_at":"Sun - Aug 01 23:57:34 +0000 2021","id":1421983477667442692,"id_str":"1421983477667442692","text":"RT - @johnpavlovitz: More of this, please. https:\/\/t.co\/HaOHLJDKBp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnpavlovitz","name":"John - Pavlovitz","id":493714995,"id_str":"493714995","indices":[3,17]}],"urls":[],"media":[{"id":1421827237729406980,"id_str":"1421827237729406980","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","url":"https:\/\/t.co\/HaOHLJDKBp","display_url":"pic.twitter.com\/HaOHLJDKBp","expanded_url":"https:\/\/twitter.com\/johnpavlovitz\/status\/1421827242540343299\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":926,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":750,"h":926,"resize":"fit"}},"source_status_id":1421827242540343299,"source_status_id_str":"1421827242540343299","source_user_id":493714995,"source_user_id_str":"493714995"}]},"extended_entities":{"media":[{"id":1421827237729406980,"id_str":"1421827237729406980","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","url":"https:\/\/t.co\/HaOHLJDKBp","display_url":"pic.twitter.com\/HaOHLJDKBp","expanded_url":"https:\/\/twitter.com\/johnpavlovitz\/status\/1421827242540343299\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":926,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":750,"h":926,"resize":"fit"}},"source_status_id":1421827242540343299,"source_status_id_str":"1421827242540343299","source_user_id":493714995,"source_user_id_str":"493714995"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 01 13:36:45 +0000 2021","id":1421827242540343299,"id_str":"1421827242540343299","text":"More - of this, please. https:\/\/t.co\/HaOHLJDKBp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1421827237729406980,"id_str":"1421827237729406980","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","url":"https:\/\/t.co\/HaOHLJDKBp","display_url":"pic.twitter.com\/HaOHLJDKBp","expanded_url":"https:\/\/twitter.com\/johnpavlovitz\/status\/1421827242540343299\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":926,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":750,"h":926,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1421827237729406980,"id_str":"1421827237729406980","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7tYVuzWEAQYQIi.jpg","url":"https:\/\/t.co\/HaOHLJDKBp","display_url":"pic.twitter.com\/HaOHLJDKBp","expanded_url":"https:\/\/twitter.com\/johnpavlovitz\/status\/1421827242540343299\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":926,"resize":"fit"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":750,"h":926,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13991,"favorite_count":59304,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13991,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145863592484491264,"id_str":"1145863592484491264","name":"Miss - Blessed Be","screen_name":"MissBlessedBe1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":3208,"listed_count":0,"created_at":"Tue - Jul 02 01:15:44 +0000 2019","favourites_count":2276,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18668,"lang":null,"status":{"created_at":"Sat - Feb 05 04:36:53 +0000 2022","id":1489820297226301441,"id_str":"1489820297226301441","text":"RT - @DoomsdaysCW: China and Russia express concern over water release at Fukushima - nuclear plant | The Japan Times https:\/\/t.co\/mgZSMNPuLr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DoomsdaysCW","name":"DoomsdaysCW\ud83c\udf3b\u2622\ufe0f\ud83c\udf39\ud83c\udf0d","id":2218836026,"id_str":"2218836026","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/mgZSMNPuLr","expanded_url":"https:\/\/www.japantimes.co.jp\/news\/2022\/02\/04\/national\/fukushima-china-russia-concerns\/","display_url":"japantimes.co.jp\/news\/2022\/02\/0\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 04 20:43:17 +0000 2022","id":1489701114341691392,"id_str":"1489701114341691392","text":"China - and Russia express concern over water release at Fukushima nuclear plant | - The Japan Times https:\/\/t.co\/mgZSMNPuLr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mgZSMNPuLr","expanded_url":"https:\/\/www.japantimes.co.jp\/news\/2022\/02\/04\/national\/fukushima-china-russia-concerns\/","display_url":"japantimes.co.jp\/news\/2022\/02\/0\u2026","indices":[97,120]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":756823867507769345,"id_str":"756823867507769345","name":"Sir - Orm","screen_name":"sirormeo","location":"","description":"Lorem ipsum dolor - sit amet, consectetur adipiscing elit. Pellentesque ultrices, ligula ut suscipit - malesuada, tortor lectus vulputate diam, sit amet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":183,"listed_count":2,"created_at":"Sat - Jul 23 12:10:45 +0000 2016","favourites_count":233,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72,"lang":null,"status":{"created_at":"Wed - Jan 19 09:54:13 +0000 2022","id":1483739564527296514,"id_str":"1483739564527296514","text":"RT - @passage3d: Passengers!\n\n500 Strange Clan whitelist spots are up for grabs!\nAND - 6 Town One NFTs ( including 3 rare community NFTs ).\n\nDo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"passage3d","name":"Passage - || We Are Hiring!","id":1320046977594413056,"id_str":"1320046977594413056","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 19 01:13:38 +0000 2022","id":1483608554661683203,"id_str":"1483608554661683203","text":"Passengers!\n\n500 - Strange Clan whitelist spots are up for grabs!\nAND 6 Town One NFTs ( including - 3 rare community NF\u2026 https:\/\/t.co\/8fyFzgyf3a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8fyFzgyf3a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1483608554661683203","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1304,"favorite_count":597,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1304,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432295698007998465\/w1ZhiOpp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432295698007998465\/w1ZhiOpp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/756823867507769345\/1630320957","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1110259587595358210,"id_str":"1110259587595358210","name":"esb","screen_name":"esb1903","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":2873,"listed_count":0,"created_at":"Mon - Mar 25 19:18:08 +0000 2019","favourites_count":59374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1169177433582514176,"id_str":"1169177433582514176","name":"chedya","screen_name":"nathali94543378","location":"","description":"internet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":392,"friends_count":1345,"listed_count":2,"created_at":"Wed - Sep 04 09:16:57 +0000 2019","favourites_count":1618,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":624,"lang":null,"status":{"created_at":"Fri - Mar 25 13:57:33 +0000 2022","id":1507356012302540802,"id_str":"1507356012302540802","text":"RT - @deadheadkat: Oh my heart!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"deadheadkat","name":"Deadheadkat - is with Ukraine\ud83d\udd96\ud83d\udc99\ud83d\udc9b\ud83c\uddfa\ud83c\udde6\ud83d\udc31\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b","id":1284630457355837440,"id_str":"1284630457355837440","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:40:36 +0000 2022","id":1507215852915109891,"id_str":"1507215852915109891","text":"Oh - my heart! https:\/\/t.co\/dhyuiT5RTQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dhyuiT5RTQ","expanded_url":"https:\/\/twitter.com\/castellanosce_\/status\/1505702022909206528","display_url":"twitter.com\/castellanosce_\u2026","indices":[13,36]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505702022909206528,"quoted_status_id_str":"1505702022909206528","retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1505702022909206528,"quoted_status_id_str":"1505702022909206528","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169179902068830209\/-AEf4SjH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169179902068830209\/-AEf4SjH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220367206447566848,"id_str":"1220367206447566848","name":"Matt - Unicomb","screen_name":"MattUnicomb","location":"Berlin | Deutschland","description":"journalist - + editor | news, music, politics @exberlinermag, @residentadvisor, @MiddleEastEye, - @The_NewArab, etc | copy @NI_News","url":"https:\/\/t.co\/am4Yn5UoBD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/am4Yn5UoBD","expanded_url":"https:\/\/muckrack.com\/matt-unicomb","display_url":"muckrack.com\/matt-unicomb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":231,"listed_count":4,"created_at":"Thu - Jan 23 15:26:34 +0000 2020","favourites_count":958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":103,"lang":null,"status":{"created_at":"Wed - Mar 23 12:50:53 +0000 2022","id":1506614459397251084,"id_str":"1506614459397251084","text":"RT - @felix_light: \u201cKirill is here as a warrior of Christ ... He fought against - evil, Satanic spirits: Ukrainian Nazis, created by American m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"felix_light","name":"Felix - Light","id":1912180616,"id_str":"1912180616","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 11:10:28 +0000 2022","id":1506589188107481090,"id_str":"1506589188107481090","text":"\u201cKirill - is here as a warrior of Christ ... He fought against evil, Satanic spirits: - Ukrainian Nazis, created by Ame\u2026 https:\/\/t.co\/volwNdizlB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/volwNdizlB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506589188107481090","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":348,"favorite_count":740,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":348,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496757504520626184\/3gXMbdS__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496757504520626184\/3gXMbdS__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796429112806113280,"id_str":"796429112806113280","name":"Maria - Llerret \ud83c\uddfa\ud83c\udde6","screen_name":"nastyblackwoman","location":"","description":"Fed - up with ignorant people and injustice, I speak my mind without sugarcoating - things. Deal with it. #democracy #BLM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":939,"friends_count":5001,"listed_count":7,"created_at":"Wed - Nov 09 19:07:52 +0000 2016","favourites_count":87759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22886,"lang":null,"status":{"created_at":"Fri - Mar 25 10:01:38 +0000 2022","id":1507296644147994630,"id_str":"1507296644147994630","text":"RT - @DrGJackBrown: We won''t let you escape into generalities McConnell, Cruz, - and Hawley \u2014 Give us your specific ''reasons'', you racist fasci\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrGJackBrown","name":"Dr. - Jack Brown","id":212445456,"id_str":"212445456","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:01:00 +0000 2022","id":1507296482717626368,"id_str":"1507296482717626368","text":"We - won''t let you escape into generalities McConnell, Cruz, and Hawley \u2014 - Give us your specific ''reasons'', you racist\u2026 https:\/\/t.co\/dzdF76tS4D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dzdF76tS4D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507296482717626368","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":259,"favorite_count":1265,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":259,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/804043208766455816\/QWni0R6w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/804043208766455816\/QWni0R6w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796429112806113280\/1480534099","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108219946843148288,"id_str":"1108219946843148288","name":"Rohan - Sridhar","screen_name":"SridharRohan","location":"Hyderabad, India","description":"Co-founder - @HappeningDesign \u2022 Co-chair @uxindiaconf @umoglobal","url":"https:\/\/t.co\/GMqIuBMw4V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GMqIuBMw4V","expanded_url":"https:\/\/www.happening.design\/","display_url":"happening.design","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":3615,"listed_count":6,"created_at":"Wed - Mar 20 04:13:19 +0000 2019","favourites_count":6384,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":482,"lang":null,"status":{"created_at":"Mon - Jan 03 19:17:43 +0000 2022","id":1478083167412101123,"id_str":"1478083167412101123","text":"RT - @HappeningDesign: Yay, ba-bye 2021 and welcome 2022! \n\nOn the first Monday - of the year, we want to wish you all a very happy and happeni\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HappeningDesign","name":"Happening - Design Studio","id":1412705390752452609,"id_str":"1412705390752452609","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 03 13:15:32 +0000 2022","id":1477992023332319232,"id_str":"1477992023332319232","text":"Yay, - ba-bye 2021 and welcome 2022! \n\nOn the first Monday of the year, we want - to wish you all a very happy and happ\u2026 https:\/\/t.co\/FOMOBSaUoS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FOMOBSaUoS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1477992023332319232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347573857226428420\/o_MTvBGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347573857226428420\/o_MTvBGL_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":219702151,"id_str":"219702151","name":"ArthurK","screen_name":"arthurKadima","location":"Singapore - ","description":"Marathoner | 5K = 17:08 | 10K = 37:30 | HM = 1:21:59 | Fitness - | Gym | Road Trips | Boxing | \u26bd\ufe0f | Driving | Tea \u2615\ufe0f | - Politics | Beach | Music | IG arthur_kadima","url":"https:\/\/t.co\/tqoApVJoOg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tqoApVJoOg","expanded_url":"http:\/\/www.arthurkadima.com","display_url":"arthurkadima.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1406,"friends_count":1388,"listed_count":1,"created_at":"Thu - Nov 25 16:39:01 +0000 2010","favourites_count":11900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4619,"lang":null,"status":{"created_at":"Sat - Mar 26 01:26:40 +0000 2022","id":1507529436471898117,"id_str":"1507529436471898117","text":"Somebody - may beat me, but they are going to have to bleed to do it.\n#runningwithtumisole\n#runwitharthurk\n#2022runs\u2026 - https:\/\/t.co\/EZiRZPICTZ","truncated":true,"entities":{"hashtags":[{"text":"runningwithtumisole","indices":[68,88]},{"text":"runwitharthurk","indices":[89,104]},{"text":"2022runs","indices":[105,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EZiRZPICTZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529436471898117","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8EBE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504460152413757444\/Pz3pvewD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504460152413757444\/Pz3pvewD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219702151\/1543310261","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298746370602434561,"id_str":"1298746370602434561","name":"\ud83d\udc51\ud83d\udc8bOfficialAlexandriaY\ud83d\udc8b\ud83d\udc51","screen_name":"OfficialAlexa19","location":"","description":"\ud83c\udfa4Future - Singer\ud83c\udfa4 \u272822 years young\u2728 Instagram:officialalexy21 \ud83d\udc95Christian\ud83d\udc95. - \u2728\ud83d\udcafBLACK LIVES MATTER\u2728\ud83d\udcaf (IF YOU\u2019RE NOT - ABOUT #BLM then DO NOT FOLLOW ME). \u2728Mixed\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":139,"listed_count":0,"created_at":"Wed - Aug 26 22:17:38 +0000 2020","favourites_count":463,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":102,"lang":null,"status":{"created_at":"Wed - Feb 17 02:27:24 +0000 2021","id":1361864798191968256,"id_str":"1361864798191968256","text":"Does - such a love even exist?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361864634689605635\/dpVDrKYx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361864634689605635\/dpVDrKYx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1298746370602434561\/1598903460","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1074664770081570817,"id_str":"1074664770081570817","name":"alan - madison","screen_name":"alanmadison9","location":"District of Columbia, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":719,"listed_count":0,"created_at":"Mon - Dec 17 13:57:02 +0000 2018","favourites_count":44,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":195,"lang":null,"status":{"created_at":"Sat - Sep 25 00:43:16 +0000 2021","id":1441563922918563843,"id_str":"1441563922918563843","text":"Our - constitutional crisis is already here https:\/\/t.co\/qRDYaWNoFD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qRDYaWNoFD","expanded_url":"https:\/\/www.washingtonpost.com\/opinions\/2021\/09\/23\/robert-kagan-constitutional-crisis\/","display_url":"washingtonpost.com\/opinions\/2021\/\u2026","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":952809643969011712,"id_str":"952809643969011712","name":"Noel - O''Connor","screen_name":"NoelOCo02371236","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":672,"listed_count":0,"created_at":"Mon - Jan 15 07:48:16 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Feb 18 14:16:11 +0000 2022","id":1494677127597334534,"id_str":"1494677127597334534","text":"RT - @MetEireann: Status Red - Wind warnings have been issued \u2b07\ufe0f \n\ud83d\udc49Cork, - Kerry and Clare from 3am to 8am\n\ud83d\udc49Waterford from 7am to 11am\n\n#Storm\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MetEireann","name":"Met - \u00c9ireann","id":74394857,"id_str":"74394857","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 17 17:57:04 +0000 2022","id":1494370324707778565,"id_str":"1494370324707778565","text":"Status - Red - Wind warnings have been issued \u2b07\ufe0f \n\ud83d\udc49Cork, Kerry - and Clare from 3am to 8am\n\ud83d\udc49Waterford from 7am to 11am\u2026 https:\/\/t.co\/E5BWSYb6qI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E5BWSYb6qI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494370324707778565","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":196,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":100,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":737676867432419328,"id_str":"737676867432419328","name":"Toni - Cappuccio","screen_name":"TMC_capisci","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":172,"listed_count":0,"created_at":"Tue - May 31 16:07:25 +0000 2016","favourites_count":785,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Tue - Nov 10 06:41:42 +0000 2020","id":1326052396988948480,"id_str":"1326052396988948480","text":"@batnunibandit - @kirkacevedo @MeidasTouch I had the very same thought... bring on the electrostatic - spray!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"batnunibandit","name":"A.B.C.D.E.F-GOP - \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":3371102415,"id_str":"3371102415","indices":[0,14]},{"screen_name":"kirkacevedo","name":"KID - VICIOUS\ud83d\udd2a","id":164060400,"id_str":"164060400","indices":[15,27]},{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[28,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1326007217921744896,"in_reply_to_status_id_str":"1326007217921744896","in_reply_to_user_id":3371102415,"in_reply_to_user_id_str":"3371102415","in_reply_to_screen_name":"batnunibandit","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/755272677200277504\/C20PAfGV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/755272677200277504\/C20PAfGV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1169694985,"id_str":"1169694985","name":"\u00fa\u0144\u0111\u0259\u0155\u0123\u0159\u0151\u0173\u0146\u0111 - \u0137\u00ef\u00f1\u011f","screen_name":"proudlessharis","location":"Lagos, - Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":321,"friends_count":4999,"listed_count":3,"created_at":"Mon - Feb 11 18:36:37 +0000 2013","favourites_count":23486,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069360328432132101\/JtGOJXFI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069360328432132101\/JtGOJXFI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169694985\/1500913138","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14838239,"id_str":"14838239","name":"Ted - Garver","screen_name":"tgarver","location":"Edmonton, Alberta, Canada","description":"Innovation, - technology, science to grow sustainable Alberta industries. Interested in - health, human rights, peace, justice, democracy, the environment.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":587,"friends_count":2583,"listed_count":24,"created_at":"Mon - May 19 22:14:35 +0000 2008","favourites_count":4470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2480,"lang":null,"status":{"created_at":"Wed - Mar 23 04:01:11 +0000 2022","id":1506481155708575746,"id_str":"1506481155708575746","text":"RT - @RachelNotley: Like this post if you think Jason Kenney\u2019s move in the - budget to take $3,000 from Albertans on AISH is cruel and wrong. #\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RachelNotley","name":"Rachel - Notley","id":42836999,"id_str":"42836999","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 01:01:03 +0000 2022","id":1506435824329453569,"id_str":"1506435824329453569","text":"Like - this post if you think Jason Kenney\u2019s move in the budget to take $3,000 - from Albertans on AISH is cruel and wrong. #ableg #yyc","truncated":false,"entities":{"hashtags":[{"text":"ableg","indices":[120,126]},{"text":"yyc","indices":[127,131]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":459,"favorite_count":4706,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":459,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F2EEEF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256631398\/tedFall2010_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256631398\/tedFall2010_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14838239\/1354849020","profile_link_color":"8F2E2E","profile_sidebar_border_color":"8BA7C4","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"7B8894","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":959832087153922049,"id_str":"959832087153922049","name":"brian - durrell","screen_name":"DurrellBrian","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":57,"listed_count":0,"created_at":"Sat - Feb 03 16:52:57 +0000 2018","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1117557808373723136,"id_str":"1117557808373723136","name":"AVS","screen_name":"AVS87871201","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":670,"listed_count":0,"created_at":"Sun - Apr 14 22:38:39 +0000 2019","favourites_count":10465,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301607570088497152,"id_str":"1301607570088497152","name":"Julian - Leon","screen_name":"JulianL47868114","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":305,"listed_count":0,"created_at":"Thu - Sep 03 19:46:57 +0000 2020","favourites_count":4953,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4725,"lang":null,"status":{"created_at":"Mon - Nov 01 17:27:52 +0000 2021","id":1455225088358240258,"id_str":"1455225088358240258","text":"RT - @WalshFreedom: The facts don\u2019t matter. The truth doesn\u2019t matter. - The only thing that matters is FEAR. In my former world of conservative\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WalshFreedom","name":"Joe - Walsh","id":236487888,"id_str":"236487888","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 01 17:20:54 +0000 2021","id":1455223337186172930,"id_str":"1455223337186172930","text":"The - facts don\u2019t matter. The truth doesn\u2019t matter. The only thing that - matters is FEAR. In my former world of conser\u2026 https:\/\/t.co\/xWQtPrp4iO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xWQtPrp4iO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1455223337186172930","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1455203117486776322,"quoted_status_id_str":"1455203117486776322","retweet_count":274,"favorite_count":982,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1455203117486776322,"quoted_status_id_str":"1455203117486776322","retweet_count":274,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301611886559936512\/ujxFAgjk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301611886559936512\/ujxFAgjk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":880626108902719488,"id_str":"880626108902719488","name":"Amadou - Fall","screen_name":"AmadouF62449205","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":138,"listed_count":1,"created_at":"Fri - Jun 30 03:16:40 +0000 2017","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Mon - Mar 21 21:23:20 +0000 2022","id":1506018648535666690,"id_str":"1506018648535666690","text":"@travaildelOMbre - Dommage car ca aurait pu etre tres utile pour son equipe bien qu'' il ait - sa propre equipe d'' analyse.\nBravo wn tt cas","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"travaildelOMbre","name":"Le - Travail De L''OMbre","id":861691582210334720,"id_str":"861691582210334720","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506009362656944142,"in_reply_to_status_id_str":"1506009362656944142","in_reply_to_user_id":880626108902719488,"in_reply_to_user_id_str":"880626108902719488","in_reply_to_screen_name":"AmadouF62449205","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3192092638,"id_str":"3192092638","name":"Erika - Sieff","screen_name":"ErikaSieff","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":439,"listed_count":0,"created_at":"Tue - Apr 21 19:06:26 +0000 2015","favourites_count":5937,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":169,"lang":null,"status":{"created_at":"Mon - May 10 05:20:58 +0000 2021","id":1391624281730265088,"id_str":"1391624281730265088","text":"RT - @ABC: MATERNAL BOND: Kiki the gorilla, a mother of five, shared a very tender - moment with a woman visiting Boston\u2019s Franklin Park Zoo wi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC","name":"ABC - News","id":28785486,"id_str":"28785486","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 10 02:56:04 +0000 2021","id":1391587817298579456,"id_str":"1391587817298579456","text":"MATERNAL - BOND: Kiki the gorilla, a mother of five, shared a very tender moment with - a woman visiting Boston\u2019s Frank\u2026 https:\/\/t.co\/Y3WfreXOlw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y3WfreXOlw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1391587817298579456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2760,"favorite_count":17722,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2760,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590593901091782656\/aU2rGuZF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590593901091782656\/aU2rGuZF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":557421119,"id_str":"557421119","name":"Lyn - Underhill","screen_name":"MamaLyn11","location":"VERMONT","description":"BYBS - Be Your Best Self","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":833,"listed_count":0,"created_at":"Thu - Apr 19 04:27:15 +0000 2012","favourites_count":10987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2771,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:49 +0000 2022","id":1507552123352928256,"id_str":"1507552123352928256","text":"RT - @TrendingLiberal: Ted Cruz slammed the book \u2018Antiracist Baby.\u2019\n\nNow - it tops the Amazon bestsellers list.\n\nHow do you feel?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrendingLiberal","name":"Trending - Liberal","id":1257817367238803456,"id_str":"1257817367238803456","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:55:18 +0000 2022","id":1507476242685218819,"id_str":"1507476242685218819","text":"Ted - Cruz slammed the book \u2018Antiracist Baby.\u2019\n\nNow it tops the Amazon - bestsellers list.\n\nHow do you feel?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":462,"favorite_count":3843,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":462,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501036239448911874\/HQt1vl7F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501036239448911874\/HQt1vl7F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557421119\/1440607172","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1532414336,"id_str":"1532414336","name":"jen - vit","screen_name":"jen_1jenniv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":688,"listed_count":1,"created_at":"Thu - Jun 20 00:45:02 +0000 2013","favourites_count":3790,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1271,"lang":null,"status":{"created_at":"Wed - Dec 15 02:35:28 +0000 2021","id":1470945576116269058,"id_str":"1470945576116269058","text":"@BobGolen - Creepy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BobGolen","name":"Bob - Golen","id":891251263,"id_str":"891251263","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1470236736689160195,"in_reply_to_status_id_str":"1470236736689160195","in_reply_to_user_id":891251263,"in_reply_to_user_id_str":"891251263","in_reply_to_screen_name":"BobGolen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3847608374,"id_str":"3847608374","name":"Parkmellow17","screen_name":"parkmellow17","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":589,"listed_count":0,"created_at":"Sat - Oct 10 13:00:00 +0000 2015","favourites_count":3438,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Tue - May 22 08:47:47 +0000 2018","id":998847880478642176,"id_str":"998847880478642176","text":"RT - @panuw: Despite protest leaders declare end to protest, riot police maintained - a line with riot shield on other side of the road https:\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"panuw","name":"Panu - Wongcha-um","id":22603382,"id_str":"22603382","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 22 08:45:57 +0000 2018","id":998847421479190528,"id_str":"998847421479190528","text":"Despite - protest leaders declare end to protest, riot police maintained a line with - riot shield on other side of the\u2026 https:\/\/t.co\/JMNx0L66iZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JMNx0L66iZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/998847421479190528","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":347197806,"id_str":"347197806","name":"Amol - Satham","screen_name":"amolsatham","location":"Mumbai, India","description":"Proud - Maratha .. proud Indian \ud83c\uddee\ud83c\uddf3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":4954,"listed_count":10,"created_at":"Tue - Aug 02 12:30:38 +0000 2011","favourites_count":4120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8335,"lang":null,"status":{"created_at":"Fri - Mar 25 18:01:56 +0000 2022","id":1507417512626909184,"id_str":"1507417512626909184","text":"@himantabiswa - @ArvindKejriwal Arvind Kejriwal is arrogant & for the hate of Modi they - have gone to any extent.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"himantabiswa","name":"Himanta - Biswa Sarma","id":131188226,"id_str":"131188226","indices":[0,13]},{"screen_name":"ArvindKejriwal","name":"Arvind - Kejriwal","id":405427035,"id_str":"405427035","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507415851988791299,"in_reply_to_status_id_str":"1507415851988791299","in_reply_to_user_id":131188226,"in_reply_to_user_id_str":"131188226","in_reply_to_screen_name":"himantabiswa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294696214877761538\/_k7lbgDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294696214877761538\/_k7lbgDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/347197806\/1398676944","profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276929426362679297,"id_str":"1276929426362679297","name":"matt - carter","screen_name":"matt_carter54","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1112,"listed_count":0,"created_at":"Sat - Jun 27 17:24:53 +0000 2020","favourites_count":11596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Sat - Dec 04 21:34:18 +0000 2021","id":1467245903719407616,"id_str":"1467245903719407616","text":"@bbclaurak - But did you attend the party Laura ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bbclaurak","name":"Laura - Kuenssberg","id":61183568,"id_str":"61183568","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1466665297172074496,"in_reply_to_status_id_str":"1466665297172074496","in_reply_to_user_id":61183568,"in_reply_to_user_id_str":"61183568","in_reply_to_screen_name":"bbclaurak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276929717862641670\/J6X8yqWs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276929717862641670\/J6X8yqWs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":890518263779741698,"id_str":"890518263779741698","name":"hadi - jan","screen_name":"hadi80143345","location":"Pakistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":901,"listed_count":0,"created_at":"Thu - Jul 27 10:24:33 +0000 2017","favourites_count":1101,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sat - Mar 20 16:07:13 +0000 2021","id":1373305136127299584,"id_str":"1373305136127299584","text":"@AsmaAzam71 - Ye karnama tm Q nhe karti. Scientist ban kar dekhao na","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AsmaAzam71","name":"Asma - Azam","id":2971454271,"id_str":"2971454271","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1372898704945000448,"in_reply_to_status_id_str":"1372898704945000448","in_reply_to_user_id":2971454271,"in_reply_to_user_id_str":"2971454271","in_reply_to_screen_name":"AsmaAzam71","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329310595804397569\/20RqR3Hl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329310595804397569\/20RqR3Hl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289663377183211522,"id_str":"1289663377183211522","name":"Amanda - Wright","screen_name":"AmandaW69497990","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":108,"listed_count":0,"created_at":"Sat - Aug 01 20:45:01 +0000 2020","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Fri - Jun 04 23:26:13 +0000 2021","id":1400957090924052483,"id_str":"1400957090924052483","text":"https:\/\/t.co\/bcZ2EitDJc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bcZ2EitDJc","expanded_url":"https:\/\/youtu.be\/jfpNh27VQzM","display_url":"youtu.be\/jfpNh27VQzM","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291757500421767168\/rh6g--c5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291757500421767168\/rh6g--c5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231908457487441920,"id_str":"1231908457487441920","name":"brian - guyo","screen_name":"brianguyo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":260,"listed_count":0,"created_at":"Mon - Feb 24 11:47:38 +0000 2020","favourites_count":67,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - Dec 17 09:36:04 +0000 2021","id":1471776196736266243,"id_str":"1471776196736266243","text":"RT - @winkydonline: The wait is check out the new Winky D-Happy Again\nhttps:\/\/t.co\/6SiJDGv6AQ - https:\/\/t.co\/5ZHjGN8y6d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"winkydonline","name":"Winky - D","id":79480474,"id_str":"79480474","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/6SiJDGv6AQ","expanded_url":"https:\/\/youtu.be\/8u_IeNg7-0w","display_url":"youtu.be\/8u_IeNg7-0w","indices":[69,92]}],"media":[{"id":1471752852162887681,"id_str":"1471752852162887681","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","url":"https:\/\/t.co\/5ZHjGN8y6d","display_url":"pic.twitter.com\/5ZHjGN8y6d","expanded_url":"https:\/\/twitter.com\/winkydonline\/status\/1471753074872098817\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":352,"resize":"fit"},"medium":{"w":640,"h":352,"resize":"fit"},"large":{"w":640,"h":352,"resize":"fit"}},"source_status_id":1471753074872098817,"source_status_id_str":"1471753074872098817","source_user_id":79480474,"source_user_id_str":"79480474"}]},"extended_entities":{"media":[{"id":1471752852162887681,"id_str":"1471752852162887681","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","url":"https:\/\/t.co\/5ZHjGN8y6d","display_url":"pic.twitter.com\/5ZHjGN8y6d","expanded_url":"https:\/\/twitter.com\/winkydonline\/status\/1471753074872098817\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":352,"resize":"fit"},"medium":{"w":640,"h":352,"resize":"fit"},"large":{"w":640,"h":352,"resize":"fit"}},"source_status_id":1471753074872098817,"source_status_id_str":"1471753074872098817","source_user_id":79480474,"source_user_id_str":"79480474","video_info":{"aspect_ratio":[20,11],"duration_millis":45302,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/pl\/EatpivFcY7yHHOOZ.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/vid\/640x352\/5y0T2e97WxcdV_7C.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/vid\/490x270\/9_YiQA31vcaHttZt.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 08:04:11 +0000 2021","id":1471753074872098817,"id_str":"1471753074872098817","text":"The - wait is check out the new Winky D-Happy Again\nhttps:\/\/t.co\/6SiJDGv6AQ - https:\/\/t.co\/5ZHjGN8y6d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6SiJDGv6AQ","expanded_url":"https:\/\/youtu.be\/8u_IeNg7-0w","display_url":"youtu.be\/8u_IeNg7-0w","indices":[51,74]}],"media":[{"id":1471752852162887681,"id_str":"1471752852162887681","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","url":"https:\/\/t.co\/5ZHjGN8y6d","display_url":"pic.twitter.com\/5ZHjGN8y6d","expanded_url":"https:\/\/twitter.com\/winkydonline\/status\/1471753074872098817\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":352,"resize":"fit"},"medium":{"w":640,"h":352,"resize":"fit"},"large":{"w":640,"h":352,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1471752852162887681,"id_str":"1471752852162887681","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1471752852162887681\/pu\/img\/I5EYiyHdjNQnzvtL.jpg","url":"https:\/\/t.co\/5ZHjGN8y6d","display_url":"pic.twitter.com\/5ZHjGN8y6d","expanded_url":"https:\/\/twitter.com\/winkydonline\/status\/1471753074872098817\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":352,"resize":"fit"},"medium":{"w":640,"h":352,"resize":"fit"},"large":{"w":640,"h":352,"resize":"fit"}},"video_info":{"aspect_ratio":[20,11],"duration_millis":45302,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/pl\/EatpivFcY7yHHOOZ.m3u8?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/vid\/640x352\/5y0T2e97WxcdV_7C.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1471752852162887681\/pu\/vid\/490x270\/9_YiQA31vcaHttZt.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":855,"favorite_count":4334,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":855,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2839660070,"id_str":"2839660070","name":"Berkley - Hays","screen_name":"berkleyhays","location":"","description":"1 peter 5:7 - \/\/ ru \ud83c\udfd0 \u201822","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":224,"friends_count":358,"listed_count":1,"created_at":"Sat - Oct 04 05:00:26 +0000 2014","favourites_count":14105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1347,"lang":null,"status":{"created_at":"Mon - Feb 28 18:18:26 +0000 2022","id":1498361968406761477,"id_str":"1498361968406761477","text":"RT - @ooceuphoria: https:\/\/t.co\/n6Lk4w20qo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ooceuphoria","name":"out - of context euphoria","id":1142995058376892416,"id_str":"1142995058376892416","indices":[3,15]}],"urls":[],"media":[{"id":1498318547927252993,"id_str":"1498318547927252993","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}},"source_status_id":1498318556001599489,"source_status_id_str":"1498318556001599489","source_user_id":1142995058376892416,"source_user_id_str":"1142995058376892416"}]},"extended_entities":{"media":[{"id":1498318547927252993,"id_str":"1498318547927252993","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}},"source_status_id":1498318556001599489,"source_status_id_str":"1498318556001599489","source_user_id":1142995058376892416,"source_user_id_str":"1142995058376892416"},{"id":1498318547914674179,"id_str":"1498318547914674179","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-jVUAMOQ0d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-jVUAMOQ0d.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"small":{"w":680,"h":366,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}},"source_status_id":1498318556001599489,"source_status_id_str":"1498318556001599489","source_user_id":1142995058376892416,"source_user_id_str":"1142995058376892416"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 15:25:55 +0000 2022","id":1498318556001599489,"id_str":"1498318556001599489","text":"https:\/\/t.co\/n6Lk4w20qo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1498318547927252993,"id_str":"1498318547927252993","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498318547927252993,"id_str":"1498318547927252993","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-mVQAE5uOl.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}}},{"id":1498318547914674179,"id_str":"1498318547914674179","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FMsYx-jVUAMOQ0d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMsYx-jVUAMOQ0d.jpg","url":"https:\/\/t.co\/n6Lk4w20qo","display_url":"pic.twitter.com\/n6Lk4w20qo","expanded_url":"https:\/\/twitter.com\/ooceuphoria\/status\/1498318556001599489\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":645,"resize":"fit"},"small":{"w":680,"h":366,"resize":"fit"},"large":{"w":1440,"h":774,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29224,"favorite_count":263776,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":29224,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370481396012171272\/8ZEUFbKK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370481396012171272\/8ZEUFbKK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2839660070\/1558586168","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307535213854183424,"id_str":"1307535213854183424","name":"Patrick - Neary","screen_name":"PatrickNeary19","location":"","description":"I am a - semi-retired accountant, and RN trained nurse. I have 2 grown sons. I am a - grandpa! I have lovely fianc\u00e9e, Jennifer! I\u2019m blessed!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":867,"listed_count":0,"created_at":"Sun - Sep 20 04:21:27 +0000 2020","favourites_count":1594,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":855,"lang":null,"status":{"created_at":"Sat - Nov 07 04:57:04 +0000 2020","id":1324938898225717249,"id_str":"1324938898225717249","text":"@KDKA - Get well, asap! Start wearing a mask, wash your hands \ud83d\ude4c, and social - distance! Don\u2019t be stupid,...anymore! You\u2026 https:\/\/t.co\/usebimXAvm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KDKA","name":"KDKA","id":14085099,"id_str":"14085099","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/usebimXAvm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1324938898225717249","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1324937309125566464,"in_reply_to_status_id_str":"1324937309125566464","in_reply_to_user_id":14085099,"in_reply_to_user_id_str":"14085099","in_reply_to_screen_name":"KDKA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307535517312077824\/C46m9CO__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307535517312077824\/C46m9CO__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1231504937605107712,"id_str":"1231504937605107712","name":"giorgia","screen_name":"georgiiss","location":"Rome, - Lazio","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":448,"listed_count":0,"created_at":"Sun - Feb 23 09:04:03 +0000 2020","favourites_count":507,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350904877271158786\/C-0HpzJd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350904877271158786\/C-0HpzJd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1077595805538607105,"id_str":"1077595805538607105","name":"Somasundaram","screen_name":"Somasun24233845","location":"Erode, - tamil nadu, india.","description":"Erode","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":484,"friends_count":4904,"listed_count":0,"created_at":"Tue - Dec 25 16:03:55 +0000 2018","favourites_count":31061,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10805,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371287949434753025\/JMF-Z51z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371287949434753025\/JMF-Z51z_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":826809224290197507,"id_str":"826809224290197507","name":"Azad","screen_name":"azadrdy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":133,"listed_count":0,"created_at":"Wed - Feb 01 15:07:35 +0000 2017","favourites_count":2530,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Mar 11 06:18:54 +0000 2022","id":1502167160692822016,"id_str":"1502167160692822016","text":"https:\/\/t.co\/EFrhKA2CPA - https:\/\/t.co\/nDdpa77j6G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EFrhKA2CPA","expanded_url":"https:\/\/twitter.com\/surnell\/status\/1502092230944718851","display_url":"twitter.com\/surnell\/status\u2026","indices":[0,23]}],"media":[{"id":1502167157144432641,"id_str":"1502167157144432641","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FNjFEhLaMAEJjuD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNjFEhLaMAEJjuD.jpg","url":"https:\/\/t.co\/nDdpa77j6G","display_url":"pic.twitter.com\/nDdpa77j6G","expanded_url":"https:\/\/twitter.com\/azadrdy\/status\/1502167160692822016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":922,"h":2048,"resize":"fit"},"medium":{"w":540,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1502167157144432641,"id_str":"1502167157144432641","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FNjFEhLaMAEJjuD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNjFEhLaMAEJjuD.jpg","url":"https:\/\/t.co\/nDdpa77j6G","display_url":"pic.twitter.com\/nDdpa77j6G","expanded_url":"https:\/\/twitter.com\/azadrdy\/status\/1502167160692822016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":306,"h":680,"resize":"fit"},"large":{"w":922,"h":2048,"resize":"fit"},"medium":{"w":540,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502092230944718851,"quoted_status_id_str":"1502092230944718851","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398314754511294465\/suiCldpi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398314754511294465\/suiCldpi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":621365720,"id_str":"621365720","name":"nikolaos - hatsopoulos","screen_name":"hatsopoulosn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":696,"friends_count":1916,"listed_count":1,"created_at":"Thu - Jun 28 22:35:45 +0000 2012","favourites_count":41893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4196,"lang":null,"status":{"created_at":"Fri - Mar 25 22:23:06 +0000 2022","id":1507483238679330816,"id_str":"1507483238679330816","text":"RT - @Marka2_: \u00ab\u039f #\u03a0\u03cc\u03bd\u03c4\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 - \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc\u03c2 \u03ba\u03b1\u03b9 - \u03b7 \u039c\u03b9\u03ba\u03c1\u03ac \u0391\u03c3\u03af\u03b1\u00bb.\n\u00ab\u039f\u03b9 - \u039c\u03b1\u03ba\u03b5\u03b4\u03cc\u03bd\u03b5\u03c2 \u03b4\u03b5\u03bd - \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b6\u03bf\u03c5\u03bd\u03b5 - \u03c3\u03ba\u03bb\u03b1\u03b2\u03c9\u03bc\u03ad\u03bd\u03bf\u03b9\u00bb.\n\u039c\u03cc\u03bb\u03b9\u03c2 - \u03b5\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5\u03c2 \u0399\u03ba\u03ac\u03c1\u03bf\u03c5\u03c2 - \u03c3\u03c4\u03b7\u03bd \u03c0\u03b1\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u03a0\u03cc\u03bd\u03c4\u03bf\u03c2","indices":[16,23]}],"symbols":[],"user_mentions":[{"screen_name":"Marka2_","name":"Marka2","id":1426621678726025218,"id_str":"1426621678726025218","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:33:49 +0000 2022","id":1507470837460320258,"id_str":"1507470837460320258","text":"\u00ab\u039f - #\u03a0\u03cc\u03bd\u03c4\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc\u03c2 - \u03ba\u03b1\u03b9 \u03b7 \u039c\u03b9\u03ba\u03c1\u03ac \u0391\u03c3\u03af\u03b1\u00bb.\n\u00ab\u039f\u03b9 - \u039c\u03b1\u03ba\u03b5\u03b4\u03cc\u03bd\u03b5\u03c2 \u03b4\u03b5\u03bd - \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b6\u03bf\u03c5\u03bd\u03b5 - \u03c3\u03ba\u03bb\u03b1\u03b2\u03c9\u03bc\u03ad\u03bd\u03bf\u03b9\u00bb.\n\u039c\u03cc\u03bb\u03b9\u03c2 - \u03b5\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5\u03c2 \u0399\u03ba\u03ac\u03c1\u2026 - https:\/\/t.co\/9wRL46xtOJ","truncated":true,"entities":{"hashtags":[{"text":"\u03a0\u03cc\u03bd\u03c4\u03bf\u03c2","indices":[3,10]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9wRL46xtOJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507470837460320258","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":61,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"el"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597694234339233792\/XLXEwKpw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597694234339233792\/XLXEwKpw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621365720\/1623406129","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33272534,"id_str":"33272534","name":"Nancy - Bocian","screen_name":"msboc","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":490,"listed_count":0,"created_at":"Sun - Apr 19 18:31:34 +0000 2009","favourites_count":1721,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":659,"lang":null,"status":{"created_at":"Thu - Mar 24 04:07:14 +0000 2022","id":1506845066521939971,"id_str":"1506845066521939971","text":"RT - @RBReich: I\u2019m getting to be an older man. I\u2019ve served in several - administrations, taught two generations, and encountered spin, lies, an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 23:03:41 +0000 2022","id":1506768676875243525,"id_str":"1506768676875243525","text":"I\u2019m - getting to be an older man. I\u2019ve served in several administrations, taught - two generations, and encountered spi\u2026 https:\/\/t.co\/Wk3WWzmExq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Wk3WWzmExq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506768676875243525","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5102,"favorite_count":29560,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5102,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2663413901,"id_str":"2663413901","name":"David - Bell","screen_name":"ddb1776","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":718,"listed_count":0,"created_at":"Wed - Jul 02 09:50:53 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484273617685856257\/USWSWF1X_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484273617685856257\/USWSWF1X_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1004578041123631105,"id_str":"1004578041123631105","name":"Z.lew.crew","screen_name":"Zlewcrew1","location":"California, - USA","description":"\ud83e\uddcf\ud83c\udffd\u200d\u2640\ufe0f\ud83e\uded4\ud83d\udc1d\ud83d\udc3e\ud83c\udf37\ud83c\udf6b\ud83d\udcd6\ud83d\udcda\u2615\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1885,"listed_count":0,"created_at":"Thu - Jun 07 04:17:23 +0000 2018","favourites_count":5179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270374076796694528\/snGqfu1j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270374076796694528\/snGqfu1j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1004578041123631105\/1591715811","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1007439956263030784,"id_str":"1007439956263030784","name":"Edward - Honnold","screen_name":"EHonnold","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":145,"listed_count":0,"created_at":"Fri - Jun 15 01:49:37 +0000 2018","favourites_count":25081,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1572373542,"id_str":"1572373542","name":"javier - f\u00b2 moris","screen_name":"j_gemelo2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":92,"friends_count":2058,"listed_count":0,"created_at":"Sat - Jul 06 09:36:52 +0000 2013","favourites_count":13687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3467,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/964303430901694469\/PQOKoHN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/964303430901694469\/PQOKoHN0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1572373542\/1603974576","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283300317300490242,"id_str":"1283300317300490242","name":"Helal","screen_name":"Helal40115268","location":"","description":"I - am nothing, without allah.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":305,"listed_count":0,"created_at":"Wed - Jul 15 07:20:34 +0000 2020","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Nov 26 13:23:50 +0000 2020","id":1331951800753250305,"id_str":"1331951800753250305","text":"Alhamdulillaha - day by day kuwait COVID-19 decerease. https:\/\/t.co\/7QuJQTFLPL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1331951791295115265,"id_str":"1331951791295115265","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EnwLGOIXMAEqxFY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EnwLGOIXMAEqxFY.jpg","url":"https:\/\/t.co\/7QuJQTFLPL","display_url":"pic.twitter.com\/7QuJQTFLPL","expanded_url":"https:\/\/twitter.com\/Helal40115268\/status\/1331951800753250305\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1331951791295115265,"id_str":"1331951791295115265","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EnwLGOIXMAEqxFY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EnwLGOIXMAEqxFY.jpg","url":"https:\/\/t.co\/7QuJQTFLPL","display_url":"pic.twitter.com\/7QuJQTFLPL","expanded_url":"https:\/\/twitter.com\/Helal40115268\/status\/1331951800753250305\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1080,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283300609626603520\/Fr-qko8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283300609626603520\/Fr-qko8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1283300317300490242\/1600640988","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":560591804,"id_str":"560591804","name":"Joshua - Lim","screen_name":"joshua_j_lim","location":"","description":"Head of Derivatives, - Genesis Trading. Formerly at Galaxy, Circle. Previous life: equity exotics, - systematic cash trading GS, UBS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11581,"friends_count":3166,"listed_count":233,"created_at":"Sun - Apr 22 21:00:22 +0000 2012","favourites_count":24578,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":285,"lang":null,"status":{"created_at":"Mon - Mar 21 13:05:50 +0000 2022","id":1505893444631289857,"id_str":"1505893444631289857","text":"RT - @anth0nybeaumont: \ud83c\udff0 CARPA (1\/3)\n\n12.45pm: \ud83d\udcb8 Derivs - (@christinenews, @tradeparadigm, @joshua_j_lim, @dariussitzl, @juliankoh)\n1.20pm: - \ud83c\udd95\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anth0nybeaumont","name":"Anthony - Beaumont\ud83d\udc83\ud83c\uddea\ud83c\uddf8 in Barca","id":1296124247425851392,"id_str":"1296124247425851392","indices":[3,19]},{"screen_name":"christinenews","name":"Christine - Lee","id":18812549,"id_str":"18812549","indices":[55,69]},{"screen_name":"tradeparadigm","name":"Paradigm","id":1084218164265844736,"id_str":"1084218164265844736","indices":[72,86]},{"screen_name":"joshua_j_lim","name":"Joshua - Lim","id":560591804,"id_str":"560591804","indices":[88,101]},{"screen_name":"dariussitzl","name":"Darius - Sit","id":865232333254807553,"id_str":"865232333254807553","indices":[103,115]},{"screen_name":"juliankoh","name":"Julian - \ud83e\udd39","id":787784121166733312,"id_str":"787784121166733312","indices":[117,127]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 09:34:28 +0000 2022","id":1505840256591048707,"id_str":"1505840256591048707","text":"\ud83c\udff0 - CARPA (1\/3)\n\n12.45pm: \ud83d\udcb8 Derivs (@christinenews, @tradeparadigm, - @joshua_j_lim, @dariussitzl, @juliankoh)\n1.20pm:\u2026 https:\/\/t.co\/jFpctRciTZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"christinenews","name":"Christine - Lee","id":18812549,"id_str":"18812549","indices":[34,48]},{"screen_name":"tradeparadigm","name":"Paradigm","id":1084218164265844736,"id_str":"1084218164265844736","indices":[51,65]},{"screen_name":"joshua_j_lim","name":"Joshua - Lim","id":560591804,"id_str":"560591804","indices":[67,80]},{"screen_name":"dariussitzl","name":"Darius - Sit","id":865232333254807553,"id_str":"865232333254807553","indices":[82,94]},{"screen_name":"juliankoh","name":"Julian - \ud83e\udd39","id":787784121166733312,"id_str":"787784121166733312","indices":[96,106]}],"urls":[{"url":"https:\/\/t.co\/jFpctRciTZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505840256591048707","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505840254724591618,"in_reply_to_status_id_str":"1505840254724591618","in_reply_to_user_id":1296124247425851392,"in_reply_to_user_id_str":"1296124247425851392","in_reply_to_screen_name":"anth0nybeaumont","geo":null,"coordinates":null,"place":{"id":"1a27537478dd8e38","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1a27537478dd8e38.json","place_type":"city","name":"Barcelona","full_name":"Barcelona, - Spain","country_code":"ES","country":"Spain","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[2.0524766,41.3170475],[2.2299781,41.3170475],[2.2299781,41.4682658],[2.0524766,41.4682658]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":26,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050566103695540224\/5uPAAJ2n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050566103695540224\/5uPAAJ2n_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2286898842,"id_str":"2286898842","name":"Patrick - Weatherald","screen_name":"pat_weath","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":1976,"listed_count":2,"created_at":"Sat - Jan 11 16:44:12 +0000 2014","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":146,"lang":null,"status":{"created_at":"Tue - Aug 03 03:40:44 +0000 2021","id":1422402024759603251,"id_str":"1422402024759603251","text":"Connor - flipping out at #kenoseelake #mmpp https:\/\/t.co\/UjdTnp1100","truncated":false,"entities":{"hashtags":[{"text":"kenoseelake","indices":[23,35]},{"text":"mmpp","indices":[36,41]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1422401168202944514,"id_str":"1422401168202944514","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1422401168202944514\/pu\/img\/UyBHwEPWRmYKd3Jl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1422401168202944514\/pu\/img\/UyBHwEPWRmYKd3Jl.jpg","url":"https:\/\/t.co\/UjdTnp1100","display_url":"pic.twitter.com\/UjdTnp1100","expanded_url":"https:\/\/twitter.com\/pat_weath\/status\/1422402024759603251\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1422401168202944514,"id_str":"1422401168202944514","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1422401168202944514\/pu\/img\/UyBHwEPWRmYKd3Jl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1422401168202944514\/pu\/img\/UyBHwEPWRmYKd3Jl.jpg","url":"https:\/\/t.co\/UjdTnp1100","display_url":"pic.twitter.com\/UjdTnp1100","expanded_url":"https:\/\/twitter.com\/pat_weath\/status\/1422402024759603251\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":16032,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1422401168202944514\/pu\/vid\/480x852\/IEZjhW7Xl-svC38z.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1422401168202944514\/pu\/vid\/320x568\/Nkgv5_fiHGt21uIE.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1422401168202944514\/pu\/vid\/720x1280\/rbO9zr31zbrNDCYx.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1422401168202944514\/pu\/pl\/lJK1JOQdt9bcM_zQ.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446090162519277569\/RmErvfEN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446090162519277569\/RmErvfEN_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16617359,"id_str":"16617359","name":"willmc_prod","screen_name":"willmc_prod","location":"Rochester, - IN","description":"Nice Guy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":324,"listed_count":0,"created_at":"Mon - Oct 06 18:17:32 +0000 2008","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":864,"lang":null,"status":{"created_at":"Thu - Mar 24 17:03:04 +0000 2022","id":1507040310253207553,"id_str":"1507040310253207553","text":"@GOPLeader - Your not in Florida,kissing butt?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506994274432425990,"in_reply_to_status_id_str":"1506994274432425990","in_reply_to_user_id":19739126,"in_reply_to_user_id_str":"19739126","in_reply_to_screen_name":"GOPLeader","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/757778262001004544\/eURDf0uz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/757778262001004544\/eURDf0uz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16617359\/1378549026","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1257003489630261248,"id_str":"1257003489630261248","name":"Shaka - bundu","screen_name":"LungstarM90","location":"Pretoria, South Africa","description":"P. - O. W. E. R","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":259,"friends_count":2740,"listed_count":0,"created_at":"Sun - May 03 17:46:25 +0000 2020","favourites_count":16868,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":156,"lang":null,"status":{"created_at":"Fri - Mar 25 07:43:16 +0000 2022","id":1507261820079415301,"id_str":"1507261820079415301","text":"RT - @_AfricanSoil: Scenes in Slovakia Parliament \n\nChaos there in Europe \ud83e\udd2d - https:\/\/t.co\/18wPyp7vwJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_AfricanSoil","name":"Sphithiphithi - Evaluator","id":1063336350,"id_str":"1063336350","indices":[3,16]}],"urls":[],"media":[{"id":1507260062003310593,"id_str":"1507260062003310593","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","url":"https:\/\/t.co\/18wPyp7vwJ","display_url":"pic.twitter.com\/18wPyp7vwJ","expanded_url":"https:\/\/twitter.com\/_AfricanSoil\/status\/1507260102625181703\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":636,"h":360,"resize":"fit"},"large":{"w":636,"h":360,"resize":"fit"},"small":{"w":636,"h":360,"resize":"fit"}},"source_status_id":1507260102625181703,"source_status_id_str":"1507260102625181703","source_user_id":1063336350,"source_user_id_str":"1063336350"}]},"extended_entities":{"media":[{"id":1507260062003310593,"id_str":"1507260062003310593","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","url":"https:\/\/t.co\/18wPyp7vwJ","display_url":"pic.twitter.com\/18wPyp7vwJ","expanded_url":"https:\/\/twitter.com\/_AfricanSoil\/status\/1507260102625181703\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":636,"h":360,"resize":"fit"},"large":{"w":636,"h":360,"resize":"fit"},"small":{"w":636,"h":360,"resize":"fit"}},"source_status_id":1507260102625181703,"source_status_id_str":"1507260102625181703","source_user_id":1063336350,"source_user_id_str":"1063336350","video_info":{"aspect_ratio":[53,30],"duration_millis":24357,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/pl\/Iaa423RsxKr1keIc.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/vid\/636x360\/T4nAspJdJYzNH83s.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/vid\/476x270\/FiEawTyMESN-shlp.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:36:26 +0000 2022","id":1507260102625181703,"id_str":"1507260102625181703","text":"Scenes - in Slovakia Parliament \n\nChaos there in Europe \ud83e\udd2d https:\/\/t.co\/18wPyp7vwJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507260062003310593,"id_str":"1507260062003310593","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","url":"https:\/\/t.co\/18wPyp7vwJ","display_url":"pic.twitter.com\/18wPyp7vwJ","expanded_url":"https:\/\/twitter.com\/_AfricanSoil\/status\/1507260102625181703\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":636,"h":360,"resize":"fit"},"large":{"w":636,"h":360,"resize":"fit"},"small":{"w":636,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507260062003310593,"id_str":"1507260062003310593","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507260062003310593\/pu\/img\/1cHtuTilMFlyBC8N.jpg","url":"https:\/\/t.co\/18wPyp7vwJ","display_url":"pic.twitter.com\/18wPyp7vwJ","expanded_url":"https:\/\/twitter.com\/_AfricanSoil\/status\/1507260102625181703\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":636,"h":360,"resize":"fit"},"large":{"w":636,"h":360,"resize":"fit"},"small":{"w":636,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[53,30],"duration_millis":24357,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/pl\/Iaa423RsxKr1keIc.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/vid\/636x360\/T4nAspJdJYzNH83s.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507260062003310593\/pu\/vid\/476x270\/FiEawTyMESN-shlp.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":640,"favorite_count":1282,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":640,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259077983412916224\/RgGKkk9n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259077983412916224\/RgGKkk9n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257003489630261248\/1636783448","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1129737649621745667,"id_str":"1129737649621745667","name":"stivoh\u270c\ufe0f","screen_name":"snandecha96","location":"Kisii, - Kenya","description":"\u176a\u144e\u15f4 \u15e9\u144e\u15de \u176a\u144e\u3057\u13a9","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":352,"listed_count":0,"created_at":"Sat - May 18 13:16:59 +0000 2019","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Sat - Feb 12 19:45:06 +0000 2022","id":1492585574636691463,"id_str":"1492585574636691463","text":"RT - @CFCDaily: \ud83d\udc51 https:\/\/t.co\/KJhsWBAxzU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CFCDaily","name":"CFCDaily - #NoToRicketts","id":794266768479027200,"id_str":"794266768479027200","indices":[3,12]}],"urls":[],"media":[{"id":1492585311611895808,"id_str":"1492585311611895808","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","url":"https:\/\/t.co\/KJhsWBAxzU","display_url":"pic.twitter.com\/KJhsWBAxzU","expanded_url":"https:\/\/twitter.com\/CFCDaily\/status\/1492585315642617861\/photo\/1","type":"photo","sizes":{"medium":{"w":1059,"h":834,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":536,"resize":"fit"},"large":{"w":1059,"h":834,"resize":"fit"}},"source_status_id":1492585315642617861,"source_status_id_str":"1492585315642617861","source_user_id":794266768479027200,"source_user_id_str":"794266768479027200"}]},"extended_entities":{"media":[{"id":1492585311611895808,"id_str":"1492585311611895808","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","url":"https:\/\/t.co\/KJhsWBAxzU","display_url":"pic.twitter.com\/KJhsWBAxzU","expanded_url":"https:\/\/twitter.com\/CFCDaily\/status\/1492585315642617861\/photo\/1","type":"photo","sizes":{"medium":{"w":1059,"h":834,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":536,"resize":"fit"},"large":{"w":1059,"h":834,"resize":"fit"}},"source_status_id":1492585315642617861,"source_status_id_str":"1492585315642617861","source_user_id":794266768479027200,"source_user_id_str":"794266768479027200"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 12 19:44:04 +0000 2022","id":1492585315642617861,"id_str":"1492585315642617861","text":"\ud83d\udc51 - https:\/\/t.co\/KJhsWBAxzU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1492585311611895808,"id_str":"1492585311611895808","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","url":"https:\/\/t.co\/KJhsWBAxzU","display_url":"pic.twitter.com\/KJhsWBAxzU","expanded_url":"https:\/\/twitter.com\/CFCDaily\/status\/1492585315642617861\/photo\/1","type":"photo","sizes":{"medium":{"w":1059,"h":834,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":536,"resize":"fit"},"large":{"w":1059,"h":834,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1492585311611895808,"id_str":"1492585311611895808","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLa6bs-XwAAByKT.jpg","url":"https:\/\/t.co\/KJhsWBAxzU","display_url":"pic.twitter.com\/KJhsWBAxzU","expanded_url":"https:\/\/twitter.com\/CFCDaily\/status\/1492585315642617861\/photo\/1","type":"photo","sizes":{"medium":{"w":1059,"h":834,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":536,"resize":"fit"},"large":{"w":1059,"h":834,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1423,"favorite_count":22163,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1423,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361393372351639556\/Vyc_REGB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361393372351639556\/Vyc_REGB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248065295916380161,"id_str":"1248065295916380161","name":"\ud83d\udc7b","screen_name":"GHOSTOFDASTREET","location":"SOUTHSIDE","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1219,"friends_count":1621,"listed_count":4,"created_at":"Thu - Apr 09 01:49:25 +0000 2020","favourites_count":6009,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8292,"lang":null,"status":{"created_at":"Thu - Mar 17 23:02:54 +0000 2022","id":1504594152092221445,"id_str":"1504594152092221445","text":"@nocontextfooty - \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nocontextfooty","name":"Out - Of Context Football","id":1111976778065723393,"id_str":"1111976778065723393","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter - for Mac\u003c\/a\u003e","in_reply_to_status_id":1504570681282998273,"in_reply_to_status_id_str":"1504570681282998273","in_reply_to_user_id":1111976778065723393,"in_reply_to_user_id_str":"1111976778065723393","in_reply_to_screen_name":"nocontextfooty","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258538504474288129\/qw0Uncvs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258538504474288129\/qw0Uncvs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248065295916380161\/1644889206","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":205384559,"id_str":"205384559","name":"spiritual - nature","screen_name":"clearwater737","location":"Oregon","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":787,"friends_count":4951,"listed_count":1,"created_at":"Wed - Oct 20 19:15:28 +0000 2010","favourites_count":285336,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":75871,"lang":null,"status":{"created_at":"Sat - Mar 26 08:59:38 +0000 2022","id":1507643427768311808,"id_str":"1507643427768311808","text":"RT - @HB_Texas: Where\u2019s Ginni? \n@GOP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HB_Texas","name":"HB - \ud83c\uddfa\ud83c\udde6","id":1303046541410807808,"id_str":"1303046541410807808","indices":[3,12]},{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[30,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:35:59 +0000 2022","id":1507335485743673344,"id_str":"1507335485743673344","text":"Where\u2019s - Ginni? \n@GOP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[16,20]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":58,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311175425683369985\/WQAb9ULI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311175425683369985\/WQAb9ULI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/205384559\/1517983957","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":411337865,"id_str":"411337865","name":"Stevn","screen_name":"seattlesdc","location":"Washington, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":640,"listed_count":0,"created_at":"Sun - Nov 13 08:45:43 +0000 2011","favourites_count":744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1636558643\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1636558643\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2784874126,"id_str":"2784874126","name":"Roz - Cassano","screen_name":"cassanry","location":"Rochester, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":129,"listed_count":0,"created_at":"Fri - Sep 26 03:05:37 +0000 2014","favourites_count":27,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":203120605,"id_str":"203120605","name":"Lisa - Childers","screen_name":"Llairdchilders","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":384,"listed_count":0,"created_at":"Fri - Oct 15 15:42:34 +0000 2010","favourites_count":8536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Sun - Mar 06 05:58:46 +0000 2022","id":1500350152049004545,"id_str":"1500350152049004545","text":"@MaryLTrump - Just did Doctors Without Borders","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1500292512417816582,"in_reply_to_status_id_str":"1500292512417816582","in_reply_to_user_id":1045110787,"in_reply_to_user_id_str":"1045110787","in_reply_to_screen_name":"MaryLTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1379380724,"id_str":"1379380724","name":"Brenda","screen_name":"brend1239","location":"Mombasa, - Kenya","description":"Simple african queen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":92,"listed_count":0,"created_at":"Thu - Apr 25 12:43:00 +0000 2013","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Fri - Dec 04 05:30:17 +0000 2020","id":1334731731635679235,"id_str":"1334731731635679235","text":"RT - @ProjectoftTrick: Follow everyone who retweets and likes this.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 02 13:30:07 +0000 2020","id":1334127707492290561,"id_str":"1334127707492290561","text":"Follow - everyone who retweets and likes this.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":78,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329459208782295041\/e5fZTNL-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329459208782295041\/e5fZTNL-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25083746,"id_str":"25083746","name":"catgad","screen_name":"kiwiwmn","location":"Santa - Monica, CA","description":"\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":865,"listed_count":0,"created_at":"Wed - Mar 18 14:47:15 +0000 2009","favourites_count":35470,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20070,"lang":null,"status":{"created_at":"Fri - Mar 25 14:05:10 +0000 2022","id":1507357928004620290,"id_str":"1507357928004620290","text":"RT - @perlmutations: Dear \u2066@tedcruz\u2069 https:\/\/t.co\/OxGEk4hlMn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"perlmutations","name":"Ron - Perlman","id":926620369,"id_str":"926620369","indices":[3,17]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[25,33]}],"urls":[],"media":[{"id":1506671497171009545,"id_str":"1506671497171009545","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","url":"https:\/\/t.co\/OxGEk4hlMn","display_url":"pic.twitter.com\/OxGEk4hlMn","expanded_url":"https:\/\/twitter.com\/perlmutations\/status\/1506671577198329858\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506671577198329858,"source_status_id_str":"1506671577198329858","source_user_id":926620369,"source_user_id_str":"926620369"}]},"extended_entities":{"media":[{"id":1506671497171009545,"id_str":"1506671497171009545","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","url":"https:\/\/t.co\/OxGEk4hlMn","display_url":"pic.twitter.com\/OxGEk4hlMn","expanded_url":"https:\/\/twitter.com\/perlmutations\/status\/1506671577198329858\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506671577198329858,"source_status_id_str":"1506671577198329858","source_user_id":926620369,"source_user_id_str":"926620369","video_info":{"aspect_ratio":[9,16],"duration_millis":48770,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/pl\/RZYuTmMnfwLcRSzk.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/480x852\/NJJ_EQQCkIltvqj6.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/320x568\/-7p9AMDxGHqInp2-.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/720x1280\/a4YwUAwzu8nsKkBb.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:37:51 +0000 2022","id":1506671577198329858,"id_str":"1506671577198329858","text":"Dear - \u2066@tedcruz\u2069 https:\/\/t.co\/OxGEk4hlMn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[6,14]}],"urls":[],"media":[{"id":1506671497171009545,"id_str":"1506671497171009545","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","url":"https:\/\/t.co\/OxGEk4hlMn","display_url":"pic.twitter.com\/OxGEk4hlMn","expanded_url":"https:\/\/twitter.com\/perlmutations\/status\/1506671577198329858\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506671497171009545,"id_str":"1506671497171009545","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506671497171009545\/pu\/img\/vuaLRPj38KoYidmG.jpg","url":"https:\/\/t.co\/OxGEk4hlMn","display_url":"pic.twitter.com\/OxGEk4hlMn","expanded_url":"https:\/\/twitter.com\/perlmutations\/status\/1506671577198329858\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":48770,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/pl\/RZYuTmMnfwLcRSzk.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/480x852\/NJJ_EQQCkIltvqj6.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/320x568\/-7p9AMDxGHqInp2-.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506671497171009545\/pu\/vid\/720x1280\/a4YwUAwzu8nsKkBb.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5641,"favorite_count":24735,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5641,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323900856136134658\/Vt4R6dkT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323900856136134658\/Vt4R6dkT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25083746\/1573488782","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1239073728362770432,"id_str":"1239073728362770432","name":"Rouglass","screen_name":"Rouglass1","location":"","description":"piano - dude","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":992,"listed_count":0,"created_at":"Sun - Mar 15 06:20:46 +0000 2020","favourites_count":264,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":807,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239074267129470978\/nvqpcMQC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239074267129470978\/nvqpcMQC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3984391275,"id_str":"3984391275","name":"Sriyan - Samarasinghe","screen_name":"SriyanSamarasi1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":347,"listed_count":0,"created_at":"Sun - Oct 18 04:21:29 +0000 2015","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Dec 02 09:17:59 +0000 2021","id":1466335827382968325,"id_str":"1466335827382968325","text":"@crewforshoots - @kulanthisilva It all changes once you have power. Look at Wimal Weerawansa - he was once a JVP comrade.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"crewforshoots","name":"Priyanga|CrewForShoots","id":71199298,"id_str":"71199298","indices":[0,14]},{"screen_name":"kulanthisilva","name":"Kulanthi - Silva","id":1193093000705953792,"id_str":"1193093000705953792","indices":[15,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1466314642414706691,"in_reply_to_status_id_str":"1466314642414706691","in_reply_to_user_id":71199298,"in_reply_to_user_id_str":"71199298","in_reply_to_screen_name":"crewforshoots","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1168428534697791488,"id_str":"1168428534697791488","name":"Sufyan - Goraya","screen_name":"SufyanGoraya44","location":"","description":"Economist - to be | member of @jamiatpk | Punjabi | Pioneer | Student at Punjab university","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":532,"listed_count":0,"created_at":"Mon - Sep 02 07:40:52 +0000 2019","favourites_count":2572,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":177,"lang":null,"status":{"created_at":"Sat - Dec 18 17:53:51 +0000 2021","id":1472263855191564300,"id_str":"1472263855191564300","text":"RT - @ShujaAhmed159: #IJTPrideOfPU https:\/\/t.co\/5oYNJA4Z2N","truncated":false,"entities":{"hashtags":[{"text":"IJTPrideOfPU","indices":[19,32]}],"symbols":[],"user_mentions":[{"screen_name":"ShujaAhmed159","name":"Shuja - Ahmed","id":1200398703238008833,"id_str":"1200398703238008833","indices":[3,17]}],"urls":[],"media":[{"id":1472234414499414021,"id_str":"1472234414499414021","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","url":"https:\/\/t.co\/5oYNJA4Z2N","display_url":"pic.twitter.com\/5oYNJA4Z2N","expanded_url":"https:\/\/twitter.com\/ShujaAhmed159\/status\/1472234428177043457\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1472234428177043457,"source_status_id_str":"1472234428177043457","source_user_id":1200398703238008833,"source_user_id_str":"1200398703238008833"}]},"extended_entities":{"media":[{"id":1472234414499414021,"id_str":"1472234414499414021","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","url":"https:\/\/t.co\/5oYNJA4Z2N","display_url":"pic.twitter.com\/5oYNJA4Z2N","expanded_url":"https:\/\/twitter.com\/ShujaAhmed159\/status\/1472234428177043457\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1472234428177043457,"source_status_id_str":"1472234428177043457","source_user_id":1200398703238008833,"source_user_id_str":"1200398703238008833"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 18 15:56:55 +0000 2021","id":1472234428177043457,"id_str":"1472234428177043457","text":"#IJTPrideOfPU - https:\/\/t.co\/5oYNJA4Z2N","truncated":false,"entities":{"hashtags":[{"text":"IJTPrideOfPU","indices":[0,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1472234414499414021,"id_str":"1472234414499414021","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","url":"https:\/\/t.co\/5oYNJA4Z2N","display_url":"pic.twitter.com\/5oYNJA4Z2N","expanded_url":"https:\/\/twitter.com\/ShujaAhmed159\/status\/1472234428177043457\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1472234414499414021,"id_str":"1472234414499414021","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FG5tZlZXwAUw63z.jpg","url":"https:\/\/t.co\/5oYNJA4Z2N","display_url":"pic.twitter.com\/5oYNJA4Z2N","expanded_url":"https:\/\/twitter.com\/ShujaAhmed159\/status\/1472234428177043457\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349231599230070784\/J8cNO8Yz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349231599230070784\/J8cNO8Yz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":972524100466954240,"id_str":"972524100466954240","name":"Rafaela - Soares","screen_name":"Rafaela50398602","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":332,"listed_count":0,"created_at":"Sat - Mar 10 17:26:29 +0000 2018","favourites_count":31936,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Mon - Mar 21 14:16:44 +0000 2022","id":1505911288421130241,"id_str":"1505911288421130241","text":"@kimpaim - #FelizAniversarioBolsonaro","truncated":false,"entities":{"hashtags":[{"text":"FelizAniversarioBolsonaro","indices":[9,35]}],"symbols":[],"user_mentions":[{"screen_name":"kimpaim","name":"Kim - D. Paim","id":75264300,"id_str":"75264300","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505899232313569281,"in_reply_to_status_id_str":"1505899232313569281","in_reply_to_user_id":75264300,"in_reply_to_user_id_str":"75264300","in_reply_to_screen_name":"kimpaim","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118626311898116096\/o2w1Bq1M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118626311898116096\/o2w1Bq1M_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1217510826598207488,"id_str":"1217510826598207488","name":"Md - Sabbir Hossain","screen_name":"MdSabbi03943249","location":"Khulna, Bangladesh","description":"Life - is short but art is long","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":504,"listed_count":0,"created_at":"Wed - Jan 15 18:16:31 +0000 2020","favourites_count":48,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sun - Oct 03 18:10:13 +0000 2021","id":1444726497713868802,"id_str":"1444726497713868802","text":"https:\/\/t.co\/t5QTzxaCFl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t5QTzxaCFl","expanded_url":"https:\/\/youtu.be\/RwxC5J8LI4Q","display_url":"youtu.be\/RwxC5J8LI4Q","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"010ded2550edd315","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/010ded2550edd315.json","place_type":"admin","name":"Khulna","full_name":"Khulna, - Bangladesh","country_code":"BD","country":"Bangladesh","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[88.5631503,21.6526663],[90.0306702,21.6526663],[90.0306702,24.1659603],[88.5631503,24.1659603]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217511120614780928\/K2E5sCtC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217511120614780928\/K2E5sCtC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217510826598207488\/1601099462","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2853082531,"id_str":"2853082531","name":"marie","screen_name":"iced_americano9","location":"Ireland","description":"Je - vous aime bien","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":180,"friends_count":4052,"listed_count":0,"created_at":"Sun - Oct 12 10:58:56 +0000 2014","favourites_count":131180,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41031,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489930740393742336\/2fSl-8JL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489930740393742336\/2fSl-8JL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853082531\/1644062143","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780555698350329856,"id_str":"780555698350329856","name":"Josefata - CATI","screen_name":"josefata_cati","location":"Fiji","description":"I love - pineapples \ud83c\udf4d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":736,"listed_count":0,"created_at":"Mon - Sep 26 23:52:35 +0000 2016","favourites_count":5383,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":379,"lang":null,"status":{"created_at":"Wed - Nov 24 09:50:29 +0000 2021","id":1463444906328813574,"id_str":"1463444906328813574","text":"@LellyNai - Hahahaha lens of faith taciqu! Even Nebuchadnezzar was used by God for His - purposes \ud83d\ude0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LellyNai","name":"SNL","id":41568610,"id_str":"41568610","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1463248635643121665,"in_reply_to_status_id_str":"1463248635643121665","in_reply_to_user_id":41568610,"in_reply_to_user_id_str":"41568610","in_reply_to_screen_name":"LellyNai","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335022971887357955\/Wh7XmySA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335022971887357955\/Wh7XmySA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780555698350329856\/1607129297","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3286652520,"id_str":"3286652520","name":"Dana","screen_name":"DanaOtto5","location":"Sacramento, - CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":196,"listed_count":0,"created_at":"Tue - Jul 21 17:14:55 +0000 2015","favourites_count":163,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Sat - Oct 31 16:45:20 +0000 2020","id":1322580423717781504,"id_str":"1322580423717781504","text":"Boo - @cincinattizoo__ https:\/\/t.co\/oDQbUYL16r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cincinattizoo__","name":"Cincinatti - Zoo","id":768319457030729728,"id_str":"768319457030729728","indices":[4,20]}],"urls":[],"media":[{"id":1322580419800297473,"id_str":"1322580419800297473","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/Elq_4m0VcAEVhkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Elq_4m0VcAEVhkQ.jpg","url":"https:\/\/t.co\/oDQbUYL16r","display_url":"pic.twitter.com\/oDQbUYL16r","expanded_url":"https:\/\/twitter.com\/DanaOtto5\/status\/1322580423717781504\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1322580419800297473,"id_str":"1322580419800297473","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/Elq_4m0VcAEVhkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Elq_4m0VcAEVhkQ.jpg","url":"https:\/\/t.co\/oDQbUYL16r","display_url":"pic.twitter.com\/oDQbUYL16r","expanded_url":"https:\/\/twitter.com\/DanaOtto5\/status\/1322580423717781504\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351043832868179969\/qa8eEGor_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351043832868179969\/qa8eEGor_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3286652520\/1593796240","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":766843524524277760,"id_str":"766843524524277760","name":"SHE24","screen_name":"SHE24e","location":"Uruguay","description":"Moving - towards freedom and democracy will bury Marxism-Leninism in the dust of history. - \"-Reagan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":2097,"listed_count":0,"created_at":"Sat - Aug 20 03:45:18 +0000 2016","favourites_count":24377,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":812,"lang":null,"status":{"created_at":"Thu - Mar 24 15:31:45 +0000 2022","id":1507017331486064649,"id_str":"1507017331486064649","text":"@__Inty__ - \u54c8\u54c8\u54c8 https:\/\/t.co\/KSjHnkHNqY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"__Inty__","name":"Inty","id":1027764083565711360,"id_str":"1027764083565711360","indices":[0,9]}],"urls":[],"media":[{"id":1507017325119082509,"id_str":"1507017325119082509","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoARc4VEA04lUC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoARc4VEA04lUC.jpg","url":"https:\/\/t.co\/KSjHnkHNqY","display_url":"pic.twitter.com\/KSjHnkHNqY","expanded_url":"https:\/\/twitter.com\/SHE24e\/status\/1507017331486064649\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":404,"resize":"fit"},"medium":{"w":360,"h":404,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507017325119082509,"id_str":"1507017325119082509","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoARc4VEA04lUC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoARc4VEA04lUC.jpg","url":"https:\/\/t.co\/KSjHnkHNqY","display_url":"pic.twitter.com\/KSjHnkHNqY","expanded_url":"https:\/\/twitter.com\/SHE24e\/status\/1507017331486064649\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":360,"h":404,"resize":"fit"},"medium":{"w":360,"h":404,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507016489215266823,"in_reply_to_status_id_str":"1507016489215266823","in_reply_to_user_id":1027764083565711360,"in_reply_to_user_id_str":"1027764083565711360","in_reply_to_screen_name":"__Inty__","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319307152054366209\/rvbutFHL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319307152054366209\/rvbutFHL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766843524524277760\/1563099369","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299234409292484608,"id_str":"1299234409292484608","name":"Chloe","screen_name":"ChloeTXdemocrat","location":"Dallas, - TX","description":"Latina Democrat in Texas and Dallas Cowboys fan \ud83d\ude4c\ud83c\udffc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":548,"listed_count":0,"created_at":"Fri - Aug 28 06:37:07 +0000 2020","favourites_count":23668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":226,"lang":null,"status":{"created_at":"Tue - Feb 22 02:25:35 +0000 2022","id":1495947848348848130,"id_str":"1495947848348848130","text":"RT - @dallasnews: \u2018It was awesome\u2019: Leon Bridges\u2019 street performance - stops shoppers in Bishop Arts District https:\/\/t.co\/RZwPhkMjZI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dallasnews","name":"Dallas - Morning News","id":15679641,"id_str":"15679641","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/RZwPhkMjZI","expanded_url":"https:\/\/buff.ly\/3H2uc61","display_url":"buff.ly\/3H2uc61","indices":[106,129]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 22 02:08:01 +0000 2022","id":1495943427321696256,"id_str":"1495943427321696256","text":"\u2018It - was awesome\u2019: Leon Bridges\u2019 street performance stops shoppers in - Bishop Arts District https:\/\/t.co\/RZwPhkMjZI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RZwPhkMjZI","expanded_url":"https:\/\/buff.ly\/3H2uc61","display_url":"buff.ly\/3H2uc61","indices":[90,113]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":28,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321655549784674306\/_gwW8EIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321655549784674306\/_gwW8EIX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245607047434874880,"id_str":"1245607047434874880","name":"M-j-k","screen_name":"DarkroomDoom","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":147,"listed_count":0,"created_at":"Thu - Apr 02 07:00:51 +0000 2020","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Feb 03 02:58:58 +0000 2021","id":1356799309241581570,"id_str":"1356799309241581570","text":"@tylermaynard111 - @StephenKing And Klaus wants to know where Jake has been!? The sidewalk has - been lonely without h\u2026 https:\/\/t.co\/eg6a3wFjXd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tylermaynard111","name":"Tyler - Maynard","id":1280578502778118144,"id_str":"1280578502778118144","indices":[0,16]},{"screen_name":"StephenKing","name":"Stephen - King","id":2233154425,"id_str":"2233154425","indices":[17,29]}],"urls":[{"url":"https:\/\/t.co\/eg6a3wFjXd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1356799309241581570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1356795457813512192,"in_reply_to_status_id_str":"1356795457813512192","in_reply_to_user_id":1280578502778118144,"in_reply_to_user_id_str":"1280578502778118144","in_reply_to_screen_name":"tylermaynard111","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1039188098553442304,"id_str":"1039188098553442304","name":"RandyAddison","screen_name":"RandyA_photo","location":"Florida, - USA","description":"Opinionated artist, photographer, and habitual squinter.","url":"https:\/\/t.co\/BEuk6NJw18","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/BEuk6NJw18","expanded_url":"https:\/\/shor.by\/mIlZ","display_url":"shor.by\/mIlZ","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":17797,"friends_count":524,"listed_count":42,"created_at":"Mon - Sep 10 16:25:24 +0000 2018","favourites_count":26020,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1839,"lang":null,"status":{"created_at":"Sat - Mar 26 03:54:22 +0000 2022","id":1507566605391249409,"id_str":"1507566605391249409","text":"God - I''m tired of faux intellectuals. Just because it crosses your mind doesn''t - mean it''s holy and transcendent.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336715867141369857\/L7hH6Uoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336715867141369857\/L7hH6Uoy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039188098553442304\/1567610859","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":111180229,"id_str":"111180229","name":"Fayyadh - Adnan","screen_name":"myyadh","location":"Kota tinggi, johor","description":"Fayyadh - Adnan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":198,"friends_count":2329,"listed_count":0,"created_at":"Thu - Feb 04 01:53:07 +0000 2010","favourites_count":50170,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10473,"lang":null,"status":{"created_at":"Sun - Mar 20 17:04:09 +0000 2022","id":1505591032099979268,"id_str":"1505591032099979268","text":"RT - @Astro_Gempak: Jom saksikan drama terbaharu yang bakal mencetus fenomena #JanganMenangisCinta - adaptasi novel karya agung #SitiRosmizah l\u2026","truncated":false,"entities":{"hashtags":[{"text":"JanganMenangisCinta","indices":[76,96]},{"text":"SitiRosmizah","indices":[124,137]}],"symbols":[],"user_mentions":[{"screen_name":"Astro_Gempak","name":"Astro - Gempak","id":607967466,"id_str":"607967466","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 06:55:51 +0000 2022","id":1504713173462519809,"id_str":"1504713173462519809","text":"Jom - saksikan drama terbaharu yang bakal mencetus fenomena #JanganMenangisCinta - adaptasi novel karya agung\u2026 https:\/\/t.co\/Zs2D3ywwNx","truncated":true,"entities":{"hashtags":[{"text":"JanganMenangisCinta","indices":[58,78]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Zs2D3ywwNx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504713173462519809","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":221,"favorite_count":1783,"favorited":false,"retweeted":false,"scopes":{"followers":false},"lang":"in"},"is_quote_status":false,"retweet_count":221,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393839493006827521\/CAjefFbt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393839493006827521\/CAjefFbt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111180229\/1521181754","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":767926866,"id_str":"767926866","name":"Debbie - Smelley","screen_name":"Deejay821821","location":"Metro Atlanta","description":"Retired - high school English teacher, journalist, amateur gourmet cook, ponderer of - the universe.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":574,"friends_count":834,"listed_count":9,"created_at":"Sun - Aug 19 17:32:28 +0000 2012","favourites_count":60333,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38798,"lang":null,"status":{"created_at":"Sat - Mar 26 02:09:59 +0000 2022","id":1507540335030853640,"id_str":"1507540335030853640","text":"RT - @tsmit103: @NoLieWithBTC The Minority Ranking Member: Gym Jordan, (who did - nothing to protect his team of young wrestlers from the abus\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tsmit103","name":"SilentMajorityNoLonger","id":424234218,"id_str":"424234218","indices":[3,12]},{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[14,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:07:12 +0000 2022","id":1507464137965666304,"id_str":"1507464137965666304","text":"@NoLieWithBTC - The Minority Ranking Member: Gym Jordan, (who did nothing to protect his - team of young wrestlers fro\u2026 https:\/\/t.co\/CyCK0jnWpH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/CyCK0jnWpH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507464137965666304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507424721264070656,"in_reply_to_status_id_str":"1507424721264070656","in_reply_to_user_id":1268223690480615424,"in_reply_to_user_id_str":"1268223690480615424","in_reply_to_screen_name":"NoLieWithBTC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":40,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000401081100\/59b6dfebbc3c224229c073adfafa17b1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000401081100\/59b6dfebbc3c224229c073adfafa17b1_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2931357175,"id_str":"2931357175","name":"Rusdi - Anugerah","screen_name":"kycotwilde","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":311,"listed_count":0,"created_at":"Mon - Dec 15 15:19:10 +0000 2014","favourites_count":8613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10444,"lang":null,"status":{"created_at":"Thu - Mar 24 18:06:46 +0000 2022","id":1507056340987879425,"id_str":"1507056340987879425","text":"RT - @mahasiswikupu2: Mikirin apesi ya gw. Bengong mulu jiwanya kea nyangkut","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mahasiswikupu2","name":"dea - \ud83d\ude37","id":864120714739068928,"id_str":"864120714739068928","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:46:34 +0000 2022","id":1507036158533931008,"id_str":"1507036158533931008","text":"Mikirin - apesi ya gw. Bengong mulu jiwanya kea nyangkut","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":40,"favorited":false,"retweeted":false,"lang":"in"},"is_quote_status":false,"retweet_count":36,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504548357137580032\/gJiKCSeK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504548357137580032\/gJiKCSeK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2931357175\/1637186028","profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25081451,"id_str":"25081451","name":"Saleemul - Huq","screen_name":"SaleemulHuq","location":"London, UK","description":"Director, - @ICCCAD and Senior Associate @IIED. Work on adaptation to climate change. - Views presented are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49197,"friends_count":48062,"listed_count":996,"created_at":"Wed - Mar 18 14:32:31 +0000 2009","favourites_count":996,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":331044,"lang":null,"status":{"created_at":"Fri - Mar 25 12:10:51 +0000 2022","id":1507329160599175170,"id_str":"1507329160599175170","text":"RT - @FFFinBD: \ud83d\udccdBhola\nGlobal Climate Strike\n#PeopleNotProfit #FridaysForFuture - @GretaThunberg https:\/\/t.co\/x1B8fBJF4B","truncated":false,"entities":{"hashtags":[{"text":"PeopleNotProfit","indices":[42,58]},{"text":"FridaysForFuture","indices":[59,76]}],"symbols":[],"user_mentions":[{"screen_name":"FFFinBD","name":"Fridays - For Future Bangladesh","id":1170216594414243840,"id_str":"1170216594414243840","indices":[3,11]},{"screen_name":"GretaThunberg","name":"Greta - Thunberg","id":1006419421244678144,"id_str":"1006419421244678144","indices":[77,91]}],"urls":[],"media":[{"id":1507203059406962695,"id_str":"1507203059406962695","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":705,"resize":"fit"},"large":{"w":1600,"h":940,"resize":"fit"},"small":{"w":680,"h":400,"resize":"fit"}},"source_status_id":1507203512693768192,"source_status_id_str":"1507203512693768192","source_user_id":1170216594414243840,"source_user_id_str":"1170216594414243840"}]},"extended_entities":{"media":[{"id":1507203059406962695,"id_str":"1507203059406962695","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":705,"resize":"fit"},"large":{"w":1600,"h":940,"resize":"fit"},"small":{"w":680,"h":400,"resize":"fit"}},"source_status_id":1507203512693768192,"source_status_id_str":"1507203512693768192","source_user_id":1170216594414243840,"source_user_id_str":"1170216594414243840"},{"id":1507203059406974985,"id_str":"1507203059406974985","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVsAkriNu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVsAkriNu.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1600,"h":899,"resize":"fit"}},"source_status_id":1507203512693768192,"source_status_id_str":"1507203512693768192","source_user_id":1170216594414243840,"source_user_id_str":"1170216594414243840"},{"id":1507203059423752193,"id_str":"1507203059423752193","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnFVsAEVxws.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnFVsAEVxws.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":411,"resize":"fit"},"large":{"w":1600,"h":967,"resize":"fit"},"medium":{"w":1200,"h":725,"resize":"fit"}},"source_status_id":1507203512693768192,"source_status_id_str":"1507203512693768192","source_user_id":1170216594414243840,"source_user_id_str":"1170216594414243840"},{"id":1507203060107386883,"id_str":"1507203060107386883","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMpoVIAMWJDe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMpoVIAMWJDe.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":500,"resize":"fit"},"large":{"w":1600,"h":1177,"resize":"fit"},"medium":{"w":1200,"h":883,"resize":"fit"}},"source_status_id":1507203512693768192,"source_status_id_str":"1507203512693768192","source_user_id":1170216594414243840,"source_user_id_str":"1170216594414243840"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:51:34 +0000 2022","id":1507203512693768192,"id_str":"1507203512693768192","text":"\ud83d\udccdBhola\nGlobal - Climate Strike\n#PeopleNotProfit #FridaysForFuture @GretaThunberg https:\/\/t.co\/x1B8fBJF4B","truncated":false,"entities":{"hashtags":[{"text":"PeopleNotProfit","indices":[29,45]},{"text":"FridaysForFuture","indices":[46,63]}],"symbols":[],"user_mentions":[{"screen_name":"GretaThunberg","name":"Greta - Thunberg","id":1006419421244678144,"id_str":"1006419421244678144","indices":[64,78]}],"urls":[],"media":[{"id":1507203059406962695,"id_str":"1507203059406962695","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":705,"resize":"fit"},"large":{"w":1600,"h":940,"resize":"fit"},"small":{"w":680,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507203059406962695,"id_str":"1507203059406962695","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVgAc0-n7.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":705,"resize":"fit"},"large":{"w":1600,"h":940,"resize":"fit"},"small":{"w":680,"h":400,"resize":"fit"}}},{"id":1507203059406974985,"id_str":"1507203059406974985","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnBVsAkriNu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnBVsAkriNu.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"large":{"w":1600,"h":899,"resize":"fit"}}},{"id":1507203059423752193,"id_str":"1507203059423752193","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMnFVsAEVxws.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMnFVsAEVxws.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":411,"resize":"fit"},"large":{"w":1600,"h":967,"resize":"fit"},"medium":{"w":1200,"h":725,"resize":"fit"}}},{"id":1507203060107386883,"id_str":"1507203060107386883","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqpMpoVIAMWJDe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqpMpoVIAMWJDe.jpg","url":"https:\/\/t.co\/x1B8fBJF4B","display_url":"pic.twitter.com\/x1B8fBJF4B","expanded_url":"https:\/\/twitter.com\/FFFinBD\/status\/1507203512693768192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":500,"resize":"fit"},"large":{"w":1600,"h":1177,"resize":"fit"},"medium":{"w":1200,"h":883,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":273,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":90,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/101478399\/saleem_huq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/101478399\/saleem_huq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312065373068423170,"id_str":"1312065373068423170","name":"GREEN - \ud83c\udf0e NEWS","screen_name":"GREENNE23997803","location":"","description":"GREEN - \ud83c\udf0e NEWS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":1390,"listed_count":4,"created_at":"Fri - Oct 02 16:23:08 +0000 2020","favourites_count":2245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4480,"lang":null,"status":{"created_at":"Sat - Mar 26 02:21:49 +0000 2022","id":1507543315528372224,"id_str":"1507543315528372224","text":"GREEN - \ud83c\udf0e NEWS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507543006487855105,"in_reply_to_status_id_str":"1507543006487855105","in_reply_to_user_id":1312065373068423170,"in_reply_to_user_id_str":"1312065373068423170","in_reply_to_screen_name":"GREENNE23997803","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410829555464429575\/TZlxZgkv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410829555464429575\/TZlxZgkv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1503716389,"id_str":"1503716389","name":"Angela - Calvillo","screen_name":"ACCalvillo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":775,"listed_count":3,"created_at":"Tue - Jun 11 14:24:25 +0000 2013","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Jan 11 05:28:33 +0000 2021","id":1348502031879737349,"id_str":"1348502031879737349","text":"RT - @sfbos: The 2021 Board Committee Assignments have been announced. Effective - immediately. More info: https:\/\/t.co\/Cy01UKUN4n","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sfbos","name":"Board - of Supervisors","id":16887428,"id_str":"16887428","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/Cy01UKUN4n","expanded_url":"https:\/\/bit.ly\/35shjSZ","display_url":"bit.ly\/35shjSZ","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 11 03:02:11 +0000 2021","id":1348465199322333184,"id_str":"1348465199322333184","text":"The - 2021 Board Committee Assignments have been announced. Effective immediately. More - info: https:\/\/t.co\/Cy01UKUN4n","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Cy01UKUN4n","expanded_url":"https:\/\/bit.ly\/35shjSZ","display_url":"bit.ly\/35shjSZ","indices":[94,117]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1104586637798002689,"id_str":"1104586637798002689","name":"Kristopher - Cherney","screen_name":"KristopherCher6","location":"","description":"nothing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":110,"listed_count":0,"created_at":"Sun - Mar 10 03:35:51 +0000 2019","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1547,"lang":null,"status":{"created_at":"Tue - Feb 22 02:11:47 +0000 2022","id":1495944376094281731,"id_str":"1495944376094281731","text":"@baltimoresun - In his head like lance and McGuire Sosa he''s done nothing wrong and will - continue to do it until they ban him for life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baltimoresun","name":"The - Baltimore Sun","id":8861752,"id_str":"8861752","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495882571749728259,"in_reply_to_status_id_str":"1495882571749728259","in_reply_to_user_id":8861752,"in_reply_to_user_id_str":"8861752","in_reply_to_screen_name":"baltimoresun","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362309945375551490\/6eUPiaDJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362309945375551490\/6eUPiaDJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1104586637798002689\/1613635049","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":916486273740660736,"id_str":"916486273740660736","name":"Ableone","screen_name":"albertejiagwa","location":"California, - USA","description":"Soccer Sports NBA WWE Tennis MMA Track & Field Tennis - MMA Basketball Premier League Basketball MMA Soccer Sports NBA WWE NBA Track - & Field Basketball Tennis W","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":166,"friends_count":4506,"listed_count":0,"created_at":"Sat - Oct 07 02:12:09 +0000 2017","favourites_count":2533,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1014,"lang":null,"status":{"created_at":"Mon - Mar 14 03:09:37 +0000 2022","id":1503206688282738689,"id_str":"1503206688282738689","text":"RT - @mommamia1217: If you\u2019re blaming Biden for high gas prices-\n\nYou are - broadcasting your ignorance AND APATHY.\n\n(Hint: don\u2019t ever claim to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mommamia1217","name":"\u2764\ufe0f\ud83e\udde1\ud83d\udc9b\u15f0ia\ud83d\udc9a\ud83d\udc99\ud83d\udc9c","id":271075882,"id_str":"271075882","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 23:40:29 +0000 2022","id":1503154059334750210,"id_str":"1503154059334750210","text":"If - you\u2019re blaming Biden for high gas prices-\n\nYou are broadcasting your - ignorance AND APATHY.\n\n(Hint: don\u2019t ever cl\u2026 https:\/\/t.co\/NWktIg9AIM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NWktIg9AIM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503154059334750210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":461,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458806514802573320\/WXsvlmoh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458806514802573320\/WXsvlmoh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916486273740660736\/1603669717","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3354107293,"id_str":"3354107293","name":"Bronze - Girl","screen_name":"iambronzegirl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":572,"listed_count":0,"created_at":"Thu - Aug 27 00:54:04 +0000 2015","favourites_count":7692,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":115,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636704553493135362\/icjfuvhh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636704553493135362\/icjfuvhh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":394810472,"id_str":"394810472","name":"Robert - Iorizzo","screen_name":"RIorizzo","location":"New York","description":"Technology - and Operations executive specializing in small to midsize enterprises and - new entrants.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":1605,"listed_count":1,"created_at":"Thu - Oct 20 17:20:35 +0000 2011","favourites_count":2503,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3498,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2260959052\/Casual_very_close_Headshot_RNI_2011-09-10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2260959052\/Casual_very_close_Headshot_RNI_2011-09-10_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":140103339,"id_str":"140103339","name":"Dog - Dog Day","screen_name":"ekwok888","location":"","description":"http:\/\/t.co\/Bi9ZOxfdMU - is your #1 wholesale source for Quality Pet Products. We offer over 1,000 - high quality pets goods at wholesale prices.","url":"http:\/\/t.co\/9QzOeLt9Zo","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9QzOeLt9Zo","expanded_url":"http:\/\/www.dogdogwholesale.com","display_url":"dogdogwholesale.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/Bi9ZOxfdMU","expanded_url":"http:\/\/DogDogWholesale.com","display_url":"DogDogWholesale.com","indices":[0,22]}]}},"protected":false,"followers_count":11,"friends_count":83,"listed_count":0,"created_at":"Tue - May 04 15:52:21 +0000 2010","favourites_count":7128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Sep 10 12:02:27 +0000 2021","id":1436299024466788355,"id_str":"1436299024466788355","text":"@weirdchelsea - That''s me! Please add me!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"weirdchelsea","name":"WeirdChelsea","id":718097892662255616,"id_str":"718097892662255616","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1436142831312248834,"in_reply_to_status_id_str":"1436142831312248834","in_reply_to_user_id":718097892662255616,"in_reply_to_user_id_str":"718097892662255616","in_reply_to_screen_name":"weirdchelsea","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258726727\/CSC_1481s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258726727\/CSC_1481s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4129502781,"id_str":"4129502781","name":"Young - Beef","screen_name":"eddiedog9881","location":"","description":"I''ve known - @IamJHatter since elementary school, he''s spicy. Kayleigh McMillan is spicy - as well. Abby Millard is also spicy @natkate003","url":"https:\/\/t.co\/LfLVHAYUCW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/LfLVHAYUCW","expanded_url":"http:\/\/thespicyone.wixsite.com","display_url":"thespicyone.wixsite.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":491,"friends_count":1835,"listed_count":5,"created_at":"Fri - Nov 06 21:36:07 +0000 2015","favourites_count":52672,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31864,"lang":null,"status":{"created_at":"Fri - Mar 26 00:41:52 +0000 2021","id":1375246591389544454,"id_str":"1375246591389544454","text":"@HailBuilz - Thanks for the follow back","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"67d92742f1ebf307","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/67d92742f1ebf307.json","place_type":"admin","name":"Michigan","full_name":"Michigan, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-90.4181075,41.696088],[-82.122971,41.696088],[-82.122971,48.306272],[-90.4181075,48.306272]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291572380129787906\/rM-6PRip_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291572380129787906\/rM-6PRip_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4129502781\/1596769397","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":603897916,"id_str":"603897916","name":"AKA","screen_name":"yallstin","location":"TX","description":"just - looking for a place to call home | EN\/ES\/PT | rt is NOT an endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":105,"friends_count":4931,"listed_count":0,"created_at":"Sat - Jun 09 20:24:35 +0000 2012","favourites_count":32603,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":556,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421130130567610368\/OHeO8Du4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421130130567610368\/OHeO8Du4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603897916\/1580839327","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":447682206,"id_str":"447682206","name":"jackle - golxz","screen_name":"Jackiedejay","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":132,"listed_count":1,"created_at":"Tue - Dec 27 04:51:35 +0000 2011","favourites_count":89439,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18767,"lang":null,"status":{"created_at":"Sat - Mar 26 02:30:50 +0000 2022","id":1507545583933747200,"id_str":"1507545583933747200","text":"RT - @MarkHertling: Seeing @potus chewing on pizza and BS\u2019ing with @82ndABNDiv - troopers - after spending the last two days coordinating with\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarkHertling","name":"Mark - Hertling","id":4484115214,"id_str":"4484115214","indices":[3,16]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[25,31]},{"screen_name":"82ndABNDiv","name":"All - American Division","id":1854971202,"id_str":"1854971202","indices":[65,76]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:43:21 +0000 2022","id":1507367539956981767,"id_str":"1507367539956981767","text":"Seeing - @potus chewing on pizza and BS\u2019ing with @82ndABNDiv troopers - after - spending the last two days coordinating\u2026 https:\/\/t.co\/ovbgZ6OXCV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[7,13]},{"screen_name":"82ndABNDiv","name":"All - American Division","id":1854971202,"id_str":"1854971202","indices":[47,58]}],"urls":[{"url":"https:\/\/t.co\/ovbgZ6OXCV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507367539956981767","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6330,"favorite_count":54268,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6330,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":252443566,"id_str":"252443566","name":"Maureen - Morgan","screen_name":"MaMeiling","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":1627,"listed_count":1,"created_at":"Tue - Feb 15 06:00:25 +0000 2011","favourites_count":6001,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":552,"lang":null,"status":{"created_at":"Thu - Feb 10 23:36:33 +0000 2022","id":1491919043682607107,"id_str":"1491919043682607107","text":"RT - @AndyParkerVA: My name is Andy Parker. When my daughter was killed on live - TV, I had a choice to retreat into my grief or honor Alison\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndyParkerVA","name":"Andy - Parker","id":45828498,"id_str":"45828498","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 22:53:53 +0000 2022","id":1491908309628211203,"id_str":"1491908309628211203","text":"My - name is Andy Parker. When my daughter was killed on live TV, I had a choice - to retreat into my grief or honor Al\u2026 https:\/\/t.co\/P31DucGJ2Z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/P31DucGJ2Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491908309628211203","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11009,"favorite_count":36069,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11009,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":71621448,"id_str":"71621448","name":"Mylene - Cruz","screen_name":"MyleneCruz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":951,"listed_count":3,"created_at":"Fri - Sep 04 19:51:02 +0000 2009","favourites_count":8235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4963,"lang":null,"status":{"created_at":"Sun - Feb 20 19:15:01 +0000 2022","id":1495477107220221959,"id_str":"1495477107220221959","text":"https:\/\/t.co\/Q0SphJuCi8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q0SphJuCi8","expanded_url":"https:\/\/www.wsj.com\/amp\/articles\/what-is-qanon-what-we-know-about-the-conspiracy-theory-11597694801","display_url":"wsj.com\/amp\/articles\/w\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2229990301\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2229990301\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":232024502,"id_str":"232024502","name":"Rose - LeRoy","screen_name":"DoCADAdiva","location":"New York","description":"I''m - the Director of Educational Data and Research at NYSED.","url":"https:\/\/t.co\/jE6bt5lPxK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jE6bt5lPxK","expanded_url":"http:\/\/www.nysed.gov","display_url":"nysed.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":170,"friends_count":521,"listed_count":8,"created_at":"Thu - Dec 30 02:35:02 +0000 2010","favourites_count":1391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1099,"lang":null,"status":{"created_at":"Wed - Mar 02 23:05:46 +0000 2022","id":1499159056891752454,"id_str":"1499159056891752454","text":"RT - @AInfanteGreen: Please share!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AInfanteGreen","name":"Angelica - Infante","id":793501371278454784,"id_str":"793501371278454784","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 14:28:11 +0000 2022","id":1499028800960614406,"id_str":"1499028800960614406","text":"Please - share! https:\/\/t.co\/0mGCZb5VUN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0mGCZb5VUN","expanded_url":"https:\/\/twitter.com\/RIDeptEd\/status\/1498783344326230016","display_url":"twitter.com\/RIDeptEd\/statu\u2026","indices":[14,37]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498783344326230016,"quoted_status_id_str":"1498783344326230016","retweet_count":10,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1498783344326230016,"quoted_status_id_str":"1498783344326230016","retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050863110674898944\/n2VhZSTN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050863110674898944\/n2VhZSTN_normal.jpg","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":897815030498037760,"id_str":"897815030498037760","name":"Maggie - chaaya","screen_name":"MaggieDirani","location":"Arizona USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":461,"friends_count":2251,"listed_count":0,"created_at":"Wed - Aug 16 13:39:18 +0000 2017","favourites_count":18841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3547,"lang":null,"status":{"created_at":"Sat - Mar 26 06:05:38 +0000 2022","id":1507599638198734849,"id_str":"1507599638198734849","text":"RT - @HRHMBNSALMAAN: \u0644\u0633\u0646\u0627 \u062f\u0639\u0627\u0629 \u062d\u0631\u0628 - \u0644\u0643\u0646 \u0627\u0630\u0627 \u0642\u0631\u0639\u062a \u0637\u0628\u0648\u0644\u0647\u0627\n - \u0641\u0646\u062d\u0646 \u062c\u0627\u0647\u0632\u0648\u0646 \u0644\u0647\u0627 - \n#\u0627\u0644\u062a\u062d\u0627\u0644\u0641_\u0627\u0644\u0639\u0631\u0628\u064a - https:\/\/t.co\/bJdvzQ1Di0","truncated":false,"entities":{"hashtags":[{"text":"\u0627\u0644\u062a\u062d\u0627\u0644\u0641_\u0627\u0644\u0639\u0631\u0628\u064a","indices":[71,86]}],"symbols":[],"user_mentions":[{"screen_name":"HRHMBNSALMAAN","name":"\u0645\u062d\u0645\u062f - \u0628\u0646 \u0633\u0644\u0645\u0627\u0646 \u0628\u0646 \u0639\u0628\u062f - \u0627\u0644\u0639\u0632\u064a\u0632 (Informal)","id":985976864,"id_str":"985976864","indices":[3,17]}],"urls":[],"media":[{"id":1507528506401509380,"id_str":"1507528506401509380","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":783,"resize":"fit"},"small":{"w":680,"h":532,"resize":"fit"},"medium":{"w":1000,"h":783,"resize":"fit"}},"source_status_id":1507528522876739587,"source_status_id_str":"1507528522876739587","source_user_id":985976864,"source_user_id_str":"985976864"}]},"extended_entities":{"media":[{"id":1507528506401509380,"id_str":"1507528506401509380","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":783,"resize":"fit"},"small":{"w":680,"h":532,"resize":"fit"},"medium":{"w":1000,"h":783,"resize":"fit"}},"source_status_id":1507528522876739587,"source_status_id_str":"1507528522876739587","source_user_id":985976864,"source_user_id_str":"985976864"},{"id":1507528506435059722,"id_str":"1507528506435059722","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHrWQAoj5Ps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHrWQAoj5Ps.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":555,"h":450,"resize":"fit"},"small":{"w":555,"h":450,"resize":"fit"},"medium":{"w":555,"h":450,"resize":"fit"}},"source_status_id":1507528522876739587,"source_status_id_str":"1507528522876739587","source_user_id":985976864,"source_user_id_str":"985976864"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:23:03 +0000 2022","id":1507528522876739587,"id_str":"1507528522876739587","text":"\u0644\u0633\u0646\u0627 - \u062f\u0639\u0627\u0629 \u062d\u0631\u0628 \u0644\u0643\u0646 \u0627\u0630\u0627 - \u0642\u0631\u0639\u062a \u0637\u0628\u0648\u0644\u0647\u0627\n \u0641\u0646\u062d\u0646 - \u062c\u0627\u0647\u0632\u0648\u0646 \u0644\u0647\u0627 \n#\u0627\u0644\u062a\u062d\u0627\u0644\u0641_\u0627\u0644\u0639\u0631\u0628\u064a - https:\/\/t.co\/bJdvzQ1Di0","truncated":false,"entities":{"hashtags":[{"text":"\u0627\u0644\u062a\u062d\u0627\u0644\u0641_\u0627\u0644\u0639\u0631\u0628\u064a","indices":[52,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507528506401509380,"id_str":"1507528506401509380","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":783,"resize":"fit"},"small":{"w":680,"h":532,"resize":"fit"},"medium":{"w":1000,"h":783,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507528506401509380,"id_str":"1507528506401509380","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHjWUAQUQ-b.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":783,"resize":"fit"},"small":{"w":680,"h":532,"resize":"fit"},"medium":{"w":1000,"h":783,"resize":"fit"}}},{"id":1507528506435059722,"id_str":"1507528506435059722","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvRMHrWQAoj5Ps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvRMHrWQAoj5Ps.jpg","url":"https:\/\/t.co\/bJdvzQ1Di0","display_url":"pic.twitter.com\/bJdvzQ1Di0","expanded_url":"https:\/\/twitter.com\/HRHMBNSALMAAN\/status\/1507528522876739587\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":555,"h":450,"resize":"fit"},"small":{"w":555,"h":450,"resize":"fit"},"medium":{"w":555,"h":450,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":643,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":243,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240928910688354305\/fnDX1V7l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240928910688354305\/fnDX1V7l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/897815030498037760\/1538812548","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2179222195,"id_str":"2179222195","name":"Daniel","screen_name":"dan_p777","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":1463,"listed_count":0,"created_at":"Thu - Nov 07 02:56:58 +0000 2013","favourites_count":86,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Tue - Jun 30 16:59:56 +0000 2020","id":1278010394049724419,"id_str":"1278010394049724419","text":"@EsmePatterson - Do it! If individuals are at risk and they do not feel comfortable being in - a crowd then they do not\u2026 https:\/\/t.co\/ldNUMTmded","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EsmePatterson","name":"Esm\u00e9 - Patterson","id":824121000,"id_str":"824121000","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/ldNUMTmded","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1278010394049724419","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1278005251644116997,"in_reply_to_status_id_str":"1278005251644116997","in_reply_to_user_id":824121000,"in_reply_to_user_id_str":"824121000","in_reply_to_screen_name":"EsmePatterson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000705354704\/43761f3fca88d28ac5a97b0745e556d4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000705354704\/43761f3fca88d28ac5a97b0745e556d4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179222195\/1383793817","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":193702626,"id_str":"193702626","name":"Nick - Chochos","screen_name":"choosechochos","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":587,"friends_count":4991,"listed_count":10,"created_at":"Wed - Sep 22 13:55:20 +0000 2010","favourites_count":35407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14560,"lang":null,"status":{"created_at":"Fri - Mar 25 15:49:35 +0000 2022","id":1507384205411434499,"id_str":"1507384205411434499","text":"RT - @nexta_tv: Forbes: Ukrainian army now has 43 more tanks than at the beginning - of the war\n\nAccording to analysts, since the beginning of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nexta_tv","name":"NEXTA","id":1891490382,"id_str":"1891490382","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:00:48 +0000 2022","id":1507115237866102784,"id_str":"1507115237866102784","text":"Forbes: - Ukrainian army now has 43 more tanks than at the beginning of the war\n\nAccording - to analysts, since the beg\u2026 https:\/\/t.co\/Zic6IEwi3t","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Zic6IEwi3t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507115237866102784","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5727,"favorite_count":27355,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5727,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1899946304\/1331859118104_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1899946304\/1331859118104_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1019785572661915648,"id_str":"1019785572661915648","name":"Lorraine - McMillen","screen_name":"Lorrain03177110","location":"Washington, USA","description":"Art - Politics General News Travel Books Humanitarian Animals Literature Music","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":39,"listed_count":0,"created_at":"Thu - Jul 19 03:26:42 +0000 2018","favourites_count":371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":177,"lang":null,"status":{"created_at":"Wed - Mar 23 12:08:57 +0000 2022","id":1506603906062696448,"id_str":"1506603906062696448","text":"RT - @OccupyDemocrats: BREAKING NEWS: A brave Texas librarian is fired after refusing - to remove dozens of banned books from her library, decl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:30:02 +0000 2022","id":1506065630759370753,"id_str":"1506065630759370753","text":"BREAKING - NEWS: A brave Texas librarian is fired after refusing to remove dozens of - banned books from her library, d\u2026 https:\/\/t.co\/KtfmQ5cgaQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KtfmQ5cgaQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506065630759370753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22038,"favorite_count":70659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22038,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019787051758075904\/XCjsDbML_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019787051758075904\/XCjsDbML_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019785572661915648\/1531971306","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":773818880,"id_str":"773818880","name":"Kate - Perez","screen_name":"KateCPerez","location":"Houston, Texas","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":82,"listed_count":0,"created_at":"Wed - Aug 22 14:41:48 +0000 2012","favourites_count":719,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":603,"lang":null,"status":{"created_at":"Fri - Mar 25 16:53:29 +0000 2022","id":1507400289460146178,"id_str":"1507400289460146178","text":"RT - @matthewjdowd: Let this sink in: a gop president, gop senators, gop representatives, - and the wife of a supreme court justice were direct\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewjdowd","name":"Matthew - Dowd","id":288363743,"id_str":"288363743","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:04:11 +0000 2022","id":1507387881278611497,"id_str":"1507387881278611497","text":"Let - this sink in: a gop president, gop senators, gop representatives, and the - wife of a supreme court justice were\u2026 https:\/\/t.co\/2oFVYMRYMb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2oFVYMRYMb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507387881278611497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16678,"favorite_count":60486,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16678,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199505007126700033\/ytigc6-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199505007126700033\/ytigc6-v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/773818880\/1474494316","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4875739392,"id_str":"4875739392","name":"Sandy - Galin","screen_name":"GalinSgalin2013","location":"","description":"Professional - NGO fundraiser. Freelance mezzo. Former small market radio news director\/anchor. - Opinions are my own. RT''s are not endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":103,"friends_count":1821,"listed_count":0,"created_at":"Sun - Feb 07 22:57:45 +0000 2016","favourites_count":24936,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/696471119465881600\/jOWUcaop_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/696471119465881600\/jOWUcaop_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19168486,"id_str":"19168486","name":"Rebecca - Achtenberg","screen_name":"rjacksa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":498,"listed_count":0,"created_at":"Mon - Jan 19 03:05:45 +0000 2009","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573252935838265344\/GzrhAbJ5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573252935838265344\/GzrhAbJ5_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":55268569,"id_str":"55268569","name":"Bill - Berne","screen_name":"bberne","location":"Westchester, NY","description":"Lovin - life, learning something new 25 hours a day","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":307,"listed_count":0,"created_at":"Thu - Jul 09 15:34:51 +0000 2009","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Wed - Jul 04 13:47:42 +0000 2018","id":1014506035237867520,"id_str":"1014506035237867520","text":"@washingtonpost - Wow. True #testOFloyalties","truncated":false,"entities":{"hashtags":[{"text":"testOFloyalties","indices":[26,42]}],"symbols":[],"user_mentions":[{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1014499083501887488,"in_reply_to_status_id_str":"1014499083501887488","in_reply_to_user_id":2467791,"in_reply_to_user_id_str":"2467791","in_reply_to_screen_name":"washingtonpost","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000784557317\/cd8ff6ce710d9318f149d85bf793b737_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000784557317\/cd8ff6ce710d9318f149d85bf793b737_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55268569\/1359296616","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47833387,"id_str":"47833387","name":"Alan - Horn","screen_name":"Columbiaseventy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":210,"listed_count":0,"created_at":"Wed - Jun 17 03:02:34 +0000 2009","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jan 20 21:23:28 +0000 2021","id":1352003835708010501,"id_str":"1352003835708010501","text":"RT - @m_semati: @funder It''s German but here it is: D\u00fcmpsterfull\u00f6fshitonfire!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"m_semati","name":"Mehdi - Semati","id":2905967386,"id_str":"2905967386","indices":[3,12]},{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[14,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 20 17:56:46 +0000 2021","id":1351951820558643200,"id_str":"1351951820558643200","text":"@funder - It''s German but here it is: D\u00fcmpsterfull\u00f6fshitonfire!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1351880088976052225,"in_reply_to_status_id_str":"1351880088976052225","in_reply_to_user_id":14247236,"in_reply_to_user_id_str":"14247236","in_reply_to_screen_name":"funder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"de"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":848994443692736512,"id_str":"848994443692736512","name":"Moonchild - \ud83e\uddc8","screen_name":"Bangtan_Tori1","location":"","description":"BTS - Paved The Way","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":85,"listed_count":0,"created_at":"Mon - Apr 03 20:23:43 +0000 2017","favourites_count":22776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8538,"lang":null,"status":{"created_at":"Sat - Mar 26 03:04:23 +0000 2022","id":1507554027021955077,"id_str":"1507554027021955077","text":"RT - @POPSUGARUK: These hits were given a classical twist for the new series of - @bridgerton. \ud83c\udfb6 https:\/\/t.co\/p39l4Fi7Qi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POPSUGARUK","name":"POPSUGAR - UK","id":16027675,"id_str":"16027675","indices":[3,14]},{"screen_name":"bridgerton","name":"Bridgerton","id":1232061287301074945,"id_str":"1232061287301074945","indices":[78,89]}],"urls":[{"url":"https:\/\/t.co\/p39l4Fi7Qi","expanded_url":"https:\/\/www.popsugar.co.uk\/entertainment\/bridgerton-series-2-soundtrack-48749859?utm_medium=twitter&utm_source=post&utm_campaign=POPSUGARUK","display_url":"popsugar.co.uk\/entertainment\/\u2026","indices":[93,116]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:13:03 +0000 2022","id":1507299515518398464,"id_str":"1507299515518398464","text":"These - hits were given a classical twist for the new series of @bridgerton. \ud83c\udfb6 - https:\/\/t.co\/p39l4Fi7Qi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bridgerton","name":"Bridgerton","id":1232061287301074945,"id_str":"1232061287301074945","indices":[62,73]}],"urls":[{"url":"https:\/\/t.co\/p39l4Fi7Qi","expanded_url":"https:\/\/www.popsugar.co.uk\/entertainment\/bridgerton-series-2-soundtrack-48749859?utm_medium=twitter&utm_source=post&utm_campaign=POPSUGARUK","display_url":"popsugar.co.uk\/entertainment\/\u2026","indices":[77,100]}]},"source":"\u003ca - href=\"https:\/\/www.popsugar.com\" rel=\"nofollow\"\u003epopsugar.com\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":192,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436855038828294149\/Ii9Px71S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436855038828294149\/Ii9Px71S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848994443692736512\/1631407912","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":607532578,"id_str":"607532578","name":"Trashley","screen_name":"_AshPalmer","location":"jamaica","description":"\ud83c\uddef\ud83c\uddf2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":783,"friends_count":457,"listed_count":0,"created_at":"Wed - Jun 13 20:33:54 +0000 2012","favourites_count":14406,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9569,"lang":null,"status":{"created_at":"Fri - Mar 18 02:26:44 +0000 2022","id":1504645450061819908,"id_str":"1504645450061819908","text":"@Rached_Shenyeng - Oh well imma shen fan from day 1 and that\u2019s strictly talent, her being - pretty is just a plus.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rached_Shenyeng","name":"Rached_Shenyeng","id":1491993420138782720,"id_str":"1491993420138782720","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504604082899718152,"in_reply_to_status_id_str":"1504604082899718152","in_reply_to_user_id":1491993420138782720,"in_reply_to_user_id_str":"1491993420138782720","in_reply_to_screen_name":"Rached_Shenyeng","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285774545975218176\/1zSsc1Zg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285774545975218176\/1zSsc1Zg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607532578\/1527365895","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":845687827849469953,"id_str":"845687827849469953","name":"I''m - Azuka Ukomah","screen_name":"zukasltd","location":"","description":"Business - consultant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":448,"listed_count":0,"created_at":"Sat - Mar 25 17:24:25 +0000 2017","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":722,"lang":null,"status":{"created_at":"Wed - Mar 23 05:43:28 +0000 2022","id":1506506899214282754,"id_str":"1506506899214282754","text":"@SaharaReporters - So what''s their governor doing with party leadership when his house is on - fire. Do they reason well at all.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaharaReporters","name":"Sahara - Reporters","id":17409452,"id_str":"17409452","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505649412844007432,"in_reply_to_status_id_str":"1505649412844007432","in_reply_to_user_id":17409452,"in_reply_to_user_id_str":"17409452","in_reply_to_screen_name":"SaharaReporters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/861303774748475392\/MbPr_fJd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/861303774748475392\/MbPr_fJd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1184893309090779141,"id_str":"1184893309090779141","name":"Adam - Wolfe","screen_name":"AdamWol60591729","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":204,"listed_count":0,"created_at":"Thu - Oct 17 18:06:06 +0000 2019","favourites_count":150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Nov 02 02:33:33 +0000 2021","id":1455362415466618884,"id_str":"1455362415466618884","text":"RT - @steve_vladeck: @joe_scuba How''s this?\n\nhttps:\/\/t.co\/kn1CdibG8F","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steve_vladeck","name":"Steve - Vladeck","id":380268462,"id_str":"380268462","indices":[3,17]},{"screen_name":"joe_scuba","name":"Joseph - Joyal","id":163203604,"id_str":"163203604","indices":[19,29]}],"urls":[{"url":"https:\/\/t.co\/kn1CdibG8F","expanded_url":"https:\/\/twitter.com\/steve_vladeck\/status\/1455195551243309059?s=20","display_url":"twitter.com\/steve_vladeck\/\u2026","indices":[43,66]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 01 15:45:13 +0000 2021","id":1455199257061904392,"id_str":"1455199257061904392","text":"@joe_scuba - How''s this?\n\nhttps:\/\/t.co\/kn1CdibG8F","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joe_scuba","name":"Joseph - Joyal","id":163203604,"id_str":"163203604","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/kn1CdibG8F","expanded_url":"https:\/\/twitter.com\/steve_vladeck\/status\/1455195551243309059?s=20","display_url":"twitter.com\/steve_vladeck\/\u2026","indices":[24,47]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1455198343093706763,"in_reply_to_status_id_str":"1455198343093706763","in_reply_to_user_id":163203604,"in_reply_to_user_id_str":"163203604","in_reply_to_screen_name":"joe_scuba","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1455195551243309059,"quoted_status_id_str":"1455195551243309059","retweet_count":1,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1455195551243309059,"quoted_status_id_str":"1455195551243309059","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184893690633957376\/fE50nMwl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184893690633957376\/fE50nMwl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267519220084072448,"id_str":"1267519220084072448","name":"Yasir","screen_name":"Yasir46337074","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":532,"listed_count":3,"created_at":"Mon - Jun 01 18:12:00 +0000 2020","favourites_count":186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Wed - Mar 23 16:10:53 +0000 2022","id":1506664789866598422,"id_str":"1506664789866598422","text":"Why - Romance Needs Its Tropes: A Defense https:\/\/t.co\/nYNlU9MyN4 via @lithub","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lithub","name":"Literary - Hub","id":2903979971,"id_str":"2903979971","indices":[68,75]}],"urls":[{"url":"https:\/\/t.co\/nYNlU9MyN4","expanded_url":"https:\/\/lithub.com\/why-romance-needs-its-tropes-a-defense\/","display_url":"lithub.com\/why-romance-ne\u2026","indices":[40,63]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274224243652415488\/XeVf4F5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274224243652415488\/XeVf4F5s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42413878,"id_str":"42413878","name":"$David - K Steppe","screen_name":"dstep65","location":"Glen Allen Virginia.","description":"Retired - Army Retired DOD taking life one day at a time thru God grace \n Be good to - all trust a few and do harm to none. Always stay true to self and God.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5204,"friends_count":5609,"listed_count":11,"created_at":"Mon - May 25 14:27:27 +0000 2009","favourites_count":150924,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185398,"lang":null,"status":{"created_at":"Fri - Mar 25 18:43:35 +0000 2022","id":1507427994813575172,"id_str":"1507427994813575172","text":"RT - @AudreyStJames1: This is an unripe pomegranate, it will turn red when ripe. I''m - not sure what happened to this one but if it starts sin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AudreyStJames1","name":"Colorado - Audrey\ud83d\udd25\ud83e\udd82\ud83d\ude37","id":1185335249879756800,"id_str":"1185335249879756800","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:38:44 +0000 2022","id":1507139883470573571,"id_str":"1507139883470573571","text":"This - is an unripe pomegranate, it will turn red when ripe. I''m not sure what - happened to this one but if it starts\u2026 https:\/\/t.co\/QM8Y43ujJR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QM8Y43ujJR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507139883470573571","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":465,"favorite_count":3070,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":465,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C1EBE6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490506581901025281\/20o_LuHM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490506581901025281\/20o_LuHM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42413878\/1644459906","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":98182843,"id_str":"98182843","name":"Katy - Banks","screen_name":"katycbanks","location":"Arlington, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":114,"listed_count":0,"created_at":"Sun - Dec 20 18:55:41 +0000 2009","favourites_count":247,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Wed - Feb 02 17:21:02 +0000 2022","id":1488925442237255683,"id_str":"1488925442237255683","text":"@tilebar - worst customer service EVER!!! Avoid this company at all costs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tilebar","name":"TileBar","id":394211464,"id_str":"394211464","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":394211464,"in_reply_to_user_id_str":"394211464","in_reply_to_screen_name":"tilebar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/793271954300080128\/Fltdu5hL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/793271954300080128\/Fltdu5hL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98182843\/1477965874","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1229042187452768256,"id_str":"1229042187452768256","name":"Janice - Burroughs","screen_name":"JaniceBurrough8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":330,"listed_count":0,"created_at":"Sun - Feb 16 13:58:02 +0000 2020","favourites_count":3731,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1335,"lang":null,"status":{"created_at":"Thu - Mar 24 22:30:36 +0000 2022","id":1507122740549066760,"id_str":"1507122740549066760","text":"@IAmSophiaNelson - I truly appreciate former GOP members speaking out!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAmSophiaNelson","name":"Sophia - A. Nelson","id":17056433,"id_str":"17056433","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506786603536162821,"in_reply_to_status_id_str":"1506786603536162821","in_reply_to_user_id":17056433,"in_reply_to_user_id_str":"17056433","in_reply_to_screen_name":"IAmSophiaNelson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229042441925406721\/HgG0XgFl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229042441925406721\/HgG0XgFl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247257305902714880,"id_str":"1247257305902714880","name":"Bigpaws65","screen_name":"bigpaws65","location":"","description":"Halifax - engineer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1127,"listed_count":0,"created_at":"Mon - Apr 06 20:18:31 +0000 2020","favourites_count":4972,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":703,"lang":null,"status":{"created_at":"Fri - Nov 06 22:52:01 +0000 2020","id":1324847033249943554,"id_str":"1324847033249943554","text":"RT - @BetoORourke: Thank you @staceyabrams for what you made possible in Georgia - and throughout this country. The example, the inspiration, t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BetoORourke","name":"Beto - O''Rourke","id":342863309,"id_str":"342863309","indices":[3,15]},{"screen_name":"staceyabrams","name":"Stacey - Abrams","id":216065430,"id_str":"216065430","indices":[27,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 06 18:28:16 +0000 2020","id":1324780658842083328,"id_str":"1324780658842083328","text":"Thank - you @staceyabrams for what you made possible in Georgia and throughout this - country. The example, the inspira\u2026 https:\/\/t.co\/NxOIsbV9Uf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"staceyabrams","name":"Stacey - Abrams","id":216065430,"id_str":"216065430","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/NxOIsbV9Uf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1324780658842083328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9011,"favorite_count":87933,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9011,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259967014690607104\/8YHU_gLm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259967014690607104\/8YHU_gLm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16987106,"id_str":"16987106","name":"nomadspeaks","screen_name":"victorypdx20","location":"San - Francisco, CA","description":"professional speaker she\/her \ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1150,"friends_count":1683,"listed_count":59,"created_at":"Sun - Oct 26 22:30:45 +0000 2008","favourites_count":9891,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13709,"lang":null,"status":{"created_at":"Sat - Mar 26 01:55:07 +0000 2022","id":1507536593719947265,"id_str":"1507536593719947265","text":"@jesflres - Me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461395929232252935\/ePK4J6eP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461395929232252935\/ePK4J6eP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16987106\/1600483364","profile_link_color":"B40066","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293840132106321920,"id_str":"1293840132106321920","name":"Xtopher","screen_name":"Xtopher03018464","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":269,"listed_count":0,"created_at":"Thu - Aug 13 09:22:08 +0000 2020","favourites_count":1591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":226,"lang":null,"status":{"created_at":"Tue - May 04 23:28:16 +0000 2021","id":1389723580489891840,"id_str":"1389723580489891840","text":"RT - @rootstvnigeria: \"They took us to #Gumi''s house, he directed us to an Ahmed, - who invited a Fulani man from #Kaduna, we contributed N800,\u2026","truncated":false,"entities":{"hashtags":[{"text":"Gumi","indices":[37,42]},{"text":"Kaduna","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"rootstvnigeria","name":"RootsTv","id":1010034852064661506,"id_str":"1010034852064661506","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 04 17:52:38 +0000 2021","id":1389639116527218688,"id_str":"1389639116527218688","text":"\"They - took us to #Gumi''s house, he directed us to an Ahmed, who invited a Fulani - man from #Kaduna, we contributed N\u2026 https:\/\/t.co\/OSlwfaI4Nh","truncated":true,"entities":{"hashtags":[{"text":"Gumi","indices":[17,22]},{"text":"Kaduna","indices":[90,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OSlwfaI4Nh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1389639116527218688","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3968,"favorite_count":2737,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3968,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293935370552389634\/8HNfARm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293935370552389634\/8HNfARm1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":306746074,"id_str":"306746074","name":"Jodhpur","screen_name":"manjuarunmehta","location":"","description":"Balance,\nHomo - novus.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":2322,"listed_count":0,"created_at":"Sat - May 28 11:18:53 +0000 2011","favourites_count":15964,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15040,"lang":null,"status":{"created_at":"Sat - Mar 26 10:37:43 +0000 2022","id":1507668112186904582,"id_str":"1507668112186904582","text":"@SofiaHCBBG - Chinese have no merits they are no 1 in copying the other products.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SofiaHCBBG","name":"Sofia - Horta e Costa","id":627526105,"id_str":"627526105","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507213840764735491,"in_reply_to_status_id_str":"1507213840764735491","in_reply_to_user_id":627526105,"in_reply_to_user_id_str":"627526105","in_reply_to_screen_name":"SofiaHCBBG","geo":null,"coordinates":null,"place":{"id":"4093957f0fab11d6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4093957f0fab11d6.json","place_type":"city","name":"Jodhpur","full_name":"Jodhpur, - India","country_code":"IN","country":"India","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[72.6100969,25.8528564],[73.4524747,25.8528564],[73.4524747,26.4943697],[72.6100969,26.4943697]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3420947355,"id_str":"3420947355","name":"Ben - Beams","screen_name":"ben_beams","location":"Tucson, AZ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":576,"listed_count":0,"created_at":"Thu - Aug 13 21:28:34 +0000 2015","favourites_count":1552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":null,"status":{"created_at":"Tue - May 11 02:24:08 +0000 2021","id":1391942167137067009,"id_str":"1391942167137067009","text":"#grasshopper - #backyard #sonorandesert @ Terra del Sol https:\/\/t.co\/om30li3SgX","truncated":false,"entities":{"hashtags":[{"text":"grasshopper","indices":[0,12]},{"text":"backyard","indices":[13,22]},{"text":"sonorandesert","indices":[23,37]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/om30li3SgX","expanded_url":"https:\/\/www.instagram.com\/p\/COtz32FMDUPvllBtm61K9zuYl6m5nJe0bsPsy40\/?igshid=1hw2ynohf48we","display_url":"instagram.com\/p\/COtz32FMDUPv\u2026","indices":[54,77]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631942037932109824\/oPmyUxxO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631942037932109824\/oPmyUxxO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420947355\/1482021469","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":577100606,"id_str":"577100606","name":"Eddie - Baker","screen_name":"Leaf37","location":"Chattanooga, TN","description":"life - is short... Keep those who matter close..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":0,"listed_count":1,"created_at":"Fri - May 11 12:38:39 +0000 2012","favourites_count":78,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":347,"lang":null,"status":{"created_at":"Mon - Feb 15 11:42:06 +0000 2021","id":1361279617332617217,"id_str":"1361279617332617217","text":"@memelaxx - Me too lol","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"memelaxx","name":"Memelad","id":267201066,"id_str":"267201066","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1360904013353541632,"in_reply_to_status_id_str":"1360904013353541632","in_reply_to_user_id":267201066,"in_reply_to_user_id_str":"267201066","in_reply_to_screen_name":"memelaxx","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/824651302441455616\/zx7gcVIK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/824651302441455616\/zx7gcVIK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577100606\/1560866668","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":553626752,"id_str":"553626752","name":"dschier","screen_name":"dschier521","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":521,"listed_count":0,"created_at":"Sat - Apr 14 15:44:16 +0000 2012","favourites_count":287,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Fri - Dec 24 14:27:43 +0000 2021","id":1474386308332199947,"id_str":"1474386308332199947","text":"@STUFFMagic - @rolopez42 @OrlandoMagic Merry Christmas Stuff!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"STUFFMagic","name":"STUFF - - Orlando Magic Mascot","id":32996188,"id_str":"32996188","indices":[0,11]},{"screen_name":"rolopez42","name":"Robin - Lopez","id":48028402,"id_str":"48028402","indices":[12,22]},{"screen_name":"OrlandoMagic","name":"Orlando - Magic","id":19537303,"id_str":"19537303","indices":[23,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1474192728808476677,"in_reply_to_status_id_str":"1474192728808476677","in_reply_to_user_id":32996188,"in_reply_to_user_id_str":"32996188","in_reply_to_screen_name":"STUFFMagic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1135816615,"id_str":"1135816615","name":"des","screen_name":"DesireeDevi","location":"","description":"spinster - \u2022 she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":279,"listed_count":2,"created_at":"Thu - Jan 31 02:35:15 +0000 2013","favourites_count":7249,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6072,"lang":null,"status":{"created_at":"Sat - Mar 26 03:31:33 +0000 2022","id":1507560863879868418,"id_str":"1507560863879868418","text":"RT - @foofighters: https:\/\/t.co\/ffPHhUKRT4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"foofighters","name":"Foo - Fighters","id":19081001,"id_str":"19081001","indices":[3,15]}],"urls":[],"media":[{"id":1507552514282975233,"id_str":"1507552514282975233","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","url":"https:\/\/t.co\/ffPHhUKRT4","display_url":"pic.twitter.com\/ffPHhUKRT4","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1507552958988255234,"source_status_id_str":"1507552958988255234","source_user_id":19081001,"source_user_id_str":"19081001"}]},"extended_entities":{"media":[{"id":1507552514282975233,"id_str":"1507552514282975233","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","url":"https:\/\/t.co\/ffPHhUKRT4","display_url":"pic.twitter.com\/ffPHhUKRT4","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1507552958988255234,"source_status_id_str":"1507552958988255234","source_user_id":19081001,"source_user_id_str":"19081001"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:00:09 +0000 2022","id":1507552958988255234,"id_str":"1507552958988255234","text":"https:\/\/t.co\/ffPHhUKRT4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507552514282975233,"id_str":"1507552514282975233","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","url":"https:\/\/t.co\/ffPHhUKRT4","display_url":"pic.twitter.com\/ffPHhUKRT4","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507552514282975233,"id_str":"1507552514282975233","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvnBj4VcAEM21M.jpg","url":"https:\/\/t.co\/ffPHhUKRT4","display_url":"pic.twitter.com\/ffPHhUKRT4","expanded_url":"https:\/\/twitter.com\/foofighters\/status\/1507552958988255234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107714,"favorite_count":544264,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":107714,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488230238249230347\/zI0omMpU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488230238249230347\/zI0omMpU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135816615\/1625583666","profile_link_color":"610B4B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1094678784416968704,"id_str":"1094678784416968704","name":"linhson_vu","screen_name":"vulinhson1992","location":"Ho - Chi Minh, Vietnam","description":"Friendly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":354,"listed_count":0,"created_at":"Sun - Feb 10 19:25:35 +0000 2019","favourites_count":6723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Fri - Jul 09 10:30:20 +0000 2021","id":1413445406470463491,"id_str":"1413445406470463491","text":"@AR72014 - I am waiting for ios 15 beta3 ahihi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AR72014","name":"AR7","id":149669367,"id_str":"149669367","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1413406744093601794,"in_reply_to_status_id_str":"1413406744093601794","in_reply_to_user_id":149669367,"in_reply_to_user_id_str":"149669367","in_reply_to_screen_name":"AR72014","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094679531573587968\/lpEFS3Hk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094679531573587968\/lpEFS3Hk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286345405010268160,"id_str":"1286345405010268160","name":"kwame - Bruce","screen_name":"kwameBruce6","location":"","description":"Watching television","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":73,"listed_count":0,"created_at":"Thu - Jul 23 17:00:45 +0000 2020","favourites_count":389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Fri - Mar 25 21:53:48 +0000 2022","id":1507475863297740803,"id_str":"1507475863297740803","text":"@BrittneyTonee - Gorgeous","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrittneyTonee","name":"Brittney - Tonee","id":108186094,"id_str":"108186094","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507232711764848641,"in_reply_to_status_id_str":"1507232711764848641","in_reply_to_user_id":108186094,"in_reply_to_user_id_str":"108186094","in_reply_to_screen_name":"BrittneyTonee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288211131312541696\/yOMG7_Nz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288211131312541696\/yOMG7_Nz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26401389,"id_str":"26401389","name":"J - Petricha","screen_name":"IAmTooBigToFail","location":"On The Beach","description":"Dad, - Husband, American, CPA, Jets & Knicks Fan","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":1091,"listed_count":1,"created_at":"Wed - Mar 25 02:14:44 +0000 2009","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3304626284\/f9a3790ab1a5a543cc55d79bff693f06_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3304626284\/f9a3790ab1a5a543cc55d79bff693f06_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26401389\/1506815338","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":811114232875978752,"id_str":"811114232875978752","name":"Amy - Watkins","screen_name":"watk47024211","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":300,"listed_count":0,"created_at":"Tue - Dec 20 07:41:17 +0000 2016","favourites_count":1012,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Sat - Sep 18 02:43:53 +0000 2021","id":1439057559990591491,"id_str":"1439057559990591491","text":"RT - @TCEA: Class Discussion Techniques that Help!\n\n\u2705 No Hiding within - the Group\n\u2705 No Overpowering \n\nhttps:\/\/t.co\/hvHHt82S5f @elt_cation\n#\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TCEA","name":"\ud835\udde7\ud835\uddd6\ud835\uddd8\ud835\uddd4 - \ud83d\udc99 a place for every educator \ud83d\udc99","id":44133359,"id_str":"44133359","indices":[3,8]},{"screen_name":"ELT_CATION","name":"Svetlana - Kandybovich","id":4620580995,"id_str":"4620580995","indices":[126,137]}],"urls":[{"url":"https:\/\/t.co\/hvHHt82S5f","expanded_url":"http:\/\/bit.ly\/3nG7EBZ","display_url":"bit.ly\/3nG7EBZ","indices":[101,124]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 17 02:51:01 +0000 2021","id":1438696968558108674,"id_str":"1438696968558108674","text":"Class - Discussion Techniques that Help!\n\n\u2705 No Hiding within the Group\n\u2705 No - Overpowering \n\nhttps:\/\/t.co\/hvHHt82S5f\u2026 https:\/\/t.co\/W2wUBIY2E0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hvHHt82S5f","expanded_url":"http:\/\/bit.ly\/3nG7EBZ","display_url":"bit.ly\/3nG7EBZ","indices":[91,114]},{"url":"https:\/\/t.co\/W2wUBIY2E0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1438696968558108674","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":172,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":71,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4808460446,"id_str":"4808460446","name":"MyBlueTexanLinguisticDetectiveAgency","screen_name":"1BlueTexan","location":"","description":"I - follow back resistors! Fair warning, friends: this is my political account. - #Resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":469,"friends_count":575,"listed_count":0,"created_at":"Sun - Jan 24 17:03:45 +0000 2016","favourites_count":106007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9075,"lang":null,"status":{"created_at":"Thu - Mar 17 23:54:58 +0000 2022","id":1504607254905073669,"id_str":"1504607254905073669","text":"Just - when you thought she couldn\u2019t get any less informed! https:\/\/t.co\/mJAG1I8eT7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mJAG1I8eT7","expanded_url":"https:\/\/twitter.com\/NoLieWithBTC\/status\/1504593186802606081","display_url":"twitter.com\/NoLieWithBTC\/s\u2026","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504593186802606081,"quoted_status_id_str":"1504593186802606081","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458920524088844291\/yWJk-nS-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458920524088844291\/yWJk-nS-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4808460446\/1561955616","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":88000244,"id_str":"88000244","name":"Martha - Gershun","screen_name":"mgershun","location":"Fairway, KS","description":"writer. - nonprofit consultant. living kidney donor. proud Jewish mother (x2). Harvard - grad (x2). New Safta (x2). @KidneyToShare out now! she\/her","url":"https:\/\/t.co\/d1NaUgZNUr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d1NaUgZNUr","expanded_url":"http:\/\/www.marthagershun.com","display_url":"marthagershun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":300,"friends_count":639,"listed_count":6,"created_at":"Fri - Nov 06 18:23:15 +0000 2009","favourites_count":21227,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2943,"lang":null,"status":{"created_at":"Fri - Mar 25 02:52:29 +0000 2022","id":1507188642585980930,"id_str":"1507188642585980930","text":"The - most damning story thus far about #Evusheld. National tragedy. https:\/\/t.co\/qX2EbL1aWd","truncated":false,"entities":{"hashtags":[{"text":"Evusheld","indices":[38,47]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qX2EbL1aWd","expanded_url":"https:\/\/www.cnn.com\/2022\/03\/24\/health\/evusheld-unused\/index.html","display_url":"cnn.com\/2022\/03\/24\/hea\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361079540253155332\/vNi7olk5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361079540253155332\/vNi7olk5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88000244\/1613347931","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1141222751606325249,"id_str":"1141222751606325249","name":"Hamid - Shabir Bhatti","screen_name":"HamidShabirBha1","location":"Lahore, Pakistan","description":"I - am a keen observer of this society","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":300,"listed_count":0,"created_at":"Wed - Jun 19 05:54:41 +0000 2019","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Mon - Sep 20 04:38:43 +0000 2021","id":1439811235319631876,"id_str":"1439811235319631876","text":"@SYahyaHussaini - @iramizraja @ImranKhanPTI @ICC @TheRealPCB Sarkar points aap de dijiye ga. - If you don\u2019t mind \ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SYahyaHussaini","name":"Syed - Yahya Hussaini","id":449838196,"id_str":"449838196","indices":[0,15]},{"screen_name":"iramizraja","name":"Ramiz - Raja","id":4908027275,"id_str":"4908027275","indices":[16,27]},{"screen_name":"ImranKhanPTI","name":"Imran - Khan","id":122453931,"id_str":"122453931","indices":[28,41]},{"screen_name":"ICC","name":"ICC","id":177547780,"id_str":"177547780","indices":[42,46]},{"screen_name":"TheRealPCB","name":"Pakistan - Cricket","id":2420020489,"id_str":"2420020489","indices":[47,58]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1439633507593211904,"in_reply_to_status_id_str":"1439633507593211904","in_reply_to_user_id":449838196,"in_reply_to_user_id_str":"449838196","in_reply_to_screen_name":"SYahyaHussaini","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346915533921243137\/jPyIJ9DF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346915533921243137\/jPyIJ9DF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":295444897,"id_str":"295444897","name":"Tom - Rogers","screen_name":"Tomrogers16","location":"Minneapolis, MN","description":"Dogfather. - Chicken-Tender. Foodie. Traveler. \ud83c\udff3\ufe0f\u200d\ud83c\udf08 (he\/him)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":1199,"listed_count":0,"created_at":"Mon - May 09 01:40:30 +0000 2011","favourites_count":11296,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":307,"lang":null,"status":{"created_at":"Mon - Feb 14 06:05:33 +0000 2022","id":1493104104935206912,"id_str":"1493104104935206912","text":"@cole_hartigan - @hwinkler4real Best I\u2019ve seen: on fireworks with links to vids \ud83c\udf87\ud83d\udc4f - - a unicorn really.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cole_hartigan","name":"Cole_\u24c2\ufe0f\u24c2\ufe0f","id":705580057398550529,"id_str":"705580057398550529","indices":[0,14]},{"screen_name":"hwinkler4real","name":"Henry - Winkler","id":248917209,"id_str":"248917209","indices":[15,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493030910362537986,"in_reply_to_status_id_str":"1493030910362537986","in_reply_to_user_id":705580057398550529,"in_reply_to_user_id_str":"705580057398550529","in_reply_to_screen_name":"cole_hartigan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376214864125890570\/xR55Lux-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376214864125890570\/xR55Lux-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":451010983,"id_str":"451010983","name":"Farah - K.","screen_name":"FarSauce","location":"YYZ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":114,"listed_count":0,"created_at":"Fri - Dec 30 23:01:20 +0000 2011","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Oct 23 02:56:56 +0000 2020","id":1319472847417389060,"id_str":"1319472847417389060","text":"@DrKarlynB - Lol get some new glasses bc clearly you weren''t watching correctly.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrKarlynB","name":"Karlyn - Borysenko, Professional Rabble Rouser \ud83c\uddfa\ud83c\udde6","id":6811832,"id_str":"6811832","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1319468122735259654,"in_reply_to_status_id_str":"1319468122735259654","in_reply_to_user_id":6811832,"in_reply_to_user_id_str":"6811832","in_reply_to_screen_name":"DrKarlynB","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"050A0D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1724548093\/Snapshot_20111209_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1724548093\/Snapshot_20111209_1_normal.jpg","profile_link_color":"04C4C4","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"EB0000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40381716,"id_str":"40381716","name":"Gail - McGowan Mellor","screen_name":"authorpendragon","location":"Louisville, KY","description":"With - ridiculously checkered past, & Pulitzer nom for investigative reporting, I - write for the 99%, love hearing water flow, and work to save green land. She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":1532,"listed_count":3,"created_at":"Sat - May 16 01:34:08 +0000 2009","favourites_count":29306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30051,"lang":null,"status":{"created_at":"Fri - Mar 25 21:34:24 +0000 2022","id":1507470984214986752,"id_str":"1507470984214986752","text":"The - insurrection apparently involved not only Trump et al. but Republican members - of Congress, a member of the Cour\u2026 https:\/\/t.co\/z0GSSLsLcb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/z0GSSLsLcb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507470984214986752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2783185939\/7ed65f8eb932bae880346a76ac004128_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2783185939\/7ed65f8eb932bae880346a76ac004128_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40381716\/1611270328","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":85000950,"id_str":"85000950","name":"susiegaspar","screen_name":"susiegaspar","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":428,"listed_count":0,"created_at":"Sun - Oct 25 03:30:47 +0000 2009","favourites_count":1343,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":768,"lang":null,"status":{"created_at":"Mon - Oct 18 03:00:51 +0000 2021","id":1449933464891846661,"id_str":"1449933464891846661","text":"@WeneeGermany2 - @official__wonho @official_WH_jp https:\/\/t.co\/9Yni9hzgGj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WeneeGermany2","name":"Anja - Black \uc704\ub2c8 \ud83c\udf0c OBSES\u035d\u01a7ION \ud83c\udf0c \uc6d0\ud638 - \uc0ac\ub791\ud574","id":1288385334502469635,"id_str":"1288385334502469635","indices":[0,14]},{"screen_name":"official__wonho","name":"WONHO - Official","id":1248425351782354948,"id_str":"1248425351782354948","indices":[15,31]},{"screen_name":"official_WH_jp","name":"WONHO - Official JAPAN","id":1271723298481598464,"id_str":"1271723298481598464","indices":[32,47]}],"urls":[],"media":[{"id":1449933460462718977,"id_str":"1449933460462718977","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FB8yzNrVUAEZz74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB8yzNrVUAEZz74.jpg","url":"https:\/\/t.co\/9Yni9hzgGj","display_url":"pic.twitter.com\/9Yni9hzgGj","expanded_url":"https:\/\/twitter.com\/susiegaspar\/status\/1449933464891846661\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":512,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1449933460462718977,"id_str":"1449933460462718977","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FB8yzNrVUAEZz74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB8yzNrVUAEZz74.jpg","url":"https:\/\/t.co\/9Yni9hzgGj","display_url":"pic.twitter.com\/9Yni9hzgGj","expanded_url":"https:\/\/twitter.com\/susiegaspar\/status\/1449933464891846661\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":512,"h":512,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1448973978874355759,"in_reply_to_status_id_str":"1448973978874355759","in_reply_to_user_id":1288385334502469635,"in_reply_to_user_id_str":"1288385334502469635","in_reply_to_screen_name":"WeneeGermany2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000792352689\/de075bc0c52b95a938086f705026b1d3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000792352689\/de075bc0c52b95a938086f705026b1d3_normal.jpeg","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291499777541234689,"id_str":"1291499777541234689","name":"Cathy - Stroud","screen_name":"CathyStroud15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":651,"listed_count":0,"created_at":"Thu - Aug 06 22:24:36 +0000 2020","favourites_count":4964,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291501573475110914\/t6yRWf05_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291501573475110914\/t6yRWf05_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":280242375,"id_str":"280242375","name":"Jesse - Wisley","screen_name":"jessewisley","location":"","description":"Political - Junkie. Tennessee Football. GO VOLS!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":3223,"listed_count":0,"created_at":"Sun - Apr 10 23:16:43 +0000 2011","favourites_count":546,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":554,"lang":null,"status":{"created_at":"Sat - Feb 26 00:59:53 +0000 2022","id":1497375834683822086,"id_str":"1497375834683822086","text":"RT - @greg_price11: An all time Biden campaign moment from 2019:\n\n\"Imagine what - can happen in Ukraine\" if Trump is re-elected\n https:\/\/t.co\/F\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"greg_price11","name":"Greg - Price","id":896466491587080194,"id_str":"896466491587080194","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 16:30:35 +0000 2022","id":1497247663758221346,"id_str":"1497247663758221346","text":"An - all time Biden campaign moment from 2019:\n\n\"Imagine what can happen in - Ukraine\" if Trump is re-elected\n https:\/\/t.co\/FddRtGVLxP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1497242027179839491,"id_str":"1497242027179839491","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1497242027179839491\/pu\/img\/2wCq6PAEKqdG71Oh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1497242027179839491\/pu\/img\/2wCq6PAEKqdG71Oh.jpg","url":"https:\/\/t.co\/FddRtGVLxP","display_url":"pic.twitter.com\/FddRtGVLxP","expanded_url":"https:\/\/twitter.com\/AmericaRising\/status\/1497242334806908932\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1497242334806908932,"source_status_id_str":"1497242334806908932","source_user_id":1048446804,"source_user_id_str":"1048446804"}]},"extended_entities":{"media":[{"id":1497242027179839491,"id_str":"1497242027179839491","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1497242027179839491\/pu\/img\/2wCq6PAEKqdG71Oh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1497242027179839491\/pu\/img\/2wCq6PAEKqdG71Oh.jpg","url":"https:\/\/t.co\/FddRtGVLxP","display_url":"pic.twitter.com\/FddRtGVLxP","expanded_url":"https:\/\/twitter.com\/AmericaRising\/status\/1497242334806908932\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1497242334806908932,"source_status_id_str":"1497242334806908932","source_user_id":1048446804,"source_user_id_str":"1048446804","video_info":{"aspect_ratio":[16,9],"duration_millis":32031,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1497242027179839491\/pu\/vid\/480x270\/qB8yCLl5DU4OX7HI.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1497242027179839491\/pu\/vid\/1280x720\/Kmmbs0oVoVppfGXN.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1497242027179839491\/pu\/pl\/cJBm-aG8WLYPX4q7.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1497242027179839491\/pu\/vid\/640x360\/gqkJZLDOK4R-biIt.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3103,"favorite_count":7554,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3103,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/673684472257212417\/d34ad0f0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/673684472257212417\/d34ad0f0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280242375\/1573433822","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29627450,"id_str":"29627450","name":"Shawn - Golhar","screen_name":"spmgolhar","location":"New York, NY","description":"Father, - Husband, views are my own","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":109,"friends_count":1661,"listed_count":1,"created_at":"Wed - Apr 08 03:17:20 +0000 2009","favourites_count":1177,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1060931487061737477\/ZrV4GPai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060931487061737477\/ZrV4GPai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29627450\/1607955343","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780496097835745280,"id_str":"780496097835745280","name":"TZB","screen_name":"TraceyBlakesley","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":449,"listed_count":0,"created_at":"Mon - Sep 26 19:55:45 +0000 2016","favourites_count":71145,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2175,"lang":null,"status":{"created_at":"Thu - Mar 24 16:09:52 +0000 2022","id":1507026922353614848,"id_str":"1507026922353614848","text":"@AuschwitzMuseum - \ud83d\udc94","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AuschwitzMuseum","name":"Auschwitz - Memorial","id":586291040,"id_str":"586291040","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507024562046832650,"in_reply_to_status_id_str":"1507024562046832650","in_reply_to_user_id":586291040,"in_reply_to_user_id_str":"586291040","in_reply_to_screen_name":"AuschwitzMuseum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039004610122403840\/JwDAutAp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039004610122403840\/JwDAutAp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780496097835745280\/1474920875","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14317928,"id_str":"14317928","name":"Richard - A. Wells","screen_name":"rawells","location":"West Concord, MA, USA","description":"Graybeard-in-training, - spousal and parental unit, linguatrope.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":2710,"listed_count":5,"created_at":"Sun - Apr 06 21:32:54 +0000 2008","favourites_count":11791,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11324,"lang":null,"status":{"created_at":"Fri - Mar 25 15:59:36 +0000 2022","id":1507386726066495488,"id_str":"1507386726066495488","text":"RT - @JohnDiesattheEn: I get a little annoyed with outsiders expressing bafflement - or even amusement about the American health care system, s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnDiesattheEn","name":"Jason - Pargin, author of John Dies at the End, etc","id":23404794,"id_str":"23404794","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:43:48 +0000 2022","id":1507050561727868932,"id_str":"1507050561727868932","text":"I - get a little annoyed with outsiders expressing bafflement or even amusement - about the American health care system\u2026 https:\/\/t.co\/ffrzA5NiWb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ffrzA5NiWb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507050561727868932","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6401,"favorite_count":27278,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6401,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326541095249965063\/K_U0Eijx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326541095249965063\/K_U0Eijx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14317928\/1621641441","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1537879945,"id_str":"1537879945","name":"mitchiebear - \ud83d\udc3b","screen_name":"Terrapinfromage","location":"","description":"actor, - teacher, student pilot, le duffer extraordinaire and Gracie\u2019s person.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":623,"listed_count":0,"created_at":"Sat - Jun 22 03:38:20 +0000 2013","favourites_count":4475,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3611,"lang":null,"status":{"created_at":"Fri - Mar 18 17:55:06 +0000 2022","id":1504879078586949639,"id_str":"1504879078586949639","text":"@joncoopertweets - He\u2019s not even a Chuck Todd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504876849825992712,"in_reply_to_status_id_str":"1504876849825992712","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497747992438263811\/EPQcnxCC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497747992438263811\/EPQcnxCC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1537879945\/1618494408","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28690259,"id_str":"28690259","name":"benjamin lee","screen_name":"eagles9601","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":1623,"listed_count":2,"created_at":"Fri - Apr 03 23:52:58 +0000 2009","favourites_count":280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Thu - Feb 03 01:03:22 +0000 2022","id":1489041792104230913,"id_str":"1489041792104230913","text":"@zerohedge - Hedging against customers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zerohedge","name":"zerohedge","id":18856867,"id_str":"18856867","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488957002961375253,"in_reply_to_status_id_str":"1488957002961375253","in_reply_to_user_id":18856867,"in_reply_to_user_id_str":"18856867","in_reply_to_screen_name":"zerohedge","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1883227088,"id_str":"1883227088","name":"a.ve~","screen_name":"VEAtid","location":"Bangkok, - Thailand","description":"bon app\u00e9tit","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":2549,"listed_count":0,"created_at":"Thu - Sep 19 13:48:58 +0000 2013","favourites_count":28871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10064,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1467161622720356359\/teSP7wzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1467161622720356359\/teSP7wzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1883227088\/1641905451","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":929719077937057792,"id_str":"929719077937057792","name":"E.J","screen_name":"EusilaJep","location":"","description":"Life - enthusiast.\nAs Maya Angelou says \u201cLife loves the liver of it. You must - live and life will be good to you.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":129,"listed_count":0,"created_at":"Sun - Nov 12 14:34:36 +0000 2017","favourites_count":225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Sat - Oct 02 11:48:41 +0000 2021","id":1444268094734622720,"id_str":"1444268094734622720","text":"@rafubooks - Previous read- Homegoing by Yaa Gyasi \n\nCurrent read- Love in Colour by - Lolu Babalola\n\nNext read( Re- re\u2026 https:\/\/t.co\/mp2TZG7wzI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rafubooks","name":"RafuBooks.com","id":1018543776128696321,"id_str":"1018543776128696321","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/mp2TZG7wzI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1444268094734622720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1444210140970954753,"in_reply_to_status_id_str":"1444210140970954753","in_reply_to_user_id":1018543776128696321,"in_reply_to_user_id_str":"1018543776128696321","in_reply_to_screen_name":"rafubooks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377345383781793796\/lFfmS_U1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377345383781793796\/lFfmS_U1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875732977032015873,"id_str":"875732977032015873","name":"BeckyG","screen_name":"BeckyG1217","location":"Akron, - OH","description":"Wife, Mother, Grandmother. I pay attention and I vote! - #TheResistance #FBR #ProtectOurCare #ProtectOurVote #IStandWithUkraine","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":436,"friends_count":1521,"listed_count":0,"created_at":"Fri - Jun 16 15:13:06 +0000 2017","favourites_count":54306,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28588,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499811454849101839\/qvAfe-0c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499811454849101839\/qvAfe-0c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875732977032015873\/1646417778","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1229793215823437825,"id_str":"1229793215823437825","name":"renee - white","screen_name":"reneewh28059072","location":"","description":"Love God - love life and people","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":734,"listed_count":0,"created_at":"Tue - Feb 18 15:42:41 +0000 2020","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Mar 24 02:50:22 +0000 2022","id":1506825722488397829,"id_str":"1506825722488397829","text":"@DrOz - Good","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506747209966133252,"in_reply_to_status_id_str":"1506747209966133252","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3432131920,"id_str":"3432131920","name":"Diane","screen_name":"DianeDmws730","location":"Kentucky, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":542,"listed_count":0,"created_at":"Wed - Aug 19 21:56:47 +0000 2015","favourites_count":348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":269,"lang":null,"status":{"created_at":"Fri - Sep 10 18:05:28 +0000 2021","id":1436390381474697221,"id_str":"1436390381474697221","text":"@BarbaraCorcoran - You look great in all of them-# 1 is my vote","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarbaraCorcoran","name":"Barbara - Corcoran","id":36728196,"id_str":"36728196","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1436343243889856512,"in_reply_to_status_id_str":"1436343243889856512","in_reply_to_user_id":36728196,"in_reply_to_user_id_str":"36728196","in_reply_to_screen_name":"BarbaraCorcoran","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310556918398713856\/Fq6AC7yF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310556918398713856\/Fq6AC7yF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":953094866011066368,"id_str":"953094866011066368","name":"cheryl - miller","screen_name":"cherylm66839123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":98,"listed_count":0,"created_at":"Tue - Jan 16 02:41:38 +0000 2018","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Apr 11 16:38:29 +0000 2020","id":1249013964635344901,"id_str":"1249013964635344901","text":"@MSNBC please - ask on air reporters to STOP touching masks while reporting. Contaminated - everything","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2836421,"in_reply_to_user_id_str":"2836421","in_reply_to_screen_name":"MSNBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21429811,"id_str":"21429811","name":"PawsitivelyPam\ud83d\udc3e\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","screen_name":"PamNCBennett","location":"\u00dcT: - 35.236552,-80.808844","description":"#sportsvixen\ud83e\udd8a. Avalanche \ud83c\udfd2\ud83e\udd45Hornets - \ud83c\udfc0 Dodgers\/Braves\/Yankees\u26be\ufe0f Seahawks\/Dolphins \ud83c\udfc8LIVE - AND LOVE LIFE!","url":"https:\/\/t.co\/aV40KuhwUf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aV40KuhwUf","expanded_url":"http:\/\/www.pawsitivelypam.com","display_url":"pawsitivelypam.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2256,"friends_count":4411,"listed_count":0,"created_at":"Fri - Feb 20 20:23:33 +0000 2009","favourites_count":63722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29863,"lang":null,"status":{"created_at":"Fri - Mar 25 20:40:18 +0000 2022","id":1507457368094871589,"id_str":"1507457368094871589","text":"@Experiance01 - \ud83e\udd18\ud83c\udffb Rock on!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Experiance01","name":"Nobody - You Know \ud83c\uddec\ud83c\uddf7 \ud83c\uddfa\ud83c\uddf8 \u262e \ud83c\udf0e","id":938379397,"id_str":"938379397","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507454790325833734,"in_reply_to_status_id_str":"1507454790325833734","in_reply_to_user_id":938379397,"in_reply_to_user_id_str":"938379397","in_reply_to_screen_name":"Experiance01","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498689861359964167\/Ts4U6M8c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498689861359964167\/Ts4U6M8c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21429811\/1646229062","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F26522","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299224907411148800,"id_str":"1299224907411148800","name":"Moon - Patels","screen_name":"MoonPatels","location":"","description":"I AM","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":88,"listed_count":0,"created_at":"Fri - Aug 28 05:58:59 +0000 2020","favourites_count":515,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":244,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310454303530737670\/_CoBKEks_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310454303530737670\/_CoBKEks_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299224907411148800\/1601271640","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1217968805801971712,"id_str":"1217968805801971712","name":"Ros - Willmett\ud83d\udc00\ud83d\ude09","screen_name":"RosWillmett","location":"Qld - Australia ","description":"Camping enthusiast. Left leaning politics watcher. - No DMs please \ud83d\ude42","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1328,"friends_count":4990,"listed_count":1,"created_at":"Fri - Jan 17 00:36:28 +0000 2020","favourites_count":97755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79844,"lang":null,"status":{"created_at":"Sat - Mar 26 09:25:04 +0000 2022","id":1507649829987823617,"id_str":"1507649829987823617","text":"@nawagadj - @james00000001 Yes but Labor is in disarray apparently. Just ask the MSM!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nawagadj","name":"MichaelH","id":3301597099,"id_str":"3301597099","indices":[0,9]},{"screen_name":"james00000001","name":"James - One\ud83d\ude37","id":204273771,"id_str":"204273771","indices":[10,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507622381854289925,"in_reply_to_status_id_str":"1507622381854289925","in_reply_to_user_id":3301597099,"in_reply_to_user_id_str":"3301597099","in_reply_to_screen_name":"nawagadj","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382116731519266817\/G8h5De3W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382116731519266817\/G8h5De3W_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58598144,"id_str":"58598144","name":"Roland - Webb","screen_name":"1RolandWebb","location":"Frisco, Texas","description":"Reader - of Thinking and Destiny by Harold Percival, Seth, Socrates & Ralph W. Emerson - & other great thinkers. Man know thyself; As a man thinketh, so is he!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":793,"listed_count":1,"created_at":"Mon - Jul 20 21:35:22 +0000 2009","favourites_count":14084,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6245,"lang":null,"status":{"created_at":"Wed - Mar 23 21:28:27 +0000 2022","id":1506744709418565652,"id_str":"1506744709418565652","text":"@RealCandaceO - Shame shame shame on you! You ought to be ashamed that you\u2019re not ashamed!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealCandaceO","name":"Candace - Owens","id":878247600096509952,"id_str":"878247600096509952","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506711374604427268,"in_reply_to_status_id_str":"1506711374604427268","in_reply_to_user_id":878247600096509952,"in_reply_to_user_id_str":"878247600096509952","in_reply_to_screen_name":"RealCandaceO","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504793350008885248\/7DWfX4W4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504793350008885248\/7DWfX4W4_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1150954075195891712,"id_str":"1150954075195891712","name":"silvercoqui","screen_name":"silvercoqui","location":"","description":"Elegant - simplicity of sea glass art in a variety of colors. Each piece of sea glass - is hand picked by me or my family in Puerto Rico.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":403,"listed_count":0,"created_at":"Tue - Jul 16 02:23:29 +0000 2019","favourites_count":451,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Sun - Apr 25 18:45:43 +0000 2021","id":1386390985505083392,"id_str":"1386390985505083392","text":"Mother\/child - footprint 12x16 shadow box frames \n\nBrown $80\nSea Foam $95\n\nShipping - in the US $5.00 https:\/\/t.co\/2KermRdJrp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1386390982615314437,"id_str":"1386390982615314437","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/Ez1zQNaXMAUNH0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ez1zQNaXMAUNH0D.jpg","url":"https:\/\/t.co\/2KermRdJrp","display_url":"pic.twitter.com\/2KermRdJrp","expanded_url":"https:\/\/twitter.com\/silvercoqui\/status\/1386390985505083392\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1386390982615314437,"id_str":"1386390982615314437","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/Ez1zQNaXMAUNH0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ez1zQNaXMAUNH0D.jpg","url":"https:\/\/t.co\/2KermRdJrp","display_url":"pic.twitter.com\/2KermRdJrp","expanded_url":"https:\/\/twitter.com\/silvercoqui\/status\/1386390985505083392\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}},{"id":1386390982615343108,"id_str":"1386390982615343108","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/Ez1zQNaXoAQBHXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ez1zQNaXoAQBHXM.jpg","url":"https:\/\/t.co\/2KermRdJrp","display_url":"pic.twitter.com\/2KermRdJrp","expanded_url":"https:\/\/twitter.com\/silvercoqui\/status\/1386390985505083392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1440,"h":1440,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1150956134339141632\/bEtOQlg__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150956134339141632\/bEtOQlg__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1164311598951014406,"id_str":"1164311598951014406","name":"howelljolly","screen_name":"howelljolly3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":373,"listed_count":0,"created_at":"Wed - Aug 21 23:01:49 +0000 2019","favourites_count":67,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Jul 06 17:31:15 +0000 2021","id":1412464172705763329,"id_str":"1412464172705763329","text":"RT - @artibiotics: Discs are rubbery shock absorbers sandwiched between vertebrae. - Disc prolapse is when their jelly-like center bursts out w\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"artibiotics","name":"Cil\u00e9in - Kearns","id":298445805,"id_str":"298445805","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 05 05:00:53 +0000 2021","id":1411912948415672324,"id_str":"1411912948415672324","text":"Discs - are rubbery shock absorbers sandwiched between vertebrae. Disc prolapse is - when their jelly-like center burst\u2026 https:\/\/t.co\/x6K91DxCHM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/x6K91DxCHM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1411912948415672324","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.later.com\" rel=\"nofollow\"\u003eLaterMedia\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":227,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304958074294337542,"id_str":"1304958074294337542","name":"Yvonne - Bollinger","screen_name":"YvonneBollinge2","location":"Indiana, USA","description":"hey - \ud83d\udc4b how''s everybody out there in Twitter Land??","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":636,"listed_count":0,"created_at":"Sun - Sep 13 01:41:13 +0000 2020","favourites_count":258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":605,"lang":null,"status":{"created_at":"Sun - Mar 06 22:01:23 +0000 2022","id":1500592405464195090,"id_str":"1500592405464195090","text":"RT - @AlecScholten: Still in disbelief over what I experienced yesterday. I\u2019ll - never forget the audible roar and rancid chemical smell that f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlecScholten","name":"Alec - Scholten","id":90322497,"id_str":"90322497","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 18:37:29 +0000 2022","id":1500541092785131521,"id_str":"1500541092785131521","text":"Still - in disbelief over what I experienced yesterday. I\u2019ll never forget the - audible roar and rancid chemical smell\u2026 https:\/\/t.co\/U7omv2UXo6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U7omv2UXo6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500541092785131521","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":931,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":158,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314389941909180416\/2xhQb_PY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314389941909180416\/2xhQb_PY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2762946018,"id_str":"2762946018","name":"Anna","screen_name":"annaqc_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":7,"listed_count":0,"created_at":"Sun - Aug 24 16:07:44 +0000 2014","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505313019262693377\/_5z-y4jH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505313019262693377\/_5z-y4jH_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27125224,"id_str":"27125224","name":"Brian - Burch","screen_name":"bburch56","location":"Sacramento, California","description":"","url":"https:\/\/t.co\/JhBrlYRnHk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JhBrlYRnHk","expanded_url":"http:\/\/burchdesigngroup.com","display_url":"burchdesigngroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":1118,"listed_count":4,"created_at":"Fri - Mar 27 23:22:02 +0000 2009","favourites_count":3523,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3691,"lang":null,"status":{"created_at":"Thu - Mar 17 18:38:53 +0000 2022","id":1504527709325578240,"id_str":"1504527709325578240","text":"@Gaijinotousan - I think I just figured out I\u2019m at first or second grade level with my - Japanese.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Gaijinotousan","name":"Gaijin - Otousan","id":1219861055456845825,"id_str":"1219861055456845825","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504409094404263936,"in_reply_to_status_id_str":"1504409094404263936","in_reply_to_user_id":1219861055456845825,"in_reply_to_user_id_str":"1219861055456845825","in_reply_to_screen_name":"Gaijinotousan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1134253478\/brian_by_kevin_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1134253478\/brian_by_kevin_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27125224\/1628649407","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58176435,"id_str":"58176435","name":"Bharath","screen_name":"bh4r4th","location":"United - States","description":"Engineer. Stock Trader.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":3611,"listed_count":6,"created_at":"Sun - Jul 19 11:14:34 +0000 2009","favourites_count":3337,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1529,"lang":null,"status":{"created_at":"Wed - Mar 09 19:17:10 +0000 2022","id":1501638243414003713,"id_str":"1501638243414003713","text":"RT - @Nithin0dha: Seema, my wife, was diagnosed with breast cancer last Nov. She - decided to share her journey & learnings till now to create\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nithin0dha","name":"Nithin - Kamath","id":1660202983,"id_str":"1660202983","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 03:25:01 +0000 2022","id":1501036236894781443,"id_str":"1501036236894781443","text":"Seema, - my wife, was diagnosed with breast cancer last Nov. She decided to share her - journey & learnings till now to\u2026 https:\/\/t.co\/4xHpBTsN5u","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4xHpBTsN5u","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501036236894781443","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2589,"favorite_count":18626,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2589,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260481800276713472\/11XXVzyW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260481800276713472\/11XXVzyW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58176435\/1595377030","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1054097159338016768,"id_str":"1054097159338016768","name":"Probo - R. Ovelar","screen_name":"probovelar","location":"Canelones, Uruguay","description":"\u00abThe - proper function of man is to live, not to exist. I shall not waste my days - in trying to prolong them. I shall use my time\u00bb.","url":"https:\/\/t.co\/a9AqcHGjdK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/a9AqcHGjdK","expanded_url":"http:\/\/diarioeldia.uy\/sitio\/author\/povelar\/","display_url":"diarioeldia.uy\/sitio\/author\/p\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":1059,"friends_count":1474,"listed_count":6,"created_at":"Sun - Oct 21 19:48:41 +0000 2018","favourites_count":28673,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3571,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457864679053692928\/9dwwmGUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457864679053692928\/9dwwmGUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1054097159338016768\/1632053485","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140597089807638528,"id_str":"1140597089807638528","name":"Elisa - Shafiqah \ud83c\udf3a\ud83c\uddf2\ud83c\uddfe","screen_name":"elisa_shafiqah","location":"Malaysia","description":"Passionate - about foreign affairs at @diplomacymy \u2022 Living with Bipolar Type II \u2022 - International Relations UM 24\u2019 \ud83d\udce7elisa@diplomacymy.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":868,"friends_count":444,"listed_count":3,"created_at":"Mon - Jun 17 12:28:32 +0000 2019","favourites_count":3285,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8471,"lang":null,"status":{"created_at":"Sat - Mar 26 04:55:06 +0000 2022","id":1507581890341273602,"id_str":"1507581890341273602","text":"Watching - the UM parlimen sitting. So happy to see democracy played out. \n\nFor future - reference, perhaps need to mak\u2026 https:\/\/t.co\/tU4mIFatGT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tU4mIFatGT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507581890341273602","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503290942539059200\/te9b9Q1B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503290942539059200\/te9b9Q1B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1140597089807638528\/1641420776","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":972230942877085696,"id_str":"972230942877085696","name":"karen - scott","screen_name":"karensc01731579","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":58,"listed_count":0,"created_at":"Fri - Mar 09 22:01:34 +0000 2018","favourites_count":576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1102,"lang":null,"status":{"created_at":"Sat - Mar 26 05:17:59 +0000 2022","id":1507587646754738180,"id_str":"1507587646754738180","text":"Actually, - quite a few https:\/\/t.co\/8s9nsgRfF7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8s9nsgRfF7","expanded_url":"https:\/\/twitter.com\/jesflres\/status\/1507440919578034181","display_url":"twitter.com\/jesflres\/statu\u2026","indices":[22,45]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507440919578034181,"quoted_status_id_str":"1507440919578034181","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242320093586980865\/Ys1FFl9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242320093586980865\/Ys1FFl9k_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300348479433248768,"id_str":"1300348479433248768","name":"Monika - Maciulyte","screen_name":"MaciulyteMonika","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":707,"listed_count":0,"created_at":"Mon - Aug 31 08:23:43 +0000 2020","favourites_count":2428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Nov 16 13:57:34 +0000 2020","id":1328336412547166210,"id_str":"1328336412547166210","text":"Here\u2019s - to #UnionOfEquality & #toleranceday ! https:\/\/t.co\/VBZIkGkd25","truncated":false,"entities":{"hashtags":[{"text":"UnionOfEquality","indices":[10,26]},{"text":"toleranceday","indices":[33,46]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VBZIkGkd25","expanded_url":"https:\/\/twitter.com\/EU_Commission\/status\/1328235101386285057","display_url":"twitter.com\/EU_Commission\/\u2026","indices":[49,72]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1328235101386285057,"quoted_status_id_str":"1328235101386285057","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2604653530,"id_str":"2604653530","name":"nalinee","screen_name":"pepenalin","location":"Lao - People''s Democratic Republic","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":498,"listed_count":0,"created_at":"Thu - Jun 12 20:53:48 +0000 2014","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - May 15 17:03:34 +0000 2020","id":1261341463759056897,"id_str":"1261341463759056897","text":"RT - @ABC: Pres. Trump delivers remarks in the Rose Garden on COVID-19 vaccine - development. WATCH LIVE: https:\/\/t.co\/3SPDrLxgMt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC","name":"ABC - News","id":28785486,"id_str":"28785486","indices":[3,7]}],"urls":[{"url":"https:\/\/t.co\/3SPDrLxgMt","expanded_url":"https:\/\/www.pscp.tv\/w\/cY1r_jM3Mzg2fDFuQUtFZFlZcmJ5eEya3VHoSmNRMXj7UHPU7vwIwjP1oDvhR2Gi4hg7nbXw_w==","display_url":"pscp.tv\/w\/cY1r_jM3Mzg2\u2026","indices":[102,125]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 15 16:40:30 +0000 2020","id":1261335659349827587,"id_str":"1261335659349827587","text":"Pres. - Trump delivers remarks in the Rose Garden on COVID-19 vaccine development. - WATCH LIVE: https:\/\/t.co\/3SPDrLxgMt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3SPDrLxgMt","expanded_url":"https:\/\/www.pscp.tv\/w\/cY1r_jM3Mzg2fDFuQUtFZFlZcmJ5eEya3VHoSmNRMXj7UHPU7vwIwjP1oDvhR2Gi4hg7nbXw_w==","display_url":"pscp.tv\/w\/cY1r_jM3Mzg2\u2026","indices":[93,116]}]},"source":"\u003ca - href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":135,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1EB1E6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238844593145143297,"id_str":"1238844593145143297","name":"My - Name Is","screen_name":"allmyacBSJP","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":1414,"listed_count":0,"created_at":"Sat - Mar 14 15:09:43 +0000 2020","favourites_count":5969,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6242,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298206899955855360\/7qLzrgNv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298206899955855360\/7qLzrgNv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238844593145143297\/1598351147","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1057708927981363200,"id_str":"1057708927981363200","name":"Gerry","screen_name":"Gerry91533591","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":58,"listed_count":0,"created_at":"Wed - Oct 31 19:00:34 +0000 2018","favourites_count":62,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93,"lang":null,"status":{"created_at":"Tue - Mar 22 16:39:12 +0000 2022","id":1506309529998348290,"id_str":"1506309529998348290","text":"@JamesonCoop - I wouldn\u2019t use five forwards except on five on threes leads to a lot - of shorthanded opportunities beca\u2026 https:\/\/t.co\/PWubHO3YZn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamesonCoop","name":"Jameson - Olive","id":24850140,"id_str":"24850140","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/PWubHO3YZn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506309529998348290","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506283185382076430,"in_reply_to_status_id_str":"1506283185382076430","in_reply_to_user_id":24850140,"in_reply_to_user_id_str":"24850140","in_reply_to_screen_name":"JamesonCoop","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49134351,"id_str":"49134351","name":"Debster","screen_name":"Canela60","location":"Michigan, - USA","description":"RN, Resistor, Stepmom, Beagle Mom. Proud U of M alumnus! GO - BLUE!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":870,"listed_count":2,"created_at":"Sat - Jun 20 22:01:26 +0000 2009","favourites_count":42711,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4823,"lang":null,"status":{"created_at":"Wed - Mar 23 08:39:59 +0000 2022","id":1506551319829651456,"id_str":"1506551319829651456","text":"RT - @HillaryClinton: I''d say she''s qualified.\n\nSource: @washingtonpost https:\/\/t.co\/u18lPpQh1b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HillaryClinton","name":"Hillary - Clinton","id":1339835893,"id_str":"1339835893","indices":[3,18]},{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[54,69]}],"urls":[],"media":[{"id":1505913006621958153,"id_str":"1505913006621958153","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","url":"https:\/\/t.co\/u18lPpQh1b","display_url":"pic.twitter.com\/u18lPpQh1b","expanded_url":"https:\/\/twitter.com\/HillaryClinton\/status\/1505913125903777795\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":811,"h":595,"resize":"fit"},"medium":{"w":811,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1505913125903777795,"source_status_id_str":"1505913125903777795","source_user_id":1339835893,"source_user_id_str":"1339835893"}]},"extended_entities":{"media":[{"id":1505913006621958153,"id_str":"1505913006621958153","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","url":"https:\/\/t.co\/u18lPpQh1b","display_url":"pic.twitter.com\/u18lPpQh1b","expanded_url":"https:\/\/twitter.com\/HillaryClinton\/status\/1505913125903777795\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":811,"h":595,"resize":"fit"},"medium":{"w":811,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1505913125903777795,"source_status_id_str":"1505913125903777795","source_user_id":1339835893,"source_user_id_str":"1339835893"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 14:24:02 +0000 2022","id":1505913125903777795,"id_str":"1505913125903777795","text":"I''d - say she''s qualified.\n\nSource: @washingtonpost https:\/\/t.co\/u18lPpQh1b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"washingtonpost","name":"The - Washington Post","id":2467791,"id_str":"2467791","indices":[34,49]}],"urls":[],"media":[{"id":1505913006621958153,"id_str":"1505913006621958153","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","url":"https:\/\/t.co\/u18lPpQh1b","display_url":"pic.twitter.com\/u18lPpQh1b","expanded_url":"https:\/\/twitter.com\/HillaryClinton\/status\/1505913125903777795\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":811,"h":595,"resize":"fit"},"medium":{"w":811,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1505913006621958153,"id_str":"1505913006621958153","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOYT5p5XoAkZhO4.png","url":"https:\/\/t.co\/u18lPpQh1b","display_url":"pic.twitter.com\/u18lPpQh1b","expanded_url":"https:\/\/twitter.com\/HillaryClinton\/status\/1505913125903777795\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":811,"h":595,"resize":"fit"},"medium":{"w":811,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26127,"favorite_count":131759,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26127,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353885279657070593\/HgvdfKi6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353885279657070593\/HgvdfKi6_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1320039086816522240,"id_str":"1320039086816522240","name":"Alexa - Villatoro","screen_name":"aalexavillatoro","location":"NYC","description":"Seattle - \u2708\ufe0f Fordham U \u201823, International Studies. Journalist. Avid lover - of my dog and my dog only \ud83d\udc36","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":276,"listed_count":3,"created_at":"Sat - Oct 24 16:27:11 +0000 2020","favourites_count":1074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":null,"status":{"created_at":"Thu - Dec 09 02:43:56 +0000 2021","id":1468773379322699783,"id_str":"1468773379322699783","text":"@au_roque - u also on ur phone rn??? \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"au_roque","name":"alex\/uni - (she, her)","id":1248452066759962624,"id_str":"1248452066759962624","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1468773093602562049,"in_reply_to_status_id_str":"1468773093602562049","in_reply_to_user_id":1248452066759962624,"in_reply_to_user_id_str":"1248452066759962624","in_reply_to_screen_name":"au_roque","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465220210131025924\/tN8Ee1KU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465220210131025924\/tN8Ee1KU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1320039086816522240\/1604279224","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":278235239,"id_str":"278235239","name":"Lori - Bell","screen_name":"lorimibell","location":"Oregon, USA","description":"I - just love smiling. Smiling''s my favorite.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":2324,"listed_count":0,"created_at":"Wed - Apr 06 21:52:20 +0000 2011","favourites_count":11554,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":95,"lang":null,"status":{"created_at":"Wed - Feb 09 17:16:54 +0000 2022","id":1491461113053003776,"id_str":"1491461113053003776","text":"@CoreyBushmaker - Serious clarifying question; is this coming from the vampire fitness industry?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoreyBushmaker","name":"Corey - \u201cGet Vaccinated\u201d Bushmaker","id":2921111041,"id_str":"2921111041","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1491424719509553152,"in_reply_to_status_id_str":"1491424719509553152","in_reply_to_user_id":2921111041,"in_reply_to_user_id_str":"2921111041","in_reply_to_screen_name":"CoreyBushmaker","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3157614165\/93ac0b40c3cb4e373b2b6769239b2fc8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3157614165\/93ac0b40c3cb4e373b2b6769239b2fc8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/278235239\/1454970967","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1131949631489871872,"id_str":"1131949631489871872","name":"Justina","screen_name":"lovelylife715","location":"","description":"Dedicated - wife, mother & strong woman looking for a change in this country! We need - to be united not divided. Let''s build a better future. Love Trumps Hate!\ud83c\uddfa\ud83c\uddf8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":495,"listed_count":0,"created_at":"Fri - May 24 15:46:37 +0000 2019","favourites_count":28785,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1844,"lang":null,"status":{"created_at":"Sat - Mar 26 00:53:51 +0000 2022","id":1507521176255488007,"id_str":"1507521176255488007","text":"@NoLieWithBTC - Deeply disappointing @SenSasse","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[0,13]},{"screen_name":"SenSasse","name":"Senator - Ben Sasse","id":2962923040,"id_str":"2962923040","indices":[35,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507492833665728517,"in_reply_to_status_id_str":"1507492833665728517","in_reply_to_user_id":1268223690480615424,"in_reply_to_user_id_str":"1268223690480615424","in_reply_to_screen_name":"NoLieWithBTC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352670242120626184\/LQKoJ9Dc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352670242120626184\/LQKoJ9Dc_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238518520885006336,"id_str":"1238518520885006336","name":"Love, - Nico\ud83c\udf83\ud83c\uddf2\ud83c\uddfd","screen_name":"love_TheGaybean","location":"Camp - halfblood ","description":"Catriz #BlackLivesMatter He\/They\/She GayAce \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f - Hispanic\ud83c\uddf2\ud83c\uddfd Musician,Actor,dancer , Apollo,","url":"https:\/\/t.co\/9c4xHAJbGG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9c4xHAJbGG","expanded_url":"https:\/\/itgetsbetter.org","display_url":"itgetsbetter.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":141,"listed_count":0,"created_at":"Fri - Mar 13 17:33:54 +0000 2020","favourites_count":1112,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":102,"lang":null,"status":{"created_at":"Sat - Jan 01 01:50:48 +0000 2022","id":1477094925770625029,"id_str":"1477094925770625029","text":"RT - @nanauzumakiii: disney really said: oh you''re latino??? here''s a movie about - generational trauma so we can make you cry #Encanto https:\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"Encanto","indices":[123,131]}],"symbols":[],"user_mentions":[{"screen_name":"nanauzumakiii","name":"\u2661 - addie \u2661","id":1367155719246643206,"id_str":"1367155719246643206","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 25 22:43:49 +0000 2021","id":1474873546459561992,"id_str":"1474873546459561992","text":"disney - really said: oh you''re latino??? here''s a movie about generational trauma - so we can make you cry #Encanto https:\/\/t.co\/1qFByjSWP5","truncated":false,"entities":{"hashtags":[{"text":"Encanto","indices":[104,112]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1474873532370853895,"id_str":"1474873532370853895","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHfNqdmXIAcvkjl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHfNqdmXIAcvkjl.jpg","url":"https:\/\/t.co\/1qFByjSWP5","display_url":"pic.twitter.com\/1qFByjSWP5","expanded_url":"https:\/\/twitter.com\/nanauzumakiii\/status\/1474873546459561992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1382,"h":2048,"resize":"fit"},"medium":{"w":810,"h":1200,"resize":"fit"},"small":{"w":459,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1474873532370853895,"id_str":"1474873532370853895","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHfNqdmXIAcvkjl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHfNqdmXIAcvkjl.jpg","url":"https:\/\/t.co\/1qFByjSWP5","display_url":"pic.twitter.com\/1qFByjSWP5","expanded_url":"https:\/\/twitter.com\/nanauzumakiii\/status\/1474873546459561992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1382,"h":2048,"resize":"fit"},"medium":{"w":810,"h":1200,"resize":"fit"},"small":{"w":459,"h":680,"resize":"fit"}}},{"id":1474873540742688771,"id_str":"1474873540742688771","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FHfNq8yXMAM6FIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHfNq8yXMAM6FIL.jpg","url":"https:\/\/t.co\/1qFByjSWP5","display_url":"pic.twitter.com\/1qFByjSWP5","expanded_url":"https:\/\/twitter.com\/nanauzumakiii\/status\/1474873546459561992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":476,"h":680,"resize":"fit"},"medium":{"w":840,"h":1200,"resize":"fit"},"large":{"w":1433,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2952,"favorite_count":17809,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2952,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507042214811250688\/3Ea9KjO8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507042214811250688\/3Ea9KjO8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238518520885006336\/1625387735","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24650072,"id_str":"24650072","name":"Russ - Kane","screen_name":"russkane","location":"\u00dcT: 39.391804,-104.867023","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":1064,"listed_count":6,"created_at":"Mon - Mar 16 04:30:54 +0000 2009","favourites_count":1039,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":577,"lang":null,"status":{"created_at":"Wed - Apr 08 01:57:39 +0000 2020","id":1247705131337973760,"id_str":"1247705131337973760","text":"@jdickerson - @JohnPrineMusic Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jdickerson","name":"John - Dickerson","id":4119741,"id_str":"4119741","indices":[0,11]},{"screen_name":"JohnPrineMusic","name":"John - Prine","id":4707066250,"id_str":"4707066250","indices":[12,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":890559401140027393,"in_reply_to_status_id_str":"890559401140027393","in_reply_to_user_id":4119741,"in_reply_to_user_id_str":"4119741","in_reply_to_screen_name":"jdickerson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2F436A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/413991562\/PICT0172_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/413991562\/PICT0172_normal.JPG","profile_link_color":"FF0000","profile_sidebar_border_color":"1D719F","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":324908476,"id_str":"324908476","name":"Argentina - Rodriguez","screen_name":"Arodmatos","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":974,"listed_count":1,"created_at":"Mon - Jun 27 12:24:00 +0000 2011","favourites_count":9507,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8914,"lang":null,"status":{"created_at":"Sat - Mar 26 04:48:44 +0000 2022","id":1507580288163106819,"id_str":"1507580288163106819","text":"RT - @mcspocky: When I ran across this, it cracked me up. \ud83e\udd23 Enjoy!\n#RepublicansAreTheProblem\n#GOP - https:\/\/t.co\/u5L9LiPybY","truncated":false,"entities":{"hashtags":[{"text":"RepublicansAreTheProblem","indices":[65,90]},{"text":"GOP","indices":[91,95]}],"symbols":[],"user_mentions":[{"screen_name":"mcspocky","name":"\ud83d\udc7d - McSpocky\u2122 \ud83d\udde3\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83c\udf0a\ud83d\udc89 - #StandWithUkraine","id":18082945,"id_str":"18082945","indices":[3,12]}],"urls":[],"media":[{"id":1507555343903064071,"id_str":"1507555343903064071","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","url":"https:\/\/t.co\/u5L9LiPybY","display_url":"pic.twitter.com\/u5L9LiPybY","expanded_url":"https:\/\/twitter.com\/mcspocky\/status\/1507555348198027265\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":679,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":642,"resize":"fit"},"medium":{"w":719,"h":679,"resize":"fit"}},"source_status_id":1507555348198027265,"source_status_id_str":"1507555348198027265","source_user_id":18082945,"source_user_id_str":"18082945"}]},"extended_entities":{"media":[{"id":1507555343903064071,"id_str":"1507555343903064071","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","url":"https:\/\/t.co\/u5L9LiPybY","display_url":"pic.twitter.com\/u5L9LiPybY","expanded_url":"https:\/\/twitter.com\/mcspocky\/status\/1507555348198027265\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":679,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":642,"resize":"fit"},"medium":{"w":719,"h":679,"resize":"fit"}},"source_status_id":1507555348198027265,"source_status_id_str":"1507555348198027265","source_user_id":18082945,"source_user_id_str":"18082945"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:09:38 +0000 2022","id":1507555348198027265,"id_str":"1507555348198027265","text":"When - I ran across this, it cracked me up. \ud83e\udd23 Enjoy!\n#RepublicansAreTheProblem\n#GOP - https:\/\/t.co\/u5L9LiPybY","truncated":false,"entities":{"hashtags":[{"text":"RepublicansAreTheProblem","indices":[51,76]},{"text":"GOP","indices":[77,81]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507555343903064071,"id_str":"1507555343903064071","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","url":"https:\/\/t.co\/u5L9LiPybY","display_url":"pic.twitter.com\/u5L9LiPybY","expanded_url":"https:\/\/twitter.com\/mcspocky\/status\/1507555348198027265\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":679,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":642,"resize":"fit"},"medium":{"w":719,"h":679,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507555343903064071,"id_str":"1507555343903064071","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvpmRCVgAcEvwY.jpg","url":"https:\/\/t.co\/u5L9LiPybY","display_url":"pic.twitter.com\/u5L9LiPybY","expanded_url":"https:\/\/twitter.com\/mcspocky\/status\/1507555348198027265\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":679,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":642,"resize":"fit"},"medium":{"w":719,"h":679,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":237,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":92,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482331025468444672\/ChlIirRJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482331025468444672\/ChlIirRJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324908476\/1645969825","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":353301990,"id_str":"353301990","name":"Ciro","screen_name":"CiroScotti","location":"New - York City","description":"New York writer & editor, lover of Rogues Island.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":820,"listed_count":4,"created_at":"Thu - Aug 11 21:27:53 +0000 2011","favourites_count":119,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":301,"lang":null,"status":{"created_at":"Thu - Feb 24 20:42:07 +0000 2022","id":1496948576299139075,"id_str":"1496948576299139075","text":"From - Dump, The Musical https:\/\/t.co\/xc3dp1PEKa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1496948501544062983,"id_str":"1496948501544062983","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1496948501544062983\/pu\/img\/060ZO0V0kspkn0F3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1496948501544062983\/pu\/img\/060ZO0V0kspkn0F3.jpg","url":"https:\/\/t.co\/xc3dp1PEKa","display_url":"pic.twitter.com\/xc3dp1PEKa","expanded_url":"https:\/\/twitter.com\/CiroScotti\/status\/1496948576299139075\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1496948501544062983,"id_str":"1496948501544062983","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1496948501544062983\/pu\/img\/060ZO0V0kspkn0F3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1496948501544062983\/pu\/img\/060ZO0V0kspkn0F3.jpg","url":"https:\/\/t.co\/xc3dp1PEKa","display_url":"pic.twitter.com\/xc3dp1PEKa","expanded_url":"https:\/\/twitter.com\/CiroScotti\/status\/1496948576299139075\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":11841,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1496948501544062983\/pu\/vid\/640x360\/XiQ1Po8PzEstqYgq.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1496948501544062983\/pu\/vid\/1280x720\/D-xmle4-Jz_y-LYf.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1496948501544062983\/pu\/pl\/1iD_fM-eAovtH8Te.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1496948501544062983\/pu\/vid\/480x270\/LvY5ppttyqDU9Jpc.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694552181891022848\/0VR6Qkca_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694552181891022848\/0VR6Qkca_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":378324880,"id_str":"378324880","name":"Jackie","screen_name":"NowakJackie","location":"","description":"Retired - RN, mother, grandmother, nature lover, gardener, traveler, quilter","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":547,"listed_count":0,"created_at":"Fri - Sep 23 00:55:26 +0000 2011","favourites_count":2196,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":63,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223332304879263745\/f6Kzv2I__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223332304879263745\/f6Kzv2I__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378324880\/1646177866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":703110007479349249,"id_str":"703110007479349249","name":"Bedan - Kamau","screen_name":"gichukibedan1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":106,"listed_count":0,"created_at":"Fri - Feb 26 06:51:03 +0000 2016","favourites_count":346,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":467,"lang":null,"status":{"created_at":"Sun - Mar 20 00:54:51 +0000 2022","id":1505347098979545089,"id_str":"1505347098979545089","text":"@NoellahLove - Hey.. appetite is high i join the race","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505207623003643904,"in_reply_to_status_id_str":"1505207623003643904","in_reply_to_user_id":1471501962814234637,"in_reply_to_user_id_str":"1471501962814234637","in_reply_to_screen_name":"theboyissamson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":260081413,"id_str":"260081413","name":"Pamela - Ferris","screen_name":"pamelaferris","location":"British Columbia","description":"dog - obsessed \/\/ lover of science & data and intersectional feminism \/\/ wish - I was responsible enough to keep house plants alive \/\/ she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":869,"listed_count":0,"created_at":"Thu - Mar 03 04:47:38 +0000 2011","favourites_count":18688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":727,"lang":null,"status":{"created_at":"Thu - Mar 24 19:00:38 +0000 2022","id":1507069898333179912,"id_str":"1507069898333179912","text":"RT - @jonathanstea: Hahaha.\n\nHa.\n\n...\n\nHa.\n\nHahaha. https:\/\/t.co\/uRhT7eK82A","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jonathanstea","name":"Dr. - Jonathan N. Stea","id":50547284,"id_str":"50547284","indices":[3,16]}],"urls":[],"media":[{"id":1507044983353724928,"id_str":"1507044983353724928","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","url":"https:\/\/t.co\/uRhT7eK82A","display_url":"pic.twitter.com\/uRhT7eK82A","expanded_url":"https:\/\/twitter.com\/jonathanstea\/status\/1507045355317125130\/photo\/1","type":"photo","sizes":{"large":{"w":582,"h":241,"resize":"fit"},"medium":{"w":582,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":582,"h":241,"resize":"fit"}},"source_status_id":1507045355317125130,"source_status_id_str":"1507045355317125130","source_user_id":50547284,"source_user_id_str":"50547284"}]},"extended_entities":{"media":[{"id":1507044983353724928,"id_str":"1507044983353724928","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","url":"https:\/\/t.co\/uRhT7eK82A","display_url":"pic.twitter.com\/uRhT7eK82A","expanded_url":"https:\/\/twitter.com\/jonathanstea\/status\/1507045355317125130\/photo\/1","type":"photo","sizes":{"large":{"w":582,"h":241,"resize":"fit"},"medium":{"w":582,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":582,"h":241,"resize":"fit"}},"source_status_id":1507045355317125130,"source_status_id_str":"1507045355317125130","source_user_id":50547284,"source_user_id_str":"50547284"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:23:06 +0000 2022","id":1507045355317125130,"id_str":"1507045355317125130","text":"Hahaha.\n\nHa.\n\n...\n\nHa.\n\nHahaha. - https:\/\/t.co\/uRhT7eK82A","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507044983353724928,"id_str":"1507044983353724928","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","url":"https:\/\/t.co\/uRhT7eK82A","display_url":"pic.twitter.com\/uRhT7eK82A","expanded_url":"https:\/\/twitter.com\/jonathanstea\/status\/1507045355317125130\/photo\/1","type":"photo","sizes":{"large":{"w":582,"h":241,"resize":"fit"},"medium":{"w":582,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":582,"h":241,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507044983353724928,"id_str":"1507044983353724928","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoZbX1VUAAPoo3.png","url":"https:\/\/t.co\/uRhT7eK82A","display_url":"pic.twitter.com\/uRhT7eK82A","expanded_url":"https:\/\/twitter.com\/jonathanstea\/status\/1507045355317125130\/photo\/1","type":"photo","sizes":{"large":{"w":582,"h":241,"resize":"fit"},"medium":{"w":582,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":582,"h":241,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":104,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1566166633\/EW0_7353_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1566166633\/EW0_7353_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260081413\/1612680156","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"4A6F4D","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1133666052263387136,"id_str":"1133666052263387136","name":"Rudolph - Polderman","screen_name":"RudolphPolderm1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":226,"friends_count":1541,"listed_count":0,"created_at":"Wed - May 29 09:27:04 +0000 2019","favourites_count":11352,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":289,"lang":null,"status":{"created_at":"Thu - Mar 24 23:09:19 +0000 2022","id":1507132482910670852,"id_str":"1507132482910670852","text":"@DemonEvilMuscle - @ewarren What would you know, demon?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DemonEvilMuscle","name":"Joseph - \u201cThe Demon \u201cAlbanese","id":1174060809023979520,"id_str":"1174060809023979520","indices":[0,16]},{"screen_name":"ewarren","name":"Elizabeth - Warren","id":357606935,"id_str":"357606935","indices":[17,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507061110905929729,"in_reply_to_status_id_str":"1507061110905929729","in_reply_to_user_id":1174060809023979520,"in_reply_to_user_id_str":"1174060809023979520","in_reply_to_screen_name":"DemonEvilMuscle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1011221632873050112,"id_str":"1011221632873050112","name":"Michael - Astrauckas","screen_name":"404HumaNotFound","location":"Lexington, SC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":500,"listed_count":3,"created_at":"Mon - Jun 25 12:16:39 +0000 2018","favourites_count":9785,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":310,"lang":null,"status":{"created_at":"Tue - Mar 22 22:11:20 +0000 2022","id":1506393115455897601,"id_str":"1506393115455897601","text":"@8463u - @animepfpv9 @PuckCentral @Breaking911 Red ad blue have very little meaning. They - overall believe the state should control your life.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"8463u","name":"\uea00 - .","id":1344222390461419521,"id_str":"1344222390461419521","indices":[0,6]},{"screen_name":"animepfpv9","name":"redacted","id":1503833414381838340,"id_str":"1503833414381838340","indices":[7,18]},{"screen_name":"PuckCentral","name":"PuckCentral","id":30329083,"id_str":"30329083","indices":[19,31]},{"screen_name":"Breaking911","name":"Breaking911","id":375721095,"id_str":"375721095","indices":[32,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506378333935726593,"in_reply_to_status_id_str":"1506378333935726593","in_reply_to_user_id":1344222390461419521,"in_reply_to_user_id_str":"1344222390461419521","in_reply_to_screen_name":"8463u","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1214910696724598784,"id_str":"1214910696724598784","name":"Catherine","screen_name":"Catheri21422357","location":"","description":"browsing - political and news info","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":647,"listed_count":0,"created_at":"Wed - Jan 08 14:05:24 +0000 2020","favourites_count":102602,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Wed - Jul 07 13:58:36 +0000 2021","id":1412773044699926531,"id_str":"1412773044699926531","text":"@DeanObeidallah - M\nMmmmll","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeanObeidallah","name":"(((DeanObeidallah)))","id":18320938,"id_str":"18320938","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1412772114877358081,"in_reply_to_status_id_str":"1412772114877358081","in_reply_to_user_id":18320938,"in_reply_to_user_id_str":"18320938","in_reply_to_screen_name":"DeanObeidallah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3712872616,"id_str":"3712872616","name":"glenns","screen_name":"ShafarGlenn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":690,"listed_count":0,"created_at":"Sun - Sep 20 01:38:22 +0000 2015","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Wed - Dec 09 02:34:24 +0000 2020","id":1336499409488580610,"id_str":"1336499409488580610","text":"RT - @funder: Name something you\u2019ve done for 43 days that you didn\u2019t - want to do... 43 days til Trump leaves office.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 09 01:10:52 +0000 2020","id":1336478384407392257,"id_str":"1336478384407392257","text":"Name - something you\u2019ve done for 43 days that you didn\u2019t want to do... - 43 days til Trump leaves office.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":597,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33021583,"id_str":"33021583","name":"michaeljohnrumpff","screen_name":"darkknight07","location":"Pennsylvania","description":"Classic - Rock Music Lover Working as a Security Supervisor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1529,"friends_count":5001,"listed_count":2,"created_at":"Sat - Apr 18 21:40:16 +0000 2009","favourites_count":71314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":415,"lang":null,"status":{"created_at":"Fri - Mar 25 12:24:11 +0000 2022","id":1507332516478439428,"id_str":"1507332516478439428","text":"America''s - Corrupt Election System Revealed In Secret Georgia Report, by @EmeraldRobinson - https:\/\/t.co\/OVG0AA20D7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmeraldRobinson","name":"Emerald - Robinson \u271d\ufe0f","id":3932768472,"id_str":"3932768472","indices":[72,88]}],"urls":[{"url":"https:\/\/t.co\/OVG0AA20D7","expanded_url":"https:\/\/emeralddb3.substack.com\/p\/americas-corrupt-election-system?r=n56w6&s=r&utm_campaign=post&utm_medium=email","display_url":"emeralddb3.substack.com\/p\/americas-cor\u2026","indices":[89,112]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563558643878998016\/Pt3GR7o__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563558643878998016\/Pt3GR7o__normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888102821471637504,"id_str":"888102821471637504","name":"DWBROWN","screen_name":"dwbrown0317","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":156,"listed_count":0,"created_at":"Thu - Jul 20 18:26:27 +0000 2017","favourites_count":594,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Mon - Nov 30 00:42:51 +0000 2020","id":1333209843407212544,"id_str":"1333209843407212544","text":"@MLB - Willie Magee","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MLB","name":"MLB","id":18479513,"id_str":"18479513","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1333208957284995073,"in_reply_to_status_id_str":"1333208957284995073","in_reply_to_user_id":18479513,"in_reply_to_user_id_str":"18479513","in_reply_to_screen_name":"MLB","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":349124541,"id_str":"349124541","name":"Mindy - H. Berman","screen_name":"MindyHBerman","location":"","description":"1199SEIU - Regional Communications Director, tweets reflect my opinions","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":599,"friends_count":2260,"listed_count":9,"created_at":"Fri - Aug 05 15:56:21 +0000 2011","favourites_count":3114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3704,"lang":null,"status":{"created_at":"Fri - Jan 28 23:22:20 +0000 2022","id":1487204425944993799,"id_str":"1487204425944993799","text":"https:\/\/t.co\/M21Al4gL06","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1487204422606331909,"id_str":"1487204422606331909","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FKOcivXXIAUZIo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKOcivXXIAUZIo4.jpg","url":"https:\/\/t.co\/M21Al4gL06","display_url":"pic.twitter.com\/M21Al4gL06","expanded_url":"https:\/\/twitter.com\/MindyHBerman\/status\/1487204425944993799\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":955,"resize":"fit"},"medium":{"w":1200,"h":955,"resize":"fit"},"small":{"w":680,"h":541,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1487204422606331909,"id_str":"1487204422606331909","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FKOcivXXIAUZIo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKOcivXXIAUZIo4.jpg","url":"https:\/\/t.co\/M21Al4gL06","display_url":"pic.twitter.com\/M21Al4gL06","expanded_url":"https:\/\/twitter.com\/MindyHBerman\/status\/1487204425944993799\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":955,"resize":"fit"},"medium":{"w":1200,"h":955,"resize":"fit"},"small":{"w":680,"h":541,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325218636324286472\/7WvGpsSc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325218636324286472\/7WvGpsSc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349124541\/1617080886","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825885980418785280,"id_str":"825885980418785280","name":"Marcy","screen_name":"marcyllevine","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":659,"listed_count":0,"created_at":"Mon - Jan 30 01:58:56 +0000 2017","favourites_count":262057,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3046,"lang":null,"status":{"created_at":"Sat - Mar 26 03:22:51 +0000 2022","id":1507558673912107011,"id_str":"1507558673912107011","text":"@SamintheH - I am very sorry.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamintheH","name":"SamintheHinterlands","id":1122996495026929665,"id_str":"1122996495026929665","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507462257835659267,"in_reply_to_status_id_str":"1507462257835659267","in_reply_to_user_id":1122996495026929665,"in_reply_to_user_id_str":"1122996495026929665","in_reply_to_screen_name":"SamintheH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/841788706814078976\/3DkGaDCY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/841788706814078976\/3DkGaDCY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249831150417305601,"id_str":"1249831150417305601","name":"Audrey - Steele","screen_name":"AudreyS50764259","location":"","description":"I speak - my mind, but hold no grudges.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":95,"listed_count":0,"created_at":"Mon - Apr 13 22:47:16 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1134556247011627008,"id_str":"1134556247011627008","name":"rania","screen_name":"raniaaahafez","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":87,"friends_count":153,"listed_count":0,"created_at":"Fri - May 31 20:24:23 +0000 2019","favourites_count":5273,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1227,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1433846160590983173\/lYePexb3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1433846160590983173\/lYePexb3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134556247011627008\/1643033245","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823599456138436608,"id_str":"823599456138436608","name":"Patrick - Daniel","screen_name":"PatrickDaniel82","location":"Bauchi, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":320,"listed_count":0,"created_at":"Mon - Jan 23 18:33:07 +0000 2017","favourites_count":358,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Mon - Oct 26 15:25:54 +0000 2020","id":1320748496786493442,"id_str":"1320748496786493442","text":"#NewProfilePic - https:\/\/t.co\/5AxcnpqmYN","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1320748478121824256,"id_str":"1320748478121824256","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ElQ9vkQW0AAVA9o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElQ9vkQW0AAVA9o.jpg","url":"https:\/\/t.co\/5AxcnpqmYN","display_url":"pic.twitter.com\/5AxcnpqmYN","expanded_url":"https:\/\/twitter.com\/patrick20240\/status\/1320748496786493442\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1920,"h":1920,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1320748478121824256,"id_str":"1320748478121824256","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/ElQ9vkQW0AAVA9o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElQ9vkQW0AAVA9o.jpg","url":"https:\/\/t.co\/5AxcnpqmYN","display_url":"pic.twitter.com\/5AxcnpqmYN","expanded_url":"https:\/\/twitter.com\/patrick20240\/status\/1320748496786493442\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1920,"h":1920,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320748385629032451\/32rxXX_8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320748385629032451\/32rxXX_8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":511794093,"id_str":"511794093","name":"The - Counsellor","screen_name":"MaxBerryYung","location":"Abuja","description":"I - Live for the moment","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":388,"friends_count":2041,"listed_count":1,"created_at":"Fri - Mar 02 11:39:36 +0000 2012","favourites_count":12638,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6973,"lang":null,"status":{"created_at":"Sat - Mar 26 10:36:24 +0000 2022","id":1507667780682002432,"id_str":"1507667780682002432","text":"RT - @TheHN1C: Has any artist beaten Dagrin\u2019s freestyle on jimmy jump off - yet? I\u2019m waiting. https:\/\/t.co\/Pn3MNoT5Py","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheHN1C","name":"CAPITAL - P","id":1412154544092499969,"id_str":"1412154544092499969","indices":[3,11]}],"urls":[],"media":[{"id":1505591045458960390,"id_str":"1505591045458960390","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","url":"https:\/\/t.co\/Pn3MNoT5Py","display_url":"pic.twitter.com\/Pn3MNoT5Py","expanded_url":"https:\/\/twitter.com\/TheHN1C\/status\/1505591151390334978\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":884,"h":508,"resize":"fit"},"small":{"w":680,"h":391,"resize":"fit"},"medium":{"w":884,"h":508,"resize":"fit"}},"source_status_id":1505591151390334978,"source_status_id_str":"1505591151390334978","source_user_id":1412154544092499969,"source_user_id_str":"1412154544092499969"}]},"extended_entities":{"media":[{"id":1505591045458960390,"id_str":"1505591045458960390","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","url":"https:\/\/t.co\/Pn3MNoT5Py","display_url":"pic.twitter.com\/Pn3MNoT5Py","expanded_url":"https:\/\/twitter.com\/TheHN1C\/status\/1505591151390334978\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":884,"h":508,"resize":"fit"},"small":{"w":680,"h":391,"resize":"fit"},"medium":{"w":884,"h":508,"resize":"fit"}},"source_status_id":1505591151390334978,"source_status_id_str":"1505591151390334978","source_user_id":1412154544092499969,"source_user_id_str":"1412154544092499969","video_info":{"aspect_ratio":[221,127],"duration_millis":139991,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/468x270\/8dsNg1mYR7MP4TBQ.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/884x508\/mq5tl-yt12BjkyRe.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/pl\/nfx0r7bwmYutWOtV.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/626x360\/oltUdtOx21oVOTtk.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 17:04:37 +0000 2022","id":1505591151390334978,"id_str":"1505591151390334978","text":"Has - any artist beaten Dagrin\u2019s freestyle on jimmy jump off yet? I\u2019m - waiting. https:\/\/t.co\/Pn3MNoT5Py","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505591045458960390,"id_str":"1505591045458960390","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","url":"https:\/\/t.co\/Pn3MNoT5Py","display_url":"pic.twitter.com\/Pn3MNoT5Py","expanded_url":"https:\/\/twitter.com\/TheHN1C\/status\/1505591151390334978\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":884,"h":508,"resize":"fit"},"small":{"w":680,"h":391,"resize":"fit"},"medium":{"w":884,"h":508,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505591045458960390,"id_str":"1505591045458960390","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505591045458960390\/pu\/img\/7dbzCTLEmJyi7MWZ.jpg","url":"https:\/\/t.co\/Pn3MNoT5Py","display_url":"pic.twitter.com\/Pn3MNoT5Py","expanded_url":"https:\/\/twitter.com\/TheHN1C\/status\/1505591151390334978\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":884,"h":508,"resize":"fit"},"small":{"w":680,"h":391,"resize":"fit"},"medium":{"w":884,"h":508,"resize":"fit"}},"video_info":{"aspect_ratio":[221,127],"duration_millis":139991,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/468x270\/8dsNg1mYR7MP4TBQ.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/884x508\/mq5tl-yt12BjkyRe.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/pl\/nfx0r7bwmYutWOtV.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505591045458960390\/pu\/vid\/626x360\/oltUdtOx21oVOTtk.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":252,"favorite_count":572,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":252,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506535441679462400\/A07kcwrx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506535441679462400\/A07kcwrx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/511794093\/1396327536","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1030683119005978624,"id_str":"1030683119005978624","name":"\u064f","screen_name":"sum1_____","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":503,"listed_count":1,"created_at":"Sat - Aug 18 05:09:39 +0000 2018","favourites_count":143,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19550,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456292414776348673\/wUoMBxOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456292414776348673\/wUoMBxOf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030683119005978624\/1618087815","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797924711229431808,"id_str":"797924711229431808","name":"Janice - Thomas","screen_name":"thomasjan52","location":"Ohio, USA","description":"Psychology - Degree from Miami of Ohio","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":207,"listed_count":0,"created_at":"Sun - Nov 13 22:10:50 +0000 2016","favourites_count":981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":279,"lang":null,"status":{"created_at":"Wed - Jan 26 23:03:38 +0000 2022","id":1486474942787076097,"id_str":"1486474942787076097","text":"@NGrandpa69 - Vitamin C, about 10 to 20 chewables, at the first sign of scratchy throat - or sniffles will thwart the v\u2026 https:\/\/t.co\/sP5SdXuihS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NGrandpa69","name":"\ud83c\uddfa\ud83c\uddf2\ud83c\uddfa\ud83c\udde6 - I Stand With Ukraine Grandpa \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf2","id":1352475523776196608,"id_str":"1352475523776196608","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/sP5SdXuihS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1486474942787076097","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486158839045054464,"in_reply_to_status_id_str":"1486158839045054464","in_reply_to_user_id":1352475523776196608,"in_reply_to_user_id_str":"1352475523776196608","in_reply_to_screen_name":"NGrandpa69","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826436533058142208\/Gcl76mSd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826436533058142208\/Gcl76mSd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":882070087209029633,"id_str":"882070087209029633","name":"Chris","screen_name":"MrsEmmons1231","location":"Massachusetts, - USA","description":"Rescue Nerd \ud83d\udc3e Sweary Momma \ud83d\udc99\ud83d\udc9b - Mental Health & Autism Advocate \ud83e\udde0\ud83d\udc97 Black Lives Matter - \u270a\ud83c\udffb\u270a\ud83c\udffc\u270a\ud83c\udffd\u270a\ud83c\udffe\u270a\ud83c\udfff - LGBTQ+ Ally \ud83c\udff3\ufe0f\u200d\ud83c\udf08 she\/her #Resist #StillShePersisted","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":944,"friends_count":3148,"listed_count":0,"created_at":"Tue - Jul 04 02:54:31 +0000 2017","favourites_count":91349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11255,"lang":null,"status":{"created_at":"Fri - Mar 25 13:23:32 +0000 2022","id":1507347453338660886,"id_str":"1507347453338660886","text":"RT - @Kasparov63: If you\u2019re so afraid of what a dictator might do if he loses - that you\u2019re letting him win, it\u2019s time to reevaluate both your\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kasparov63","name":"Garry - Kasparov","id":449588356,"id_str":"449588356","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 03:42:01 +0000 2022","id":1506113946113220612,"id_str":"1506113946113220612","text":"If - you\u2019re so afraid of what a dictator might do if he loses that you\u2019re - letting him win, it\u2019s time to reevaluate bo\u2026 https:\/\/t.co\/E2hpPzhMRG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E2hpPzhMRG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506113946113220612","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18907,"favorite_count":91623,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18907,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326597855742734339\/wa7DmTOv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326597855742734339\/wa7DmTOv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882070087209029633\/1605120551","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":268239429,"id_str":"268239429","name":"Dr - abdelmoneem mostafa","screen_name":"moneem60","location":"Alexandria, Egypt","description":"chemistry - is the life .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":718,"friends_count":4863,"listed_count":5,"created_at":"Fri - Mar 18 11:37:53 +0000 2011","favourites_count":1648,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15974,"lang":null,"status":{"created_at":"Mon - Mar 21 05:45:41 +0000 2022","id":1505782679983345666,"id_str":"1505782679983345666","text":"https:\/\/t.co\/DikP5s6fSY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505782669753430017,"id_str":"1505782669753430017","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOWdXDOXsAEDfeO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOWdXDOXsAEDfeO.jpg","url":"https:\/\/t.co\/DikP5s6fSY","display_url":"pic.twitter.com\/DikP5s6fSY","expanded_url":"https:\/\/twitter.com\/moneem60\/status\/1505782679983345666\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":380,"h":480,"resize":"fit"},"large":{"w":380,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505782669753430017,"id_str":"1505782669753430017","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOWdXDOXsAEDfeO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOWdXDOXsAEDfeO.jpg","url":"https:\/\/t.co\/DikP5s6fSY","display_url":"pic.twitter.com\/DikP5s6fSY","expanded_url":"https:\/\/twitter.com\/moneem60\/status\/1505782679983345666\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":380,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":380,"h":480,"resize":"fit"},"large":{"w":380,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[19,24],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOWdXDOXsAEDfeO.mp4"}]}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630331526241230849\/k_e_sByS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630331526241230849\/k_e_sByS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268239429\/1354040726","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":205350684,"id_str":"205350684","name":"Debra - Loggia","screen_name":"DebLoggia","location":"Philadelphia, PA","description":"Real - Estate Investor | Realtor","url":"https:\/\/t.co\/8qnwGcGG3P","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8qnwGcGG3P","expanded_url":"https:\/\/homesbydebra.cbintouch.com\/","display_url":"homesbydebra.cbintouch.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":431,"friends_count":1258,"listed_count":53,"created_at":"Wed - Oct 20 17:42:54 +0000 2010","favourites_count":4444,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3802,"lang":null,"status":{"created_at":"Fri - Mar 25 16:34:27 +0000 2022","id":1507395497564250155,"id_str":"1507395497564250155","text":"RT - @DecisionPark: My phone rang and woke me up around 0:30. \u201eyou volunteered - to host refugees, here is a mother with two kids and a cat. Cn\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DecisionPark","name":"SoyoungQPark","id":1004025543614959619,"id_str":"1004025543614959619","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 23:17:03 +0000 2022","id":1506772038211584003,"id_str":"1506772038211584003","text":"My - phone rang and woke me up around 0:30. \u201eyou volunteered to host refugees, - here is a mother with two kids and a c\u2026 https:\/\/t.co\/U3pq8Omyy4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/U3pq8Omyy4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506772038211584003","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23104,"favorite_count":163388,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23104,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179566018068393986\/kmsZXnps_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179566018068393986\/kmsZXnps_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269077344527900672,"id_str":"1269077344527900672","name":"Sonya - (the horse lady)","screen_name":"SonyaWheelahan","location":"Northern Rivers, - Australia","description":"I am totally disappointed in politics and politicians.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":658,"listed_count":1,"created_at":"Sat - Jun 06 01:23:33 +0000 2020","favourites_count":4557,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":704,"lang":null,"status":{"created_at":"Fri - Mar 25 04:15:58 +0000 2022","id":1507209654451195905,"id_str":"1507209654451195905","text":"@leahvallee - Spaghetti bolonegse","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"leahvallee","name":"Leah","id":55404283,"id_str":"55404283","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506971335506817028,"in_reply_to_status_id_str":"1506971335506817028","in_reply_to_user_id":55404283,"in_reply_to_user_id_str":"55404283","in_reply_to_screen_name":"leahvallee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480751492025909249\/HhRLJyWf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480751492025909249\/HhRLJyWf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269077344527900672\/1644806668","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":427072557,"id_str":"427072557","name":"sherrilyn","screen_name":"SherrilynMP","location":"Fort - Mill, SC","description":"b. Washington DC * Living in SC * U of MD grad * - Mom of 2 FABULOUS girls * 1st of 3 sisters, + 1 by another mother * Lina, - Kitty & Ollie\u2019s pack leader *","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":526,"listed_count":0,"created_at":"Sat - Dec 03 02:28:35 +0000 2011","favourites_count":5250,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2617,"lang":null,"status":{"created_at":"Fri - Mar 25 20:20:04 +0000 2022","id":1507452274985123843,"id_str":"1507452274985123843","text":"RT - @cathyphi: @NewlevelofHell @LeaderMcConnell https:\/\/t.co\/gMIrhx5AVi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cathyphi","name":"Cathy","id":88414946,"id_str":"88414946","indices":[3,12]},{"screen_name":"NewlevelofHell","name":"Mitch - McConnell volunteer constuent services","id":1219150854961475584,"id_str":"1219150854961475584","indices":[14,29]},{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[30,46]}],"urls":[],"media":[{"id":1507114055382835211,"id_str":"1507114055382835211","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","url":"https:\/\/t.co\/gMIrhx5AVi","display_url":"pic.twitter.com\/gMIrhx5AVi","expanded_url":"https:\/\/twitter.com\/cathyphi\/status\/1507114058926985220\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":685,"resize":"fit"},"large":{"w":850,"h":685,"resize":"fit"},"small":{"w":680,"h":548,"resize":"fit"}},"source_status_id":1507114058926985220,"source_status_id_str":"1507114058926985220","source_user_id":88414946,"source_user_id_str":"88414946"}]},"extended_entities":{"media":[{"id":1507114055382835211,"id_str":"1507114055382835211","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","url":"https:\/\/t.co\/gMIrhx5AVi","display_url":"pic.twitter.com\/gMIrhx5AVi","expanded_url":"https:\/\/twitter.com\/cathyphi\/status\/1507114058926985220\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":685,"resize":"fit"},"large":{"w":850,"h":685,"resize":"fit"},"small":{"w":680,"h":548,"resize":"fit"}},"source_status_id":1507114058926985220,"source_status_id_str":"1507114058926985220","source_user_id":88414946,"source_user_id_str":"88414946"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:56:07 +0000 2022","id":1507114058926985220,"id_str":"1507114058926985220","text":"@NewlevelofHell - @LeaderMcConnell https:\/\/t.co\/gMIrhx5AVi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NewlevelofHell","name":"Mitch - McConnell volunteer constuent services","id":1219150854961475584,"id_str":"1219150854961475584","indices":[0,15]},{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[16,32]}],"urls":[],"media":[{"id":1507114055382835211,"id_str":"1507114055382835211","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","url":"https:\/\/t.co\/gMIrhx5AVi","display_url":"pic.twitter.com\/gMIrhx5AVi","expanded_url":"https:\/\/twitter.com\/cathyphi\/status\/1507114058926985220\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":685,"resize":"fit"},"large":{"w":850,"h":685,"resize":"fit"},"small":{"w":680,"h":548,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507114055382835211,"id_str":"1507114055382835211","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpYP5MXoAsNX4I.jpg","url":"https:\/\/t.co\/gMIrhx5AVi","display_url":"pic.twitter.com\/gMIrhx5AVi","expanded_url":"https:\/\/twitter.com\/cathyphi\/status\/1507114058926985220\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":850,"h":685,"resize":"fit"},"large":{"w":850,"h":685,"resize":"fit"},"small":{"w":680,"h":548,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507092982071279616,"in_reply_to_status_id_str":"1507092982071279616","in_reply_to_user_id":1219150854961475584,"in_reply_to_user_id_str":"1219150854961475584","in_reply_to_screen_name":"NewlevelofHell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":1402,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313689573306839043\/pZyJ2Cvo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313689573306839043\/pZyJ2Cvo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427072557\/1541189440","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2899938071,"id_str":"2899938071","name":"Janice - Johnson","screen_name":"jjohnson51550","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1379,"listed_count":0,"created_at":"Sun - Nov 30 23:57:33 +0000 2014","favourites_count":46722,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2354,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3237876185,"id_str":"3237876185","name":"Christine - Hill","screen_name":"Christi46119463","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":672,"friends_count":593,"listed_count":9,"created_at":"Wed - May 06 03:17:27 +0000 2015","favourites_count":107566,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":197607,"lang":null,"status":{"created_at":"Mon - Dec 13 23:33:40 +0000 2021","id":1470537434765029379,"id_str":"1470537434765029379","text":"RT - @carita_paige: @laurenboebert You know very well the \u2018poor trigger discipline\u2019 - was a deliberate part of the parody - which apparently, s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"carita_paige","name":"Paige - Carita","id":3373615943,"id_str":"3373615943","indices":[3,16]},{"screen_name":"laurenboebert","name":"Lauren - Boebert","id":1201670995435646976,"id_str":"1201670995435646976","indices":[18,32]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Dec 12 18:07:46 +0000 2021","id":1470093030455750663,"id_str":"1470093030455750663","text":"@laurenboebert - You know very well the \u2018poor trigger discipline\u2019 was a deliberate - part of the parody - which apparen\u2026 https:\/\/t.co\/NZg4JIZ424","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"laurenboebert","name":"Lauren - Boebert","id":1201670995435646976,"id_str":"1201670995435646976","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/NZg4JIZ424","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1470093030455750663","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470044661146341380,"in_reply_to_status_id_str":"1470044661146341380","in_reply_to_user_id":1201670995435646976,"in_reply_to_user_id_str":"1201670995435646976","in_reply_to_screen_name":"laurenboebert","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":585,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":224164406,"id_str":"224164406","name":"Alison - Mullin","screen_name":"amythegoat","location":"Walcha, New South Wales","description":"True - believer, in equality, liberty and solidarity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":440,"listed_count":0,"created_at":"Wed - Dec 08 09:09:07 +0000 2010","favourites_count":24441,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":331,"lang":null,"status":{"created_at":"Thu - Mar 24 03:08:35 +0000 2022","id":1506830306614996996,"id_str":"1506830306614996996","text":"RT - @xr_cambridge: Another report has affirmed that there can be no new oil, coal - or gas exploration anywhere in the world for a chance of l\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xr_cambridge","name":"XR - Cambridge","id":1066521202519416833,"id_str":"1066521202519416833","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 08:12:37 +0000 2022","id":1506544431310295040,"id_str":"1506544431310295040","text":"Another - report has affirmed that there can be no new oil, coal or gas exploration - anywhere in the world for a chanc\u2026 https:\/\/t.co\/ZLNpv0rWSg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZLNpv0rWSg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506544431310295040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":266,"favorite_count":527,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":266,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199987287632662528\/QoJmcGYi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199987287632662528\/QoJmcGYi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":879533381221924864,"id_str":"879533381221924864","name":"Michaela","screen_name":"MK_mariee","location":"Washington, - DC","description":"probably in law school | 1908.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":163,"friends_count":205,"listed_count":0,"created_at":"Tue - Jun 27 02:54:33 +0000 2017","favourites_count":2697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":880,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460848133483765762\/6zio0QrR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460848133483765762\/6zio0QrR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879533381221924864\/1635429739","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":992192571119161345,"id_str":"992192571119161345","name":"getoffmybeach","screen_name":"getoffmybeach1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":127,"listed_count":0,"created_at":"Fri - May 04 00:01:57 +0000 2018","favourites_count":3116,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Thu - Mar 24 01:16:49 +0000 2022","id":1506802182124933125,"id_str":"1506802182124933125","text":"@SenBooker - Powerful","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenBooker","name":"Sen. - Cory Booker","id":2167097881,"id_str":"2167097881","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506764929499602952,"in_reply_to_status_id_str":"1506764929499602952","in_reply_to_user_id":2167097881,"in_reply_to_user_id_str":"2167097881","in_reply_to_screen_name":"SenBooker","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235246461085986818,"id_str":"1235246461085986818","name":"Okedairo - oluwatobi","screen_name":"Okedairooluwat2","location":"","description":"Acting","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":278,"listed_count":0,"created_at":"Wed - Mar 04 16:51:49 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Aug 03 00:21:54 +0000 2020","id":1290080415789854721,"id_str":"1290080415789854721","text":"RT - @Fsfoou: https:\/\/t.co\/WJZNLpQD4S","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fsfoou","name":"FSFOOU","id":967982048,"id_str":"967982048","indices":[3,10]}],"urls":[],"media":[{"id":1290070321467359234,"id_str":"1290070321467359234","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","url":"https:\/\/t.co\/WJZNLpQD4S","display_url":"pic.twitter.com\/WJZNLpQD4S","expanded_url":"https:\/\/twitter.com\/Fsfoou\/status\/1290070335774027777\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1077,"h":1080,"resize":"fit"},"large":{"w":1077,"h":1080,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"}},"source_status_id":1290070335774027777,"source_status_id_str":"1290070335774027777","source_user_id":967982048,"source_user_id_str":"967982048"}]},"extended_entities":{"media":[{"id":1290070321467359234,"id_str":"1290070321467359234","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","url":"https:\/\/t.co\/WJZNLpQD4S","display_url":"pic.twitter.com\/WJZNLpQD4S","expanded_url":"https:\/\/twitter.com\/Fsfoou\/status\/1290070335774027777\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1077,"h":1080,"resize":"fit"},"large":{"w":1077,"h":1080,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"}},"source_status_id":1290070335774027777,"source_status_id_str":"1290070335774027777","source_user_id":967982048,"source_user_id_str":"967982048"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 02 23:41:51 +0000 2020","id":1290070335774027777,"id_str":"1290070335774027777","text":"https:\/\/t.co\/WJZNLpQD4S","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1290070321467359234,"id_str":"1290070321467359234","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","url":"https:\/\/t.co\/WJZNLpQD4S","display_url":"pic.twitter.com\/WJZNLpQD4S","expanded_url":"https:\/\/twitter.com\/Fsfoou\/status\/1290070335774027777\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1077,"h":1080,"resize":"fit"},"large":{"w":1077,"h":1080,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1290070321467359234,"id_str":"1290070321467359234","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EedAH05WAAID4CS.jpg","url":"https:\/\/t.co\/WJZNLpQD4S","display_url":"pic.twitter.com\/WJZNLpQD4S","expanded_url":"https:\/\/twitter.com\/Fsfoou\/status\/1290070335774027777\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1077,"h":1080,"resize":"fit"},"large":{"w":1077,"h":1080,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497664035248082955\/SnCuy8q0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497664035248082955\/SnCuy8q0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1235246461085986818\/1589113499","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2156177425,"id_str":"2156177425","name":"Lillian - montalvo","screen_name":"Lillianmontalv3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":412,"listed_count":0,"created_at":"Sat - Oct 26 05:19:39 +0000 2013","favourites_count":2693,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":826,"lang":null,"status":{"created_at":"Tue - Mar 15 16:17:32 +0000 2022","id":1503767360766767105,"id_str":"1503767360766767105","text":"For - the first time in its history, architecture''s top award goes to a Black architect - https:\/\/t.co\/mAL5XsspBV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mAL5XsspBV","expanded_url":"https:\/\/www.npr.org\/2022\/03\/15\/1085457169\/pritzker-architecture-prize-2022-diebedo-francis-kere?utm_campaign=storyshare&utm_source=twitter.com&utm_medium=social","display_url":"npr.org\/2022\/03\/15\/108\u2026","indices":[86,109]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1439018570,"id_str":"1439018570","name":"Jaakko - N\u00e4rhi","screen_name":"jaakkonarhi","location":"Finland","description":"Journalist - @hsfi. Tweets mostly about American sports.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":594,"listed_count":0,"created_at":"Sat - May 18 17:58:58 +0000 2013","favourites_count":2245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":891,"lang":null,"status":{"created_at":"Fri - Feb 04 12:54:00 +0000 2022","id":1489583016347418627,"id_str":"1489583016347418627","text":"@CoachPalotie - @JanneOivio But on a more serious note, that''s a valid point. I do also like - the Simmons - Shai - Tur\u2026 https:\/\/t.co\/ucfIZIFT5R","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CoachPalotie","name":"Kristian - Palotie","id":365882862,"id_str":"365882862","indices":[0,13]},{"screen_name":"JanneOivio","name":"Janne - Oivio","id":197533782,"id_str":"197533782","indices":[14,25]}],"urls":[{"url":"https:\/\/t.co\/ucfIZIFT5R","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1489583016347418627","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1489578367477325828,"in_reply_to_status_id_str":"1489578367477325828","in_reply_to_user_id":1439018570,"in_reply_to_user_id_str":"1439018570","in_reply_to_screen_name":"jaakkonarhi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763269178639933440\/M8F4h2nx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763269178639933440\/M8F4h2nx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234909963929165829,"id_str":"1234909963929165829","name":"Emmanouil - Ouranos","screen_name":"EmmanouilOuran1","location":"","description":"\u0391\u03bb\u03bb\u03b7\u03bb\u03ad\u03b3\u03b3\u03c5\u03bf\u03c2 - \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03b4\u03cd\u03bd\u03b1\u03bc\u03bf\u03c5\u03c2 - \u03b1\u03bd\u03b5\u03be\u03ac\u03c1\u03c4\u03b7\u03c4\u03b1 \u03b1\u03c0\u03cc - \u03c4\u03b7\u03bd \u03b5\u03b8\u03bd\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 - ,\u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b4\u03ad\u03c1\u03bc\u03b1\u03c4\u03bf\u03c2 - ,\u03c4\u03b7 \u03b8\u03c1\u03b7\u03c3\u03ba\u03b5\u03af\u03b1.\n\u0394\u03b5\u03bd - \u03b1\u03bd\u03c4\u03ad\u03c7\u03c9 \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b1\u03c4\u03c1\u03b9\u03b4\u03bf\u03ba\u03ac\u03c0\u03b7\u03bb\u03bf\u03c5\u03c2 - \u03ba\u03b1\u03b9 \u03b3\u03b5\u03bd\u03b9\u03ba\u03ce\u03c2 \u03c4\u03bf\u03c5\u03c2 - \u03c5\u03c0\u03bf\u03ba\u03c1\u03b9\u03c4\u03ad\u03c2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":284,"listed_count":0,"created_at":"Tue - Mar 03 18:35:55 +0000 2020","favourites_count":9534,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3351,"lang":null,"status":{"created_at":"Sat - Mar 26 08:07:14 +0000 2022","id":1507630240322961411,"id_str":"1507630240322961411","text":"@re_ai_sixtir - \u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u039d\u03af\u03ba\u03bf\u03c2 \u03a3\u03c9\u03c4\u03b7\u03c1\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c2 - \u03b4\u03b5\u03bd \u03b2\u03b1\u03c1\u03b9\u03ad\u03c4\u03b1\u03b9 \u03bd\u03b1 - \u03b3\u03c1\u03ac\u03c6\u03b5\u03b9 \u03bc\u03b1\u03bb@\u03ba\u03af\u03b5\u03c2 - \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03bd\u03b1 - \u03b3\u03b5\u03bb\u03ac \u03bf \u03ba\u03cc\u03c3\u03bc\u03bf\u03c2;;;;","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"re_ai_sixtir","name":"\u0393\u03b9\u03ac\u03bd\u03bd\u03b1","id":1177854805714378752,"id_str":"1177854805714378752","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507627107043753987,"in_reply_to_status_id_str":"1507627107043753987","in_reply_to_user_id":1177854805714378752,"in_reply_to_user_id_str":"1177854805714378752","in_reply_to_screen_name":"re_ai_sixtir","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":816372313314754560,"id_str":"816372313314754560","name":"Pablo - Argote","screen_name":"PabloArgoteT","location":"","description":"Ph.D candidate - in Political Science at Columbia University. Researching immigration, social - media and voting behavior in Latin America.","url":"https:\/\/t.co\/8mOhiuiryU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8mOhiuiryU","expanded_url":"https:\/\/pabloargote.github.io\/","display_url":"pabloargote.github.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":423,"friends_count":1823,"listed_count":2,"created_at":"Tue - Jan 03 19:55:01 +0000 2017","favourites_count":1874,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1717,"lang":null,"status":{"created_at":"Sun - Mar 20 22:19:45 +0000 2022","id":1505670457978236936,"id_str":"1505670457978236936","text":"RT - @Tercera_Dosis: Hemos publicado an\u00e1lisis pol\u00edticos:\n@anulolbapnauj\ud83d\udc49https:\/\/t.co\/D7dTQBpdck\n@gvisconti - y @PabloArgoteT\ud83d\udc49https:\/\/t.co\/kg156\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tercera_Dosis","name":"TerceraDosis","id":3415467707,"id_str":"3415467707","indices":[3,17]},{"screen_name":"anulolbapnauj","name":"Juan - Pablo Luna","id":1915204676,"id_str":"1915204676","indices":[55,69]},{"screen_name":"gvisconti","name":"Giancarlo - Visconti","id":89342652,"id_str":"89342652","indices":[94,104]},{"screen_name":"PabloArgoteT","name":"Pablo - Argote","id":816372313314754560,"id_str":"816372313314754560","indices":[107,120]}],"urls":[{"url":"https:\/\/t.co\/D7dTQBpdck","expanded_url":"http:\/\/bit.ly\/el_centro","display_url":"bit.ly\/el_centro","indices":[70,93]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 22:04:19 +0000 2022","id":1505666573645848578,"id_str":"1505666573645848578","text":"Hemos - publicado an\u00e1lisis pol\u00edticos:\n@anulolbapnauj\ud83d\udc49https:\/\/t.co\/D7dTQBpdck\n@gvisconti - y @PabloArgoteT\ud83d\udc49\u2026 https:\/\/t.co\/Qw4Kb7rJve","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"anulolbapnauj","name":"Juan - Pablo Luna","id":1915204676,"id_str":"1915204676","indices":[36,50]},{"screen_name":"gvisconti","name":"Giancarlo - Visconti","id":89342652,"id_str":"89342652","indices":[75,85]},{"screen_name":"PabloArgoteT","name":"Pablo - Argote","id":816372313314754560,"id_str":"816372313314754560","indices":[88,101]}],"urls":[{"url":"https:\/\/t.co\/D7dTQBpdck","expanded_url":"http:\/\/bit.ly\/el_centro","display_url":"bit.ly\/el_centro","indices":[51,74]},{"url":"https:\/\/t.co\/Qw4Kb7rJve","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505666573645848578","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505666565907304455,"in_reply_to_status_id_str":"1505666565907304455","in_reply_to_user_id":3415467707,"in_reply_to_user_id_str":"3415467707","in_reply_to_screen_name":"Tercera_Dosis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1028687862575685632\/acf2IqKM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1028687862575685632\/acf2IqKM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/816372313314754560\/1495491805","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145027635648573440,"id_str":"1145027635648573440","name":"Edward - williams","screen_name":"Edwardw25501846","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Sat - Jun 29 17:53:56 +0000 2019","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":620666451,"id_str":"620666451","name":"Marc - F Bergeron","screen_name":"BCCapital1","location":"Surrey","description":"Proud - to be Canadian, West Coast host, Dad, Husband, Vangroover, Gardener, Railroader,","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":269,"listed_count":0,"created_at":"Thu - Jun 28 03:13:09 +0000 2012","favourites_count":850,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1262,"lang":null,"status":{"created_at":"Sat - Mar 26 02:46:36 +0000 2022","id":1507549549522403329,"id_str":"1507549549522403329","text":"@UROCKlive1 - @briantylercohen Follower.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UROCKlive1","name":"Khashoggi\u2019s - Ghost \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":87983041,"id_str":"87983041","indices":[0,11]},{"screen_name":"briantylercohen","name":"Brian - Tyler Cohen","id":455684839,"id_str":"455684839","indices":[12,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507499578748137475,"in_reply_to_status_id_str":"1507499578748137475","in_reply_to_user_id":87983041,"in_reply_to_user_id_str":"87983041","in_reply_to_screen_name":"UROCKlive1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C7EBCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244324828934369280\/FBS6r6n__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244324828934369280\/FBS6r6n__normal.jpg","profile_link_color":"FFFFB7","profile_sidebar_border_color":"616063","profile_sidebar_fill_color":"D98F51","profile_text_color":"FCD06E","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4697289145,"id_str":"4697289145","name":"Roses - for my sister","screen_name":"georgecynt","location":"Florida, Maine, USA - & Canada","description":"Dr. Cynthia George, retired Educator\/Administrator, - Palm Beach Co. Schools,146 languages\/dialects. Grant\/program developer, - under-served children & families.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":852,"friends_count":2210,"listed_count":3,"created_at":"Sat - Jan 02 16:37:18 +0000 2016","favourites_count":22499,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23719,"lang":null,"status":{"created_at":"Sat - Mar 12 18:18:05 +0000 2022","id":1502710537389588486,"id_str":"1502710537389588486","text":"@mhdksafa - \u2665\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mhdksafa","name":"mohamad - safa","id":834078524277456897,"id_str":"834078524277456897","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502703982086705156,"in_reply_to_status_id_str":"1502703982086705156","in_reply_to_user_id":834078524277456897,"in_reply_to_user_id_str":"834078524277456897","in_reply_to_screen_name":"mhdksafa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1406605025288376332\/sBSsuIld_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1406605025288376332\/sBSsuIld_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4697289145\/1629323566","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275954873683472384,"id_str":"1275954873683472384","name":"Rita - Rivali","screen_name":"RitaRivali8","location":"","description":"Born again. - Dont follow me . Follow Jesus. I will disappoint you. But HE will never will. - Blessings to you AGAPE. NO DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2025,"friends_count":3514,"listed_count":1,"created_at":"Thu - Jun 25 00:52:18 +0000 2020","favourites_count":84485,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28892,"lang":null,"status":{"created_at":"Sat - Mar 26 08:22:24 +0000 2022","id":1507634055726067714,"id_str":"1507634055726067714","text":"RT - @MollyJMoore2: https:\/\/t.co\/ewH3XYfQ8C","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MollyJMoore2","name":"Molly - J Moore","id":1328854879134072832,"id_str":"1328854879134072832","indices":[3,16]}],"urls":[],"media":[{"id":1507629319249489931,"id_str":"1507629319249489931","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","url":"https:\/\/t.co\/ewH3XYfQ8C","display_url":"pic.twitter.com\/ewH3XYfQ8C","expanded_url":"https:\/\/twitter.com\/MollyJMoore2\/status\/1507629325801062400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":1507629325801062400,"source_status_id_str":"1507629325801062400","source_user_id":1328854879134072832,"source_user_id_str":"1328854879134072832"}]},"extended_entities":{"media":[{"id":1507629319249489931,"id_str":"1507629319249489931","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","url":"https:\/\/t.co\/ewH3XYfQ8C","display_url":"pic.twitter.com\/ewH3XYfQ8C","expanded_url":"https:\/\/twitter.com\/MollyJMoore2\/status\/1507629325801062400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":1507629325801062400,"source_status_id_str":"1507629325801062400","source_user_id":1328854879134072832,"source_user_id_str":"1328854879134072832"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:03:36 +0000 2022","id":1507629325801062400,"id_str":"1507629325801062400","text":"https:\/\/t.co\/ewH3XYfQ8C","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507629319249489931,"id_str":"1507629319249489931","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","url":"https:\/\/t.co\/ewH3XYfQ8C","display_url":"pic.twitter.com\/ewH3XYfQ8C","expanded_url":"https:\/\/twitter.com\/MollyJMoore2\/status\/1507629325801062400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507629319249489931,"id_str":"1507629319249489931","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOws4MrUcAsu8ri.jpg","url":"https:\/\/t.co\/ewH3XYfQ8C","display_url":"pic.twitter.com\/ewH3XYfQ8C","expanded_url":"https:\/\/twitter.com\/MollyJMoore2\/status\/1507629325801062400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472797756510990341\/BkWGR37z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472797756510990341\/BkWGR37z_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195867456306401282,"id_str":"1195867456306401282","name":"Andrew - Karol","screen_name":"AndrewKarol1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":118,"listed_count":0,"created_at":"Sun - Nov 17 00:53:39 +0000 2019","favourites_count":3220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195867856895987719\/kYzkIgQi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195867856895987719\/kYzkIgQi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":955929772932108288,"id_str":"955929772932108288","name":"Jeffrey - Hanover","screen_name":"jph607","location":"Memphis, Tennessee","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":524,"listed_count":0,"created_at":"Tue - Jan 23 22:26:32 +0000 2018","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":308,"lang":null,"status":{"created_at":"Wed - Oct 20 17:55:24 +0000 2021","id":1450883362592276486,"id_str":"1450883362592276486","text":"Sad..... - https:\/\/t.co\/MV1ngKE3iM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MV1ngKE3iM","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1450878991649308674","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[9,32]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1450878991649308674,"quoted_status_id_str":"1450878991649308674","retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1111362194262896641\/ul0i6oKt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1111362194262896641\/ul0i6oKt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955929772932108288\/1553094892","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831284044012908545,"id_str":"831284044012908545","name":"al-makky","screen_name":"FMH228","location":"Kaduna, - Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":540,"listed_count":0,"created_at":"Mon - Feb 13 23:28:55 +0000 2017","favourites_count":355,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":326,"lang":null,"status":{"created_at":"Fri - Feb 18 09:32:27 +0000 2022","id":1494605721840853007,"id_str":"1494605721840853007","text":"RT - @bulamabukarti: For those asking me to suggest an alternative for ASUU, instead - of striking every few months, ASUU should embark on stra\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bulamabukarti","name":"Bulama - Bukarti","id":484040400,"id_str":"484040400","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 18 08:25:25 +0000 2022","id":1494588852912205853,"id_str":"1494588852912205853","text":"For - those asking me to suggest an alternative for ASUU, instead of striking every - few months, ASUU should embark on\u2026 https:\/\/t.co\/Yh1DIdpgie","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Yh1DIdpgie","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494588852912205853","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":319,"favorite_count":1120,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":319,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448789967442952195\/A7yGtqQ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448789967442952195\/A7yGtqQ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831284044012908545\/1576667046","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":710697422,"id_str":"710697422","name":"Harold - Byrd","screen_name":"HaroldByrdBB","location":"Bartlett Memphis","description":"President\/CoFounder - Bank of Bartlett Univ Memphis Tigers Alum Active in Community non-profits- - President Shelby County Chambers (Memphis Metro Area) of Commerce","url":"https:\/\/t.co\/lGACux159j","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/lGACux159j","expanded_url":"http:\/\/www.bankofbartlett.com","display_url":"bankofbartlett.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1015,"friends_count":1150,"listed_count":8,"created_at":"Sun - Jul 22 13:32:49 +0000 2012","favourites_count":19241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":308,"lang":null,"status":{"created_at":"Mon - Mar 14 02:57:18 +0000 2022","id":1503203587320647683,"id_str":"1503203587320647683","text":"Be - on Tiger Team\ud83c\udfc0 to NCAA! Finalizing Roundtrip Charter Air\/hotel\/Memphis\/Portland - Call\/email 901-484-1210 hbyrd@ba\u2026 https:\/\/t.co\/BouM7ZFfG0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BouM7ZFfG0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503203587320647683","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1503166692574248965,"quoted_status_id_str":"1503166692574248965","retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217159437116477442\/eE73uee2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217159437116477442\/eE73uee2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/710697422\/1577503359","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":165362426,"id_str":"165362426","name":"Tamara\ud83c\uddf1\ud83c\udde7","screen_name":"tamara_nakib","location":"Paris, - France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":756,"friends_count":724,"listed_count":2,"created_at":"Sun - Jul 11 10:21:25 +0000 2010","favourites_count":2527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12399,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360012242989821956\/4eRJWr0z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360012242989821956\/4eRJWr0z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165362426\/1582644810","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2255441273,"id_str":"2255441273","name":"Kara - Rubino","screen_name":"KaraRubino","location":"","description":"Happily married - mother of three","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":62,"friends_count":4751,"listed_count":0,"created_at":"Wed - Jan 01 00:31:07 +0000 2014","favourites_count":593,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418179442335571968\/PuiXY6WE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418179442335571968\/PuiXY6WE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2255441273\/1388536723","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1190806098397343745,"id_str":"1190806098397343745","name":"Shamsuddeen - musa","screen_name":"Shamsud29826811","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":1010,"listed_count":0,"created_at":"Sun - Nov 03 01:41:29 +0000 2019","favourites_count":1950,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Tue - Oct 13 23:44:36 +0000 2020","id":1316162955411628032,"id_str":"1316162955411628032","text":"@Rebex32 - You''re still looking very charming..","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rebex32","name":"Rebecca - T","id":739906934363574272,"id_str":"739906934363574272","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1315995930076774400,"in_reply_to_status_id_str":"1315995930076774400","in_reply_to_user_id":739906934363574272,"in_reply_to_user_id_str":"739906934363574272","in_reply_to_screen_name":"Rebex32","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290443257084645376\/hCKbh_OM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290443257084645376\/hCKbh_OM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1073533625805746177,"id_str":"1073533625805746177","name":"julian","screen_name":"jln_prvt","location":"","description":"The - Filipino is worth dying for. Fight on and keep on the good fight!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":373,"listed_count":0,"created_at":"Fri - Dec 14 11:02:16 +0000 2018","favourites_count":15970,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7557,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490675668644134914\/G3nr_Yw5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490675668644134914\/G3nr_Yw5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073533625805746177\/1641086401","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87453500,"id_str":"87453500","name":"Gail - Griffith","screen_name":"gailgriffith1","location":"Washington, DC","description":"Creative - consultant, Women''s Refugee Commission","url":"https:\/\/t.co\/H6qBqMFR9N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H6qBqMFR9N","expanded_url":"http:\/\/www.womensrefugeecommission.org","display_url":"womensrefugeecommission.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":166,"friends_count":633,"listed_count":5,"created_at":"Wed - Nov 04 14:44:45 +0000 2009","favourites_count":5508,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1325,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756510705738719232\/pbWP-bkr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756510705738719232\/pbWP-bkr_normal.jpg","profile_link_color":"7FDBB6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":31524598,"id_str":"31524598","name":"Jeff - Babb","screen_name":"zakrajsheck","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":194,"listed_count":0,"created_at":"Wed - Apr 15 21:21:56 +0000 2009","favourites_count":307,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":149,"lang":null,"status":{"created_at":"Thu - Feb 18 22:00:06 +0000 2021","id":1362522305444929537,"id_str":"1362522305444929537","text":"@SethAbramson - #LyingTed","truncated":false,"entities":{"hashtags":[{"text":"LyingTed","indices":[14,23]}],"symbols":[],"user_mentions":[{"screen_name":"SethAbramson","name":"Seth - Abramson","id":3223426134,"id_str":"3223426134","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1362509545730375681,"in_reply_to_status_id_str":"1362509545730375681","in_reply_to_user_id":3223426134,"in_reply_to_user_id_str":"3223426134","in_reply_to_screen_name":"SethAbramson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1054530583060234240\/MFG1_rRa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054530583060234240\/MFG1_rRa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31524598\/1540254659","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792088778,"id_str":"792088778","name":"Scott - Ketterling","screen_name":"ScottKetterling","location":"Seattle, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":266,"listed_count":0,"created_at":"Thu - Aug 30 17:56:58 +0000 2012","favourites_count":70,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Feb 25 03:37:16 +0000 2021","id":1364781483471237130,"id_str":"1364781483471237130","text":"@SEACityLight - @PSETalk Why is our power still not restored?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SEACityLight","name":"Seattle - City Light","id":27129359,"id_str":"27129359","indices":[0,13]},{"screen_name":"PSETalk","name":"Puget - Sound Energy","id":46509210,"id_str":"46509210","indices":[14,22]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1364749231345442817,"in_reply_to_status_id_str":"1364749231345442817","in_reply_to_user_id":27129359,"in_reply_to_user_id_str":"27129359","in_reply_to_screen_name":"SEACityLight","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29435330,"id_str":"29435330","name":"(((Lisa - Solod))) Proudly Vaxxed","screen_name":"lisasolod","location":"Savannah ","description":"My - novel SHIVAH comes out in May 22 from Jaded Ibis Press. \n\n Novelist, essayist, opinion - writer, and mother.","url":"https:\/\/t.co\/H9LatuldTP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H9LatuldTP","expanded_url":"http:\/\/lisasolod.com","display_url":"lisasolod.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1919,"friends_count":3238,"listed_count":58,"created_at":"Tue - Apr 07 12:17:24 +0000 2009","favourites_count":162428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":77096,"lang":null,"status":{"created_at":"Sat - Mar 26 01:00:41 +0000 2022","id":1507522898008973320,"id_str":"1507522898008973320","text":"@AngryBlackLady - It was excellent","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AngryBlackLady","name":"\u2693\ufe0fImani - Gandy\u2693\ufe0f","id":46822887,"id_str":"46822887","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507514712581361671,"in_reply_to_status_id_str":"1507514712581361671","in_reply_to_user_id":46822887,"in_reply_to_user_id_str":"46822887","in_reply_to_screen_name":"AngryBlackLady","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466151784926396423\/-e3u06yV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466151784926396423\/-e3u06yV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29435330\/1506545211","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":95192551,"id_str":"95192551","name":"Ings","screen_name":"ixgthachax","location":"","description":"\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":103,"friends_count":251,"listed_count":1,"created_at":"Mon - Dec 07 12:36:49 +0000 2009","favourites_count":27275,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15570,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289910350368792576\/bXo2kVql_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289910350368792576\/bXo2kVql_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95192551\/1629333223","profile_link_color":"9DD0E3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":345574078,"id_str":"345574078","name":"Walter - Thompson","screen_name":"wbt0421","location":"Litchfield, CT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":431,"listed_count":0,"created_at":"Sat - Jul 30 20:36:00 +0000 2011","favourites_count":1824,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":342,"lang":null,"status":{"created_at":"Wed - Mar 16 02:27:34 +0000 2022","id":1503920881453740033,"id_str":"1503920881453740033","text":"RT - @AmoneyResists: Let\u2019s talk about how Ginni Thomas\u2014Clarence Thomas\u2019 - wife\u2014played a critical role in trying to overturn the results of the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmoneyResists","name":"Andrew - Wortman \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\uddf8","id":739844197935644672,"id_str":"739844197935644672","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 23:24:34 +0000 2022","id":1503874826997575680,"id_str":"1503874826997575680","text":"Let\u2019s - talk about how Ginni Thomas\u2014Clarence Thomas\u2019 wife\u2014played a - critical role in trying to overturn the results of\u2026 https:\/\/t.co\/AE69ciI7Pg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AE69ciI7Pg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503874826997575680","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5913,"favorite_count":19101,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5913,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1761832215\/Fish1_Com_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1761832215\/Fish1_Com_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26271056,"id_str":"26271056","name":"Brian - J. Zimmet","screen_name":"bjzimmet","location":"Manhattan","description":"Please - go to @zimmetlaw for ZLG\u2019s news feed, blogs and other updates.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":18,"friends_count":198,"listed_count":1,"created_at":"Tue - Mar 24 16:43:12 +0000 2009","favourites_count":14257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3731,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/787269201627082753\/gEFu5MVq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/787269201627082753\/gEFu5MVq_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1942867946,"id_str":"1942867946","name":"Angel - B.","screen_name":"Angelit0_BT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":1141,"listed_count":0,"created_at":"Mon - Oct 07 03:53:17 +0000 2013","favourites_count":6109,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":369,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582161328950755328\/sF3odEyQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582161328950755328\/sF3odEyQ_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":208742325,"id_str":"208742325","name":"LTaylor","screen_name":"okieslufoot","location":"Oklahoma","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":574,"listed_count":0,"created_at":"Wed - Oct 27 21:26:26 +0000 2010","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Sat - Jan 01 01:19:01 +0000 2022","id":1477086929854287877,"id_str":"1477086929854287877","text":"@shaiglalex - is an #NBAAllStar","truncated":false,"entities":{"hashtags":[{"text":"NBAAllStar","indices":[18,29]}],"symbols":[],"user_mentions":[{"screen_name":"shaiglalex","name":"Shai - Gilgeous-Alexander","id":2873604528,"id_str":"2873604528","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2873604528,"in_reply_to_user_id_str":"2873604528","in_reply_to_screen_name":"shaiglalex","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2288611024\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2288611024\/image_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888119453367492609,"id_str":"888119453367492609","name":"Brad","screen_name":"Brad18258271","location":"Winnipeg, - Manitoba","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":191,"listed_count":0,"created_at":"Thu - Jul 20 19:32:32 +0000 2017","favourites_count":18606,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/889487282306248704\/UiR8uj6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/889487282306248704\/UiR8uj6u_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2995382670,"id_str":"2995382670","name":"Anne","screen_name":"aVeryPrettyBird","location":"Cali","description":"here - to be informed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":460,"friends_count":1037,"listed_count":10,"created_at":"Sun - Jan 25 05:20:02 +0000 2015","favourites_count":222847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30081,"lang":null,"status":{"created_at":"Fri - Mar 25 23:41:52 +0000 2022","id":1507503059227721730,"id_str":"1507503059227721730","text":"RT - @DanielleReed8: As Prosecutor, Hawley Sentenced Violent Sex Abuser To Probation - -- Not Prison https:\/\/t.co\/WAZ1GR3fnK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanielleReed8","name":"Danielle - Reed","id":455066669,"id_str":"455066669","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/WAZ1GR3fnK","expanded_url":"https:\/\/www.nationalmemo.com\/hawley-prosecutor-sex-abuse","display_url":"nationalmemo.com\/hawley-prosecu\u2026","indices":[97,120]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 12:58:03 +0000 2022","id":1507341040151416840,"id_str":"1507341040151416840","text":"As - Prosecutor, Hawley Sentenced Violent Sex Abuser To Probation -- Not Prison - https:\/\/t.co\/WAZ1GR3fnK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WAZ1GR3fnK","expanded_url":"https:\/\/www.nationalmemo.com\/hawley-prosecutor-sex-abuse","display_url":"nationalmemo.com\/hawley-prosecu\u2026","indices":[78,101]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12079,"favorite_count":22041,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12079,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1431278601530269698\/S5Ow8CVi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1431278601530269698\/S5Ow8CVi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995382670\/1629609512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":770552532682678273,"id_str":"770552532682678273","name":"Jibitesh - Sarkar","screen_name":"SarkarJibitesh","location":"Khulna, Bangladesh","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":153,"listed_count":0,"created_at":"Tue - Aug 30 09:23:34 +0000 2016","favourites_count":2830,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Sep 23 10:43:20 +0000 2020","id":1308718588170137600,"id_str":"1308718588170137600","text":"Lonely - day lonely night you are far a way to write..........Wright way to write ..........tweet - at tweeter.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308909370231517187\/26566nGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308909370231517187\/26566nGG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2519200634,"id_str":"2519200634","name":"CJ - Singh","screen_name":"cjsingh3","location":"Seattle, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":638,"listed_count":1,"created_at":"Sat - May 24 02:06:36 +0000 2014","favourites_count":695,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Thu - Nov 25 17:29:39 +0000 2021","id":1463922847298953221,"id_str":"1463922847298953221","text":"Many - of us can relate to this\u2026\u201dMy Dad is (and always will be) my hero\u2026My - Dad!\u201d https:\/\/t.co\/SD0U192pWA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SD0U192pWA","expanded_url":"https:\/\/twitter.com\/ValaAfshar\/status\/1463919681870471170","display_url":"twitter.com\/ValaAfshar\/sta\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1463919681870471170,"quoted_status_id_str":"1463919681870471170","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323030266680504321\/1FlhI6ps_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323030266680504321\/1FlhI6ps_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519200634\/1404664197","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18364309,"id_str":"18364309","name":"ayh888?","screen_name":"ahusseini","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":503,"friends_count":4982,"listed_count":3,"created_at":"Wed - Dec 24 20:24:08 +0000 2008","favourites_count":12332,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1444,"lang":null,"status":{"created_at":"Tue - Mar 22 16:45:37 +0000 2022","id":1506311145069719562,"id_str":"1506311145069719562","text":"@JDCocchiarella - Prick","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JDCocchiarella","name":"Jack - Cocchiarella","id":713752653289955329,"id_str":"713752653289955329","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506296601639362574,"in_reply_to_status_id_str":"1506296601639362574","in_reply_to_user_id":713752653289955329,"in_reply_to_user_id_str":"713752653289955329","in_reply_to_screen_name":"JDCocchiarella","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3246471102\/8f3edcb895fe6da36ecfae0eb521e464_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3246471102\/8f3edcb895fe6da36ecfae0eb521e464_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274435594245021697,"id_str":"1274435594245021697","name":"oona - morris","screen_name":"MorrisOona1","location":"Tullytown, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":353,"listed_count":0,"created_at":"Sat - Jun 20 20:15:17 +0000 2020","favourites_count":2511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1172,"lang":null,"status":{"created_at":"Mon - Jan 11 11:01:23 +0000 2021","id":1348585795423232002,"id_str":"1348585795423232002","text":"@MeidasTouch - More important where is fake Melania","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1348500551940468736,"in_reply_to_status_id_str":"1348500551940468736","in_reply_to_user_id":1243560408025198593,"in_reply_to_user_id_str":"1243560408025198593","in_reply_to_screen_name":"MeidasTouch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":479303293,"id_str":"479303293","name":"\ud835\uddda\ud835\ude02\ud835\ude00\ud835\ude01\ud835\uddee\ud835\ude03\ud835\uddfc - \ud835\uddd9\ud835\ude02\ud835\uddf0\ud835\uddf5\ud835\ude00","screen_name":"GustavoFuchsA","location":"\ud83c\udde8\ud83c\uddf7 - \ud83c\uddfa\ud83c\uddf2","description":"PhD student @UTAustin \u2022 LLM - @UniofNottingham \u2022 MSc @FlacsoEc \u2022 Politics, media, religion and - human rights \u2022 Personal views\/opiniones personales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1167,"friends_count":4056,"listed_count":13,"created_at":"Tue - Jan 31 07:22:14 +0000 2012","favourites_count":25592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5139,"lang":null,"status":{"created_at":"Sat - Mar 26 05:52:20 +0000 2022","id":1507596291991224327,"id_str":"1507596291991224327","text":"RT - @luischaves: cada uno con sus ideas fijas, la m\u00eda es ver este lodazal - inmundo de la segunda ronda y pensar con cada tuit que leo \u201cah, pe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"luischaves","name":"Luis - Chaves","id":367446426,"id_str":"367446426","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:51:46 +0000 2022","id":1507520653116772358,"id_str":"1507520653116772358","text":"cada - uno con sus ideas fijas, la m\u00eda es ver este lodazal inmundo de la segunda - ronda y pensar con cada tuit que leo\u2026 https:\/\/t.co\/my4yFZqmnV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/my4yFZqmnV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507520653116772358","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":84,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498125772892090375\/3IVKOQmX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498125772892090375\/3IVKOQmX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/479303293\/1646016926","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":421818605,"id_str":"421818605","name":"frankie - anderson \ud83c\uddfa\ud83c\udde6","screen_name":"frankieanderzon","location":"","description":"Tweets - in personal capacity. Likes and retweet don''t necessarily mean endorsement - (mainly used to bookmark)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":3246,"listed_count":4,"created_at":"Sat - Nov 26 12:24:05 +0000 2011","favourites_count":22789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11613,"lang":null,"status":{"created_at":"Fri - Mar 25 16:39:43 +0000 2022","id":1507396822502973452,"id_str":"1507396822502973452","text":"RT - @myldn: \ud83d\udea8In the space of 24 hours, seven separate incidents across - London have shocked communities to their core \n\n\ud83d\udd34Yesterday on - March 2\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"myldn","name":"My - London","id":1054672443246292992,"id_str":"1054672443246292992","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:13:18 +0000 2022","id":1507284480008110117,"id_str":"1507284480008110117","text":"\ud83d\udea8In - the space of 24 hours, seven separate incidents across London have shocked - communities to their core \n\n\ud83d\udd34Yesterd\u2026 https:\/\/t.co\/83gT5TBjjH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/83gT5TBjjH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507284480008110117","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":552,"favorite_count":570,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":552,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507107771497463812\/aHB12Y2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507107771497463812\/aHB12Y2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421818605\/1648157725","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":46644562,"id_str":"46644562","name":"Mwanja - Matthew","screen_name":"Omulongo","location":"Kampala, Uganda","description":"","url":"https:\/\/t.co\/nN5nh3b6Mi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nN5nh3b6Mi","expanded_url":"http:\/\/www.firi.go.ug","display_url":"firi.go.ug","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":138,"listed_count":0,"created_at":"Fri - Jun 12 12:54:28 +0000 2009","favourites_count":24176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4374,"lang":null,"status":{"created_at":"Fri - Nov 26 17:51:14 +0000 2021","id":1464290667421749250,"id_str":"1464290667421749250","text":"RT - @BBCNews: New heavily mutated Covid variant in South Africa raises concern - https:\/\/t.co\/Sx76zvj2OX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCNews","name":"BBC - News (UK)","id":612473,"id_str":"612473","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/Sx76zvj2OX","expanded_url":"https:\/\/bbc.in\/3cUqHBX","display_url":"bbc.in\/3cUqHBX","indices":[78,101]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 25 20:44:04 +0000 2021","id":1463971773834268683,"id_str":"1463971773834268683","text":"New - heavily mutated Covid variant in South Africa raises concern https:\/\/t.co\/Sx76zvj2OX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Sx76zvj2OX","expanded_url":"https:\/\/bbc.in\/3cUqHBX","display_url":"bbc.in\/3cUqHBX","indices":[65,88]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":421,"favorite_count":625,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":421,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/261121233\/DSC00576_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/261121233\/DSC00576_normal.JPG","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297198277411188740,"id_str":"1297198277411188740","name":"Onyeka - Ferdinand","screen_name":"OnyekaFerdinan2","location":"","description":"Truth - is the key.. Let''s say it and believe it. \nGod will help us all","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":757,"listed_count":0,"created_at":"Sat - Aug 22 15:46:17 +0000 2020","favourites_count":1669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1351,"lang":null,"status":{"created_at":"Tue - Apr 27 07:18:30 +0000 2021","id":1386942818795630592,"id_str":"1386942818795630592","text":"RT - @POTUS: Today, we\u2019re launching a new program funded by the American Rescue - Plan to provide nutrition assistance to more than 30 million\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Apr 26 19:00:02 +0000 2021","id":1386756976789671939,"id_str":"1386756976789671939","text":"Today, - we\u2019re launching a new program funded by the American Rescue Plan to provide - nutrition assistance to more tha\u2026 https:\/\/t.co\/yquI1MRP2M","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yquI1MRP2M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1386756976789671939","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5830,"favorite_count":47273,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5830,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297198875766411266\/myAcSVW5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297198875766411266\/myAcSVW5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1325536008,"id_str":"1325536008","name":"Supreme - Ed \u27b0","screen_name":"edmorexy","location":"Planet X","description":"The - Conquering Lion. Critical Thinker & Super Consciousness Explorer.","url":"https:\/\/t.co\/Y2Eq7V7RFy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y2Eq7V7RFy","expanded_url":"http:\/\/idonthaveone.com","display_url":"idonthaveone.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":1461,"listed_count":0,"created_at":"Wed - Apr 03 22:08:57 +0000 2013","favourites_count":5783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":702,"lang":null,"status":{"created_at":"Wed - Mar 23 11:53:35 +0000 2022","id":1506600039459737605,"id_str":"1506600039459737605","text":"@GabbyDarko - You are beetle headed and despicable . Isn\u2019t it your job to put things - right ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GabbyDarko","name":"Gabby - Otchere-Darko","id":1133103140,"id_str":"1133103140","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506397450407485442,"in_reply_to_status_id_str":"1506397450407485442","in_reply_to_user_id":1133103140,"in_reply_to_user_id_str":"1133103140","in_reply_to_screen_name":"GabbyDarko","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/747399536621027328\/L7B9TG68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747399536621027328\/L7B9TG68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1325536008\/1452394273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":967620960,"id_str":"967620960","name":"hamxa - baffa abba","screen_name":"HamxaAbba","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":2293,"listed_count":0,"created_at":"Sat - Nov 24 08:38:03 +0000 2012","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Dec 08 23:35:06 +0000 2021","id":1468725854809305093,"id_str":"1468725854809305093","text":"@lukeforme7 - W@","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1202975075210813442\/fQ9iAv-Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1202975075210813442\/fQ9iAv-Q_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":335940277,"id_str":"335940277","name":"Apak - the Great","screen_name":"Apakualyps","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":162,"listed_count":0,"created_at":"Fri - Jul 15 13:59:44 +0000 2011","favourites_count":26788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4624,"lang":null,"status":{"created_at":"Sat - Mar 26 05:11:17 +0000 2022","id":1507585962062266370,"id_str":"1507585962062266370","text":"RT - @MeidasTouch: Over the next few days, weeks, and months, Republicans will - try to gaslight you about the Ginni Thomas texts.\n\nDon\u2019t let t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:32:02 +0000 2022","id":1507485487279206403,"id_str":"1507485487279206403","text":"Over - the next few days, weeks, and months, Republicans will try to gaslight you - about the Ginni Thomas texts.\n\nDon\u2019\u2026 https:\/\/t.co\/90VAs4tI4x","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/90VAs4tI4x","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507485487279206403","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4398,"favorite_count":13109,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4398,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496954992493678597\/6b8WHRuf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496954992493678597\/6b8WHRuf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335940277\/1645736856","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1233322596080508929,"id_str":"1233322596080508929","name":"KIM - Milan","screen_name":"KIMMilan13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":396,"listed_count":0,"created_at":"Fri - Feb 28 09:26:58 +0000 2020","favourites_count":1705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":241,"lang":null,"status":{"created_at":"Mon - May 10 10:55:08 +0000 2021","id":1391708375822503938,"id_str":"1391708375822503938","text":"RT - @moonriver365: \uc704\uae30 \uadf9\ubcf5\uc744 \ub118\uc5b4 \uc704\uae30 \uc18d\uc5d0\uc11c\n\uc0c8\ub85c\uc6b4 - \ubbf8\ub798\ub97c \ub9cc\ub4e4\uc5b4\ub0b4\ub294 \uac83\uc774\n\uc6b0\ub9ac - \uc815\ubd80\uc758 \ub0a8\uc740 \uacfc\uc81c\uc785\ub2c8\ub2e4.\n\n- 2021.5.10. - \ucde8\uc784 4\uc8fc\ub144 \ud2b9\ubcc4\uc5f0\uc124\nhttps:\/\/t.co\/FJT5Ss1Asa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"moonriver365","name":"\ubb38\uc7ac\uc778","id":444465942,"id_str":"444465942","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/FJT5Ss1Asa","expanded_url":"https:\/\/youtu.be\/9OpFPWPMKNY","display_url":"youtu.be\/9OpFPWPMKNY","indices":[95,118]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 10 09:33:55 +0000 2021","id":1391687936417026049,"id_str":"1391687936417026049","text":"\uc704\uae30 - \uadf9\ubcf5\uc744 \ub118\uc5b4 \uc704\uae30 \uc18d\uc5d0\uc11c\n\uc0c8\ub85c\uc6b4 - \ubbf8\ub798\ub97c \ub9cc\ub4e4\uc5b4\ub0b4\ub294 \uac83\uc774\n\uc6b0\ub9ac - \uc815\ubd80\uc758 \ub0a8\uc740 \uacfc\uc81c\uc785\ub2c8\ub2e4.\n\n- 2021.5.10. - \ucde8\uc784 4\uc8fc\ub144 \ud2b9\ubcc4\uc5f0\uc124\nhttps:\/\/t.co\/FJT5Ss1Asa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FJT5Ss1Asa","expanded_url":"https:\/\/youtu.be\/9OpFPWPMKNY","display_url":"youtu.be\/9OpFPWPMKNY","indices":[77,100]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2782,"favorite_count":6015,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ko"},"is_quote_status":false,"retweet_count":2782,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128230940310818816,"id_str":"1128230940310818816","name":"Maung - Saw Wai","screen_name":"MaungSawWai1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":163,"listed_count":0,"created_at":"Tue - May 14 09:29:52 +0000 2019","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Mon - Feb 15 12:26:55 +0000 2021","id":1361290893660205057,"id_str":"1361290893660205057","text":"Today,Myanmar''s - situation.The military continues to hold military coups,and our leader Aung - San Suu Kyi has not bee\u2026 https:\/\/t.co\/Fn6bmlNn0X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fn6bmlNn0X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1361290893660205057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272937342181863424\/EWuLpM2Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272937342181863424\/EWuLpM2Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128230940310818816\/1557826679","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":319100777,"id_str":"319100777","name":"Babajide - Ojo","screen_name":"UncleTisha","location":"","description":"Before everything - else fails, try humour! \ud83d\ude00\n\nProudly Ekiti. Passionate about \ud83c\uddf3\ud83c\uddec, - Resolute against injustice.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":348,"friends_count":561,"listed_count":0,"created_at":"Fri - Jun 17 15:21:51 +0000 2011","favourites_count":1825,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3459,"lang":null,"status":{"created_at":"Thu - Mar 24 08:08:12 +0000 2022","id":1506905707785900032,"id_str":"1506905707785900032","text":"Re: - A\u1e63iwaju & his virulent critics\n\n\"\u1eccm\u1ecd t\u00ed k\u00f2 - b\u00e1 m\u1ecd \u00e0l\u00e8 \u00ecy\u00e1 \u1eb9\u0300 l\u00f3 m\u00e1a - \u0144 s\u1ecd p\u00e9 Baba bur\u00fak\u00fa kan l\u00f3 m\u00e1a w\u00e1 - \u0144 gb\u00e9 iy\u00e1n\u2026 https:\/\/t.co\/64nUBBBJEk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/64nUBBBJEk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506905707785900032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291012736877551622\/6XzfyGR0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291012736877551622\/6XzfyGR0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":765573445140701185,"id_str":"765573445140701185","name":"David - Moeller","screen_name":"regwhisperer","location":"Duluth, MN","description":"The - answer, my friend, is blowin'' in the wind\nThe answer is blowin'' in the - wind","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":2441,"listed_count":0,"created_at":"Tue - Aug 16 15:38:27 +0000 2016","favourites_count":4118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":845,"lang":null,"status":{"created_at":"Thu - Mar 24 17:31:11 +0000 2022","id":1507047386127994882,"id_str":"1507047386127994882","text":"@Hobbs_Duluth - is this your doing? https:\/\/t.co\/SlUbyc2Tfw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Hobbs_Duluth","name":"Noah - Hobbs","id":2932713044,"id_str":"2932713044","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/SlUbyc2Tfw","expanded_url":"https:\/\/twitter.com\/PlanningAutumn\/status\/1507044334411169801","display_url":"twitter.com\/PlanningAutumn\u2026","indices":[34,57]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2932713044,"in_reply_to_user_id_str":"2932713044","in_reply_to_screen_name":"Hobbs_Duluth","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507044334411169801,"quoted_status_id_str":"1507044334411169801","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133366746612719626\/duXctAVQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133366746612719626\/duXctAVQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/765573445140701185\/1524596557","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252558131420372992,"id_str":"1252558131420372992","name":"THE - PEOPLE''S ADVOCATE","screen_name":"EaPwavia","location":"Texas ","description":"Business - Development Specialist and a Constructive Critque of governance and policies - of various political regimes around the world","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9421,"friends_count":9385,"listed_count":1,"created_at":"Tue - Apr 21 11:22:05 +0000 2020","favourites_count":1388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2431,"lang":null,"status":{"created_at":"Sat - Mar 26 10:20:20 +0000 2022","id":1507663736626102274,"id_str":"1507663736626102274","text":"When - Russia realize it will be difficult for them to achieve their target and due - to the heavy casualties it suff\u2026 https:\/\/t.co\/nh4qzYwRt3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nh4qzYwRt3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507663736626102274","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320140387911172096\/jjHsHYJd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320140387911172096\/jjHsHYJd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1252558131420372992\/1603586110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245521956935532545,"id_str":"1245521956935532545","name":"Murphy - (Always An American)","screen_name":"WmJefferson70","location":"Ithaca, NY. \ud83c\udf40\ud83c\udf0a\ud83c\uddf1\ud83c\uddf7\ud83c\udf0a\ud83c\udf40","description":"I''m - a single Dad to a 7 yr old son. He''s my pride & joy. Tenured Law Professor, - lic. attorney & 3d best bubble gum chewer in Tompkins Cty NYS. Blue 2 the - core\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1233,"friends_count":4992,"listed_count":2,"created_at":"Thu - Apr 02 01:22:43 +0000 2020","favourites_count":50374,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8768,"lang":null,"status":{"created_at":"Sat - Mar 26 07:21:51 +0000 2022","id":1507618821129052172,"id_str":"1507618821129052172","text":"RT - @DanRather: Oh I get it. When Donald Trump talks about \u201cwinning\u201d - the election he\u2019s using the definition from the Russian military dictio\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanRather","name":"Dan - Rather","id":36711022,"id_str":"36711022","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:49:54 +0000 2022","id":1507580580522864654,"id_str":"1507580580522864654","text":"Oh - I get it. When Donald Trump talks about \u201cwinning\u201d the election he\u2019s - using the definition from the Russian milita\u2026 https:\/\/t.co\/Pe0LgJvVuz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Pe0LgJvVuz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507580580522864654","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2242,"favorite_count":15741,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2242,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380063892710301697\/BTmjVMEE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380063892710301697\/BTmjVMEE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245521956935532545\/1600718243","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1050510448083243009,"id_str":"1050510448083243009","name":"Carrie28","screen_name":"Carrie2814","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":81,"listed_count":0,"created_at":"Thu - Oct 11 22:16:23 +0000 2018","favourites_count":183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1514778176,"id_str":"1514778176","name":"HdaryTT","screen_name":"HdaryT","location":"New - Haven, CT","description":".. Just sightseeing .. ( neciologo )","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":37,"friends_count":2172,"listed_count":1,"created_at":"Thu - Jun 13 23:52:14 +0000 2013","favourites_count":1072,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000451207217\/6fa335f2c32923bf8603c421e4d239f7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000451207217\/6fa335f2c32923bf8603c421e4d239f7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1514778176\/1379074315","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":806554779770093580,"id_str":"806554779770093580","name":"Doris - Underwood","screen_name":"jones1932","location":"Texas, USA","description":"Resister; - anti trump.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":477,"friends_count":1185,"listed_count":2,"created_at":"Wed - Dec 07 17:43:39 +0000 2016","favourites_count":6183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28629,"lang":null,"status":{"created_at":"Sun - Aug 29 17:51:21 +0000 2021","id":1432038173551566848,"id_str":"1432038173551566848","text":"RT - @Kathlee12624110: @Kris_Sacrebleu Sweet! I have a small collection of vintage - vases. https:\/\/t.co\/XYPOlkXz75","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kathlee12624110","name":"Kathleen","id":829211025467645953,"id_str":"829211025467645953","indices":[3,19]},{"screen_name":"Kris_Sacrebleu","name":"\ud83c\uddfa\ud83c\udde6\u13a0\u13ccN\u13ac\u13b7Y\u13a2\u13bb\u13aaN\u13e9\u2122\ufe0f\ud83c\uddfa\ud83c\udde6","id":32522055,"id_str":"32522055","indices":[21,36]}],"urls":[],"media":[{"id":1432025328625483788,"id_str":"1432025328625483788","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","url":"https:\/\/t.co\/XYPOlkXz75","display_url":"pic.twitter.com\/XYPOlkXz75","expanded_url":"https:\/\/twitter.com\/Kathlee12624110\/status\/1432025333855784961\/photo\/1","type":"photo","sizes":{"large":{"w":1852,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":615,"h":680,"resize":"fit"},"medium":{"w":1085,"h":1200,"resize":"fit"}},"source_status_id":1432025333855784961,"source_status_id_str":"1432025333855784961","source_user_id":829211025467645953,"source_user_id_str":"829211025467645953"}]},"extended_entities":{"media":[{"id":1432025328625483788,"id_str":"1432025328625483788","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","url":"https:\/\/t.co\/XYPOlkXz75","display_url":"pic.twitter.com\/XYPOlkXz75","expanded_url":"https:\/\/twitter.com\/Kathlee12624110\/status\/1432025333855784961\/photo\/1","type":"photo","sizes":{"large":{"w":1852,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":615,"h":680,"resize":"fit"},"medium":{"w":1085,"h":1200,"resize":"fit"}},"source_status_id":1432025333855784961,"source_status_id_str":"1432025333855784961","source_user_id":829211025467645953,"source_user_id_str":"829211025467645953"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 29 17:00:19 +0000 2021","id":1432025333855784961,"id_str":"1432025333855784961","text":"@Kris_Sacrebleu - Sweet! I have a small collection of vintage vases. https:\/\/t.co\/XYPOlkXz75","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kris_Sacrebleu","name":"\ud83c\uddfa\ud83c\udde6\u13a0\u13ccN\u13ac\u13b7Y\u13a2\u13bb\u13aaN\u13e9\u2122\ufe0f\ud83c\uddfa\ud83c\udde6","id":32522055,"id_str":"32522055","indices":[0,15]}],"urls":[],"media":[{"id":1432025328625483788,"id_str":"1432025328625483788","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","url":"https:\/\/t.co\/XYPOlkXz75","display_url":"pic.twitter.com\/XYPOlkXz75","expanded_url":"https:\/\/twitter.com\/Kathlee12624110\/status\/1432025333855784961\/photo\/1","type":"photo","sizes":{"large":{"w":1852,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":615,"h":680,"resize":"fit"},"medium":{"w":1085,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1432025328625483788,"id_str":"1432025328625483788","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9-Tcv4VgAwXmym.jpg","url":"https:\/\/t.co\/XYPOlkXz75","display_url":"pic.twitter.com\/XYPOlkXz75","expanded_url":"https:\/\/twitter.com\/Kathlee12624110\/status\/1432025333855784961\/photo\/1","type":"photo","sizes":{"large":{"w":1852,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":615,"h":680,"resize":"fit"},"medium":{"w":1085,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1432023691387232256,"in_reply_to_status_id_str":"1432023691387232256","in_reply_to_user_id":32522055,"in_reply_to_user_id_str":"32522055","in_reply_to_screen_name":"Kris_Sacrebleu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153532578114277376\/DDx8Nuno_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153532578114277376\/DDx8Nuno_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806554779770093580\/1531012687","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2838271509,"id_str":"2838271509","name":"Carole - Anne Payne","screen_name":"Aquaannaleo","location":"Ashtabula, Ohio","description":"I - am into Astrology, nutrition, psychology and am an eternal student. I live - with one\nfoot in today & one foot in tomorrow. I\nam a Moon in Aquarius.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":391,"listed_count":1,"created_at":"Mon - Oct 20 17:31:36 +0000 2014","favourites_count":55740,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54253,"lang":null,"status":{"created_at":"Sat - Mar 26 02:35:16 +0000 2022","id":1507546700331765761,"id_str":"1507546700331765761","text":"RT - @ResisterSis20: Midterm Elections present voters with a clear choice that - will determine the fate of America. Will we vote 81 million st\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ResisterSis20","name":"Southern - Sister Resister - Wordsmith #IAmTheStorm","id":328756439,"id_str":"328756439","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:14:59 +0000 2022","id":1507526493701869570,"id_str":"1507526493701869570","text":"Midterm - Elections present voters with a clear choice that will determine the fate - of America. Will we vote 81 milli\u2026 https:\/\/t.co\/XduF40CyNB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XduF40CyNB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507526493701869570","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130,"favorite_count":216,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":130,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1672751,"id_str":"1672751","name":"~joe","screen_name":"aldiscon","location":"Dublin","description":"\u007b - still keeping it at 160 characters\u007d","url":"https:\/\/t.co\/81Za6sgknF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/81Za6sgknF","expanded_url":"http:\/\/www.ammeon.com","display_url":"ammeon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":194,"friends_count":744,"listed_count":14,"created_at":"Tue - Mar 20 21:24:40 +0000 2007","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1018,"lang":null,"status":{"created_at":"Fri - Mar 25 14:27:24 +0000 2022","id":1507363525085249537,"id_str":"1507363525085249537","text":"@MaxWinebach - #RCS has now been around FIFTEEN YEARS. That\u2019s the hint .. if you need - carrier enablement for inter-op\u2026 https:\/\/t.co\/bXqk6leHv7","truncated":true,"entities":{"hashtags":[{"text":"RCS","indices":[13,17]}],"symbols":[],"user_mentions":[{"screen_name":"MaxWinebach","name":"Max - Weinbach","id":3239896262,"id_str":"3239896262","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/bXqk6leHv7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507363525085249537","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507099635361333257,"in_reply_to_status_id_str":"1507099635361333257","in_reply_to_user_id":3239896262,"in_reply_to_user_id_str":"3239896262","in_reply_to_screen_name":"MaxWinebach","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402035329721421836\/Z4hrAoyK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402035329721421836\/Z4hrAoyK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1672751\/1623106246","profile_link_color":"3B94D9","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191486584157360129,"id_str":"1191486584157360129","name":"Abdullahi - Oladimeji Seriki","screen_name":"AbdullahiSeriki","location":"Ilorin, Nigeria","description":"am - a perfect gentle man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":1319,"listed_count":0,"created_at":"Mon - Nov 04 22:45:54 +0000 2019","favourites_count":4116,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75,"lang":null,"status":{"created_at":"Sun - Nov 14 17:11:29 +0000 2021","id":1459932008361119755,"id_str":"1459932008361119755","text":"RT - @astronauttoken: Astronaut is proud to announce the @CaKe_Tools IDO on November - 17th at 3PM UTC!\n\n\ud83e\udd11Total Raise: $100k \n\ud83d\udcb0Price Per - Token:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"astronauttoken","name":"Astronaut.to","id":1364587133999194126,"id_str":"1364587133999194126","indices":[3,18]},{"screen_name":"CaKe_Tools","name":"CakeTools","id":1364203638088949762,"id_str":"1364203638088949762","indices":[55,66]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 10 20:45:40 +0000 2021","id":1458536358570516489,"id_str":"1458536358570516489","text":"Astronaut - is proud to announce the @CaKe_Tools IDO on November 17th at 3PM UTC!\n\n\ud83e\udd11Total - Raise: $100k \n\ud83d\udcb0Price Per To\u2026 https:\/\/t.co\/wKD4GfbegI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CaKe_Tools","name":"CakeTools","id":1364203638088949762,"id_str":"1364203638088949762","indices":[35,46]}],"urls":[{"url":"https:\/\/t.co\/wKD4GfbegI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1458536358570516489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30170,"favorite_count":8290,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30170,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265896811069399044\/0iW2Xa29_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265896811069399044\/0iW2Xa29_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1623456614,"id_str":"1623456614","name":"Stefan - Lindow","screen_name":"SlineL","location":"Berlin, Germany","description":"Digitizing - policy teaching @fernunihagen | on copyright policy, see database: https:\/\/t.co\/FuWq7bq1sU - and twitter list: https:\/\/t.co\/cqxHs3nYMs |","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/FuWq7bq1sU","expanded_url":"http:\/\/bit.ly\/3cxGfcm","display_url":"bit.ly\/3cxGfcm","indices":[78,101]},{"url":"https:\/\/t.co\/cqxHs3nYMs","expanded_url":"http:\/\/bit.ly\/3lLzGr8","display_url":"bit.ly\/3lLzGr8","indices":[120,143]}]}},"protected":false,"followers_count":169,"friends_count":653,"listed_count":5,"created_at":"Fri - Jul 26 17:25:24 +0000 2013","favourites_count":268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1046,"lang":null,"status":{"created_at":"Tue - Mar 22 12:16:40 +0000 2022","id":1506243463137931281,"id_str":"1506243463137931281","text":"Bei - Annette T\u00f6ller am Lehrgebiet #Politikfeldanalyse & #Umweltpolitik - stellen wir Hilfskr\u00e4fte mit 10h\/w f\u00fcr 12 Mona\u2026 https:\/\/t.co\/sxa81tTB8Q","truncated":true,"entities":{"hashtags":[{"text":"Politikfeldanalyse","indices":[33,52]},{"text":"Umweltpolitik","indices":[59,73]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sxa81tTB8Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506243463137931281","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter - for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341296318212411393\/uqhTgybd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341296318212411393\/uqhTgybd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1623456614\/1608625090","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":65087801,"id_str":"65087801","name":"Alan - Salomon","screen_name":"AlanS518","location":"Boca Raton, FL","description":"I - am an entertainment executive in music, comedy as well as the exclusive entertainment - consultant for Twin River Casino in RI","url":"https:\/\/t.co\/OTkU4gJmS1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OTkU4gJmS1","expanded_url":"http:\/\/www.capitolselect.com","display_url":"capitolselect.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":160,"friends_count":866,"listed_count":0,"created_at":"Wed - Aug 12 16:51:10 +0000 2009","favourites_count":5766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2930,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476599463158374408\/2GWkvsK4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476599463158374408\/2GWkvsK4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65087801\/1640883721","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1058170273378299904,"id_str":"1058170273378299904","name":"Djforgetti","screen_name":"djforgetti","location":"Eastern, - Ghana","description":"Ampofo Patrick Roland is my name popularly know us showbiz - djforgettiyour favourite dj.Ghanas choice dj.@tiktokdjforgetti @youtubedjforgetti - @IGdjforgetti_gh","url":"https:\/\/t.co\/5tQH7bLwHa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5tQH7bLwHa","expanded_url":"http:\/\/nanagossipfillablogspot.com","display_url":"nanagossipfillablogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":379,"friends_count":4997,"listed_count":1,"created_at":"Fri - Nov 02 01:33:47 +0000 2018","favourites_count":12329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":159,"lang":null,"status":{"created_at":"Tue - Mar 22 06:29:37 +0000 2022","id":1506156123195330562,"id_str":"1506156123195330562","text":"@andydosty#daybreak#hitz103.9\nAndy - am on board \n#djforgetti Akyem Anweam","truncated":false,"entities":{"hashtags":[{"text":"djforgetti","indices":[48,59]}],"symbols":[],"user_mentions":[{"screen_name":"andydosty","name":"Mr - Dosty","id":32137823,"id_str":"32137823","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":32137823,"in_reply_to_user_id_str":"32137823","in_reply_to_screen_name":"andydosty","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447864084997738496\/kyIsDryj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447864084997738496\/kyIsDryj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1058170273378299904\/1625835283","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110218308,"id_str":"110218308","name":"Russell - S. Day","screen_name":"Transcendian","location":"Transcendia TM, Intendor - TM","description":"Founder of Transcendia. Most important work. Poet Author - on Amazon Russell Scott Day \/amazon.com\/author\/transcendian\/Scott Day - Trks. on N1M Agent needed.","url":"http:\/\/t.co\/7U63RiI6KN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/7U63RiI6KN","expanded_url":"http:\/\/www.transcendia.org","display_url":"transcendia.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1245,"friends_count":4984,"listed_count":53,"created_at":"Sun - Jan 31 19:44:42 +0000 2010","favourites_count":2280,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81194,"lang":null,"status":{"created_at":"Sat - Mar 26 04:32:39 +0000 2022","id":1507576240475185153,"id_str":"1507576240475185153","text":"@mahr_bill - \"If you want a perfect man, marry a woman.\" is my snide saying when it comes - to advertising the feminiza\u2026 https:\/\/t.co\/nhawjZpcSc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mahr_bill","name":"Bill - Mahr","id":786220371892588544,"id_str":"786220371892588544","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/nhawjZpcSc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507576240475185153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":786220371892588544,"in_reply_to_user_id_str":"786220371892588544","in_reply_to_screen_name":"mahr_bill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/826856725709873152\/hEHOGcMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/826856725709873152\/hEHOGcMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110218308\/1417323910","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260569968871079946,"id_str":"1260569968871079946","name":"H - A N N A H","screen_name":"hannosser","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":34,"friends_count":172,"listed_count":0,"created_at":"Wed - May 13 13:58:09 +0000 2020","favourites_count":861,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":689,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260570283531960322\/ChBGuNwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260570283531960322\/ChBGuNwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260569968871079946\/1641942152","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":944550762,"id_str":"944550762","name":"Rosemarie - Weiland","screen_name":"RosemarieWeilan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":214,"listed_count":0,"created_at":"Mon - Nov 12 20:46:22 +0000 2012","favourites_count":77,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3858322094,"id_str":"3858322094","name":"Dez","screen_name":"dezbear182","location":"","description":"\ud83c\udf0a\ud83c\udf0a\ud83c\udf0aproud - resister\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a mom of 2, special needs mom, - happy wife, slightly crazy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1203,"friends_count":1976,"listed_count":0,"created_at":"Sun - Oct 11 12:15:04 +0000 2015","favourites_count":6121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1636,"lang":null,"status":{"created_at":"Sat - Mar 12 13:49:36 +0000 2022","id":1502642969932873729,"id_str":"1502642969932873729","text":"Yeah - I''m not standing with Israel on this one https:\/\/t.co\/ly6Cf91JR2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ly6Cf91JR2","expanded_url":"https:\/\/twitter.com\/EuropeanPravda\/status\/1502548027671732229","display_url":"twitter.com\/EuropeanPravda\u2026","indices":[46,69]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502548027671732229,"quoted_status_id_str":"1502548027671732229","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339946520251150341\/kKUH8cOb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339946520251150341\/kKUH8cOb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3858322094\/1591612754","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":864945242621038592,"id_str":"864945242621038592","name":"Jim - Johnson","screen_name":"JimJ0270","location":"Newport, RI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":104,"listed_count":0,"created_at":"Wed - May 17 20:46:30 +0000 2017","favourites_count":179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Mon - Nov 16 03:04:20 +0000 2020","id":1328172020182495234,"id_str":"1328172020182495234","text":"@BoyswillBBoyz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BoyswillBBoyz","name":"boys - will be boys","id":790231947834302465,"id_str":"790231947834302465","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":790231947834302465,"in_reply_to_user_id_str":"790231947834302465","in_reply_to_screen_name":"BoyswillBBoyz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2324630118,"id_str":"2324630118","name":"Sydney - Schwinger","screen_name":"sydneyschwingaa","location":"","description":"","url":"https:\/\/t.co\/gx6SEBfQlX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gx6SEBfQlX","expanded_url":"http:\/\/sydschwinger.vsco.co","display_url":"sydschwinger.vsco.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":517,"listed_count":1,"created_at":"Mon - Feb 03 01:54:43 +0000 2014","favourites_count":108088,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2520,"lang":null,"status":{"created_at":"Sat - Mar 26 05:17:32 +0000 2022","id":1507587534532096007,"id_str":"1507587534532096007","text":"RT - @uclatheden: We love you @UCLAMBB \ud83d\udc9b\ud83d\udc99 https:\/\/t.co\/xOh7ckAwDW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"uclatheden","name":"The - Den","id":109490011,"id_str":"109490011","indices":[3,14]},{"screen_name":"UCLAMBB","name":"UCLA - Men\u2019s Basketball","id":524643600,"id_str":"524643600","indices":[28,36]}],"urls":[],"media":[{"id":1507566670335852548,"id_str":"1507566670335852548","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","url":"https:\/\/t.co\/xOh7ckAwDW","display_url":"pic.twitter.com\/xOh7ckAwDW","expanded_url":"https:\/\/twitter.com\/uclatheden\/status\/1507566679760556032\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"}},"source_status_id":1507566679760556032,"source_status_id_str":"1507566679760556032","source_user_id":109490011,"source_user_id_str":"109490011"}]},"extended_entities":{"media":[{"id":1507566670335852548,"id_str":"1507566670335852548","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","url":"https:\/\/t.co\/xOh7ckAwDW","display_url":"pic.twitter.com\/xOh7ckAwDW","expanded_url":"https:\/\/twitter.com\/uclatheden\/status\/1507566679760556032\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"}},"source_status_id":1507566679760556032,"source_status_id_str":"1507566679760556032","source_user_id":109490011,"source_user_id_str":"109490011"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:54:40 +0000 2022","id":1507566679760556032,"id_str":"1507566679760556032","text":"We - love you @UCLAMBB \ud83d\udc9b\ud83d\udc99 https:\/\/t.co\/xOh7ckAwDW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UCLAMBB","name":"UCLA - Men\u2019s Basketball","id":524643600,"id_str":"524643600","indices":[12,20]}],"urls":[],"media":[{"id":1507566670335852548,"id_str":"1507566670335852548","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","url":"https:\/\/t.co\/xOh7ckAwDW","display_url":"pic.twitter.com\/xOh7ckAwDW","expanded_url":"https:\/\/twitter.com\/uclatheden\/status\/1507566679760556032\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507566670335852548,"id_str":"1507566670335852548","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvz5jSWQAQE3sY.jpg","url":"https:\/\/t.co\/xOh7ckAwDW","display_url":"pic.twitter.com\/xOh7ckAwDW","expanded_url":"https:\/\/twitter.com\/uclatheden\/status\/1507566679760556032\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":249,"favorite_count":1656,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":249,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474595788353421317\/MaOJyD1-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474595788353421317\/MaOJyD1-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2324630118\/1568743991","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1095741918124957697,"id_str":"1095741918124957697","name":"efhco","screen_name":"efhco1","location":"EU - office Brussels","description":"an 18 members strong European Federation, - supporting & promoting Professional Healthcare Clown \ud83e\udd21 work!","url":"https:\/\/t.co\/0NAOFdDry1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0NAOFdDry1","expanded_url":"http:\/\/www.efhco.eu","display_url":"efhco.eu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":109,"listed_count":0,"created_at":"Wed - Feb 13 17:50:05 +0000 2019","favourites_count":2404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":194,"lang":null,"status":{"created_at":"Fri - Mar 25 20:21:48 +0000 2022","id":1507452713478819840,"id_str":"1507452713478819840","text":"RT - @TheodoraSuisse: Un grand merci pour votre soutien! \ud83d\ude4f\ud83e\udde1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheodoraSuisse","name":"Fondation - Th\u00e9odora","id":239802958,"id_str":"239802958","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:17:41 +0000 2022","id":1507391278140563456,"id_str":"1507391278140563456","text":"Un - grand merci pour votre soutien! \ud83d\ude4f\ud83e\udde1 https:\/\/t.co\/DqhOrrlqVK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DqhOrrlqVK","expanded_url":"https:\/\/twitter.com\/bSharpeSA\/status\/1506573741265936385","display_url":"twitter.com\/bSharpeSA\/stat\u2026","indices":[38,61]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506573741265936385,"quoted_status_id_str":"1506573741265936385","retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":true,"quoted_status_id":1506573741265936385,"quoted_status_id_str":"1506573741265936385","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179814206943764480\/YY93rbWI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179814206943764480\/YY93rbWI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":214446300,"id_str":"214446300","name":"Humberto Osorio","screen_name":"Hosoriio1964","location":"Mesquite, - TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":823,"listed_count":0,"created_at":"Thu - Nov 11 12:36:23 +0000 2010","favourites_count":5680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":586,"lang":null,"status":{"created_at":"Sat - Mar 26 10:48:14 +0000 2022","id":1507670758192988160,"id_str":"1507670758192988160","text":"RT - @GinaMuscato: Don Mattingly should be in the HOF & I will die on this - hill. \n\nDon\u2019t even bother tweeting me otherwise. https:\/\/t.co\/8Pkz\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GinaMuscato","name":"Gina - Muscato","id":278636534,"id_str":"278636534","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:43:54 +0000 2022","id":1507412974390022144,"id_str":"1507412974390022144","text":"Don - Mattingly should be in the HOF & I will die on this hill. \n\nDon\u2019t - even bother tweeting me otherwise. https:\/\/t.co\/8Pkzh7e5G0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507412969231056896,"id_str":"1507412969231056896","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtoG-DVgAADeot.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtoG-DVgAADeot.jpg","url":"https:\/\/t.co\/8Pkzh7e5G0","display_url":"pic.twitter.com\/8Pkzh7e5G0","expanded_url":"https:\/\/twitter.com\/GinaMuscato\/status\/1507412974390022144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":348,"resize":"fit"},"medium":{"w":498,"h":348,"resize":"fit"},"small":{"w":498,"h":348,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507412969231056896,"id_str":"1507412969231056896","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtoG-DVgAADeot.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOtoG-DVgAADeot.jpg","url":"https:\/\/t.co\/8Pkzh7e5G0","display_url":"pic.twitter.com\/8Pkzh7e5G0","expanded_url":"https:\/\/twitter.com\/GinaMuscato\/status\/1507412974390022144\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":348,"resize":"fit"},"medium":{"w":498,"h":348,"resize":"fit"},"small":{"w":498,"h":348,"resize":"fit"}},"video_info":{"aspect_ratio":[83,58],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOtoG-DVgAADeot.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":890,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":46,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2594322830,"id_str":"2594322830","name":"Andr\u00e9s - Estrada","screen_name":"AndresEstradaGT","location":"Guatemala","description":"Productor - y Presentador de @ApuntesDelMundo, Domingos a las 7PM por @TN23Noticias. An\u00e1lisis - e informaci\u00f3n. Explicando lo que pasa en nuestro hogar, la tierra.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":316,"friends_count":702,"listed_count":1,"created_at":"Sun - Jun 29 06:19:19 +0000 2014","favourites_count":5382,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4026,"lang":null,"status":{"created_at":"Thu - Mar 24 00:08:16 +0000 2022","id":1506784930239496194,"id_str":"1506784930239496194","text":"#ApuntesEnDesarrollo - | El secretario general de las Naciones Unidas afirm\u00f3 que es hora que - Rusia termine una guerra\u2026 https:\/\/t.co\/uc1qNnDZCA","truncated":true,"entities":{"hashtags":[{"text":"ApuntesEnDesarrollo","indices":[0,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uc1qNnDZCA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506784930239496194","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501420551352504323\/L4ld0DM3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501420551352504323\/L4ld0DM3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594322830\/1639647936","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15772540,"id_str":"15772540","name":"fergieQ","screen_name":"fergusonquinn","location":"Minnesota, - USA","description":"Teacher, world traveler, on a quest to visit every national - park, Kayaker,life long voter, volunteer, political junkie, #PostCardstoVoters, - No DM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2386,"friends_count":3448,"listed_count":7,"created_at":"Fri - Aug 08 01:35:50 +0000 2008","favourites_count":73533,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31403,"lang":null,"status":{"created_at":"Sat - Mar 26 01:04:06 +0000 2022","id":1507523753923813378,"id_str":"1507523753923813378","text":"@SamintheH - https:\/\/t.co\/AztOAFpfOH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamintheH","name":"SamintheHinterlands","id":1122996495026929665,"id_str":"1122996495026929665","indices":[0,10]}],"urls":[],"media":[{"id":1507523748236341253,"id_str":"1507523748236341253","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvM3KAXsAURhM1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvM3KAXsAURhM1.jpg","url":"https:\/\/t.co\/AztOAFpfOH","display_url":"pic.twitter.com\/AztOAFpfOH","expanded_url":"https:\/\/twitter.com\/fergusonquinn\/status\/1507523753923813378\/photo\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507523748236341253,"id_str":"1507523748236341253","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvM3KAXsAURhM1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOvM3KAXsAURhM1.jpg","url":"https:\/\/t.co\/AztOAFpfOH","display_url":"pic.twitter.com\/AztOAFpfOH","expanded_url":"https:\/\/twitter.com\/fergusonquinn\/status\/1507523753923813378\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOvM3KAXsAURhM1.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507462257835659267,"in_reply_to_status_id_str":"1507462257835659267","in_reply_to_user_id":1122996495026929665,"in_reply_to_user_id_str":"1122996495026929665","in_reply_to_screen_name":"SamintheH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497766489386110977\/YwpKj1QM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497766489386110977\/YwpKj1QM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1285372490626281473,"id_str":"1285372490626281473","name":"Sino","screen_name":"Avicenna2113","location":"Vilnius, - Lietuva","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":62,"listed_count":0,"created_at":"Tue - Jul 21 00:34:31 +0000 2020","favourites_count":336,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Aug 02 23:36:16 +0000 2021","id":1422340504101048325,"id_str":"1422340504101048325","text":"@wuzeltown - @buttsMcGub @masseffect I want to add that Ashley have her own reasons for - hating aliens, her ancestors\u2026 https:\/\/t.co\/Nl17xSMtib","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wuzeltown","name":"J\u00f6rri","id":547063951,"id_str":"547063951","indices":[0,10]},{"screen_name":"buttsMcGub","name":"Robbie","id":313769006,"id_str":"313769006","indices":[11,22]},{"screen_name":"masseffect","name":"Mass - Effect","id":20747847,"id_str":"20747847","indices":[23,34]}],"urls":[{"url":"https:\/\/t.co\/Nl17xSMtib","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1422340504101048325","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1420075013210886149,"in_reply_to_status_id_str":"1420075013210886149","in_reply_to_user_id":547063951,"in_reply_to_user_id_str":"547063951","in_reply_to_screen_name":"wuzeltown","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312735642795810818\/8kyDx0uf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312735642795810818\/8kyDx0uf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":908486101932929024,"id_str":"908486101932929024","name":"John - G Forbes","screen_name":"JohnGForbes1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":140,"listed_count":0,"created_at":"Fri - Sep 15 00:22:20 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Jul 04 23:08:30 +0000 2020","id":1279552697797132288,"id_str":"1279552697797132288","text":"@HardballChris - Miss you Cris","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HardballChris","name":"Chris - Matthews","id":48802204,"id_str":"48802204","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1279477307053350914,"in_reply_to_status_id_str":"1279477307053350914","in_reply_to_user_id":48802204,"in_reply_to_user_id_str":"48802204","in_reply_to_screen_name":"HardballChris","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21111403,"id_str":"21111403","name":"Troy - Tibbals","screen_name":"troylowman","location":"San Francisco","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":643,"listed_count":0,"created_at":"Tue - Feb 17 17:57:03 +0000 2009","favourites_count":14885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1092,"lang":null,"status":{"created_at":"Fri - Mar 25 20:33:40 +0000 2022","id":1507455697654493186,"id_str":"1507455697654493186","text":"RT - @RonFilipkowski: The Hunter Biden laptop people are now telling us we can\u2019t - hold the activities of Clarence Thomas\u2019 wife against him.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonFilipkowski","name":"Ron - Filipkowski \ud83c\uddfa\ud83c\udde6","id":1298372735383605249,"id_str":"1298372735383605249","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:41:20 +0000 2022","id":1507427431493251073,"id_str":"1507427431493251073","text":"The - Hunter Biden laptop people are now telling us we can\u2019t hold the activities - of Clarence Thomas\u2019 wife against him.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12531,"favorite_count":70376,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12531,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3664164530\/dc143d0cca3afcfdb16cda9fe2e4b155_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3664164530\/dc143d0cca3afcfdb16cda9fe2e4b155_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":137975132,"id_str":"137975132","name":"Hasnain - Razvi","screen_name":"HasnainRazvi","location":"Hyderabad, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":558,"listed_count":0,"created_at":"Wed - Apr 28 08:27:34 +0000 2010","favourites_count":2490,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"status":{"created_at":"Sat - Mar 19 21:51:33 +0000 2022","id":1505300970644770816,"id_str":"1505300970644770816","text":"RT - @pbhushan1: Vivek Agnihotri Vs Home Ministry https:\/\/t.co\/zkOGPfQuzm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pbhushan1","name":"Prashant - Bhushan","id":2284802828,"id_str":"2284802828","indices":[3,13]}],"urls":[],"media":[{"id":1505099348517933060,"id_str":"1505099348517933060","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","url":"https:\/\/t.co\/zkOGPfQuzm","display_url":"pic.twitter.com\/zkOGPfQuzm","expanded_url":"https:\/\/twitter.com\/pbhushan1\/status\/1505099350870962179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":649,"resize":"fit"},"small":{"w":680,"h":649,"resize":"fit"},"large":{"w":680,"h":649,"resize":"fit"}},"source_status_id":1505099350870962179,"source_status_id_str":"1505099350870962179","source_user_id":2284802828,"source_user_id_str":"2284802828"}]},"extended_entities":{"media":[{"id":1505099348517933060,"id_str":"1505099348517933060","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","url":"https:\/\/t.co\/zkOGPfQuzm","display_url":"pic.twitter.com\/zkOGPfQuzm","expanded_url":"https:\/\/twitter.com\/pbhushan1\/status\/1505099350870962179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":649,"resize":"fit"},"small":{"w":680,"h":649,"resize":"fit"},"large":{"w":680,"h":649,"resize":"fit"}},"source_status_id":1505099350870962179,"source_status_id_str":"1505099350870962179","source_user_id":2284802828,"source_user_id_str":"2284802828"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 08:30:23 +0000 2022","id":1505099350870962179,"id_str":"1505099350870962179","text":"Vivek - Agnihotri Vs Home Ministry https:\/\/t.co\/zkOGPfQuzm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505099348517933060,"id_str":"1505099348517933060","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","url":"https:\/\/t.co\/zkOGPfQuzm","display_url":"pic.twitter.com\/zkOGPfQuzm","expanded_url":"https:\/\/twitter.com\/pbhushan1\/status\/1505099350870962179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":649,"resize":"fit"},"small":{"w":680,"h":649,"resize":"fit"},"large":{"w":680,"h":649,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505099348517933060,"id_str":"1505099348517933060","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOMv4hQVUAQaLwy.jpg","url":"https:\/\/t.co\/zkOGPfQuzm","display_url":"pic.twitter.com\/zkOGPfQuzm","expanded_url":"https:\/\/twitter.com\/pbhushan1\/status\/1505099350870962179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":680,"h":649,"resize":"fit"},"small":{"w":680,"h":649,"resize":"fit"},"large":{"w":680,"h":649,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7223,"favorite_count":24030,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"cs"},"is_quote_status":false,"retweet_count":7223,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"cs"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215589279314743296\/6gglJrsC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215589279314743296\/6gglJrsC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137975132\/1578654043","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":46512214,"id_str":"46512214","name":"James - M. Foley","screen_name":"Misoyohman","location":"New York City","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":85,"listed_count":0,"created_at":"Thu - Jun 11 22:41:53 +0000 2009","favourites_count":2598,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Wed - Jul 04 18:48:57 +0000 2018","id":1014581848494796800,"id_str":"1014581848494796800","text":"RT - @nowthisnews: The Trump administration is forcing children as young as toddlers - to represent themselves in immigration courts https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nowthisnews","name":"NowThis","id":701725963,"id_str":"701725963","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jul 03 16:33:00 +0000 2018","id":1014185248068755458,"id_str":"1014185248068755458","text":"The - Trump administration is forcing children as young as toddlers to represent - themselves in immigration courts https:\/\/t.co\/JTtEAooyQI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1014179007850536965,"id_str":"1014179007850536965","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1014179007850536965\/img\/2YRlvJuPXjfedjvT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1014179007850536965\/img\/2YRlvJuPXjfedjvT.jpg","url":"https:\/\/t.co\/JTtEAooyQI","display_url":"pic.twitter.com\/JTtEAooyQI","expanded_url":"https:\/\/twitter.com\/nowthisnews\/status\/1014185248068755458\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1014179007850536965,"id_str":"1014179007850536965","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1014179007850536965\/img\/2YRlvJuPXjfedjvT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1014179007850536965\/img\/2YRlvJuPXjfedjvT.jpg","url":"https:\/\/t.co\/JTtEAooyQI","display_url":"pic.twitter.com\/JTtEAooyQI","expanded_url":"https:\/\/twitter.com\/nowthisnews\/status\/1014185248068755458\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":148349,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1014179007850536965\/pl\/joSj3O1jbv2Gjv1q.m3u8?tag=3"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1014179007850536965\/vid\/240x240\/8J8IbraGoqa4jqfL.mp4?tag=3"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1014179007850536965\/vid\/480x480\/upEkn0FP12BxBD6a.mp4?tag=3"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1014179007850536965\/vid\/720x720\/nxE-xECw0SO5rrdT.mp4?tag=3"}]},"additional_media_info":{"title":"Kids - Forced to Be Their Own Lawyers in Immigration Court","description":"The Trump - administration is forcing children as young as toddlers to represent themselves - in immigration courts","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89172,"favorite_count":115231,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":89172,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1228666718240804864,"id_str":"1228666718240804864","name":"M\u00e1rcia - Calila","screen_name":"CalilaMarcia","location":"","description":"Take it - easy ^_^","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":762,"listed_count":0,"created_at":"Sat - Feb 15 13:06:00 +0000 2020","favourites_count":41291,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Feb 19 21:20:25 +0000 2022","id":1495146274672291845,"id_str":"1495146274672291845","text":"@caldeiraoglobo - @ChicoCesarOf Show de bola de mais Mionzeira!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caldeiraoglobo","name":"Caldeir\u00e3o","id":31392489,"id_str":"31392489","indices":[0,15]},{"screen_name":"ChicoCesarOf","name":"Chico - C\u00e9sar","id":3195640193,"id_str":"3195640193","indices":[16,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495144728073060359,"in_reply_to_status_id_str":"1495144728073060359","in_reply_to_user_id":31392489,"in_reply_to_user_id_str":"31392489","in_reply_to_screen_name":"caldeiraoglobo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345734041111326720\/hrw15WZh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345734041111326720\/hrw15WZh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228666718240804864\/1595990584","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1095570468357267456,"id_str":"1095570468357267456","name":"Desire - SANGARA","screen_name":"Desiresangara2","location":"R\u00e9publique D\u00e9mocratique - Du Con","description":"Jfinis en gestion financi\u00e8re a l''universit\u00e9 - de GOMA UNIGOM, et aujourdhui suis marketeur chez PREMIDIS SARL dans le departement - de l''eau LA VIE.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":350,"friends_count":1821,"listed_count":0,"created_at":"Wed - Feb 13 06:28:49 +0000 2019","favourites_count":6553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":456,"lang":null,"status":{"created_at":"Sat - Mar 26 06:07:58 +0000 2022","id":1507600226235858945,"id_str":"1507600226235858945","text":"@yoanewissa_ - @BobelabiR Bravo champion, tu \u00e9tais a mon avis le meilleur sur terrain - alors que tu t''\u00e9tais ta 1 ere s\u2026 https:\/\/t.co\/4TsoH7NBKA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yoanewissa_","name":"Yoane - Wissa","id":1059411406385303554,"id_str":"1059411406385303554","indices":[0,12]},{"screen_name":"BobelabiR","name":"kamerhe - warrior","id":1301842072224378880,"id_str":"1301842072224378880","indices":[13,23]}],"urls":[{"url":"https:\/\/t.co\/4TsoH7NBKA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507600226235858945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507410066101702665,"in_reply_to_status_id_str":"1507410066101702665","in_reply_to_user_id":1059411406385303554,"in_reply_to_user_id_str":"1059411406385303554","in_reply_to_screen_name":"yoanewissa_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1414243601555599360\/2FxHZuCo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1414243601555599360\/2FxHZuCo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095570468357267456\/1577011975","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89269053,"id_str":"89269053","name":"MelodyHarrisonHanson","screen_name":"melodyhhanson","location":"N - 43\u00b06'' 0'''' \/ W 89\u00b031'' 0''''","description":"word wrangler| feminist - | gratefully sober | living w\/depression | mother","url":"https:\/\/t.co\/ozrD6LtiBO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ozrD6LtiBO","expanded_url":"http:\/\/logicandimagination.com\/","display_url":"logicandimagination.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1642,"friends_count":3222,"listed_count":68,"created_at":"Wed - Nov 11 20:05:23 +0000 2009","favourites_count":16839,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18055,"lang":null,"status":{"created_at":"Sun - Mar 13 02:52:50 +0000 2022","id":1502840077264826369,"id_str":"1502840077264826369","text":"Cheese - head https:\/\/t.co\/rQDtSkDrGu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rQDtSkDrGu","expanded_url":"https:\/\/twitter.com\/KatiePhang\/status\/1502807507131064320","display_url":"twitter.com\/KatiePhang\/sta\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502807507131064320,"quoted_status_id_str":"1502807507131064320","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A1B812","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/785146379345682432\/nNi81k6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785146379345682432\/nNi81k6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89269053\/1548215100","profile_link_color":"1B95E0","profile_sidebar_border_color":"9B9024","profile_sidebar_fill_color":"6D6033","profile_text_color":"D9D5A5","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311257907036643328,"id_str":"1311257907036643328","name":"Abdul - Malik Mohammed","screen_name":"AbdulMa55937042","location":"Tema, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":267,"listed_count":0,"created_at":"Wed - Sep 30 10:54:18 +0000 2020","favourites_count":597,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Thu - Jan 13 23:51:15 +0000 2022","id":1481775884088533000,"id_str":"1481775884088533000","text":"@cuppymusic - You look so cute","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cuppymusic","name":"Cuppy","id":226944459,"id_str":"226944459","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1481620382780166144,"in_reply_to_status_id_str":"1481620382780166144","in_reply_to_user_id":226944459,"in_reply_to_user_id_str":"226944459","in_reply_to_screen_name":"cuppymusic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361490217023209472\/TqBArRct_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361490217023209472\/TqBArRct_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248638621302886403,"id_str":"1248638621302886403","name":"Steve - Raggio","screen_name":"steve_raggio","location":"","description":"64old","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":123,"listed_count":0,"created_at":"Fri - Apr 10 15:47:20 +0000 2020","favourites_count":2418,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3389,"lang":null,"status":{"created_at":"Mon - Mar 22 11:08:16 +0000 2021","id":1373954675536498690,"id_str":"1373954675536498690","text":"@robfwtx - Greene boebert trump are all traitors there not americans they continue to - put down America beliefs nee\u2026 https:\/\/t.co\/1Fxx84bVu1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robfwtx","name":"Robert - - 1950 Census Coming April 1 - archives.gov","id":17176837,"id_str":"17176837","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/1Fxx84bVu1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1373954675536498690","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1373430184179818498,"in_reply_to_status_id_str":"1373430184179818498","in_reply_to_user_id":17176837,"in_reply_to_user_id_str":"17176837","in_reply_to_screen_name":"robfwtx","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248638960164835328\/qWvoMSjE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248638960164835328\/qWvoMSjE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240976573290946560,"id_str":"1240976573290946560","name":"Kamran - Rezaeianpour","screen_name":"KRezaianpour","location":"Tehran , Shiraz","description":"CEO - IDEHANDISH GROUP (AIA,SBIA,DECOKAM,MIA) Building,Civil,Landscape,Piping,Sewage - System, Interior Design) , k.rezaeianpour@gmail.com","url":"https:\/\/t.co\/8iig5WOqyi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8iig5WOqyi","expanded_url":"http:\/\/Idehandish.ir","display_url":"Idehandish.ir","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":388,"listed_count":0,"created_at":"Fri - Mar 20 12:21:04 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Aug 18 08:07:21 +0000 2020","id":1295633368067997696,"id_str":"1295633368067997696","text":"@Digikalacom - \u0641\u0633\u0627\u062f \u062f\u0631 \u0644\u0627\u06cc\u0647 \u0647\u0627\u06cc - \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u062f\u06cc\u062c\u06cc - \u06a9\u0627\u0644\u0627 \u0647\u0645 \u0631\u0633\u0648\u062e \u06a9\u0631\u062f\u0647 - \u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Digikalacom","name":"\u062f\u06cc\u062c\u06cc\u200c\u06a9\u0627\u0644\u0627 - | Digikala","id":2348239135,"id_str":"2348239135","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2348239135,"in_reply_to_user_id_str":"2348239135","in_reply_to_screen_name":"Digikalacom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241502559241723910\/CvZC7loD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241502559241723910\/CvZC7loD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1240976573290946560\/1584832729","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1103708916255465472,"id_str":"1103708916255465472","name":"vpearson","screen_name":"vpearson18","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":450,"listed_count":0,"created_at":"Thu - Mar 07 17:28:06 +0000 2019","favourites_count":1827,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Tue - Aug 17 23:05:27 +0000 2021","id":1427768567529943041,"id_str":"1427768567529943041","text":"I - just scored 10 out of 10 in this quiz : https:\/\/t.co\/OP3vX2o9Np","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OP3vX2o9Np","expanded_url":"https:\/\/www.triviatweet.com\/tweet\/23716\/10","display_url":"triviatweet.com\/tweet\/23716\/10","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":484541310,"id_str":"484541310","name":"AJ - Dando","screen_name":"AJDando","location":"Campanet, Espa\u00f1a","description":"Member - of Nova Raiders cycle club.","url":"https:\/\/t.co\/huV7OhvsDv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/huV7OhvsDv","expanded_url":"http:\/\/www.classicbrushstrokes.com","display_url":"classicbrushstrokes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":67,"friends_count":1184,"listed_count":0,"created_at":"Mon - Feb 06 06:57:35 +0000 2012","favourites_count":7218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/732307993639915520\/y-7QFj4x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/732307993639915520\/y-7QFj4x_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":741914533023879168,"id_str":"741914533023879168","name":"Cain - Ndlovu","screen_name":"CainNdlovu4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":267,"listed_count":0,"created_at":"Sun - Jun 12 08:46:23 +0000 2016","favourites_count":184,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96,"lang":null,"status":{"created_at":"Mon - Jan 03 19:30:46 +0000 2022","id":1478086451342585863,"id_str":"1478086451342585863","text":"@drjaytee87 - Hot and cold mxm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drjaytee87","name":"skilled - rebhara","id":335750593,"id_str":"335750593","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478084228373954569,"in_reply_to_status_id_str":"1478084228373954569","in_reply_to_user_id":335750593,"in_reply_to_user_id_str":"335750593","in_reply_to_screen_name":"drjaytee87","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":821002602800259072,"id_str":"821002602800259072","name":"Melissa - Johnson","screen_name":"MJohnsonL32","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":893,"listed_count":2,"created_at":"Mon - Jan 16 14:34:08 +0000 2017","favourites_count":26092,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Sun - Feb 27 04:26:52 +0000 2022","id":1497790310138585090,"id_str":"1497790310138585090","text":"RT - @joncoopertweets: BOOM! European football\u2019s governing body just took - the Champions League final away from St. Petersburg, Russia. \u26bd\ufe0f - \n#S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 21:14:31 +0000 2022","id":1497681505828708356,"id_str":"1497681505828708356","text":"BOOM! - European football\u2019s governing body just took the Champions League final - away from St. Petersburg, Russia. \u26bd\ufe0f \n#StandWithUkraine","truncated":false,"entities":{"hashtags":[{"text":"StandWithUkraine","indices":[116,133]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":318,"favorite_count":1955,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":318,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":856258367714668545,"id_str":"856258367714668545","name":"Michael - Walker","screen_name":"Mike_Walker_1","location":"Satellite Beach, Florida - ","description":"Editor, book lover, political junkie, theater fan. Recovering - social media addict. Think tank survivor. Former Californian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":1944,"listed_count":0,"created_at":"Sun - Apr 23 21:27:58 +0000 2017","favourites_count":103213,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Mon - Mar 07 21:49:45 +0000 2022","id":1500951864719859712,"id_str":"1500951864719859712","text":"@davramdavram - https:\/\/t.co\/gUbTILSrDe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davramdavram","name":"Davram","id":282647792,"id_str":"282647792","indices":[0,13]}],"urls":[],"media":[{"id":1500951758964674564,"id_str":"1500951758964674564","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FNRzrCIWUAQ7CKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNRzrCIWUAQ7CKf.jpg","url":"https:\/\/t.co\/gUbTILSrDe","display_url":"pic.twitter.com\/gUbTILSrDe","expanded_url":"https:\/\/twitter.com\/Mike_Walker_1\/status\/1500951864719859712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500951758964674564,"id_str":"1500951758964674564","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/FNRzrCIWUAQ7CKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNRzrCIWUAQ7CKf.jpg","url":"https:\/\/t.co\/gUbTILSrDe","display_url":"pic.twitter.com\/gUbTILSrDe","expanded_url":"https:\/\/twitter.com\/Mike_Walker_1\/status\/1500951864719859712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1500903876601520131,"in_reply_to_status_id_str":"1500903876601520131","in_reply_to_user_id":282647792,"in_reply_to_user_id_str":"282647792","in_reply_to_screen_name":"davramdavram","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1026557016582643712\/VyDXbu4u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1026557016582643712\/VyDXbu4u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/856258367714668545\/1603655762","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":956223855013527552,"id_str":"956223855013527552","name":"kangwana - William","screen_name":"Willys68650130","location":"Nairobi, Kenya","description":"Writer, - editor, web specialist, and strategic communications advisor. Passionate advocate - for critical thinking + liberty.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":479,"listed_count":0,"created_at":"Wed - Jan 24 17:55:07 +0000 2018","favourites_count":1383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Fri - Apr 23 08:11:10 +0000 2021","id":1385506520327245827,"id_str":"1385506520327245827","text":"@FaibaMobile - Okay thank you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FaibaMobile","name":"Faiba - Mobile","id":895950014970830849,"id_str":"895950014970830849","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1385502099824422912,"in_reply_to_status_id_str":"1385502099824422912","in_reply_to_user_id":895950014970830849,"in_reply_to_user_id_str":"895950014970830849","in_reply_to_screen_name":"FaibaMobile","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335736934623277057\/Zfz0x_88_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335736934623277057\/Zfz0x_88_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/956223855013527552\/1517896502","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1123401283,"id_str":"1123401283","name":"Craig - Goedecke","screen_name":"NeWeathereye","location":"North Weymouth Mass","description":"Craig - Goedecke , Democrat ,Voting rights supporter, NWS weather observer,\ud83d\udca7\ud83d\udca7 - Climate change supporter, Married with one son, North Weymouth,Mass","url":"https:\/\/t.co\/dhL1KrMOJy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dhL1KrMOJy","expanded_url":"http:\/\/NewEnglandWeatherTrack.com","display_url":"NewEnglandWeatherTrack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":507,"friends_count":1031,"listed_count":24,"created_at":"Sat - Jan 26 23:01:00 +0000 2013","favourites_count":1797,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40114,"lang":null,"status":{"created_at":"Sat - Mar 26 02:11:11 +0000 2022","id":1507540636257427456,"id_str":"1507540636257427456","text":"Hope - the DOJ indicts you Virginia Thomas @JusticeThomas67 https:\/\/t.co\/TgtNfOjZhD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JusticeThomas67","name":"ClarenceThomas","id":719495321458446336,"id_str":"719495321458446336","indices":[41,57]}],"urls":[{"url":"https:\/\/t.co\/TgtNfOjZhD","expanded_url":"https:\/\/twitter.com\/AP\/status\/1507539091532959754","display_url":"twitter.com\/AP\/status\/1507\u2026","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507539091532959754,"quoted_status_id_str":"1507539091532959754","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"111212","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495582454530379782\/FgFvrE11_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495582454530379782\/FgFvrE11_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123401283\/1646268306","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305368781951324160,"id_str":"1305368781951324160","name":"MikeInFlorida0813","screen_name":"florida0813","location":"","description":"Fascist - hating resister. #RiseUp","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":350,"friends_count":817,"listed_count":0,"created_at":"Mon - Sep 14 04:52:45 +0000 2020","favourites_count":11823,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2698,"lang":null,"status":{"created_at":"Tue - Jan 12 01:55:32 +0000 2021","id":1348810814178930691,"id_str":"1348810814178930691","text":"@ScaleSilver49 - It\u2019s going to get really ugly","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ScaleSilver49","name":":P - :P :P","id":347355203,"id_str":"347355203","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1348793991983210496,"in_reply_to_status_id_str":"1348793991983210496","in_reply_to_user_id":347355203,"in_reply_to_user_id_str":"347355203","in_reply_to_screen_name":"ScaleSilver49","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1334861238384422912\/AO11mTrv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1334861238384422912\/AO11mTrv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191009919073505280,"id_str":"1191009919073505280","name":"Asad - Maxamed jamac","screen_name":"AsadMaxamed12","location":"","description":"knite","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":188,"listed_count":0,"created_at":"Sun - Nov 03 15:13:24 +0000 2019","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Thu - Nov 19 19:13:54 +0000 2020","id":1329503182154764300,"id_str":"1329503182154764300","text":"@MinisterMOFA - Wad ku sa xantahay arikaaa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MinisterMOFA","name":"Minister - of Foreign Affairs\ud83c\uddf8\ud83c\uddf4","id":3026492272,"id_str":"3026492272","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1329495215913185289,"in_reply_to_status_id_str":"1329495215913185289","in_reply_to_user_id":3026492272,"in_reply_to_user_id_str":"3026492272","in_reply_to_screen_name":"MinisterMOFA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1191010713910829061\/S277fCo__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1191010713910829061\/S277fCo__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191009919073505280\/1602656888","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247893794424418306,"id_str":"1247893794424418306","name":"Sumon - Chandra","screen_name":"SumonCh58302627","location":"Rangpur, Bangladesh ","description":"Professional - Graphics Designer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":376,"friends_count":3723,"listed_count":1,"created_at":"Wed - Apr 08 14:27:38 +0000 2020","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Mon - Oct 18 17:40:06 +0000 2021","id":1450154737819553794,"id_str":"1450154737819553794","text":"RT - @MiaSeppo: Recent attacks on Hindus in\ud83c\udde7\ud83c\udde9 fueled by hate - speech on social media, are against the values of the Constitution and need - to s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MiaSeppo","name":"Mia - Seppo","id":904596571,"id_str":"904596571","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Oct 18 11:38:15 +0000 2021","id":1450063674534621198,"id_str":"1450063674534621198","text":"Recent - attacks on Hindus in\ud83c\udde7\ud83c\udde9 fueled by hate speech on social - media, are against the values of the Constitution and\u2026 https:\/\/t.co\/XAjmm7JFXw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XAjmm7JFXw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1450063674534621198","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3356,"favorite_count":9634,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3356,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351882847099916291\/YbUisWDH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351882847099916291\/YbUisWDH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1247893794424418306\/1597986640","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":884830675081318402,"id_str":"884830675081318402","name":"Kenneth - Lay","screen_name":"KennethLay10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":4985,"listed_count":0,"created_at":"Tue - Jul 11 17:44:07 +0000 2017","favourites_count":6071,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2951475377,"id_str":"2951475377","name":"Rovena - Moneto","screen_name":"seelynngo","location":"Widnes, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":385,"listed_count":0,"created_at":"Tue - Dec 30 17:14:10 +0000 2014","favourites_count":997,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Mon - Feb 14 01:30:06 +0000 2022","id":1493034783710003203,"id_str":"1493034783710003203","text":"Great - halftime show really enjoyed it. #nfl #DrDre #snoop Dogg #MaryJBlige #Eminem - #50cent","truncated":false,"entities":{"hashtags":[{"text":"nfl","indices":[39,43]},{"text":"DrDre","indices":[44,50]},{"text":"snoop","indices":[51,57]},{"text":"MaryJBlige","indices":[63,74]},{"text":"Eminem","indices":[75,82]},{"text":"50cent","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896428005475667971\/tFWiwK14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896428005475667971\/tFWiwK14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2951475377\/1514112106","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266280137198166020,"id_str":"1266280137198166020","name":"Maram - Raslan","screen_name":"maramraslan97","location":"Doha, Qatar","description":"Lost - somewhere between losing my mind and finding my soul. Passionate Translator\/Interpreter.","url":"https:\/\/t.co\/VO1ocP6Uhx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VO1ocP6Uhx","expanded_url":"https:\/\/shiftalt-translation.business.site\/?m=true","display_url":"shiftalt-translation.business.site\/?m=true","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":205,"listed_count":0,"created_at":"Fri - May 29 08:08:19 +0000 2020","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":411,"lang":null,"status":{"created_at":"Mon - Oct 11 06:51:54 +0000 2021","id":1447454898669461507,"id_str":"1447454898669461507","text":"@Mahmoudalaraby_ - Rouhii w entaa b alf 5eir yarab \ud83e\udd0d\ud83e\udd0d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mahmoudalaraby_","name":"alaraby","id":801101084299325441,"id_str":"801101084299325441","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1447450970816925701,"in_reply_to_status_id_str":"1447450970816925701","in_reply_to_user_id":801101084299325441,"in_reply_to_user_id_str":"801101084299325441","in_reply_to_screen_name":"Mahmoudalaraby_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417659479349420036\/BYraumin_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417659479349420036\/BYraumin_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266280137198166020\/1590758548","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36180986,"id_str":"36180986","name":"Luis - Adrian Salazar Sol\u00eds","screen_name":"LAdrianSalazar","location":"Costa - Rica","description":"Consultor Internacional. Profesor. Ex Ministro de Ciencia, - Tecnolog\u00eda y Telecomunicaciones. Costa Rica","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1056,"friends_count":985,"listed_count":6,"created_at":"Tue - Apr 28 20:59:19 +0000 2009","favourites_count":764,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1090,"lang":null,"status":{"created_at":"Sat - Mar 26 02:54:28 +0000 2022","id":1507551531603836933,"id_str":"1507551531603836933","text":"Que - verguenza! Desconocimiento, desidia, irresponsabilidad, ineptitud\u2026 qu\u00e9 - ser\u00e1 ? #5G https:\/\/t.co\/5eoVU5lazp","truncated":false,"entities":{"hashtags":[{"text":"5G","indices":[83,86]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507551526235127814,"id_str":"1507551526235127814","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvmIDHXwAYKAJ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvmIDHXwAYKAJ5.jpg","url":"https:\/\/t.co\/5eoVU5lazp","display_url":"pic.twitter.com\/5eoVU5lazp","expanded_url":"https:\/\/twitter.com\/LAdrianSalazar\/status\/1507551531603836933\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":681,"h":1200,"resize":"fit"},"large":{"w":1162,"h":2048,"resize":"fit"},"small":{"w":386,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507551526235127814,"id_str":"1507551526235127814","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvmIDHXwAYKAJ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvmIDHXwAYKAJ5.jpg","url":"https:\/\/t.co\/5eoVU5lazp","display_url":"pic.twitter.com\/5eoVU5lazp","expanded_url":"https:\/\/twitter.com\/LAdrianSalazar\/status\/1507551531603836933\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":681,"h":1200,"resize":"fit"},"large":{"w":1162,"h":2048,"resize":"fit"},"small":{"w":386,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507497289480294410\/tknvJR_c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507497289480294410\/tknvJR_c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36180986\/1590868638","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":358242514,"id_str":"358242514","name":"John - Braida","screen_name":"JohnBraida","location":"Long","description":"Loan Consultant - | NMLS # 246874","url":"https:\/\/t.co\/ywIDyvZO3D","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ywIDyvZO3D","expanded_url":"https:\/\/www.loandepot.com\/jbraida","display_url":"loandepot.com\/jbraida","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":2734,"listed_count":27,"created_at":"Fri - Aug 19 16:18:01 +0000 2011","favourites_count":195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":702,"lang":null,"status":{"created_at":"Tue - Dec 21 17:25:23 +0000 2021","id":1473343856477229060,"id_str":"1473343856477229060","text":"#freedom - https:\/\/t.co\/SAcG192aO5","truncated":false,"entities":{"hashtags":[{"text":"freedom","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SAcG192aO5","expanded_url":"https:\/\/twitter.com\/RareVicRec\/status\/1473343670774484993","display_url":"twitter.com\/RareVicRec\/sta\u2026","indices":[9,32]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1473343670774484993,"quoted_status_id_str":"1473343670774484993","retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/783414833576157184\/jgdTW7rZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/783414833576157184\/jgdTW7rZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358242514\/1494520394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4128407602,"id_str":"4128407602","name":"Gianluca","screen_name":"calicantus7062","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":343,"listed_count":0,"created_at":"Fri - Nov 06 17:27:57 +0000 2015","favourites_count":77,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505639884375134209\/j2ROLSaL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505639884375134209\/j2ROLSaL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4128407602\/1647807634","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240390641290563585,"id_str":"1240390641290563585","name":"mugan","screen_name":"mugan78950841","location":"","description":"trader - in gikomba","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":430,"listed_count":2,"created_at":"Wed - Mar 18 21:32:47 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Wed - Oct 06 17:03:41 +0000 2021","id":1445796916370059272,"id_str":"1445796916370059272","text":"RT - @historykenya101: THE LARI MASSACRE OF 26th MARCH 1953\n\nThe battle of the - haves and the haves not as it happened in Lari, in the then Ki\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"historykenya101","name":"KENYAN\ud83c\uddf0\ud83c\uddea - HISTORY\ud83c\uddf0\ud83c\uddea","id":1288798368106524672,"id_str":"1288798368106524672","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 06 05:16:12 +0000 2021","id":1445618875899400193,"id_str":"1445618875899400193","text":"THE - LARI MASSACRE OF 26th MARCH 1953\n\nThe battle of the haves and the haves - not as it happened in Lari, in the then\u2026 https:\/\/t.co\/NJZixqy9Rr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NJZixqy9Rr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1445618875899400193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":636,"favorite_count":1099,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":876141028952166401,"id_str":"876141028952166401","name":"Bev - Bungert","screen_name":"BevBungert","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":168,"listed_count":0,"created_at":"Sat - Jun 17 18:14:34 +0000 2017","favourites_count":3393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Mon - Nov 22 20:44:39 +0000 2021","id":1462884756266303493,"id_str":"1462884756266303493","text":"RT - @CBSNews: 58 YEARS AGO TODAY: On this day in 1963, President John F. Kennedy - was assassinated in Dallas.\n\nThis was the moment CBS News a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBSNews","name":"CBS - News","id":15012486,"id_str":"15012486","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 22 15:30:12 +0000 2021","id":1462805622106333190,"id_str":"1462805622106333190","text":"58 - YEARS AGO TODAY: On this day in 1963, President John F. Kennedy was assassinated - in Dallas.\n\nThis was the moment\u2026 https:\/\/t.co\/jzqLIJvQUq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jzqLIJvQUq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1462805622106333190","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1549,"favorite_count":3474,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1549,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/887409945355964416\/A4Y4cvfM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/887409945355964416\/A4Y4cvfM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/876141028952166401\/1500410051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":820739684,"id_str":"820739684","name":"Karen - West","screen_name":"KarenWe63176439","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":1574,"listed_count":0,"created_at":"Thu - Sep 13 02:20:44 +0000 2012","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Aug 21 21:39:24 +0000 2020","id":1296924889492971523,"id_str":"1296924889492971523","text":"RT - @JenaGriswold: I won\u2019t allow @realDonaldTrump to send law enforcement - to polling locations to intimidate voters. This is designed for vo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JenaGriswold","name":"Jena - Griswold","id":351875695,"id_str":"351875695","indices":[3,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Aug 21 16:56:24 +0000 2020","id":1296853672052183041,"id_str":"1296853672052183041","text":"I - won\u2019t allow @realDonaldTrump to send law enforcement to polling locations - to intimidate voters. This is designed\u2026 https:\/\/t.co\/g6hG1BXWmU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[14,30]}],"urls":[{"url":"https:\/\/t.co\/g6hG1BXWmU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1296853672052183041","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14378,"favorite_count":64505,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14378,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296050783440510977,"id_str":"1296050783440510977","name":"Oliver - Mensah","screen_name":"OliverYao9","location":"","description":"French Tutor.\nVery - curious","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":110,"listed_count":1,"created_at":"Wed - Aug 19 11:46:34 +0000 2020","favourites_count":9983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Sun - Feb 06 13:02:39 +0000 2022","id":1490309968553455618,"id_str":"1490309968553455618","text":"Fire - burns all hypocrite in our dear country!!!! https:\/\/t.co\/BcqsmRKgMt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BcqsmRKgMt","expanded_url":"https:\/\/twitter.com\/NewsDaily_24\/status\/1490287890823364610","display_url":"twitter.com\/NewsDaily_24\/s\u2026","indices":[49,72]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1490287890823364610,"quoted_status_id_str":"1490287890823364610","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471427302105964547\/oBC0J49Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471427302105964547\/oBC0J49Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16886311,"id_str":"16886311","name":"Uistean2","screen_name":"Uistean2","location":"Champaign - Illinois","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":186,"listed_count":0,"created_at":"Tue - Oct 21 14:05:56 +0000 2008","favourites_count":549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":211,"lang":null,"status":{"created_at":"Mon - Mar 21 15:49:21 +0000 2022","id":1505934596155793411,"id_str":"1505934596155793411","text":"@newscientist - Clickbait","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newscientist","name":"New - Scientist","id":19658826,"id_str":"19658826","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505924905115787270,"in_reply_to_status_id_str":"1505924905115787270","in_reply_to_user_id":19658826,"in_reply_to_user_id_str":"19658826","in_reply_to_screen_name":"newscientist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344707518\/weeshooie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344707518\/weeshooie_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286937092,"id_str":"1286937092","name":"Spencer - Campbell","screen_name":"SpencerCampbe11","location":"Kigali, Rwanda","description":"\ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\udded\ud83c\uddfa\ud83c\uddec\ud83c\uddf7\ud83c\uddfc\ud83d\udcaf\ud83d\udcaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":318,"listed_count":0,"created_at":"Thu - Mar 21 20:50:17 +0000 2013","favourites_count":12323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Tue - Sep 21 02:03:18 +0000 2021","id":1440134509052190721,"id_str":"1440134509052190721","text":"@Angry_Staffer - Ridiculous take. AOC is pushing hard for the agenda Biden ran on and that - is popular. A few \"moderat\u2026 https:\/\/t.co\/7mLRbWODiv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Angry_Staffer","name":"Angry - Staffer \ud83c\udf3b","id":848148994102611969,"id_str":"848148994102611969","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/7mLRbWODiv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1440134509052190721","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1440049295114211329,"in_reply_to_status_id_str":"1440049295114211329","in_reply_to_user_id":848148994102611969,"in_reply_to_user_id_str":"848148994102611969","in_reply_to_screen_name":"Angry_Staffer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318559337695109121\/N61keqrU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318559337695109121\/N61keqrU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286937092\/1404693192","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1170117734,"id_str":"1170117734","name":"Electoral - Reform Now","screen_name":"AllHisOwnMind","location":"Kansas","description":"Universal - rights: voting; housing; education; healthcare; public safety; equity; equality. - Renewable energy and sustainable policy is the future.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1886,"friends_count":4081,"listed_count":2,"created_at":"Mon - Feb 11 21:45:11 +0000 2013","favourites_count":4967,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2841,"lang":null,"status":{"created_at":"Fri - Mar 25 17:34:03 +0000 2022","id":1507410496718213121,"id_str":"1507410496718213121","text":"@annedeuceofcups - @thomaskaine5 I think you\u2019re right. However, in my limited legal knowledge, - I think it apparent ch\u2026 https:\/\/t.co\/vagyNWeXXg","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"annedeuceofcups","name":"Anne - C \ud83d\udc95 Love is Love \ud83d\udc95 \ud83c\uddfa\ud83c\uddf8","id":583627270,"id_str":"583627270","indices":[0,16]},{"screen_name":"thomaskaine5","name":"Thomas - Kaine","id":860654500431880192,"id_str":"860654500431880192","indices":[17,30]}],"urls":[{"url":"https:\/\/t.co\/vagyNWeXXg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507410496718213121","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507408318867771394,"in_reply_to_status_id_str":"1507408318867771394","in_reply_to_user_id":583627270,"in_reply_to_user_id_str":"583627270","in_reply_to_screen_name":"annedeuceofcups","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400916770395938825\/BasC4J8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400916770395938825\/BasC4J8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170117734\/1595044611","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2436410904,"id_str":"2436410904","name":"Betty Theodore","screen_name":"Beboopb","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":332,"listed_count":0,"created_at":"Thu - Apr 10 03:15:23 +0000 2014","favourites_count":10100,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21505675,"id_str":"21505675","name":"Theresa - Lloy Martin","screen_name":"realtheresalloy","location":"Ottawa, Canada","description":"Born - & raised in Halifax, Nova Scotia. Now resides in Ottawa, Ontario.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":79,"friends_count":354,"listed_count":4,"created_at":"Sat - Feb 21 18:30:18 +0000 2009","favourites_count":132,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":423,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271617452\/n721415627_946466_9961_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271617452\/n721415627_946466_9961_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":39762595,"id_str":"39762595","name":"Joseph - Solinsky","screen_name":"jpsolinsky","location":"Baltimore, Maryland USA","description":"Interested - in people and issues that have an impact on Poland & Polonia.","url":"https:\/\/t.co\/ZgdVHNK1l5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZgdVHNK1l5","expanded_url":"http:\/\/storefixturesandretailequipment.indoff.com","display_url":"\u2026fixturesandretailequipment.indoff.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":25,"friends_count":630,"listed_count":0,"created_at":"Wed - May 13 14:40:41 +0000 2009","favourites_count":75674,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1106515458684055553\/rxhcosVL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1106515458684055553\/rxhcosVL_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083431675881758720,"id_str":"1083431675881758720","name":"Terri - Ryan","screen_name":"TerriRy01649954","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":507,"listed_count":0,"created_at":"Thu - Jan 10 18:33:35 +0000 2019","favourites_count":3761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Mon - Aug 30 19:25:42 +0000 2021","id":1432424305963511814,"id_str":"1432424305963511814","text":"@regrgit8edbliss - Sad too.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"regrgit8edbliss","name":"D - Brad","id":2538006898,"id_str":"2538006898","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1432107245014241281,"in_reply_to_status_id_str":"1432107245014241281","in_reply_to_user_id":2538006898,"in_reply_to_user_id_str":"2538006898","in_reply_to_screen_name":"regrgit8edbliss","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41321388,"id_str":"41321388","name":"Yomi - Olowe","screen_name":"Lifemost","location":"Shanghai","description":"CEO, - Lifemost Int\u2019l Co. Ltd. President, Nigeria Association, East China, & - Nigeria Expat, Shanghai","url":"https:\/\/t.co\/tEeF3aRsgI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tEeF3aRsgI","expanded_url":"http:\/\/www.lifemost.co","display_url":"lifemost.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":807,"listed_count":1,"created_at":"Wed - May 20 08:27:25 +0000 2009","favourites_count":6381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1196,"lang":null,"status":{"created_at":"Mon - Mar 21 17:23:09 +0000 2022","id":1505958202084667394,"id_str":"1505958202084667394","text":"who - and why certain substance and spectacle are good for our country, or those - ignorant will continue to decide who rules Nigeria\/2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505958200205615110,"in_reply_to_status_id_str":"1505958200205615110","in_reply_to_user_id":41321388,"in_reply_to_user_id_str":"41321388","in_reply_to_screen_name":"Lifemost","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210603465820590080\/qBamsK5f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210603465820590080\/qBamsK5f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284567919372857345,"id_str":"1284567919372857345","name":"Cheryl","screen_name":"Cheryl73002611","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":178,"listed_count":0,"created_at":"Sat - Jul 18 19:17:45 +0000 2020","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69,"lang":null,"status":{"created_at":"Tue - Mar 22 00:04:28 +0000 2022","id":1506059195530965004,"id_str":"1506059195530965004","text":"@GeorgeTakei - In a large sewage processing plant!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GeorgeTakei","name":"George - Takei","id":237845487,"id_str":"237845487","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504935424573071360,"in_reply_to_status_id_str":"1504935424573071360","in_reply_to_user_id":237845487,"in_reply_to_user_id_str":"237845487","in_reply_to_screen_name":"GeorgeTakei","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":902360236731666432,"id_str":"902360236731666432","name":"Arlene - Hubbard","screen_name":"hubbpogo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":252,"listed_count":0,"created_at":"Tue - Aug 29 02:40:20 +0000 2017","favourites_count":1532,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Oct 03 20:27:02 +0000 2020","id":1312489356679016448,"id_str":"1312489356679016448","text":"RT - @ProjectLincoln: Retweet if you\u2019re ready to end this and vote for Joe - Biden.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 03 20:10:21 +0000 2020","id":1312485158612680704,"id_str":"1312485158612680704","text":"Retweet - if you\u2019re ready to end this and vote for Joe Biden.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":105599,"favorite_count":228795,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":105599,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1559563334,"id_str":"1559563334","name":"KELLY - LLORENS","screen_name":"KELLYLLORENS","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":442,"listed_count":0,"created_at":"Mon - Jul 01 03:47:14 +0000 2013","favourites_count":125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - Sep 21 21:53:55 +0000 2020","id":1308162568222060545,"id_str":"1308162568222060545","text":"@ScottAdamsSays - Definitely the most uneducated tweet I\u2019ve read all day and not looking - for an answer. Reminds me of someone...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ScottAdamsSays","name":"Scott - Adams","id":2853461537,"id_str":"2853461537","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1308013417219850241,"in_reply_to_status_id_str":"1308013417219850241","in_reply_to_user_id":2853461537,"in_reply_to_user_id_str":"2853461537","in_reply_to_screen_name":"ScottAdamsSays","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507280104964108289\/qYmqVCId_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507280104964108289\/qYmqVCId_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291482412795469824,"id_str":"1291482412795469824","name":"suziedoozan","screen_name":"suziedoozan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":581,"listed_count":0,"created_at":"Thu - Aug 06 21:13:06 +0000 2020","favourites_count":6509,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":338,"lang":null,"status":{"created_at":"Wed - Dec 01 21:49:19 +0000 2021","id":1466162521509961729,"id_str":"1466162521509961729","text":"@timbertilley - Goodness, if there ever were a perfect book written for my son, it''s #Harklights! - We''re both enjoying\u2026 https:\/\/t.co\/3Tw8vgLESh","truncated":true,"entities":{"hashtags":[{"text":"Harklights","indices":[83,94]}],"symbols":[],"user_mentions":[{"screen_name":"timbertilley","name":"Tim - Tilley","id":3304687420,"id_str":"3304687420","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/3Tw8vgLESh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1466162521509961729","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3304687420,"in_reply_to_user_id_str":"3304687420","in_reply_to_screen_name":"timbertilley","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323378687400648705\/zT5Ws0c3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323378687400648705\/zT5Ws0c3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":259997293,"id_str":"259997293","name":"They\u2019re - not booing, they\u2019re chanting Daaaaave.","screen_name":"lateshowrob","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1033,"friends_count":1925,"listed_count":1,"created_at":"Thu - Mar 03 00:48:10 +0000 2011","favourites_count":4779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8049,"lang":null,"status":{"created_at":"Fri - Mar 25 17:53:37 +0000 2022","id":1507415421401518082,"id_str":"1507415421401518082","text":"@LeaderMcConnell - You\u2019re an idiot. That is all.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507092040617762818,"in_reply_to_status_id_str":"1507092040617762818","in_reply_to_user_id":1249982359,"in_reply_to_user_id_str":"1249982359","in_reply_to_screen_name":"LeaderMcConnell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490056538995650562\/UaJl3OKh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490056538995650562\/UaJl3OKh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":70495528,"id_str":"70495528","name":"Grady - Lucas","screen_name":"gradylucas","location":"Lampasas, TX","description":"writer. - philosopher, photographer and zennie.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":316,"listed_count":2,"created_at":"Mon - Aug 31 20:45:00 +0000 2009","favourites_count":205,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8071,"lang":null,"status":{"created_at":"Sun - Feb 13 18:31:01 +0000 2022","id":1492929320700063744,"id_str":"1492929320700063744","text":"RT - @POTUS: The world is watching, but as I\u2019ve said before: It\u2019s never - been a good idea to bet against the American people. We\u2019ve got to pas\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Oct 12 21:41:06 +0000 2021","id":1448041060572094464,"id_str":"1448041060572094464","text":"The - world is watching, but as I\u2019ve said before: It\u2019s never been a good - idea to bet against the American people. We\u2019\u2026 https:\/\/t.co\/2Ay3kBnnmz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2Ay3kBnnmz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1448041060572094464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4640,"favorite_count":29121,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4640,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349107372829122560\/_fEGJyFr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349107372829122560\/_fEGJyFr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70495528\/1602387442","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21447304,"id_str":"21447304","name":"Searust","screen_name":"Searust","location":"Texas, - USA","description":"Botanical photographer, serious hiker, NASCAR fan, rancher, - Texas Master Naturalist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":833,"listed_count":0,"created_at":"Fri - Feb 20 23:45:07 +0000 2009","favourites_count":19387,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4185,"lang":null,"status":{"created_at":"Fri - Mar 25 22:43:15 +0000 2022","id":1507488310272352256,"id_str":"1507488310272352256","text":"RT - @TheBeatWithAri: \"The bottom line is that the public''s confidence in the - Court is being called into question,\" says @renato_mariotti in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheBeatWithAri","name":"The - Beat with Ari Melber on MSNBC \ud83d\udcfa","id":887418059501305858,"id_str":"887418059501305858","indices":[3,18]},{"screen_name":"renato_mariotti","name":"Renato - Mariotti","id":759481842814726144,"id_str":"759481842814726144","indices":[119,135]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:41:41 +0000 2022","id":1507487915257081856,"id_str":"1507487915257081856","text":"\"The - bottom line is that the public''s confidence in the Court is being called - into question,\" says @renato_mariotti\u2026 https:\/\/t.co\/2zMDpvXQtj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"renato_mariotti","name":"Renato - Mariotti","id":759481842814726144,"id_str":"759481842814726144","indices":[99,115]}],"urls":[{"url":"https:\/\/t.co\/2zMDpvXQtj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507487915257081856","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/wildmoka.com\" rel=\"nofollow\"\u003eWildmoka\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":253,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":76,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/116899179\/take-your-pict_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/116899179\/take-your-pict_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21447304\/1409534678","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":314626589,"id_str":"314626589","name":"Susan","screen_name":"sfernlukens","location":"Honolulu","description":"Teacher, - swimmer, gardener...grandmother, daughter, and aunt, wife, mother and priest - in the Episcopal church","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":447,"listed_count":3,"created_at":"Fri - Jun 10 15:16:47 +0000 2011","favourites_count":1221,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":568,"lang":null,"status":{"created_at":"Mon - Mar 21 23:43:35 +0000 2022","id":1506053941288652804,"id_str":"1506053941288652804","text":"@malcolmguite - @VTS_Seminary does this mean our Dean is writing poetry too?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"malcolmguite","name":"Malcolm - Guite","id":116777811,"id_str":"116777811","indices":[0,13]},{"screen_name":"VTS_Seminary","name":"Virginia - Theological Seminary","id":15368855,"id_str":"15368855","indices":[14,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505652176609234944,"in_reply_to_status_id_str":"1505652176609234944","in_reply_to_user_id":116777811,"in_reply_to_user_id_str":"116777811","in_reply_to_screen_name":"malcolmguite","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2730065046\/5f396cfd849d7cf48362308007d42bcb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2730065046\/5f396cfd849d7cf48362308007d42bcb_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313942378948952065,"id_str":"1313942378948952065","name":"Cheryl - Watts Kalleck \ud83c\udf0a\ud83c\uddfa\ud83c\uddf8Team Pelosi","screen_name":"KalleckCher","location":"Hillsboro, - OR","description":"This is my second account. \nTwitter closed my first account - due to a hack.\nOriginal account started 2014.\nHere to support the Democratic - party. \n#Resistance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3106,"friends_count":4898,"listed_count":1,"created_at":"Wed - Oct 07 20:41:17 +0000 2020","favourites_count":192251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129369,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:37 +0000 2022","id":1507559116448751618,"id_str":"1507559116448751618","text":"RT - @NC5PhilWilliams: Video of Rep. @JasonAHodgesTN\u2019s \u201cwelcome to the - FBI.\u201d https:\/\/t.co\/OmRnz4Fyt1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NC5PhilWilliams","name":"Phil - Williams","id":180094762,"id_str":"180094762","indices":[3,19]},{"screen_name":"JasonAHodgesTN","name":"Jason - Hodges","id":932411114373111808,"id_str":"932411114373111808","indices":[35,50]}],"urls":[],"media":[{"id":1507095380646842382,"id_str":"1507095380646842382","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","url":"https:\/\/t.co\/OmRnz4Fyt1","display_url":"pic.twitter.com\/OmRnz4Fyt1","expanded_url":"https:\/\/twitter.com\/NC5PhilWilliams\/status\/1507095414100709382\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1507095414100709382,"source_status_id_str":"1507095414100709382","source_user_id":180094762,"source_user_id_str":"180094762"}]},"extended_entities":{"media":[{"id":1507095380646842382,"id_str":"1507095380646842382","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","url":"https:\/\/t.co\/OmRnz4Fyt1","display_url":"pic.twitter.com\/OmRnz4Fyt1","expanded_url":"https:\/\/twitter.com\/NC5PhilWilliams\/status\/1507095414100709382\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"source_status_id":1507095414100709382,"source_status_id_str":"1507095414100709382","source_user_id":180094762,"source_user_id_str":"180094762","video_info":{"aspect_ratio":[80,37],"duration_millis":14980,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/pl\/qQdQmWtTL4wsP_UI.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/582x270\/U64PJGR7c9CNaUw4.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/778x360\/dscK0byBZBS77hgi.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/1280x592\/vXKWFTn28iTOq0wz.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:42:01 +0000 2022","id":1507095414100709382,"id_str":"1507095414100709382","text":"Video - of Rep. @JasonAHodgesTN\u2019s \u201cwelcome to the FBI.\u201d https:\/\/t.co\/OmRnz4Fyt1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JasonAHodgesTN","name":"Jason - Hodges","id":932411114373111808,"id_str":"932411114373111808","indices":[14,29]}],"urls":[],"media":[{"id":1507095380646842382,"id_str":"1507095380646842382","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","url":"https:\/\/t.co\/OmRnz4Fyt1","display_url":"pic.twitter.com\/OmRnz4Fyt1","expanded_url":"https:\/\/twitter.com\/NC5PhilWilliams\/status\/1507095414100709382\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507095380646842382,"id_str":"1507095380646842382","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507095380646842382\/pu\/img\/sQ_P6LGcCgdUOTKS.jpg","url":"https:\/\/t.co\/OmRnz4Fyt1","display_url":"pic.twitter.com\/OmRnz4Fyt1","expanded_url":"https:\/\/twitter.com\/NC5PhilWilliams\/status\/1507095414100709382\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":555,"resize":"fit"},"small":{"w":680,"h":315,"resize":"fit"},"large":{"w":1280,"h":592,"resize":"fit"}},"video_info":{"aspect_ratio":[80,37],"duration_millis":14980,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/pl\/qQdQmWtTL4wsP_UI.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/582x270\/U64PJGR7c9CNaUw4.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/778x360\/dscK0byBZBS77hgi.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507095380646842382\/pu\/vid\/1280x592\/vXKWFTn28iTOq0wz.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507005409361420291,"in_reply_to_status_id_str":"1507005409361420291","in_reply_to_user_id":180094762,"in_reply_to_user_id_str":"180094762","in_reply_to_screen_name":"NC5PhilWilliams","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":840,"favorite_count":4074,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":840,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383477642918174725\/FttgQ4QU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383477642918174725\/FttgQ4QU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1313942378948952065\/1602103703","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298300838650109952,"id_str":"1298300838650109952","name":"barnett - sturm","screen_name":"SturmBarnett","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":175,"listed_count":0,"created_at":"Tue - Aug 25 16:47:12 +0000 2020","favourites_count":6787,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":null,"status":{"created_at":"Sun - Dec 13 12:09:05 +0000 2020","id":1338093582742245376,"id_str":"1338093582742245376","text":"@RonGOPVet4Biden - He\u2019s a charlatan, but his followers are fools.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1338091827619098625,"in_reply_to_status_id_str":"1338091827619098625","in_reply_to_user_id":1298372735383605249,"in_reply_to_user_id_str":"1298372735383605249","in_reply_to_screen_name":"RonFilipkowski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86209166,"id_str":"86209166","name":"Ron - Sanders","screen_name":"rjsandersla","location":"Los Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":1624,"listed_count":0,"created_at":"Fri - Oct 30 01:09:27 +0000 2009","favourites_count":184,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288985517296693251,"id_str":"1288985517296693251","name":"Dr - Abdiye","screen_name":"abdiye75727024","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":2777,"listed_count":0,"created_at":"Thu - Jul 30 23:51:31 +0000 2020","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":208,"lang":null,"status":{"created_at":"Mon - Feb 22 10:34:21 +0000 2021","id":1363799282139222018,"id_str":"1363799282139222018","text":"RT - @fanatelevision: #Ethiopia: PM calls upon all sections of society to contribute - to #RebuildTigray solidarity initiative https:\/\/t.co\/rsS\u2026","truncated":false,"entities":{"hashtags":[{"text":"Ethiopia","indices":[20,29]},{"text":"RebuildTigray","indices":[86,100]}],"symbols":[],"user_mentions":[{"screen_name":"fanatelevision","name":"FBC - (Fana Broadcasting Corporate S.C.)","id":779821454,"id_str":"779821454","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 18 16:27:20 +0000 2021","id":1362438562961104897,"id_str":"1362438562961104897","text":"#Ethiopia: - PM calls upon all sections of society to contribute to #RebuildTigray solidarity - initiative\u2026 https:\/\/t.co\/zsnzkBhv41","truncated":true,"entities":{"hashtags":[{"text":"Ethiopia","indices":[0,9]},{"text":"RebuildTigray","indices":[66,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zsnzkBhv41","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1362438562961104897","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":91,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300361444467367936\/C2i5auar_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300361444467367936\/C2i5auar_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1288985517296693251\/1596158227","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":374969477,"id_str":"374969477","name":"Ali","screen_name":"alinetheequeen","location":"Los - Angeles, CA","description":"retweets are endorsements \u270c\ufe0f film marketing - nerd by day + @METBU grad student by night - i''m a daughter of refugees and - i''m here to promote progress","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":207,"friends_count":2204,"listed_count":6,"created_at":"Sat - Sep 17 08:31:39 +0000 2011","favourites_count":49252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6017,"lang":null,"status":{"created_at":"Fri - Mar 25 19:43:32 +0000 2022","id":1507443082765078530,"id_str":"1507443082765078530","text":"RT - @LolOverruled: this is why I never trust those couple accounts https:\/\/t.co\/DFFrJkPhZa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LolOverruled","name":"Alex - Peter","id":213427681,"id_str":"213427681","indices":[3,16]}],"urls":[],"media":[{"id":1507397161218105344,"id_str":"1507397161218105344","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":563,"h":680,"resize":"fit"},"large":{"w":1125,"h":1359,"resize":"fit"},"medium":{"w":993,"h":1200,"resize":"fit"}},"source_status_id":1507397166410579971,"source_status_id_str":"1507397166410579971","source_user_id":213427681,"source_user_id_str":"213427681"}]},"extended_entities":{"media":[{"id":1507397161218105344,"id_str":"1507397161218105344","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":563,"h":680,"resize":"fit"},"large":{"w":1125,"h":1359,"resize":"fit"},"medium":{"w":993,"h":1200,"resize":"fit"}},"source_status_id":1507397166410579971,"source_status_id_str":"1507397166410579971","source_user_id":213427681,"source_user_id_str":"213427681"},{"id":1507397161222352897,"id_str":"1507397161222352897","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0oXMAEsVRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0oXMAEsVRf.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":628,"h":680,"resize":"fit"},"medium":{"w":887,"h":961,"resize":"fit"},"large":{"w":887,"h":961,"resize":"fit"}},"source_status_id":1507397166410579971,"source_status_id_str":"1507397166410579971","source_user_id":213427681,"source_user_id_str":"213427681"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:41:05 +0000 2022","id":1507397166410579971,"id_str":"1507397166410579971","text":"this - is why I never trust those couple accounts https:\/\/t.co\/DFFrJkPhZa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507397161218105344,"id_str":"1507397161218105344","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":563,"h":680,"resize":"fit"},"large":{"w":1125,"h":1359,"resize":"fit"},"medium":{"w":993,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507397161218105344,"id_str":"1507397161218105344","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0nWYAAXeOo.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":563,"h":680,"resize":"fit"},"large":{"w":1125,"h":1359,"resize":"fit"},"medium":{"w":993,"h":1200,"resize":"fit"}}},{"id":1507397161222352897,"id_str":"1507397161222352897","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtZu0oXMAEsVRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtZu0oXMAEsVRf.jpg","url":"https:\/\/t.co\/DFFrJkPhZa","display_url":"pic.twitter.com\/DFFrJkPhZa","expanded_url":"https:\/\/twitter.com\/LolOverruled\/status\/1507397166410579971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":628,"h":680,"resize":"fit"},"medium":{"w":887,"h":961,"resize":"fit"},"large":{"w":887,"h":961,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":534,"favorite_count":11979,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":534,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501817992530726916\/K5-cH2h5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501817992530726916\/K5-cH2h5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374969477\/1441254605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4775190263,"id_str":"4775190263","name":"Ayebi - Eric Nketia.","screen_name":"MrAyebi","location":"Greater Accra, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":156,"listed_count":0,"created_at":"Mon - Jan 11 15:02:15 +0000 2016","favourites_count":424,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Tue - Feb 15 13:23:03 +0000 2022","id":1493576590894239744,"id_str":"1493576590894239744","text":"Always - choose kindness, even in the midst of cruelty.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1434506645489569792\/yQ_pnNWc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1434506645489569792\/yQ_pnNWc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4775190263\/1630848053","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292518022,"id_str":"1292518022","name":"Josh - Haynes","screen_name":"JoshHaynes81","location":"Lubbock, TX","description":"A - husband and parent. \u201cWe must learn to regard people less in the light - of what they do or omit to do, and more in the light of what they suffer.\u201d - - Bonhoeffer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":849,"listed_count":0,"created_at":"Sat - Mar 23 21:19:01 +0000 2013","favourites_count":3528,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":290,"lang":null,"status":{"created_at":"Tue - Nov 16 00:24:56 +0000 2021","id":1460403476391993350,"id_str":"1460403476391993350","text":"Been - thinking about this quite a lot. By \u201cstupid,\u201d Bonhoeffer means those - who are unwilling to think critically, op\u2026 https:\/\/t.co\/eZ9aVa83VH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eZ9aVa83VH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1460403476391993350","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439435005932015618\/UlMk1PHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439435005932015618\/UlMk1PHs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1292518022\/1632023024","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20701834,"id_str":"20701834","name":"Mandy - Palmer","screen_name":"Mandolin77","location":"United Kingdom","description":"Am - South African originally, live in the U.K. with my husband, guide dog and - 2 cats. Love books, current affairs, news and nosey about everything.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":350,"friends_count":3278,"listed_count":2,"created_at":"Thu - Feb 12 18:41:28 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":423,"lang":null,"status":{"created_at":"Wed - Mar 09 15:29:31 +0000 2022","id":1501580952153505792,"id_str":"1501580952153505792","text":"RT - @AfricaFactsZone: South Africa''s former President Zuma has declared his support - for Russia''s President Putin in the ongoing war against\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AfricaFactsZone","name":"Africa - Facts Zone","id":129009730,"id_str":"129009730","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 15:25:35 +0000 2022","id":1501579961366364161,"id_str":"1501579961366364161","text":"South - Africa''s former President Zuma has declared his support for Russia''s President - Putin in the ongoing war again\u2026 https:\/\/t.co\/Ny9ZxIfIVv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ny9ZxIfIVv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501579961366364161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":991,"favorite_count":4677,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":991,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":780810005637312512,"id_str":"780810005637312512","name":"Souheila, - wehbe","screen_name":"souheila_wehbe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":193,"listed_count":0,"created_at":"Tue - Sep 27 16:43:06 +0000 2016","favourites_count":23614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62,"lang":null,"status":{"created_at":"Sun - Feb 13 05:15:10 +0000 2022","id":1492729036891734023,"id_str":"1492729036891734023","text":"@wisereconomy - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wisereconomy","name":"Only - Jesus","id":2962620905,"id_str":"2962620905","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1491829243868766218,"in_reply_to_status_id_str":"1491829243868766218","in_reply_to_user_id":2962620905,"in_reply_to_user_id_str":"2962620905","in_reply_to_screen_name":"wisereconomy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18298063,"id_str":"18298063","name":"CLE - Biker","screen_name":"clebiker","location":"Cleveland, Ohio, USA","description":"All - about bikes, beer, family, and the Oxford comma (not necessarily in that order). - Avid outdoorsman and political junkie.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":860,"listed_count":2,"created_at":"Mon - Dec 22 02:07:17 +0000 2008","favourites_count":11726,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3950,"lang":null,"status":{"created_at":"Fri - Mar 25 23:54:19 +0000 2022","id":1507506195111813120,"id_str":"1507506195111813120","text":"Mash - Madness bourbon tasting night. https:\/\/t.co\/p6EegRUMes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507506158017392648,"id_str":"1507506158017392648","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu83RVXMAgEW4E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu83RVXMAgEW4E.jpg","url":"https:\/\/t.co\/p6EegRUMes","display_url":"pic.twitter.com\/p6EegRUMes","expanded_url":"https:\/\/twitter.com\/clebiker\/status\/1507506195111813120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2016,"h":1512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507506158017392648,"id_str":"1507506158017392648","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu83RVXMAgEW4E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu83RVXMAgEW4E.jpg","url":"https:\/\/t.co\/p6EegRUMes","display_url":"pic.twitter.com\/p6EegRUMes","expanded_url":"https:\/\/twitter.com\/clebiker\/status\/1507506195111813120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2016,"h":1512,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391119439769260034\/6MJ_AvPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391119439769260034\/6MJ_AvPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18298063\/1531942376","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":893122511906406400,"id_str":"893122511906406400","name":"Evelyn - glugosh","screen_name":"EGlugosh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":383,"friends_count":1139,"listed_count":0,"created_at":"Thu - Aug 03 14:52:55 +0000 2017","favourites_count":53262,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":890,"lang":null,"status":{"created_at":"Fri - Mar 25 22:21:08 +0000 2022","id":1507482745924165634,"id_str":"1507482745924165634","text":"Heroic - Guards Who Famously Told Russia to \u2018Go F*ck Yourself\u2019 Are Freed - https:\/\/t.co\/VmGSL4oHXI via @thedailybeast","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thedailybeast","name":"The - Daily Beast","id":16012783,"id_str":"16012783","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/VmGSL4oHXI","expanded_url":"https:\/\/www.thedailybeast.com\/guards-who-famously-told-russia-to-go-fck-yourself-from-snake-island-ukraine-outpost-are-free?source=twitter&via=desktop","display_url":"thedailybeast.com\/guards-who-fam\u2026","indices":[71,94]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1030099125382012928\/WYLkYR-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1030099125382012928\/WYLkYR-N_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":506550549,"id_str":"506550549","name":"Freddy","screen_name":"freddymf19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":443,"listed_count":0,"created_at":"Mon - Feb 27 23:18:34 +0000 2012","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":731838326,"id_str":"731838326","name":"francine - wasserman","screen_name":"frannie560","location":"brooklyn,n.y.","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":309,"friends_count":1502,"listed_count":0,"created_at":"Thu - Aug 02 01:08:04 +0000 2012","favourites_count":213795,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1240,"lang":null,"status":{"created_at":"Thu - Mar 24 22:30:34 +0000 2022","id":1507122730264629253,"id_str":"1507122730264629253","text":"I - reached a lifetime climb of 8,000 floors and earned the Cloud badge today - with Fitbit! https:\/\/t.co\/oK5KebAaSV #Fitstats","truncated":false,"entities":{"hashtags":[{"text":"Fitstats","indices":[113,122]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oK5KebAaSV","expanded_url":"https:\/\/www.fitbit.com\/user\/7S6MVS","display_url":"fitbit.com\/user\/7S6MVS","indices":[89,112]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1450295069978804227\/0b-Ippzm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1450295069978804227\/0b-Ippzm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731838326\/1634612265","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27875812,"id_str":"27875812","name":"Julie - Phillips","screen_name":"chaota","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":480,"listed_count":1,"created_at":"Tue - Mar 31 14:04:47 +0000 2009","favourites_count":12870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3894,"lang":null,"status":{"created_at":"Fri - Mar 25 22:07:32 +0000 2022","id":1507479320025083907,"id_str":"1507479320025083907","text":"RT - @OccupyDemocrats: BREAKING NEWS: Georgia voters file a lawsuit to block Trumper - Congresswoman Marjorie Taylor Green from running reelect\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:24:46 +0000 2022","id":1507181668989349896,"id_str":"1507181668989349896","text":"BREAKING - NEWS: Georgia voters file a lawsuit to block Trumper Congresswoman Marjorie - Taylor Green from running reel\u2026 https:\/\/t.co\/4IOaQ2uj7F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4IOaQ2uj7F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507181668989349896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16216,"favorite_count":51473,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16216,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/116927323\/Julie_Fox_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/116927323\/Julie_Fox_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":236579381,"id_str":"236579381","name":"Andy - Park","screen_name":"andyparkwv","location":"Charleston WV","description":"I''m - a guitar player and a songwriter. I\u2019m looking for a way to get off the - grid.","url":"https:\/\/t.co\/eXYCZigO3B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eXYCZigO3B","expanded_url":"http:\/\/www.andyparkwv.com","display_url":"andyparkwv.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":440,"friends_count":1413,"listed_count":3,"created_at":"Mon - Jan 10 22:37:49 +0000 2011","favourites_count":20816,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8210,"lang":null,"status":{"created_at":"Tue - Mar 22 18:37:47 +0000 2022","id":1506339370755837967,"id_str":"1506339370755837967","text":"@PhilKabler - I think there may be more homicides in Mason County than Charleston this year. - Nonetheless there is a r\u2026 https:\/\/t.co\/Z7gr4Ysx9K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhilKabler","name":"Phil - Kabler","id":1221959101,"id_str":"1221959101","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/Z7gr4Ysx9K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506339370755837967","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506070163673829382,"in_reply_to_status_id_str":"1506070163673829382","in_reply_to_user_id":1221959101,"in_reply_to_user_id_str":"1221959101","in_reply_to_screen_name":"PhilKabler","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303755318\/TrueLove-Andy_Park_master_small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303755318\/TrueLove-Andy_Park_master_small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2864628861,"id_str":"2864628861","name":"Joni - Tickel","screen_name":"tickeljoni","location":"","description":"No profile, - just gratitude to StaceyAbrams for giving Dems a template for future success. - Kinda liking magnolias these days","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":1182,"listed_count":1,"created_at":"Thu - Nov 06 22:34:12 +0000 2014","favourites_count":39305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49439,"lang":null,"status":{"created_at":"Fri - Mar 25 22:30:57 +0000 2022","id":1507485215895269381,"id_str":"1507485215895269381","text":"RT - @tickeljoni: Legal Scholars Are Shocked By Ginni Thomas\u2019s \u201cStop - the Steal\u201d Texts https:\/\/t.co\/hiY1jjdBpw via @NewYorker","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tickeljoni","name":"Joni - Tickel","id":2864628861,"id_str":"2864628861","indices":[3,14]},{"screen_name":"NewYorker","name":"The - New Yorker","id":14677919,"id_str":"14677919","indices":[112,122]}],"urls":[{"url":"https:\/\/t.co\/hiY1jjdBpw","expanded_url":"https:\/\/www.newyorker.com\/news\/news-desk\/legal-scholars-are-shocked-by-ginni-thomass-stop-the-steal-texts?utm_source=twitter&utm_medium=social&utm_campaign=onsite-share&utm_brand=the-new-yorker&utm_social-type=earned","display_url":"newyorker.com\/news\/news-desk\u2026","indices":[84,107]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:16:24 +0000 2022","id":1507481553357713409,"id_str":"1507481553357713409","text":"Legal - Scholars Are Shocked By Ginni Thomas\u2019s \u201cStop the Steal\u201d Texts - https:\/\/t.co\/hiY1jjdBpw via @NewYorker","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NewYorker","name":"The - New Yorker","id":14677919,"id_str":"14677919","indices":[96,106]}],"urls":[{"url":"https:\/\/t.co\/hiY1jjdBpw","expanded_url":"https:\/\/www.newyorker.com\/news\/news-desk\/legal-scholars-are-shocked-by-ginni-thomass-stop-the-steal-texts?utm_source=twitter&utm_medium=social&utm_campaign=onsite-share&utm_brand=the-new-yorker&utm_social-type=earned","display_url":"newyorker.com\/news\/news-desk\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205411337863671808,"id_str":"1205411337863671808","name":"Tobirama","screen_name":"rem_mario","location":"Milkway - ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":350,"friends_count":545,"listed_count":0,"created_at":"Fri - Dec 13 08:57:21 +0000 2019","favourites_count":5711,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3575,"lang":null,"status":{"created_at":"Sat - Mar 26 09:58:41 +0000 2022","id":1507658287365373956,"id_str":"1507658287365373956","text":"Rwandans - when it comes to drinking https:\/\/t.co\/565B2XuqxC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507658279169765385,"id_str":"1507658279169765385","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxHN4yXMAkUCUF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxHN4yXMAkUCUF.jpg","url":"https:\/\/t.co\/565B2XuqxC","display_url":"pic.twitter.com\/565B2XuqxC","expanded_url":"https:\/\/twitter.com\/rem_mario\/status\/1507658287365373956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":649,"h":476,"resize":"fit"},"medium":{"w":649,"h":476,"resize":"fit"},"large":{"w":649,"h":476,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507658279169765385,"id_str":"1507658279169765385","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOxHN4yXMAkUCUF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOxHN4yXMAkUCUF.jpg","url":"https:\/\/t.co\/565B2XuqxC","display_url":"pic.twitter.com\/565B2XuqxC","expanded_url":"https:\/\/twitter.com\/rem_mario\/status\/1507658287365373956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":649,"h":476,"resize":"fit"},"medium":{"w":649,"h":476,"resize":"fit"},"large":{"w":649,"h":476,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495138955779530756\/qpVU7-VZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495138955779530756\/qpVU7-VZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205411337863671808\/1598909810","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":955404331959898113,"id_str":"955404331959898113","name":"GhattasSaied","screen_name":"saied_ghattas","location":"Cairo, - Egypt","description":"Specializing in teaching Mathematics and Physics, American, - IGCSE ,SABIS ( The international certificate of Choueifat ) & National departments, - All grades","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":1886,"listed_count":0,"created_at":"Mon - Jan 22 11:38:38 +0000 2018","favourites_count":43400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":481,"lang":null,"status":{"created_at":"Mon - Aug 30 08:43:50 +0000 2021","id":1432262773900197889,"id_str":"1432262773900197889","text":"@CherieDeVille - Highly distinguished and upmost pretty pussy , love it so oooooooooooo much","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CherieDeVille","name":"Cherie - DeVille","id":383481517,"id_str":"383481517","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1424394453385506824,"in_reply_to_status_id_str":"1424394453385506824","in_reply_to_user_id":383481517,"in_reply_to_user_id_str":"383481517","in_reply_to_screen_name":"CherieDeVille","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245754628790247425\/xw8GFkV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245754628790247425\/xw8GFkV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955404331959898113\/1585935467","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":730099934,"id_str":"730099934","name":"Hababy","screen_name":"Ozzram24","location":"","description":"I - don''t take responsibility at all.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":917,"listed_count":3,"created_at":"Wed - Aug 01 06:09:20 +0000 2012","favourites_count":29850,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5213,"lang":null,"status":{"created_at":"Sat - Mar 26 00:15:38 +0000 2022","id":1507511560591200264,"id_str":"1507511560591200264","text":"@jesflres - Me.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/706360239621169153\/FrytGgdM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/706360239621169153\/FrytGgdM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/730099934\/1457244380","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":708663337811193856,"id_str":"708663337811193856","name":"Catherine - Delaney Dietrich Goodwillie","screen_name":"cathgoodwillie","location":"","description":"#RESIST - #BLM #METOO #SheHerMomWifeDaughterSister #CSASurvivor #MentalHealthAdvocate - #LightLoveTruthResistPersist #DivineFeminine #AquariusRising #TruthTeller","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2102,"friends_count":4439,"listed_count":0,"created_at":"Sat - Mar 12 14:38:00 +0000 2016","favourites_count":11113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11440,"lang":null,"status":{"created_at":"Sat - Mar 26 03:15:49 +0000 2022","id":1507556902879862789,"id_str":"1507556902879862789","text":"More - than anything https:\/\/t.co\/I3BIzPx5F2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I3BIzPx5F2","expanded_url":"https:\/\/twitter.com\/congressmancow1\/status\/1507536968686575616","display_url":"twitter.com\/congressmancow\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507536968686575616,"quoted_status_id_str":"1507536968686575616","retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/708870591944654849\/4BHiSWKv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/708870591944654849\/4BHiSWKv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":420242210,"id_str":"420242210","name":"firefighter","screen_name":"wecareforlife","location":"Andheri - West, Mumbai","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":351,"friends_count":4860,"listed_count":0,"created_at":"Thu - Nov 24 11:07:55 +0000 2011","favourites_count":3437,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":405,"lang":null,"status":{"created_at":"Sat - Mar 26 08:42:48 +0000 2022","id":1507639192645365762,"id_str":"1507639192645365762","text":"@aditi2118 - @Uber @Uber_Support Most cabs nowadays have very weak a\/c ..even at full - ..fun fact","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aditi2118","name":"Aditi - Singh","id":46871828,"id_str":"46871828","indices":[0,10]},{"screen_name":"Uber","name":"Uber","id":19103481,"id_str":"19103481","indices":[11,16]},{"screen_name":"Uber_Support","name":"Uber - Support","id":2815754953,"id_str":"2815754953","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507334748125171712,"in_reply_to_status_id_str":"1507334748125171712","in_reply_to_user_id":46871828,"in_reply_to_user_id_str":"46871828","in_reply_to_screen_name":"aditi2118","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242946901416108032\/CqpF6Y9l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242946901416108032\/CqpF6Y9l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/420242210\/1585176750","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":597950068,"id_str":"597950068","name":"paige - shimer","screen_name":"paigeshimer","location":"Denver, CO","description":"I - don\u2019t have time for therapy today, I have to marinate this chicken","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1020,"friends_count":670,"listed_count":7,"created_at":"Sun - Jun 03 02:42:34 +0000 2012","favourites_count":119057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20073,"lang":null,"status":{"created_at":"Wed - Mar 23 05:27:07 +0000 2022","id":1506502783725408256,"id_str":"1506502783725408256","text":"crazy - bc I\u2019m taking Econ at a community college rn and just read about them - yesterday, maybe you should get your mo\u2026 https:\/\/t.co\/PwlmMs5z6T","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PwlmMs5z6T","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506502783725408256","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506328079685365764,"quoted_status_id_str":"1506328079685365764","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477750804362797057\/rSAWRWKF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477750804362797057\/rSAWRWKF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/597950068\/1641158256","profile_link_color":"7FDBB6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C49E3D","profile_text_color":"F2CD7F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":767147299202097156,"id_str":"767147299202097156","name":"Dr. - Janice Jordan","screen_name":"DrJaniceJordan1","location":"North Carolina, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":679,"listed_count":0,"created_at":"Sat - Aug 20 23:52:23 +0000 2016","favourites_count":25619,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - Dec 22 22:33:14 +0000 2018","id":1076606616353558528,"id_str":"1076606616353558528","text":"@RevDrBarber - You and your brother are in my prayers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RevDrBarber","name":"Rev. - Dr. William J. Barber II","id":2400284491,"id_str":"2400284491","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1076577658320896002,"in_reply_to_status_id_str":"1076577658320896002","in_reply_to_user_id":2400284491,"in_reply_to_user_id_str":"2400284491","in_reply_to_screen_name":"RevDrBarber","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825779495638560772\/RhGDtVAB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825779495638560772\/RhGDtVAB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":349539404,"id_str":"349539404","name":"laceyalice","screen_name":"laceyaz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":465,"listed_count":0,"created_at":"Sat - Aug 06 07:53:05 +0000 2011","favourites_count":6402,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"status":{"created_at":"Fri - Mar 25 05:04:26 +0000 2022","id":1507221850086027265,"id_str":"1507221850086027265","text":"RT - @harrisonjaime: Highly unlikely Justice Thomas was unaware of his wife\u2019s - activities to overturn the election. \n\nIf he was aware & didn\u2019t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"harrisonjaime","name":"Jaime - Harrison, DNC Chair","id":73754019,"id_str":"73754019","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:11:09 +0000 2022","id":1507193341561253888,"id_str":"1507193341561253888","text":"Highly - unlikely Justice Thomas was unaware of his wife\u2019s activities to overturn - the election. \n\nIf he was aware & d\u2026 https:\/\/t.co\/EiuPwhYIEC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EiuPwhYIEC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507193341561253888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":3404,"favorite_count":11558,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":3404,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2863586125\/7f79b36fb24a16824f7e1cc537b7d5d3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2863586125\/7f79b36fb24a16824f7e1cc537b7d5d3_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":116808688,"id_str":"116808688","name":"Meltem - G\u00fcne\u015f Ert\u00fcrk","screen_name":"mel_iko","location":"istanbul","description":"huzursuz - ikizler,Avukat,","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":87,"friends_count":1162,"listed_count":0,"created_at":"Tue - Feb 23 16:50:59 +0000 2010","favourites_count":28123,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2718,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492240159370354695\/zICME3Tf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492240159370354695\/zICME3Tf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116808688\/1644612962","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226457582363082754,"id_str":"1226457582363082754","name":"Hungry - muhima\ud83d\ude12","screen_name":"KatushabeCath10","location":"msd ug\ud83c\uddfa\ud83c\uddec\ud83c\uddfa\ud83c\uddec\ud83c\uddfa\ud83c\uddec","description":"being - happy all the time\n\nfollowing me won''t do you bad\ud83d\ude04","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2178,"friends_count":2944,"listed_count":0,"created_at":"Sun - Feb 09 10:48:29 +0000 2020","favourites_count":14563,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4503,"lang":null,"status":{"created_at":"Mon - Feb 28 11:53:19 +0000 2022","id":1498265050456510465,"id_str":"1498265050456510465","text":"RT - @misterboldwood: I think single moms with only one child live their best lives, - no marriage restrictions, they party whenever they want\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"misterboldwood","name":"Boo - Of The Booless","id":421077092,"id_str":"421077092","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 10:44:58 +0000 2022","id":1498247852954378242,"id_str":"1498247852954378242","text":"I - think single moms with only one child live their best lives, no marriage restrictions, - they party whenever they w\u2026 https:\/\/t.co\/ogiF88FrrN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ogiF88FrrN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498247852954378242","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":60,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370775162338091009\/867ITP6R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370775162338091009\/867ITP6R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226457582363082754\/1617299238","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1961401596,"id_str":"1961401596","name":"Don - Marsh","screen_name":"dwmarsh2","location":"St Louis, MO","description":"Retired - broadcast journalist and author","url":"https:\/\/t.co\/zompKQDDeG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zompKQDDeG","expanded_url":"http:\/\/donmarshwriter.webs.com\/","display_url":"donmarshwriter.webs.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":855,"friends_count":484,"listed_count":17,"created_at":"Mon - Oct 14 22:39:13 +0000 2013","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1415,"lang":null,"status":{"created_at":"Fri - Mar 04 18:02:23 +0000 2022","id":1499807480163049473,"id_str":"1499807480163049473","text":"I - always enjoy being on the air with McGraw Milhaven and Kelly Jackson on KTRS - in St Louis. Here''s how it went this\u2026 https:\/\/t.co\/3AbjMuytp7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3AbjMuytp7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499807480163049473","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634369508845588481\/QQYZGgo6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634369508845588481\/QQYZGgo6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1961401596\/1440080788","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":359657225,"id_str":"359657225","name":"Patrick - Ashton","screen_name":"PGANOLA","location":"New Orleans","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":224,"listed_count":0,"created_at":"Sun - Aug 21 23:41:29 +0000 2011","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Wed - Nov 04 13:36:30 +0000 2020","id":1323982456136097793,"id_str":"1323982456136097793","text":"RT - @pbump: A reminder that returns coming in are not showing swings in the results - like alternating touchdowns in a football. It''s like tel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pbump","name":"Philip - Bump","id":950531,"id_str":"950531","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 03 23:40:59 +0000 2020","id":1323772190643408896,"id_str":"1323772190643408896","text":"A - reminder that returns coming in are not showing swings in the results like - alternating touchdowns in a football.\u2026 https:\/\/t.co\/0oykfveS3v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0oykfveS3v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1323772190643408896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":315,"favorite_count":1752,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":315,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1550358034\/100_0443_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1550358034\/100_0443_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262373337642274816,"id_str":"1262373337642274816","name":"Ingemar51","screen_name":"Ingemar512","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":12,"listed_count":0,"created_at":"Mon - May 18 13:24:18 +0000 2020","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3147257813,"id_str":"3147257813","name":"Vijay - K S","screen_name":"vijaytimes","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":886,"listed_count":0,"created_at":"Wed - Apr 08 08:40:18 +0000 2015","favourites_count":1324,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Feb 11 08:03:05 +0000 2021","id":1359774948563120130,"id_str":"1359774948563120130","text":"https:\/\/t.co\/KDkgem20UE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KDkgem20UE","expanded_url":"https:\/\/ocw.mit.edu\/courses\/mathematics\/18-06-linear-algebra-spring-2010\/index.htm","display_url":"ocw.mit.edu\/courses\/mathem\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585724324595818498\/VIyzO6Zm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585724324595818498\/VIyzO6Zm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302938061723045889,"id_str":"1302938061723045889","name":"Deleone - Muruthi","screen_name":"deleone_muruthi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":121,"listed_count":0,"created_at":"Mon - Sep 07 11:54:00 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Mon - Dec 21 18:55:16 +0000 2020","id":1341094906815721473,"id_str":"1341094906815721473","text":"@AJENews - The only way to archive LASTING PEACE the Middle East.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AJENews","name":"Al - Jazeera Breaking News","id":18424289,"id_str":"18424289","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1341083274270138368,"in_reply_to_status_id_str":"1341083274270138368","in_reply_to_user_id":18424289,"in_reply_to_user_id_str":"18424289","in_reply_to_screen_name":"AJENews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2595258834,"id_str":"2595258834","name":"Cristina - F","screen_name":"FloresmCristina","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":941,"listed_count":0,"created_at":"Sun - Jun 29 20:30:09 +0000 2014","favourites_count":9153,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":575,"lang":null,"status":{"created_at":"Tue - Mar 22 23:53:51 +0000 2022","id":1506418913600585731,"id_str":"1506418913600585731","text":"RT - @MollyJongFast: Here\u2019s Senator Mike Braun saying that interracial marriage - should be left up to the states. Its the year 2022 and a Repu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MollyJongFast","name":"Molly - Jong-Fast","id":14298769,"id_str":"14298769","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:44:19 +0000 2022","id":1506386314605830145,"id_str":"1506386314605830145","text":"Here\u2019s - Senator Mike Braun saying that interracial marriage should be left up to the - states. Its the year 2022 and a\u2026 https:\/\/t.co\/rOaYV1RTPh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rOaYV1RTPh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506386314605830145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2772,"favorite_count":6769,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2772,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/780453812867702784\/9toBG4hc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/780453812867702784\/9toBG4hc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2595258834\/1450884034","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1253674486253137921,"id_str":"1253674486253137921","name":"daira - saucedo","screen_name":"dairasaucedo4","location":"","description":"nomas - para poner pendejas","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":39,"listed_count":0,"created_at":"Fri - Apr 24 13:17:53 +0000 2020","favourites_count":2327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":454,"lang":null,"status":{"created_at":"Fri - Mar 25 23:16:36 +0000 2022","id":1507496703661953029,"id_str":"1507496703661953029","text":"chal\u2026 - es viernes, mi ligue meti\u00f3 la pata y yo tengo un chingo de sed \ud83e\udd37\ud83c\udffd\u200d\u2640\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421723114820493316\/DjJqyfHY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421723114820493316\/DjJqyfHY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253674486253137921\/1627800243","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084320333736349697,"id_str":"1084320333736349697","name":"Tami - Martin Keaveny","screen_name":"tktalks2","location":"Virginia, USA","description":"arts - editor : planet lover : learning parent : advocate for common sense and tearing - down walls","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":814,"listed_count":1,"created_at":"Sun - Jan 13 05:24:48 +0000 2019","favourites_count":3900,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":437,"lang":null,"status":{"created_at":"Wed - Mar 23 23:13:35 +0000 2022","id":1506771167369216001,"id_str":"1506771167369216001","text":"@erinaroo - \ud83e\udd23\ud83d\udc0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"erinaroo","name":"Erin - O\u2019Hare","id":30494441,"id_str":"30494441","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506765650060095492,"in_reply_to_status_id_str":"1506765650060095492","in_reply_to_user_id":30494441,"in_reply_to_user_id_str":"30494441","in_reply_to_screen_name":"erinaroo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1084325963436052480\/mDPhwlgU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084325963436052480\/mDPhwlgU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084320333736349697\/1547358431","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19848113,"id_str":"19848113","name":"Miranda - Hill","screen_name":"maryanda","location":"Alabama","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":470,"listed_count":0,"created_at":"Sun - Feb 01 05:34:26 +0000 2009","favourites_count":7354,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":426,"lang":null,"status":{"created_at":"Mon - Mar 14 19:30:20 +0000 2022","id":1503453492924530697,"id_str":"1503453492924530697","text":"@StephenKing - Roll Tide","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenKing","name":"Stephen - King","id":2233154425,"id_str":"2233154425","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503183935152533506,"in_reply_to_status_id_str":"1503183935152533506","in_reply_to_user_id":2233154425,"in_reply_to_user_id_str":"2233154425","in_reply_to_screen_name":"StephenKing","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"sv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDF9F7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442385428708982784\/p-3INTNe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442385428708982784\/p-3INTNe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19848113\/1366330864","profile_link_color":"CFB46F","profile_sidebar_border_color":"2F1E24","profile_sidebar_fill_color":"DE2916","profile_text_color":"9AE4E7","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243581386587615241,"id_str":"1243581386587615241","name":"Shalini - Ignatenkov","screen_name":"ShaliniIgnaten1","location":"","description":"Regional - Sales Manager at Vector Solutions. Providing Safety and Compliance training - for school districts grades K-12.","url":"https:\/\/t.co\/Hxi5ildoO4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Hxi5ildoO4","expanded_url":"https:\/\/www.safeschools.com\/","display_url":"safeschools.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":211,"listed_count":0,"created_at":"Fri - Mar 27 16:51:30 +0000 2020","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Feb 19 15:08:03 +0000 2022","id":1495052566236909571,"id_str":"1495052566236909571","text":"RT - @SelenaTorresNV: I love using @neprisapp in my classroom to connect students - to amazing people like Human Rights attorney Michael Eastma\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SelenaTorresNV","name":"Selena - Torres","id":2334731485,"id_str":"2334731485","indices":[3,18]},{"screen_name":"neprisapp","name":"Nepris","id":1038512437,"id_str":"1038512437","indices":[33,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 17 19:20:17 +0000 2022","id":1494391268989800454,"id_str":"1494391268989800454","text":"I - love using @neprisapp in my classroom to connect students to amazing people - like Human Rights attorney Michael Ea\u2026 https:\/\/t.co\/FzwScMyJ59","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"neprisapp","name":"Nepris","id":1038512437,"id_str":"1038512437","indices":[13,23]}],"urls":[{"url":"https:\/\/t.co\/FzwScMyJ59","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494391268989800454","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243582117759660039\/ZBiRObLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243582117759660039\/ZBiRObLq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":745737561738461184,"id_str":"745737561738461184","name":"Sabiu - abubakar","screen_name":"abubakarsabiu21","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":126,"listed_count":0,"created_at":"Wed - Jun 22 21:57:44 +0000 2016","favourites_count":1116,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Thu - Jan 13 09:17:30 +0000 2022","id":1481555999660126209,"id_str":"1481555999660126209","text":"@voahausa - To muna fatan alkhairi ga kowa da kowa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"voahausa","name":"VOA - Hausa","id":136297538,"id_str":"136297538","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1481472091836796932,"in_reply_to_status_id_str":"1481472091836796932","in_reply_to_user_id":136297538,"in_reply_to_user_id_str":"136297538","in_reply_to_screen_name":"voahausa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317738424116314112\/z1IwRQzY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317738424116314112\/z1IwRQzY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/745737561738461184\/1603052537","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":201295968,"id_str":"201295968","name":"Bill - Burke","screen_name":"burkewt","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":904,"listed_count":2,"created_at":"Mon - Oct 11 14:57:11 +0000 2010","favourites_count":255,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Wed - Mar 02 19:13:01 +0000 2022","id":1499100479967666179,"id_str":"1499100479967666179","text":"RT - @KyivIndependent: As Russian missiles rain down on their homes, many people - of Kyiv have moved permanently into the safe shelter of the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 19:12:45 +0000 2022","id":1499100416432291842,"id_str":"1499100416432291842","text":"As - Russian missiles rain down on their homes, many people of Kyiv have moved - permanently into the safe shelter of t\u2026 https:\/\/t.co\/qKqRwAvSvI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qKqRwAvSvI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499100416432291842","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1402,"favorite_count":6613,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1402,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/968857603152412673\/TtTicT0m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/968857603152412673\/TtTicT0m_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1049775096070467589,"id_str":"1049775096070467589","name":"Nelson - flores","screen_name":"Batres5Nelson","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":191,"friends_count":935,"listed_count":0,"created_at":"Tue - Oct 09 21:34:21 +0000 2018","favourites_count":10527,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9571,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415467607335919617\/J0Th0JxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415467607335919617\/J0Th0JxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1049775096070467589\/1624986093","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":979348230,"id_str":"979348230","name":"Gina - Schulman","screen_name":"ginaschulman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":754,"listed_count":0,"created_at":"Thu - Nov 29 23:23:44 +0000 2012","favourites_count":10095,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8149,"lang":null,"status":{"created_at":"Tue - Mar 22 01:33:07 +0000 2022","id":1506081507974262786,"id_str":"1506081507974262786","text":"RT - @robreiner: Judge Jackson will be confirmed. And if Republicans are so concerned - about the Rule of Law and The Constitution, why aren\u2019t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robreiner","name":"Rob - Reiner","id":738080573365702657,"id_str":"738080573365702657","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:29:54 +0000 2022","id":1505929701881049089,"id_str":"1505929701881049089","text":"Judge - Jackson will be confirmed. And if Republicans are so concerned about the Rule - of Law and The Constitution, wh\u2026 https:\/\/t.co\/inSW1kehsc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/inSW1kehsc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505929701881049089","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10365,"favorite_count":57048,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10365,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2916410635\/218afc6905c4fb23d8f4bdea65e59e90_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2916410635\/218afc6905c4fb23d8f4bdea65e59e90_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":55743252,"id_str":"55743252","name":"Edward - Wolosezky","screen_name":"kidKanuk","location":"Vancouver, BC","description":"Carpe - Diem! \n\n\ud83c\udde8\ud83c\udde6 Sympathetic Resistance Team \ud83c\udde8\ud83c\udde6 - \ud83c\uddfa\ud83c\udde6","url":"https:\/\/t.co\/6sUHJDdI19","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6sUHJDdI19","expanded_url":"http:\/\/edward-wolosezky.strikingly.com\/","display_url":"edward-wolosezky.strikingly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":674,"friends_count":4996,"listed_count":5,"created_at":"Sat - Jul 11 03:12:29 +0000 2009","favourites_count":41872,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3617,"lang":null,"status":{"created_at":"Fri - Mar 25 03:41:43 +0000 2022","id":1507201033646186497,"id_str":"1507201033646186497","text":"@Out5p0ken - \"inspecting the bunker...\"\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Out5p0ken","name":"Outspoken\u2122\ufe0f","id":3930472251,"id_str":"3930472251","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507200069308715009,"in_reply_to_status_id_str":"1507200069308715009","in_reply_to_user_id":3930472251,"in_reply_to_user_id_str":"3930472251","in_reply_to_screen_name":"Out5p0ken","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1407203003728338944\/wueM7wnf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1407203003728338944\/wueM7wnf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55743252\/1622913623","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4209980962,"id_str":"4209980962","name":"robin - morris","screen_name":"robinmorris164","location":"France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":119,"listed_count":0,"created_at":"Tue - Nov 17 13:10:56 +0000 2015","favourites_count":494,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":193,"lang":null,"status":{"created_at":"Fri - Mar 25 12:16:40 +0000 2022","id":1507330624289452032,"id_str":"1507330624289452032","text":"RT - @zarahsultana: Rishi Sunak is taking the piss.\nhttps:\/\/t.co\/oKUjOgk6T5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zarahsultana","name":"Zarah - Sultana MP","id":3056307455,"id_str":"3056307455","indices":[3,16]}],"urls":[],"media":[{"id":1493248476595068931,"id_str":"1493248476595068931","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","url":"https:\/\/t.co\/oKUjOgk6T5","display_url":"pic.twitter.com\/oKUjOgk6T5","expanded_url":"https:\/\/twitter.com\/DoubleDownNews\/status\/1493531988451602432\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1493531988451602432,"source_status_id_str":"1493531988451602432","source_user_id":808638164411842560,"source_user_id_str":"808638164411842560"}]},"extended_entities":{"media":[{"id":1493248476595068931,"id_str":"1493248476595068931","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","url":"https:\/\/t.co\/oKUjOgk6T5","display_url":"pic.twitter.com\/oKUjOgk6T5","expanded_url":"https:\/\/twitter.com\/DoubleDownNews\/status\/1493531988451602432\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1493531988451602432,"source_status_id_str":"1493531988451602432","source_user_id":808638164411842560,"source_user_id_str":"808638164411842560","video_info":{"aspect_ratio":[1,1],"duration_millis":358160,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/320x320\/lx5oV-6DdM8NNBsW.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/720x720\/W3GXm3go1dabFaW4.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/pl\/Pc3HMUee1fQnRwtn.m3u8?tag=14&container=fmp4&v=ed8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/540x540\/t5Q0-164ES5tZMzs.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:14:10 +0000 2022","id":1506997806548062217,"id_str":"1506997806548062217","text":"Rishi - Sunak is taking the piss.\nhttps:\/\/t.co\/oKUjOgk6T5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1493248476595068931,"id_str":"1493248476595068931","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","url":"https:\/\/t.co\/oKUjOgk6T5","display_url":"pic.twitter.com\/oKUjOgk6T5","expanded_url":"https:\/\/twitter.com\/DoubleDownNews\/status\/1493531988451602432\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1493531988451602432,"source_status_id_str":"1493531988451602432","source_user_id":808638164411842560,"source_user_id_str":"808638164411842560"}]},"extended_entities":{"media":[{"id":1493248476595068931,"id_str":"1493248476595068931","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLkWWQaXMAAJNxq.jpg","url":"https:\/\/t.co\/oKUjOgk6T5","display_url":"pic.twitter.com\/oKUjOgk6T5","expanded_url":"https:\/\/twitter.com\/DoubleDownNews\/status\/1493531988451602432\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1493531988451602432,"source_status_id_str":"1493531988451602432","source_user_id":808638164411842560,"source_user_id_str":"808638164411842560","video_info":{"aspect_ratio":[1,1],"duration_millis":358160,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/320x320\/lx5oV-6DdM8NNBsW.mp4?tag=14"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/720x720\/W3GXm3go1dabFaW4.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/pl\/Pc3HMUee1fQnRwtn.m3u8?tag=14&container=fmp4&v=ed8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1493248476595068931\/vid\/540x540\/t5Q0-164ES5tZMzs.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6686,"favorite_count":22526,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6686,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498698234855837699\/U4u8l2Yb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498698234855837699\/U4u8l2Yb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4727033379,"id_str":"4727033379","name":"Jon - Smith","screen_name":"jjndcflyer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":855,"listed_count":0,"created_at":"Wed - Jan 06 18:29:55 +0000 2016","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2891667598,"id_str":"2891667598","name":"Oliver - Riquelme","screen_name":"_oliverrb","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":402,"listed_count":0,"created_at":"Tue - Nov 25 03:50:35 +0000 2014","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":797,"lang":null,"status":{"created_at":"Sun - Feb 27 03:28:35 +0000 2022","id":1497775645098758145,"id_str":"1497775645098758145","text":"RT - @KerryKennedyRFK: Ukraine is known for the heroism of its people. Yesterday - as Russians invaded, a young soldier realized he had no time\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KerryKennedyRFK","name":"Kerry - Kennedy","id":155062488,"id_str":"155062488","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 02:38:22 +0000 2022","id":1497400618390073346,"id_str":"1497400618390073346","text":"Ukraine - is known for the heroism of its people. Yesterday as Russians invaded, a young - soldier realized he had no t\u2026 https:\/\/t.co\/0AXgmDcJha","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0AXgmDcJha","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497400618390073346","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6849,"favorite_count":31044,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6849,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1029135389695660040\/MZ-p8Wru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1029135389695660040\/MZ-p8Wru_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":224829132,"id_str":"224829132","name":"Francis - Witter","screen_name":"franciswitter","location":"Wheaton, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":455,"listed_count":0,"created_at":"Thu - Dec 09 23:53:45 +0000 2010","favourites_count":1095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":178,"lang":null,"status":{"created_at":"Fri - Mar 25 04:45:23 +0000 2022","id":1507217057036873732,"id_str":"1507217057036873732","text":"FU - @Xfinity if I can\u2019t get @NHLBlackhawks on tv. WTF!!! @YouTubeTV I am - coming!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Xfinity","name":"Xfinity","id":14996251,"id_str":"14996251","indices":[3,11]},{"screen_name":"NHLBlackhawks","name":"Chicago - Blackhawks","id":14498484,"id_str":"14498484","indices":[27,41]},{"screen_name":"YouTubeTV","name":"YouTube - TV","id":803263807489536000,"id_str":"803263807489536000","indices":[57,67]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294004658885754886,"id_str":"1294004658885754886","name":"Sipping","screen_name":"Sipping82171431","location":"University - of Ibadan","description":"Harmony & Faith''s With Grace, Cancerian\u264b\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":1326,"listed_count":0,"created_at":"Thu - Aug 13 20:15:36 +0000 2020","favourites_count":958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":359,"lang":null,"status":{"created_at":"Mon - Mar 21 21:27:58 +0000 2022","id":1506019811113021452,"id_str":"1506019811113021452","text":"@thisisWurlD - Thanks boss 08104526172 MTN Nigeria","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thisisWurlD","name":"WurlD","id":23966828,"id_str":"23966828","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506001748145553413,"in_reply_to_status_id_str":"1506001748145553413","in_reply_to_user_id":23966828,"in_reply_to_user_id_str":"23966828","in_reply_to_screen_name":"thisisWurlD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297178856227581953\/EWPOBr2F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297178856227581953\/EWPOBr2F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294004658885754886\/1600064605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238760589415124992,"id_str":"1238760589415124992","name":"Keith - Gibson","screen_name":"iamkeithgibson1","location":"Houghton-le-Spring, England","description":"All - fixed up 8\ud83e\udd18\ud83d\udc48\ud83d\ude0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":483,"listed_count":1,"created_at":"Sat - Mar 14 09:35:44 +0000 2020","favourites_count":19191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11121,"lang":null,"status":{"created_at":"Fri - Mar 25 12:25:01 +0000 2022","id":1507332726499815428,"id_str":"1507332726499815428","text":"RT - @IAMTOMMACDONALD: One of my favorites from \u201cThe Brave\u201d album. \n\nWhat - y\u2019all think of this one?\n\nDOWNLOAD THE ALBUM: https:\/\/t.co\/7Gz4OHOY\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAMTOMMACDONALD","name":"Tom - MacDonald","id":292237349,"id_str":"292237349","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:30:57 +0000 2022","id":1507137925426737171,"id_str":"1507137925426737171","text":"One - of my favorites from \u201cThe Brave\u201d album. \n\nWhat y\u2019all think - of this one?\n\nDOWNLOAD THE ALBUM:\u2026 https:\/\/t.co\/mChfym029N","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mChfym029N","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507137925426737171","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":157,"favorite_count":909,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":157,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495381522425294852\/mHYBpmcU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495381522425294852\/mHYBpmcU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238760589415124992\/1584724325","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240728165770653696,"id_str":"1240728165770653696","name":"Kumar - Vel","screen_name":"KumarVe85281856","location":"","description":"always postive","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":235,"listed_count":0,"created_at":"Thu - Mar 19 19:54:02 +0000 2020","favourites_count":516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":147,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248605245510320128\/tFQK5zIQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248605245510320128\/tFQK5zIQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17452862,"id_str":"17452862","name":"Rev. - Joel L. Tolbert \ud83c\uddfa\ud83c\udde6","screen_name":"treblotj","location":"Chestertown, - MD","description":"husband to @JPTolbert, father of three, mech engineer marketing\/sales - professional turned Presbyterian pastor @PCUSA @presbychester podcaster @REALigionPod","url":"https:\/\/t.co\/DotthaUtV3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DotthaUtV3","expanded_url":"http:\/\/joeltolbert.com","display_url":"joeltolbert.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":691,"listed_count":7,"created_at":"Mon - Nov 17 22:54:08 +0000 2008","favourites_count":5456,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4223,"lang":null,"status":{"created_at":"Fri - Mar 25 15:37:36 +0000 2022","id":1507381191254675463,"id_str":"1507381191254675463","text":"@FFScout - Q for Az and the gang;\nOn a 31 Wildcard, discuss pros and cons of either - big 3 Premium defenders (TAA, Jam\u2026 https:\/\/t.co\/h2JWuaEXag","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FFScout","name":"Fantasy - Football Scout","id":21189279,"id_str":"21189279","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/h2JWuaEXag","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507381191254675463","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21189279,"in_reply_to_user_id_str":"21189279","in_reply_to_screen_name":"FFScout","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352590863524884480\/u76tQyvY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352590863524884480\/u76tQyvY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17452862\/1558201068","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1136709925567180805,"id_str":"1136709925567180805","name":"Paula - Cornell","screen_name":"PaulaCornell8","location":"","description":"graduate - of madonna in hospice and palliative care old radical hippie living in northern - Michigan. love animals and politics maybe the same thing. love to read","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":316,"friends_count":1005,"listed_count":2,"created_at":"Thu - Jun 06 19:02:20 +0000 2019","favourites_count":13921,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":152873,"lang":null,"status":{"created_at":"Tue - Mar 22 15:37:06 +0000 2022","id":1506293903556849681,"id_str":"1506293903556849681","text":"RT - @MaryLTrump: I know this is an evergreen tweet but Lindsay Graham can fuck - right off.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:43:10 +0000 2022","id":1506280327655874572,"id_str":"1506280327655874572","text":"I - know this is an evergreen tweet but Lindsay Graham can fuck right off.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6138,"favorite_count":66897,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6138,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23433021,"id_str":"23433021","name":"Antonio - Malta Campos","screen_name":"antoniomalta","location":"S\u00e3o Paulo, Brazil","description":"visual - artist; Sao Paulo, Brasil","url":"http:\/\/t.co\/KaBW24Rd6j","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/KaBW24Rd6j","expanded_url":"http:\/\/www.antoniomaltacampos.com.br","display_url":"antoniomaltacampos.com.br","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":1583,"listed_count":4,"created_at":"Mon - Mar 09 13:15:01 +0000 2009","favourites_count":30300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3387,"lang":null,"status":{"created_at":"Fri - Mar 25 20:31:38 +0000 2022","id":1507455186981339138,"id_str":"1507455186981339138","text":"RT - @HyunSongShin: A quiet revolution in the monetary system started in November - 2020, when Brazil launched its Pix instant payment system\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HyunSongShin","name":"Hyun - Song Shin","id":2356714968,"id_str":"2356714968","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:52:33 +0000 2022","id":1507007465107300369,"id_str":"1507007465107300369","text":"A - quiet revolution in the monetary system started in November 2020, when Brazil - launched its Pix instant payment sy\u2026 https:\/\/t.co\/btknrLyXCR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/btknrLyXCR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507007465107300369","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":503,"favorite_count":2335,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":503,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197280164515848193\/iE5vTtS0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197280164515848193\/iE5vTtS0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23433021\/1574288811","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":936603084033351680,"id_str":"936603084033351680","name":"sayngbeh - kollie","screen_name":"sayngbeh_kollie","location":"Monrovia, Liberia","description":"Male","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":834,"listed_count":0,"created_at":"Fri - Dec 01 14:29:11 +0000 2017","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":133,"lang":null,"status":{"created_at":"Mon - Feb 14 20:19:56 +0000 2022","id":1493319115175518208,"id_str":"1493319115175518208","text":"@alymig - @BillClinton Happy valentine day to the best couple in the universe and more - years to celebrate together as husband and wife","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alymig","name":"Alycia - D","id":14683908,"id_str":"14683908","indices":[0,7]},{"screen_name":"BillClinton","name":"Bill - Clinton","id":1330457336,"id_str":"1330457336","indices":[8,20]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493300079683268612,"in_reply_to_status_id_str":"1493300079683268612","in_reply_to_user_id":14683908,"in_reply_to_user_id_str":"14683908","in_reply_to_screen_name":"alymig","geo":null,"coordinates":null,"place":{"id":"8d2ea4d337845954","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8d2ea4d337845954.json","place_type":"country","name":"Liberia","full_name":"Liberia","country_code":"LR","country":"Liberia","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-11.5853946,4.2700671],[-7.3680293,4.2700671],[-7.3680293,8.5520507],[-11.5853946,8.5520507]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":40,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1071879579315380225\/AkOJxK13_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1071879579315380225\/AkOJxK13_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":238287094,"id_str":"238287094","name":"Chuck - Dimond","screen_name":"ChuckDimond","location":"United States","description":"Internet - Marketing tips-tricks, Affiliate Marketing, Social Media, Forex & Futures - Trader, Trade Tips, Trading Psychology, Coaching and Mentoring, Entrepreneur","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":349,"listed_count":0,"created_at":"Fri - Jan 14 20:32:10 +0000 2011","favourites_count":142,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":106,"lang":null,"status":{"created_at":"Sat - Mar 05 17:04:03 +0000 2022","id":1500155188790718464,"id_str":"1500155188790718464","text":"RT - @RadioFreeTom: Former president encouraging our enemies to open war on two - fronts.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 23:27:08 +0000 2022","id":1499526819300655104,"id_str":"1499526819300655104","text":"Former - president encouraging our enemies to open war on two fronts. https:\/\/t.co\/qXlGPIkk3a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qXlGPIkk3a","expanded_url":"https:\/\/twitter.com\/MorningsMaria\/status\/1499030968115548161","display_url":"twitter.com\/MorningsMaria\/\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1499030968115548161,"quoted_status_id_str":"1499030968115548161","retweet_count":2267,"favorite_count":8732,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1499030968115548161,"quoted_status_id_str":"1499030968115548161","retweet_count":2267,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215742714\/17257604741243928_man_in_bed_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215742714\/17257604741243928_man_in_bed_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":386921673,"id_str":"386921673","name":"priscilla","screen_name":"hb4youdp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":544,"listed_count":1,"created_at":"Sat - Oct 08 04:41:55 +0000 2011","favourites_count":7611,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":541,"lang":null,"status":{"created_at":"Thu - Feb 11 04:17:36 +0000 2021","id":1359718202733965313,"id_str":"1359718202733965313","text":"Just - posted a photo @ Camarillo Premium Outlets https:\/\/t.co\/a08X7CfbwB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a08X7CfbwB","expanded_url":"https:\/\/www.instagram.com\/p\/CLI2G0kA75h\/?igshid=7dsi07gko3kq","display_url":"instagram.com\/p\/CLI2G0kA75h\/\u2026","indices":[48,71]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":{"type":"Point","coordinates":[34.2163173,-119.0618583]},"coordinates":{"type":"Point","coordinates":[-119.0618583,34.2163173]},"place":{"id":"689083f5b4e488b4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/689083f5b4e488b4.json","place_type":"city","name":"Camarillo","full_name":"Camarillo, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-119.109824,34.191355],[-118.958874,34.191355],[-118.958874,34.2592999],[-119.109824,34.2592999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278311292596559873,"id_str":"1278311292596559873","name":"Dovie - dove","screen_name":"Doviedove3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":237,"listed_count":0,"created_at":"Wed - Jul 01 12:55:50 +0000 2020","favourites_count":574,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Sun - May 16 10:19:24 +0000 2021","id":1393873712231944197,"id_str":"1393873712231944197","text":"@AtwoliDza - Shenza sana\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02alaaaaaaaa\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AtwoliDza","name":"Francis - Atwoli NOM (DZA), CBS, EBS, MBS.","id":941815235144503296,"id_str":"941815235144503296","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1393633254998253569,"in_reply_to_status_id_str":"1393633254998253569","in_reply_to_user_id":941815235144503296,"in_reply_to_user_id_str":"941815235144503296","in_reply_to_screen_name":"AtwoliDza","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313016047117783040\/75zkW0Zd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313016047117783040\/75zkW0Zd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1114917079721938944,"id_str":"1114917079721938944","name":"mark - cohen","screen_name":"markcoh78581779","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":72,"listed_count":0,"created_at":"Sun - Apr 07 15:45:20 +0000 2019","favourites_count":227,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":419,"lang":null,"status":{"created_at":"Thu - Jan 21 22:23:22 +0000 2021","id":1352381297927323650,"id_str":"1352381297927323650","text":"The - truth will always prevail. Not like you!! You\u2019re a liar, a hypocrite - and a phony. You did more to divide this c\u2026 https:\/\/t.co\/3JxNSpEZWo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3JxNSpEZWo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1352381297927323650","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1352375652926820355,"quoted_status_id_str":"1352375652926820355","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2243760302,"id_str":"2243760302","name":"tugumisirizebarnabas","screen_name":"tugumisirizebar","location":"kabale - town in uganda","description":"kamusiza kitunga Rukiga kabale","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":325,"friends_count":4163,"listed_count":1,"created_at":"Fri - Dec 13 11:18:21 +0000 2013","favourites_count":267,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Wed - Mar 23 10:58:15 +0000 2022","id":1506586115259699205,"id_str":"1506586115259699205","text":"RT - @EdisonPolitical: @KagutaMuseveni Congratulations to all those that have been - Appointed RDCs, RCCs and DRDCs by HE Gen YKTM President of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdisonPolitical","name":"Edison - Political","id":1166385707478392832,"id_str":"1166385707478392832","indices":[3,19]},{"screen_name":"KagutaMuseveni","name":"Yoweri - K Museveni","id":126955629,"id_str":"126955629","indices":[21,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 10:53:35 +0000 2022","id":1506584940770742273,"id_str":"1506584940770742273","text":"@KagutaMuseveni - Congratulations to all those that have been Appointed RDCs, RCCs and DRDCs - by HE Gen YKTM President\u2026 https:\/\/t.co\/gUW5GhxFIe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KagutaMuseveni","name":"Yoweri - K Museveni","id":126955629,"id_str":"126955629","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/gUW5GhxFIe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506584940770742273","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506567980565643265,"in_reply_to_status_id_str":"1506567980565643265","in_reply_to_user_id":126955629,"in_reply_to_user_id_str":"126955629","in_reply_to_screen_name":"KagutaMuseveni","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/901849809996402688\/glWSJeEF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/901849809996402688\/glWSJeEF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2243760302\/1503853052","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24984259,"id_str":"24984259","name":"Justin - Kelly Bakies","screen_name":"LegibleBachelor","location":"Los Angeles, CA","description":"overeater. - designer. animator. technologist.","url":"https:\/\/t.co\/wuev8fr3sL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wuev8fr3sL","expanded_url":"http:\/\/justinbaki.es","display_url":"justinbaki.es","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":272,"friends_count":3802,"listed_count":17,"created_at":"Tue - Mar 17 23:49:59 +0000 2009","favourites_count":609,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":209,"lang":null,"status":{"created_at":"Thu - Apr 08 20:02:47 +0000 2021","id":1380249784523497474,"id_str":"1380249784523497474","text":"@ThatEricAlper - https:\/\/t.co\/W1VeOCHRpQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/W1VeOCHRpQ","expanded_url":"https:\/\/www.youtube.com\/watch?v=K2v331mmvQQ","display_url":"youtube.com\/watch?v=K2v331\u2026","indices":[15,38]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1380226473127256073,"in_reply_to_status_id_str":"1380226473127256073","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/145741587\/2420872098_562b9de778_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/145741587\/2420872098_562b9de778_o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":980845248,"id_str":"980845248","name":"PG","screen_name":"PgClaireellie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":523,"listed_count":0,"created_at":"Fri - Nov 30 17:08:23 +0000 2012","favourites_count":5141,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":124,"lang":null,"status":{"created_at":"Fri - Jan 14 22:26:45 +0000 2022","id":1482117006052794369,"id_str":"1482117006052794369","text":"RT - @smarfwater: reminder that #robertwilliams is an #nbaallstar & its a double - vote day \u2b50\ufe0f https:\/\/t.co\/mN5cc46rcN","truncated":false,"entities":{"hashtags":[{"text":"robertwilliams","indices":[30,45]},{"text":"nbaallstar","indices":[52,63]}],"symbols":[],"user_mentions":[{"screen_name":"smarfwater","name":"smarfwater\u2122","id":1188246355648663553,"id_str":"1188246355648663553","indices":[3,14]}],"urls":[],"media":[{"id":1481833013679996933,"id_str":"1481833013679996933","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","url":"https:\/\/t.co\/mN5cc46rcN","display_url":"pic.twitter.com\/mN5cc46rcN","expanded_url":"https:\/\/twitter.com\/smarfwater\/status\/1481833048274571269\/photo\/1","type":"photo","sizes":{"small":{"w":442,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":442,"h":250,"resize":"fit"},"large":{"w":442,"h":250,"resize":"fit"}},"source_status_id":1481833048274571269,"source_status_id_str":"1481833048274571269","source_user_id":1188246355648663553,"source_user_id_str":"1188246355648663553"}]},"extended_entities":{"media":[{"id":1481833013679996933,"id_str":"1481833013679996933","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","url":"https:\/\/t.co\/mN5cc46rcN","display_url":"pic.twitter.com\/mN5cc46rcN","expanded_url":"https:\/\/twitter.com\/smarfwater\/status\/1481833048274571269\/photo\/1","type":"animated_gif","sizes":{"small":{"w":442,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":442,"h":250,"resize":"fit"},"large":{"w":442,"h":250,"resize":"fit"}},"source_status_id":1481833048274571269,"source_status_id_str":"1481833048274571269","source_user_id":1188246355648663553,"source_user_id_str":"1188246355648663553","video_info":{"aspect_ratio":[221,125],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FJCHRlzXwAUlhpM.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 14 03:38:24 +0000 2022","id":1481833048274571269,"id_str":"1481833048274571269","text":"reminder - that #robertwilliams is an #nbaallstar & its a double vote day \u2b50\ufe0f - https:\/\/t.co\/mN5cc46rcN","truncated":false,"entities":{"hashtags":[{"text":"robertwilliams","indices":[14,29]},{"text":"nbaallstar","indices":[36,47]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1481833013679996933,"id_str":"1481833013679996933","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","url":"https:\/\/t.co\/mN5cc46rcN","display_url":"pic.twitter.com\/mN5cc46rcN","expanded_url":"https:\/\/twitter.com\/smarfwater\/status\/1481833048274571269\/photo\/1","type":"photo","sizes":{"small":{"w":442,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":442,"h":250,"resize":"fit"},"large":{"w":442,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1481833013679996933,"id_str":"1481833013679996933","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FJCHRlzXwAUlhpM.jpg","url":"https:\/\/t.co\/mN5cc46rcN","display_url":"pic.twitter.com\/mN5cc46rcN","expanded_url":"https:\/\/twitter.com\/smarfwater\/status\/1481833048274571269\/photo\/1","type":"animated_gif","sizes":{"small":{"w":442,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":442,"h":250,"resize":"fit"},"large":{"w":442,"h":250,"resize":"fit"}},"video_info":{"aspect_ratio":[221,125],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FJCHRlzXwAUlhpM.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":494,"favorite_count":495,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":494,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":929042269427994625,"id_str":"929042269427994625","name":"Natural - Rebel","screen_name":"Ntrl_rebel","location":"Colorado Springs, CO","description":"Progressive - thinker, politically savvy, Power to the people!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":837,"friends_count":2441,"listed_count":0,"created_at":"Fri - Nov 10 17:45:12 +0000 2017","favourites_count":15686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9882,"lang":null,"status":{"created_at":"Tue - Mar 22 23:16:09 +0000 2022","id":1506409424310583299,"id_str":"1506409424310583299","text":"RT - @matthewjdowd: I will say this again having worked with Ted Cruz in 2000 campaign: when - people asked me why do folks take such an insta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewjdowd","name":"Matthew - Dowd","id":288363743,"id_str":"288363743","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 19:02:59 +0000 2022","id":1506345716058398720,"id_str":"1506345716058398720","text":"I - will say this again having worked with Ted Cruz in 2000 campaign: when people - asked me why do folks take such an\u2026 https:\/\/t.co\/qjdWghDvaz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qjdWghDvaz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506345716058398720","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9571,"favorite_count":79601,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9571,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357026005446238208\/xklsXs5f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357026005446238208\/xklsXs5f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/929042269427994625\/1513707084","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":632693359,"id_str":"632693359","name":"r@m","screen_name":"ram_flyhigh","location":"Mumbai, - India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":357,"listed_count":0,"created_at":"Wed - Jul 11 07:42:39 +0000 2012","favourites_count":126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Mon - Feb 21 13:48:47 +0000 2022","id":1495757394852585476,"id_str":"1495757394852585476","text":"@reliancetrends - Clear all this.. how much time should I write to public https:\/\/t.co\/f6728cN0hA - this your culture t\u2026 https:\/\/t.co\/zrV7KvVygr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"reliancetrends","name":"RelianceTrends","id":752848292,"id_str":"752848292","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/f6728cN0hA","expanded_url":"http:\/\/domain.Is","display_url":"domain.Is","indices":[72,95]},{"url":"https:\/\/t.co\/zrV7KvVygr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495757394852585476","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1495617047652286467,"in_reply_to_status_id_str":"1495617047652286467","in_reply_to_user_id":752848292,"in_reply_to_user_id_str":"752848292","in_reply_to_screen_name":"reliancetrends","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2387584712\/ram_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2387584712\/ram_normal.JPG","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267128113596706818,"id_str":"1267128113596706818","name":"Jos\u00e9 - Ernesto Hernnadez","screen_name":"JosErnestoHer12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":982,"friends_count":4913,"listed_count":1,"created_at":"Sun - May 31 16:17:53 +0000 2020","favourites_count":2163,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":540,"lang":null,"status":{"created_at":"Fri - Mar 25 18:39:26 +0000 2022","id":1507426951895699460,"id_str":"1507426951895699460","text":"@EDISSONGABRIEEL - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EDISSONGABRIEEL","name":"\u2764\ud83c\udfa4EL - MENSAJERO DE DIOS\ud83c\udfa4\u2764","id":2733034409,"id_str":"2733034409","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507304147317669891,"in_reply_to_status_id_str":"1507304147317669891","in_reply_to_user_id":2733034409,"in_reply_to_user_id_str":"2733034409","in_reply_to_screen_name":"EDISSONGABRIEEL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399120514430476289\/WZX6k3y-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399120514430476289\/WZX6k3y-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267128113596706818\/1608403064","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":852978741403729920,"id_str":"852978741403729920","name":"H. - Habichtskauz","screen_name":"HabichtskauzH","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":155,"listed_count":0,"created_at":"Fri - Apr 14 20:15:54 +0000 2017","favourites_count":685,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1031950405649948672,"id_str":"1031950405649948672","name":"Ted","screen_name":"Ted62285578","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":1241,"listed_count":0,"created_at":"Tue - Aug 21 17:05:24 +0000 2018","favourites_count":161,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":213,"lang":null,"status":{"created_at":"Thu - Mar 24 06:21:39 +0000 2022","id":1506878894426664961,"id_str":"1506878894426664961","text":"RT - @OccupyDemocrats: In this powerful photo, Judge Ketanji Brown Jackson gets - a kiss from her husband after being subjected to a barrage of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:05:19 +0000 2022","id":1506814387826446337,"id_str":"1506814387826446337","text":"In - this powerful photo, Judge Ketanji Brown Jackson gets a kiss from her husband - after being subjected to a barrage\u2026 https:\/\/t.co\/uouxjoSqv9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uouxjoSqv9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506814387826446337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11373,"favorite_count":46585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11373,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17884746,"id_str":"17884746","name":"Wergeles","screen_name":"Wergeles","location":"Santa - Monica, CA","description":"Lawyer, Father, Husband, not necessarily in that - order. Hoping that we slow the descent into fascism.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":148,"friends_count":1530,"listed_count":1,"created_at":"Fri - Dec 05 00:35:10 +0000 2008","favourites_count":3807,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":828,"lang":null,"status":{"created_at":"Fri - Feb 18 05:55:50 +0000 2022","id":1494551207855095810,"id_str":"1494551207855095810","text":"RT - @seanhecht: Difficult situation on campus. Traffic jam of automated food delivery - robots, apparently all stuck behind a carelessly disca\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"seanhecht","name":"Sean - Hecht","id":47265209,"id_str":"47265209","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 15 03:50:56 +0000 2022","id":1493432613628825600,"id_str":"1493432613628825600","text":"Difficult - situation on campus. Traffic jam of automated food delivery robots, apparently - all stuck behind a careles\u2026 https:\/\/t.co\/RrHzhxtRDl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RrHzhxtRDl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493432613628825600","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3345,"favorite_count":12982,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3345,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315665436877361152\/Qacx2uzw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315665436877361152\/Qacx2uzw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225823352234762241,"id_str":"1225823352234762241","name":"Ron - DeLuisi","screen_name":"RonDeluisi","location":"California, USA","description":"Retired - Locomotive Engineer, Giants, 49er and Warriors fan. Laughing at Trumpanzees - has become my favorite pastime. \u201cThis is America....right matters.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":375,"listed_count":0,"created_at":"Fri - Feb 07 16:47:34 +0000 2020","favourites_count":27525,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5312,"lang":null,"status":{"created_at":"Fri - Mar 25 18:47:44 +0000 2022","id":1507429041954963458,"id_str":"1507429041954963458","text":"@vicky_dollysmom - Of course he did!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vicky_dollysmom","name":"Victoria - Bueno","id":1104411645307207680,"id_str":"1104411645307207680","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507145733178286086,"in_reply_to_status_id_str":"1507145733178286086","in_reply_to_user_id":1104411645307207680,"in_reply_to_user_id_str":"1104411645307207680","in_reply_to_screen_name":"vicky_dollysmom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318330596561547264\/6LBmmPVM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318330596561547264\/6LBmmPVM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18990193,"id_str":"18990193","name":"Sarah - Rosen","screen_name":"saraharco","location":"Short Hills NJ","description":"","url":"http:\/\/t.co\/O7K7gcF0gb","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/O7K7gcF0gb","expanded_url":"http:\/\/www.njtvonline.org","display_url":"njtvonline.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":2198,"listed_count":4,"created_at":"Wed - Jan 14 19:10:08 +0000 2009","favourites_count":9249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1207,"lang":null,"status":{"created_at":"Fri - Mar 25 00:09:39 +0000 2022","id":1507147667259932674,"id_str":"1507147667259932674","text":"RT - @DukeMBB: It\u2019s time to BE DUKE \ud83d\udd7a\ud83d\udd7a\ud83d\udd7a\ud83d\ude08\n\n\ud83d\udde3 - @laettnerbball \n\n#MarchMadness https:\/\/t.co\/24n1veDW2M","truncated":false,"entities":{"hashtags":[{"text":"MarchMadness","indices":[59,72]}],"symbols":[],"user_mentions":[{"screen_name":"DukeMBB","name":"Duke - Men\u2019s Basketball","id":18272699,"id_str":"18272699","indices":[3,11]},{"screen_name":"laettnerbball","name":"Christian - Laettner","id":589296284,"id_str":"589296284","indices":[42,56]}],"urls":[],"media":[{"id":1507140848252645403,"id_str":"1507140848252645403","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","url":"https:\/\/t.co\/24n1veDW2M","display_url":"pic.twitter.com\/24n1veDW2M","expanded_url":"https:\/\/twitter.com\/DukeMBB\/status\/1507141284695142408\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1507141284695142408,"source_status_id_str":"1507141284695142408","source_user_id":18272699,"source_user_id_str":"18272699"}]},"extended_entities":{"media":[{"id":1507140848252645403,"id_str":"1507140848252645403","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","url":"https:\/\/t.co\/24n1veDW2M","display_url":"pic.twitter.com\/24n1veDW2M","expanded_url":"https:\/\/twitter.com\/DukeMBB\/status\/1507141284695142408\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1507141284695142408,"source_status_id_str":"1507141284695142408","source_user_id":18272699,"source_user_id_str":"18272699","video_info":{"aspect_ratio":[1,1],"duration_millis":90750,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/540x540\/zyRsLUTpbgRiRfb5.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/720x720\/RZ0UZmZbu13wq2Lt.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/pl\/3aHMbi4ETsoXZKqn.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/320x320\/mJmLbKHWYmllXDHQ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:44:18 +0000 2022","id":1507141284695142408,"id_str":"1507141284695142408","text":"It\u2019s - time to BE DUKE \ud83d\udd7a\ud83d\udd7a\ud83d\udd7a\ud83d\ude08\n\n\ud83d\udde3 - @laettnerbball \n\n#MarchMadness https:\/\/t.co\/24n1veDW2M","truncated":false,"entities":{"hashtags":[{"text":"MarchMadness","indices":[46,59]}],"symbols":[],"user_mentions":[{"screen_name":"laettnerbball","name":"Christian - Laettner","id":589296284,"id_str":"589296284","indices":[29,43]}],"urls":[],"media":[{"id":1507140848252645403,"id_str":"1507140848252645403","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","url":"https:\/\/t.co\/24n1veDW2M","display_url":"pic.twitter.com\/24n1veDW2M","expanded_url":"https:\/\/twitter.com\/DukeMBB\/status\/1507141284695142408\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507140848252645403,"id_str":"1507140848252645403","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507140848252645403\/pu\/img\/2mahifcId7hi8g1I.jpg","url":"https:\/\/t.co\/24n1veDW2M","display_url":"pic.twitter.com\/24n1veDW2M","expanded_url":"https:\/\/twitter.com\/DukeMBB\/status\/1507141284695142408\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":90750,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/540x540\/zyRsLUTpbgRiRfb5.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/720x720\/RZ0UZmZbu13wq2Lt.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/pl\/3aHMbi4ETsoXZKqn.m3u8?tag=12&container=fmp4"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507140848252645403\/pu\/vid\/320x320\/mJmLbKHWYmllXDHQ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":705,"favorite_count":2864,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":705,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425691337816436736\/gRHS6f3U_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425691337816436736\/gRHS6f3U_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18990193\/1393559259","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1140646527850827778,"id_str":"1140646527850827778","name":"Thomas - Rowland","screen_name":"thomas_rowland1","location":"New York, New York","description":"Marine - Corps Veteran MPA candidate @ColumbiaSIPA @usmc @SFSU graduate and now @HighGroundVets - advocate. Thoughts are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":445,"listed_count":0,"created_at":"Mon - Jun 17 15:44:59 +0000 2019","favourites_count":4974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":563,"lang":null,"status":{"created_at":"Wed - Mar 02 15:43:18 +0000 2022","id":1499047703694778374,"id_str":"1499047703694778374","text":"RT - @ksvarnon: A bright spot in the chaos: the students I''ve been in contact - with a Sumy now have food and water. Thanks to my contact in Su\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ksvarnon","name":"Kimberly - St. Julian-Varnon","id":17101180,"id_str":"17101180","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 15:16:32 +0000 2022","id":1499040968363986944,"id_str":"1499040968363986944","text":"A - bright spot in the chaos: the students I''ve been in contact with a Sumy now - have food and water. Thanks to my con\u2026 https:\/\/t.co\/7o0QLYxoHB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7o0QLYxoHB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499040968363986944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":960,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":77,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309162692360523780\/U2K8XC0m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309162692360523780\/U2K8XC0m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1140646527850827778\/1600963684","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":722512003546222593,"id_str":"722512003546222593","name":"therealjaymath","screen_name":"therealjaymath","location":"","description":"I''ll - take Gazpacho Police for $100, Alex!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":647,"listed_count":0,"created_at":"Tue - Apr 19 19:47:40 +0000 2016","favourites_count":3388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4491,"lang":null,"status":{"created_at":"Sat - Mar 26 04:06:28 +0000 2022","id":1507569649717702658,"id_str":"1507569649717702658","text":"@RepMTG - Who show''s up to a gas station with only $4? Haven''t they heard, jobless - claims haven''t been this low since 1969?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMTG","name":"Rep. - Marjorie Taylor Greene","id":1344356576786866176,"id_str":"1344356576786866176","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507533878726168585,"in_reply_to_status_id_str":"1507533878726168585","in_reply_to_user_id":1344356576786866176,"in_reply_to_user_id_str":"1344356576786866176","in_reply_to_screen_name":"RepMTG","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301949645694873610\/jFk_7yUo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301949645694873610\/jFk_7yUo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":280222977,"id_str":"280222977","name":"Lorna - Conti","screen_name":"krazeldy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":1142,"listed_count":0,"created_at":"Sun - Apr 10 22:16:53 +0000 2011","favourites_count":1253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2792061396\/a072b86a8c7d422c93f5f260a7deb1a0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2792061396\/a072b86a8c7d422c93f5f260a7deb1a0_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287725994103705600,"id_str":"1287725994103705600","name":"Kastone''s - finest\ud83c\uddfa\ud83c\uddec","screen_name":"bravniwamanya","location":"Kampala, - Uganda","description":"Ebyensi nkamarwa||Tour & travel scholar||Farming ||ManU\u2764\ufe0f - \n \n \u260e 256-700397628","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1208,"friends_count":3644,"listed_count":3,"created_at":"Mon - Jul 27 12:27:40 +0000 2020","favourites_count":10389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21536,"lang":null,"status":{"created_at":"Sat - Mar 26 10:35:41 +0000 2022","id":1507667600683188234,"id_str":"1507667600683188234","text":"RT - @GalaxyFMUg: A round of applause to the #ZzinaAwards22 host @PrimAsiimwe. - A stunning Queen we obey \ud83d\ude4c https:\/\/t.co\/FhXIpfX6Ty","truncated":false,"entities":{"hashtags":[{"text":"ZzinaAwards22","indices":[43,57]}],"symbols":[],"user_mentions":[{"screen_name":"GalaxyFMUg","name":"#ZzinaAwards22","id":1079123803,"id_str":"1079123803","indices":[3,14]},{"screen_name":"PrimAsiimwe","name":"Prim - Asiimwe","id":606410714,"id_str":"606410714","indices":[63,75]}],"urls":[],"media":[{"id":1507460221853184000,"id_str":"1507460221853184000","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","url":"https:\/\/t.co\/FhXIpfX6Ty","display_url":"pic.twitter.com\/FhXIpfX6Ty","expanded_url":"https:\/\/twitter.com\/GalaxyFMUg\/status\/1507460233257525252\/photo\/1","type":"photo","sizes":{"large":{"w":1364,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}},"source_status_id":1507460233257525252,"source_status_id_str":"1507460233257525252","source_user_id":1079123803,"source_user_id_str":"1079123803"}]},"extended_entities":{"media":[{"id":1507460221853184000,"id_str":"1507460221853184000","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","url":"https:\/\/t.co\/FhXIpfX6Ty","display_url":"pic.twitter.com\/FhXIpfX6Ty","expanded_url":"https:\/\/twitter.com\/GalaxyFMUg\/status\/1507460233257525252\/photo\/1","type":"photo","sizes":{"large":{"w":1364,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}},"source_status_id":1507460233257525252,"source_status_id_str":"1507460233257525252","source_user_id":1079123803,"source_user_id_str":"1079123803"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:51:41 +0000 2022","id":1507460233257525252,"id_str":"1507460233257525252","text":"A - round of applause to the #ZzinaAwards22 host @PrimAsiimwe. A stunning Queen - we obey \ud83d\ude4c https:\/\/t.co\/FhXIpfX6Ty","truncated":false,"entities":{"hashtags":[{"text":"ZzinaAwards22","indices":[27,41]}],"symbols":[],"user_mentions":[{"screen_name":"PrimAsiimwe","name":"Prim - Asiimwe","id":606410714,"id_str":"606410714","indices":[47,59]}],"urls":[],"media":[{"id":1507460221853184000,"id_str":"1507460221853184000","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","url":"https:\/\/t.co\/FhXIpfX6Ty","display_url":"pic.twitter.com\/FhXIpfX6Ty","expanded_url":"https:\/\/twitter.com\/GalaxyFMUg\/status\/1507460233257525252\/photo\/1","type":"photo","sizes":{"large":{"w":1364,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507460221853184000,"id_str":"1507460221853184000","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuTFbyXMAAl230.jpg","url":"https:\/\/t.co\/FhXIpfX6Ty","display_url":"pic.twitter.com\/FhXIpfX6Ty","expanded_url":"https:\/\/twitter.com\/GalaxyFMUg\/status\/1507460233257525252\/photo\/1","type":"photo","sizes":{"large":{"w":1364,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":799,"h":1200,"resize":"fit"},"small":{"w":453,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"000c69ad123213a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/000c69ad123213a8.json","place_type":"admin","name":"Kampala","full_name":"Kampala, - Uganda","country_code":"UG","country":"Uganda","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[32.4166234,0.1648531],[32.7216969,0.1648531],[32.7216969,0.4136818],[32.4166234,0.4136818]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":375,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":26,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494548767600779265\/CrTbFohB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494548767600779265\/CrTbFohB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287725994103705600\/1612420136","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":416504538,"id_str":"416504538","name":"Tracey - Dunbar","screen_name":"TraceyDunbar","location":"","description":"loves walking - with ma new addition mars black&white border collie,,loves reading and watching - tv box sets","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":320,"listed_count":0,"created_at":"Sat - Nov 19 19:47:37 +0000 2011","favourites_count":642,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":561,"lang":null,"status":{"created_at":"Thu - Feb 24 06:26:57 +0000 2022","id":1496733366494056453,"id_str":"1496733366494056453","text":"Stay - safe folks been blizzard like snowy weather since 11pm hubby just arrived - at work to text me to say roads from\u2026 https:\/\/t.co\/GhW0jZExZZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GhW0jZExZZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496733366494056453","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1892350333\/50509_180375992064_7414151_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1892350333\/50509_180375992064_7414151_n_normal.jpg","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3123671972,"id_str":"3123671972","name":"Chick-Bill - Mavakala \ud83c\uddec\ud83c\udde7\ud83c\udde8\ud83c\udde9","screen_name":"chickbill92","location":"London, - England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":679,"listed_count":0,"created_at":"Wed - Apr 01 09:40:04 +0000 2015","favourites_count":480,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3337,"lang":null,"status":{"created_at":"Fri - Mar 25 02:49:42 +0000 2022","id":1507187944582393873,"id_str":"1507187944582393873","text":"@bola2016 - Ville du futur,mon oeil,oui.Chauss\u00e9es et routes pav\u00e9es d''or. Ses - projets sont des chim\u00e8res.Quel mirage ou\u2026 https:\/\/t.co\/IIxo42zUxR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bola2016","name":"BOLA - Fr\u00e9d\u00e9ric","id":3736442296,"id_str":"3736442296","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/IIxo42zUxR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507187944582393873","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506868290790035459,"in_reply_to_status_id_str":"1506868290790035459","in_reply_to_user_id":3736442296,"in_reply_to_user_id_str":"3736442296","in_reply_to_screen_name":"bola2016","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583202823590014976\/M7bERhEY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583202823590014976\/M7bERhEY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823201412125458435,"id_str":"823201412125458435","name":"one - singular pringle","screen_name":"thesecondlo","location":"Mint Hill, NC","description":"\ud83c\udde8\ud83c\uddf4\ud83c\uddfa\ud83c\uddf8.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":129,"listed_count":0,"created_at":"Sun - Jan 22 16:11:25 +0000 2017","favourites_count":6349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Tue - Apr 27 18:23:53 +0000 2021","id":1387110265821532176,"id_str":"1387110265821532176","text":"\"Young - users say TikTok is a crucial outlet for education about climate change, systemic - racism and the Black \nLive\u2026 https:\/\/t.co\/RAyk7SQ8rn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RAyk7SQ8rn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1387110265821532176","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319097658691276800\/En2zUWD-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319097658691276800\/En2zUWD-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823201412125458435\/1603332421","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":922455062,"id_str":"922455062","name":"TOM - SEWELL","screen_name":"ts69love","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":3020,"listed_count":0,"created_at":"Sat - Nov 03 04:44:39 +0000 2012","favourites_count":2026,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":320,"lang":null,"status":{"created_at":"Fri - Mar 25 15:38:26 +0000 2022","id":1507381400479141893,"id_str":"1507381400479141893","text":"RT - @ARCANINEJOJOE11: DO YOU WANT? 25cm \ud83c\udf46\ud83d\udca6\ud83d\udca6 #RT - \ud83d\udd25\nretweet and I write to you privately\n\n\ud83d\ude08 and subscribe - to my onlyfans promotion 50% OFF \ud83d\udd25\ud83e\udd24\u2026","truncated":false,"entities":{"hashtags":[{"text":"RT","indices":[43,46]}],"symbols":[],"user_mentions":[{"screen_name":"ARCANINEJOJOE11","name":"Arcaninejojoe","id":1470946544392286213,"id_str":"1470946544392286213","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:12:20 +0000 2022","id":1506665156071370762,"id_str":"1506665156071370762","text":"DO - YOU WANT? 25cm \ud83c\udf46\ud83d\udca6\ud83d\udca6 #RT \ud83d\udd25\nretweet - and I write to you privately\n\n\ud83d\ude08 and subscribe to my onlyfans - promotion 50% OFF\u2026 https:\/\/t.co\/cdQf0SoWNt","truncated":true,"entities":{"hashtags":[{"text":"RT","indices":[22,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cdQf0SoWNt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506665156071370762","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1463,"favorite_count":8938,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":1463,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240293451767431168,"id_str":"1240293451767431168","name":"trumplets","screen_name":"JoseMar55200587","location":"Central - African Republic","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":1039,"listed_count":0,"created_at":"Wed - Mar 18 15:06:24 +0000 2020","favourites_count":158,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":286,"lang":null,"status":{"created_at":"Sat - Jan 09 13:01:12 +0000 2021","id":1347891169833967616,"id_str":"1347891169833967616","text":"@RudyGiuliani - You","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RudyGiuliani","name":"Rudy - W. Giuliani","id":770781940341288960,"id_str":"770781940341288960","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1347727907142184961,"in_reply_to_status_id_str":"1347727907142184961","in_reply_to_user_id":770781940341288960,"in_reply_to_user_id_str":"770781940341288960","in_reply_to_screen_name":"RudyGiuliani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313109923023278082\/eW4ahgLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313109923023278082\/eW4ahgLt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":779922519285301248,"id_str":"779922519285301248","name":"Karen","screen_name":"Karen45102604","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":1420,"listed_count":0,"created_at":"Sun - Sep 25 05:56:33 +0000 2016","favourites_count":61363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20300,"lang":null,"status":{"created_at":"Sat - Mar 26 03:18:16 +0000 2022","id":1507557518846795776,"id_str":"1507557518846795776","text":"RT - @ASlavitt: OK, let me make sure I have it right. We have a well-qualified - Supreme Court nominee who has to listen blowhards like Ted Cru\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ASlavitt","name":"Andy - Slavitt \ud83d\udc99\ud83d\udc9b","id":1383272101,"id_str":"1383272101","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:26:20 +0000 2022","id":1507529349121028098,"id_str":"1507529349121028098","text":"OK, - let me make sure I have it right. We have a well-qualified Supreme Court nominee - who has to listen blowhards li\u2026 https:\/\/t.co\/6W7r5U1JEt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6W7r5U1JEt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529349121028098","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"a3c0ae863771d69e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a3c0ae863771d69e.json","place_type":"city","name":"Oxnard","full_name":"Oxnard, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-119.248624,34.101755],[-119.082154,34.101755],[-119.082154,34.262157],[-119.248624,34.262157]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1965,"favorite_count":10400,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1965,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216811723900047360,"id_str":"1216811723900047360","name":"Last - King","screen_name":"Iam_lastking01","location":"starboy","description":"creating - something iconic","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":1782,"listed_count":2,"created_at":"Mon - Jan 13 19:58:42 +0000 2020","favourites_count":37352,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":900,"lang":null,"status":{"created_at":"Fri - Mar 25 20:13:35 +0000 2022","id":1507450643451154437,"id_str":"1507450643451154437","text":"RT - @dulzdg: I no be Wizkid fan o but dis coming from Grammy itself is Legendary!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dulzdg","name":"IB - Abdul Tswako","id":935834987164852224,"id_str":"935834987164852224","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:11:03 +0000 2022","id":1507389610401411072,"id_str":"1507389610401411072","text":"I - no be Wizkid fan o but dis coming from Grammy itself is Legendary! https:\/\/t.co\/V4caqpN2ci","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V4caqpN2ci","expanded_url":"https:\/\/twitter.com\/RecordingAcad\/status\/1507385629042262022","display_url":"twitter.com\/RecordingAcad\/\u2026","indices":[69,92]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507385629042262022,"quoted_status_id_str":"1507385629042262022","retweet_count":279,"favorite_count":1271,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507385629042262022,"quoted_status_id_str":"1507385629042262022","retweet_count":279,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216814868541661187\/KCTFLMR-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216814868541661187\/KCTFLMR-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216811723900047360\/1601494110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":372650861,"id_str":"372650861","name":"Pat - O''Meara","screen_name":"patromeara","location":"Chicago, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":395,"listed_count":0,"created_at":"Tue - Sep 13 04:52:15 +0000 2011","favourites_count":5784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/831981519518437378\/6Vp-EUAr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/831981519518437378\/6Vp-EUAr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":511073076,"id_str":"511073076","name":"never - give up","screen_name":"mmgrill","location":"pittsburgh","description":"sports - football","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":77,"listed_count":0,"created_at":"Fri - Mar 02 00:04:44 +0000 2012","favourites_count":3218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":629,"lang":null,"status":{"created_at":"Mon - Mar 21 02:19:00 +0000 2022","id":1505730666297704452,"id_str":"1505730666297704452","text":"@SteveSchmidtSES - @russwest44 @Lakers I will watch","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SteveSchmidtSES","name":"Steve - Schmidt","id":786309892990574592,"id_str":"786309892990574592","indices":[0,16]},{"screen_name":"russwest44","name":"Russell - Westbrook","id":35982046,"id_str":"35982046","indices":[17,28]},{"screen_name":"Lakers","name":"Los - Angeles Lakers","id":20346956,"id_str":"20346956","indices":[29,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505635224780115968,"in_reply_to_status_id_str":"1505635224780115968","in_reply_to_user_id":786309892990574592,"in_reply_to_user_id_str":"786309892990574592","in_reply_to_screen_name":"SteveSchmidtSES","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875400821537734656,"id_str":"875400821537734656","name":"Khyber - Hayat","screen_name":"hayat_khyber","location":"Afghanistan","description":"Lecturer - at Ariana University, Freelance Journalist and Social activist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":2011,"listed_count":0,"created_at":"Thu - Jun 15 17:13:14 +0000 2017","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":364,"lang":null,"status":{"created_at":"Tue - Feb 08 01:21:58 +0000 2022","id":1490858411013152769,"id_str":"1490858411013152769","text":"one - person unfollowed me \/\/ automatically checked by https:\/\/t.co\/i595YOwFiE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i595YOwFiE","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181245419239723008\/-EpcCe8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181245419239723008\/-EpcCe8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875400821537734656\/1542037511","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298283062304833536,"id_str":"1298283062304833536","name":"Davit - Gavtadze","screen_name":"davit_gavtadze","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":209,"listed_count":0,"created_at":"Tue - Aug 25 15:36:57 +0000 2020","favourites_count":2608,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":952,"lang":null,"status":{"created_at":"Fri - Mar 11 18:39:24 +0000 2022","id":1502353511912296454,"id_str":"1502353511912296454","text":"RT - @BSpearsPromo: Paris Hilton congrats Britney on the #InternationalWomensDay - on Instagram. \ud83d\udc96 https:\/\/t.co\/2fMoKLhAwU","truncated":false,"entities":{"hashtags":[{"text":"InternationalWomensDay","indices":[55,78]}],"symbols":[],"user_mentions":[{"screen_name":"BSpearsPromo","name":"Spears - Promo","id":1445456155346567169,"id_str":"1445456155346567169","indices":[3,16]}],"urls":[],"media":[{"id":1501337452065218560,"id_str":"1501337452065218560","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":820,"resize":"fit"},"large":{"w":828,"h":820,"resize":"fit"},"small":{"w":680,"h":673,"resize":"fit"}},"source_status_id":1501337458486697984,"source_status_id_str":"1501337458486697984","source_user_id":1445456155346567169,"source_user_id_str":"1445456155346567169"}]},"extended_entities":{"media":[{"id":1501337452065218560,"id_str":"1501337452065218560","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":820,"resize":"fit"},"large":{"w":828,"h":820,"resize":"fit"},"small":{"w":680,"h":673,"resize":"fit"}},"source_status_id":1501337458486697984,"source_status_id_str":"1501337458486697984","source_user_id":1445456155346567169,"source_user_id_str":"1445456155346567169"},{"id":1501337452052717571,"id_str":"1501337452052717571","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU2XoAMOE-t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU2XoAMOE-t.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1501337458486697984,"source_status_id_str":"1501337458486697984","source_user_id":1445456155346567169,"source_user_id_str":"1445456155346567169"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 23:21:58 +0000 2022","id":1501337458486697984,"id_str":"1501337458486697984","text":"Paris - Hilton congrats Britney on the #InternationalWomensDay on Instagram. \ud83d\udc96 - https:\/\/t.co\/2fMoKLhAwU","truncated":false,"entities":{"hashtags":[{"text":"InternationalWomensDay","indices":[37,60]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501337452065218560,"id_str":"1501337452065218560","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":820,"resize":"fit"},"large":{"w":828,"h":820,"resize":"fit"},"small":{"w":680,"h":673,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501337452065218560,"id_str":"1501337452065218560","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU5WYAAWsUl.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":820,"resize":"fit"},"large":{"w":828,"h":820,"resize":"fit"},"small":{"w":680,"h":673,"resize":"fit"}}},{"id":1501337452052717571,"id_str":"1501337452052717571","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FNXSdU2XoAMOE-t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNXSdU2XoAMOE-t.jpg","url":"https:\/\/t.co\/2fMoKLhAwU","display_url":"pic.twitter.com\/2fMoKLhAwU","expanded_url":"https:\/\/twitter.com\/BSpearsPromo\/status\/1501337458486697984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":56,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298287805282635778\/vNE0jP1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298287805282635778\/vNE0jP1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1298283062304833536\/1598370976","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3306707529,"id_str":"3306707529","name":"Pam - #Timeless","screen_name":"petersonpam7","location":"Wisconsin, USA","description":"\ud83d\udc4b\ud83c\udf0d\ud83d\udc4d\ud83d\uddf3\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":1818,"listed_count":1,"created_at":"Wed - Jun 03 04:44:50 +0000 2015","favourites_count":24482,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1112,"lang":null,"status":{"created_at":"Tue - Nov 02 03:45:14 +0000 2021","id":1455380453981147138,"id_str":"1455380453981147138","text":"RT - @AaronRodgers12: Please take a minute to watch this and if you can, take a - few seconds to retweet this using the #retweet4good \nAll the\u2026","truncated":false,"entities":{"hashtags":[{"text":"retweet4good","indices":[116,129]}],"symbols":[],"user_mentions":[{"screen_name":"AaronRodgers12","name":"Aaron - Rodgers","id":130997057,"id_str":"130997057","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 21 15:29:33 +0000 2018","id":1065265967897415682,"id_str":"1065265967897415682","text":"Please - take a minute to watch this and if you can, take a few seconds to retweet - this using the #retweet4good \nAll\u2026 https:\/\/t.co\/K4jeKNIGPM","truncated":true,"entities":{"hashtags":[{"text":"retweet4good","indices":[96,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K4jeKNIGPM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1065265967897415682","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116920,"favorite_count":104247,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":116920,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497751591021125635\/0ZjMm-Ib_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497751591021125635\/0ZjMm-Ib_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3306707529\/1533069311","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":428302607,"id_str":"428302607","name":"Jakster","screen_name":"Jakster53","location":"St. - Louis, Missouri","description":"Professional Musician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":562,"listed_count":13,"created_at":"Sun - Dec 04 16:00:04 +0000 2011","favourites_count":77818,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62256,"lang":null,"status":{"created_at":"Sat - Mar 26 07:49:59 +0000 2022","id":1507625900925411328,"id_str":"1507625900925411328","text":"RT - @theaterlover1: Friday in @CentralParkNYC\u2019s north end with a photogenic - ring-necked duck & male downy woodpecker. #BirdTwitter #birdphot\u2026","truncated":false,"entities":{"hashtags":[{"text":"BirdTwitter","indices":[121,133]}],"symbols":[],"user_mentions":[{"screen_name":"theaterlover1","name":"Ileen - aka sophomore bird watcher","id":213730959,"id_str":"213730959","indices":[3,17]},{"screen_name":"CentralParkNYC","name":"Central - Park","id":96795310,"id_str":"96795310","indices":[29,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:05:02 +0000 2022","id":1507523989123518469,"id_str":"1507523989123518469","text":"Friday - in @CentralParkNYC\u2019s north end with a photogenic ring-necked duck & - male downy woodpecker. #BirdTwitter\u2026 https:\/\/t.co\/oyCzMNnEdm","truncated":true,"entities":{"hashtags":[{"text":"BirdTwitter","indices":[102,114]}],"symbols":[],"user_mentions":[{"screen_name":"CentralParkNYC","name":"Central - Park","id":96795310,"id_str":"96795310","indices":[10,25]}],"urls":[{"url":"https:\/\/t.co\/oyCzMNnEdm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507523989123518469","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":60,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032367306775703556\/e0zwhpsk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032367306775703556\/e0zwhpsk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17993399,"id_str":"17993399","name":"Eric - Banks","screen_name":"eric_banks","location":"Charlotte, NC","description":"\"And - the men who hold high places, must be the ones who start, to mould a new reality, - closer to the heart.\" Husband, Dad, Ironman, F3Tyra, Modern Day Warrior","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1162,"friends_count":2973,"listed_count":0,"created_at":"Tue - Dec 09 15:37:32 +0000 2008","favourites_count":83810,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16368,"lang":null,"status":{"created_at":"Fri - Mar 25 20:30:39 +0000 2022","id":1507454941585149974,"id_str":"1507454941585149974","text":"\"The - Batman\" deleted scene, spoiler alert. \n\nI like this take on Batman as a - detective of few words. https:\/\/t.co\/kbFIx98XPk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kbFIx98XPk","expanded_url":"https:\/\/twitter.com\/TheBatmanFilm_\/status\/1507041008315506695","display_url":"twitter.com\/TheBatmanFilm_\u2026","indices":[101,124]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507041008315506695,"quoted_status_id_str":"1507041008315506695","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1412411454544875522\/v3TfOXJq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1412411454544875522\/v3TfOXJq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17993399\/1611246717","profile_link_color":"3C3940","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"0099B9","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1184747716376715264,"id_str":"1184747716376715264","name":"Coruzzi - robert","screen_name":"CoruzziR","location":"B\u00e9ziers","description":"retraite","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":253,"friends_count":2888,"listed_count":1,"created_at":"Thu - Oct 17 08:27:47 +0000 2019","favourites_count":2937,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5909,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237636815718363137\/-r-jOds0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237636815718363137\/-r-jOds0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1184747716376715264\/1571304739","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1097829847953485824,"id_str":"1097829847953485824","name":"Dulce - Nordelo","screen_name":"DulceNordelo5","location":"Miami, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2458,"friends_count":3973,"listed_count":2,"created_at":"Tue - Feb 19 12:06:47 +0000 2019","favourites_count":123983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112031,"lang":null,"status":{"created_at":"Mon - Sep 20 00:42:47 +0000 2021","id":1439751862471827461,"id_str":"1439751862471827461","text":"RT - @DulceNordelo5: https:\/\/t.co\/7YV17Q5Puy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DulceNordelo5","name":"Dulce - Nordelo","id":1097829847953485824,"id_str":"1097829847953485824","indices":[3,17]}],"urls":[],"media":[{"id":1439572837161918465,"id_str":"1439572837161918465","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","url":"https:\/\/t.co\/7YV17Q5Puy","display_url":"pic.twitter.com\/7YV17Q5Puy","expanded_url":"https:\/\/twitter.com\/DulceNordelo5\/status\/1439572841465253888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"},"small":{"w":480,"h":480,"resize":"fit"},"large":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1439572841465253888,"source_status_id_str":"1439572841465253888","source_user_id":1097829847953485824,"source_user_id_str":"1097829847953485824"}]},"extended_entities":{"media":[{"id":1439572837161918465,"id_str":"1439572837161918465","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","url":"https:\/\/t.co\/7YV17Q5Puy","display_url":"pic.twitter.com\/7YV17Q5Puy","expanded_url":"https:\/\/twitter.com\/DulceNordelo5\/status\/1439572841465253888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"},"small":{"w":480,"h":480,"resize":"fit"},"large":{"w":480,"h":480,"resize":"fit"}},"source_status_id":1439572841465253888,"source_status_id_str":"1439572841465253888","source_user_id":1097829847953485824,"source_user_id_str":"1097829847953485824"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 19 12:51:26 +0000 2021","id":1439572841465253888,"id_str":"1439572841465253888","text":"https:\/\/t.co\/7YV17Q5Puy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1439572837161918465,"id_str":"1439572837161918465","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","url":"https:\/\/t.co\/7YV17Q5Puy","display_url":"pic.twitter.com\/7YV17Q5Puy","expanded_url":"https:\/\/twitter.com\/DulceNordelo5\/status\/1439572841465253888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"},"small":{"w":480,"h":480,"resize":"fit"},"large":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1439572837161918465,"id_str":"1439572837161918465","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E_pj3kNWYAEGj4q.jpg","url":"https:\/\/t.co\/7YV17Q5Puy","display_url":"pic.twitter.com\/7YV17Q5Puy","expanded_url":"https:\/\/twitter.com\/DulceNordelo5\/status\/1439572841465253888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"},"small":{"w":480,"h":480,"resize":"fit"},"large":{"w":480,"h":480,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097830111808835591\/GAoMrcOX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097830111808835591\/GAoMrcOX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1187136045554507777,"id_str":"1187136045554507777","name":"Ellen - McGovern @EllenMcGovern","screen_name":"global_ellen","location":"Maryland, - USA","description":"Community activist, former Advocacy VP @UNANCA, Feminist, - and Environmentalist. Gun Violence Prevention Task Force Chair @WNDC_1922. - #Resistor.","url":"https:\/\/t.co\/ijzfqotTQL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ijzfqotTQL","expanded_url":"http:\/\/www.unanca.org\/","display_url":"unanca.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":519,"listed_count":0,"created_at":"Wed - Oct 23 22:39:42 +0000 2019","favourites_count":5117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1434,"lang":null,"status":{"created_at":"Fri - Mar 25 21:13:14 +0000 2022","id":1507465655360147456,"id_str":"1507465655360147456","text":"Brooksby, - did not expect this from you. Please guys deal with your anger!! You are the - Lucky ones. Have you checked\u2026 https:\/\/t.co\/WIzVBXhzoD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WIzVBXhzoD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507465655360147456","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507313501047513157,"quoted_status_id_str":"1507313501047513157","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189676775749632000\/y_MyRy0D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189676775749632000\/y_MyRy0D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1187136045554507777\/1571871259","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22724972,"id_str":"22724972","name":"sandra","screen_name":"soapyy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":596,"listed_count":0,"created_at":"Wed - Mar 04 03:10:05 +0000 2009","favourites_count":5158,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":394,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/913578707666690048\/5fzA_QaT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/913578707666690048\/5fzA_QaT_normal.jpg","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1052775531710533633,"id_str":"1052775531710533633","name":"Jerry","screen_name":"jerry_cheeku","location":"","description":"No - matter how high you go, always stay grounded.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":853,"listed_count":0,"created_at":"Thu - Oct 18 04:17:01 +0000 2018","favourites_count":13956,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":677,"lang":null,"status":{"created_at":"Tue - Mar 15 19:21:46 +0000 2022","id":1503813724888768512,"id_str":"1503813724888768512","text":"@MattJaffeMusic - Now that''s the best place...\ud83d\udc4c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattJaffeMusic","name":"Matt - Jaffe","id":714795210,"id_str":"714795210","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1498354681029881856,"in_reply_to_status_id_str":"1498354681029881856","in_reply_to_user_id":714795210,"in_reply_to_user_id_str":"714795210","in_reply_to_screen_name":"MattJaffeMusic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282295231979778048\/3psXheZP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282295231979778048\/3psXheZP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052775531710533633\/1594568090","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1079820224361201664,"id_str":"1079820224361201664","name":"James","screen_name":"GingerJimmy_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":493,"listed_count":0,"created_at":"Mon - Dec 31 19:22:58 +0000 2018","favourites_count":434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313027372053037058\/RtvG9Dp4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313027372053037058\/RtvG9Dp4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2147914825,"id_str":"2147914825","name":"Karena - O''Riordan","screen_name":"karenaoriordan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":544,"listed_count":0,"created_at":"Mon - Oct 21 22:13:45 +0000 2013","favourites_count":1589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72,"lang":null,"status":{"created_at":"Mon - Jul 19 05:33:40 +0000 2021","id":1416994627287011329,"id_str":"1416994627287011329","text":"@RBReich - I think he might be the most loathesome human being ever to exist.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1416848204700606467,"in_reply_to_status_id_str":"1416848204700606467","in_reply_to_user_id":148529707,"in_reply_to_user_id_str":"148529707","in_reply_to_screen_name":"RBReich","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":612788309,"id_str":"612788309","name":"Betty - Schulz","screen_name":"bettsschulz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":1504,"listed_count":1,"created_at":"Tue - Jun 19 19:18:02 +0000 2012","favourites_count":2521,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Tue - Aug 18 01:29:26 +0000 2020","id":1295533228170723328,"id_str":"1295533228170723328","text":"@Nightline - Amazing!! Hi from \ud83c\udde8\ud83c\udde6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nightline","name":"Nightline","id":19740592,"id_str":"19740592","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1295530971966644224,"in_reply_to_status_id_str":"1295530971966644224","in_reply_to_user_id":19740592,"in_reply_to_user_id_str":"19740592","in_reply_to_screen_name":"Nightline","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496765764133605376\/lK5QokqL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496765764133605376\/lK5QokqL_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2714954101,"id_str":"2714954101","name":"Zeezy!!","screen_name":"champak2020","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":951,"listed_count":0,"created_at":"Thu - Aug 07 16:51:37 +0000 2014","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Fri - Nov 26 06:49:41 +0000 2021","id":1464124179402264579,"id_str":"1464124179402264579","text":"@munna_please - Kina risako timi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"munna_please","name":"AB","id":888963235885441028,"id_str":"888963235885441028","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1463552962689593346,"in_reply_to_status_id_str":"1463552962689593346","in_reply_to_user_id":888963235885441028,"in_reply_to_user_id_str":"888963235885441028","in_reply_to_screen_name":"munna_please","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284744612402180097\/WML_oZwW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284744612402180097\/WML_oZwW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286329634519482368,"id_str":"1286329634519482368","name":"Mary - Ellen Story","screen_name":"MaryEllenStory7","location":"Sikeston, MO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":97,"listed_count":0,"created_at":"Thu - Jul 23 15:58:18 +0000 2020","favourites_count":2758,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":194,"lang":null,"status":{"created_at":"Fri - Jan 28 20:55:42 +0000 2022","id":1487167521664942080,"id_str":"1487167521664942080","text":"@bennyjohnson - Creepy, just creepy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bennyjohnson","name":"Benny","id":15212187,"id_str":"15212187","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487165165808365569,"in_reply_to_status_id_str":"1487165165808365569","in_reply_to_user_id":15212187,"in_reply_to_user_id_str":"15212187","in_reply_to_screen_name":"bennyjohnson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1112187755210039297,"id_str":"1112187755210039297","name":"Meaghan - Marian","screen_name":"MarianMeaghan","location":"Denver, CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":604,"listed_count":0,"created_at":"Sun - Mar 31 02:59:59 +0000 2019","favourites_count":675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Wed - Sep 23 01:39:35 +0000 2020","id":1308581748867907584,"id_str":"1308581748867907584","text":"@tomchampion3 - @PostOakDenver It was awesome! I\u2019ll be back","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tomchampion3","name":"Chris - Stacy","id":211624095,"id_str":"211624095","indices":[0,13]},{"screen_name":"PostOakDenver","name":"Post - Oak Denver","id":1085402077835247618,"id_str":"1085402077835247618","indices":[14,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1308581590373728263,"in_reply_to_status_id_str":"1308581590373728263","in_reply_to_user_id":211624095,"in_reply_to_user_id_str":"211624095","in_reply_to_screen_name":"tomchampion3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1112188089353396230\/eTRo_guT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1112188089353396230\/eTRo_guT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1112187755210039297\/1554624816","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267984362882162690,"id_str":"1267984362882162690","name":"Rebecca","screen_name":"Rebecca99499571","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":130,"listed_count":0,"created_at":"Wed - Jun 03 01:00:41 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2721200627,"id_str":"2721200627","name":"julia - Carmichael","screen_name":"julia1carmicha1","location":"Dublin City, Ireland","description":"A - governance, risk management and compliance professional who enjoys working - with innovative and talented organisations\/people. All commentary\/views - are my own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":394,"listed_count":0,"created_at":"Tue - Jul 22 23:22:05 +0000 2014","favourites_count":3435,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":889,"lang":null,"status":{"created_at":"Wed - Mar 02 06:44:49 +0000 2022","id":1498912191134711809,"id_str":"1498912191134711809","text":"RT - @TCDSU_President: At long last, the famous Lecky door has re-opened!\ud83c\udf8a - https:\/\/t.co\/WJFZRv1XC2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TCDSU_President","name":"Leah - Keogh - Text TCD to 50808","id":377240209,"id_str":"377240209","indices":[3,19]}],"urls":[],"media":[{"id":1498613594312826884,"id_str":"1498613594312826884","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","url":"https:\/\/t.co\/WJFZRv1XC2","display_url":"pic.twitter.com\/WJFZRv1XC2","expanded_url":"https:\/\/twitter.com\/TCDSU_President\/status\/1498613599518003205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2046,"resize":"fit"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"}},"source_status_id":1498613599518003205,"source_status_id_str":"1498613599518003205","source_user_id":377240209,"source_user_id_str":"377240209"}]},"extended_entities":{"media":[{"id":1498613594312826884,"id_str":"1498613594312826884","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","url":"https:\/\/t.co\/WJFZRv1XC2","display_url":"pic.twitter.com\/WJFZRv1XC2","expanded_url":"https:\/\/twitter.com\/TCDSU_President\/status\/1498613599518003205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2046,"resize":"fit"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"}},"source_status_id":1498613599518003205,"source_status_id_str":"1498613599518003205","source_user_id":377240209,"source_user_id_str":"377240209"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 10:58:19 +0000 2022","id":1498613599518003205,"id_str":"1498613599518003205","text":"At - long last, the famous Lecky door has re-opened!\ud83c\udf8a https:\/\/t.co\/WJFZRv1XC2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1498613594312826884,"id_str":"1498613594312826884","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","url":"https:\/\/t.co\/WJFZRv1XC2","display_url":"pic.twitter.com\/WJFZRv1XC2","expanded_url":"https:\/\/twitter.com\/TCDSU_President\/status\/1498613599518003205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2046,"resize":"fit"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498613594312826884,"id_str":"1498613594312826884","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMwlH8CWYAQLcrd.jpg","url":"https:\/\/t.co\/WJFZRv1XC2","display_url":"pic.twitter.com\/WJFZRv1XC2","expanded_url":"https:\/\/twitter.com\/TCDSU_President\/status\/1498613599518003205\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2046,"resize":"fit"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":141,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126282608495689733\/2IdYaDNo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126282608495689733\/2IdYaDNo_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1171515481913585664,"id_str":"1171515481913585664","name":"@realchuckthompson","screen_name":"chuckth89213056","location":"Oklahoma, - USA","description":"Oklahoma City\u2019s oldest soccer player","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":133,"listed_count":0,"created_at":"Tue - Sep 10 20:07:32 +0000 2019","favourites_count":243,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Mon - Dec 07 01:10:22 +0000 2020","id":1335753485749538816,"id_str":"1335753485749538816","text":"@realDonaldTrump - @RudyGiuliani Don\u2019t you mean the trump virus","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]},{"screen_name":"RudyGiuliani","name":"Rudy - W. Giuliani","id":770781940341288960,"id_str":"770781940341288960","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1335679426516881409,"in_reply_to_status_id_str":"1335679426516881409","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1182629408768774144\/OA14KtfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1182629408768774144\/OA14KtfV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282567104114417664,"id_str":"1282567104114417664","name":"Paulo - Lengai","screen_name":"PauloLengai","location":"Arusha, Tanzania","description":"Self - C.E.O, Live Easy because you never fulfill everything you need in this life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":120,"listed_count":0,"created_at":"Mon - Jul 13 06:47:09 +0000 2020","favourites_count":305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Mon - Jun 07 13:20:46 +0000 2021","id":1401891888110747651,"id_str":"1401891888110747651","text":"@Hamic_Chich - @BET_Africa \ud83d\udc8e\ud83d\udc8e\ud83d\udc8e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Hamic_Chich","name":"Big","id":3375272759,"id_str":"3375272759","indices":[0,12]},{"screen_name":"BET_Africa","name":"BET - Africa","id":1156407384,"id_str":"1156407384","indices":[13,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1401872256070979587,"in_reply_to_status_id_str":"1401872256070979587","in_reply_to_user_id":3375272759,"in_reply_to_user_id_str":"3375272759","in_reply_to_screen_name":"Hamic_Chich","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1282567525474205697\/P4Wf5KpE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1282567525474205697\/P4Wf5KpE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":363684858,"id_str":"363684858","name":"Jason - Leshowitz","screen_name":"jaylesh74","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":693,"listed_count":1,"created_at":"Sun - Aug 28 14:31:29 +0000 2011","favourites_count":225,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":91,"lang":null,"status":{"created_at":"Mon - Mar 21 21:10:55 +0000 2022","id":1506015522252476420,"id_str":"1506015522252476420","text":"Btw, - true blue member here for almost a decade. Perhaps not for much longer, though, - if this situation isn''t resolved in the near future","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506005441033158657,"in_reply_to_status_id_str":"1506005441033158657","in_reply_to_user_id":363684858,"in_reply_to_user_id_str":"363684858","in_reply_to_screen_name":"jaylesh74","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269390108811309057,"id_str":"1269390108811309057","name":"Will - Son","screen_name":"WillSon30102895","location":"","description":"\"\"\"\"\"\"WORK - HARD OR DIE TRYING\"\"\"\n NEVER GIVE UP","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":812,"listed_count":0,"created_at":"Sat - Jun 06 22:06:16 +0000 2020","favourites_count":281,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Sat - Jan 29 07:53:00 +0000 2022","id":1487332938278649858,"id_str":"1487332938278649858","text":"@ridhiwankikwete - Aminaaa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ridhiwankikwete","name":"Ridhiwani - Jakaya Kikwete","id":263201896,"id_str":"263201896","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1487076901114073093,"in_reply_to_status_id_str":"1487076901114073093","in_reply_to_user_id":263201896,"in_reply_to_user_id_str":"263201896","in_reply_to_screen_name":"ridhiwankikwete","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269390712031887367\/BJXIzjFR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269390712031887367\/BJXIzjFR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1029406823348981760,"id_str":"1029406823348981760","name":"Prema - McKeever","screen_name":"PremaMcK","location":"Vancouver, British Columbia","description":"Seeker, - somatic therapist, trauma educator... leading workshops to transform what - no longer serves you & create a healthier, more passionate life.","url":"https:\/\/t.co\/nR7ya0VMS6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nR7ya0VMS6","expanded_url":"http:\/\/www.SacredInquiry.com","display_url":"SacredInquiry.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":637,"listed_count":0,"created_at":"Tue - Aug 14 16:38:06 +0000 2018","favourites_count":2456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Mon - Mar 15 23:21:03 +0000 2021","id":1371602371629834242,"id_str":"1371602371629834242","text":"RT - @ciispubprograms: On April 10-11 join @PremaMcK for a transformative two-day - workshop exploring the BioDynamic Breathwork & Trauma Relea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ciispubprograms","name":"CIIS - Public Programs","id":91235717,"id_str":"91235717","indices":[3,19]},{"screen_name":"PremaMcK","name":"Prema - McKeever","id":1029406823348981760,"id_str":"1029406823348981760","indices":[41,50]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 14 17:00:00 +0000 2021","id":1371144089597513737,"id_str":"1371144089597513737","text":"On - April 10-11 join @PremaMcK for a transformative two-day workshop exploring - the BioDynamic Breathwork & Trauma Re\u2026 https:\/\/t.co\/3lhNGyXwlz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PremaMcK","name":"Prema - McKeever","id":1029406823348981760,"id_str":"1029406823348981760","indices":[20,29]}],"urls":[{"url":"https:\/\/t.co\/3lhNGyXwlz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1371144089597513737","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1096209751950520320\/1kTj_Irl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1096209751950520320\/1kTj_Irl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029406823348981760\/1534278428","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34482091,"id_str":"34482091","name":"Jon - L","screen_name":"JonTheBruin","location":"San Francisco, CA","description":"I - tweet stuff during the day... practice law at night","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":866,"listed_count":6,"created_at":"Thu - Apr 23 01:35:06 +0000 2009","favourites_count":471,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":806,"lang":null,"status":{"created_at":"Tue - Dec 28 06:10:23 +0000 2021","id":1475710704451657728,"id_str":"1475710704451657728","text":"@CaltransDist3 - @CountyElDorado @NevadaCountyCA ETA on 80?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CaltransDist3","name":"Caltrans - District 3","id":509080304,"id_str":"509080304","indices":[0,14]},{"screen_name":"CountyElDorado","name":"County - of El Dorado","id":2542433046,"id_str":"2542433046","indices":[15,30]},{"screen_name":"NevadaCountyCA","name":"County - of Nevada, CA","id":143194014,"id_str":"143194014","indices":[31,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1475709350031212544,"in_reply_to_status_id_str":"1475709350031212544","in_reply_to_user_id":509080304,"in_reply_to_user_id_str":"509080304","in_reply_to_screen_name":"CaltransDist3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1637325424\/KubEh8L5_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1637325424\/KubEh8L5_normal","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":59935808,"id_str":"59935808","name":"Adam - \ud83c\udf3b","screen_name":"Adam_Boyle_","location":"Toronto, Ontario","description":"Moody, - startling, and hilarious.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":317,"friends_count":649,"listed_count":4,"created_at":"Sat - Jul 25 00:51:42 +0000 2009","favourites_count":16733,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":172,"lang":null,"status":{"created_at":"Sat - Mar 26 07:07:07 +0000 2022","id":1507615110914842632,"id_str":"1507615110914842632","text":"@luv2filibuster - This better be interesting or you''ll be hearing from my Lowyer","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"luv2filibuster","name":"\ud835\udcbf\ud835\udc52\ud835\udcbb\ud835\udcbb - \ud835\udcb7\ud835\udc52\ud835\udcc8\ud835\udc5c\ud835\udcc8 \ud83d\ude18","id":105321896,"id_str":"105321896","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507528671904645124,"in_reply_to_status_id_str":"1507528671904645124","in_reply_to_user_id":105321896,"in_reply_to_user_id_str":"105321896","in_reply_to_screen_name":"luv2filibuster","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499295621320171523\/zhzqc1DT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499295621320171523\/zhzqc1DT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59935808\/1625524910","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2251234323,"id_str":"2251234323","name":"Lisa - Genco","screen_name":"Lisamgenco","location":"Loranger, LA, USA","description":"Ron''s - wife, Jayce and Kyleigh''s mom, and teacher. God is good all the time - All - the time God is good!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":298,"friends_count":1083,"listed_count":5,"created_at":"Mon - Dec 30 02:49:50 +0000 2013","favourites_count":12138,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1236,"lang":null,"status":{"created_at":"Sat - Mar 26 01:27:37 +0000 2022","id":1507529674066636805,"id_str":"1507529674066636805","text":"St. - Peter\u2019s \ud83e\udd9a WOW!!! Lots of shining moments! #MarchMadness","truncated":false,"entities":{"hashtags":[{"text":"MarchMadness","indices":[46,59]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1363575850940194818\/e7evzM5T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1363575850940194818\/e7evzM5T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2251234323\/1613936792","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269982290848948224,"id_str":"1269982290848948224","name":"Grove","screen_name":"Grive73833338","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":661,"listed_count":0,"created_at":"Mon - Jun 08 13:19:24 +0000 2020","favourites_count":4392,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Fri - Oct 23 13:06:41 +0000 2020","id":1319626297388224515,"id_str":"1319626297388224515","text":"@officialnairam1 - 0506117409\nGtbank","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"officialnairam1","name":"nairamarley","id":1150409755342573569,"id_str":"1150409755342573569","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1319403409515139074,"in_reply_to_status_id_str":"1319403409515139074","in_reply_to_user_id":1150409755342573569,"in_reply_to_user_id_str":"1150409755342573569","in_reply_to_screen_name":"officialnairam1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269982492683108353\/D9Gi4omW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269982492683108353\/D9Gi4omW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278736711279837186,"id_str":"1278736711279837186","name":"@davidsonfree37","screen_name":"davidsonfree37","location":"","description":"Selfless - respect and loyalty anchor in honesty.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":734,"listed_count":0,"created_at":"Thu - Jul 02 17:06:32 +0000 2020","favourites_count":4070,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":724,"lang":null,"status":{"created_at":"Fri - Jun 04 14:48:22 +0000 2021","id":1400826768584552452,"id_str":"1400826768584552452","text":"RT - @DSGovernment: UPDATE:\nGovernor Ifeanyi Okowa has appointed Chief Patrick - Ukah as the Secretary to the State Government. \n\nChief Ukah\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DSGovernment","name":"Delta - State Government","id":1027539428145864705,"id_str":"1027539428145864705","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jun 04 12:29:38 +0000 2021","id":1400791854786957319,"id_str":"1400791854786957319","text":"UPDATE:\nGovernor - Ifeanyi Okowa has appointed Chief Patrick Ukah as the Secretary to the State - Government. \n\nChief\u2026 https:\/\/t.co\/s6NeUJHznm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s6NeUJHznm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1400791854786957319","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":180,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":72,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280054298295091201\/E4TXnQCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280054298295091201\/E4TXnQCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1278736711279837186\/1604052639","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1009773307342835713,"id_str":"1009773307342835713","name":"zuhal","screen_name":"zuhal48863109","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":491,"listed_count":0,"created_at":"Thu - Jun 21 12:21:31 +0000 2018","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":623,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4847643153,"id_str":"4847643153","name":"Ellen","screen_name":"ellen09813854","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":209,"listed_count":1,"created_at":"Tue - Jan 26 01:45:43 +0000 2016","favourites_count":21363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3176,"lang":null,"status":{"created_at":"Fri - Mar 18 17:14:04 +0000 2022","id":1504868752650776576,"id_str":"1504868752650776576","text":"RT - @joshrogin: .@MaxBoot is right: \"We shouldn\u2019t let an aggressor veto - aid to his victims. If the Ukrainians say they want MiG-29\u2019s, we sho\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joshrogin","name":"Josh - Rogin","id":15766082,"id_str":"15766082","indices":[3,13]},{"screen_name":"MaxBoot","name":"Max - Boot \ud83c\uddfa\ud83c\udde6","id":28162211,"id_str":"28162211","indices":[16,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 15:57:15 +0000 2022","id":1504849422441668614,"id_str":"1504849422441668614","text":".@MaxBoot - is right: \"We shouldn\u2019t let an aggressor veto aid to his victims. If - the Ukrainians say they want MiG-29\u2019\u2026 https:\/\/t.co\/Pl7FhQRt5c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaxBoot","name":"Max - Boot \ud83c\uddfa\ud83c\udde6","id":28162211,"id_str":"28162211","indices":[1,9]}],"urls":[{"url":"https:\/\/t.co\/Pl7FhQRt5c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504849422441668614","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":543,"favorite_count":2177,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":543,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/867030104714735620\/ICxAa3sN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/867030104714735620\/ICxAa3sN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":38434301,"id_str":"38434301","name":"David - Stagg","screen_name":"djstagg007","location":"St Catharines, ON","description":"Chambly - County High School Class of 1971\nConcordia University Class of 1977","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":2125,"listed_count":3,"created_at":"Thu - May 07 13:55:17 +0000 2009","favourites_count":1500,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3959,"lang":null,"status":{"created_at":"Thu - Jan 13 20:59:40 +0000 2022","id":1481732701996601347,"id_str":"1481732701996601347","text":"I''ve - predicted the Green Bay Packers to be crowned Super Bowl LVI Champions! Click - below to make your playoff predi\u2026 https:\/\/t.co\/lVL28f0THk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lVL28f0THk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1481732701996601347","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3229146534\/7825354fcb3153715d7a0ed6cca77b6c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3229146534\/7825354fcb3153715d7a0ed6cca77b6c_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":783725418,"id_str":"783725418","name":"YF(T)","screen_name":"synozh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":350,"listed_count":0,"created_at":"Mon - Aug 27 03:36:40 +0000 2012","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Sun - Oct 10 02:09:44 +0000 2021","id":1447021498284351489,"id_str":"1447021498284351489","text":"RT - @iingwen: Our \ud83c\uddf9\ud83c\uddfc National Day Celebration live stream - starts now, with a series of musical, dance & other performances to begin - the fest\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iingwen","name":"\u8521\u82f1\u6587 - Tsai Ing-wen","id":155814794,"id_str":"155814794","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Oct 10 00:55:33 +0000 2021","id":1447002830544392192,"id_str":"1447002830544392192","text":"Our - \ud83c\uddf9\ud83c\uddfc National Day Celebration live stream starts now, - with a series of musical, dance & other performances to beg\u2026 https:\/\/t.co\/jo4xMN4jQb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jo4xMN4jQb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1447002830544392192","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1737,"favorite_count":7030,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1737,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/746081111185461248\/33KcgGEj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/746081111185461248\/33KcgGEj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16096735,"id_str":"16096735","name":"IUPAT","screen_name":"GoIUPAT","location":"","description":"The - International Union of Painters and Allied Trades. We''ve been fighting for - working people since 1887 and represent 140,000 workers across skilled trades.","url":"https:\/\/t.co\/SNEVsBibQo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SNEVsBibQo","expanded_url":"http:\/\/iupat.org","display_url":"iupat.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":16829,"friends_count":1122,"listed_count":282,"created_at":"Tue - Sep 02 13:53:53 +0000 2008","favourites_count":5785,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":9407,"lang":null,"status":{"created_at":"Fri - Mar 25 21:23:20 +0000 2022","id":1507468198228205570,"id_str":"1507468198228205570","text":"RT - @lizmcelroy: Another day, another reason to be incredibly proud of my union! - #1u","truncated":false,"entities":{"hashtags":[{"text":"1u","indices":[80,83]}],"symbols":[],"user_mentions":[{"screen_name":"lizmcelroy","name":"Liz - McElroy","id":254253201,"id_str":"254253201","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:51:22 +0000 2022","id":1507460152915464197,"id_str":"1507460152915464197","text":"Another - day, another reason to be incredibly proud of my union! #1u https:\/\/t.co\/a3HFxBrHT9","truncated":false,"entities":{"hashtags":[{"text":"1u","indices":[64,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a3HFxBrHT9","expanded_url":"https:\/\/twitter.com\/goiupat\/status\/1507385650173161473","display_url":"twitter.com\/goiupat\/status\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507385650173161473,"quoted_status_id_str":"1507385650173161473","retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507385650173161473,"quoted_status_id_str":"1507385650173161473","retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503696682516721666\/YBSo_QVD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503696682516721666\/YBSo_QVD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16096735\/1620672431","profile_link_color":"FAB81E","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":908559114317398016,"id_str":"908559114317398016","name":"Jaime","screen_name":"Jaime03999546","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":112,"listed_count":0,"created_at":"Fri - Sep 15 05:12:27 +0000 2017","favourites_count":313,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Sat - Aug 31 22:04:46 +0000 2019","id":1167921196484063232,"id_str":"1167921196484063232","text":"RT - @KVanessaHerrera: #Lima2019\n#JuegosParapanamericanos \ud83e\udd49\n\n\u00a1Jes\u00fas - Salv\u00e1 nos acaba de regalar la medalla n\u00famero 13 en los Juegos! El - parabad\u2026","truncated":false,"entities":{"hashtags":[{"text":"Lima2019","indices":[21,30]},{"text":"JuegosParapanamericanos","indices":[31,55]}],"symbols":[],"user_mentions":[{"screen_name":"KVanessaHerrera","name":"Vanessa - Herrera","id":432104450,"id_str":"432104450","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 31 16:44:00 +0000 2019","id":1167840470778597376,"id_str":"1167840470778597376","text":"#Lima2019\n#JuegosParapanamericanos - \ud83e\udd49\n\n\u00a1Jes\u00fas Salv\u00e1 nos acaba de regalar la medalla - n\u00famero 13 en los Juegos! El para\u2026 https:\/\/t.co\/NfibOT8Q1E","truncated":true,"entities":{"hashtags":[{"text":"Lima2019","indices":[0,9]},{"text":"JuegosParapanamericanos","indices":[10,34]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NfibOT8Q1E","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1167840470778597376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":309,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3565155316,"id_str":"3565155316","name":"Ismail - M. Sal","screen_name":"IsmailhabBashir","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":384,"listed_count":0,"created_at":"Sun - Sep 06 10:13:07 +0000 2015","favourites_count":382,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Thu - Jul 15 13:04:24 +0000 2021","id":1415658506682830848,"id_str":"1415658506682830848","text":"RT - @RuthNesoba: #Uganda: A man in #Kamuli District has survived lynching by an - angry mob for allegedly serving snake sauce instead of mudfi\u2026","truncated":false,"entities":{"hashtags":[{"text":"Uganda","indices":[16,23]},{"text":"Kamuli","indices":[34,41]}],"symbols":[],"user_mentions":[{"screen_name":"RuthNesoba","name":"Ruth - Nesoba","id":66058532,"id_str":"66058532","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 15 12:11:31 +0000 2021","id":1415645196981874692,"id_str":"1415645196981874692","text":"#Uganda: - A man in #Kamuli District has survived lynching by an angry mob for allegedly - serving snake sauce instead\u2026 https:\/\/t.co\/cMO4f4U8fE","truncated":true,"entities":{"hashtags":[{"text":"Uganda","indices":[0,7]},{"text":"Kamuli","indices":[18,25]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cMO4f4U8fE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1415645196981874692","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113081329300725761\/Uhq97QSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113081329300725761\/Uhq97QSP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":55096225,"id_str":"55096225","name":"Mayra","screen_name":"mayrasorondo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":170,"friends_count":585,"listed_count":0,"created_at":"Thu - Jul 09 01:21:14 +0000 2009","favourites_count":10048,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1236,"lang":null,"status":{"created_at":"Fri - Dec 17 18:59:47 +0000 2021","id":1471918063498969088,"id_str":"1471918063498969088","text":"@TorresGotay - Que hp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TorresGotay","name":"Benjam\u00edn - Torres Gotay \ud83c\uddf5\ud83c\uddf7","id":47855309,"id_str":"47855309","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1471906746692259842,"in_reply_to_status_id_str":"1471906746692259842","in_reply_to_user_id":47855309,"in_reply_to_user_id_str":"47855309","in_reply_to_screen_name":"TorresGotay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1341461259\/twphoto_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1341461259\/twphoto_normal.png","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2293322629,"id_str":"2293322629","name":"k0z","screen_name":"k0zivan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":405,"listed_count":1,"created_at":"Wed - Jan 15 20:06:29 +0000 2014","favourites_count":487,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Mon - Mar 21 19:50:01 +0000 2022","id":1505995163843407873,"id_str":"1505995163843407873","text":"@ZeddyHS - I guess the question would be how often is this just an awkward card in hand? - If you end up with one or bo\u2026 https:\/\/t.co\/lqaXuv1VcC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZeddyHS","name":"Zeddy","id":918290890774294528,"id_str":"918290890774294528","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/lqaXuv1VcC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505995163843407873","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505965293629173766,"in_reply_to_status_id_str":"1505965293629173766","in_reply_to_user_id":918290890774294528,"in_reply_to_user_id_str":"918290890774294528","in_reply_to_screen_name":"ZeddyHS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480656713439195138\/eqR0fMPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480656713439195138\/eqR0fMPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2293322629\/1641851086","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33291371,"id_str":"33291371","name":"Marci - Porto Mendes","screen_name":"portomendes","location":"Miami, Florida, USA","description":"Brazilian - lady who likes to share conversation w\/people of all walks of life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":283,"listed_count":1,"created_at":"Sun - Apr 19 19:41:33 +0000 2009","favourites_count":8464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":396,"lang":null,"status":{"created_at":"Mon - Mar 21 21:13:13 +0000 2022","id":1506016102119542784,"id_str":"1506016102119542784","text":"@fernaolmesquita - Inacredit\u00e1vel a Ignor\u00e2ncia que alguns dos leitores comentam","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fernaolmesquita","name":"Fernao - Lara Mesquita","id":27234335,"id_str":"27234335","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505505038143483907,"in_reply_to_status_id_str":"1505505038143483907","in_reply_to_user_id":27234335,"in_reply_to_user_id_str":"27234335","in_reply_to_screen_name":"fernaolmesquita","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193493122115940358\/jf9YFrq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193493122115940358\/jf9YFrq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33291371\/1573385909","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785627135968890880,"id_str":"785627135968890880","name":"lucian - morgan","screen_name":"lucian_morgan","location":"","description":"My comic - novel, Dog Christ, was a 2011 ABNA finalist and is available on Amazon in - paperback and ebook.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":330,"listed_count":0,"created_at":"Mon - Oct 10 23:44:40 +0000 2016","favourites_count":3666,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1096,"lang":null,"status":{"created_at":"Wed - Nov 17 00:55:05 +0000 2021","id":1460773452089114627,"id_str":"1460773452089114627","text":"RT - @DAILYDR3AMS: \/\/ wrongful execution , racism\n\nJulius Jones, an innocent - black man has been sitting on death row for over 20yrs for a mur\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DAILYDR3AMS","name":"daily\ud83e\uddf8 - #1 payton simp!!","id":1192471649330909184,"id_str":"1192471649330909184","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 09 21:23:18 +0000 2021","id":1458183441602777095,"id_str":"1458183441602777095","text":"\/\/ - wrongful execution , racism\n\nJulius Jones, an innocent black man has been - sitting on death row for over 20yrs fo\u2026 https:\/\/t.co\/mPVw9bfL93","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mPVw9bfL93","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1458183441602777095","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2205,"favorite_count":1932,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2205,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928758884205871105\/u4pRGZYY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928758884205871105\/u4pRGZYY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/785627135968890880\/1599359729","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1330599890,"id_str":"1330599890","name":"Mona - Bahouth-Kennedy","screen_name":"bahouthmona","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":125,"listed_count":0,"created_at":"Sat - Apr 06 03:27:22 +0000 2013","favourites_count":668,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Fri - Mar 04 23:16:09 +0000 2022","id":1499886442130071559,"id_str":"1499886442130071559","text":"RT - @mikegalsworthy: What absolutely extraordinary scenes from Tbilisi, Georgia - \ud83c\uddec\ud83c\uddea\ud83c\uddfa\ud83c\udde6 \n\nhttps:\/\/t.co\/pU1rZ82P2m","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mikegalsworthy","name":"Mike - Galsworthy \ud83c\uddfa\ud83c\udde6","id":34247411,"id_str":"34247411","indices":[3,18]}],"urls":[],"media":[{"id":1499802434834767879,"id_str":"1499802434834767879","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","url":"https:\/\/t.co\/pU1rZ82P2m","display_url":"pic.twitter.com\/pU1rZ82P2m","expanded_url":"https:\/\/twitter.com\/MtavariChannel\/status\/1499802681321345044\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1499802681321345044,"source_status_id_str":"1499802681321345044","source_user_id":1222470120116801538,"source_user_id_str":"1222470120116801538"}]},"extended_entities":{"media":[{"id":1499802434834767879,"id_str":"1499802434834767879","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","url":"https:\/\/t.co\/pU1rZ82P2m","display_url":"pic.twitter.com\/pU1rZ82P2m","expanded_url":"https:\/\/twitter.com\/MtavariChannel\/status\/1499802681321345044\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1499802681321345044,"source_status_id_str":"1499802681321345044","source_user_id":1222470120116801538,"source_user_id_str":"1222470120116801538","video_info":{"aspect_ratio":[16,9],"duration_millis":110043,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/640x360\/sM8R-cRVibML_s3z.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/pl\/RT-WalbcYqtIG7yP.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/1280x720\/lrS8hPLkxTgToINg.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/480x270\/qMwS1eTQFvZZAcdd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 21:12:55 +0000 2022","id":1499855433019928583,"id_str":"1499855433019928583","text":"What - absolutely extraordinary scenes from Tbilisi, Georgia \ud83c\uddec\ud83c\uddea\ud83c\uddfa\ud83c\udde6 - \n\nhttps:\/\/t.co\/pU1rZ82P2m","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499802434834767879,"id_str":"1499802434834767879","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","url":"https:\/\/t.co\/pU1rZ82P2m","display_url":"pic.twitter.com\/pU1rZ82P2m","expanded_url":"https:\/\/twitter.com\/MtavariChannel\/status\/1499802681321345044\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1499802681321345044,"source_status_id_str":"1499802681321345044","source_user_id":1222470120116801538,"source_user_id_str":"1222470120116801538"}]},"extended_entities":{"media":[{"id":1499802434834767879,"id_str":"1499802434834767879","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1499802434834767879\/pu\/img\/fXSR_ZgGitr2BIq-.jpg","url":"https:\/\/t.co\/pU1rZ82P2m","display_url":"pic.twitter.com\/pU1rZ82P2m","expanded_url":"https:\/\/twitter.com\/MtavariChannel\/status\/1499802681321345044\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1499802681321345044,"source_status_id_str":"1499802681321345044","source_user_id":1222470120116801538,"source_user_id_str":"1222470120116801538","video_info":{"aspect_ratio":[16,9],"duration_millis":110043,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/640x360\/sM8R-cRVibML_s3z.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/pl\/RT-WalbcYqtIG7yP.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/1280x720\/lrS8hPLkxTgToINg.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1499802434834767879\/pu\/vid\/480x270\/qMwS1eTQFvZZAcdd.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14320,"favorite_count":71358,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14320,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818597466522218500\/OE5SEKRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818597466522218500\/OE5SEKRl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3293597912,"id_str":"3293597912","name":"Marilyn - O''Neill","screen_name":"MarilynONeill20","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":50,"listed_count":0,"created_at":"Sat - Jul 25 20:50:07 +0000 2015","favourites_count":111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1006562751735566338,"id_str":"1006562751735566338","name":"Lina - Guzman","screen_name":"bookworm_lina","location":"","description":"Bookworm, - catlover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1429,"listed_count":1,"created_at":"Tue - Jun 12 15:43:55 +0000 2018","favourites_count":2035,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Sat - Jun 19 21:48:04 +0000 2021","id":1406368206789431301,"id_str":"1406368206789431301","text":"Crazy - Good Turn''s Karl Zinsmeister Book Giveaway https:\/\/t.co\/ch5iS540uV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ch5iS540uV","expanded_url":"https:\/\/kingsumo.com\/g\/c3d2vj\/crazy-good-turns-karl-zinsmeister-book-giveaway-free-to-enter\/gjr79r6","display_url":"kingsumo.com\/g\/c3d2vj\/crazy\u2026","indices":[49,72]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1264093872562384897,"id_str":"1264093872562384897","name":"Md - Mamun","screen_name":"MdMamun29347160","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":983,"friends_count":4574,"listed_count":1,"created_at":"Sat - May 23 07:25:18 +0000 2020","favourites_count":21889,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1857,"lang":null,"status":{"created_at":"Thu - Jan 06 07:36:37 +0000 2022","id":1478993893123182592,"id_str":"1478993893123182592","text":"RT - @ProthomAlo: \u09b0\u09be\u099c\u09a7\u09be\u09a8\u09c0\u09b0 \u09ac\u09be\u0982\u09b2\u09be\u09ae\u09cb\u099f\u09b0\u09c7 - \u09e7\u09e7 \u09a4\u09b2\u09be\u09ac\u09bf\u09b6\u09bf\u09b7\u09cd\u099f - \u09b0\u09be\u09b9\u09be\u09a4 \u099f\u09be\u0993\u09af\u09bc\u09be\u09b0\u09c7\u09b0 - \u09e7\u09e7 \u09a4\u09b2\u09be\u09af\u09bc \u0986\u0997\u09c1\u09a8 \u09b2\u09c7\u0997\u09c7\u099b\u09c7... - https:\/\/t.co\/wuztvrKhEc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProthomAlo","name":"Prothom - Alo","id":213278292,"id_str":"213278292","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/wuztvrKhEc","expanded_url":"https:\/\/www.prothomalo.com\/bangladesh\/capital\/%E0%A6%B0%E0%A6%BE%E0%A6%9C%E0%A6%A7%E0%A6%BE%E0%A6%A8%E0%A7%80%E0%A6%B0-%E0%A6%AC%E0%A6%BE%E0%A6%82%E0%A6%B2%E0%A6%BE%E0%A6%AE%E0%A7%8B%E0%A6%9F%E0%A6%B0%E0%A7%87-%E0%A6%AC%E0%A6%B9%E0%A7%81%E0%A6%A4%E0%A6%B2-%E0%A6%AD%E0%A6%AC%E0%A6%A8%E0%A7%87-%E0%A6%86%E0%A6%97%E0%A7%81%E0%A6%A8","display_url":"prothomalo.com\/bangladesh\/cap\u2026","indices":[90,113]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 06 06:30:01 +0000 2022","id":1478977133603086338,"id_str":"1478977133603086338","text":"\u09b0\u09be\u099c\u09a7\u09be\u09a8\u09c0\u09b0 - \u09ac\u09be\u0982\u09b2\u09be\u09ae\u09cb\u099f\u09b0\u09c7 \u09e7\u09e7 - \u09a4\u09b2\u09be\u09ac\u09bf\u09b6\u09bf\u09b7\u09cd\u099f \u09b0\u09be\u09b9\u09be\u09a4 - \u099f\u09be\u0993\u09af\u09bc\u09be\u09b0\u09c7\u09b0 \u09e7\u09e7 \u09a4\u09b2\u09be\u09af\u09bc - \u0986\u0997\u09c1\u09a8 \u09b2\u09c7\u0997\u09c7\u099b\u09c7... https:\/\/t.co\/wuztvrKhEc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wuztvrKhEc","expanded_url":"https:\/\/www.prothomalo.com\/bangladesh\/capital\/%E0%A6%B0%E0%A6%BE%E0%A6%9C%E0%A6%A7%E0%A6%BE%E0%A6%A8%E0%A7%80%E0%A6%B0-%E0%A6%AC%E0%A6%BE%E0%A6%82%E0%A6%B2%E0%A6%BE%E0%A6%AE%E0%A7%8B%E0%A6%9F%E0%A6%B0%E0%A7%87-%E0%A6%AC%E0%A6%B9%E0%A7%81%E0%A6%A4%E0%A6%B2-%E0%A6%AD%E0%A6%AC%E0%A6%A8%E0%A7%87-%E0%A6%86%E0%A6%97%E0%A7%81%E0%A6%A8","display_url":"prothomalo.com\/bangladesh\/cap\u2026","indices":[74,97]}]},"source":"\u003ca - href=\"https:\/\/app.agorapulse.com\" rel=\"nofollow\"\u003eAgorapulse app\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":60,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"bn"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"bn"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264447660175396866\/kuAJLZuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264447660175396866\/kuAJLZuF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889915043218894850,"id_str":"889915043218894850","name":"HeatherSidre3","screen_name":"Sidre3","location":"Boston","description":"Boston - based \ud83c\udf55, \ud83e\uddc0 and \ud83c\udf77 connoisseur. Here for the - #bluewave \n#RidinwithBiden #voteblue2022 #IStandWithUkraine #Ukraine \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":1160,"listed_count":0,"created_at":"Tue - Jul 25 18:27:34 +0000 2017","favourites_count":58174,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1413,"lang":null,"status":{"created_at":"Fri - Mar 25 19:47:26 +0000 2022","id":1507444063565398019,"id_str":"1507444063565398019","text":"@ProjectLincoln - Unhinged\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507435916339691523,"in_reply_to_status_id_str":"1507435916339691523","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308196870003601416\/zIqhXN7m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308196870003601416\/zIqhXN7m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/889915043218894850\/1645790848","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":153047566,"id_str":"153047566","name":"JCJ - \ud83c\udf51\ud83c\uddfa\ud83c\uddf2 \ud83d\udc89\ud83d\ude37","screen_name":"julietdcdem","location":"Atlanta","description":"Passionate - Progressive Centrist nerdgirl.Vandy grad.Razorback by blood. Francophile.Loves - scotch, laughter, health policy & a certain Georgia boy. Opinions mine","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":208,"friends_count":1055,"listed_count":7,"created_at":"Mon - Jun 07 15:07:36 +0000 2010","favourites_count":39453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16358,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3782263890\/4e754bf1e78a4dc24990cf65868ff067_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3782263890\/4e754bf1e78a4dc24990cf65868ff067_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153047566\/1494895934","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18581006,"id_str":"18581006","name":"Everett - E Brooks Jr.","screen_name":"everettbrooks","location":"Huntsville, Alabama","description":"Sports - loving dad - chasing one wife, two boys, a career and Shadow (lab). MSP Partner - Manager @Goivanti. My tweets are mine and mine, alone!","url":"https:\/\/t.co\/ZIOQL1nvf3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZIOQL1nvf3","expanded_url":"http:\/\/www.linkedin.com\/in\/everettbrooks1","display_url":"linkedin.com\/in\/everettbroo\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":427,"friends_count":1938,"listed_count":14,"created_at":"Sat - Jan 03 15:53:45 +0000 2009","favourites_count":9050,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1343,"lang":null,"status":{"created_at":"Sun - Mar 20 22:28:28 +0000 2022","id":1505672650965889025,"id_str":"1505672650965889025","text":"@RadioFreeTom - Hey Tom, try the high end Jabra. You can get it with or without boom mic. - I love mine. Good luck!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505607024708575237,"in_reply_to_status_id_str":"1505607024708575237","in_reply_to_user_id":459872442,"in_reply_to_user_id_str":"459872442","in_reply_to_screen_name":"RadioFreeTom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/403305917\/DSC_0045eb2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/403305917\/DSC_0045eb2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18581006\/1375927410","profile_link_color":"827972","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"52555C","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312178081310810115,"id_str":"1312178081310810115","name":"Tony","screen_name":"Tony90404780","location":"","description":"Me, - myself and I hate Trump and Trumpsters. Democrat. I''m just thinking out loud. - NU. A''s, OSU Buckeyes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":697,"listed_count":2,"created_at":"Fri - Oct 02 23:50:23 +0000 2020","favourites_count":2927,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5944,"lang":null,"status":{"created_at":"Thu - Oct 07 23:48:05 +0000 2021","id":1446261078120271873,"id_str":"1446261078120271873","text":"We - should call Urban Myers, Oscar, he''s full of bologna. \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312178647076270080\/KfO-4DmE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312178647076270080\/KfO-4DmE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248602644647571457,"id_str":"1248602644647571457","name":"Terry","screen_name":"Terry58120764","location":"Lewisham, - London","description":"Tell it how it is, be straight and no messing about. - Father of 5 Grand father of 6. Born and bred in Brixton, Londoner, brexit - convert, Love England.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":445,"listed_count":0,"created_at":"Fri - Apr 10 13:24:41 +0000 2020","favourites_count":6210,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1405,"lang":null,"status":{"created_at":"Fri - Mar 25 17:16:14 +0000 2022","id":1507406012772462597,"id_str":"1507406012772462597","text":"@teresadg0 - @sophielouisecc @BrianAmbler2 @Ofcom Yes Teresa, we done it last Monday, deep - joy \ud83e\udd29","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"teresadg0","name":"Teresa","id":271946771,"id_str":"271946771","indices":[0,10]},{"screen_name":"sophielouisecc","name":"Sophie - Corcoran","id":1063839405977337856,"id_str":"1063839405977337856","indices":[11,26]},{"screen_name":"BrianAmbler2","name":"Brian - Ambler \ud83c\uddec\ud83c\udde7","id":1420701860,"id_str":"1420701860","indices":[27,40]},{"screen_name":"Ofcom","name":"Ofcom","id":18689388,"id_str":"18689388","indices":[41,47]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507403722011381763,"in_reply_to_status_id_str":"1507403722011381763","in_reply_to_user_id":271946771,"in_reply_to_user_id_str":"271946771","in_reply_to_screen_name":"teresadg0","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":252833148,"id_str":"252833148","name":"David - Johnston","screen_name":"D_M_Johnston","location":"Augusta, GA","description":"Democrat. - Southerner. Biden-Harris enthusiast. Hillary Clinton is my idol. Cash App: - $DavidJ706","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":341,"friends_count":2246,"listed_count":4,"created_at":"Wed - Feb 16 00:47:34 +0000 2011","favourites_count":18817,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12299,"lang":null,"status":{"created_at":"Sat - Mar 19 17:37:06 +0000 2022","id":1505236936327413765,"id_str":"1505236936327413765","text":"RT - @OccupyDemocrats: BREAKING: Donald Trump is dealt an embarrassing and pricy - blow as a court orders his presidential campaign to pay out\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 21:01:06 +0000 2022","id":1504925886482591745,"id_str":"1504925886482591745","text":"BREAKING: - Donald Trump is dealt an embarrassing and pricy blow as a court orders his - presidential campaign to pay o\u2026 https:\/\/t.co\/Cvb0ALEAgF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Cvb0ALEAgF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504925886482591745","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11350,"favorite_count":35592,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11350,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443622223215005702\/N9FtPtNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443622223215005702\/N9FtPtNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252833148\/1599182462","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":336538368,"id_str":"336538368","name":"J - Offenbach","screen_name":"JOffenbach","location":"I am where I am","description":"optimistic - realist Flavanols are my friend human ity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":306,"listed_count":0,"created_at":"Sat - Jul 16 13:28:57 +0000 2011","favourites_count":934,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":409,"lang":null,"status":{"created_at":"Thu - Feb 25 14:14:05 +0000 2021","id":1364941740889821193,"id_str":"1364941740889821193","text":"@rmayemsinger - I am not a psychic. Was your hand inside the freezer around the time the ring - left your finger?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmayemsinger","name":"\ud83c\uddfa\ud83c\udde6Randi - Mayem Singer","id":372563164,"id_str":"372563164","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1364800028569575425,"in_reply_to_status_id_str":"1364800028569575425","in_reply_to_user_id":372563164,"in_reply_to_user_id_str":"372563164","in_reply_to_screen_name":"rmayemsinger","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356461151018749956\/xbg-etaa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356461151018749956\/xbg-etaa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":283668868,"id_str":"283668868","name":"Devik - Schreiner","screen_name":"searchdarksky","location":"Left Coast","description":"Father - of twin 20 year olds. Teach 6th grade. Write books.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":2480,"listed_count":24,"created_at":"Sun - Apr 17 19:28:51 +0000 2011","favourites_count":7413,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3843,"lang":null,"status":{"created_at":"Fri - Mar 11 21:36:48 +0000 2022","id":1502398157652602882,"id_str":"1502398157652602882","text":"Hello - Stephanie,\nThere are lots of cool ideas on Mosa Mack. Some fun videos on - bioengineering and organ donation as\u2026 https:\/\/t.co\/88cKSdJFOM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/88cKSdJFOM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502398157652602882","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502397855478292482,"quoted_status_id_str":"1502397855478292482","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403443633991208966\/WLpv9B2q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403443633991208966\/WLpv9B2q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283668868\/1628037721","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310952932171542536,"id_str":"1310952932171542536","name":"stoic - girl","screen_name":"kalyanid90","location":"Galaxy ","description":"Avid - reader. Unsociable.Stoic.Serial procrastinator.Minimalist.Nature Lover.Taciturn. - Passionate about Behavioural psychology.Introvert","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":2145,"listed_count":0,"created_at":"Tue - Sep 29 14:42:08 +0000 2020","favourites_count":1647,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"status":{"created_at":"Mon - Mar 14 06:35:46 +0000 2022","id":1503258569617317888,"id_str":"1503258569617317888","text":"@abhijitkadle - It takes courage\u2026.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abhijitkadle","name":"Prometheus - Iapetus","id":17890655,"id_str":"17890655","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502982324748574725,"in_reply_to_status_id_str":"1502982324748574725","in_reply_to_user_id":17890655,"in_reply_to_user_id_str":"17890655","in_reply_to_screen_name":"abhijitkadle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503186303424204803\/Oi-itrc9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503186303424204803\/Oi-itrc9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1310952932171542536\/1604749035","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":152850630,"id_str":"152850630","name":"Kevin - Korman","screen_name":"kk1975ck1","location":"Fort Lauderdale, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":649,"listed_count":0,"created_at":"Mon - Jun 07 01:44:16 +0000 2010","favourites_count":2882,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":176,"lang":null,"status":{"created_at":"Tue - Mar 22 18:29:29 +0000 2022","id":1506337284433584138,"id_str":"1506337284433584138","text":"@GovRonDeSantis - Yes. This should be a priority. Moron.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506315576674865153,"in_reply_to_status_id_str":"1506315576674865153","in_reply_to_user_id":1058807868,"in_reply_to_user_id_str":"1058807868","in_reply_to_screen_name":"GovRonDeSantis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235346854533005316\/foklYJ3U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235346854533005316\/foklYJ3U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152850630\/1583364607","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51102683,"id_str":"51102683","name":"Dr. - Leon Usigbe","screen_name":"Leehabby","location":"Abuja","description":"Abuja - Bureau Chief @nigeriantribune, ChelseaFC fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":631,"friends_count":530,"listed_count":1,"created_at":"Fri - Jun 26 15:36:28 +0000 2009","favourites_count":1378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1530,"lang":null,"status":{"created_at":"Sat - Mar 26 06:41:21 +0000 2022","id":1507608627867271171,"id_str":"1507608627867271171","text":"Food - for thought https:\/\/t.co\/WY3cSBb3Hh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WY3cSBb3Hh","expanded_url":"https:\/\/www.aljazeera.com\/opinions\/2022\/3\/23\/why-africa-does-not-appear-to-be-standing-with-ukraine","display_url":"aljazeera.com\/opinions\/2022\/\u2026","indices":[18,41]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501272117005983744\/9U91tuSl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501272117005983744\/9U91tuSl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51102683\/1633048823","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1254509824231919616,"id_str":"1254509824231919616","name":"richard","screen_name":"richard14982889","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":286,"listed_count":0,"created_at":"Sun - Apr 26 20:37:31 +0000 2020","favourites_count":361,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":946771086,"id_str":"946771086","name":"SpicyPickle","screen_name":"OfficialLoPeet","location":"Santa - Clara, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":267,"listed_count":0,"created_at":"Wed - Nov 14 00:25:32 +0000 2012","favourites_count":5449,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97,"lang":null,"status":{"created_at":"Fri - Jan 07 19:33:54 +0000 2022","id":1479536794756476928,"id_str":"1479536794756476928","text":"@annsy0 - A prayer for the ages","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"annsy0","name":"Ann - Guy","id":751677339725996032,"id_str":"751677339725996032","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1479523743940575236,"in_reply_to_status_id_str":"1479523743940575236","in_reply_to_user_id":751677339725996032,"in_reply_to_user_id_str":"751677339725996032","in_reply_to_screen_name":"annsy0","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/793962602489491456\/jF8L3Y6d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/793962602489491456\/jF8L3Y6d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946771086\/1478130666","profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":854654402405314562,"id_str":"854654402405314562","name":"michael - ;)","screen_name":"misolcol","location":"(he, they)","description":"17 | \ud83c\uddf5\ud83c\uddf7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":214,"friends_count":1031,"listed_count":2,"created_at":"Wed - Apr 19 11:14:23 +0000 2017","favourites_count":46110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4189,"lang":null,"status":{"created_at":"Fri - Mar 25 07:08:19 +0000 2022","id":1507253024271519765,"id_str":"1507253024271519765","text":"RT - @KeiKande: @LilNasX https:\/\/t.co\/R1MdN6qQcZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeiKande","name":"Kei - \ud83d\udfe8","id":33309131,"id_str":"33309131","indices":[3,12]},{"screen_name":"LilNasX","name":"MONTERO","id":754006735468261376,"id_str":"754006735468261376","indices":[14,22]}],"urls":[],"media":[{"id":1507212331427803156,"id_str":"1507212331427803156","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","url":"https:\/\/t.co\/R1MdN6qQcZ","display_url":"pic.twitter.com\/R1MdN6qQcZ","expanded_url":"https:\/\/twitter.com\/KeiKande\/status\/1507212334506332161\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":399,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}},"source_status_id":1507212334506332161,"source_status_id_str":"1507212334506332161","source_user_id":33309131,"source_user_id_str":"33309131"}]},"extended_entities":{"media":[{"id":1507212331427803156,"id_str":"1507212331427803156","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","url":"https:\/\/t.co\/R1MdN6qQcZ","display_url":"pic.twitter.com\/R1MdN6qQcZ","expanded_url":"https:\/\/twitter.com\/KeiKande\/status\/1507212334506332161\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":399,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}},"source_status_id":1507212334506332161,"source_status_id_str":"1507212334506332161","source_user_id":33309131,"source_user_id_str":"33309131"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:26:37 +0000 2022","id":1507212334506332161,"id_str":"1507212334506332161","text":"@LilNasX - https:\/\/t.co\/R1MdN6qQcZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LilNasX","name":"MONTERO","id":754006735468261376,"id_str":"754006735468261376","indices":[0,8]}],"urls":[],"media":[{"id":1507212331427803156,"id_str":"1507212331427803156","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","url":"https:\/\/t.co\/R1MdN6qQcZ","display_url":"pic.twitter.com\/R1MdN6qQcZ","expanded_url":"https:\/\/twitter.com\/KeiKande\/status\/1507212334506332161\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":399,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507212331427803156,"id_str":"1507212331427803156","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqxoT_XsBQzq2H.jpg","url":"https:\/\/t.co\/R1MdN6qQcZ","display_url":"pic.twitter.com\/R1MdN6qQcZ","expanded_url":"https:\/\/twitter.com\/KeiKande\/status\/1507212334506332161\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":399,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507212263140171776,"in_reply_to_status_id_str":"1507212263140171776","in_reply_to_user_id":754006735468261376,"in_reply_to_user_id_str":"754006735468261376","in_reply_to_screen_name":"LilNasX","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1639,"favorite_count":33985,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1639,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498870671362826241\/OVPzRz-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498870671362826241\/OVPzRz-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854654402405314562\/1639635859","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1363964701,"id_str":"1363964701","name":"the - voice of voiceless","screen_name":"Adowadan1","location":"Nairobi","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":3760,"listed_count":0,"created_at":"Fri - Apr 19 08:59:28 +0000 2013","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Mon - Mar 21 08:06:37 +0000 2022","id":1505818144476119044,"id_str":"1505818144476119044","text":"https:\/\/t.co\/nykQWzj87e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505818132983828480,"id_str":"1505818132983828480","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW9nSDX0AATEWL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW9nSDX0AATEWL.jpg","url":"https:\/\/t.co\/nykQWzj87e","display_url":"pic.twitter.com\/nykQWzj87e","expanded_url":"https:\/\/twitter.com\/Adowadan1\/status\/1505818144476119044\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":900,"h":1600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505818132983828480,"id_str":"1505818132983828480","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOW9nSDX0AATEWL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOW9nSDX0AATEWL.jpg","url":"https:\/\/t.co\/nykQWzj87e","display_url":"pic.twitter.com\/nykQWzj87e","expanded_url":"https:\/\/twitter.com\/Adowadan1\/status\/1505818144476119044\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":900,"h":1600,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"001a6ecd74396345","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/001a6ecd74396345.json","place_type":"admin","name":"North - Eastern","full_name":"North Eastern, Kenya","country_code":"KE","country":"Kenya","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[38.6595262,-2.0361282],[41.8998666,-2.0361282],[41.8998666,4.2863277],[38.6595262,4.2863277]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468262330295275534\/DJrkumuV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468262330295275534\/DJrkumuV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":419363521,"id_str":"419363521","name":"newtech2k","screen_name":"newtech2k","location":"Canada","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":589,"listed_count":0,"created_at":"Wed - Nov 23 08:12:20 +0000 2011","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":195,"lang":null,"status":{"created_at":"Mon - Nov 08 16:40:37 +0000 2021","id":1457749913459175425,"id_str":"1457749913459175425","text":"@PRPK9 - @PeelPolice Don\u2019t condone this behaviour but gouging millions of consumers - on gas prices by giant corporatio\u2026 https:\/\/t.co\/MHqoOcXSRW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PRPK9","name":"Peel - Police K9 Unit","id":987068356732882946,"id_str":"987068356732882946","indices":[0,6]},{"screen_name":"PeelPolice","name":"Peel - Regional Police","id":72582613,"id_str":"72582613","indices":[7,18]}],"urls":[{"url":"https:\/\/t.co\/MHqoOcXSRW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1457749913459175425","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1457748103600168977,"in_reply_to_status_id_str":"1457748103600168977","in_reply_to_user_id":987068356732882946,"in_reply_to_user_id_str":"987068356732882946","in_reply_to_screen_name":"PRPK9","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41373611,"id_str":"41373611","name":"sean - stewart","screen_name":"snstwrt","location":"Houston, TX","description":"I\u2019m - me","url":"https:\/\/t.co\/TJVJnFpHk7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TJVJnFpHk7","expanded_url":"https:\/\/www.facebook.com\/snstwrt","display_url":"facebook.com\/snstwrt","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":59,"friends_count":1003,"listed_count":0,"created_at":"Wed - May 20 14:54:48 +0000 2009","favourites_count":360,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316866560498323456\/BtxPc2Gv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316866560498323456\/BtxPc2Gv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41373611\/1565938588","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":474592426,"id_str":"474592426","name":"\ud83c\udded\ud83c\uddf2Denny - Crane","screen_name":"1972bja","location":"Australia","description":"Lets - Go Brandon\nThe fact you are offended doesn''t make me wrong","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1109,"friends_count":1936,"listed_count":1,"created_at":"Thu - Jan 26 04:32:06 +0000 2012","favourites_count":21792,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9682,"lang":null,"status":{"created_at":"Sat - Mar 26 09:40:47 +0000 2022","id":1507653784289574912,"id_str":"1507653784289574912","text":"@vmainard - @gmorg22 Watch out for an increase in the GST rate!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vmainard","name":"Vicki - Mainard \ud83c\udde6\ud83c\uddfa\ud83d\udd79\ud83c\udfc0\ud83d\udc08Liberal - 22","id":27397450,"id_str":"27397450","indices":[0,9]},{"screen_name":"gmorg22","name":"Good - Point \ud83c\udde6\ud83c\uddfa\ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf8","id":265763924,"id_str":"265763924","indices":[10,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507467203536654337,"in_reply_to_status_id_str":"1507467203536654337","in_reply_to_user_id":27397450,"in_reply_to_user_id_str":"27397450","in_reply_to_screen_name":"vmainard","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3374391991\/c310637516402ddf998c8ea64b2ebe3e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3374391991\/c310637516402ddf998c8ea64b2ebe3e_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":359028759,"id_str":"359028759","name":"Jeremy - Tibbett","screen_name":"jertib","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":2373,"listed_count":0,"created_at":"Sat - Aug 20 22:24:19 +0000 2011","favourites_count":344,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825303155210649600\/W3OymT6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825303155210649600\/W3OymT6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359028759\/1485020711","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1149288178718842881,"id_str":"1149288178718842881","name":"Makawa","screen_name":"Makawa06045347","location":"","description":"I''m - gonna be happy for the next time","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":217,"listed_count":0,"created_at":"Thu - Jul 11 12:03:49 +0000 2019","favourites_count":266,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Tue - Nov 02 06:42:36 +0000 2021","id":1455425089386729473,"id_str":"1455425089386729473","text":"@MuslimMakkah - @theholymosques Maashaah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MuslimMakkah","name":"Haramain - Archives","id":1173180962378866688,"id_str":"1173180962378866688","indices":[0,13]},{"screen_name":"theholymosques","name":"The - Holy Mosque''s","id":1247167916618858496,"id_str":"1247167916618858496","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1455293425293709312,"in_reply_to_status_id_str":"1455293425293709312","in_reply_to_user_id":1173180962378866688,"in_reply_to_user_id_str":"1173180962378866688","in_reply_to_screen_name":"MuslimMakkah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275689132296220672\/yPAy6XEW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275689132296220672\/yPAy6XEW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2820915947,"id_str":"2820915947","name":"bijan - ashtiani","screen_name":"bijan1323","location":"975 sabourin brossard ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":347,"listed_count":0,"created_at":"Fri - Oct 10 00:12:55 +0000 2014","favourites_count":304,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Thu - Sep 09 11:31:45 +0000 2021","id":1435928911058247688,"id_str":"1435928911058247688","text":"UK - to send warships to Pacific on extended deployment\n\nDownload the WION App - now:\n\nhttps:\/\/t.co\/WnRvqpEUoL https:\/\/t.co\/Ej04MN0Jug","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WnRvqpEUoL","expanded_url":"http:\/\/onelink.to\/jksrch","display_url":"onelink.to\/jksrch","indices":[83,106]},{"url":"https:\/\/t.co\/Ej04MN0Jug","expanded_url":"https:\/\/www.wionews.com\/world\/uk-to-send-warships-to-pacific-on-extended-deployment-411788","display_url":"wionews.com\/world\/uk-to-se\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1886463168,"id_str":"1886463168","name":"Adebayo - Ezekiel","screen_name":"am_kolade","location":"Lagos, Nigeria","description":"Accountant; - Football lover.","url":"https:\/\/t.co\/wUHhONyABC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wUHhONyABC","expanded_url":"https:\/\/m.facebook.com\/am.kolade","display_url":"m.facebook.com\/am.kolade","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":900,"listed_count":0,"created_at":"Fri - Sep 20 13:08:54 +0000 2013","favourites_count":1518,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1166,"lang":null,"status":{"created_at":"Sat - Mar 12 19:56:11 +0000 2022","id":1502735223787827204,"id_str":"1502735223787827204","text":"Wonderful - day #PWANat10 https:\/\/t.co\/dISatbmCCa","truncated":false,"entities":{"hashtags":[{"text":"PWANat10","indices":[14,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dISatbmCCa","expanded_url":"https:\/\/twitter.com\/Ebuka\/status\/1502650194759987209","display_url":"twitter.com\/Ebuka\/status\/1\u2026","indices":[24,47]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502650194759987209,"quoted_status_id_str":"1502650194759987209","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257685475361505280\/4smPg62l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257685475361505280\/4smPg62l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1886463168\/1584471094","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":838486354568699904,"id_str":"838486354568699904","name":"Play - On Athletics -","screen_name":"playon55","location":"Phoenix, AZ","description":"Play - On Athletics 25 years national college athletic recruiting experience. Our - newly published book gives you step by step instruction on how to get recruited","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":666,"listed_count":0,"created_at":"Sun - Mar 05 20:28:20 +0000 2017","favourites_count":921,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Tue - Mar 08 16:07:34 +0000 2022","id":1501228137144733704,"id_str":"1501228137144733704","text":"Get - recruited! 100% of proceeds for to #petsforukraine https:\/\/t.co\/2Y2dPIBuAK","truncated":false,"entities":{"hashtags":[{"text":"petsforukraine","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1501228133810278403,"id_str":"1501228133810278403","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FNVvCKqVkAM348Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNVvCKqVkAM348Z.jpg","url":"https:\/\/t.co\/2Y2dPIBuAK","display_url":"pic.twitter.com\/2Y2dPIBuAK","expanded_url":"https:\/\/twitter.com\/playon55\/status\/1501228137144733704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":831,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"},"medium":{"w":828,"h":831,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501228133810278403,"id_str":"1501228133810278403","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/FNVvCKqVkAM348Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNVvCKqVkAM348Z.jpg","url":"https:\/\/t.co\/2Y2dPIBuAK","display_url":"pic.twitter.com\/2Y2dPIBuAK","expanded_url":"https:\/\/twitter.com\/playon55\/status\/1501228137144733704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":831,"resize":"fit"},"small":{"w":678,"h":680,"resize":"fit"},"medium":{"w":828,"h":831,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456737940076326912\/-EW-fsw__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456737940076326912\/-EW-fsw__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/838486354568699904\/1635954165","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3308328367,"id_str":"3308328367","name":"Suzie - Villarreal","screen_name":"suzieQT42","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":412,"listed_count":0,"created_at":"Fri - Aug 07 00:38:35 +0000 2015","favourites_count":2516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Tue - Mar 23 00:54:54 +0000 2021","id":1374162706152972291,"id_str":"1374162706152972291","text":"@ThatEricAlper - Slow ride","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1374126267067469827,"in_reply_to_status_id_str":"1374126267067469827","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/785921958978347008\/zAIx5l5n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785921958978347008\/zAIx5l5n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308328367\/1476213368","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47055253,"id_str":"47055253","name":"Chrisopher - Parry","screen_name":"CJ_Parry","location":"Pontypridd","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":857,"listed_count":0,"created_at":"Sun - Jun 14 07:45:02 +0000 2009","favourites_count":218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":641,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2542251915\/qay8y50lc19ujyojoo41_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2542251915\/qay8y50lc19ujyojoo41_normal.jpeg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248994830979436549,"id_str":"1248994830979436549","name":"sandra - watkind","screen_name":"Samleekwatkins","location":"Salt Lake City, UT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":613,"listed_count":0,"created_at":"Sat - Apr 11 15:22:45 +0000 2020","favourites_count":18355,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14076,"lang":null,"status":{"created_at":"Tue - Feb 22 10:40:51 +0000 2022","id":1496072489516281858,"id_str":"1496072489516281858","text":"RT - @WallStreetQuee2: @OccupyDemocrats The British green energy company should - sue Trump''s Social Network for violating its trademark by ste\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WallStreetQuee2","name":"Wall - Street Queen","id":1358152121556873217,"id_str":"1358152121556873217","indices":[3,19]},{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[21,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 22 04:36:37 +0000 2022","id":1495980826789617665,"id_str":"1495980826789617665","text":"@OccupyDemocrats - The British green energy company should sue Trump''s Social Network for violating - its trademark by\u2026 https:\/\/t.co\/Z3pQ0xfbYZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/Z3pQ0xfbYZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495980826789617665","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495976702685724673,"in_reply_to_status_id_str":"1495976702685724673","in_reply_to_user_id":878284831,"in_reply_to_user_id_str":"878284831","in_reply_to_screen_name":"OccupyDemocrats","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":37,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":17,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":800074482333335552,"id_str":"800074482333335552","name":"BenSanches","screen_name":"Sanches3Ben","location":"Kalamazoo, - MI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":694,"listed_count":0,"created_at":"Sat - Nov 19 20:33:16 +0000 2016","favourites_count":4212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971419938312392705\/44-hUNVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971419938312392705\/44-hUNVt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42900964,"id_str":"42900964","name":"Karen - Butter","screen_name":"kab94502","location":"California, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":737,"listed_count":1,"created_at":"Wed - May 27 15:07:59 +0000 2009","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1316718188,"id_str":"1316718188","name":"Gary - Euresti","screen_name":"geuresti","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":1321,"listed_count":2,"created_at":"Sat - Mar 30 16:06:12 +0000 2013","favourites_count":25970,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5562,"lang":null,"status":{"created_at":"Fri - Mar 25 03:00:31 +0000 2022","id":1507190663909150722,"id_str":"1507190663909150722","text":"RT - @JoyceWhiteVance: There is something deeply broken in anyone who thinks this - is justifiable or even just survivable. A SCOTUS justice\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyceWhiteVance","name":"Joyce - Alene","id":548384458,"id_str":"548384458","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:36:57 +0000 2022","id":1507169636319698945,"id_str":"1507169636319698945","text":"There - is something deeply broken in anyone who thinks this is justifiable or even - just survivable. A SCOTUS justice\u2026 https:\/\/t.co\/WHYpvSLWxH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WHYpvSLWxH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507169636319698945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507144073089593345,"quoted_status_id_str":"1507144073089593345","retweet_count":11722,"favorite_count":43534,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507144073089593345,"quoted_status_id_str":"1507144073089593345","retweet_count":11722,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296464394059231233,"id_str":"1296464394059231233","name":"Amanda - Brown","screen_name":"AmandaB59886003","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":64,"listed_count":0,"created_at":"Thu - Aug 20 15:09:46 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Sun - Jan 31 01:30:28 +0000 2021","id":1355689877225021440,"id_str":"1355689877225021440","text":"@reallifecrime - hi just joined your podcast. Broke my heart listening to the monster podcast. - Made me feel physicall\u2026 https:\/\/t.co\/w38Yf0gX4Z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"reallifecrime","name":"Real - Life Real Crime Podcast","id":1078067568471093250,"id_str":"1078067568471093250","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/w38Yf0gX4Z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1355689877225021440","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1078067568471093250,"in_reply_to_user_id_str":"1078067568471093250","in_reply_to_screen_name":"reallifecrime","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318574689623658497\/KUbYLoho_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318574689623658497\/KUbYLoho_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1296464394059231233\/1598141109","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":799610231479275520,"id_str":"799610231479275520","name":"June","screen_name":"June13996013","location":"Tennessee, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":502,"listed_count":0,"created_at":"Fri - Nov 18 13:48:30 +0000 2016","favourites_count":79865,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":48213,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/799613466294231041\/zye_cnSn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/799613466294231041\/zye_cnSn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20375522,"id_str":"20375522","name":"Z - QwertyFlower","screen_name":"ZeldaMc","location":"South Carolina, USA","description":"still - standing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1015,"friends_count":2483,"listed_count":2,"created_at":"Sun - Feb 08 16:30:07 +0000 2009","favourites_count":43509,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10338,"lang":null,"status":{"created_at":"Wed - Mar 23 00:13:42 +0000 2022","id":1506423908437794816,"id_str":"1506423908437794816","text":"@jeannefisher17 - Oops. I just commented to you on this.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeannefisher17","name":"jeanne - fisher17","id":2300242908,"id_str":"2300242908","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506409879719886849,"in_reply_to_status_id_str":"1506409879719886849","in_reply_to_user_id":2300242908,"in_reply_to_user_id_str":"2300242908","in_reply_to_screen_name":"jeannefisher17","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/76499181\/071122_123038-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/76499181\/071122_123038-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20375522\/1629372513","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1562511770,"id_str":"1562511770","name":"\ud83d\udc53 - Belle \u2712\ud83d\udcd6\ud83c\udfa7","screen_name":"AtypicalBelle","location":"3rd - Star To..ok I''m lost again","description":"Always learning & writing. Married - w an empty nest. That which yields isn''t always weak. Website not mine & - changes.","url":"https:\/\/t.co\/oEHuq6UjOj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oEHuq6UjOj","expanded_url":"https:\/\/youtu.be\/INn1C6ImJKg","display_url":"youtu.be\/INn1C6ImJKg","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":620,"friends_count":1628,"listed_count":47,"created_at":"Tue - Jul 02 07:35:42 +0000 2013","favourites_count":14592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12451,"lang":null,"status":{"created_at":"Wed - Mar 23 20:12:23 +0000 2022","id":1506725567730700294,"id_str":"1506725567730700294","text":"RT - @archillect: https:\/\/t.co\/GyeBk8kYmB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"archillect","name":"Archillect","id":2907774137,"id_str":"2907774137","indices":[3,14]}],"urls":[],"media":[{"id":1506703330466308098,"id_str":"1506703330466308098","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","url":"https:\/\/t.co\/GyeBk8kYmB","display_url":"pic.twitter.com\/GyeBk8kYmB","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1506703332731195396\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":540,"h":676,"resize":"fit"},"large":{"w":540,"h":676,"resize":"fit"},"medium":{"w":540,"h":676,"resize":"fit"}},"source_status_id":1506703332731195396,"source_status_id_str":"1506703332731195396","source_user_id":2907774137,"source_user_id_str":"2907774137"}]},"extended_entities":{"media":[{"id":1506703330466308098,"id_str":"1506703330466308098","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","url":"https:\/\/t.co\/GyeBk8kYmB","display_url":"pic.twitter.com\/GyeBk8kYmB","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1506703332731195396\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":540,"h":676,"resize":"fit"},"large":{"w":540,"h":676,"resize":"fit"},"medium":{"w":540,"h":676,"resize":"fit"}},"source_status_id":1506703332731195396,"source_status_id_str":"1506703332731195396","source_user_id":2907774137,"source_user_id_str":"2907774137"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:44:02 +0000 2022","id":1506703332731195396,"id_str":"1506703332731195396","text":"https:\/\/t.co\/GyeBk8kYmB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506703330466308098,"id_str":"1506703330466308098","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","url":"https:\/\/t.co\/GyeBk8kYmB","display_url":"pic.twitter.com\/GyeBk8kYmB","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1506703332731195396\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":540,"h":676,"resize":"fit"},"large":{"w":540,"h":676,"resize":"fit"},"medium":{"w":540,"h":676,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506703330466308098,"id_str":"1506703330466308098","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOjisjpXoAI6PNt.jpg","url":"https:\/\/t.co\/GyeBk8kYmB","display_url":"pic.twitter.com\/GyeBk8kYmB","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1506703332731195396\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":540,"h":676,"resize":"fit"},"large":{"w":540,"h":676,"resize":"fit"},"medium":{"w":540,"h":676,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/machinu.net\" rel=\"nofollow\"\u003eArchillect\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":354,"favorite_count":3311,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":354,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F9C1D2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1440103797032816642\/fEKW0wzK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1440103797032816642\/fEKW0wzK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1562511770\/1632185432","profile_link_color":"FD9EB4","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"F892AD","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2896568074,"id_str":"2896568074","name":"G - Struess","screen_name":"GStruess","location":"Japla Hussainabad, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":342,"listed_count":0,"created_at":"Fri - Nov 28 22:29:30 +0000 2014","favourites_count":15400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273967868254785536,"id_str":"1273967868254785536","name":"carol","screen_name":"carol18574310","location":"","description":"All - in for Biden","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":293,"listed_count":0,"created_at":"Fri - Jun 19 13:16:54 +0000 2020","favourites_count":1107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1361,"lang":null,"status":{"created_at":"Tue - Dec 07 16:27:27 +0000 2021","id":1468255848376016900,"id_str":"1468255848376016900","text":"RT - @MeidasTouch: Arrest Mark Meadows.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 07 15:39:07 +0000 2021","id":1468243685607362570,"id_str":"1468243685607362570","text":"Arrest - Mark Meadows.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2880,"favorite_count":17659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2880,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1957540994,"id_str":"1957540994","name":"LHR","screen_name":"LhrChris","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":1472,"listed_count":0,"created_at":"Sat - Oct 12 21:36:54 +0000 2013","favourites_count":2200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":246,"lang":null,"status":{"created_at":"Mon - Nov 29 14:15:15 +0000 2021","id":1465323476567433230,"id_str":"1465323476567433230","text":"@sheilagregoire - @Tish_H_Warren I would also add that the Pro-Life movement definitely needs - more feminists.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sheilagregoire","name":"Sheila - Gregoire--The Great Sex Rescue is here!","id":16807708,"id_str":"16807708","indices":[0,15]},{"screen_name":"Tish_H_Warren","name":"Tish - Harrison Warren","id":1737150919,"id_str":"1737150919","indices":[16,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1465319323854061568,"in_reply_to_status_id_str":"1465319323854061568","in_reply_to_user_id":16807708,"in_reply_to_user_id_str":"16807708","in_reply_to_screen_name":"sheilagregoire","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313487972554215425\/KuPa6lCA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313487972554215425\/KuPa6lCA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4439157674,"id_str":"4439157674","name":"DSWK","screen_name":"dswk_cldk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":305,"listed_count":0,"created_at":"Thu - Dec 03 06:25:49 +0000 2015","favourites_count":28,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2186100556,"id_str":"2186100556","name":"Ayodele - Adekunle","screen_name":"Aydotful","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":675,"listed_count":0,"created_at":"Mon - Nov 18 15:29:37 +0000 2013","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sat - Oct 31 08:57:55 +0000 2020","id":1322462795154313216,"id_str":"1322462795154313216","text":"RT - @Atheist_Bot: Your religion is much more likely to be a product of geography - than ideology.\n#atheism\n669 https:\/\/t.co\/8MenVXZTtd","truncated":false,"entities":{"hashtags":[{"text":"atheism","indices":[95,103]}],"symbols":[],"user_mentions":[{"screen_name":"Atheist_Bot","name":"Atheist - Quote Bot \ud83d\udc89\ud83d\udc89\ud83d\udc89","id":2269494788,"id_str":"2269494788","indices":[3,15]}],"urls":[],"media":[{"id":1322454775724724224,"id_str":"1322454775724724224","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","url":"https:\/\/t.co\/8MenVXZTtd","display_url":"pic.twitter.com\/8MenVXZTtd","expanded_url":"https:\/\/twitter.com\/Atheist_Bot\/status\/1322454778501320710\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"large":{"w":1012,"h":1002,"resize":"fit"},"medium":{"w":1012,"h":1002,"resize":"fit"}},"source_status_id":1322454778501320710,"source_status_id_str":"1322454778501320710","source_user_id":2269494788,"source_user_id_str":"2269494788"}]},"extended_entities":{"media":[{"id":1322454775724724224,"id_str":"1322454775724724224","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","url":"https:\/\/t.co\/8MenVXZTtd","display_url":"pic.twitter.com\/8MenVXZTtd","expanded_url":"https:\/\/twitter.com\/Atheist_Bot\/status\/1322454778501320710\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"large":{"w":1012,"h":1002,"resize":"fit"},"medium":{"w":1012,"h":1002,"resize":"fit"}},"source_status_id":1322454778501320710,"source_status_id_str":"1322454778501320710","source_user_id":2269494788,"source_user_id_str":"2269494788"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 31 08:26:03 +0000 2020","id":1322454778501320710,"id_str":"1322454778501320710","text":"Your - religion is much more likely to be a product of geography than ideology.\n#atheism\n669 - https:\/\/t.co\/8MenVXZTtd","truncated":false,"entities":{"hashtags":[{"text":"atheism","indices":[78,86]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1322454775724724224,"id_str":"1322454775724724224","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","url":"https:\/\/t.co\/8MenVXZTtd","display_url":"pic.twitter.com\/8MenVXZTtd","expanded_url":"https:\/\/twitter.com\/Atheist_Bot\/status\/1322454778501320710\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"large":{"w":1012,"h":1002,"resize":"fit"},"medium":{"w":1012,"h":1002,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1322454775724724224,"id_str":"1322454775724724224","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ElpNnKKXUAAdMwc.jpg","url":"https:\/\/t.co\/8MenVXZTtd","display_url":"pic.twitter.com\/8MenVXZTtd","expanded_url":"https:\/\/twitter.com\/Atheist_Bot\/status\/1322454778501320710\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":673,"resize":"fit"},"large":{"w":1012,"h":1002,"resize":"fit"},"medium":{"w":1012,"h":1002,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/scottkuma.net\/atheist_bot\" rel=\"nofollow\"\u003eAtheistQuoteBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":52,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1003465353710710784,"id_str":"1003465353710710784","name":"maw","screen_name":"MAVann23","location":"USA","description":"Blue - dot in a Red State \ud83d\udeabmagats \ud83d\udeab NO DMs Please. #BLM Vote - Democrat every time right down the ticket or we\u2019re doomed.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2192,"friends_count":3568,"listed_count":1,"created_at":"Mon - Jun 04 02:35:58 +0000 2018","favourites_count":108183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13375,"lang":null,"status":{"created_at":"Fri - Mar 25 22:49:52 +0000 2022","id":1507489973586567168,"id_str":"1507489973586567168","text":"RT - @TeaPainUSA: Ron Johnson must answer for why he was in Moscow on July 4th. - Who agrees? \ud83e\udd1a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TeaPainUSA","name":"Tea - Pain","id":2421067430,"id_str":"2421067430","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:07:02 +0000 2022","id":1507403698586148867,"id_str":"1507403698586148867","text":"Ron - Johnson must answer for why he was in Moscow on July 4th. Who agrees? \ud83e\udd1a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2278,"favorite_count":13159,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2278,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427696135322411010\/yBROHtJN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427696135322411010\/yBROHtJN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003465353710710784\/1647975989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1224328875171250177,"id_str":"1224328875171250177","name":"Biripu - Kelvin","screen_name":"BiripuK","location":"","description":"Ah Izon","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":310,"listed_count":0,"created_at":"Mon - Feb 03 13:49:37 +0000 2020","favourites_count":814,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Wed - Feb 23 05:52:00 +0000 2022","id":1496362185269956609,"id_str":"1496362185269956609","text":"@teracarissa - You are right","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"teracarissa","name":"Tera - Carissa","id":32141500,"id_str":"32141500","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495742745050337281,"in_reply_to_status_id_str":"1495742745050337281","in_reply_to_user_id":32141500,"in_reply_to_user_id_str":"32141500","in_reply_to_screen_name":"teracarissa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18681749,"id_str":"18681749","name":"Cyanne - Yates","screen_name":"cyane53","location":"Tappahannock, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":641,"listed_count":1,"created_at":"Tue - Jan 06 16:17:23 +0000 2009","favourites_count":2032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2862,"lang":null,"status":{"created_at":"Fri - Mar 25 13:40:11 +0000 2022","id":1507351643456778250,"id_str":"1507351643456778250","text":"@CraigSmpa - You only add to the divisiveness in Essex County. I refer to your letter printed - in the River Country Ne\u2026 https:\/\/t.co\/tjW6UA5gY5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CraigSmpa","name":"Craig - Shirley","id":2164986385,"id_str":"2164986385","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/tjW6UA5gY5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507351643456778250","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507077652628316160,"in_reply_to_status_id_str":"1507077652628316160","in_reply_to_user_id":2164986385,"in_reply_to_user_id_str":"2164986385","in_reply_to_screen_name":"CraigSmpa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3376041204\/120f9a63d76a855223acb03582c99c54_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3376041204\/120f9a63d76a855223acb03582c99c54_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48454613,"id_str":"48454613","name":"Mary - Rose McBride","screen_name":"maryrosemcbride","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":234,"listed_count":0,"created_at":"Thu - Jun 18 19:13:28 +0000 2009","favourites_count":3406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1295,"lang":null,"status":{"created_at":"Sat - Mar 26 02:21:57 +0000 2022","id":1507543349246541831,"id_str":"1507543349246541831","text":"RT - @SBlue84: @VCUPav Agreed. Had to be done. https:\/\/t.co\/u3IQJ1HJZm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SBlue84","name":"Stephen - Blue","id":175246195,"id_str":"175246195","indices":[3,11]},{"screen_name":"VCUPav","name":"Rev - Pav \ud83d\udda4\ud83d\udc9b\ud83d\udc0f","id":47515282,"id_str":"47515282","indices":[13,20]}],"urls":[],"media":[{"id":1506445690632814599,"id_str":"1506445690632814599","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","url":"https:\/\/t.co\/u3IQJ1HJZm","display_url":"pic.twitter.com\/u3IQJ1HJZm","expanded_url":"https:\/\/twitter.com\/SBlue84\/status\/1506445743648878595\/video\/1","type":"photo","sizes":{"large":{"w":1198,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1198,"h":876,"resize":"fit"},"small":{"w":680,"h":497,"resize":"fit"}},"source_status_id":1506445743648878595,"source_status_id_str":"1506445743648878595","source_user_id":175246195,"source_user_id_str":"175246195"}]},"extended_entities":{"media":[{"id":1506445690632814599,"id_str":"1506445690632814599","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","url":"https:\/\/t.co\/u3IQJ1HJZm","display_url":"pic.twitter.com\/u3IQJ1HJZm","expanded_url":"https:\/\/twitter.com\/SBlue84\/status\/1506445743648878595\/video\/1","type":"video","sizes":{"large":{"w":1198,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1198,"h":876,"resize":"fit"},"small":{"w":680,"h":497,"resize":"fit"}},"source_status_id":1506445743648878595,"source_status_id_str":"1506445743648878595","source_user_id":175246195,"source_user_id_str":"175246195","video_info":{"aspect_ratio":[599,438],"duration_millis":42666,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/368x270\/L7cPCJEF7EexxpzU.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/984x720\/BJKDBt63nv7UiNUO.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/492x360\/cqNkNfjqEVOMkRF9.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/pl\/k_Vi1PWIvN9C2A_3.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 01:40:28 +0000 2022","id":1506445743648878595,"id_str":"1506445743648878595","text":"@VCUPav - Agreed. Had to be done. https:\/\/t.co\/u3IQJ1HJZm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VCUPav","name":"Rev - Pav \ud83d\udda4\ud83d\udc9b\ud83d\udc0f","id":47515282,"id_str":"47515282","indices":[0,7]}],"urls":[],"media":[{"id":1506445690632814599,"id_str":"1506445690632814599","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","url":"https:\/\/t.co\/u3IQJ1HJZm","display_url":"pic.twitter.com\/u3IQJ1HJZm","expanded_url":"https:\/\/twitter.com\/SBlue84\/status\/1506445743648878595\/video\/1","type":"photo","sizes":{"large":{"w":1198,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1198,"h":876,"resize":"fit"},"small":{"w":680,"h":497,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506445690632814599,"id_str":"1506445690632814599","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506445690632814599\/pu\/img\/D8ZerHoba_QGy5kn.jpg","url":"https:\/\/t.co\/u3IQJ1HJZm","display_url":"pic.twitter.com\/u3IQJ1HJZm","expanded_url":"https:\/\/twitter.com\/SBlue84\/status\/1506445743648878595\/video\/1","type":"video","sizes":{"large":{"w":1198,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1198,"h":876,"resize":"fit"},"small":{"w":680,"h":497,"resize":"fit"}},"video_info":{"aspect_ratio":[599,438],"duration_millis":42666,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/368x270\/L7cPCJEF7EexxpzU.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/984x720\/BJKDBt63nv7UiNUO.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/vid\/492x360\/cqNkNfjqEVOMkRF9.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506445690632814599\/pu\/pl\/k_Vi1PWIvN9C2A_3.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506436821223362567,"in_reply_to_status_id_str":"1506436821223362567","in_reply_to_user_id":47515282,"in_reply_to_user_id_str":"47515282","in_reply_to_screen_name":"VCUPav","geo":null,"coordinates":null,"place":{"id":"5635c19c2b5078d1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5635c19c2b5078d1.json","place_type":"admin","name":"Virginia","full_name":"Virginia, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.67529,36.540739],[-75.16644,36.540739],[-75.16644,39.466012],[-83.67529,39.466012]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":124,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/856653076069048320\/JFRebEhz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/856653076069048320\/JFRebEhz_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2599148430,"id_str":"2599148430","name":"Fiona - Mary Campbell Connelly","screen_name":"fionabonapalona","location":"USA","description":"","url":"https:\/\/t.co\/g167y0KV6l","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g167y0KV6l","expanded_url":"http:\/\/fionacampbellevents.com","display_url":"fionacampbellevents.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":832,"listed_count":0,"created_at":"Wed - Jul 02 05:16:16 +0000 2014","favourites_count":1434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":434,"lang":null,"status":{"created_at":"Fri - Mar 25 21:10:55 +0000 2022","id":1507465071701733378,"id_str":"1507465071701733378","text":"@jadedcreative - Ugh! Agreed. Yuck.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jadedcreative","name":"Jay - Arnold","id":15879633,"id_str":"15879633","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507432581578563601,"in_reply_to_status_id_str":"1507432581578563601","in_reply_to_user_id":15879633,"in_reply_to_user_id_str":"15879633","in_reply_to_screen_name":"jadedcreative","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268180696259915779\/FbUTLyPS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268180696259915779\/FbUTLyPS_normal.jpg","profile_link_color":"91A6A2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":410904768,"id_str":"410904768","name":"Churchil - Odhiambo","screen_name":"Churchil4","location":"Kisii","description":"Advanced - Cancer Centre","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":398,"friends_count":1281,"listed_count":0,"created_at":"Sat - Nov 12 18:44:31 +0000 2011","favourites_count":3563,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1881,"lang":null,"status":{"created_at":"Thu - Mar 24 22:05:20 +0000 2022","id":1507116381191483394,"id_str":"1507116381191483394","text":"@Kimkim777444 - @Nickruto_ Don''t be personal bana","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kimkim777444","name":"Kimkim","id":1461723549429911554,"id_str":"1461723549429911554","indices":[0,13]},{"screen_name":"Nickruto_","name":"Nick - Ruto","id":1336344059875643394,"id_str":"1336344059875643394","indices":[14,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507109613853978628,"in_reply_to_status_id_str":"1507109613853978628","in_reply_to_user_id":1461723549429911554,"in_reply_to_user_id_str":"1461723549429911554","in_reply_to_screen_name":"Kimkim777444","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260018070480924672\/QsZIXbDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260018070480924672\/QsZIXbDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/410904768\/1595141548","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":313615990,"id_str":"313615990","name":"dena - cruz","screen_name":"iamcruzn","location":"San Francisco, CA","description":"Commercial - real estate attorney San Francisco","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":451,"listed_count":1,"created_at":"Wed - Jun 08 23:07:54 +0000 2011","favourites_count":13026,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1630,"lang":null,"status":{"created_at":"Fri - Mar 25 17:59:39 +0000 2022","id":1507416937587884036,"id_str":"1507416937587884036","text":"RT - @noclador: Blown up russian equipment, fire, Ukrainian troops after fierce - battle,... and in walks a Ukrainian girl with a Kalashnikov,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"noclador","name":"Thomas - C. Theiner","id":48999435,"id_str":"48999435","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:33:04 +0000 2022","id":1507183759304577032,"id_str":"1507183759304577032","text":"Blown - up russian equipment, fire, Ukrainian troops after fierce battle,... and in - walks a Ukrainian girl with a Kal\u2026 https:\/\/t.co\/7OQsckjudB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7OQsckjudB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507183759304577032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5420,"favorite_count":20896,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":5420,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536696770168770561\/I5vyLYEX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536696770168770561\/I5vyLYEX_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2872939973,"id_str":"2872939973","name":"Micimojci","screen_name":"Micimojci","location":"Dublin - City, Ireland","description":"Travel. Eat. Read. Repeat.","url":"https:\/\/t.co\/jBEhBUJpy7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jBEhBUJpy7","expanded_url":"https:\/\/www.instagram.com\/micimojci\/","display_url":"instagram.com\/micimojci\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":214,"listed_count":2,"created_at":"Tue - Nov 11 21:30:32 +0000 2014","favourites_count":696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":336,"lang":null,"status":{"created_at":"Sat - Aug 25 00:43:09 +0000 2018","id":1033152767668441089,"id_str":"1033152767668441089","text":"RT - @guyverhofstadt: In Europe your talent doesnt stop at a border. For 25 ys - our single market helps us exchange knowledge, enrich our skil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guyverhofstadt","name":"Guy - Verhofstadt","id":856010760,"id_str":"856010760","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 11 08:45:09 +0000 2018","id":1028200638239395840,"id_str":"1028200638239395840","text":"In - Europe your talent doesnt stop at a border. For 25 ys our single market helps - us exchange knowledge, enrich our\u2026 https:\/\/t.co\/EcG5CX42rx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EcG5CX42rx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1028200638239395840","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2002,"favorite_count":4486,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2002,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/717735666688401408\/w9Ln8109_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/717735666688401408\/w9Ln8109_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2872939973\/1459956470","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1119960353201373185,"id_str":"1119960353201373185","name":"MickeyMice","screen_name":"mickeymice32","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":1365,"listed_count":2,"created_at":"Sun - Apr 21 13:45:30 +0000 2019","favourites_count":28384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1694,"lang":null,"status":{"created_at":"Sat - Mar 26 03:01:28 +0000 2022","id":1507553291500400643,"id_str":"1507553291500400643","text":"RT - @NishiTwt: It has been revealed that the \u2018Lotus Tower\u2019,which was - constructed by obtaining a loan of Rs.188 million through the Exim Bank\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NishiTwt","name":"\ud835\udca9\ud835\udcbe\ud835\udcc8\ud835\udcbd\ud835\udcbe - \ud835\udcab\ud83c\udf38\ud835\udc52\ud835\udcc2 \ud83c\uddf1\ud83c\uddf0","id":1466877950,"id_str":"1466877950","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:52:34 +0000 2022","id":1507294362337955844,"id_str":"1507294362337955844","text":"It - has been revealed that the \u2018Lotus Tower\u2019,which was constructed by - obtaining a loan of Rs.188 million through the\u2026 https:\/\/t.co\/vzWNiDXoiY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vzWNiDXoiY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507294362337955844","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":66,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":36,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396874079047589888\/EFMA6Tre_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396874079047589888\/EFMA6Tre_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37972556,"id_str":"37972556","name":"Sara - Podgur Hoffman","screen_name":"Podgie23","location":"Lexington, KY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":345,"listed_count":0,"created_at":"Tue - May 05 17:32:28 +0000 2009","favourites_count":316,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":179,"lang":null,"status":{"created_at":"Wed - Feb 09 17:43:23 +0000 2022","id":1491467778355875842,"id_str":"1491467778355875842","text":"@bjw288 - Have you tried the jumping frog. I used to do this with my kids and kindergarten. - We''d have races with them. https:\/\/t.co\/PyBoJPm9hi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bjw288","name":"The - Legend Babra","id":21418501,"id_str":"21418501","indices":[0,7]}],"urls":[],"media":[{"id":1491467773876310025,"id_str":"1491467773876310025","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/FLLCCcfXEAkCXzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLLCCcfXEAkCXzQ.jpg","url":"https:\/\/t.co\/PyBoJPm9hi","display_url":"pic.twitter.com\/PyBoJPm9hi","expanded_url":"https:\/\/twitter.com\/Podgie23\/status\/1491467778355875842\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":547,"h":680,"resize":"fit"},"medium":{"w":965,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1343,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1491467773876310025,"id_str":"1491467773876310025","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/FLLCCcfXEAkCXzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLLCCcfXEAkCXzQ.jpg","url":"https:\/\/t.co\/PyBoJPm9hi","display_url":"pic.twitter.com\/PyBoJPm9hi","expanded_url":"https:\/\/twitter.com\/Podgie23\/status\/1491467778355875842\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":547,"h":680,"resize":"fit"},"medium":{"w":965,"h":1200,"resize":"fit"},"large":{"w":1080,"h":1343,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1481629751164944386,"in_reply_to_status_id_str":"1481629751164944386","in_reply_to_user_id":21418501,"in_reply_to_user_id_str":"21418501","in_reply_to_screen_name":"bjw288","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304794019692556288\/qPYGz9iz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304794019692556288\/qPYGz9iz_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1170238317176082432,"id_str":"1170238317176082432","name":"malyn","screen_name":"ma_lyn_","location":"","description":"..........","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":146,"listed_count":0,"created_at":"Sat - Sep 07 07:32:29 +0000 2019","favourites_count":1669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":752,"lang":null,"status":{"created_at":"Fri - Dec 18 21:13:40 +0000 2020","id":1340042571477704704,"id_str":"1340042571477704704","text":"RT - @newsinfinity1: \u0e2a\u0e39\u0e49\u0e2a\u0e38\u0e14\u0e43\u0e08\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e34\u0e14\u0e07\u0e32\u0e19\u0e19\u0e35\u0e49 - \u0e41\u0e15\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e1b\u0e0f\u0e34\u0e15\u0e32\u0e21\u0e21\u0e32\u0e15\u0e23\u0e01\u0e32\u0e23\u0e2b\u0e19\u0e48\u0e2d\u0e22\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a - \u0e22\u0e49\u0e33\u0e27\u0e48\u0e32\u0e07\u0e32\u0e19\u0e07\u0e48\u0e32\u0e22\u0e46 - \u0e43\u0e2b\u0e49\u0e17\u0e38\u0e01\u0e04\u0e19\u0e44\u0e14\u0e49\u0e21\u0e32\u0e1b\u0e32\u0e23\u0e4c\u0e15\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e19\u0e49\u0e2d\u0e07\u0e46 - \u0e21\u0e32\u0e01\u0e34\u0e19\u0e40\u0e25\u0e35\u0e49\u0e22\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newsinfinity1","name":"newsinfinity","id":1117704370630455296,"id_str":"1117704370630455296","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 18 16:15:09 +0000 2020","id":1339967447080693760,"id_str":"1339967447080693760","text":"\u0e2a\u0e39\u0e49\u0e2a\u0e38\u0e14\u0e43\u0e08\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e34\u0e14\u0e07\u0e32\u0e19\u0e19\u0e35\u0e49 - \u0e41\u0e15\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e1b\u0e0f\u0e34\u0e15\u0e32\u0e21\u0e21\u0e32\u0e15\u0e23\u0e01\u0e32\u0e23\u0e2b\u0e19\u0e48\u0e2d\u0e22\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a - \u0e22\u0e49\u0e33\u0e27\u0e48\u0e32\u0e07\u0e32\u0e19\u0e07\u0e48\u0e32\u0e22\u0e46 - \u0e43\u0e2b\u0e49\u0e17\u0e38\u0e01\u0e04\u0e19\u0e44\u0e14\u0e49\u0e21\u0e32\u0e1b\u0e32\u0e23\u0e4c\u0e15\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e19\u0e49\u0e2d\u0e07\u0e46 - \u0e21\u0e32\u0e01\u0e34\u0e19\u2026 https:\/\/t.co\/jH020vka7D","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jH020vka7D","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1339967447080693760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1765,"favorite_count":1842,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":1765,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255664295053910018\/DP2bKm3j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255664295053910018\/DP2bKm3j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1170238317176082432\/1568298159","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309351975591407617,"id_str":"1309351975591407617","name":"beb","screen_name":"Felomil2","location":"","description":"My - dramatic ass","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":91,"listed_count":0,"created_at":"Fri - Sep 25 04:40:45 +0000 2020","favourites_count":663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":869,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326131414153113600\/MlPbQyg__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326131414153113600\/MlPbQyg__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1309351975591407617\/1601010454","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56916759,"id_str":"56916759","name":"Kendall - Jackman","screen_name":"kendalljackman","location":"United States","description":"Native - New Yorker, Community Organizer, Activist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":709,"friends_count":2752,"listed_count":6,"created_at":"Wed - Jul 15 03:51:07 +0000 2009","favourites_count":30537,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21949,"lang":null,"status":{"created_at":"Sat - Mar 26 02:09:47 +0000 2022","id":1507540284984508418,"id_str":"1507540284984508418","text":"ACLU-1 - Denver PD-0\n\nOpen SmartNews and read \"Verdict Returned In ACLU Lawsuit - Over Damages, Denver Police Action In\u2026 https:\/\/t.co\/pQNkBbM6W2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pQNkBbM6W2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507540284984508418","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192934005647298561\/ROLFdlQX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192934005647298561\/ROLFdlQX_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19750584,"id_str":"19750584","name":"Jerry - Madison Lewter","screen_name":"atlsouthpaw","location":"Shreveport, Louisiana","description":"#jesmeyall - #atlsouthpaw #airforcevet #dogsrule #bravesfan #southpawinshv #geauxvote #whenweallvote - #rockthevote","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":381,"friends_count":770,"listed_count":5,"created_at":"Fri - Jan 30 02:50:17 +0000 2009","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":558,"lang":null,"status":{"created_at":"Sat - Dec 11 01:29:57 +0000 2021","id":1469479535691407364,"id_str":"1469479535691407364","text":"RT - @MaryLTrump: This all day long.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 10 01:50:55 +0000 2021","id":1469122422842572804,"id_str":"1469122422842572804","text":"This - all day long. https:\/\/t.co\/fQNZDMOUJI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fQNZDMOUJI","expanded_url":"https:\/\/twitter.com\/jentaub\/status\/1469115207922425863","display_url":"twitter.com\/jentaub\/status\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1469115207922425863,"quoted_status_id_str":"1469115207922425863","retweet_count":1015,"favorite_count":5329,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1469115207922425863,"quoted_status_id_str":"1469115207922425863","retweet_count":1015,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454607654999965702\/_fTVr64F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454607654999965702\/_fTVr64F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19750584\/1635640629","profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":357554982,"id_str":"357554982","name":"Kate - Hyatt","screen_name":"kate_hyatt","location":"Colorado, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":613,"listed_count":0,"created_at":"Thu - Aug 18 15:08:24 +0000 2011","favourites_count":3551,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":279,"lang":null,"status":{"created_at":"Sat - Mar 05 19:41:13 +0000 2022","id":1500194743464050690,"id_str":"1500194743464050690","text":"@natsechobbyist - @marcorubio Rubio - are you really that stupid?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"natsechobbyist","name":"Rachel - Vindman \ud83c\udf3b","id":1192160073897988096,"id_str":"1192160073897988096","indices":[0,15]},{"screen_name":"marcorubio","name":"Marco - Rubio","id":15745368,"id_str":"15745368","indices":[16,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500151049092489220,"in_reply_to_status_id_str":"1500151049092489220","in_reply_to_user_id":1192160073897988096,"in_reply_to_user_id_str":"1192160073897988096","in_reply_to_screen_name":"natsechobbyist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270042659944456192\/fL4yhSnR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270042659944456192\/fL4yhSnR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3251060564,"id_str":"3251060564","name":"Sylvia - Lee","screen_name":"curlyhead201549","location":"","description":"mom...grandmother...proud - liberal...love my heritage...salsa...dancing...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":707,"listed_count":2,"created_at":"Sat - Jun 20 23:39:57 +0000 2015","favourites_count":21399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12296,"lang":null,"status":{"created_at":"Tue - Mar 02 12:35:09 +0000 2021","id":1366728786448842754,"id_str":"1366728786448842754","text":"RT - @ReallyAmerican1: Republicans are pushing over 200 bills that are pending - in over 40 states to take away voting rights. This should be t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 01 21:41:09 +0000 2021","id":1366503802648502275,"id_str":"1366503802648502275","text":"Republicans - are pushing over 200 bills that are pending in over 40 states to take away - voting rights. This should b\u2026 https:\/\/t.co\/7CS7WGSSOc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7CS7WGSSOc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1366503802648502275","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23785,"favorite_count":28466,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":23785,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612406323259400192\/3FAs379U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612406323259400192\/3FAs379U_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1053007158344933378,"id_str":"1053007158344933378","name":"November_Franklin\u2764\ufe0f","screen_name":"franklinberry8","location":"Kumasi, - Ghana","description":"Unknownlyfstyle@mimi lyf\u2764\ufe0f\ud83d\udd25","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":472,"friends_count":1056,"listed_count":2,"created_at":"Thu - Oct 18 19:37:25 +0000 2018","favourites_count":52568,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5000,"lang":null,"status":{"created_at":"Tue - May 04 17:17:32 +0000 2021","id":1389630285873127427,"id_str":"1389630285873127427","text":"@Annie_lovve - @Gyakie_ Chale woy3 nice!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Annie_lovve","name":"Goddess_Annie\ud83e\udddc\u200d\u2640\ufe0f\ud83e\udd8b","id":1248567577791602689,"id_str":"1248567577791602689","indices":[0,12]},{"screen_name":"Gyakie_","name":"Song - Bird","id":973950143803412481,"id_str":"973950143803412481","indices":[13,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1389625740749049867,"in_reply_to_status_id_str":"1389625740749049867","in_reply_to_user_id":1248567577791602689,"in_reply_to_user_id_str":"1248567577791602689","in_reply_to_screen_name":"Annie_lovve","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388881321020338178\/IHQrqzx4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388881321020338178\/IHQrqzx4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1053007158344933378\/1578338866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":82122844,"id_str":"82122844","name":"Holly - Tallevast","screen_name":"HollyTallevast","location":"Essex , MD","description":"I''m - a very out going person and I love to speak my mind!!! If you want to hear - the truth follow me!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":468,"friends_count":2357,"listed_count":1,"created_at":"Tue - Oct 13 15:42:15 +0000 2009","favourites_count":4672,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3782,"lang":null,"status":{"created_at":"Sun - Mar 20 14:08:13 +0000 2022","id":1505546756905488389,"id_str":"1505546756905488389","text":"RT - @itsJeffTiedrich: pro tip: if Putin is praising your nightly propaganda show - on Fox News, you''re a fucking disgrace to your own country","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itsJeffTiedrich","name":"Jeff - Tiedrich","id":1009577803304656896,"id_str":"1009577803304656896","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 14:17:46 +0000 2022","id":1505186773902704647,"id_str":"1505186773902704647","text":"pro - tip: if Putin is praising your nightly propaganda show on Fox News, you''re - a fucking disgrace to your own country","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10427,"favorite_count":69228,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10427,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EEE580","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/792582078466498561\/eljONulm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/792582078466498561\/eljONulm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82122844\/1396969778","profile_link_color":"FE7275","profile_sidebar_border_color":"493956","profile_sidebar_fill_color":"B15E66","profile_text_color":"EAC45F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1884315978,"id_str":"1884315978","name":"Jennifer - Taberski","screen_name":"ThePinkJennifer","location":"Punta Gorda , Florida","description":"#ThePinkJennifer - of Re\/Max Anchor. I help people Buy & Sell homes in Beautiful #Southwest - #Florida and #PuntaGorgeous. Call: 585-300-9483.","url":"https:\/\/t.co\/SyXzf4QFjE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SyXzf4QFjE","expanded_url":"http:\/\/PinkJennifer.com","display_url":"PinkJennifer.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":291,"listed_count":9,"created_at":"Thu - Sep 19 20:47:43 +0000 2013","favourites_count":2570,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":398,"lang":null,"status":{"created_at":"Sun - Nov 14 00:43:00 +0000 2021","id":1459683246774624259,"id_str":"1459683246774624259","text":"#loveourlifetogether - #magickingdom #familia https:\/\/t.co\/iVFNnXqOG9","truncated":false,"entities":{"hashtags":[{"text":"loveourlifetogether","indices":[0,20]},{"text":"magickingdom","indices":[21,34]},{"text":"familia","indices":[36,44]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iVFNnXqOG9","expanded_url":"https:\/\/www.instagram.com\/p\/CWPI8tcM_bt\/?utm_medium=twitter","display_url":"instagram.com\/p\/CWPI8tcM_bt\/\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851473852039168000\/J4bEWSQv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851473852039168000\/J4bEWSQv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1884315978\/1508644082","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":461212904,"id_str":"461212904","name":"erin - denio","screen_name":"caribgirl2012","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":107,"listed_count":0,"created_at":"Wed - Jan 11 15:29:42 +0000 2012","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85,"lang":null,"status":{"created_at":"Tue - Dec 01 01:59:14 +0000 2020","id":1333591455823228929,"id_str":"1333591455823228929","text":"@HillaryClinton - Sexism alive and well in 2020 \ud83d\ude24","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HillaryClinton","name":"Hillary - Clinton","id":1339835893,"id_str":"1339835893","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1333459149909323776,"in_reply_to_status_id_str":"1333459149909323776","in_reply_to_user_id":1339835893,"in_reply_to_user_id_str":"1339835893","in_reply_to_screen_name":"HillaryClinton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/727895120381550592\/lkK67AuD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/727895120381550592\/lkK67AuD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20554809,"id_str":"20554809","name":"Vince - Pizzinga","screen_name":"vincepizzinga","location":"Sydney, New South Wales","description":"Composer, - vegan egg designer, the Vinny half of @markandvinnys & @mvpbyronbay","url":"https:\/\/t.co\/AjPiFMVYnW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AjPiFMVYnW","expanded_url":"http:\/\/www.vincepizzinga.com","display_url":"vincepizzinga.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1977,"friends_count":1799,"listed_count":12,"created_at":"Tue - Feb 10 22:55:16 +0000 2009","favourites_count":14154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":583,"lang":null,"status":{"created_at":"Sat - Oct 16 11:02:55 +0000 2021","id":1449330006774075400,"id_str":"1449330006774075400","text":"NASA - And Australia Rover Works To Get Oxygen and Water On The Moon - Screen Rant - https:\/\/t.co\/DfktXpGQJe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DfktXpGQJe","expanded_url":"https:\/\/apple.news\/ADT4L8DBxR0CjyG3dUl8jaQ","display_url":"apple.news\/ADT4L8DBxR0Cjy\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208786752200032256\/K4OnH8Dq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208786752200032256\/K4OnH8Dq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20554809\/1398263828","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4590052037,"id_str":"4590052037","name":"BobHobson","screen_name":"BobHobson1","location":"","description":"Married; - father of two. Giants fan, cook, and always a Californian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":684,"listed_count":4,"created_at":"Thu - Dec 24 14:28:11 +0000 2015","favourites_count":11407,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2259,"lang":null,"status":{"created_at":"Fri - Mar 25 11:59:03 +0000 2022","id":1507326193195958280,"id_str":"1507326193195958280","text":"RT - @SRuhle: ONE MORE TIME -- THE CHIEF OF STAFF TO THE PRESIDENT OF THE UNITED - STATES WHO WAS TRYING TO STAY IN POWER ILLEGALLY-PLOTTED WIT\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SRuhle","name":"Stephanie - Ruhle","id":382685028,"id_str":"382685028","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 05:00:23 +0000 2022","id":1507220828861214760,"id_str":"1507220828861214760","text":"ONE - MORE TIME -- THE CHIEF OF STAFF TO THE PRESIDENT OF THE UNITED STATES WHO - WAS TRYING TO STAY IN POWER ILLEGALLY\u2026 https:\/\/t.co\/wGbivCVLzu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGbivCVLzu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507220828861214760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51500,"favorite_count":207268,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":51500,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825905627029319681\/VYU-r7Yw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825905627029319681\/VYU-r7Yw_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":330215392,"id_str":"330215392","name":"Nur - Nabila M.R","screen_name":"NabilaRozaini","location":"","description":"-enter - clich\u00e9 quote here-","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":152,"listed_count":0,"created_at":"Wed - Jul 06 08:44:26 +0000 2011","favourites_count":7741,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1578,"lang":null,"status":{"created_at":"Fri - Jan 14 07:17:47 +0000 2022","id":1481888259232112645,"id_str":"1481888259232112645","text":"@NHMA_YOK - Kau tak pe la ada adik boleh suruh\ud83d\udc40","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NHMA_YOK","name":"harley_yokk","id":235859000,"id_str":"235859000","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1480157521570529282,"in_reply_to_status_id_str":"1480157521570529282","in_reply_to_user_id":235859000,"in_reply_to_user_id_str":"235859000","in_reply_to_screen_name":"NHMA_YOK","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276391513472200711\/CXGUcSCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276391513472200711\/CXGUcSCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330215392\/1361178239","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56779741,"id_str":"56779741","name":"Christopher - Lee","screen_name":"Unity616","location":"iPhone: 41.882622,-87.636345","description":"Switzerland - by way of Brooklyn. Cofounder of Sundays Seltzer","url":"http:\/\/sundaysseltzer.com","entities":{"url":{"urls":[{"url":"http:\/\/sundaysseltzer.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":662,"listed_count":1,"created_at":"Tue - Jul 14 18:53:53 +0000 2009","favourites_count":1420,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":298,"lang":null,"status":{"created_at":"Thu - Mar 05 22:39:27 +0000 2020","id":1235696452724285442,"id_str":"1235696452724285442","text":"RT - @NassirBarrino: My lil cousin is the dopest. The most creative lil dude I - know. His collection is made from pipe cleaners. https:\/\/t.co\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NassirBarrino","name":"ESCO - DISCO","id":363265437,"id_str":"363265437","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 04 05:48:10 +0000 2020","id":1235079568735817730,"id_str":"1235079568735817730","text":"My - lil cousin is the dopest. The most creative lil dude I know. His collection - is made from pipe cleaners. https:\/\/t.co\/MGJSy1EuY3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235076549377961984,"id_str":"1235076549377961984","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235076549377961984\/pu\/img\/K-CK8v90NIQZzueh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235076549377961984\/pu\/img\/K-CK8v90NIQZzueh.jpg","url":"https:\/\/t.co\/MGJSy1EuY3","display_url":"pic.twitter.com\/MGJSy1EuY3","expanded_url":"https:\/\/twitter.com\/NassirBarrino\/status\/1235079568735817730\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1235076549377961984,"id_str":"1235076549377961984","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235076549377961984\/pu\/img\/K-CK8v90NIQZzueh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1235076549377961984\/pu\/img\/K-CK8v90NIQZzueh.jpg","url":"https:\/\/t.co\/MGJSy1EuY3","display_url":"pic.twitter.com\/MGJSy1EuY3","expanded_url":"https:\/\/twitter.com\/NassirBarrino\/status\/1235079568735817730\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":140000,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235076549377961984\/pu\/vid\/320x568\/bCtOn0Tc78VjbJ9d.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235076549377961984\/pu\/vid\/360x640\/necwYo9-LAYgsAAI.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235076549377961984\/pu\/vid\/720x1280\/RrF91dd8rPkSO0Zr.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1235076549377961984\/pu\/pl\/6LAqVL8dUGkVFuvX.m3u8?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53170,"favorite_count":277312,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":53170,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358412476078039041\/oOnr51yy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358412476078039041\/oOnr51yy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56779741\/1633709867","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220452492200370190,"id_str":"1220452492200370190","name":"Jonathan - Evans","screen_name":"Jonatha34864199","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":483,"listed_count":0,"created_at":"Thu - Jan 23 21:06:03 +0000 2020","favourites_count":35247,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2834,"lang":null,"status":{"created_at":"Sat - Mar 26 09:03:59 +0000 2022","id":1507644521206669312,"id_str":"1507644521206669312","text":"@abi_caston - https:\/\/t.co\/YxdbFGzlgs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abi_caston","name":"Abi - Caston \ud83c\uddfa\ud83c\udde6\ud83c\uddea\ud83c\uddfa \ud83d\udd77\ud83e\udd8b\ud83c\udff5","id":763689359254155265,"id_str":"763689359254155265","indices":[0,11]}],"urls":[],"media":[{"id":1507644499530559489,"id_str":"1507644499530559489","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOw6rzoXMAEMOvL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOw6rzoXMAEMOvL.jpg","url":"https:\/\/t.co\/YxdbFGzlgs","display_url":"pic.twitter.com\/YxdbFGzlgs","expanded_url":"https:\/\/twitter.com\/Jonatha34864199\/status\/1507644521206669312\/photo\/1","type":"photo","sizes":{"medium":{"w":220,"h":126,"resize":"fit"},"thumb":{"w":126,"h":126,"resize":"crop"},"small":{"w":220,"h":126,"resize":"fit"},"large":{"w":220,"h":126,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507644499530559489,"id_str":"1507644499530559489","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOw6rzoXMAEMOvL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOw6rzoXMAEMOvL.jpg","url":"https:\/\/t.co\/YxdbFGzlgs","display_url":"pic.twitter.com\/YxdbFGzlgs","expanded_url":"https:\/\/twitter.com\/Jonatha34864199\/status\/1507644521206669312\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":220,"h":126,"resize":"fit"},"thumb":{"w":126,"h":126,"resize":"crop"},"small":{"w":220,"h":126,"resize":"fit"},"large":{"w":220,"h":126,"resize":"fit"}},"video_info":{"aspect_ratio":[110,63],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOw6rzoXMAEMOvL.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507632186194857984,"in_reply_to_status_id_str":"1507632186194857984","in_reply_to_user_id":763689359254155265,"in_reply_to_user_id_str":"763689359254155265","in_reply_to_screen_name":"abi_caston","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1142354764451049473,"id_str":"1142354764451049473","name":"Vera - Angel","screen_name":"vera_angelll","location":"","description":"she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":107,"listed_count":0,"created_at":"Sat - Jun 22 08:52:54 +0000 2019","favourites_count":49326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470540767600906246\/lfOWae5u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470540767600906246\/lfOWae5u_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":114876604,"id_str":"114876604","name":"Jim - Anderson","screen_name":"col_anderson","location":"Trinity, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":399,"listed_count":1,"created_at":"Tue - Feb 16 22:11:59 +0000 2010","favourites_count":33009,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13368,"lang":null,"status":{"created_at":"Thu - Mar 24 12:30:26 +0000 2022","id":1506971700524732420,"id_str":"1506971700524732420","text":"50 - million? Population of Ukraine is only 44 million. https:\/\/t.co\/u3FXkuKpMS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u3FXkuKpMS","expanded_url":"https:\/\/twitter.com\/chrislhayes\/status\/1505979605404078100","display_url":"twitter.com\/chrislhayes\/st\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505979605404078100,"quoted_status_id_str":"1505979605404078100","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1534777302\/Jim_-_F111_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1534777302\/Jim_-_F111_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2649808959,"id_str":"2649808959","name":"Julie - Russin Bercow","screen_name":"JuJu73161","location":"Miami Beach, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":119,"listed_count":0,"created_at":"Sat - Jun 28 10:58:05 +0000 2014","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1210055096,"id_str":"1210055096","name":"Evelyn - \ud83c\udde8\ud83c\udde6","screen_name":"74Chilena","location":"","description":"Social - Justice fighter \/ Peace\/ loving kindness \/ no walls,one world\/ environmental - Justice \/ liberation and freedom for all \/democracy \/for the good of all","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":389,"listed_count":0,"created_at":"Fri - Feb 22 23:20:45 +0000 2013","favourites_count":3137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1353,"lang":null,"status":{"created_at":"Fri - Mar 25 12:43:24 +0000 2022","id":1507337351063912449,"id_str":"1507337351063912449","text":"RT - @OccupyDemocrats: If you\u2019re a Democrat who thinks Jared Kushner and Ginny - Thomas, wife of Supreme Court Justice Clarence Thomas, must be\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:00:11 +0000 2022","id":1507160381663367177,"id_str":"1507160381663367177","text":"If - you\u2019re a Democrat who thinks Jared Kushner and Ginny Thomas, wife of - Supreme Court Justice Clarence Thomas, must\u2026 https:\/\/t.co\/VXZXlwwlq6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VXZXlwwlq6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507160381663367177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507157226267586566,"in_reply_to_status_id_str":"1507157226267586566","in_reply_to_user_id":878284831,"in_reply_to_user_id_str":"878284831","in_reply_to_screen_name":"OccupyDemocrats","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1052,"favorite_count":2391,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1052,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":364733878,"id_str":"364733878","name":"Blake","screen_name":"JAK10Q","location":"","description":"A - Man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":827,"listed_count":0,"created_at":"Tue - Aug 30 07:24:50 +0000 2011","favourites_count":8076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3541,"lang":null,"status":{"created_at":"Wed - Jan 05 13:26:33 +0000 2022","id":1478719569229348867,"id_str":"1478719569229348867","text":"@S7i5FV0JOz6sV3A - https:\/\/t.co\/k7ptbj2Xw7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"S7i5FV0JOz6sV3A","name":"\u6d69\u54e5i\u271d\ufe0fi\ud83c\uddfa\ud83c\uddf8iA2","id":857374372218142720,"id_str":"857374372218142720","indices":[0,16]}],"urls":[],"media":[{"id":1478719560215719940,"id_str":"1478719560215719940","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FIV3mv0UcAQ2Alf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FIV3mv0UcAQ2Alf.jpg","url":"https:\/\/t.co\/k7ptbj2Xw7","display_url":"pic.twitter.com\/k7ptbj2Xw7","expanded_url":"https:\/\/twitter.com\/JAK10Q\/status\/1478719569229348867\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":946,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1478719560215719940,"id_str":"1478719560215719940","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FIV3mv0UcAQ2Alf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FIV3mv0UcAQ2Alf.jpg","url":"https:\/\/t.co\/k7ptbj2Xw7","display_url":"pic.twitter.com\/k7ptbj2Xw7","expanded_url":"https:\/\/twitter.com\/JAK10Q\/status\/1478719569229348867\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":946,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478603449679888384,"in_reply_to_status_id_str":"1478603449679888384","in_reply_to_user_id":857374372218142720,"in_reply_to_user_id_str":"857374372218142720","in_reply_to_screen_name":"S7i5FV0JOz6sV3A","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340445189878378497\/bM8QZktg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340445189878378497\/bM8QZktg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205474603629498369,"id_str":"1205474603629498369","name":"LEGENDARY - DARSHAN","screen_name":"LEGENDARYDARSH1","location":"Oklahoma, USA","description":"Love - for life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":1333,"listed_count":0,"created_at":"Fri - Dec 13 13:08:53 +0000 2019","favourites_count":10140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1386,"lang":null,"status":{"created_at":"Wed - Mar 23 21:29:48 +0000 2022","id":1506745048154746885,"id_str":"1506745048154746885","text":"@StephBlackPearl - That will be better.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephBlackPearl","name":"Stephanie - BlackPearl Ubozoh","id":2985304270,"id_str":"2985304270","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506314222803763205,"in_reply_to_status_id_str":"1506314222803763205","in_reply_to_user_id":2985304270,"in_reply_to_user_id_str":"2985304270","in_reply_to_screen_name":"StephBlackPearl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485704507132719108\/T9XK91lq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485704507132719108\/T9XK91lq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260556404655611904,"id_str":"1260556404655611904","name":"Jose","screen_name":"jose10702520","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":577,"listed_count":0,"created_at":"Wed - May 13 13:04:16 +0000 2020","favourites_count":2634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1923,"lang":null,"status":{"created_at":"Mon - Oct 11 10:50:42 +0000 2021","id":1447514991679127556,"id_str":"1447514991679127556","text":"@DonaldJTrumpJr - The only Domestic terrorism is your father M F .","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1447206766517923840,"in_reply_to_status_id_str":"1447206766517923840","in_reply_to_user_id":39344374,"in_reply_to_user_id_str":"39344374","in_reply_to_screen_name":"DonaldJTrumpJr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321048568556376065\/G2gDdvbc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321048568556376065\/G2gDdvbc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1260556404655611904\/1602420424","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":726783130091184128,"id_str":"726783130091184128","name":"Lummyang","screen_name":"lummyang","location":"","description":"Stand - for Justice,Peace and Equality.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":804,"listed_count":0,"created_at":"Sun - May 01 14:39:35 +0000 2016","favourites_count":2839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1852,"lang":null,"status":{"created_at":"Tue - Feb 01 02:37:56 +0000 2022","id":1488340811095937026,"id_str":"1488340811095937026","text":"#NewProfilePic - https:\/\/t.co\/aLT5csRytN","truncated":false,"entities":{"hashtags":[{"text":"NewProfilePic","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1488340808151539712,"id_str":"1488340808151539712","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FKemFFaXIAAGcyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKemFFaXIAAGcyV.jpg","url":"https:\/\/t.co\/aLT5csRytN","display_url":"pic.twitter.com\/aLT5csRytN","expanded_url":"https:\/\/twitter.com\/lummyang\/status\/1488340811095937026\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1488340808151539712,"id_str":"1488340808151539712","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FKemFFaXIAAGcyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKemFFaXIAAGcyV.jpg","url":"https:\/\/t.co\/aLT5csRytN","display_url":"pic.twitter.com\/aLT5csRytN","expanded_url":"https:\/\/twitter.com\/lummyang\/status\/1488340811095937026\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488340802988392453\/hURT4qHI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488340802988392453\/hURT4qHI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726783130091184128\/1643683073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291717043771899904,"id_str":"1291717043771899904","name":"Kim","screen_name":"Kim43652728","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":224,"listed_count":0,"created_at":"Fri - Aug 07 12:45:34 +0000 2020","favourites_count":13389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Tue - Mar 22 00:59:53 +0000 2022","id":1506073141717651458,"id_str":"1506073141717651458","text":"RT - @CharlieCrist: Ron DeSantis wants to \u201cstop woke.\u201d Floridians want - to stop Ron. Like and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CharlieCrist","name":"Charlie - Crist","id":38970940,"id_str":"38970940","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:30:09 +0000 2022","id":1506065659419107331,"id_str":"1506065659419107331","text":"Ron - DeSantis wants to \u201cstop woke.\u201d Floridians want to stop Ron. Like - and retweet if you agree.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/tweepsmap.com\" rel=\"nofollow\"\u003eTweepsmap\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8570,"favorite_count":23562,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8570,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291717218322063361\/bmLw6mJn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291717218322063361\/bmLw6mJn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54612261,"id_str":"54612261","name":"Jean - Ackerly","screen_name":"jpackerly","location":"","description":"Mother, Daughter, - Sister; lover of literature, music and the human spirit.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":483,"listed_count":4,"created_at":"Tue - Jul 07 17:14:41 +0000 2009","favourites_count":183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":978,"lang":null,"status":{"created_at":"Sun - Feb 27 13:45:36 +0000 2022","id":1497930921978310661,"id_str":"1497930921978310661","text":"RT - @RevRobSchenck1: Translation: \u201cAttention Russian Soldier: Conscientious - people demand that you be prosecuted for war crimes if you shoot\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RevRobSchenck1","name":"Rev - Rob Schenck","id":487724195,"id_str":"487724195","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 16:23:19 +0000 2022","id":1497608224089989123,"id_str":"1497608224089989123","text":"Translation: - \u201cAttention Russian Soldier: Conscientious people demand that you be prosecuted - for war crimes if you s\u2026 https:\/\/t.co\/KKpSc9vTYd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KKpSc9vTYd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497608224089989123","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497608088005885957,"in_reply_to_status_id_str":"1497608088005885957","in_reply_to_user_id":487724195,"in_reply_to_user_id_str":"487724195","in_reply_to_screen_name":"RevRobSchenck1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/861684169067417601\/77txpwwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/861684169067417601\/77txpwwm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54612261\/1494276540","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2680214970,"id_str":"2680214970","name":"Cat - Currie","screen_name":"curriecatherin1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":158,"listed_count":0,"created_at":"Fri - Jul 25 18:49:10 +0000 2014","favourites_count":6542,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":477,"lang":null,"status":{"created_at":"Fri - Mar 25 16:45:46 +0000 2022","id":1507398345618333697,"id_str":"1507398345618333697","text":"RT - @ProjectLincoln: Commander in Chief https:\/\/t.co\/dTuMdLqNI2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]}],"urls":[],"media":[{"id":1507383065429086212,"id_str":"1507383065429086212","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","url":"https:\/\/t.co\/dTuMdLqNI2","display_url":"pic.twitter.com\/dTuMdLqNI2","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507383068339937280\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1507383068339937280,"source_status_id_str":"1507383068339937280","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"extended_entities":{"media":[{"id":1507383065429086212,"id_str":"1507383065429086212","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","url":"https:\/\/t.co\/dTuMdLqNI2","display_url":"pic.twitter.com\/dTuMdLqNI2","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507383068339937280\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1507383068339937280,"source_status_id_str":"1507383068339937280","source_user_id":1205226529455632385,"source_user_id_str":"1205226529455632385"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:45:03 +0000 2022","id":1507383068339937280,"id_str":"1507383068339937280","text":"Commander - in Chief https:\/\/t.co\/dTuMdLqNI2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507383065429086212,"id_str":"1507383065429086212","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","url":"https:\/\/t.co\/dTuMdLqNI2","display_url":"pic.twitter.com\/dTuMdLqNI2","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507383068339937280\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507383065429086212,"id_str":"1507383065429086212","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtM6VtXEAQfH8U.jpg","url":"https:\/\/t.co\/dTuMdLqNI2","display_url":"pic.twitter.com\/dTuMdLqNI2","expanded_url":"https:\/\/twitter.com\/ProjectLincoln\/status\/1507383068339937280\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4660,"favorite_count":35956,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4660,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492828428005945344\/f1cQby95_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492828428005945344\/f1cQby95_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22674714,"id_str":"22674714","name":"Magdalyn58","screen_name":"Magdalyn58","location":"NEPA","description":"Counselor, - School Psychologist, Nurse, Physician Assistant (Retired). Lover of animals - and nature, music and folks taking care of one another. Kindness matters.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":1953,"listed_count":1,"created_at":"Tue - Mar 03 20:35:57 +0000 2009","favourites_count":22042,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":917,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482821722828447744\/WDu6CZny_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482821722828447744\/WDu6CZny_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22674714\/1522831884","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2984592332,"id_str":"2984592332","name":"Sam - Miller\u263c","screen_name":"sam_miller48","location":"Latrobe, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":483,"friends_count":379,"listed_count":0,"created_at":"Thu - Jan 15 21:21:47 +0000 2015","favourites_count":6512,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1353,"lang":null,"status":{"created_at":"Wed - Mar 17 03:28:33 +0000 2021","id":1372027045442633733,"id_str":"1372027045442633733","text":"RT - @jillianherrle: just wanted to drop in & say that if you\u2019re going - through a rough patch to keep pushing. it\u2019s so easy to get wrapped up\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jillianherrle","name":"JiL","id":2244417791,"id_str":"2244417791","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 16 23:11:47 +0000 2021","id":1371962430063054851,"id_str":"1371962430063054851","text":"just - wanted to drop in & say that if you\u2019re going through a rough patch - to keep pushing. it\u2019s so easy to get wrappe\u2026 https:\/\/t.co\/TgXSYuiNM3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TgXSYuiNM3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1371962430063054851","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131284425457709058\/d0Z8E8Uw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131284425457709058\/d0Z8E8Uw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984592332\/1544106591","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246786022446231559,"id_str":"1246786022446231559","name":"Davis","screen_name":"Davis22339734","location":"New - York , Mexico city , China","description":"As investing person in mine field - . I am eager to find constant nonferrous metals mineral business . Frankly - I also like establish good relations with friends .","url":"https:\/\/t.co\/wXQ1OKgIMU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wXQ1OKgIMU","expanded_url":"http:\/\/sunwah.bloombiz.com","display_url":"sunwah.bloombiz.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":302,"listed_count":0,"created_at":"Sun - Apr 05 13:06:09 +0000 2020","favourites_count":3859,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1246786022446231559\/1602912850","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14052777,"id_str":"14052777","name":"Sylvia - G. Arteaga","screen_name":"sylfox07","location":"Austin, Texas","description":"Perk - and Doom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":1837,"listed_count":35,"created_at":"Thu - Feb 28 02:52:01 +0000 2008","favourites_count":20085,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1487,"lang":null,"status":{"created_at":"Sat - Mar 26 03:24:13 +0000 2022","id":1507559018386051072,"id_str":"1507559018386051072","text":"@jesflres - Me (for now)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195879811014680577\/sz87QRgq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195879811014680577\/sz87QRgq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14052777\/1583526334","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1209692516150325248,"id_str":"1209692516150325248","name":"Gary - McKenzie","screen_name":"gemmac21502","location":"Cumberland, MD","description":"\"Success - in virtually any endeavor today is about people, persistence and performance.\u201d - I\u2019m a fan of my relationship and love my family and pets.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":536,"listed_count":0,"created_at":"Wed - Dec 25 04:30:07 +0000 2019","favourites_count":7724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386858668650598402\/AGBx2JTU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386858668650598402\/AGBx2JTU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1209692516150325248\/1577249046","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2928714293,"id_str":"2928714293","name":"Steven - J. Kuhn 1973","screen_name":"sjkindel73","location":"Talleyville, Del. 19803","description":"sjkuhn1@comcast.net - - stevenjkuhn@gmail.com","url":"https:\/\/t.co\/Bim8iISSfK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Bim8iISSfK","expanded_url":"http:\/\/WWW.NONE.COM","display_url":"NONE.COM","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":825,"friends_count":5001,"listed_count":0,"created_at":"Thu - Dec 18 00:55:21 +0000 2014","favourites_count":80008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":255,"lang":null,"status":{"created_at":"Sun - Mar 13 14:04:08 +0000 2022","id":1503009014577352718,"id_str":"1503009014577352718","text":"@Heidigrey0tv - Perfect Tan !!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Heidigrey0tv","name":"Heidi - Grey","id":1456770138905186306,"id_str":"1456770138905186306","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502680050038149120,"in_reply_to_status_id_str":"1502680050038149120","in_reply_to_user_id":1456770138905186306,"in_reply_to_user_id_str":"1456770138905186306","in_reply_to_screen_name":"Heidigrey0tv","geo":null,"coordinates":null,"place":{"id":"3f5897b87d2bf56c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3f5897b87d2bf56c.json","place_type":"admin","name":"Delaware","full_name":"Delaware, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-75.7887564,38.4510398],[-74.984165,38.4510398],[-74.984165,39.839007],[-75.7887564,39.839007]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611183447562805248\/0XvoIBh9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611183447562805248\/0XvoIBh9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2928714293\/1452696350","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":402057902,"id_str":"402057902","name":"Leslie - Hammond","screen_name":"LeslieHammond2","location":"Hartford, CT","description":"Shining - the light on injustice ; saving our democracy #wewillresist Broker\/Owner - Hammond Realty llc, yalediv \u201889, 4th women member NYSE 1977-1984 boys\u2019 - club","url":"https:\/\/t.co\/UH1KwrA64t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UH1KwrA64t","expanded_url":"http:\/\/lesliehammondrealty.com","display_url":"lesliehammondrealty.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":623,"friends_count":3072,"listed_count":6,"created_at":"Mon - Oct 31 13:51:23 +0000 2011","favourites_count":32899,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31620,"lang":null,"status":{"created_at":"Sat - Mar 26 00:38:54 +0000 2022","id":1507517413327351811,"id_str":"1507517413327351811","text":"RT - @OccupyDemocrats: BREAKING: The Women''s March officially calls for Justice - Clarence Thomas to be impeached after his wife Ginni\u2019s texts\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:24:02 +0000 2022","id":1507423075398168581,"id_str":"1507423075398168581","text":"BREAKING: - The Women''s March officially calls for Justice Clarence Thomas to be impeached - after his wife Ginni\u2019s tex\u2026 https:\/\/t.co\/1Mxk8zBE09","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1Mxk8zBE09","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507423075398168581","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9322,"favorite_count":26525,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9322,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/750118595024347136\/_KsrQ5O1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/750118595024347136\/_KsrQ5O1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35848573,"id_str":"35848573","name":"Jorge - Mart\u00edn \u00c1brego","screen_name":"jmarhn","location":"15.521895,-88.023654","description":"Entusiasta - de la vida, complicado por naturaleza, pero sincero en lo que digo y practico; - fan del teatro, buenos libros y excelente compa\u00f1\u00eda.","url":"https:\/\/t.co\/1yxL96nOMH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1yxL96nOMH","expanded_url":"http:\/\/www.blogspot.com\/catrachopensante","display_url":"blogspot.com\/catrachopensan\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":78,"listed_count":3,"created_at":"Mon - Apr 27 20:22:04 +0000 2009","favourites_count":1284,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":802,"lang":null,"status":{"created_at":"Fri - Mar 25 02:09:25 +0000 2022","id":1507177806438047744,"id_str":"1507177806438047744","text":"@ElMundoDeLester - Creo que es necesario entender de d\u00f3nde venimos.\n\u00bfQu\u00e9 ser\u00eda - de nuestra democracia sin una Rixi Mon\u2026 https:\/\/t.co\/oFizXn3LXO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElMundoDeLester","name":"Lester - Ram\u00edrez Ir\u00edas","id":56234701,"id_str":"56234701","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/oFizXn3LXO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507177806438047744","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506869781248548867,"in_reply_to_status_id_str":"1506869781248548867","in_reply_to_user_id":56234701,"in_reply_to_user_id_str":"56234701","in_reply_to_screen_name":"ElMundoDeLester","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492681507051388930\/1BNgaDFW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492681507051388930\/1BNgaDFW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35848573\/1357488609","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309810677519974400,"id_str":"1309810677519974400","name":"Francisco","screen_name":"Francis32627175","location":"Gran - Canaria","description":"\"Vive como si fueras a morir ma\u00f1ana... aprende - como si fueras a vivir para siempre.\"\nMahatma Gandhi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":932,"friends_count":4918,"listed_count":0,"created_at":"Sat - Sep 26 11:03:06 +0000 2020","favourites_count":1162,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":465,"lang":null,"status":{"created_at":"Wed - Mar 23 13:10:11 +0000 2022","id":1506619316384546819,"id_str":"1506619316384546819","text":"RT - @EducacionCan: .@educaciongob convoca 117 plazas para estancias profesionales - europeas para docentes y 104 para formaciones en el marco\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EducacionCan","name":"Educaci\u00f3n - Gobcan","id":366151720,"id_str":"366151720","indices":[3,16]},{"screen_name":"educaciongob","name":"Ministerio - de Educaci\u00f3n y Formaci\u00f3n Profesional","id":242343224,"id_str":"242343224","indices":[19,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 12:40:23 +0000 2022","id":1506611816788598787,"id_str":"1506611816788598787","text":".@educaciongob - convoca 117 plazas para estancias profesionales europeas para docentes y 104 - para formaciones en el\u2026 https:\/\/t.co\/0Q8EGULqhk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"educaciongob","name":"Ministerio - de Educaci\u00f3n y Formaci\u00f3n Profesional","id":242343224,"id_str":"242343224","indices":[1,14]}],"urls":[{"url":"https:\/\/t.co\/0Q8EGULqhk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506611816788598787","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309812203470704641\/6QOU4zPn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309812203470704641\/6QOU4zPn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1309810677519974400\/1601400565","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":182762212,"id_str":"182762212","name":"Jeremy - Bates","screen_name":"JEBEarleron","location":"","description":"Super Fantastic!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":342,"listed_count":0,"created_at":"Wed - Aug 25 10:06:37 +0000 2010","favourites_count":3338,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309497915216482316\/SZhx3fwt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309497915216482316\/SZhx3fwt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182762212\/1389787401","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1163684947145711616,"id_str":"1163684947145711616","name":"Prosper","screen_name":"mayembe_prosper","location":"Dar - Es salaam ","description":"Tanzanian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":1842,"listed_count":0,"created_at":"Tue - Aug 20 05:31:54 +0000 2019","favourites_count":451,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Mon - Jan 11 11:19:20 +0000 2021","id":1348590312806117376,"id_str":"1348590312806117376","text":"#RUDISHAMBUZI","truncated":false,"entities":{"hashtags":[{"text":"RUDISHAMBUZI","indices":[0,13]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163685293523918849\/mnAxHjHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163685293523918849\/mnAxHjHu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":213501475,"id_str":"213501475","name":"Gary - Moore","screen_name":"wizzhardd","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":456,"listed_count":0,"created_at":"Tue - Nov 09 02:26:15 +0000 2010","favourites_count":221,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Thu - Feb 24 19:09:02 +0000 2022","id":1496925153833340951,"id_str":"1496925153833340951","text":"@trish_regan - Google the United Nations to understand its creation and history. US, Russia, - and China all have an eq\u2026 https:\/\/t.co\/YZIcd1ybG7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"trish_regan","name":"Trish - Regan","id":138182116,"id_str":"138182116","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/YZIcd1ybG7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496925153833340951","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1496890245756952581,"in_reply_to_status_id_str":"1496890245756952581","in_reply_to_user_id":138182116,"in_reply_to_user_id_str":"138182116","in_reply_to_screen_name":"trish_regan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267595216451764226,"id_str":"1267595216451764226","name":"Debra - Osbourn","screen_name":"DebraOsbourn2","location":"Michigan, USA","description":"I - am responsible for the consequences of my choices as we all are. Conservative - Independent.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":219,"listed_count":1,"created_at":"Mon - Jun 01 23:14:35 +0000 2020","favourites_count":1561,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5678,"lang":null,"status":{"created_at":"Thu - Mar 24 23:17:28 +0000 2022","id":1507134534881587206,"id_str":"1507134534881587206","text":"RT - @R4AmericaNow: If the last 2 years have taught us anything it''s that gov''t - is NOT coming to save anyone. In fact, they usually make the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"R4AmericaNow","name":"Recovery - for America Now Foundation","id":1471182286888570883,"id_str":"1471182286888570883","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:11:23 +0000 2022","id":1507117903249907718,"id_str":"1507117903249907718","text":"If - the last 2 years have taught us anything it''s that gov''t is NOT coming to - save anyone. In fact, they usually mak\u2026 https:\/\/t.co\/9RRQpJ9EKL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9RRQpJ9EKL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507117903249907718","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":156,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":53,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377399144885665793\/6Q_leplZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377399144885665793\/6Q_leplZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267595216451764226\/1592934646","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":235202393,"id_str":"235202393","name":"Barbara - *Save The Pangolins* \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","screen_name":"blucraze123","location":"","description":"Mom, - Pharmacist, Caregiver","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":1157,"listed_count":0,"created_at":"Fri - Jan 07 16:19:43 +0000 2011","favourites_count":117145,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1118,"lang":null,"status":{"created_at":"Tue - Mar 22 22:53:51 +0000 2022","id":1506403813661495301,"id_str":"1506403813661495301","text":"RT - @DoleFoundation: Today, @DeptVetAffairs announced that it''s halting all removals - from the caregiver program until a full review of new e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DoleFoundation","name":"Elizabeth - Dole Foundation","id":891532531,"id_str":"891532531","indices":[3,18]},{"screen_name":"DeptVetAffairs","name":"Veterans - Affairs","id":78408666,"id_str":"78408666","indices":[27,42]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:45:22 +0000 2022","id":1506386578578489352,"id_str":"1506386578578489352","text":"Today, - @DeptVetAffairs announced that it''s halting all removals from the caregiver - program until a full review of n\u2026 https:\/\/t.co\/fZKyteARN7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeptVetAffairs","name":"Veterans - Affairs","id":78408666,"id_str":"78408666","indices":[7,22]}],"urls":[{"url":"https:\/\/t.co\/fZKyteARN7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506386578578489352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329197379711537156\/ILObldnf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329197379711537156\/ILObldnf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":185021046,"id_str":"185021046","name":"kiptum - Arap kuchurei","screen_name":"kuchuurei","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":64,"friends_count":1667,"listed_count":0,"created_at":"Tue - Aug 31 01:35:54 +0000 2010","favourites_count":2076,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":390,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331881993039130625\/ZK-LX_9E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331881993039130625\/ZK-LX_9E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185021046\/1606380518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312511153382326272,"id_str":"1312511153382326272","name":"Dr. - Kathryn Duffy, L.Ac.","screen_name":"duffyacu","location":"New York, NY","description":"Doctor - of Acupuncture practicing in New York, the greatest city in the world. Rescue - Staffie mom. Kasvot Vaxt fan.","url":"https:\/\/t.co\/xvj4cj8sik","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xvj4cj8sik","expanded_url":"https:\/\/kathrynduffyacupuncture.com","display_url":"kathrynduffyacupuncture.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":283,"listed_count":0,"created_at":"Sat - Oct 03 21:53:47 +0000 2020","favourites_count":11428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":406,"lang":null,"status":{"created_at":"Fri - Mar 04 15:14:15 +0000 2022","id":1499765168976371714,"id_str":"1499765168976371714","text":"Acupuncture - for charity - open for more! - https:\/\/t.co\/kNNhNzq6HC https:\/\/t.co\/KGMgPOmM6Q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kNNhNzq6HC","expanded_url":"https:\/\/mailchi.mp\/9fec416e32ef\/acupuncture-for-charity-open-for-more","display_url":"mailchi.mp\/9fec416e32ef\/a\u2026","indices":[43,66]}],"media":[{"id":1499765166883409922,"id_str":"1499765166883409922","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FNA8eSKXEAI1Gl5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNA8eSKXEAI1Gl5.jpg","url":"https:\/\/t.co\/KGMgPOmM6Q","display_url":"pic.twitter.com\/KGMgPOmM6Q","expanded_url":"https:\/\/twitter.com\/duffyacu\/status\/1499765168976371714\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499765166883409922,"id_str":"1499765166883409922","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FNA8eSKXEAI1Gl5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNA8eSKXEAI1Gl5.jpg","url":"https:\/\/t.co\/KGMgPOmM6Q","display_url":"pic.twitter.com\/KGMgPOmM6Q","expanded_url":"https:\/\/twitter.com\/duffyacu\/status\/1499765168976371714\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/www.mailchimp.com\" rel=\"nofollow\"\u003eMailchimp\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312511382592671744\/X_yesvLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312511382592671744\/X_yesvLY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":820413903586795520,"id_str":"820413903586795520","name":"George - West","screen_name":"GeorgeW62778323","location":"Florida, USA","description":"Retired - defense worker and textile manufacturer. Trusting in God praying US return - to \u201cone nation under God indivisible with unity and justice for all\u201d.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":63,"listed_count":0,"created_at":"Sat - Jan 14 23:34:51 +0000 2017","favourites_count":6112,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2030,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486378408615493637\/LZ804jSM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486378408615493637\/LZ804jSM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/820413903586795520\/1588421592","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1144687570770640903,"id_str":"1144687570770640903","name":"Neil - markoff","screen_name":"Neil91361230","location":"Trinidad and Tobago","description":"for - d love of hanuman","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":405,"friends_count":4868,"listed_count":1,"created_at":"Fri - Jun 28 19:22:38 +0000 2019","favourites_count":22789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1937,"lang":null,"status":{"created_at":"Fri - Mar 25 10:42:33 +0000 2022","id":1507306938161373184,"id_str":"1507306938161373184","text":"Trinidad - not a real place https:\/\/t.co\/TmugDA7ATI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507306929432977454,"id_str":"1507306929432977454","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsHqpBWYC4eC-T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsHqpBWYC4eC-T.jpg","url":"https:\/\/t.co\/TmugDA7ATI","display_url":"pic.twitter.com\/TmugDA7ATI","expanded_url":"https:\/\/twitter.com\/Neil91361230\/status\/1507306938161373184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507306929432977454,"id_str":"1507306929432977454","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsHqpBWYC4eC-T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsHqpBWYC4eC-T.jpg","url":"https:\/\/t.co\/TmugDA7ATI","display_url":"pic.twitter.com\/TmugDA7ATI","expanded_url":"https:\/\/twitter.com\/Neil91361230\/status\/1507306938161373184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"47bf5243296fa7e3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/47bf5243296fa7e3.json","place_type":"country","name":"Trinidad - and Tobago","full_name":"Trinidad and Tobago","country_code":"TT","country":"Trinidad - and Tobago","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-61.9305415,10.0424194],[-60.4930236,10.0424194],[-60.4930236,11.3585325],[-61.9305415,11.3585325]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266406318249738242\/S6biHMXw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266406318249738242\/S6biHMXw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1285813861770305539,"id_str":"1285813861770305539","name":"yusufu - dauda kanu","screen_name":"kanu_yusufu","location":"","description":"Islam - means peace","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":120,"listed_count":0,"created_at":"Wed - Jul 22 05:48:28 +0000 2020","favourites_count":980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":252,"lang":null,"status":{"created_at":"Mon - Jul 19 12:17:12 +0000 2021","id":1417096179914088448,"id_str":"1417096179914088448","text":"@NumbersMuncher - Jesus wept.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NumbersMuncher","name":"Josh - Jordan","id":813311743,"id_str":"813311743","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1416952732385226752,"in_reply_to_status_id_str":"1416952732385226752","in_reply_to_user_id":813311743,"in_reply_to_user_id_str":"813311743","in_reply_to_screen_name":"NumbersMuncher","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353111368224878593\/-4vps4y6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353111368224878593\/-4vps4y6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181156889326956544,"id_str":"1181156889326956544","name":"Susan - Garrett","screen_name":"SusanGa80927195","location":"Oklahoma, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":43,"listed_count":0,"created_at":"Mon - Oct 07 10:38:58 +0000 2019","favourites_count":289,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - May 02 09:51:09 +0000 2021","id":1388793174303334401,"id_str":"1388793174303334401","text":"@davidfholt - Should have let Chick-fil-A handle it!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidfholt","name":"Mayor - David Holt","id":19791281,"id_str":"19791281","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1387177383355166721,"in_reply_to_status_id_str":"1387177383355166721","in_reply_to_user_id":19791281,"in_reply_to_user_id_str":"19791281","in_reply_to_screen_name":"davidfholt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347502147332694016\/Fe43XrIO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347502147332694016\/Fe43XrIO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1025483080876916736,"id_str":"1025483080876916736","name":"Poplimitjr","screen_name":"Poplimitjr1","location":"Ghana - ,central Region","description":"Kindness","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":2399,"listed_count":1,"created_at":"Fri - Aug 03 20:46:33 +0000 2018","favourites_count":10560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Fri - Mar 25 21:55:13 +0000 2022","id":1507476220904361984,"id_str":"1507476220904361984","text":"Jordan - Ayew is a perfect example of connections are more valuable than degree in - Ghana. No talent, just Abedi\u2019s links","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427603058465386497\/qZvkJQvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427603058465386497\/qZvkJQvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1025483080876916736\/1557273966","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":112897676,"id_str":"112897676","name":"Don - Brasfield","screen_name":"Brasland","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":473,"listed_count":0,"created_at":"Wed - Feb 10 02:04:49 +0000 2010","favourites_count":1610,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Wed - Feb 09 12:28:24 +0000 2022","id":1491388512335450119,"id_str":"1491388512335450119","text":"RT - @Logically_JC: The same people who thought Obama was a Muslim, think that - Trump is a Christian.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Logically_JC","name":"John - Collins","id":1271162030393896968,"id_str":"1271162030393896968","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 21:38:33 +0000 2022","id":1491164573365604353,"id_str":"1491164573365604353","text":"The - same people who thought Obama was a Muslim, think that Trump is a Christian.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6572,"favorite_count":41407,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6572,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630072714347175936\/Z4ihBoxS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630072714347175936\/Z4ihBoxS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174397120,"id_str":"1174397120","name":"Justice - G N.","screen_name":"Jayjones1847","location":"United Kingdom","description":"Common - sense politics, work smart play hard. No time for political games.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":602,"listed_count":0,"created_at":"Wed - Feb 13 08:28:56 +0000 2013","favourites_count":8608,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4158,"lang":null,"status":{"created_at":"Fri - Mar 25 03:02:02 +0000 2022","id":1507191048044437506,"id_str":"1507191048044437506","text":"Where - is Julia? @LozzaFox https:\/\/t.co\/FkRGstiSTK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LozzaFox","name":"Laurence - Fox \u271d\ufe0f \ud83d\ude9b","id":81371986,"id_str":"81371986","indices":[16,25]}],"urls":[{"url":"https:\/\/t.co\/FkRGstiSTK","expanded_url":"https:\/\/twitter.com\/LozzaFox\/status\/1507004279663448077","display_url":"twitter.com\/LozzaFox\/statu\u2026","indices":[26,49]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507004279663448077,"quoted_status_id_str":"1507004279663448077","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848047407912898560\/NmPIPnXa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848047407912898560\/NmPIPnXa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1174397120\/1509521398","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226647762059616256,"id_str":"1226647762059616256","name":"Akadon_jossy","screen_name":"JossyAkadon","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":1050,"listed_count":0,"created_at":"Sun - Feb 09 23:23:23 +0000 2020","favourites_count":136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Tue - Sep 14 21:51:49 +0000 2021","id":1437896895259623431,"id_str":"1437896895259623431","text":"@RonaldKoeman - you can''t succeed at Barcelona because you are wicked, heartless, selfish, - sentimental and a distroye\u2026 https:\/\/t.co\/DHrQiFhDgW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonaldKoeman","name":"Ronald - Koeman","id":620398542,"id_str":"620398542","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/DHrQiFhDgW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1437896895259623431","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":620398542,"in_reply_to_user_id_str":"620398542","in_reply_to_screen_name":"RonaldKoeman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326836700736319488\/xBwfSHaV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326836700736319488\/xBwfSHaV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957282358683754496,"id_str":"957282358683754496","name":"Sam","screen_name":"Sam47764999","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":817,"listed_count":0,"created_at":"Sat - Jan 27 16:01:14 +0000 2018","favourites_count":214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"status":{"created_at":"Thu - Aug 05 05:06:14 +0000 2021","id":1423148318163718146,"id_str":"1423148318163718146","text":"@RobertAlai - Do u see his name appearing in the list of directors? Kichwa maji","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RobertAlai","name":"Robert - ALAI","id":16712223,"id_str":"16712223","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1423144998372089857,"in_reply_to_status_id_str":"1423144998372089857","in_reply_to_user_id":16712223,"in_reply_to_user_id_str":"16712223","in_reply_to_screen_name":"RobertAlai","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158445860826550273,"id_str":"1158445860826550273","name":"EJ - Smith","screen_name":"Eric03878454","location":"","description":"I enjoy writing - and reading. My newest adventures will be writing and boxing. Married October - 2020.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":535,"friends_count":5000,"listed_count":4,"created_at":"Mon - Aug 05 18:33:10 +0000 2019","favourites_count":45273,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14001,"lang":null,"status":{"created_at":"Fri - Mar 25 22:54:21 +0000 2022","id":1507491104056356868,"id_str":"1507491104056356868","text":"@ZeraFoxGibbon - @thehill @RepMTG It\u2019s called thinking. If you want to believe that changing - from woman to man is easy, that\u2019s your business.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZeraFoxGibbon","name":"TheBikerInBlack","id":1503494341825810433,"id_str":"1503494341825810433","indices":[0,14]},{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[15,23]},{"screen_name":"RepMTG","name":"Rep. - Marjorie Taylor Greene","id":1344356576786866176,"id_str":"1344356576786866176","indices":[24,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507470765003784193,"in_reply_to_status_id_str":"1507470765003784193","in_reply_to_user_id":1503494341825810433,"in_reply_to_user_id_str":"1503494341825810433","in_reply_to_screen_name":"ZeraFoxGibbon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447047009521786880\/VrHVXJiB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447047009521786880\/VrHVXJiB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":224315137,"id_str":"224315137","name":"Hardroll","screen_name":"psekora","location":"Tampa, - FL","description":"Pilot","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":113,"listed_count":0,"created_at":"Wed - Dec 08 17:54:05 +0000 2010","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1076,"lang":null,"status":{"created_at":"Sat - Dec 18 13:55:46 +0000 2021","id":1472203940557119489,"id_str":"1472203940557119489","text":"FOX - https:\/\/t.co\/iY1LbGQcTS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iY1LbGQcTS","expanded_url":"https:\/\/twitter.com\/joncoopertweets\/status\/1471995075668463617","display_url":"twitter.com\/joncoopertweet\u2026","indices":[4,27]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"2cce4a9792d2d92e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2cce4a9792d2d92e.json","place_type":"city","name":"Greater - Northdale","full_name":"Greater Northdale, FL","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-82.562328,28.078692],[-82.502314,28.078692],[-82.502314,28.1280586],[-82.562328,28.1280586]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1471995075668463617,"quoted_status_id_str":"1471995075668463617","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992016934840434688\/CQ57BwjD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992016934840434688\/CQ57BwjD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":505754829,"id_str":"505754829","name":"Simon - Pickup","screen_name":"simonpickup1966","location":"cheshire","description":"","url":"https:\/\/t.co\/aNjGVdo2vv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aNjGVdo2vv","expanded_url":"http:\/\/pearwalkengineering.com","display_url":"pearwalkengineering.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":1533,"listed_count":0,"created_at":"Mon - Feb 27 11:04:26 +0000 2012","favourites_count":61,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Sat - May 08 23:06:32 +0000 2021","id":1391167666078031885,"id_str":"1391167666078031885","text":"@AndyBurnhamGM - Do a good job. \ud83d\ude01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndyBurnhamGM","name":"Andy - Burnham","id":143779403,"id_str":"143779403","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1391136159024259077,"in_reply_to_status_id_str":"1391136159024259077","in_reply_to_user_id":143779403,"in_reply_to_user_id_str":"143779403","in_reply_to_screen_name":"AndyBurnhamGM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170020300144238592\/nB67zEXI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170020300144238592\/nB67zEXI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":106592818,"id_str":"106592818","name":"beth - pruitt","screen_name":"sealeave","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":219,"listed_count":0,"created_at":"Wed - Jan 20 01:57:00 +0000 2010","favourites_count":1021,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":147055861,"id_str":"147055861","name":"Martha - Fuller Clark","screen_name":"MfclarkMartha","location":"New Hampshire","description":"Former - New Hampshire State Senator for District 21 representing Durham, Lee, Madbury, - Newfields, Newington, Newmarket and Portsmouth","url":"https:\/\/t.co\/ClLdfeaDTm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ClLdfeaDTm","expanded_url":"http:\/\/www.clark4nhsenate.com","display_url":"clark4nhsenate.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":3292,"friends_count":3651,"listed_count":69,"created_at":"Sun - May 23 03:06:47 +0000 2010","favourites_count":18411,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496839017137463296\/czhj_fxD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496839017137463296\/czhj_fxD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147055861\/1407290996","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":706512664437133312,"id_str":"706512664437133312","name":"Luuk - Eliens","screen_name":"justalien2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":392,"listed_count":1,"created_at":"Sun - Mar 06 16:12:00 +0000 2016","favourites_count":168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - Sep 03 07:00:48 +0000 2021","id":1433686399304175616,"id_str":"1433686399304175616","text":"@MrBeast - @coinbase CoinBeastSweepstakes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrBeast","name":"MrBeast","id":2455740283,"id_str":"2455740283","indices":[0,8]},{"screen_name":"coinbase","name":"Coinbase","id":574032254,"id_str":"574032254","indices":[9,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1433528712952229890,"in_reply_to_status_id_str":"1433528712952229890","in_reply_to_user_id":2455740283,"in_reply_to_user_id_str":"2455740283","in_reply_to_screen_name":"MrBeast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/706513024190963713\/izWo9DgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/706513024190963713\/izWo9DgE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1739266136,"id_str":"1739266136","name":"PNSR","screen_name":"PPO_OKK","location":"","description":"\ud83d\udcd6\u2615\ufe0f\ud83d\udc08","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":86,"friends_count":325,"listed_count":0,"created_at":"Sat - Sep 07 01:40:51 +0000 2013","favourites_count":6527,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41615,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF9999","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441445344609378314\/QQJ4h4kU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441445344609378314\/QQJ4h4kU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1739266136\/1628957494","profile_link_color":"FF9999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":793291843211497472,"id_str":"793291843211497472","name":"TORYALAI@OMARI","screen_name":"ToryalaiTrom","location":"","description":"\u200f\u200f\u200ftoryalaiomari06@gmail.com - \u0698\u0648\u0631\u0646\u0627\u0644\u064a\u0633\u062a \u0623\u0632\u0627\u062f\u0643\u0627\u0628\u0644 - \u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646 93799126699+","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1298,"friends_count":4838,"listed_count":1,"created_at":"Tue - Nov 01 03:21:28 +0000 2016","favourites_count":139785,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1591,"lang":null,"status":{"created_at":"Fri - Mar 25 22:50:25 +0000 2022","id":1507490114703802370,"id_str":"1507490114703802370","text":"#\u0645\u0646 - \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0648\u06cc\u062a \u0647\u0627\u06cc - \u0645\u0648\u0642\u062a\u06cc \u0648 \u062a\u063a\u06cc\u06cc\u0631 \u067e\u0630\u06cc\u0631 - \u0627\u0633\u062a. \u0627\u0645\u0627 \u0647\u0648\u06cc\u062a \u0627\u0646\u0633\u0627\u0646\u06cc - \u0627\u0645 \u0646\u0647 \u0645\u0648\u0642\u062a\u06cc \u0627\u0633\u062a - \u0648 \u0646\u0647 \u062a\u063a\u06cc\u06cc\u0631\u067e\u0630\u06cc\u0631. - \u0628\u0631\u0627\u06cc \u063a\u0644\u0628\u0647 \u0628\u0631 \u062a\u0639\u0635\u0628\u060c - \u062a\u0628\u0639\u06cc\u2026 https:\/\/t.co\/1pqATLryyl","truncated":true,"entities":{"hashtags":[{"text":"\u0645\u0646","indices":[0,3]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1pqATLryyl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507490114703802370","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/990494236658282502\/WHG3bzwR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/990494236658282502\/WHG3bzwR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793291843211497472\/1644105910","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35113070,"id_str":"35113070","name":"Steve - Moore","screen_name":"broadwaylounge","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":41,"friends_count":762,"listed_count":2,"created_at":"Sat - Apr 25 02:05:15 +0000 2009","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":125,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1739946685\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1739946685\/image_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301588645573545985,"id_str":"1301588645573545985","name":"TRussell","screen_name":"Cubswin1623","location":"Mishawaka, - IN","description":"Author of \u201cFinding Your True North: A Bullied Teen\u2019s - Journey Of Hope \u201c and \u201cNowhere Man\u201d and radio host called \u201cLife - Without Limits\u201d on https:\/\/t.co\/VRiZ3ntutV","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/VRiZ3ntutV","expanded_url":"http:\/\/W4WN.com","display_url":"W4WN.com","indices":[136,159]}]}},"protected":false,"followers_count":801,"friends_count":2806,"listed_count":2,"created_at":"Thu - Sep 03 18:31:44 +0000 2020","favourites_count":3749,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2860,"lang":null,"status":{"created_at":"Sun - Oct 17 16:42:18 +0000 2021","id":1449777801343774728,"id_str":"1449777801343774728","text":"@tnwhiskeyt - Hello","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tnwhiskeyt","name":"t\ud83d\udc8b","id":1324778655965450242,"id_str":"1324778655965450242","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1449562266467282952,"in_reply_to_status_id_str":"1449562266467282952","in_reply_to_user_id":1324778655965450242,"in_reply_to_user_id_str":"1324778655965450242","in_reply_to_screen_name":"tnwhiskeyt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340673045686591488\/dJS9iM6I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340673045686591488\/dJS9iM6I_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":70229156,"id_str":"70229156","name":"Tony - Wallace","screen_name":"twalla12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":445,"listed_count":0,"created_at":"Sun - Aug 30 22:16:12 +0000 2009","favourites_count":67,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3461347107,"id_str":"3461347107","name":"naser","screen_name":"ghiasinaser","location":"tabriz - ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":292,"listed_count":4,"created_at":"Thu - Aug 27 20:53:59 +0000 2015","favourites_count":577,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Fri - Nov 26 05:53:41 +0000 2021","id":1464110087438540805,"id_str":"1464110087438540805","text":"@ShibInform - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShibInform","name":"Shib","id":1416642324,"id_str":"1416642324","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1463785781630103552,"in_reply_to_status_id_str":"1463785781630103552","in_reply_to_user_id":1416642324,"in_reply_to_user_id_str":"1416642324","in_reply_to_screen_name":"ShibInform","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1005401488137637888\/RQdslgWt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1005401488137637888\/RQdslgWt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3569050937,"id_str":"3569050937","name":"Torgo999","screen_name":"Torgo999","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":152,"friends_count":835,"listed_count":0,"created_at":"Sun - Sep 06 19:03:26 +0000 2015","favourites_count":83139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11195,"lang":null,"status":{"created_at":"Sat - Mar 26 10:28:00 +0000 2022","id":1507665667578814465,"id_str":"1507665667578814465","text":"RT - @MoviePolls4U: 88 Years ago today ALAN ARKIN was born but which of these films - he\u2019s appeared in is your favourite? \n#Argo \n#LittleMissSu\u2026","truncated":false,"entities":{"hashtags":[{"text":"Argo","indices":[119,124]}],"symbols":[],"user_mentions":[{"screen_name":"MoviePolls4U","name":"We - Love Movies !!! \ud83c\udfac","id":983040963680571393,"id_str":"983040963680571393","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 10:25:04 +0000 2022","id":1507664927087112200,"id_str":"1507664927087112200","text":"88 - Years ago today ALAN ARKIN was born but which of these films he\u2019s appeared - in is your favourite? \n#Argo\u2026 https:\/\/t.co\/g13W9PqBCx","truncated":true,"entities":{"hashtags":[{"text":"Argo","indices":[101,106]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g13W9PqBCx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507664927087112200","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640605996319141888\/xGoMyAyH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640605996319141888\/xGoMyAyH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267418686891208708,"id_str":"1267418686891208708","name":"Honourable","screen_name":"AstuteMatanda1","location":"New - Germany, South Africa","description":"Simply Astute","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":746,"friends_count":5002,"listed_count":0,"created_at":"Mon - Jun 01 11:33:13 +0000 2020","favourites_count":18230,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2626,"lang":null,"status":{"created_at":"Sun - Mar 20 17:51:30 +0000 2022","id":1505602951288610819,"id_str":"1505602951288610819","text":"RT - @Rakgadi_EM: Xenophobia gangsters know your history.\n#PutSouthAfricanFirst - #OperationDudula https:\/\/t.co\/nOhA11RFCq","truncated":false,"entities":{"hashtags":[{"text":"PutSouthAfricanFirst","indices":[56,77]},{"text":"OperationDudula","indices":[78,94]}],"symbols":[],"user_mentions":[{"screen_name":"Rakgadi_EM","name":"\ud835\udc0e\ud835\udc1f\ud835\udc1f\ud835\udc22\ud835\udc1c\ud835\udc22\ud835\udc1a\ud835\udc25 - \ud835\udc11\ud835\udc1a\ud835\udc24\ud835\udc20\ud835\udc1a\ud835\udc1d\ud835\udc22 - \ud835\udc12\ud835\udc28\ud835\udc25\ud835\udc1d\ud835\udc22\ud835\udc1e\ud835\udc2b - \ud83c\uddff","id":595351222,"id_str":"595351222","indices":[3,14]}],"urls":[],"media":[{"id":1505602157072072706,"id_str":"1505602157072072706","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","url":"https:\/\/t.co\/nOhA11RFCq","display_url":"pic.twitter.com\/nOhA11RFCq","expanded_url":"https:\/\/twitter.com\/Rakgadi_EM\/status\/1505602159735447561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":712,"resize":"fit"},"large":{"w":480,"h":712,"resize":"fit"},"small":{"w":458,"h":680,"resize":"fit"}},"source_status_id":1505602159735447561,"source_status_id_str":"1505602159735447561","source_user_id":595351222,"source_user_id_str":"595351222"}]},"extended_entities":{"media":[{"id":1505602157072072706,"id_str":"1505602157072072706","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","url":"https:\/\/t.co\/nOhA11RFCq","display_url":"pic.twitter.com\/nOhA11RFCq","expanded_url":"https:\/\/twitter.com\/Rakgadi_EM\/status\/1505602159735447561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":712,"resize":"fit"},"large":{"w":480,"h":712,"resize":"fit"},"small":{"w":458,"h":680,"resize":"fit"}},"source_status_id":1505602159735447561,"source_status_id_str":"1505602159735447561","source_user_id":595351222,"source_user_id_str":"595351222"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 17:48:22 +0000 2022","id":1505602159735447561,"id_str":"1505602159735447561","text":"Xenophobia - gangsters know your history.\n#PutSouthAfricanFirst #OperationDudula https:\/\/t.co\/nOhA11RFCq","truncated":false,"entities":{"hashtags":[{"text":"PutSouthAfricanFirst","indices":[40,61]},{"text":"OperationDudula","indices":[62,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505602157072072706,"id_str":"1505602157072072706","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","url":"https:\/\/t.co\/nOhA11RFCq","display_url":"pic.twitter.com\/nOhA11RFCq","expanded_url":"https:\/\/twitter.com\/Rakgadi_EM\/status\/1505602159735447561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":712,"resize":"fit"},"large":{"w":480,"h":712,"resize":"fit"},"small":{"w":458,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505602157072072706,"id_str":"1505602157072072706","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOT5L1FXwAI6yeu.jpg","url":"https:\/\/t.co\/nOhA11RFCq","display_url":"pic.twitter.com\/nOhA11RFCq","expanded_url":"https:\/\/twitter.com\/Rakgadi_EM\/status\/1505602159735447561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":712,"resize":"fit"},"large":{"w":480,"h":712,"resize":"fit"},"small":{"w":458,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":73,"favorite_count":187,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":73,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472794521494822917\/6OZY4OD0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472794521494822917\/6OZY4OD0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267418686891208708\/1598907012","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2910235373,"id_str":"2910235373","name":"Fact - Speaker. Truth Seeker.","screen_name":"HomicidDetEyeCU","location":"#GOPRussianAssets","description":"Catching - murderers is my niche. I''m coming for you!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":108,"friends_count":1009,"listed_count":0,"created_at":"Mon - Dec 08 01:45:00 +0000 2014","favourites_count":10814,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1838,"lang":null,"status":{"created_at":"Mon - Mar 21 12:54:39 +0000 2022","id":1505890630966329350,"id_str":"1505890630966329350","text":"@PlastikCherry - @Reuters Yes, though he''s really a worthless serial killer.. it''s worth - seeing him deflated ad become a mnf.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PlastikCherry","name":"@Chrrybmb81","id":1267924252201639936,"id_str":"1267924252201639936","indices":[0,14]},{"screen_name":"Reuters","name":"Reuters","id":1652541,"id_str":"1652541","indices":[15,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504418893493784577,"in_reply_to_status_id_str":"1504418893493784577","in_reply_to_user_id":1267924252201639936,"in_reply_to_user_id_str":"1267924252201639936","in_reply_to_screen_name":"PlastikCherry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1029314039439151104\/fbAB_aYf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1029314039439151104\/fbAB_aYf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2910235373\/1534561448","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249362822351351809,"id_str":"1249362822351351809","name":"\ud0f1\uc790\uade4","screen_name":"tangja_gyul","location":"","description":"\uc628\uac16 - \uc7a5\ub974 \uc774\uc57c\uae30 \ud569\ub2c8\ub2e4. Priest \uc791\ud488 \ucc9c\ucc9c\ud788 - \uc77d\uc5b4\uc694. \uc794\ucc28\ud488 \uc704\uc8fc. #\u6c11\u4e3b\u9999\u6e2f\u52a0\u6cb9 - \ube44\ud314\uc54c\ub9bc x","url":"https:\/\/t.co\/zMt7jIqpQW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zMt7jIqpQW","expanded_url":"https:\/\/tangja-gyul.postype.com\/","display_url":"tangja-gyul.postype.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":40,"listed_count":0,"created_at":"Sun - Apr 12 15:44:52 +0000 2020","favourites_count":842,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1932,"lang":null,"status":{"created_at":"Wed - Nov 24 14:06:05 +0000 2021","id":1463509230653034496,"id_str":"1463509230653034496","text":"\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314bkijul","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293571782088171521\/QTYM8Cx3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293571782088171521\/QTYM8Cx3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1249362822351351809\/1606302656","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51379466,"id_str":"51379466","name":"boguntoye","screen_name":"boguntoye","location":"East - Grinstead, Midd Sussex","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":204,"friends_count":1096,"listed_count":4,"created_at":"Sat - Jun 27 07:41:45 +0000 2009","favourites_count":4728,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4948,"lang":null,"status":{"created_at":"Sat - Mar 26 08:45:18 +0000 2022","id":1507639819865841664,"id_str":"1507639819865841664","text":"RT - @AssangeFreeYet: Julian Assange is still not free after 2 years, 11 months - and 14 days of political imprisonment in Belmarsh.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AssangeFreeYet","name":"Is - Julian Assange free yet?","id":1454070661316583426,"id_str":"1454070661316583426","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:00:00 +0000 2022","id":1507417027421552645,"id_str":"1507417027421552645","text":"Julian - Assange is still not free after 2 years, 11 months and 14 days of political - imprisonment in Belmarsh.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":235,"favorite_count":446,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":235,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1040325344182591489\/vf0u1h6c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1040325344182591489\/vf0u1h6c_normal.jpg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":67592112,"id_str":"67592112","name":"pramod - agrawal","screen_name":"pramod1274","location":"Sambalpur, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":272,"friends_count":4999,"listed_count":0,"created_at":"Fri - Aug 21 12:18:31 +0000 2009","favourites_count":9292,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5691,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/881884450371645440\/Dw6cXpuf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/881884450371645440\/Dw6cXpuf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230923898658729985,"id_str":"1230923898658729985","name":"peter","screen_name":"peter94905706","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":296,"listed_count":0,"created_at":"Fri - Feb 21 18:35:21 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":459447582,"id_str":"459447582","name":"Aderoju","screen_name":"bisiroju","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":830,"listed_count":0,"created_at":"Mon - Jan 09 17:39:36 +0000 2012","favourites_count":2265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":77,"lang":null,"status":{"created_at":"Tue - Mar 01 19:56:11 +0000 2022","id":1498748957257867268,"id_str":"1498748957257867268","text":"@KanayoOKanayo - Happy birthday legend.. More merrier years ahead in Jesus Name.. Congratulations - sir","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KanayoOKanayo","name":"Chief - Kanayo O. Kanayo, MFR","id":583711571,"id_str":"583711571","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498554059762159617,"in_reply_to_status_id_str":"1498554059762159617","in_reply_to_user_id":583711571,"in_reply_to_user_id_str":"583711571","in_reply_to_screen_name":"KanayoOKanayo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258086735134650368\/qvAXFDNJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258086735134650368\/qvAXFDNJ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30423093,"id_str":"30423093","name":"Vitor - Louren\u00e7o \ud83c\uddf5\ud83c\uddf9\ud83d\udc05\u2651\ufe0e","screen_name":"LourencoV","location":"Marbella, - Spain","description":"Natural product, no preservatives or sweeteners. Keep - in a temperate and bright place. Shake gently before consuming. Biodegradable - packaging. Best before Dec62","url":"https:\/\/t.co\/QYvRCVjkEX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QYvRCVjkEX","expanded_url":"https:\/\/www.linkedin.com\/in\/vitorlourenco\/","display_url":"linkedin.com\/in\/vitorlouren\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":602,"friends_count":450,"listed_count":9,"created_at":"Sat - Apr 11 08:45:36 +0000 2009","favourites_count":996,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2308,"lang":null,"status":{"created_at":"Fri - Mar 25 21:02:14 +0000 2022","id":1507462887496953856,"id_str":"1507462887496953856","text":"Armas - de arrasto maci\u00e7o. https:\/\/t.co\/LcA08V4e4t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LcA08V4e4t","expanded_url":"https:\/\/twitter.com\/Sputnik_Not\/status\/1507005062232510465","display_url":"twitter.com\/Sputnik_Not\/st\u2026","indices":[25,48]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507005062232510465,"quoted_status_id_str":"1507005062232510465","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497124183947550721\/0-p1pl8D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497124183947550721\/0-p1pl8D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30423093\/1396383906","profile_link_color":"FA743E","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1101023349008990208,"id_str":"1101023349008990208","name":"Sagar - 55555","screen_name":"Sagar555552","location":"","description":"Human","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":428,"listed_count":0,"created_at":"Thu - Feb 28 07:36:37 +0000 2019","favourites_count":843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":960,"lang":null,"status":{"created_at":"Sat - Dec 04 07:05:21 +0000 2021","id":1467027228085026816,"id_str":"1467027228085026816","text":"@AnshumanSail - Chitra triphat Thik hai Thik hai while kanahayia talks","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnshumanSail","name":"Anshuman - Sail","id":4824857510,"id_str":"4824857510","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1466676660854411267,"in_reply_to_status_id_str":"1466676660854411267","in_reply_to_user_id":4824857510,"in_reply_to_user_id_str":"4824857510","in_reply_to_screen_name":"AnshumanSail","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257750861016715266\/MieTlEEW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257750861016715266\/MieTlEEW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101023349008990208\/1588706146","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287997101016678403,"id_str":"1287997101016678403","name":"NVR - Mandali","screen_name":"MandaliBabu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":479,"listed_count":0,"created_at":"Tue - Jul 28 06:23:52 +0000 2020","favourites_count":312,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Tue - Feb 08 01:56:02 +0000 2022","id":1490866985286397953,"id_str":"1490866985286397953","text":"@SantoshSinghIPS - @TheIACP @IPS_Association @PMOIndia @ChhattisgarhCMO @DPRChhattisgarh @skochgroup - @ficci_india\u2026 https:\/\/t.co\/jdualJ2oOa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SantoshSinghIPS","name":"Santosh - Singh","id":133383994,"id_str":"133383994","indices":[0,16]},{"screen_name":"TheIACP","name":"The - IACP","id":44917831,"id_str":"44917831","indices":[17,25]},{"screen_name":"IPS_Association","name":"IPS - Association","id":3041294294,"id_str":"3041294294","indices":[26,42]},{"screen_name":"PMOIndia","name":"PMO - India","id":471741741,"id_str":"471741741","indices":[43,52]},{"screen_name":"ChhattisgarhCMO","name":"CMO - Chhattisgarh","id":2599676406,"id_str":"2599676406","indices":[53,69]},{"screen_name":"DPRChhattisgarh","name":"Jansampark - CG","id":2359405520,"id_str":"2359405520","indices":[70,86]},{"screen_name":"skochgroup","name":"SKOCH - Group","id":136172389,"id_str":"136172389","indices":[87,98]},{"screen_name":"ficci_india","name":"FICCI","id":375474419,"id_str":"375474419","indices":[99,111]}],"urls":[{"url":"https:\/\/t.co\/jdualJ2oOa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1490866985286397953","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1433275634512396289,"in_reply_to_status_id_str":"1433275634512396289","in_reply_to_user_id":133383994,"in_reply_to_user_id_str":"133383994","in_reply_to_screen_name":"SantoshSinghIPS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318907000298762240\/OKgO4X-__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318907000298762240\/OKgO4X-__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287997101016678403\/1595920661","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2841981756,"id_str":"2841981756","name":"Linda - Barry","screen_name":"ERmom88","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":382,"listed_count":1,"created_at":"Mon - Oct 06 05:36:46 +0000 2014","favourites_count":11393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2606,"lang":null,"status":{"created_at":"Sun - Jan 10 03:11:02 +0000 2021","id":1348105038070222849,"id_str":"1348105038070222849","text":"@JoeBiden - Neither are you! We will all stand before almighty God and have to give an - account for our actions !! God knows it all!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1348004115121647622,"in_reply_to_status_id_str":"1348004115121647622","in_reply_to_user_id":939091,"in_reply_to_user_id_str":"939091","in_reply_to_screen_name":"JoeBiden","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328041837186199552\/MwusHt0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328041837186199552\/MwusHt0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841981756\/1605464887","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14131773,"id_str":"14131773","name":"phoneme007","screen_name":"phoneme007","location":"United - Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":262,"friends_count":1696,"listed_count":17,"created_at":"Wed - Mar 12 12:34:42 +0000 2008","favourites_count":1072,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":984,"lang":null,"status":{"created_at":"Thu - Feb 24 19:14:51 +0000 2022","id":1496926614894092299,"id_str":"1496926614894092299","text":"@AndresGorzelany - @shawnharry @cloudycanuck @MarkVale83 @tomarbuthnot @randychapman @hansderpan - @AlexHolmeset\u2026 https:\/\/t.co\/lMqXIsDmJY","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndresGorzelany","name":"Andr\u00e9s - Gorzelany | MVP | \u2601\ufe0f msshells.net","id":23858046,"id_str":"23858046","indices":[0,16]},{"screen_name":"shawnharry","name":"Shawn - Harry","id":27904702,"id_str":"27904702","indices":[17,28]},{"screen_name":"cloudycanuck","name":"Josh - Fraser","id":1101316067773825024,"id_str":"1101316067773825024","indices":[29,42]},{"screen_name":"MarkVale83","name":"Mark - Vale","id":3159378862,"id_str":"3159378862","indices":[43,54]},{"screen_name":"tomarbuthnot","name":"Tom - Arbuthnot","id":25867445,"id_str":"25867445","indices":[55,68]},{"screen_name":"randychapman","name":"Randy - Chapman","id":30823695,"id_str":"30823695","indices":[69,82]},{"screen_name":"hansderpan","name":"Oliver","id":2290174879,"id_str":"2290174879","indices":[83,94]},{"screen_name":"AlexHolmeset","name":"Alexander - Holmeset","id":40353580,"id_str":"40353580","indices":[95,108]}],"urls":[{"url":"https:\/\/t.co\/lMqXIsDmJY","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496926614894092299","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1496906994334289931,"in_reply_to_status_id_str":"1496906994334289931","in_reply_to_user_id":23858046,"in_reply_to_user_id_str":"23858046","in_reply_to_screen_name":"AndresGorzelany","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213810864572313601\/lPD8Cq-6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213810864572313601\/lPD8Cq-6_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262665166946217984,"id_str":"1262665166946217984","name":"Jp","screen_name":"JohnPri44628206","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":338,"friends_count":4930,"listed_count":0,"created_at":"Tue - May 19 08:43:43 +0000 2020","favourites_count":40716,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":269,"lang":null,"status":{"created_at":"Thu - Mar 24 14:08:40 +0000 2022","id":1506996421236596743,"id_str":"1506996421236596743","text":"@ThatHeatherBeck - Gorgeous...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatHeatherBeck","name":"Heather - Beck","id":1341190030883172352,"id_str":"1341190030883172352","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505670231682961416,"in_reply_to_status_id_str":"1505670231682961416","in_reply_to_user_id":1341190030883172352,"in_reply_to_user_id_str":"1341190030883172352","in_reply_to_screen_name":"ThatHeatherBeck","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421099160976166913\/U6OfovOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421099160976166913\/U6OfovOM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299722444329177088,"id_str":"1299722444329177088","name":"Akbar - Ali","screen_name":"AkbarAl54320485","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":285,"listed_count":0,"created_at":"Sat - Aug 29 14:56:15 +0000 2020","favourites_count":613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Thu - Mar 24 02:42:47 +0000 2022","id":1506823812654026755,"id_str":"1506823812654026755","text":"@nsabbasiOff - \u06aa\u0627\u0631\u06aa\u0631\u062f\u06af\u064a \u062f\u064a\u06a9\u0648 - \u06af\u064a \u062a\u0648 \u06aa\u0631\u067e\u0634\u0646 \u06be\u064a \u0645\u0644\u064a\u06af\u064a.\n\u0633\u0646\u068c - \u06be\u0626. \u0633\u064a\u0646\u06af\u0627\u067e\u0648\u0631 \u067f\u0648\u0699\u064a - \u06be\u0626.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nsabbasiOff","name":"Nusrat - Sehar Abbasi","id":2280114861,"id_str":"2280114861","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506807724872548355,"in_reply_to_status_id_str":"1506807724872548355","in_reply_to_user_id":2280114861,"in_reply_to_user_id_str":"2280114861","in_reply_to_screen_name":"nsabbasiOff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"sd"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322218215657730048\/FuBABSd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322218215657730048\/FuBABSd-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2879419409,"id_str":"2879419409","name":"Stephanie - Ford","screen_name":"stephaniemvella","location":"Lakeland, FL","description":"Mother. - Lover. Friend. Animal Enthusiast. Culinary Queen. Blanket Hog. Unashamed Liberal.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":327,"listed_count":2,"created_at":"Sun - Nov 16 11:14:25 +0000 2014","favourites_count":3220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1181,"lang":null,"status":{"created_at":"Wed - Jan 13 20:22:35 +0000 2021","id":1349451798822715402,"id_str":"1349451798822715402","text":"@Itskarleytime - My sweet Rosie girl. https:\/\/t.co\/Z8EzX2B5kF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itskarleytime","name":"not - karley \ud83e\udeb4","id":1452067080463847425,"id_str":"1452067080463847425","indices":[0,14]}],"urls":[],"media":[{"id":1349451669088722947,"id_str":"1349451669088722947","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/Ero3JLGXYAMF7Fn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ero3JLGXYAMF7Fn.jpg","url":"https:\/\/t.co\/Z8EzX2B5kF","display_url":"pic.twitter.com\/Z8EzX2B5kF","expanded_url":"https:\/\/twitter.com\/stephaniemvella\/status\/1349451798822715402\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1349451669088722947,"id_str":"1349451669088722947","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/Ero3JLGXYAMF7Fn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ero3JLGXYAMF7Fn.jpg","url":"https:\/\/t.co\/Z8EzX2B5kF","display_url":"pic.twitter.com\/Z8EzX2B5kF","expanded_url":"https:\/\/twitter.com\/stephaniemvella\/status\/1349451798822715402\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1349121222064418816,"in_reply_to_status_id_str":"1349121222064418816","in_reply_to_user_id":2796833175,"in_reply_to_user_id_str":"2796833175","in_reply_to_screen_name":"sol_enigmaa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313677875162349568\/SeVldsiy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313677875162349568\/SeVldsiy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2879419409\/1602040189","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":827201185589309440,"id_str":"827201185589309440","name":"Helen - James","screen_name":"Hjames0123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":500,"listed_count":0,"created_at":"Thu - Feb 02 17:05:06 +0000 2017","favourites_count":4424,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4549,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110492402,"id_str":"110492402","name":"Pattie - Feder","screen_name":"QueenFeder","location":"Tucson, AZ","description":"Vote - Blue \ud83d\udc99 Worked In Minor League Baseball for 25 years - \u26be\ufe0f\u26be\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":442,"friends_count":877,"listed_count":2,"created_at":"Mon - Feb 01 18:57:53 +0000 2010","favourites_count":4459,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2355,"lang":null,"status":{"created_at":"Sat - Mar 26 03:39:57 +0000 2022","id":1507562975153967108,"id_str":"1507562975153967108","text":"Carl - Bernstein says it''s time to investigate Ginni Thomas -- and gives a tip of - the hat to old partner Bob Woodward https:\/\/t.co\/q7oSSBwxig","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/q7oSSBwxig","expanded_url":"https:\/\/www.rawstory.com\/woodward-bernstein-ginni-clarence-thomas\/","display_url":"rawstory.com\/woodward-berns\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/416691568871890944\/nz7hxgqU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/416691568871890944\/nz7hxgqU_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3725614753,"id_str":"3725614753","name":"Khalid","screen_name":"KASSULAIMAN","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":578,"friends_count":2835,"listed_count":1,"created_at":"Tue - Sep 29 12:10:43 +0000 2015","favourites_count":57983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":965,"lang":null,"status":{"created_at":"Wed - Mar 23 01:53:14 +0000 2022","id":1506448957253238784,"id_str":"1506448957253238784","text":"RT - @MurtadhaMHA: \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641 - \u0633\u064f\u0646\u0651\u0629 \u0643\u0648\u0646\u064a\u0629 \u0648\u0637\u0628\u064a\u0639\u0629 - \u0628\u0634\u0631\u064a\u0629\u060c\u0641\u0639\u0644\u064a\u0646\u0627 \u0623\u0646 - \u0646\u062a\u0639\u0644\u0645 \u0639\u0646 \u0623\u062f\u0628 \u0627\u0644\u062e\u0644\u0627\u0641 - \u0648\u0641\u0646 \u0627\u0644\u062d\u0648\u0627\u0631.\u064a\u0642\u0648\u0644 - \u0627\u0644\u0627\u0645\u0627\u0645 \u0627\u0644\u0634\u0627\u0641\u0639\u064a:\u0644\u0627 - \u062a\u062d\u0627\u0648\u0644 \u0627\u0644\u0627\u0646\u062a\u0635\u0627\u0631 - \u0641\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MurtadhaMHA","name":"\u0645\u0631\u062a\u0636\u0649 - \u062d\u0633\u0646 \u0639\u0644\u064a. Murtadha Hassan Ali","id":1338636823,"id_str":"1338636823","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 22:04:08 +0000 2022","id":1506391302526877697,"id_str":"1506391302526877697","text":"\u0625\u0630\u0627 - \u0643\u0627\u0646 \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641 \u0633\u064f\u0646\u0651\u0629 - \u0643\u0648\u0646\u064a\u0629 \u0648\u0637\u0628\u064a\u0639\u0629 \u0628\u0634\u0631\u064a\u0629\u060c\u0641\u0639\u0644\u064a\u0646\u0627 - \u0623\u0646 \u0646\u062a\u0639\u0644\u0645 \u0639\u0646 \u0623\u062f\u0628 - \u0627\u0644\u062e\u0644\u0627\u0641 \u0648\u0641\u0646 \u0627\u0644\u062d\u0648\u0627\u0631.\u064a\u0642\u0648\u0644 - \u0627\u0644\u0627\u0645\u0627\u0645 \u0627\u0644\u0634\u0627\u0641\u0639\u064a:\u0644\u0627 - \u062a\u062d\u0627\u0648\u0644 \u0627\u0644\u0627\u2026 https:\/\/t.co\/1j9bhzO4ZL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1j9bhzO4ZL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506391302526877697","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":86,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648835179323092992\/5Fco1ZFd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648835179323092992\/5Fco1ZFd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":111342052,"id_str":"111342052","name":"\ud835\ude72\ud835\ude91\ud835\ude9b\ud835\ude92\ud835\ude9c","screen_name":"chris_derry","location":"Derry - City","description":"Tapaigh an D\u00e9is..\nI do my ironing on a Sunday evening. - I fly-fish. I once caught a fish.. Fond of a good spud (veg or person)! RT - = Debate. Free Pescatarian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2980,"friends_count":5000,"listed_count":0,"created_at":"Thu - Feb 04 15:52:32 +0000 2010","favourites_count":29259,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":81609,"lang":null,"status":{"created_at":"Sat - Mar 26 10:30:53 +0000 2022","id":1507666391880507392,"id_str":"1507666391880507392","text":"An - aura of efficiency pushes you forward today. Mercury is zoo... More for Libra - https:\/\/t.co\/vGUbonQgmO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vGUbonQgmO","expanded_url":"http:\/\/bit.ly\/wvRgyF","display_url":"bit.ly\/wvRgyF","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488038505129431045\/TUfSz6Et_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488038505129431045\/TUfSz6Et_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111342052\/1610412571","profile_link_color":"2891E2","profile_sidebar_border_color":"BABAB2","profile_sidebar_fill_color":"BABAB2","profile_text_color":"47484D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220014645383192583,"id_str":"1220014645383192583","name":"Ogunsakin - Micheal Ojo","screen_name":"ogunsakin_ojo","location":"Lagos, Nigeria","description":"honest","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":683,"listed_count":0,"created_at":"Wed - Jan 22 16:05:50 +0000 2020","favourites_count":16198,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3927,"lang":null,"status":{"created_at":"Fri - Mar 25 20:17:25 +0000 2022","id":1507451607964954625,"id_str":"1507451607964954625","text":"@wizkidayo - O ti zeh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wizkidayo","name":"Wizkid","id":32660559,"id_str":"32660559","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507447484385312782,"in_reply_to_status_id_str":"1507447484385312782","in_reply_to_user_id":32660559,"in_reply_to_user_id_str":"32660559","in_reply_to_screen_name":"wizkidayo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485322181903106050\/8SBMsM7L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485322181903106050\/8SBMsM7L_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":627081021,"id_str":"627081021","name":"\ud83c\uddf2\ud83c\uddf3ATARBOLD - Ganchuluun","screen_name":"Atarbold1","location":"MONGOLIA","description":"Media","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":1079,"listed_count":0,"created_at":"Thu - Jul 05 03:07:58 +0000 2012","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":567,"lang":null,"status":{"created_at":"Sat - May 15 15:48:21 +0000 2021","id":1393594106555768839,"id_str":"1393594106555768839","text":"\u0413\u0430\u0437 - \u0445\u043e\u0442 \u0434\u0430\u0445\u044c Associated press, Al Jazeera \u0437\u044d\u0440\u044d\u0433 - \u043c\u0435\u0434\u0438\u0430\u0433\u0438\u0439\u043d\u0445\u0430\u043d \u0431\u0430\u0439\u0440\u043b\u0430\u0434\u0430\u0433 - \u0431\u0430\u0440\u0438\u043b\u0433\u044b\u0433 \u0434\u04e9\u043d\u0433\u04e9\u0436 - \u0441\u0430\u044f \u0431\u04e9\u043c\u0431\u04e9\u0433\u0434\u043b\u04e9\u04e9.\n\u0418\u0437\u0440\u0430\u0438\u043b\u044b\u043d - \u0430\u0433\u0430\u2026 https:\/\/t.co\/XrqfwFvzP3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XrqfwFvzP3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1393594106555768839","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ru"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388027783780003842\/D4BL3NMx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388027783780003842\/D4BL3NMx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/627081021\/1425983678","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290758467402244108,"id_str":"1290758467402244108","name":"Sarah","screen_name":"Sarah53092693","location":"","description":"Mischievous - Scientist||Christ-loving||","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":183,"friends_count":1240,"listed_count":0,"created_at":"Tue - Aug 04 21:16:54 +0000 2020","favourites_count":4358,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1027,"lang":null,"status":{"created_at":"Fri - Mar 25 19:16:34 +0000 2022","id":1507436296704335882,"id_str":"1507436296704335882","text":"@Ayannnfejesu - I will like to date a man that I can gist with about God and practice together - his word in every aspect of our daily lives.\ud83d\ude01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ayannnfejesu","name":"Ada","id":1227807114963365902,"id_str":"1227807114963365902","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507425615573569541,"in_reply_to_status_id_str":"1507425615573569541","in_reply_to_user_id":1227807114963365902,"in_reply_to_user_id_str":"1227807114963365902","in_reply_to_screen_name":"Ayannnfejesu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1387864899712397315\/di_AgEJZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1387864899712397315\/di_AgEJZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1290758467402244108\/1596623365","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1081896836305162240,"id_str":"1081896836305162240","name":"Kelly","screen_name":"Kelly33779107","location":"","description":"Nature - loving small town type of gal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":84,"listed_count":0,"created_at":"Sun - Jan 06 12:54:41 +0000 2019","favourites_count":2678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":302,"lang":null,"status":{"created_at":"Tue - Aug 10 10:42:04 +0000 2021","id":1425044773770076164,"id_str":"1425044773770076164","text":"@JoJoFromJerz - Sounds like a pretty selfish thinking guy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoJoFromJerz","name":"Jo - \ud83c\udf3b","id":818893114979061761,"id_str":"818893114979061761","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1423743174967693317,"in_reply_to_status_id_str":"1423743174967693317","in_reply_to_user_id":818893114979061761,"in_reply_to_user_id_str":"818893114979061761","in_reply_to_screen_name":"JoJoFromJerz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081897255475519488\/7kbA1Gsr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081897255475519488\/7kbA1Gsr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":976482728488198144,"id_str":"976482728488198144","name":"Frederick - Kihwelo","screen_name":"FrederickWakili","location":"Dar es Salaam, Tanzania","description":"Advocate - of the High Court of Tanzania","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4735,"friends_count":953,"listed_count":0,"created_at":"Wed - Mar 21 15:36:39 +0000 2018","favourites_count":31824,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22259,"lang":null,"status":{"created_at":"Wed - Mar 23 16:30:30 +0000 2022","id":1506669726809866251,"id_str":"1506669726809866251","text":"RT - @zoomafrika1: Good night from Kitulo National Park, Tanzania \ud83c\uddf9\ud83c\uddff - https:\/\/t.co\/LS5ETKgdIA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zoomafrika1","name":"Zoom - Afrika","id":1059539826586894337,"id_str":"1059539826586894337","indices":[3,15]}],"urls":[],"media":[{"id":1506354698990796802,"id_str":"1506354698990796802","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","url":"https:\/\/t.co\/LS5ETKgdIA","display_url":"pic.twitter.com\/LS5ETKgdIA","expanded_url":"https:\/\/twitter.com\/zoomafrika1\/status\/1506354708948074497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":574,"h":717,"resize":"fit"},"medium":{"w":574,"h":717,"resize":"fit"}},"source_status_id":1506354708948074497,"source_status_id_str":"1506354708948074497","source_user_id":1059539826586894337,"source_user_id_str":"1059539826586894337"}]},"extended_entities":{"media":[{"id":1506354698990796802,"id_str":"1506354698990796802","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","url":"https:\/\/t.co\/LS5ETKgdIA","display_url":"pic.twitter.com\/LS5ETKgdIA","expanded_url":"https:\/\/twitter.com\/zoomafrika1\/status\/1506354708948074497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":574,"h":717,"resize":"fit"},"medium":{"w":574,"h":717,"resize":"fit"}},"source_status_id":1506354708948074497,"source_status_id_str":"1506354708948074497","source_user_id":1059539826586894337,"source_user_id_str":"1059539826586894337"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 19:38:43 +0000 2022","id":1506354708948074497,"id_str":"1506354708948074497","text":"Good - night from Kitulo National Park, Tanzania \ud83c\uddf9\ud83c\uddff https:\/\/t.co\/LS5ETKgdIA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506354698990796802,"id_str":"1506354698990796802","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","url":"https:\/\/t.co\/LS5ETKgdIA","display_url":"pic.twitter.com\/LS5ETKgdIA","expanded_url":"https:\/\/twitter.com\/zoomafrika1\/status\/1506354708948074497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":574,"h":717,"resize":"fit"},"medium":{"w":574,"h":717,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506354698990796802,"id_str":"1506354698990796802","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOelniMWQAIoyNA.jpg","url":"https:\/\/t.co\/LS5ETKgdIA","display_url":"pic.twitter.com\/LS5ETKgdIA","expanded_url":"https:\/\/twitter.com\/zoomafrika1\/status\/1506354708948074497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":574,"h":717,"resize":"fit"},"medium":{"w":574,"h":717,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":85,"favorite_count":892,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":85,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1065149060724723712\/tnmQavbW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065149060724723712\/tnmQavbW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/976482728488198144\/1542786298","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268442660219637760,"id_str":"1268442660219637760","name":"J - Hyland","screen_name":"JHyland17","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":52,"listed_count":0,"created_at":"Thu - Jun 04 07:21:53 +0000 2020","favourites_count":6511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Mon - Jan 18 11:47:13 +0000 2021","id":1351134041534320641,"id_str":"1351134041534320641","text":"RT - @LeaveEUOfficial: So, Abu Hamza wants to come back to Britain...\n\nWe''re - not sure about you, but we''d rather not allow this crazed, convi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeaveEUOfficial","name":"Leave.EU","id":3362016513,"id_str":"3362016513","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 18 08:33:44 +0000 2021","id":1351085350140084224,"id_str":"1351085350140084224","text":"So, - Abu Hamza wants to come back to Britain...\n\nWe''re not sure about you, but - we''d rather not allow this crazed, co\u2026 https:\/\/t.co\/S4bzzKYaJQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S4bzzKYaJQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1351085350140084224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2050,"favorite_count":2870,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2050,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":749270313419112448,"id_str":"749270313419112448","name":"Sandeep_Gaikwad","screen_name":"sg8600","location":"Maharashtra, - India","description":"canvas,graphics artist. and simple buddhist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":4995,"listed_count":4,"created_at":"Sat - Jul 02 15:55:38 +0000 2016","favourites_count":11878,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1096,"lang":null,"status":{"created_at":"Sun - Mar 20 19:35:18 +0000 2022","id":1505629072344289280,"id_str":"1505629072344289280","text":"@aajtak - \u092c\u0941\u0926\u094d\u0927 \u0905\u0901\u0921 \u0939\u093f\u091c \u0927\u092e\u094d\u092e\u093e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aajtak","name":"AajTak","id":42606652,"id_str":"42606652","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505384886991192066,"in_reply_to_status_id_str":"1505384886991192066","in_reply_to_user_id":42606652,"in_reply_to_user_id_str":"42606652","in_reply_to_screen_name":"aajtak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"mr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444430992224112645\/K2VyyGFw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444430992224112645\/K2VyyGFw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749270313419112448\/1635097256","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":50961781,"id_str":"50961781","name":"Sunny - Jossy Awoyelu\ud83c\uddec\ud83c\udde7\ud83c\uddf3\ud83c\uddec\ud83c\uddfa\ud83c\uddf8","screen_name":"Awoyelu","location":"UK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":1177,"listed_count":0,"created_at":"Fri - Jun 26 07:22:14 +0000 2009","favourites_count":922,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2208,"lang":null,"status":{"created_at":"Wed - Mar 09 19:44:06 +0000 2022","id":1501645018204979205,"id_str":"1501645018204979205","text":"Victory - is yours https:\/\/t.co\/lBqZgWIe6g","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lBqZgWIe6g","expanded_url":"https:\/\/fb.watch\/bELfnRkzn-\/","display_url":"fb.watch\/bELfnRkzn-\/","indices":[17,40]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397309511959040000\/fn9SAgUa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397309511959040000\/fn9SAgUa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50961781\/1474536226","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1094230426288340992,"id_str":"1094230426288340992","name":"Susan - B Nagle","screen_name":"SusanBNagle1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":320,"listed_count":0,"created_at":"Sat - Feb 09 13:43:58 +0000 2019","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094231641529163776\/7PEBbWn7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094231641529163776\/7PEBbWn7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2395827973,"id_str":"2395827973","name":"yadnesh - patil","screen_name":"YpYspatil","location":"Jalgaon ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":71,"friends_count":1245,"listed_count":0,"created_at":"Tue - Mar 18 07:48:01 +0000 2014","favourites_count":10666,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":989,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448398356222451712\/uexDngN4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448398356222451712\/uexDngN4_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58926937,"id_str":"58926937","name":"Chas - Del Benn","screen_name":"DCrdbndt","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":711,"listed_count":1,"created_at":"Tue - Jul 21 21:25:49 +0000 2009","favourites_count":21579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":702521646125551617,"id_str":"702521646125551617","name":"Michelle - Kurs","screen_name":"KursMichelle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":84,"listed_count":0,"created_at":"Wed - Feb 24 15:53:07 +0000 2016","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/702522903712104448\/Bb5fvwSh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/702522903712104448\/Bb5fvwSh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2908184790,"id_str":"2908184790","name":"Don - Butler","screen_name":"3a49be1c7eeb4b1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":2234,"listed_count":0,"created_at":"Sun - Nov 23 14:33:11 +0000 2014","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300073636422967297,"id_str":"1300073636422967297","name":"Nasrat - Besmilzai","screen_name":"BesmilzaiNasrat","location":"Afghanistan","description":"I - am so proud in myself","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":341,"listed_count":0,"created_at":"Sun - Aug 30 14:11:51 +0000 2020","favourites_count":2438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Mon - Sep 13 18:07:36 +0000 2021","id":1437478083720790017,"id_str":"1437478083720790017","text":"@teracorona - @thomaskaine5 You are wrong, we should have a meeting with one another","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"teracorona","name":"Tera - Corona \ud83c\udf3b\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":42210746,"id_str":"42210746","indices":[0,11]},{"screen_name":"thomaskaine5","name":"Thomas - Kaine","id":860654500431880192,"id_str":"860654500431880192","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1437049090232123402,"in_reply_to_status_id_str":"1437049090232123402","in_reply_to_user_id":42210746,"in_reply_to_user_id_str":"42210746","in_reply_to_screen_name":"teracorona","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393486032797011972\/kj5tevtV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393486032797011972\/kj5tevtV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":62126931,"id_str":"62126931","name":"MoH. - Saad","screen_name":"ilaf_555","location":"\u0645\u0635\u0631 ","description":"\u0645\u0634 - \u0639\u0627\u0631\u0641 \u0627\u0643\u062a\u0628 \u0627\u064a\u0647 \u0648\u0639\u0646 - \u0627\u064a\u0647 \u0641\u062e\u0644\u064a\u0647\u0627 \u0643\u062f\u0629","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":150,"listed_count":2,"created_at":"Sat - Aug 01 21:53:34 +0000 2009","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"status":{"created_at":"Fri - Mar 25 22:00:35 +0000 2022","id":1507477574187995141,"id_str":"1507477574187995141","text":"Wordle - 280 4\/6\n\n\u2b1b\u2b1b\u2b1b\u2b1b\ud83d\udfe8\n\u2b1b\u2b1b\ud83d\udfe9\u2b1b\u2b1b\n\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\u2b1b\u2b1b\n\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1848847707\/ilaf555_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1848847707\/ilaf555_normal.png","profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DE911D","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":284138404,"id_str":"284138404","name":"K - S Farhat","screen_name":"ksfarhat","location":"beirut","description":"Ding - Dong! The Witch Is Dead","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":993,"listed_count":1,"created_at":"Mon - Apr 18 18:06:45 +0000 2011","favourites_count":10857,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2164,"lang":null,"status":{"created_at":"Sat - Mar 26 00:26:13 +0000 2022","id":1507514220828676098,"id_str":"1507514220828676098","text":"RT - @Youngie60: @JoePorterUK @BorisJohnson Really...\nThis morning: audio clip - of Rishi Sunak saying Johnson has been leading on the global s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Youngie60","name":"Young - At Heart # PROSECUTE TORY CORRUPTION","id":289576687,"id_str":"289576687","indices":[3,13]},{"screen_name":"JoePorterUK","name":"Cllr - Joe Porter \ud83c\uddec\ud83c\udde7","id":2792589217,"id_str":"2792589217","indices":[15,27]},{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[28,41]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 21:29:28 +0000 2022","id":1507107353728012288,"id_str":"1507107353728012288","text":"@JoePorterUK - @BorisJohnson Really...\nThis morning: audio clip of Rishi Sunak saying Johnson - has been leading on the\u2026 https:\/\/t.co\/chofcYJnlz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoePorterUK","name":"Cllr - Joe Porter \ud83c\uddec\ud83c\udde7","id":2792589217,"id_str":"2792589217","indices":[0,12]},{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[13,26]}],"urls":[{"url":"https:\/\/t.co\/chofcYJnlz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507107353728012288","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507045977374531584,"in_reply_to_status_id_str":"1507045977374531584","in_reply_to_user_id":2792589217,"in_reply_to_user_id_str":"2792589217","in_reply_to_screen_name":"JoePorterUK","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":29,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3457203983\/d9b74931b1f01ee3dfaab78344d5bf44_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3457203983\/d9b74931b1f01ee3dfaab78344d5bf44_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24422981,"id_str":"24422981","name":"Judy - Red","screen_name":"judystar","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":362,"friends_count":636,"listed_count":1,"created_at":"Sat - Mar 14 20:18:45 +0000 2009","favourites_count":32295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13236,"lang":null,"status":{"created_at":"Fri - Mar 25 01:58:37 +0000 2022","id":1507175086889082882,"id_str":"1507175086889082882","text":"RT - @JakeEvansGA: Democrats demanded the next Supreme Court Justice to be a woman - and now they\u2019re unable to define what a woman is.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JakeEvansGA","name":"Jake - Evans","id":1413602068028350467,"id_str":"1413602068028350467","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 17:27:18 +0000 2022","id":1506684021916512265,"id_str":"1506684021916512265","text":"Democrats - demanded the next Supreme Court Justice to be a woman and now they\u2019re - unable to define what a woman is.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3742,"favorite_count":14674,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3742,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/807796663947591680\/ox_9rGTm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/807796663947591680\/ox_9rGTm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24422981\/1481428788","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1264397976765632512,"id_str":"1264397976765632512","name":"Stark\ud83c\uddf5\ud83c\uddf7Sentinel","screen_name":"StarkSentinel8","location":"Colorado, - USA","description":"Something Definitely Not Akin To Your Average Huckleberry - \u00f7 Titan \u00f7 Heirloony","url":"https:\/\/t.co\/J9KnjIjY8V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J9KnjIjY8V","expanded_url":"http:\/\/esoteric8.weebly.com","display_url":"esoteric8.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":820,"listed_count":0,"created_at":"Sun - May 24 03:29:15 +0000 2020","favourites_count":402,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":734,"lang":null,"status":{"created_at":"Wed - Dec 23 19:56:32 +0000 2020","id":1341835099361296384,"id_str":"1341835099361296384","text":"And - a Very #happyholidays2020 to all & to all a good nite. #EcoFriendlyChristmas - https:\/\/t.co\/Mk3hC9TRte","truncated":false,"entities":{"hashtags":[{"text":"happyholidays2020","indices":[11,29]},{"text":"EcoFriendlyChristmas","indices":[63,84]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1341835094365880321,"id_str":"1341835094365880321","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/Ep8n6LLUwAEFJSI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ep8n6LLUwAEFJSI.jpg","url":"https:\/\/t.co\/Mk3hC9TRte","display_url":"pic.twitter.com\/Mk3hC9TRte","expanded_url":"https:\/\/twitter.com\/StarkSentinel8\/status\/1341835099361296384\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1341835094365880321,"id_str":"1341835094365880321","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/Ep8n6LLUwAEFJSI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ep8n6LLUwAEFJSI.jpg","url":"https:\/\/t.co\/Mk3hC9TRte","display_url":"pic.twitter.com\/Mk3hC9TRte","expanded_url":"https:\/\/twitter.com\/StarkSentinel8\/status\/1341835099361296384\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322579160829620224\/Ki38EDxg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322579160829620224\/Ki38EDxg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1264397976765632512\/1603695020","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305732062448680961,"id_str":"1305732062448680961","name":"jackjack","screen_name":"MrsJacquelineN1","location":"Kildare, - Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":178,"listed_count":0,"created_at":"Tue - Sep 15 04:56:37 +0000 2020","favourites_count":920,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jan 06 23:51:03 +0000 2021","id":1346967546084413440,"id_str":"1346967546084413440","text":"RT - @SteveSchmidtSES: I can\u2019t believe what I am seeing. These \u201c Officers\u201d - should be suspended while they are investigated. What a derelictio\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SteveSchmidtSES","name":"Steve - Schmidt","id":786309892990574592,"id_str":"786309892990574592","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 06 23:37:18 +0000 2021","id":1346964088849530880,"id_str":"1346964088849530880","text":"I - can\u2019t believe what I am seeing. These \u201c Officers\u201d should be - suspended while they are investigated. What a derelic\u2026 https:\/\/t.co\/Cb3plWslJR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Cb3plWslJR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1346964088849530880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1346938214867738625,"quoted_status_id_str":"1346938214867738625","retweet_count":12796,"favorite_count":34598,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1346938214867738625,"quoted_status_id_str":"1346938214867738625","retweet_count":12796,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307828467711586304\/ugnghYjg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307828467711586304\/ugnghYjg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305732062448680961\/1600645528","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":323640020,"id_str":"323640020","name":"HCKarvaly","screen_name":"ReaganFromGrave","location":"California","description":"artist, - retired teacher, performer, antiracist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1376,"friends_count":5001,"listed_count":0,"created_at":"Sat - Jun 25 05:01:00 +0000 2011","favourites_count":7409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7588,"lang":null,"status":{"created_at":"Sat - Mar 26 06:25:24 +0000 2022","id":1507604615340077056,"id_str":"1507604615340077056","text":"https:\/\/t.co\/IRP4y0Pf6H","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRP4y0Pf6H","expanded_url":"https:\/\/www.thenation.com\/article\/politics\/ketanji-brown-jackson-pause\/?fbclid=IwAR1psKwM9OnKnt0sUEgA5nOMY_Qcv01DRwZaQQ49CG40fgR3SiSZlgkEKP0","display_url":"thenation.com\/article\/politi\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325129781470322692\/MeVABckR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325129781470322692\/MeVABckR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323640020\/1604770535","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273957960738316288,"id_str":"1273957960738316288","name":"Eddie - Agba","screen_name":"agba_eddie","location":"","description":"I''m a free - spirited human being.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":308,"listed_count":0,"created_at":"Fri - Jun 19 12:37:15 +0000 2020","favourites_count":367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":202,"lang":null,"status":{"created_at":"Sun - Mar 20 13:28:02 +0000 2022","id":1505536643809353736,"id_str":"1505536643809353736","text":"@axios - Still leading.God bless you two,and May God be with the Ukranians.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"axios","name":"Axios","id":800707492346925056,"id_str":"800707492346925056","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505243482784505868,"in_reply_to_status_id_str":"1505243482784505868","in_reply_to_user_id":800707492346925056,"in_reply_to_user_id_str":"800707492346925056","in_reply_to_screen_name":"axios","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273958488973115393\/yOuPdPR3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273958488973115393\/yOuPdPR3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":318485475,"id_str":"318485475","name":"Elizabethgranoff","screen_name":"EGliz1022","location":"S. - Fl and NW Ind","description":"Ethics and taxi cab lawyer, Girl Mom,animal - lover, exercise enthusiast, Taylor Swift all day every day. Biden2020, #Blacklivesmatter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":392,"friends_count":1156,"listed_count":0,"created_at":"Thu - Jun 16 15:24:59 +0000 2011","favourites_count":67685,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3318,"lang":null,"status":{"created_at":"Sat - Mar 05 01:06:15 +0000 2022","id":1499914152642494464,"id_str":"1499914152642494464","text":"@swifterslover - Clean","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"swifterslover","name":"adry - \u2728","id":1287303957199503360,"id_str":"1287303957199503360","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499756943304699910,"in_reply_to_status_id_str":"1499756943304699910","in_reply_to_user_id":1287303957199503360,"in_reply_to_user_id_str":"1287303957199503360","in_reply_to_screen_name":"swifterslover","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350439995648200705\/fmF_OpEI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350439995648200705\/fmF_OpEI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289786019777323008,"id_str":"1289786019777323008","name":"realist","screen_name":"simbara91912682","location":"Space - ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":332,"listed_count":0,"created_at":"Sun - Aug 02 04:52:19 +0000 2020","favourites_count":381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":317,"lang":null,"status":{"created_at":"Mon - Mar 21 09:16:09 +0000 2022","id":1505835644878303232,"id_str":"1505835644878303232","text":"@daddyhope - This tweat should show u all who think @daddyhope isnt a spokesperson of the - west \ud83d\ude02 . Whilst we think he\u2026 https:\/\/t.co\/cH0W8i0I0A","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"daddyhope","name":"Hopewell - Chin\u2019ono","id":73672445,"id_str":"73672445","indices":[0,10]},{"screen_name":"daddyhope","name":"Hopewell - Chin\u2019ono","id":73672445,"id_str":"73672445","indices":[50,60]}],"urls":[{"url":"https:\/\/t.co\/cH0W8i0I0A","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505835644878303232","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505654772468224003,"in_reply_to_status_id_str":"1505654772468224003","in_reply_to_user_id":73672445,"in_reply_to_user_id_str":"73672445","in_reply_to_screen_name":"daddyhope","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497286877015162882\/YV_T_PgP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497286877015162882\/YV_T_PgP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1289786019777323008\/1600424924","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201576132673277952,"id_str":"1201576132673277952","name":"anne","screen_name":"shishishishsi12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":201,"listed_count":0,"created_at":"Mon - Dec 02 18:57:47 +0000 2019","favourites_count":6254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466592828520239108\/PHxq87wA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466592828520239108\/PHxq87wA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3522606619,"id_str":"3522606619","name":"Tayyab - Raees \ud83c\uddf8\ud83c\udde9","screen_name":"tayabraees","location":"Rawalpindi, - Pakistan","description":"Attorney\u00ae | Cancerian | Wandering Soul | introvert","url":"https:\/\/t.co\/MfFnK3JmQZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MfFnK3JmQZ","expanded_url":"https:\/\/alrushdlaw.com\/tayyab-raees\/","display_url":"alrushdlaw.com\/tayyab-raees\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":230,"listed_count":0,"created_at":"Fri - Sep 11 03:49:07 +0000 2015","favourites_count":111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217411062049517568\/omLLqZzz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217411062049517568\/omLLqZzz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3522606619\/1584737749","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":310783785,"id_str":"310783785","name":"Joan - L. Kelley","screen_name":"jlpkelley","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":177,"listed_count":0,"created_at":"Sat - Jun 04 10:24:32 +0000 2011","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - Jan 16 16:27:42 +0000 2021","id":1350479854903328768,"id_str":"1350479854903328768","text":"@NicholasFerroni - 1965 Batyle Creek Michigan $5,002","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NicholasFerroni","name":"Nicholas - Ferroni","id":199399909,"id_str":"199399909","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1350457228067790851,"in_reply_to_status_id_str":"1350457228067790851","in_reply_to_user_id":199399909,"in_reply_to_user_id_str":"199399909","in_reply_to_screen_name":"NicholasFerroni","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1100734666624110592,"id_str":"1100734666624110592","name":"Iqra","screen_name":"IqrazTabassum","location":"Islamabad, - Pakistan","description":"Tell me , you unpredictable!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":201,"listed_count":0,"created_at":"Wed - Feb 27 12:29:29 +0000 2019","favourites_count":4480,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75,"lang":null,"status":{"created_at":"Thu - Dec 23 15:10:49 +0000 2021","id":1474034768769523719,"id_str":"1474034768769523719","text":"RT - @DiplomaticIns: #OpEd Kofi Atta Annan in UN: Embodiment of Idiosyncrasy by - \n@IqrazTabassum \nhttps:\/\/t.co\/7UdqhxwIch via @DiplomaticIns\u2026","truncated":false,"entities":{"hashtags":[{"text":"OpEd","indices":[19,24]}],"symbols":[],"user_mentions":[{"screen_name":"DiplomaticIns","name":"The - Diplomatic Insight","id":1311004705171140611,"id_str":"1311004705171140611","indices":[3,17]},{"screen_name":"IqrazTabassum","name":"Iqra","id":1100734666624110592,"id_str":"1100734666624110592","indices":[79,93]},{"screen_name":"DiplomaticIns","name":"The - Diplomatic Insight","id":1311004705171140611,"id_str":"1311004705171140611","indices":[123,137]}],"urls":[{"url":"https:\/\/t.co\/7UdqhxwIch","expanded_url":"https:\/\/thediplomaticinsight.com\/kofi-atta-annan-in-un-embodiment-of-idiosyncrasy\/","display_url":"thediplomaticinsight.com\/kofi-atta-anna\u2026","indices":[95,118]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 15:08:17 +0000 2021","id":1474034130807570437,"id_str":"1474034130807570437","text":"#OpEd - Kofi Atta Annan in UN: Embodiment of Idiosyncrasy by \n@IqrazTabassum \nhttps:\/\/t.co\/7UdqhxwIch - via\u2026 https:\/\/t.co\/z36UGRhZd9","truncated":true,"entities":{"hashtags":[{"text":"OpEd","indices":[0,5]}],"symbols":[],"user_mentions":[{"screen_name":"IqrazTabassum","name":"Iqra","id":1100734666624110592,"id_str":"1100734666624110592","indices":[60,74]}],"urls":[{"url":"https:\/\/t.co\/7UdqhxwIch","expanded_url":"https:\/\/thediplomaticinsight.com\/kofi-atta-annan-in-un-embodiment-of-idiosyncrasy\/","display_url":"thediplomaticinsight.com\/kofi-atta-anna\u2026","indices":[76,99]},{"url":"https:\/\/t.co\/z36UGRhZd9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474034130807570437","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107689134968262656\/pYI2XHMb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107689134968262656\/pYI2XHMb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1100734666624110592\/1567255250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22382617,"id_str":"22382617","name":"marcia - izaguirre","screen_name":"izaguirrems","location":"Castroville Texas","description":"Journalist","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":42,"friends_count":483,"listed_count":1,"created_at":"Sun - Mar 01 17:24:14 +0000 2009","favourites_count":1513,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1927,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/85199637\/Marcia2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/85199637\/Marcia2_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275500449114841088,"id_str":"1275500449114841088","name":"Mubarak - nasko","screen_name":"NaskoMubarak","location":"Nasko","description":"A gentle - boi, loyal and humble. A diagnosis is my cousins","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":469,"listed_count":0,"created_at":"Tue - Jun 23 18:48:30 +0000 2020","favourites_count":539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Wed - Jul 15 17:14:26 +0000 2020","id":1283449858637074432,"id_str":"1283449858637074432","text":"@LeoUbaBank1 - 1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeoUbaBank1","name":"Leo - Uba Bank","id":1070387588719104001,"id_str":"1070387588719104001","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1070398748419874817,"in_reply_to_status_id_str":"1070398748419874817","in_reply_to_user_id":1070387588719104001,"in_reply_to_user_id_str":"1070387588719104001","in_reply_to_screen_name":"LeoUbaBank1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275505693844529157\/cuza380m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275505693844529157\/cuza380m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275500449114841088\/1592939241","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313861412075245569,"id_str":"1313861412075245569","name":"your - bestfriend","screen_name":"thetruthurtsngl","location":"","description":"for - all the real shit out there that your too afraid to say","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":126,"listed_count":0,"created_at":"Wed - Oct 07 15:19:14 +0000 2020","favourites_count":378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Fri - Apr 23 00:24:10 +0000 2021","id":1385388995799040004,"id_str":"1385388995799040004","text":"@Station19 - @traciethoms I HASNT BEEN 20 MIN IN AND IM ALREADY CRYING","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Station19","name":"Station - 19","id":956235500695707649,"id_str":"956235500695707649","indices":[0,10]},{"screen_name":"traciethoms","name":"Tracie - Thoms","id":158561160,"id_str":"158561160","indices":[11,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1385388925376548868,"in_reply_to_status_id_str":"1385388925376548868","in_reply_to_user_id":956235500695707649,"in_reply_to_user_id_str":"956235500695707649","in_reply_to_screen_name":"Station19","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313862816890265601\/3i-t7PsK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313862816890265601\/3i-t7PsK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1037988477474955264,"id_str":"1037988477474955264","name":"Kwame","screen_name":"Kwame96455408","location":"Accra","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":67,"listed_count":0,"created_at":"Fri - Sep 07 08:58:32 +0000 2018","favourites_count":19398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Mon - Jan 03 07:52:08 +0000 2022","id":1477910636545945602,"id_str":"1477910636545945602","text":"@Joy997FM - Tweaa, speaker playing political game like there is no tomorrow.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Joy997FM","name":"Joy - 99.7 FM","id":91966685,"id_str":"91966685","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1477893284861255681,"in_reply_to_status_id_str":"1477893284861255681","in_reply_to_user_id":91966685,"in_reply_to_user_id_str":"91966685","in_reply_to_screen_name":"Joy997FM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":977123766185508865,"id_str":"977123766185508865","name":"Delia - De La Rosa","screen_name":"DeliaDeLaRosa57","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":491,"listed_count":0,"created_at":"Fri - Mar 23 10:03:54 +0000 2018","favourites_count":35857,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":98,"lang":null,"status":{"created_at":"Wed - Mar 16 00:17:39 +0000 2022","id":1503888187587907585,"id_str":"1503888187587907585","text":"RT - @chipfranklin: Do me a huge favor: If you''re COMMITTED to electing more Democrats - in 2022 and protecting our House and Senate Majorities\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 11:32:17 +0000 2022","id":1503695578273918979,"id_str":"1503695578273918979","text":"Do - me a huge favor: If you''re COMMITTED to electing more Democrats in 2022 and - protecting our House and Senate Majo\u2026 https:\/\/t.co\/fyitJw0ApC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fyitJw0ApC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503695578273918979","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":767,"favorite_count":1494,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":767,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/977127023058370560\/JSz1X6kQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/977127023058370560\/JSz1X6kQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":262615794,"id_str":"262615794","name":"MK","screen_name":"mkoo7gp","location":"Jozi","description":"Africa - free in our Life time. retweet is no endorsement. #EFF member. Son of Africa, - Revolutionary descendant of Sankara, Kwame, Nyerere, Lumumba","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2635,"friends_count":4988,"listed_count":9,"created_at":"Tue - Mar 08 11:54:27 +0000 2011","favourites_count":27330,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":82954,"lang":null,"status":{"created_at":"Sat - Mar 26 10:46:22 +0000 2022","id":1507670287906746370,"id_str":"1507670287906746370","text":"RT - @wandile24796727: We must make the distinction between a revolutionary & - a vigilante, @nhlanhla_lux_ is a vigilante par excellence whose\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wandile24796727","name":"Dr - Wandile Kasibe, Ph.D.","id":1209268422707728385,"id_str":"1209268422707728385","indices":[3,19]},{"screen_name":"nhlanhla_lux_","name":"nhlanhlalux","id":2618322903,"id_str":"2618322903","indices":[93,107]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:56:11 +0000 2022","id":1507597260804218890,"id_str":"1507597260804218890","text":"We - must make the distinction between a revolutionary & a vigilante, @nhlanhla_lux_ - is a vigilante par excellence wh\u2026 https:\/\/t.co\/3lpyetRVuL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nhlanhla_lux_","name":"nhlanhlalux","id":2618322903,"id_str":"2618322903","indices":[72,86]}],"urls":[{"url":"https:\/\/t.co\/3lpyetRVuL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507597260804218890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":44,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458555895290466305\/2n0IDqrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458555895290466305\/2n0IDqrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/262615794\/1594563305","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":759758834,"id_str":"759758834","name":"Ryandaman32","screen_name":"Ryandaman32","location":"Troy, - NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":3577,"listed_count":0,"created_at":"Wed - Aug 15 17:05:32 +0000 2012","favourites_count":14585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":677,"lang":null,"status":{"created_at":"Fri - Sep 24 03:20:33 +0000 2021","id":1441241114359463954,"id_str":"1441241114359463954","text":"RT - @Panthers: retweet if your team is 3-0 https:\/\/t.co\/un8xPfv6mA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Panthers","name":"Carolina - Panthers","id":56443153,"id_str":"56443153","indices":[3,12]}],"urls":[],"media":[{"id":1441240919831822338,"id_str":"1441240919831822338","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","url":"https:\/\/t.co\/un8xPfv6mA","display_url":"pic.twitter.com\/un8xPfv6mA","expanded_url":"https:\/\/twitter.com\/Panthers\/status\/1441240965902049286\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":745,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":1498,"h":930,"resize":"fit"}},"source_status_id":1441240965902049286,"source_status_id_str":"1441240965902049286","source_user_id":56443153,"source_user_id_str":"56443153"}]},"extended_entities":{"media":[{"id":1441240919831822338,"id_str":"1441240919831822338","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","url":"https:\/\/t.co\/un8xPfv6mA","display_url":"pic.twitter.com\/un8xPfv6mA","expanded_url":"https:\/\/twitter.com\/Panthers\/status\/1441240965902049286\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":745,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":1498,"h":930,"resize":"fit"}},"source_status_id":1441240965902049286,"source_status_id_str":"1441240965902049286","source_user_id":56443153,"source_user_id_str":"56443153"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 24 03:19:57 +0000 2021","id":1441240965902049286,"id_str":"1441240965902049286","text":"retweet - if your team is 3-0 https:\/\/t.co\/un8xPfv6mA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1441240919831822338,"id_str":"1441240919831822338","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","url":"https:\/\/t.co\/un8xPfv6mA","display_url":"pic.twitter.com\/un8xPfv6mA","expanded_url":"https:\/\/twitter.com\/Panthers\/status\/1441240965902049286\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":745,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":1498,"h":930,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1441240919831822338,"id_str":"1441240919831822338","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FABQ-wZVQAIl07R.jpg","url":"https:\/\/t.co\/un8xPfv6mA","display_url":"pic.twitter.com\/un8xPfv6mA","expanded_url":"https:\/\/twitter.com\/Panthers\/status\/1441240965902049286\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":745,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":1498,"h":930,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3888,"favorite_count":5769,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3888,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1363138965860155392\/VAH4OKpH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1363138965860155392\/VAH4OKpH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":152322294,"id_str":"152322294","name":"Shannon - Starbuck","screen_name":"ShaniRae617","location":"Arizona, USA","description":"I - know I was born and I know that I\u2019ll die. The in-between is mine. I am - mine. -PJ","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":839,"friends_count":1495,"listed_count":1,"created_at":"Sat - Jun 05 16:42:37 +0000 2010","favourites_count":103877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16097,"lang":null,"status":{"created_at":"Fri - Mar 11 01:09:03 +0000 2022","id":1502089183979999235,"id_str":"1502089183979999235","text":"@arcillahumeda - @SpicyFrenzFan @nancysuzyq @LauraLibman @sjdehart58 @jeremyduda @votewarren - @pica_papitas Exactly.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arcillahumeda","name":"Wrangler:\u2696\ufe0f - \ud83d\udc9b\ud83d\udc99\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":48477806,"id_str":"48477806","indices":[0,14]},{"screen_name":"SpicyFrenzFan","name":"Spicy - Frenzzz Fan","id":1432893371521982464,"id_str":"1432893371521982464","indices":[15,29]},{"screen_name":"nancysuzyq","name":"nancy - r. strong","id":2191093538,"id_str":"2191093538","indices":[30,41]},{"screen_name":"LauraLibman","name":"Laura - Libman","id":2790300277,"id_str":"2790300277","indices":[42,54]},{"screen_name":"sjdehart58","name":"Turn - Arizona Blue","id":2356792200,"id_str":"2356792200","indices":[55,66]},{"screen_name":"jeremyduda","name":"Jeremy - Duda","id":91153898,"id_str":"91153898","indices":[67,78]},{"screen_name":"votewarren","name":"Warren - Petersen","id":411024392,"id_str":"411024392","indices":[79,90]},{"screen_name":"pica_papitas","name":"Spicy - Papitas 2.0","id":1356737682131484674,"id_str":"1356737682131484674","indices":[91,104]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502086541526458368,"in_reply_to_status_id_str":"1502086541526458368","in_reply_to_user_id":48477806,"in_reply_to_user_id_str":"48477806","in_reply_to_screen_name":"arcillahumeda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429668858483200000\/kHICvW7O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429668858483200000\/kHICvW7O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152322294\/1629694593","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":703036834096549889,"id_str":"703036834096549889","name":"Katrina - Roman","screen_name":"Roman1929Kat","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":221,"listed_count":0,"created_at":"Fri - Feb 26 02:00:17 +0000 2016","favourites_count":6945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"status":{"created_at":"Fri - Mar 25 01:15:05 +0000 2022","id":1507164130897276935,"id_str":"1507164130897276935","text":"RT - @OccupyDemocrats: BREAKING: Text messages expose Ginni Thomas, wife of Justice - Clarence Thomas, for having aggressively pressured Trump''\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:31:51 +0000 2022","id":1507123054857449479,"id_str":"1507123054857449479","text":"BREAKING: - Text messages expose Ginni Thomas, wife of Justice Clarence Thomas, for having - aggressively pressured Tru\u2026 https:\/\/t.co\/V5hhOuC45m","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V5hhOuC45m","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507123054857449479","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7777,"favorite_count":17903,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7777,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083192334991290368,"id_str":"1083192334991290368","name":"Stephen - Boorer","screen_name":"iES_2021","location":"Brisbane, Queensland","description":"Semi - retired after a rewarding career, looking to communicate with interesting - people. \ud83d\udeab no unsolicited DM\u2019s please","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":773,"listed_count":0,"created_at":"Thu - Jan 10 02:42:32 +0000 2019","favourites_count":20165,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3274,"lang":null,"status":{"created_at":"Sat - Mar 26 02:55:40 +0000 2022","id":1507551834244018179,"id_str":"1507551834244018179","text":"@BringBackMonkey - Because he resonates with every day Australians","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BringBackMonkey","name":"Idea - Monkey (If\/Then) \ud83e\udde8 \ud83d\udca5 \ud83d\udc35","id":1468354111964086274,"id_str":"1468354111964086274","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507443988818960385,"in_reply_to_status_id_str":"1507443988818960385","in_reply_to_user_id":1468354111964086274,"in_reply_to_user_id_str":"1468354111964086274","in_reply_to_screen_name":"BringBackMonkey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459996985792991235\/sn0PTych_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459996985792991235\/sn0PTych_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083192334991290368\/1645502376","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1962423523,"id_str":"1962423523","name":"Adebanjo - Olugbenga ","screen_name":"Adebanjoolu100","location":"Lagos","description":"Cool - Headed.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":421,"listed_count":0,"created_at":"Tue - Oct 15 10:40:32 +0000 2013","favourites_count":321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"status":{"created_at":"Sun - Feb 20 21:07:46 +0000 2022","id":1495505480764080135,"id_str":"1495505480764080135","text":"@Cristiano - Ride on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cristiano","name":"Cristiano - Ronaldo","id":155659213,"id_str":"155659213","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1495461025570861065,"in_reply_to_status_id_str":"1495461025570861065","in_reply_to_user_id":155659213,"in_reply_to_user_id_str":"155659213","in_reply_to_screen_name":"Cristiano","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1078608411309363201\/2xSUPphA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1078608411309363201\/2xSUPphA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1962423523\/1589024778","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2717476481,"id_str":"2717476481","name":"Mano - fingalik","screen_name":"fingalik","location":"Mzantsi, South Africa","description":"Mover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":889,"listed_count":0,"created_at":"Sat - Jul 19 05:22:03 +0000 2014","favourites_count":327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Sun - Mar 06 14:05:00 +0000 2022","id":1500472519194730503,"id_str":"1500472519194730503","text":"@blacklabelsa - Zamalek","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"blacklabelsa","name":"Carling - Black Label \u1160\u1160\u1160\u1160","id":329065650,"id_str":"329065650","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1497851497962356736,"in_reply_to_status_id_str":"1497851497962356736","in_reply_to_user_id":329065650,"in_reply_to_user_id_str":"329065650","in_reply_to_screen_name":"blacklabelsa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1249204667952828417\/KNSb8EWm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1249204667952828417\/KNSb8EWm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249661312893739009,"id_str":"1249661312893739009","name":"astrid","screen_name":"astridd1610","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":372,"listed_count":0,"created_at":"Mon - Apr 13 11:31:01 +0000 2020","favourites_count":816,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Thu - Mar 24 15:46:00 +0000 2022","id":1507020917192683533,"id_str":"1507020917192683533","text":"RT - @ursweetestbae: \u2728TWITTER PLEASE DO YOUR MAGIC\u2728\n\nHallo semua, boleh - minta tolong RT thread ini ya, makasih sebelumnya\ud83d\ude4f\ud83d\ude4f\n\nSaat - ini anak-an\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ursweetestbae","name":"Listi\ud83c\udf3c","id":1007465764419338241,"id_str":"1007465764419338241","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 08:59:59 +0000 2022","id":1506918742084579333,"id_str":"1506918742084579333","text":"\u2728TWITTER - PLEASE DO YOUR MAGIC\u2728\n\nHallo semua, boleh minta tolong RT thread ini - ya, makasih sebelumnya\ud83d\ude4f\ud83d\ude4f\n\nSaat ini an\u2026 https:\/\/t.co\/iEoy7D7req","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iEoy7D7req","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506918742084579333","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":404,"favorite_count":318,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":404,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":494085323,"id_str":"494085323","name":"Akinwande - kazeem","screen_name":"bayo1kz","location":"Lagos","description":"bad energy - stay far away\ud83d\ude0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":159,"friends_count":1255,"listed_count":1,"created_at":"Thu - Feb 16 14:17:40 +0000 2012","favourites_count":616,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2153,"lang":null,"status":{"created_at":"Fri - Feb 11 09:48:12 +0000 2022","id":1492072973553082370,"id_str":"1492072973553082370","text":"Just - posted a photo https:\/\/t.co\/BsAEyXeU86","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BsAEyXeU86","expanded_url":"https:\/\/www.instagram.com\/p\/CZ1SFuoDvZq\/?utm_medium=twitter","display_url":"instagram.com\/p\/CZ1SFuoDvZq\/\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427144689750269952\/-nA_IvGs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427144689750269952\/-nA_IvGs_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16740557,"id_str":"16740557","name":"M2C","screen_name":"Move2TheCenter","location":"","description":"My - tweets reflect my own opinions.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":3657,"listed_count":9,"created_at":"Tue - Oct 14 16:14:07 +0000 2008","favourites_count":8402,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9091,"lang":null,"status":{"created_at":"Fri - Mar 25 23:27:53 +0000 2022","id":1507499541414694912,"id_str":"1507499541414694912","text":"@donutsandcuffs - Where at? :)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donutsandcuffs","name":"Donutsandcuffs - \u007b11k\u007d","id":1431340855185616898,"id_str":"1431340855185616898","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506999111538679811,"in_reply_to_status_id_str":"1506999111538679811","in_reply_to_user_id":1431340855185616898,"in_reply_to_user_id_str":"1431340855185616898","in_reply_to_screen_name":"donutsandcuffs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380705912860598280\/o6ylziJb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380705912860598280\/o6ylziJb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16740557\/1490320570","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":799705639471620097,"id_str":"799705639471620097","name":"Iddi - Yasini","screen_name":"Iddi0753218690Y","location":"Dar es Salaam, Tanzania","description":"My - carrier is Electrical,\nIAM ELECTRICAL TECHNICIAN","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":236,"friends_count":2265,"listed_count":0,"created_at":"Fri - Nov 18 20:07:37 +0000 2016","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376229257077256195\/TzBtULv1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376229257077256195\/TzBtULv1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":579873408,"id_str":"579873408","name":"paul - githinji","screen_name":"githinji92","location":"Kitale, Kenya","description":"always - blue","url":"https:\/\/t.co\/qfue96CqV5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qfue96CqV5","expanded_url":"http:\/\/www.goal.com","display_url":"goal.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":47,"friends_count":504,"listed_count":0,"created_at":"Mon - May 14 11:29:00 +0000 2012","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/771393424209678337\/4T6K82RB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/771393424209678337\/4T6K82RB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":277728004,"id_str":"277728004","name":"InnoCiter - (Carla B.)","screen_name":"InnoCiter","location":"","description":"NorCal - native semi-retired in #Tucson #AZ, UCB; former KR columnist; longtime #BlueGoodVoter - using insight on wry to motivate healthy change in creative ways","url":"https:\/\/t.co\/O5blxGUi61","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O5blxGUi61","expanded_url":"https:\/\/about.me\/ctnberg","display_url":"about.me\/ctnberg","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":492,"friends_count":1867,"listed_count":45,"created_at":"Tue - Apr 05 22:30:00 +0000 2011","favourites_count":10264,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12972,"lang":null,"status":{"created_at":"Fri - Mar 25 20:11:34 +0000 2022","id":1507450136804282368,"id_str":"1507450136804282368","text":"RT - @joebarton1238: @TheRickWilson DECADES of hard work\n\ntrashed \"boundaries\"\n\nhttps:\/\/t.co\/nKy6bA7NZW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joebarton1238","name":"joebarton1238 - --","id":1056554952154243074,"id_str":"1056554952154243074","indices":[3,17]},{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[19,33]}],"urls":[{"url":"https:\/\/t.co\/nKy6bA7NZW","expanded_url":"https:\/\/vox.com\/2016\/7\/18\/12210500\/diagnosed-dysfunction-republican-party","display_url":"vox.com\/2016\/7\/18\/1221\u2026","indices":[79,102]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:27:15 +0000 2022","id":1507378588743462915,"id_str":"1507378588743462915","text":"@TheRickWilson - DECADES of hard work\n\ntrashed \"boundaries\"\n\nhttps:\/\/t.co\/nKy6bA7NZW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/nKy6bA7NZW","expanded_url":"https:\/\/vox.com\/2016\/7\/18\/12210500\/diagnosed-dysfunction-republican-party","display_url":"vox.com\/2016\/7\/18\/1221\u2026","indices":[60,83]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507351320663109651,"in_reply_to_status_id_str":"1507351320663109651","in_reply_to_user_id":19084896,"in_reply_to_user_id_str":"19084896","in_reply_to_screen_name":"TheRickWilson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":261,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":89,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/872699371917160448\/cxXNirB7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/872699371917160448\/cxXNirB7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277728004\/1606861629","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23097996,"id_str":"23097996","name":"Trez - Fleming","screen_name":"TrezFleming","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":586,"listed_count":0,"created_at":"Fri - Mar 06 18:21:30 +0000 2009","favourites_count":1747,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1058,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/729257172\/trezredhead04_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/729257172\/trezredhead04_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2503423436,"id_str":"2503423436","name":"tcpleman","screen_name":"thedarylsgran","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":167,"listed_count":0,"created_at":"Sun - May 18 05:13:04 +0000 2014","favourites_count":7167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467896624392716288\/1T2FjOJ8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467896624392716288\/1T2FjOJ8_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16305072,"id_str":"16305072","name":"Time - for Majority to Rule \ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\udf0e\ud83d\udc3e\ud83d\udc36\ud83d\ude3b","screen_name":"dtbinder","location":"Bend, - OR","description":"#TheResistance, @citydogsrescue co-founder, @joebiden, - @kamalaharris, FBR (if I am not in Twitter jail).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1657,"friends_count":4925,"listed_count":2,"created_at":"Tue - Sep 16 01:28:27 +0000 2008","favourites_count":13403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2185,"lang":null,"status":{"created_at":"Wed - Mar 23 04:54:57 +0000 2022","id":1506494687510683649,"id_str":"1506494687510683649","text":"@GOP - Wow this is just unabashed racism.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506282786843410432,"in_reply_to_status_id_str":"1506282786843410432","in_reply_to_user_id":11134252,"in_reply_to_user_id_str":"11134252","in_reply_to_screen_name":"GOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/273645463\/IMG_0534_Compressed_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/273645463\/IMG_0534_Compressed_normal.JPG","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18496610,"id_str":"18496610","name":"Ballini - Designs","screen_name":"BalliniDesigns","location":"USA","description":"Unique - Artisan Jewelry","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":752,"listed_count":6,"created_at":"Wed - Dec 31 02:45:39 +0000 2008","favourites_count":39861,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2244,"lang":null,"status":{"created_at":"Sun - Apr 11 16:44:34 +0000 2021","id":1381287066122792964,"id_str":"1381287066122792964","text":"https:\/\/t.co\/mAPhRu3nFm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1381287057952276480,"id_str":"1381287057952276480","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EytRQsYXAAAvV77.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EytRQsYXAAAvV77.jpg","url":"https:\/\/t.co\/mAPhRu3nFm","display_url":"pic.twitter.com\/mAPhRu3nFm","expanded_url":"https:\/\/twitter.com\/BalliniDesigns\/status\/1381287066122792964\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1224,"h":1632,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1381287057952276480,"id_str":"1381287057952276480","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EytRQsYXAAAvV77.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EytRQsYXAAAvV77.jpg","url":"https:\/\/t.co\/mAPhRu3nFm","display_url":"pic.twitter.com\/mAPhRu3nFm","expanded_url":"https:\/\/twitter.com\/BalliniDesigns\/status\/1381287066122792964\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1224,"h":1632,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/699823206576889856\/xchMYRW2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/699823206576889856\/xchMYRW2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18496610\/1452922458","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":715520571,"id_str":"715520571","name":" - kinyoro kiiru","screen_name":"KinyoroKiiru","location":"Kansas City ","description":"God''s - love","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":109,"friends_count":4117,"listed_count":0,"created_at":"Tue - Oct 15 05:00:43 +0000 2013","favourites_count":23753,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3202,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082594043773808646\/aLw9PY7x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082594043773808646\/aLw9PY7x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715520571\/1546945507","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29288385,"id_str":"29288385","name":"steven - engelhardt","screen_name":"sbeinstl","location":"","description":"Communications - Director for former Congressman Wm. Lacy Clay (D) Missouri, Principal at PureBeam - Midwest. tweets are my own. R\/Ts are not endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":525,"friends_count":2231,"listed_count":24,"created_at":"Mon - Apr 06 20:43:00 +0000 2009","favourites_count":3007,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2437,"lang":null,"status":{"created_at":"Sat - Mar 26 05:02:13 +0000 2022","id":1507583680662978568,"id_str":"1507583680662978568","text":"RT - @danielsgoldman: It now appears that the spouse of a Supreme Court justice - may have been involved in a conspiracy including the Presiden\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"danielsgoldman","name":"Daniel - Goldman","id":435232010,"id_str":"435232010","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:19:23 +0000 2022","id":1507512500589314061,"id_str":"1507512500589314061","text":"It - now appears that the spouse of a Supreme Court justice may have been involved - in a conspiracy including the Pres\u2026 https:\/\/t.co\/FGG2kskSjt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FGG2kskSjt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507512500589314061","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3680,"favorite_count":18134,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3680,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370287332\/Bo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370287332\/Bo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29288385\/1468825390","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3153303350,"id_str":"3153303350","name":"Ildiko - Kiss","screen_name":"IldikoKiss2","location":"Chicago","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":643,"listed_count":0,"created_at":"Mon - Apr 13 18:34:34 +0000 2015","favourites_count":5270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/987794201185280001\/nQesfxtE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/987794201185280001\/nQesfxtE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153303350\/1524343467","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3727334900,"id_str":"3727334900","name":"Soe - Min Oo","screen_name":"soeminoo098243","location":"Yangon","description":"Life - is beautiful struggles","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":328,"friends_count":1596,"listed_count":6,"created_at":"Tue - Sep 29 16:01:08 +0000 2015","favourites_count":22057,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3848,"lang":null,"status":{"created_at":"Wed - Mar 23 00:16:48 +0000 2022","id":1506424690717650946,"id_str":"1506424690717650946","text":"RT - @USEmbassyBurma: 1\/ @SecBlinken: \"Many of the military leaders who oversaw - the genocidal campaign against Rohingya, including the genera\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"USEmbassyBurma","name":"U.S. - Embassy Burma","id":537204717,"id_str":"537204717","indices":[3,18]},{"screen_name":"SecBlinken","name":"Secretary - Antony Blinken","id":1350150750966603777,"id_str":"1350150750966603777","indices":[23,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 03:19:19 +0000 2022","id":1506108234322804743,"id_str":"1506108234322804743","text":"1\/ - @SecBlinken: \"Many of the military leaders who oversaw the genocidal campaign - against Rohingya, including the ge\u2026 https:\/\/t.co\/XTcpIXwVOh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SecBlinken","name":"Secretary - Antony Blinken","id":1350150750966603777,"id_str":"1350150750966603777","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/XTcpIXwVOh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506108234322804743","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":164,"favorite_count":406,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":164,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399748917617590272\/Lt84JnzN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399748917617590272\/Lt84JnzN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3727334900\/1617609768","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":892246942478024704,"id_str":"892246942478024704","name":"\u2600\ufe0fAcik - Toi \/\u0623\u0686\u064a\u0642 \u062a\u0648\u064a\u2600\ufe0f","screen_name":"AcikToy","location":"Malaysia","description":"Reading\ud83d\udc53+ - Gardening\ud83d\udc69\u200d\ud83c\udf3e +\ud83d\udcf8+\u2600\ufe0f+\ud83c\udfc3\u200d\u2640\ufe0f+\ud83e\uddf5=Make - Sense \/Views very obviously mine.\n\n \n - ~Fact is fact, no matter how hard it is.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":567,"friends_count":3968,"listed_count":2,"created_at":"Tue - Aug 01 04:53:43 +0000 2017","favourites_count":16366,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14642,"lang":null,"status":{"created_at":"Sat - Mar 26 00:49:50 +0000 2022","id":1507520163570073605,"id_str":"1507520163570073605","text":"RT - @myJAWIKL: Doa ini diajarkan oleh Rasulullah SAW untuk dibaca pada waktu pagi, - petang dan ketika berbaring untuk tidur.\n\nJadikan doa ini\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"myJAWIKL","name":"JAWI - Official","id":861783555558432769,"id_str":"861783555558432769","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:16:42 +0000 2022","id":1507496728618205186,"id_str":"1507496728618205186","text":"Doa - ini diajarkan oleh Rasulullah SAW untuk dibaca pada waktu pagi, petang dan - ketika berbaring untuk tidur.\n\nJadik\u2026 https:\/\/t.co\/K25lW5qzVx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K25lW5qzVx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507496728618205186","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402967202861436929\/dGJZYEuK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402967202861436929\/dGJZYEuK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892246942478024704\/1623338644","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":847179310620397568,"id_str":"847179310620397568","name":"Ernest - Marshsll","screen_name":"EMarshsll","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":184,"listed_count":0,"created_at":"Wed - Mar 29 20:11:02 +0000 2017","favourites_count":953,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":275,"lang":null,"status":{"created_at":"Mon - Mar 14 14:17:52 +0000 2022","id":1503374860415811585,"id_str":"1503374860415811585","text":"@ReallyAmerican1 - They are a https:\/\/t.co\/Af7fXH1Yxe ignorant.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/Af7fXH1Yxe","expanded_url":"http:\/\/cult.So","display_url":"cult.So","indices":[28,51]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503366324835213313,"in_reply_to_status_id_str":"1503366324835213313","in_reply_to_user_id":767788995962998784,"in_reply_to_user_id_str":"767788995962998784","in_reply_to_screen_name":"ReallyAmerican1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283148752115470336,"id_str":"1283148752115470336","name":"ArtMaggotTarot","screen_name":"ArtMaggotTarot","location":"","description":"Artist, - political junkie, spokesperson for my dog Arrow","url":"https:\/\/t.co\/PkdTT47HWY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PkdTT47HWY","expanded_url":"http:\/\/jaguarartglass.com","display_url":"jaguarartglass.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":234,"listed_count":0,"created_at":"Tue - Jul 14 21:19:29 +0000 2020","favourites_count":5985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1166,"lang":null,"status":{"created_at":"Tue - Jun 29 20:20:50 +0000 2021","id":1409970134647668738,"id_str":"1409970134647668738","text":"@unroolie_julie - @juliemason @MasonMornings Further?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"unroolie_julie","name":"unroolie_julie","id":12340912,"id_str":"12340912","indices":[0,15]},{"screen_name":"juliemason","name":"Julie - Mason","id":6904552,"id_str":"6904552","indices":[16,27]},{"screen_name":"MasonMornings","name":"Julie - Mason Mornings","id":44660449,"id_str":"44660449","indices":[28,42]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1409846789704986626,"in_reply_to_status_id_str":"1409846789704986626","in_reply_to_user_id":12340912,"in_reply_to_user_id_str":"12340912","in_reply_to_screen_name":"unroolie_julie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283149610383314944\/U9jxqlul_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283149610383314944\/U9jxqlul_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":994259858990891013,"id_str":"994259858990891013","name":"shankar - awale","screen_name":"shankarawale1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":96,"friends_count":1429,"listed_count":0,"created_at":"Wed - May 09 16:56:37 +0000 2018","favourites_count":140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Sun - Jan 30 01:40:42 +0000 2022","id":1487601635622752256,"id_str":"1487601635622752256","text":"@kandelnirmal - @gbudhathoki @cooolrims @GaniAnsarii @uttamjp @Bhismak1962 25","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kandelnirmal","name":"Dr - Nirmal Kandel","id":1005541201,"id_str":"1005541201","indices":[0,13]},{"screen_name":"gbudhathoki","name":"Gajendra - S. Budhathoki \u267f","id":72485042,"id_str":"72485042","indices":[14,26]},{"screen_name":"cooolrims","name":"\u0915\u0941\u0932 - \u0930\u093f\u092e\u094d\u0938","id":135129114,"id_str":"135129114","indices":[27,37]},{"screen_name":"GaniAnsarii","name":"\u0917\u093c\u0928\u0940 - \u0905\u0928\u094d\u0938\u093e\u0930\u0940","id":588484683,"id_str":"588484683","indices":[38,50]},{"screen_name":"uttamjp","name":"Uttam - Bajracharya","id":99077144,"id_str":"99077144","indices":[51,59]},{"screen_name":"Bhismak1962","name":"(\u092d\u0940\u0937\u094d\u092e)Bhisma","id":2725762518,"id_str":"2725762518","indices":[60,72]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487297618061500420,"in_reply_to_status_id_str":"1487297618061500420","in_reply_to_user_id":1005541201,"in_reply_to_user_id_str":"1005541201","in_reply_to_screen_name":"kandelnirmal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37232880,"id_str":"37232880","name":"Tim","screen_name":"tlhood15","location":"Alabama, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":309,"listed_count":0,"created_at":"Sat - May 02 16:50:27 +0000 2009","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Mon - Jan 31 14:43:51 +0000 2022","id":1488161109215432707,"id_str":"1488161109215432707","text":"\ud83d\udd25 - \ud83d\udd25Share \ud83d\udd25 \ud83d\udd25 Thoughts from this guy! \n\nhttps:\/\/t.co\/ebkwAm9raR - https:\/\/t.co\/SrDQoRv3oo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ebkwAm9raR","expanded_url":"https:\/\/www.wevideo.com\/view\/2545106167","display_url":"wevideo.com\/view\/2545106167","indices":[42,65]}],"media":[{"id":1488161107634176001,"id_str":"1488161107634176001","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FKcCpI0WQAEWK9P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKcCpI0WQAEWK9P.jpg","url":"https:\/\/t.co\/SrDQoRv3oo","display_url":"pic.twitter.com\/SrDQoRv3oo","expanded_url":"https:\/\/twitter.com\/tlhood15\/status\/1488161109215432707\/photo\/1","type":"photo","sizes":{"large":{"w":654,"h":872,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":654,"h":872,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1488161107634176001,"id_str":"1488161107634176001","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FKcCpI0WQAEWK9P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKcCpI0WQAEWK9P.jpg","url":"https:\/\/t.co\/SrDQoRv3oo","display_url":"pic.twitter.com\/SrDQoRv3oo","expanded_url":"https:\/\/twitter.com\/tlhood15\/status\/1488161109215432707\/photo\/1","type":"photo","sizes":{"large":{"w":654,"h":872,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":654,"h":872,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/www.socialchamp.io\" rel=\"nofollow\"\u003eSocialChamp IO - \u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/666830439089381376\/vPG37xee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/666830439089381376\/vPG37xee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37232880\/1521899845","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3799521556,"id_str":"3799521556","name":"Leslie - Keyworth","screen_name":"lkhrdh_leslie","location":"Middlebury, VT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":567,"listed_count":0,"created_at":"Mon - Sep 28 03:14:28 +0000 2015","favourites_count":4593,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":302033976,"id_str":"302033976","name":"M - D","screen_name":"archaeomk2","location":"","description":"In this life we - cannot always do great things. We can only do small things with great love - - MOTHER TERESA","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":62,"friends_count":504,"listed_count":0,"created_at":"Fri - May 20 13:51:56 +0000 2011","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362248665\/DSCN2714_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362248665\/DSCN2714_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23995936,"id_str":"23995936","name":"sabine - morrow","screen_name":"sabinemm","location":"West Coast","description":"Writer\/editor - who teaches a little French cooking, infuses booze and is ruled by dogs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":607,"listed_count":15,"created_at":"Thu - Mar 12 18:10:15 +0000 2009","favourites_count":1181,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":473,"lang":null,"status":{"created_at":"Thu - Mar 24 21:00:10 +0000 2022","id":1507099981102006282,"id_str":"1507099981102006282","text":"RT - @APStylebook: We have a new AP Stylebook Online Topical Guide covering terms - related to the Russia-Ukraine war.\nNotably it includes many\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"APStylebook","name":"APStylebook","id":27029537,"id_str":"27029537","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:25:50 +0000 2022","id":1507046043225047040,"id_str":"1507046043225047040","text":"We - have a new AP Stylebook Online Topical Guide covering terms related to the - Russia-Ukraine war.\nNotably it includ\u2026 https:\/\/t.co\/YEQDGCH4q1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YEQDGCH4q1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507046043225047040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":52,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158261607\/TheveryhandsomeLuke_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158261607\/TheveryhandsomeLuke_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23995936\/1647797511","profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":710807577102262272,"id_str":"710807577102262272","name":"TPL","screen_name":"TLansner","location":"Connecticut, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":656,"listed_count":0,"created_at":"Fri - Mar 18 12:38:27 +0000 2016","favourites_count":41823,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":395,"lang":null,"status":{"created_at":"Fri - Mar 18 12:56:48 +0000 2022","id":1504804010666172422,"id_str":"1504804010666172422","text":"RT - @Emywinst: Aaron Rodgers is allowed to run his mouth, but Colin Kaepernick - wasn''t.\n\nRetweet if you think Colin Kaepernick is an American\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 10:34:15 +0000 2022","id":1504768133961297927,"id_str":"1504768133961297927","text":"Aaron - Rodgers is allowed to run his mouth, but Colin Kaepernick wasn''t.\n\nRetweet - if you think Colin Kaepernick is an American Patriot.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4445,"favorite_count":10310,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4445,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848161541765693440\/MKioJJcO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848161541765693440\/MKioJJcO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28124251,"id_str":"28124251","name":"Cait","screen_name":"PrairieCaityKat","location":"Canada","description":"Biotech - enthusiast, foodie, wine lover, mom, and Marketing Manager","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":280,"friends_count":1853,"listed_count":7,"created_at":"Wed - Apr 01 15:20:05 +0000 2009","favourites_count":33940,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1928,"lang":null,"status":{"created_at":"Fri - Mar 25 04:14:20 +0000 2022","id":1507209242456993800,"id_str":"1507209242456993800","text":"RT - @madrid_mike: If John Roberts wants to preserve the integrity of the Supreme - Court as an institution and not have his court go down in i\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"madrid_mike","name":"Mike - Madrid","id":450341380,"id_str":"450341380","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:55:28 +0000 2022","id":1507189393022365709,"id_str":"1507189393022365709","text":"If - John Roberts wants to preserve the integrity of the Supreme Court as an institution - and not have his court go do\u2026 https:\/\/t.co\/K9pimk1uxm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K9pimk1uxm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507189393022365709","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1051,"favorite_count":6322,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1051,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000445442648\/bb26817365975abcf319006255ba5764_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000445442648\/bb26817365975abcf319006255ba5764_normal.jpeg","profile_link_color":"72F2F2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":272688720,"id_str":"272688720","name":"Kathy - Obear","screen_name":"KathyObear","location":"New York, New York","description":"Speaker, - author, trainer, coach. Social Justice. Authentic dialogue. Facilitating change. - Navigating triggers. Inspire. Heal. Laugh. Love. Be light.","url":"http:\/\/t.co\/xTekFuFTdj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/xTekFuFTdj","expanded_url":"http:\/\/www.drkathyobear.com","display_url":"drkathyobear.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1696,"friends_count":754,"listed_count":33,"created_at":"Sun - Mar 27 00:25:40 +0000 2011","favourites_count":3731,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17297,"lang":null,"status":{"created_at":"Sat - Mar 26 03:17:42 +0000 2022","id":1507557375401594881,"id_str":"1507557375401594881","text":"RT - @RWDSU: Today, we commemorate the 111th Anniversary of the Triangle Shirtwaist - Factory Fire. \n\n#WeRemember and honor the 146 mostly youn\u2026","truncated":false,"entities":{"hashtags":[{"text":"WeRemember","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"RWDSU","name":"RWDSU","id":233979612,"id_str":"233979612","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:47:27 +0000 2022","id":1507353472827600903,"id_str":"1507353472827600903","text":"Today, - we commemorate the 111th Anniversary of the Triangle Shirtwaist Factory Fire. - \n\n#WeRemember and honor the 14\u2026 https:\/\/t.co\/QKRNmUbfaH","truncated":true,"entities":{"hashtags":[{"text":"WeRemember","indices":[87,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QKRNmUbfaH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507353472827600903","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":74,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":32,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526780489659457537\/GgRd0THl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526780489659457537\/GgRd0THl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272688720\/1413741068","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282996375869968384,"id_str":"1282996375869968384","name":"0737721630","screen_name":"YvOdeXzqpe5W7E3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":611,"listed_count":0,"created_at":"Tue - Jul 14 11:13:45 +0000 2020","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":388,"lang":null,"status":{"created_at":"Thu - Mar 24 18:08:15 +0000 2022","id":1507056715447033867,"id_str":"1507056715447033867","text":"@MmusiMaimane - Crimenals","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MmusiMaimane","name":"Mmusi - Maimane","id":192831956,"id_str":"192831956","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506868047738507264,"in_reply_to_status_id_str":"1506868047738507264","in_reply_to_user_id":192831956,"in_reply_to_user_id_str":"192831956","in_reply_to_screen_name":"MmusiMaimane","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385185028808847363\/m1SoP_6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385185028808847363\/m1SoP_6b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":624118705,"id_str":"624118705","name":"bhickey","screen_name":"bhickey2","location":"","description":"Michigan - state","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":503,"listed_count":0,"created_at":"Sun - Jul 01 21:47:08 +0000 2012","favourites_count":121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Mar 06 01:22:53 +0000 2021","id":1368009153965330434,"id_str":"1368009153965330434","text":"RT - @JakeSherman: Just to bring the world up to speed, there are problems right - now w the unemployment piece of the covid bill. The senates\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JakeSherman","name":"Jake - Sherman","id":21252618,"id_str":"21252618","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 05 19:53:21 +0000 2021","id":1367926225595998212,"id_str":"1367926225595998212","text":"Just - to bring the world up to speed, there are problems right now w the unemployment - piece of the covid bill. The s\u2026 https:\/\/t.co\/5pOG86YB7w","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5pOG86YB7w","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1367926225595998212","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":317,"favorite_count":1503,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":317,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1145521499823960064,"id_str":"1145521499823960064","name":"Reimomo","screen_name":"Reimomo15","location":"Washington, - USA","description":"Politics Parenting Design & Architecture Rock\/Alt Science - News Space News Art Weather Health Literature Photography Humanitarian Gov - Officials & Agencies Books","url":"https:\/\/t.co\/FS1nGBfcOs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FS1nGBfcOs","expanded_url":"http:\/\/maureenmissives.blogspot.com","display_url":"maureenmissives.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":539,"listed_count":1,"created_at":"Mon - Jul 01 02:36:23 +0000 2019","favourites_count":992,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79,"lang":null,"status":{"created_at":"Sat - Nov 07 16:52:21 +0000 2020","id":1325118904897712129,"id_str":"1325118904897712129","text":"Exactly. - \u2764\ufe0f https:\/\/t.co\/q5lwGBVNia","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/q5lwGBVNia","expanded_url":"https:\/\/twitter.com\/mitchellreports\/status\/1325118179589435393","display_url":"twitter.com\/mitchellreport\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1325118179589435393,"quoted_status_id_str":"1325118179589435393","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311479704176652289\/aSWqLvo6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311479704176652289\/aSWqLvo6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1145521499823960064\/1601516103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42747378,"id_str":"42747378","name":"Rhonda - Rose","screen_name":"RRR266","location":"Miami, FL","description":"Retired - Teacher\/Librarian, Purveyor of Truth","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":1274,"listed_count":0,"created_at":"Tue - May 26 22:56:10 +0000 2009","favourites_count":10271,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1661,"lang":null,"status":{"created_at":"Tue - Mar 22 23:03:08 +0000 2022","id":1506406148752162820,"id_str":"1506406148752162820","text":"@Jim_Jordan - Why don\u2019t you take responsibility for the sexual abuse of the wrestlers - you were responsible for? Or an\u2026 https:\/\/t.co\/eP2MDeL9Ir","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/eP2MDeL9Ir","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506406148752162820","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506019310611079168,"in_reply_to_status_id_str":"1506019310611079168","in_reply_to_user_id":18166778,"in_reply_to_user_id_str":"18166778","in_reply_to_screen_name":"Jim_Jordan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445018929887735808\/HKP_f0pP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445018929887735808\/HKP_f0pP_normal.jpeg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265302379345346560,"id_str":"1265302379345346560","name":"kitalyver","screen_name":"kitalyver","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":29,"listed_count":0,"created_at":"Tue - May 26 15:23:35 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2976164920,"id_str":"2976164920","name":"Prafulla - Badgujar","screen_name":"BadgujarPraful","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":87,"listed_count":0,"created_at":"Tue - Jan 13 09:43:33 +0000 2015","favourites_count":901,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Nov 21 04:38:26 +0000 2020","id":1330007638797549568,"id_str":"1330007638797549568","text":"@orangebook_ - The Fountain head by Ayn Rand","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"orangebook_","name":"Orange - Book \ud83c\udf4a\ud83d\udcd6","id":824990584410476544,"id_str":"824990584410476544","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1329671094027096065,"in_reply_to_status_id_str":"1329671094027096065","in_reply_to_user_id":824990584410476544,"in_reply_to_user_id_str":"824990584410476544","in_reply_to_screen_name":"orangebook_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2351795388,"id_str":"2351795388","name":"Katie","screen_name":"Kathryn28236035","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":352,"listed_count":0,"created_at":"Wed - Feb 19 14:45:57 +0000 2014","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Aug 20 08:30:57 +0000 2020","id":1296364082371723266,"id_str":"1296364082371723266","text":"RT - @PeteButtigieg: Extraordinary to witness the history made tonight.\n\nCongratulations, - @KamalaHarris\u2014our next vice president.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeteButtigieg","name":"Pete - Buttigieg","id":226222147,"id_str":"226222147","indices":[3,17]},{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[88,101]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Aug 20 03:11:53 +0000 2020","id":1296283787597434881,"id_str":"1296283787597434881","text":"Extraordinary - to witness the history made tonight.\n\nCongratulations, @KamalaHarris\u2014our - next vice president.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[69,82]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4795,"favorite_count":65404,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4795,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436262597201903616\/XlF69NR5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436262597201903616\/XlF69NR5_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":277571264,"id_str":"277571264","name":"Brian - Blackwell","screen_name":"Biggysniffles","location":"United States","description":"I - am an independent, a self proclaimed Buffalo wing and pizza expert, die hard - Bills fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":2411,"listed_count":0,"created_at":"Tue - Apr 05 16:50:42 +0000 2011","favourites_count":3605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":582,"lang":null,"status":{"created_at":"Fri - Mar 18 11:01:26 +0000 2022","id":1504774978142679041,"id_str":"1504774978142679041","text":"@ASoftstar - I see it skinning in both directions. What does that mean?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ASoftstar","name":"Amanda - Softstar\ud83c\udff9","id":1290479032308338692,"id_str":"1290479032308338692","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504655262119960578,"in_reply_to_status_id_str":"1504655262119960578","in_reply_to_user_id":1290479032308338692,"in_reply_to_user_id_str":"1290479032308338692","in_reply_to_screen_name":"ASoftstar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1411600130013286401\/MpHkGc_j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1411600130013286401\/MpHkGc_j_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40332995,"id_str":"40332995","name":"sm","screen_name":"Smaxwell00","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":206,"friends_count":1688,"listed_count":8,"created_at":"Fri - May 15 21:03:06 +0000 2009","favourites_count":16355,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3938,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/940652441871233026\/cQFxPCis_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/940652441871233026\/cQFxPCis_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2479304988,"id_str":"2479304988","name":"mtmike","screen_name":"mtmike222","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":474,"listed_count":0,"created_at":"Tue - May 06 05:34:12 +0000 2014","favourites_count":3371,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Jun 17 21:38:08 +0000 2020","id":1273369361387081729,"id_str":"1273369361387081729","text":"@Mrs_Skilling - @elonmusk @Hertz I respect sec. sec is here to protect investors","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mrs_Skilling","name":"Borat - Sagdiyev","id":1172167991921926144,"id_str":"1172167991921926144","indices":[0,13]},{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[14,23]},{"screen_name":"Hertz","name":"Hertz","id":18001417,"id_str":"18001417","indices":[24,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1273279151143825408,"in_reply_to_status_id_str":"1273279151143825408","in_reply_to_user_id":1172167991921926144,"in_reply_to_user_id_str":"1172167991921926144","in_reply_to_screen_name":"Mrs_Skilling","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273446358356307968\/kAuI_Orz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273446358356307968\/kAuI_Orz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479304988\/1592448248","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":899228045957115904,"id_str":"899228045957115904","name":"Betsy - Rosenthal, M.Ed Instructional Curr. & Tech.","screen_name":"rosenthalbio","location":"Winston-Salem, - NC","description":"Life Science Teacher, mentor, and NHS Advisor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":842,"listed_count":2,"created_at":"Sun - Aug 20 11:14:07 +0000 2017","favourites_count":12305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3918,"lang":null,"status":{"created_at":"Wed - Mar 23 11:31:20 +0000 2022","id":1506594439405441030,"id_str":"1506594439405441030","text":"RT - @SamRamani2: BREAKING: Estonia urges NATO to abandon its \u201ctripwire\u201d - posture and deploy permanent forces in Eastern Europe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamRamani2","name":"Samuel - Ramani","id":1957610664,"id_str":"1957610664","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 09:25:51 +0000 2022","id":1506562861316911109,"id_str":"1506562861316911109","text":"BREAKING: - Estonia urges NATO to abandon its \u201ctripwire\u201d posture and deploy - permanent forces in Eastern Europe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1691,"favorite_count":12329,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1691,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899294498433499136\/w_ceMzt8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899294498433499136\/w_ceMzt8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1164024126274711553,"id_str":"1164024126274711553","name":"lemony - snickering","screen_name":"per_snickity_D","location":"New York City","description":"expert - on everything, knows nothing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":487,"listed_count":0,"created_at":"Wed - Aug 21 04:00:30 +0000 2019","favourites_count":11245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2625,"lang":null,"status":{"created_at":"Fri - Mar 25 16:19:56 +0000 2022","id":1507391845046886414,"id_str":"1507391845046886414","text":"@DLNHLGSN - Well they only need twice as much saved so it cancels out. Right","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DLNHLGSN","name":"dlnhlgsn","id":403903888,"id_str":"403903888","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507357809255538697,"in_reply_to_status_id_str":"1507357809255538697","in_reply_to_user_id":403903888,"in_reply_to_user_id_str":"403903888","in_reply_to_screen_name":"DLNHLGSN","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321180252538867713\/lUJ9RCp1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321180252538867713\/lUJ9RCp1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1164024126274711553\/1646184366","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":901176634069237760,"id_str":"901176634069237760","name":"Mayen - Kuol Mayen","screen_name":"MayenKuolMayen1","location":"Bengaluru, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":1264,"listed_count":0,"created_at":"Fri - Aug 25 20:17:07 +0000 2017","favourites_count":576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Thu - Dec 19 12:24:08 +0000 2019","id":1207637739618918400,"id_str":"1207637739618918400","text":"@Married2_Coffee - I don\u2019t see the difference between the two","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Married2_Coffee","name":"Aluel","id":567456343,"id_str":"567456343","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1207538228233998336,"in_reply_to_status_id_str":"1207538228233998336","in_reply_to_user_id":567456343,"in_reply_to_user_id_str":"567456343","in_reply_to_screen_name":"Married2_Coffee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/901179853067530240\/N2mFoT8h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/901179853067530240\/N2mFoT8h_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17572838,"id_str":"17572838","name":"Greg - Hassler","screen_name":"GregHassler","location":"Chicago, IL ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":621,"listed_count":0,"created_at":"Sun - Nov 23 14:01:25 +0000 2008","favourites_count":89,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":151,"lang":null,"status":{"created_at":"Fri - Apr 16 16:15:15 +0000 2021","id":1383091626470432770,"id_str":"1383091626470432770","text":"@SoleilSunray - @xsyntryk1 @ericgarland @zookeeper125 It an old business model. It\u2019s - the same business model big oil\u2026 https:\/\/t.co\/Vrln7sk0Fl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SoleilSunray","name":"Sol.Ray - \ud83c\udf3b\ud83d\udc99\ud83c\uddfa\ud83c\udde6\ud83d\udc9b","id":1324839400744779776,"id_str":"1324839400744779776","indices":[0,13]},{"screen_name":"xsyntryk1","name":"Xsyntryk","id":763769263828115456,"id_str":"763769263828115456","indices":[14,24]},{"screen_name":"ericgarland","name":"Eric - Garland","id":16912124,"id_str":"16912124","indices":[25,37]},{"screen_name":"zookeeper125","name":"Jen\u270d\ud83c\udf3b\ud83d\udc3e\ud83d\udc1d - \ud83d\udc89\ud83d\udc89\ud83d\udc89Support voting rights","id":843667055631093760,"id_str":"843667055631093760","indices":[38,51]}],"urls":[{"url":"https:\/\/t.co\/Vrln7sk0Fl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1383091626470432770","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1383071350332432385,"in_reply_to_status_id_str":"1383071350332432385","in_reply_to_user_id":1324839400744779776,"in_reply_to_user_id_str":"1324839400744779776","in_reply_to_screen_name":"SoleilSunray","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504217036\/profile_pic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504217036\/profile_pic_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18724848,"id_str":"18724848","name":"Altitude","screen_name":"BaldMondo","location":"Milwaukee, - WI","description":"BLM BTLM Gay, He, Him, His. Vaxxed. Liberal. Comedy Nerd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":652,"friends_count":1133,"listed_count":4,"created_at":"Wed - Jan 07 15:33:41 +0000 2009","favourites_count":10310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9311,"lang":null,"status":{"created_at":"Sat - Mar 26 07:30:20 +0000 2022","id":1507620955606167556,"id_str":"1507620955606167556","text":"Taylor - Hawkins? Damn. He was 50","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"2a93711775303f90","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2a93711775303f90.json","place_type":"city","name":"Milwaukee","full_name":"Milwaukee, - WI","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-88.070827,42.920822],[-87.863758,42.920822],[-87.863758,43.1926225],[-88.070827,43.1926225]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482704633848082435\/FgunnF1C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482704633848082435\/FgunnF1C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18724848\/1602212584","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":534815097,"id_str":"534815097","name":"\u1d18\u0280\u1d0f\u1d0a\u1d07\u1d04\u1d1b - \u1d0d\u1d00\u029f\u1d00\u0280\u1d0b\u1d07\u028f \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","screen_name":"Proj_Malarkey","location":"SW - FL","description":"\u1d04\u1d0f\u1d0d\u1d0d\u1d0f\u0274 \ua731\u1d07\u0274\ua731\u1d07 - \u1d05\u1d07\u1d0d\u1d0f\u1d04\u0280\u1d00\u1d1b, \u1d18\u0280\u1d00\u0262\u1d0d\u1d00\u1d1b\u026a\u1d04 - \u1d18\u0280\u1d0f\u0262\u0280\u1d07\ua731\ua731\u026a\u1d20\u1d07, \u1d00\u1d1b\u1d1b\u1d0f\u0280\u0274\u1d07\u028f, - \u1d04\u1d0f\u0280\u1d18\u1d0f\u0280\u1d00\u1d1b\u1d07 \u0280\u1d07\u1d04\u0280\u1d1c\u026a\u1d1b\u1d07\u0280. - \u0299\u029f\u1d1c\u1d07 \u1d05\u1d0f\u1d1b \u1d21\u1d07\u1d00\u0280\u026a\u0274\u0262 - \u1d00 \u1d1b\u1d00\u0274 \ua731\u1d1c\u026a\u1d1b \u1d0f\u0274 \u1d1b\u029c\u1d07 - \u0280\u1d07\u1d05\u0274\u1d07\u1d04\u1d0b \u0280\u026a\u1d20\u026a\u1d07\u0280\u1d00. - \u028f\u1d0f\u1d1c\u0280\/\u028f\u1d0f\u1d1c''\u0280\u1d07.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3455,"friends_count":3569,"listed_count":0,"created_at":"Fri - Mar 23 21:23:57 +0000 2012","favourites_count":13611,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4427,"lang":null,"status":{"created_at":"Sat - Mar 26 00:53:43 +0000 2022","id":1507521143749726212,"id_str":"1507521143749726212","text":"@JoJoFromJerz - You forgot don''t ask \"when are you expecting?\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoJoFromJerz","name":"Jo - \ud83c\udf3b","id":818893114979061761,"id_str":"818893114979061761","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507519124724981762,"in_reply_to_status_id_str":"1507519124724981762","in_reply_to_user_id":818893114979061761,"in_reply_to_user_id_str":"818893114979061761","in_reply_to_screen_name":"JoJoFromJerz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455230709191397376\/LCTkd9yR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455230709191397376\/LCTkd9yR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/534815097\/1644372347","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294381177101590530,"id_str":"1294381177101590530","name":"Mary - Anne","screen_name":"DeveauAnne2","location":"Connecticut, USA","description":"Former - Social Worker. Owner of pet sitting service. Mother, wife, animal lover. \ud83d\udc36\ud83d\udc30\ud83d\udc31. - Democratic Socialist. No DM\u2019s please.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":324,"listed_count":0,"created_at":"Fri - Aug 14 21:11:48 +0000 2020","favourites_count":6273,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"status":{"created_at":"Wed - Dec 15 16:41:06 +0000 2021","id":1471158384020066305,"id_str":"1471158384020066305","text":"@QuoteDigging - @SykesCharlie This is so true. I\u2019ve been saying it for years. With the - \u201cdumbing down of America\u201d, it\u2026 https:\/\/t.co\/E1UVCujGIe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QuoteDigging","name":"QuoteDigger","id":1300982078318624769,"id_str":"1300982078318624769","indices":[0,13]},{"screen_name":"SykesCharlie","name":"Charlie - Sykes","id":95463107,"id_str":"95463107","indices":[14,27]}],"urls":[{"url":"https:\/\/t.co\/E1UVCujGIe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471158384020066305","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470748987128827910,"in_reply_to_status_id_str":"1470748987128827910","in_reply_to_user_id":1300982078318624769,"in_reply_to_user_id_str":"1300982078318624769","in_reply_to_screen_name":"QuoteDigging","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1330361789125693440\/A_LjJ-Mw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1330361789125693440\/A_LjJ-Mw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294381177101590530\/1606018049","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54853186,"id_str":"54853186","name":"Tara - Dively","screen_name":"tdively29","location":"Selinsgrove, PA","description":"Marriage - and family therapist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":172,"friends_count":737,"listed_count":0,"created_at":"Wed - Jul 08 09:59:19 +0000 2009","favourites_count":4415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":641,"lang":null,"status":{"created_at":"Mon - Nov 08 20:22:01 +0000 2021","id":1457805631486939141,"id_str":"1457805631486939141","text":"@tonyposnanski - I am 100% with you here. My husband always suggests we watch it and I\u2019m - like noooooooo please noooooo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1457723365918187532,"in_reply_to_status_id_str":"1457723365918187532","in_reply_to_user_id":17642747,"in_reply_to_user_id_str":"17642747","in_reply_to_screen_name":"tonyposnanski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1363311687777079301\/oEWGZgwu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1363311687777079301\/oEWGZgwu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54853186\/1444610655","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1155336907,"id_str":"1155336907","name":"Cynthia - Stern","screen_name":"Cynthia_Stern","location":"","description":"Managing - Director, State Advocacy for Eris Group.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":122,"friends_count":461,"listed_count":1,"created_at":"Wed - Feb 06 22:50:46 +0000 2013","favourites_count":39789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":297,"lang":null,"status":{"created_at":"Wed - Oct 13 22:46:58 +0000 2021","id":1448420024444727300,"id_str":"1448420024444727300","text":"@jeff_guimond - So sorry, Gooey! May his memory always be a blessing in your life","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeff_guimond","name":"Jeff - Guimond","id":913445648539815936,"id_str":"913445648539815936","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1448416307892862976,"in_reply_to_status_id_str":"1448416307892862976","in_reply_to_user_id":913445648539815936,"in_reply_to_user_id_str":"913445648539815936","in_reply_to_screen_name":"jeff_guimond","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3217861062\/895a501db997f15dda624759a84c9b3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3217861062\/895a501db997f15dda624759a84c9b3b_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30318157,"id_str":"30318157","name":"Scott - Henry","screen_name":"ScottDHenry","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":597,"listed_count":1,"created_at":"Fri - Apr 10 21:31:09 +0000 2009","favourites_count":231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Fri - Mar 18 19:03:57 +0000 2022","id":1504896406674415627,"id_str":"1504896406674415627","text":"@christine_benz - If investors plan to use the bonds to provide retirement income in a specific - time period, would th\u2026 https:\/\/t.co\/gJN4CyDIMS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"christine_benz","name":"Christine - Benz","id":80646944,"id_str":"80646944","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/gJN4CyDIMS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504896406674415627","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504866159081844736,"in_reply_to_status_id_str":"1504866159081844736","in_reply_to_user_id":80646944,"in_reply_to_user_id_str":"80646944","in_reply_to_screen_name":"christine_benz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33792686,"id_str":"33792686","name":"Cortney - Weber","screen_name":"CortneyWeber","location":"Washington DC","description":"Mom - of two living in DC! Love running, reading, my kids and husband.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":428,"listed_count":1,"created_at":"Tue - Apr 21 03:22:19 +0000 2009","favourites_count":6950,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1313,"lang":null,"status":{"created_at":"Fri - Mar 25 04:57:44 +0000 2022","id":1507220163866898446,"id_str":"1507220163866898446","text":"RT - @AZATHLETICS: Thank you, @ArizonaMBB, for an unforgettable season.\n\nBear - Down. https:\/\/t.co\/OGOxlD8gKp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AZATHLETICS","name":"Arizona - Athletics","id":33601136,"id_str":"33601136","indices":[3,15]},{"screen_name":"ArizonaMBB","name":"Arizona - Basketball","id":1547374632,"id_str":"1547374632","indices":[28,39]}],"urls":[],"media":[{"id":1507213613462925312,"id_str":"1507213613462925312","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","url":"https:\/\/t.co\/OGOxlD8gKp","display_url":"pic.twitter.com\/OGOxlD8gKp","expanded_url":"https:\/\/twitter.com\/AZATHLETICS\/status\/1507213646472130560\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1366,"resize":"fit"}},"source_status_id":1507213646472130560,"source_status_id_str":"1507213646472130560","source_user_id":33601136,"source_user_id_str":"33601136"}]},"extended_entities":{"media":[{"id":1507213613462925312,"id_str":"1507213613462925312","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","url":"https:\/\/t.co\/OGOxlD8gKp","display_url":"pic.twitter.com\/OGOxlD8gKp","expanded_url":"https:\/\/twitter.com\/AZATHLETICS\/status\/1507213646472130560\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1366,"resize":"fit"}},"source_status_id":1507213646472130560,"source_status_id_str":"1507213646472130560","source_user_id":33601136,"source_user_id_str":"33601136"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:31:50 +0000 2022","id":1507213646472130560,"id_str":"1507213646472130560","text":"Thank - you, @ArizonaMBB, for an unforgettable season.\n\nBear Down. https:\/\/t.co\/OGOxlD8gKp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArizonaMBB","name":"Arizona - Basketball","id":1547374632,"id_str":"1547374632","indices":[11,22]}],"urls":[],"media":[{"id":1507213613462925312,"id_str":"1507213613462925312","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","url":"https:\/\/t.co\/OGOxlD8gKp","display_url":"pic.twitter.com\/OGOxlD8gKp","expanded_url":"https:\/\/twitter.com\/AZATHLETICS\/status\/1507213646472130560\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1366,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507213613462925312,"id_str":"1507213613462925312","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqyy78XMAAhKjg.jpg","url":"https:\/\/t.co\/OGOxlD8gKp","display_url":"pic.twitter.com\/OGOxlD8gKp","expanded_url":"https:\/\/twitter.com\/AZATHLETICS\/status\/1507213646472130560\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":2048,"h":1366,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":241,"favorite_count":2127,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":241,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1899930954\/twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1899930954\/twitter_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308328397559468033,"id_str":"1308328397559468033","name":"Ifamobarin - Lanre","screen_name":"ifamobarin","location":"Abuja, Nigeria","description":"I - will continue to say the thruth..and worship my God.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":1920,"listed_count":0,"created_at":"Tue - Sep 22 08:53:17 +0000 2020","favourites_count":15187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3737,"lang":null,"status":{"created_at":"Sun - Mar 20 05:20:37 +0000 2022","id":1505413983158915072,"id_str":"1505413983158915072","text":"RT - @spectatorindex: BREAKING: Ukrainian officials says Russian forces are regrouping - and preparing for a new offensive on Kyiv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spectatorindex","name":"The - Spectator Index","id":1626294277,"id_str":"1626294277","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 21:33:33 +0000 2022","id":1505296441157513216,"id_str":"1505296441157513216","text":"BREAKING: - Ukrainian officials says Russian forces are regrouping and preparing for a - new offensive on Kyiv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1484,"favorite_count":6662,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1484,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308328899659661312\/vTcbrSsY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308328899659661312\/vTcbrSsY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":799430981182771201,"id_str":"799430981182771201","name":"Sandy - Shirato","screen_name":"jmanmawmaw2019","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":400,"listed_count":0,"created_at":"Fri - Nov 18 01:56:13 +0000 2016","favourites_count":1826,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":71,"lang":null,"status":{"created_at":"Fri - Sep 24 22:52:08 +0000 2021","id":1441535953835757570,"id_str":"1441535953835757570","text":"RT - @thatgrapejuice: New Song: Kelly Clarkson \u2013 \u2018Christmas Isn\u2019t - Canceled (Just You)\u2019 https:\/\/t.co\/y49rNTRClA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thatgrapejuice","name":"ThatGrapeJuice - (Sam)","id":23779565,"id_str":"23779565","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/y49rNTRClA","expanded_url":"https:\/\/thatgrapejuice.net\/2021\/09\/new-song-kelly-clarkson-christmas-isnt-canceled-just-you\/","display_url":"thatgrapejuice.net\/2021\/09\/new-so\u2026","indices":[86,109]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 24 04:02:50 +0000 2021","id":1441251757846192139,"id_str":"1441251757846192139","text":"New - Song: Kelly Clarkson \u2013 \u2018Christmas Isn\u2019t Canceled (Just You)\u2019 - https:\/\/t.co\/y49rNTRClA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y49rNTRClA","expanded_url":"https:\/\/thatgrapejuice.net\/2021\/09\/new-song-kelly-clarkson-christmas-isnt-canceled-just-you\/","display_url":"thatgrapejuice.net\/2021\/09\/new-so\u2026","indices":[66,89]}]},"source":"\u003ca - href=\"http:\/\/thatgrapejuice.net\" rel=\"nofollow\"\u003eWPT3\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":73,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1028666539455782913,"id_str":"1028666539455782913","name":"Mea - Dandrea","screen_name":"dandrea_mea","location":"Illinois, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":229,"listed_count":0,"created_at":"Sun - Aug 12 15:36:29 +0000 2018","favourites_count":860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Sun - Nov 08 04:19:50 +0000 2020","id":1325291918641737728,"id_str":"1325291918641737728","text":"@kayleighmcenany - @realDonaldTrump Love this","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kayleighmcenany","name":"Kayleigh - McEnany","id":259001548,"id_str":"259001548","indices":[0,16]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[17,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325291765549641730,"in_reply_to_status_id_str":"1325291765549641730","in_reply_to_user_id":259001548,"in_reply_to_user_id_str":"259001548","in_reply_to_screen_name":"kayleighmcenany","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1028667240906940417\/4hBnC7Rx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1028667240906940417\/4hBnC7Rx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":249826946,"id_str":"249826946","name":"Bluebuttons66 - \ud83c\udf1e","screen_name":"00catbel","location":"MD\/USA","description":"I - love my dog, all animals, flowers, travel, art, and funny shit. Celebrities - who get involved with political issues should stfu \u270c\ud83c\udffbAll lives - matter \ud83d\udc99 \ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":519,"friends_count":1534,"listed_count":1,"created_at":"Wed - Feb 09 21:30:24 +0000 2011","favourites_count":183609,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9307,"lang":null,"status":{"created_at":"Sat - Mar 26 00:14:16 +0000 2022","id":1507511214129131523,"id_str":"1507511214129131523","text":"Girl - you guilty af https:\/\/t.co\/ffWkc952LA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ffWkc952LA","expanded_url":"https:\/\/twitter.com\/leeosanderlin\/status\/1507498524061089801","display_url":"twitter.com\/leeosanderlin\/\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507498524061089801,"quoted_status_id_str":"1507498524061089801","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491585861728751620\/7yJ7SOZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491585861728751620\/7yJ7SOZp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249826946\/1644456809","profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":394405035,"id_str":"394405035","name":"la","screen_name":"deziner10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":457,"listed_count":0,"created_at":"Thu - Oct 20 01:07:01 +0000 2011","favourites_count":924,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":671,"lang":null,"status":{"created_at":"Fri - Mar 25 22:43:00 +0000 2022","id":1507488247701774340,"id_str":"1507488247701774340","text":"@VoteBlue27 - @JoeBiden @POTUS Biden is the most divisive,lying , bigoted,homophobic,racist - (proof all over in videos\u2026 https:\/\/t.co\/SdDlQsXKW7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VoteBlue27","name":"\ud83d\udd4aNadia - (Posillipo,Napoli,Italy\ud83c\uddee\ud83c\uddf9\ud83c\uddfa\ud83c\uddf8vote - blue\ud83d\udd4a","id":1277727358062145569,"id_str":"1277727358062145569","indices":[0,11]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[12,21]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[22,28]}],"urls":[{"url":"https:\/\/t.co\/SdDlQsXKW7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507488247701774340","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507189401788502019,"in_reply_to_status_id_str":"1507189401788502019","in_reply_to_user_id":1277727358062145569,"in_reply_to_user_id_str":"1277727358062145569","in_reply_to_screen_name":"VoteBlue27","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488059335969636352\/CMgM8Li9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488059335969636352\/CMgM8Li9_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":244167337,"id_str":"244167337","name":"Terry - Smith","screen_name":"Editterry1","location":"Athens, Ohio","description":"Longtime - (April 1986 to May 2020) editor of The Athens News in Athens, Ohio, home of - Ohio University. Editor\/writer for hire.","url":"http:\/\/t.co\/GKj0h0Hn2c","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GKj0h0Hn2c","expanded_url":"http:\/\/www.athensnews.com","display_url":"athensnews.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":458,"friends_count":839,"listed_count":15,"created_at":"Fri - Jan 28 17:27:32 +0000 2011","favourites_count":6160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":670,"lang":null,"status":{"created_at":"Thu - Mar 24 03:12:23 +0000 2022","id":1506831265391071233,"id_str":"1506831265391071233","text":"@MorganTrau - @DC_DeWitt @WEWS So dumb and wrong.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MorganTrau","name":"Morgan - Trau","id":796352362566873088,"id_str":"796352362566873088","indices":[0,11]},{"screen_name":"DC_DeWitt","name":"David - DeWitt","id":285676185,"id_str":"285676185","indices":[12,22]},{"screen_name":"WEWS","name":"News - 5 Cleveland","id":16637204,"id_str":"16637204","indices":[23,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506769501253259270,"in_reply_to_status_id_str":"1506769501253259270","in_reply_to_user_id":796352362566873088,"in_reply_to_user_id_str":"796352362566873088","in_reply_to_screen_name":"MorganTrau","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192820020700745728\/pfbf0QfH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192820020700745728\/pfbf0QfH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244167337\/1495477356","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108597721680637952,"id_str":"1108597721680637952","name":"abcd","screen_name":"jdeliman8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":192,"listed_count":0,"created_at":"Thu - Mar 21 05:14:28 +0000 2019","favourites_count":8931,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":161,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468227761500213272\/xcEMaxHa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468227761500213272\/xcEMaxHa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108597721680637952\/1638887750","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2318957612,"id_str":"2318957612","name":"Neal - Brown","screen_name":"NealBrown14","location":"","description":"Red Sox fan, - Center left politics, former SAMHSA\/NIMH","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":540,"listed_count":0,"created_at":"Thu - Jan 30 14:04:03 +0000 2014","favourites_count":478,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":282,"lang":null,"status":{"created_at":"Wed - Mar 23 19:45:38 +0000 2022","id":1506718837051478030,"id_str":"1506718837051478030","text":"@HPSupport - [TYPE YOUR QUESTION HERE] #hppsdr #ijchelp I used Services Doctor but I still - can''t print. My laptop sa\u2026 https:\/\/t.co\/HKLYDiI7ef","truncated":true,"entities":{"hashtags":[{"text":"hppsdr","indices":[37,44]},{"text":"ijchelp","indices":[45,53]}],"symbols":[],"user_mentions":[{"screen_name":"HPSupport","name":"HP - Support","id":22991317,"id_str":"22991317","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/HKLYDiI7ef","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506718837051478030","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":22991317,"in_reply_to_user_id_str":"22991317","in_reply_to_screen_name":"HPSupport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/714958314984062976\/YHzQNg-__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/714958314984062976\/YHzQNg-__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2318957612\/1448051170","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":492589908,"id_str":"492589908","name":"Michael - Nolan","screen_name":"mjnolan4827","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":325,"listed_count":0,"created_at":"Tue - Feb 14 22:06:56 +0000 2012","favourites_count":142,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Oct 30 23:17:01 +0000 2020","id":1322316609772523525,"id_str":"1322316609772523525","text":"@NHL - My dad. And Bobby Orr.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NHL","name":"NHL","id":50004938,"id_str":"50004938","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1322253201874276352,"in_reply_to_status_id_str":"1322253201874276352","in_reply_to_user_id":50004938,"in_reply_to_user_id_str":"50004938","in_reply_to_screen_name":"NHL","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":220765205,"id_str":"220765205","name":"Ercan - Demir","screen_name":"ercandemir2010","location":"","description":"Correspondent-RTs - are not endorsements. News. Sports. TV. Life. Washington DC. TripleXTRT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3042,"friends_count":5002,"listed_count":118,"created_at":"Sun - Nov 28 19:31:59 +0000 2010","favourites_count":883,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":131999,"lang":null,"status":{"created_at":"Sat - Mar 26 10:07:52 +0000 2022","id":1507660599806898176,"id_str":"1507660599806898176","text":"RT - @AlbayDt: Yar\u0131m saattir g\u00fcl\u00fcyorum ya a\u015f\u0131r\u0131 ba\u015far\u0131l\u0131\ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01 - https:\/\/t.co\/iZqTD80HYb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlbayDt","name":"Dt.Albay\ud83e\uddb7","id":1058549254870966272,"id_str":"1058549254870966272","indices":[3,11]}],"urls":[],"media":[{"id":1507047660661968903,"id_str":"1507047660661968903","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","url":"https:\/\/t.co\/iZqTD80HYb","display_url":"pic.twitter.com\/iZqTD80HYb","expanded_url":"https:\/\/twitter.com\/AlbayDt\/status\/1507048013566554112\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"source_status_id":1507048013566554112,"source_status_id_str":"1507048013566554112","source_user_id":1058549254870966272,"source_user_id_str":"1058549254870966272"}]},"extended_entities":{"media":[{"id":1507047660661968903,"id_str":"1507047660661968903","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","url":"https:\/\/t.co\/iZqTD80HYb","display_url":"pic.twitter.com\/iZqTD80HYb","expanded_url":"https:\/\/twitter.com\/AlbayDt\/status\/1507048013566554112\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"source_status_id":1507048013566554112,"source_status_id_str":"1507048013566554112","source_user_id":1058549254870966272,"source_user_id_str":"1058549254870966272","video_info":{"aspect_ratio":[1,1],"duration_millis":100033,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/pl\/UpAE-FfhUVzAUTOX.m3u8?tag=12&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/640x640\/442NQ5_h0izKHaQk.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/320x320\/rCrt8sK7V_7gfkpB.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/540x540\/FjIKAIAnqatqFo4f.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:33:40 +0000 2022","id":1507048013566554112,"id_str":"1507048013566554112","text":"Yar\u0131m - saattir g\u00fcl\u00fcyorum ya a\u015f\u0131r\u0131 ba\u015far\u0131l\u0131\ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01 - https:\/\/t.co\/iZqTD80HYb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507047660661968903,"id_str":"1507047660661968903","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","url":"https:\/\/t.co\/iZqTD80HYb","display_url":"pic.twitter.com\/iZqTD80HYb","expanded_url":"https:\/\/twitter.com\/AlbayDt\/status\/1507048013566554112\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507047660661968903,"id_str":"1507047660661968903","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507047660661968903\/pu\/img\/BQ53PEFAAdjyeB76.jpg","url":"https:\/\/t.co\/iZqTD80HYb","display_url":"pic.twitter.com\/iZqTD80HYb","expanded_url":"https:\/\/twitter.com\/AlbayDt\/status\/1507048013566554112\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":100033,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/pl\/UpAE-FfhUVzAUTOX.m3u8?tag=12&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/640x640\/442NQ5_h0izKHaQk.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/320x320\/rCrt8sK7V_7gfkpB.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507047660661968903\/pu\/vid\/540x540\/FjIKAIAnqatqFo4f.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":617,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":60,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1831654881\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1831654881\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2749879379,"id_str":"2749879379","name":"Abbas - Ruham","screen_name":"RuhamAbbas","location":"Afghanistan","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":795,"listed_count":0,"created_at":"Fri - Aug 22 02:09:04 +0000 2014","favourites_count":5013,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Mon - Mar 21 00:46:54 +0000 2022","id":1505707489932677120,"id_str":"1505707489932677120","text":"\u0647\u0631 - \u0631\u0648\u0632\u062a\u0627\u0646 \u0646\u0648\u0631\u0648\u0632\u060c - \u0646\u0648\u0631\u0648\u0632\u062a\u0627\u0646 \u067e\u06cc\u0631\u0648\u0632.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/830036600268668928\/5W7yx3nh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/830036600268668928\/5W7yx3nh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2749879379\/1486731031","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":709406138496786432,"id_str":"709406138496786432","name":"I - Write Therefore I am","screen_name":"FaganWrites","location":"Tucson, AZ","description":"Ghostwriter. - Web Content. #WritingCommunity Medium https:\/\/t.co\/cF4uE7A5Cb","url":"https:\/\/t.co\/HcUvTpIzvj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HcUvTpIzvj","expanded_url":"http:\/\/www.shellyfagan.com","display_url":"shellyfagan.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/cF4uE7A5Cb","expanded_url":"http:\/\/medium.com\/@shellyfaganaz","display_url":"medium.com\/@shellyfaganaz","indices":[51,74]}]}},"protected":false,"followers_count":8985,"friends_count":8847,"listed_count":53,"created_at":"Mon - Mar 14 15:49:38 +0000 2016","favourites_count":23690,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17075,"lang":null,"status":{"created_at":"Wed - Mar 23 19:26:45 +0000 2022","id":1506714082472173572,"id_str":"1506714082472173572","text":"We - need a law that every home appliance needs a way to turn off that annoying - blue light.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313691519807680512\/cOJOKORt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313691519807680512\/cOJOKORt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709406138496786432\/1561159344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":129846189,"id_str":"129846189","name":"shailen","screen_name":"shaillen","location":"New - Delhi,India","description":"karmic cola..... keep the faith.........","url":"http:\/\/t.co\/Mhe8UMwvHS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Mhe8UMwvHS","expanded_url":"http:\/\/www.facebook.com","display_url":"facebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":115,"listed_count":0,"created_at":"Mon - Apr 05 15:57:00 +0000 2010","favourites_count":421,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1138,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3179397782\/8e24cd692a0aee0faaa77d342498ed16_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3179397782\/8e24cd692a0aee0faaa77d342498ed16_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129846189\/1359468619","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":426795888,"id_str":"426795888","name":"Amanda - Gerut","screen_name":"AgendaGerut","location":"","description":"Reporting - on succession planning and talent development, board composition and recruiting - and director pay.","url":"http:\/\/t.co\/htCZgKWO26","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/htCZgKWO26","expanded_url":"http:\/\/www.agendaweek.com","display_url":"agendaweek.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":652,"friends_count":1823,"listed_count":31,"created_at":"Fri - Dec 02 18:14:36 +0000 2011","favourites_count":405,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":333,"lang":null,"status":{"created_at":"Thu - Mar 04 18:43:48 +0000 2021","id":1367546335981752321,"id_str":"1367546335981752321","text":"https:\/\/t.co\/dOCdGdHSIp - | SEC Announces Enforcement Task Force Focused on Climate and ESG Issues\u2026 - https:\/\/t.co\/bHYFTaqQ4W","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dOCdGdHSIp","expanded_url":"http:\/\/SEC.gov","display_url":"SEC.gov","indices":[0,23]},{"url":"https:\/\/t.co\/bHYFTaqQ4W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1367546335981752321","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1052319491881754630\/b82ivGMk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1052319491881754630\/b82ivGMk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426795888\/1468358393","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":210880136,"id_str":"210880136","name":"vivannawright","screen_name":"vivannawright","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":2185,"listed_count":8,"created_at":"Mon - Nov 01 17:30:27 +0000 2010","favourites_count":9499,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13754,"lang":null,"status":{"created_at":"Wed - Mar 23 22:35:13 +0000 2022","id":1506761513230651395,"id_str":"1506761513230651395","text":"RT - @LeslieMac: \u201cI must admit that I don''t really have a justice I\u2019ve - molded myself after or that I would. What I have is a record.\u201d - Judge\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeslieMac","name":"Leslie - Mac","id":14235543,"id_str":"14235543","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:33:41 +0000 2022","id":1506730927694794767,"id_str":"1506730927694794767","text":"\u201cI - must admit that I don''t really have a justice I\u2019ve molded myself after - or that I would. What I have is a record.\u2026 https:\/\/t.co\/rdug9Shw9t","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rdug9Shw9t","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506730927694794767","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":238,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":319448474,"id_str":"319448474","name":"Trish - Hill","screen_name":"jjs_mommy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":756,"listed_count":0,"created_at":"Sat - Jun 18 04:06:25 +0000 2011","favourites_count":6526,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7031,"lang":null,"status":{"created_at":"Fri - Mar 11 04:25:21 +0000 2022","id":1502138582642970625,"id_str":"1502138582642970625","text":"RT - @kenolin1: Here\u2019s an idea:\nImplant embryos in the urethras of all the - men who support this bill and then see how popular it is.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kenolin1","name":"Ken - Olin","id":164679813,"id_str":"164679813","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 11 04:15:31 +0000 2022","id":1502136109077123078,"id_str":"1502136109077123078","text":"Here\u2019s - an idea:\nImplant embryos in the urethras of all the men who support this - bill and then see how popular it is. https:\/\/t.co\/muswizECWp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/muswizECWp","expanded_url":"https:\/\/twitter.com\/byKateSmith\/status\/1502015734871904264","display_url":"twitter.com\/byKateSmith\/st\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502015734871904264,"quoted_status_id_str":"1502015734871904264","retweet_count":399,"favorite_count":1750,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1502015734871904264,"quoted_status_id_str":"1502015734871904264","retweet_count":399,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2105401017\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2105401017\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1152376195088048128,"id_str":"1152376195088048128","name":"momo","screen_name":"momobean18","location":"","description":"\ud83d\udc9c - Life is a beautiful struggle \ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":353,"listed_count":0,"created_at":"Sat - Jul 20 00:34:29 +0000 2019","favourites_count":2050,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":706,"lang":null,"status":{"created_at":"Tue - Nov 24 03:07:18 +0000 2020","id":1331071867814350851,"id_str":"1331071867814350851","text":"@kathygriffin - @realDonaldTrump Fuck you, you ABSOLUTELY UGLY DISGUSTING, VILE MAGGOT!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kathygriffin","name":"Kathy - Griffin","id":21148293,"id_str":"21148293","indices":[0,13]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[14,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1331065495156506624,"in_reply_to_status_id_str":"1331065495156506624","in_reply_to_user_id":21148293,"in_reply_to_user_id_str":"21148293","in_reply_to_screen_name":"kathygriffin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325992534397620226\/jFtdkcnD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325992534397620226\/jFtdkcnD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3237981388,"id_str":"3237981388","name":"Melissa - Tenorio-Waynewood","screen_name":"MelissaT2676","location":"Lafayette, IN","description":"Proud - Liberal!!!!!!\n#Resist\n#TimesUp\n#NoMore\n#MeToo\n#BlueWave","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":1405,"listed_count":1,"created_at":"Wed - May 06 03:39:20 +0000 2015","favourites_count":15113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7297,"lang":null,"status":{"created_at":"Fri - Mar 11 23:10:31 +0000 2022","id":1502421741578113026,"id_str":"1502421741578113026","text":"#MarryMe - is my new favorite movie!!!","truncated":false,"entities":{"hashtags":[{"text":"MarryMe","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126308638245543936\/dOBdCUgu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126308638245543936\/dOBdCUgu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237981388\/1446432560","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":385787522,"id_str":"385787522","name":"\u2022JK\u2022","screen_name":"OfficialJohnKim","location":"New - York, USA","description":"@OfficialJohnKim - OFFICIAL TWITTER ACCOUNT OF JOHN - KIM - email all business inquiries","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":648,"listed_count":0,"created_at":"Thu - Oct 06 03:54:10 +0000 2011","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265031647273062402\/8O3_YpC5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265031647273062402\/8O3_YpC5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385787522\/1572477712","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3927659722,"id_str":"3927659722","name":"Allyson","screen_name":"MallysonD","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":330,"friends_count":4271,"listed_count":8,"created_at":"Sun - Oct 11 12:19:27 +0000 2015","favourites_count":27927,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17360,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:31 +0000 2022","id":1507552045288546306,"id_str":"1507552045288546306","text":"RT - @AntiquityJ: Archaeologists working to restore Paris\u2019s fire-damaged Notre - Dame cathedral have discovered something remarkable: previousl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AntiquityJ","name":"\ud83c\udd70ntiquity - Journal","id":759068652,"id_str":"759068652","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:30:03 +0000 2022","id":1507469886964264962,"id_str":"1507469886964264962","text":"Archaeologists - working to restore Paris\u2019s fire-damaged Notre Dame cathedral have discovered - something remarkable: p\u2026 https:\/\/t.co\/qPDUtYG8yH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qPDUtYG8yH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507469886964264962","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":188,"favorite_count":777,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":188,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/746858157511745542\/liLuPaee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/746858157511745542\/liLuPaee_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261857059282305024,"id_str":"1261857059282305024","name":"C - Skinner","screen_name":"CSkinne18811510","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":73,"listed_count":0,"created_at":"Sun - May 17 03:12:49 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":77903583,"id_str":"77903583","name":"YADIRA - MARCANO","screen_name":"YAHRIMARC","location":"Boston, MA","description":"Entrepreneur - \/ Entertainer I''ve been into music since 10, I''m a Song Writer From R&B - to HIP HOP and RAP Looking to Network .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":380,"friends_count":2659,"listed_count":8,"created_at":"Mon - Sep 28 02:39:53 +0000 2009","favourites_count":2700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1349,"lang":null,"status":{"created_at":"Thu - Mar 24 17:57:31 +0000 2022","id":1507054015334526978,"id_str":"1507054015334526978","text":"Hey @FINALLEVEL - look what I have it\u2019s an honor to even have this box my favorite person - blessings to you and the f\u2026 https:\/\/t.co\/dx8mcX5gi5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FINALLEVEL","name":"ICE - T","id":28420827,"id_str":"28420827","indices":[5,16]}],"urls":[{"url":"https:\/\/t.co\/dx8mcX5gi5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507054015334526978","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490126745265131529\/PdW67CD8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490126745265131529\/PdW67CD8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77903583\/1644108876","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":143901117,"id_str":"143901117","name":"Alex - Robinson","screen_name":"AlexRob22","location":"New York","description":"Mortgage - Broker","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":809,"listed_count":0,"created_at":"Fri - May 14 18:52:39 +0000 2010","favourites_count":5131,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501525139087831040\/8oMeqLrA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501525139087831040\/8oMeqLrA_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3164308026,"id_str":"3164308026","name":"Carmen - R. Rivera","screen_name":"moralesrosapr","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":122,"friends_count":1026,"listed_count":0,"created_at":"Sun - Apr 19 17:59:17 +0000 2015","favourites_count":33187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60336,"lang":null,"status":{"created_at":"Fri - Mar 25 23:34:06 +0000 2022","id":1507501107009900546,"id_str":"1507501107009900546","text":"RT - @mariluguzmansj: 3.1 millones de $$ deveng\u00f3 Natalie Jaresko como directora - de la JCF, sin los beneficios marginales adicionales anuales.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mariluguzmansj","name":"Maril\u00fa - Guzm\u00e1n","id":815559953377333248,"id_str":"815559953377333248","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:39:20 +0000 2022","id":1507472225632407553,"id_str":"1507472225632407553","text":"3.1 - millones de $$ deveng\u00f3 Natalie Jaresko como directora de la JCF, sin - los beneficios marginales adicionales anua\u2026 https:\/\/t.co\/Ec4x47ue8j","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ec4x47ue8j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507472225632407553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":149,"favorited":false,"retweeted":false,"lang":"es"},"is_quote_status":false,"retweet_count":33,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252127789752307712\/jW_WASwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252127789752307712\/jW_WASwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164308026\/1587365505","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2326978244,"id_str":"2326978244","name":"Susan - Wilson","screen_name":"suzieroserun","location":"","description":"Former staffer - MO House of Reps, Mother of 4, runner","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":184,"listed_count":1,"created_at":"Tue - Feb 04 11:45:28 +0000 2014","favourites_count":58663,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4335,"lang":null,"status":{"created_at":"Fri - Mar 25 08:08:55 +0000 2022","id":1507268274563829761,"id_str":"1507268274563829761","text":"RT - @ConnieSchultz: In stark contrast: Jane Sullivan Roberts, wife of Chief Justice - Roberts, sat next to me in the Senate gallery for a port\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ConnieSchultz","name":"Connie - Schultz","id":20715936,"id_str":"20715936","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:17:16 +0000 2022","id":1507119383902052352,"id_str":"1507119383902052352","text":"In - stark contrast: Jane Sullivan Roberts, wife of Chief Justice Roberts, sat - next to me in the Senate gallery for a\u2026 https:\/\/t.co\/a6JYNN0GfX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a6JYNN0GfX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507119383902052352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507108989192048654,"quoted_status_id_str":"1507108989192048654","retweet_count":5984,"favorite_count":30477,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507108989192048654,"quoted_status_id_str":"1507108989192048654","retweet_count":5984,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/729241670860963840\/jvD4wufy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/729241670860963840\/jvD4wufy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2326978244\/1462356155","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304207851842408449,"id_str":"1304207851842408449","name":"Simple - Man","screen_name":"brianpacks","location":"Houston, TX","description":"Texas - born and raised. Mess with the bull, you get the horns.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":283,"listed_count":0,"created_at":"Thu - Sep 10 23:59:34 +0000 2020","favourites_count":2415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456786380625940484\/oIm-tlMt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456786380625940484\/oIm-tlMt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":144268154,"id_str":"144268154","name":"Dr. - Paula Decker, BA, MSW, Ed. D.","screen_name":"paulacdecker","location":"Hartland, - WI","description":"Social justice commentator & lover of wit; respects leaders - and followers who value decency, congruency, integrity and intelligence.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":514,"listed_count":2,"created_at":"Sat - May 15 20:04:32 +0000 2010","favourites_count":6871,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2138,"lang":null,"status":{"created_at":"Wed - Mar 23 20:07:04 +0000 2022","id":1506724229512892428,"id_str":"1506724229512892428","text":"@mdnij34 - Congressional Republicans are giving Judge Ketanji Brown a hard time because - a Democratic President nomina\u2026 https:\/\/t.co\/y2LfnOABDI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mdnij34","name":"Political - Poet","id":558180233,"id_str":"558180233","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/y2LfnOABDI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506724229512892428","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506051128395538438,"in_reply_to_status_id_str":"1506051128395538438","in_reply_to_user_id":558180233,"in_reply_to_user_id_str":"558180233","in_reply_to_screen_name":"mdnij34","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/975512491085180934\/ficYxl16_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/975512491085180934\/ficYxl16_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":379447086,"id_str":"379447086","name":"Sheena - Nancy Sarles","screen_name":"SheenaGYG","location":"Marblehead","description":"Embracing - wellbeing at every age! Yoga \u00b7 Retreats \u00b7 Reiki \u00b7 GYG Organic - Serum \u00b7 Coaching \u00b7 Yoga for Living with Loss \u00b7 Author","url":"https:\/\/t.co\/FVAaOCMjOb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FVAaOCMjOb","expanded_url":"http:\/\/www.growingyoungergracefully.com","display_url":"growingyoungergracefully.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":326,"listed_count":0,"created_at":"Sun - Sep 25 00:13:58 +0000 2011","favourites_count":506,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Fri - Mar 04 03:18:08 +0000 2022","id":1499584951905406978,"id_str":"1499584951905406978","text":"@glamvicar - A beautiful being. I\u2019m so sorry for your loss. I also know this stabbing - heartache of grief. I invite y\u2026 https:\/\/t.co\/0A0D32mKwM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"glamvicar","name":"sharon - g-t","id":230706387,"id_str":"230706387","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/0A0D32mKwM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499584951905406978","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1499297036432248833,"in_reply_to_status_id_str":"1499297036432248833","in_reply_to_user_id":230706387,"in_reply_to_user_id_str":"230706387","in_reply_to_screen_name":"glamvicar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643187023168192512\/j-SKUIG__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643187023168192512\/j-SKUIG__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2548216968,"id_str":"2548216968","name":"Helen - Mao","screen_name":"majoc100","location":"Ottawa, Ontario","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":299,"listed_count":0,"created_at":"Thu - Jun 05 14:27:18 +0000 2014","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Aug 20 01:19:06 +0000 2017","id":899078304912855040,"id_str":"899078304912855040","text":"RT - @PsychologyDoc: Man plants a tree in the same place every day \u2014 37 years - later, the world is amazed by the result https:\/\/t.co\/hFOdLw827r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PsychologyDoc","name":"\u03a8","id":866102366,"id_str":"866102366","indices":[3,17]}],"urls":[],"media":[{"id":898284583736803331,"id_str":"898284583736803331","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","url":"https:\/\/t.co\/hFOdLw827r","display_url":"pic.twitter.com\/hFOdLw827r","expanded_url":"https:\/\/twitter.com\/PsychologyDoc\/status\/898284681799520256\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":940,"h":940,"resize":"fit"},"large":{"w":940,"h":940,"resize":"fit"}},"source_status_id":898284681799520256,"source_status_id_str":"898284681799520256","source_user_id":866102366,"source_user_id_str":"866102366"}]},"extended_entities":{"media":[{"id":898284583736803331,"id_str":"898284583736803331","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","url":"https:\/\/t.co\/hFOdLw827r","display_url":"pic.twitter.com\/hFOdLw827r","expanded_url":"https:\/\/twitter.com\/PsychologyDoc\/status\/898284681799520256\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":940,"h":940,"resize":"fit"},"large":{"w":940,"h":940,"resize":"fit"}},"source_status_id":898284681799520256,"source_status_id_str":"898284681799520256","source_user_id":866102366,"source_user_id_str":"866102366","video_info":{"aspect_ratio":[1,1],"duration_millis":83490,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/pl\/Pea0kW8Db-EIZoJd.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/480x480\/JLLFbRzvd32mh065.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/720x720\/xduNnwfKAmyZvhq4.mp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/240x240\/v-5V0DObXxTHYBqY.mp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Aug 17 20:45:32 +0000 2017","id":898284681799520256,"id_str":"898284681799520256","text":"Man - plants a tree in the same place every day \u2014 37 years later, the world - is amazed by the result https:\/\/t.co\/hFOdLw827r","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":898284583736803331,"id_str":"898284583736803331","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","url":"https:\/\/t.co\/hFOdLw827r","display_url":"pic.twitter.com\/hFOdLw827r","expanded_url":"https:\/\/twitter.com\/PsychologyDoc\/status\/898284681799520256\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":940,"h":940,"resize":"fit"},"large":{"w":940,"h":940,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":898284583736803331,"id_str":"898284583736803331","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/898284583736803331\/pu\/img\/dAJce9t0PHi3DlNq.jpg","url":"https:\/\/t.co\/hFOdLw827r","display_url":"pic.twitter.com\/hFOdLw827r","expanded_url":"https:\/\/twitter.com\/PsychologyDoc\/status\/898284681799520256\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":940,"h":940,"resize":"fit"},"large":{"w":940,"h":940,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":83490,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/pl\/Pea0kW8Db-EIZoJd.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/480x480\/JLLFbRzvd32mh065.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/720x720\/xduNnwfKAmyZvhq4.mp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/898284583736803331\/pu\/vid\/240x240\/v-5V0DObXxTHYBqY.mp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170656,"favorite_count":284392,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":170656,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397955057979637763\/jJhswaLe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397955057979637763\/jJhswaLe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261124183997558785,"id_str":"1261124183997558785","name":"cheeseburger - essential oils","screen_name":"cheeseburgeres1","location":"","description":"Brand - Consulting and Art Direction \u201cStay hungry. Stay foolish.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":122,"friends_count":4072,"listed_count":5,"created_at":"Fri - May 15 02:40:31 +0000 2020","favourites_count":7236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1253,"lang":null,"status":{"created_at":"Fri - Dec 24 01:10:59 +0000 2021","id":1474185804817879040,"id_str":"1474185804817879040","text":"RT - @Kyla_Lacey: Maskless people in Trader Joe\u2019s\u2026 we don\u2019t do that - here, this is a sacred place, take that shit to Walmart","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kyla_Lacey","name":"Hello - Kitty Litter Box of Wine","id":1230645562917236737,"id_str":"1230645562917236737","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 18:01:16 +0000 2021","id":1474077662394077189,"id_str":"1474077662394077189","text":"Maskless - people in Trader Joe\u2019s\u2026 we don\u2019t do that here, this is a sacred - place, take that shit to Walmart","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":505,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":51,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385362040722796551\/QnDVtyVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385362040722796551\/QnDVtyVH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261124183997558785\/1609273550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180465636155252736,"id_str":"1180465636155252736","name":"rosemary","screen_name":"rosemar60343952","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":40,"listed_count":0,"created_at":"Sat - Oct 05 12:52:52 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Aug 09 23:27:06 +0000 2020","id":1292603341789376517,"id_str":"1292603341789376517","text":"RT - @BBCNews: Monday''s Daily Mail\n\u201cUniversity places in peril amid exam - chaos\u201d\u00a0\n\n#tomorrowspaperstoday\n#bbcpapers\n(via @hendopolis) - https:\/\/\u2026","truncated":false,"entities":{"hashtags":[{"text":"tomorrowspaperstoday","indices":[80,101]},{"text":"bbcpapers","indices":[102,112]}],"symbols":[],"user_mentions":[{"screen_name":"BBCNews","name":"BBC - News (UK)","id":612473,"id_str":"612473","indices":[3,11]},{"screen_name":"hendopolis","name":"Neil - Henderson","id":16692859,"id_str":"16692859","indices":[118,129]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 09 21:17:10 +0000 2020","id":1292570640050987008,"id_str":"1292570640050987008","text":"Monday''s - Daily Mail\n\u201cUniversity places in peril amid exam chaos\u201d\u00a0\n\n#tomorrowspaperstoday\n#bbcpapers\n(via\u2026 - https:\/\/t.co\/N8O5eOLM32","truncated":true,"entities":{"hashtags":[{"text":"tomorrowspaperstoday","indices":[67,88]},{"text":"bbcpapers","indices":[89,99]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/N8O5eOLM32","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1292570640050987008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":50,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":945690532495343616,"id_str":"945690532495343616","name":"mika","screen_name":"mikanakamura8","location":"In - a galaxy far , far away ...","description":"@mikaloveluke","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":415,"listed_count":0,"created_at":"Tue - Dec 26 16:19:27 +0000 2017","favourites_count":15449,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4939,"lang":null,"status":{"created_at":"Wed - Mar 23 01:15:09 +0000 2022","id":1506439371909910537,"id_str":"1506439371909910537","text":"RT - @Malcolm_theCat: Friends! BAD NEWS! Since Christmas, Mr Carrot has been IN - HIDING to prevent Baby Dog from chewing off his Green Top. Bu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Malcolm_theCat","name":"Malcolm - the Cat","id":1104656425526181888,"id_str":"1104656425526181888","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 06:34:00 +0000 2022","id":1506157226293084161,"id_str":"1506157226293084161","text":"Friends! - BAD NEWS! Since Christmas, Mr Carrot has been IN HIDING to prevent Baby Dog - from chewing off his Green Top\u2026 https:\/\/t.co\/0cw3v8RAvn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0cw3v8RAvn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506157226293084161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":122,"favorite_count":1939,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":122,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316021901785919492\/nrNL7xHW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316021901785919492\/nrNL7xHW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/945690532495343616\/1602424455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3290467372,"id_str":"3290467372","name":"(((J.L.R. - Lessard)))","screen_name":"Luftmensch4Life","location":"","description":"#GratefulDead - \u201cJustice, justice you shall pursue.\u201d Black Lives Will Always Matter. - Tomorrow\u2019s gonna be a fucking trip. Resist and stomp Fascism","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1125,"friends_count":4967,"listed_count":0,"created_at":"Tue - May 19 19:15:28 +0000 2015","favourites_count":37811,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12523,"lang":null,"status":{"created_at":"Sat - Mar 26 03:10:37 +0000 2022","id":1507555594659577861,"id_str":"1507555594659577861","text":"RT - @thedailybeast: The guards from Snake Island, a tiny Ukrainian outpost, were - turned over to Ukraine in exchange for 13 Russian prisoners\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thedailybeast","name":"The - Daily Beast","id":16012783,"id_str":"16012783","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:00:12 +0000 2022","id":1507552972389195777,"id_str":"1507552972389195777","text":"The - guards from Snake Island, a tiny Ukrainian outpost, were turned over to Ukraine - in exchange for 13 Russian pris\u2026 https:\/\/t.co\/ooMyqvBEBu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ooMyqvBEBu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507552972389195777","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":221,"favorite_count":759,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":221,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453944709190078472\/T89KdxGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453944709190078472\/T89KdxGG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290467372\/1638999051","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":937346936461496321,"id_str":"937346936461496321","name":"Tman - T","screen_name":"TmanT20","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":1658,"listed_count":0,"created_at":"Sun - Dec 03 15:44:59 +0000 2017","favourites_count":667,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":794,"lang":null,"status":{"created_at":"Tue - Oct 05 23:49:07 +0000 2021","id":1445536561878036481,"id_str":"1445536561878036481","text":"RT - @DZumaSambudla: Judge John Hlophe \ud83d\ude4c\ud83c\udffe\u2026 https:\/\/t.co\/yBHLWk0bgO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DZumaSambudla","name":"Dudu - Zuma-Sambudla","id":1141259542304624641,"id_str":"1141259542304624641","indices":[3,17]}],"urls":[],"media":[{"id":1445452776180523010,"id_str":"1445452776180523010","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","url":"https:\/\/t.co\/yBHLWk0bgO","display_url":"pic.twitter.com\/yBHLWk0bgO","expanded_url":"https:\/\/twitter.com\/DZumaSambudla\/status\/1445452786259271680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":456,"h":672,"resize":"fit"},"large":{"w":456,"h":672,"resize":"fit"},"small":{"w":456,"h":672,"resize":"fit"}},"source_status_id":1445452786259271680,"source_status_id_str":"1445452786259271680","source_user_id":1141259542304624641,"source_user_id_str":"1141259542304624641"}]},"extended_entities":{"media":[{"id":1445452776180523010,"id_str":"1445452776180523010","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","url":"https:\/\/t.co\/yBHLWk0bgO","display_url":"pic.twitter.com\/yBHLWk0bgO","expanded_url":"https:\/\/twitter.com\/DZumaSambudla\/status\/1445452786259271680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":456,"h":672,"resize":"fit"},"large":{"w":456,"h":672,"resize":"fit"},"small":{"w":456,"h":672,"resize":"fit"}},"source_status_id":1445452786259271680,"source_status_id_str":"1445452786259271680","source_user_id":1141259542304624641,"source_user_id_str":"1141259542304624641"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Oct 05 18:16:14 +0000 2021","id":1445452786259271680,"id_str":"1445452786259271680","text":"Judge - John Hlophe \ud83d\ude4c\ud83c\udffe\u2026 https:\/\/t.co\/yBHLWk0bgO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1445452776180523010,"id_str":"1445452776180523010","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","url":"https:\/\/t.co\/yBHLWk0bgO","display_url":"pic.twitter.com\/yBHLWk0bgO","expanded_url":"https:\/\/twitter.com\/DZumaSambudla\/status\/1445452786259271680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":456,"h":672,"resize":"fit"},"large":{"w":456,"h":672,"resize":"fit"},"small":{"w":456,"h":672,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1445452776180523010,"id_str":"1445452776180523010","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FA9HpD_XoAIwDtX.jpg","url":"https:\/\/t.co\/yBHLWk0bgO","display_url":"pic.twitter.com\/yBHLWk0bgO","expanded_url":"https:\/\/twitter.com\/DZumaSambudla\/status\/1445452786259271680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":456,"h":672,"resize":"fit"},"large":{"w":456,"h":672,"resize":"fit"},"small":{"w":456,"h":672,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":349,"favorite_count":2614,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":349,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392714417511534592\/lavbt53h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392714417511534592\/lavbt53h_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":359031682,"id_str":"359031682","name":"Yessenia - Morena","screen_name":"yesseniawrites","location":"Brooklyn, NY","description":"Journalist. - NYC @newmarkjschool zoom class ''21","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":1062,"listed_count":1,"created_at":"Sat - Aug 20 22:30:45 +0000 2011","favourites_count":2411,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":523,"lang":null,"status":{"created_at":"Sun - Mar 06 13:33:18 +0000 2022","id":1500464542429683715,"id_str":"1500464542429683715","text":"@kallipearl - My \u2728mentor \u2728","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kallipearl","name":"Kalli - Anderson","id":213369249,"id_str":"213369249","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500151498071846917,"in_reply_to_status_id_str":"1500151498071846917","in_reply_to_user_id":213369249,"in_reply_to_user_id_str":"213369249","in_reply_to_screen_name":"kallipearl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476359344920924169\/Sb_WOGMJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476359344920924169\/Sb_WOGMJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359031682\/1597800282","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4847726326,"id_str":"4847726326","name":"paulsenalexander95@gmail.com","screen_name":"paulsenalexand1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":1437,"listed_count":1,"created_at":"Tue - Jan 26 01:34:39 +0000 2016","favourites_count":22300,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5014,"lang":null,"status":{"created_at":"Fri - Mar 25 17:09:22 +0000 2022","id":1507404283469352967,"id_str":"1507404283469352967","text":"RT - @raccoonhourly: https:\/\/t.co\/oJRvUQpTIq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"raccoonhourly","name":"Raccoons - Hourly","id":1134099263674359808,"id_str":"1134099263674359808","indices":[3,17]}],"urls":[],"media":[{"id":1507243397010051076,"id_str":"1507243397010051076","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","url":"https:\/\/t.co\/oJRvUQpTIq","display_url":"pic.twitter.com\/oJRvUQpTIq","expanded_url":"https:\/\/twitter.com\/raccoonhourly\/status\/1507243399526727680\/photo\/1","type":"photo","sizes":{"large":{"w":782,"h":1021,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":782,"h":1021,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"source_status_id":1507243399526727680,"source_status_id_str":"1507243399526727680","source_user_id":1134099263674359808,"source_user_id_str":"1134099263674359808"}]},"extended_entities":{"media":[{"id":1507243397010051076,"id_str":"1507243397010051076","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","url":"https:\/\/t.co\/oJRvUQpTIq","display_url":"pic.twitter.com\/oJRvUQpTIq","expanded_url":"https:\/\/twitter.com\/raccoonhourly\/status\/1507243399526727680\/photo\/1","type":"photo","sizes":{"large":{"w":782,"h":1021,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":782,"h":1021,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"source_status_id":1507243399526727680,"source_status_id_str":"1507243399526727680","source_user_id":1134099263674359808,"source_user_id_str":"1134099263674359808"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:30:04 +0000 2022","id":1507243399526727680,"id_str":"1507243399526727680","text":"https:\/\/t.co\/oJRvUQpTIq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507243397010051076,"id_str":"1507243397010051076","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","url":"https:\/\/t.co\/oJRvUQpTIq","display_url":"pic.twitter.com\/oJRvUQpTIq","expanded_url":"https:\/\/twitter.com\/raccoonhourly\/status\/1507243399526727680\/photo\/1","type":"photo","sizes":{"large":{"w":782,"h":1021,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":782,"h":1021,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507243397010051076,"id_str":"1507243397010051076","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrN4kTWUAQE392.jpg","url":"https:\/\/t.co\/oJRvUQpTIq","display_url":"pic.twitter.com\/oJRvUQpTIq","expanded_url":"https:\/\/twitter.com\/raccoonhourly\/status\/1507243399526727680\/photo\/1","type":"photo","sizes":{"large":{"w":782,"h":1021,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":782,"h":1021,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/fscj.edu\" rel=\"nofollow\"\u003eTrashPandaPoster\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":281,"favorite_count":2432,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":281,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368267522835943430\/exbYwVuw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368267522835943430\/exbYwVuw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4847726326\/1585853102","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":194878071,"id_str":"194878071","name":"73tbolt","screen_name":"55tbolt","location":"denver","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":36,"friends_count":1029,"listed_count":0,"created_at":"Sat - Sep 25 06:02:51 +0000 2010","favourites_count":4359,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33621,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/957748292040916992\/re7IkzOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/957748292040916992\/re7IkzOf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":437048841,"id_str":"437048841","name":"James - Robert Carroll","screen_name":"JRCarrollNews","location":"Washington, D.C.","description":"Washington - Bureau Chief, Capital News Service, U. of Maryland; author of books on JFK - & Woodrow Wilson; passionate about presidential history and Boston sports","url":"https:\/\/t.co\/eZ3NI8WMzV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eZ3NI8WMzV","expanded_url":"http:\/\/blogs.courier-journal.com\/politics","display_url":"blogs.courier-journal.com\/politics","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4580,"friends_count":6809,"listed_count":141,"created_at":"Wed - Dec 14 23:15:07 +0000 2011","favourites_count":10472,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":67814,"lang":null,"status":{"created_at":"Fri - Mar 25 19:50:33 +0000 2022","id":1507444848097382403,"id_str":"1507444848097382403","text":"RT - @Redistrict: New: a Maryland court has struck down Democrats'' 7D-1C-0R map - as an illegal partisan gerrymander, the first such state-leve\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Redistrict","name":"Dave - Wasserman","id":74820061,"id_str":"74820061","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:30:50 +0000 2022","id":1507439887540273155,"id_str":"1507439887540273155","text":"New: - a Maryland court has struck down Democrats'' 7D-1C-0R map as an illegal partisan - gerrymander, the first such st\u2026 https:\/\/t.co\/00q9ugWgX0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/00q9ugWgX0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507439887540273155","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":203,"favorite_count":976,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":203,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/998991708242112512\/oo8JT90x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/998991708242112512\/oo8JT90x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437048841\/1527013160","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":576260614,"id_str":"576260614","name":"kim - cook","screen_name":"kimcookhome","location":"New York ","description":"Design - and decor inkslinger","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":974,"listed_count":9,"created_at":"Thu - May 10 14:01:11 +0000 2012","favourites_count":48525,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":382,"lang":null,"status":{"created_at":"Tue - Nov 16 06:14:28 +0000 2021","id":1460491438047711233,"id_str":"1460491438047711233","text":"@RexChapman - He''s done an acoustic version of this that''s really beautiful","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RexChapman","name":"Rex - Chapman\ud83c\udfc7\ud83c\udffc","id":324703658,"id_str":"324703658","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1460476360816828417,"in_reply_to_status_id_str":"1460476360816828417","in_reply_to_user_id":324703658,"in_reply_to_user_id_str":"324703658","in_reply_to_screen_name":"RexChapman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/721684814974316544\/bpd_FOCB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/721684814974316544\/bpd_FOCB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576260614\/1412027371","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3397151417,"id_str":"3397151417","name":"Dominique - Cox","screen_name":"cdominique89","location":"Washington, DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":1201,"listed_count":0,"created_at":"Fri - Jul 31 13:58:23 +0000 2015","favourites_count":11258,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1350,"lang":null,"status":{"created_at":"Sun - Feb 27 11:02:33 +0000 2022","id":1497889889723064320,"id_str":"1497889889723064320","text":"@waxysouthflo - Will you also be showing the West Ham game at 11 on 2\/27?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"waxysouthflo","name":"Waxy''s - Irish Pub FT.Lauderdale","id":765240852574707712,"id_str":"765240852574707712","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497202246127398929,"in_reply_to_status_id_str":"1497202246127398929","in_reply_to_user_id":765240852574707712,"in_reply_to_user_id_str":"765240852574707712","in_reply_to_screen_name":"waxysouthflo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346300762998132736\/6CsoHnGP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346300762998132736\/6CsoHnGP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25018825,"id_str":"25018825","name":"MaryLynn","screen_name":"me3az","location":"Phoenix - AZ","description":"I wear many hats...I am a mom, friend, flight attendant - and student! Here is to endless possibilities ;)","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":192,"friends_count":1813,"listed_count":10,"created_at":"Wed - Mar 18 03:18:34 +0000 2009","favourites_count":8268,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22563,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"799BE0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/760692188183396352\/RVLS8lwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/760692188183396352\/RVLS8lwm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25018825\/1463028116","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":100553195,"id_str":"100553195","name":"TyBe","screen_name":"tylerbeam505","location":"Denver","description":"a - leaf in the wind","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":377,"listed_count":0,"created_at":"Wed - Dec 30 17:40:46 +0000 2009","favourites_count":21756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1089299361475878912\/a0-KSAhz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1089299361475878912\/a0-KSAhz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100553195\/1503845318","profile_link_color":"2280A9","profile_sidebar_border_color":"2280A9","profile_sidebar_fill_color":"020812","profile_text_color":"17406C","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1700349962,"id_str":"1700349962","name":"Kittie - Rehrig","screen_name":"KitRehrig","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":155,"friends_count":1662,"listed_count":1,"created_at":"Sun - Aug 25 22:43:25 +0000 2013","favourites_count":10399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":183,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000360590379\/731fd79346838e5f6d18cc362eb185ea_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000360590379\/731fd79346838e5f6d18cc362eb185ea_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":788445728905584640,"id_str":"788445728905584640","name":"Michelle - Gracie","screen_name":"Michgracie21","location":"","description":"Mom, Wife, - Business owner, CEO Michelle Gracie R.M.T. LOVE MY LIFE ! extremely greatful - for all of my wonderful blessings. @michgracie21","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":473,"listed_count":0,"created_at":"Tue - Oct 18 18:24:45 +0000 2016","favourites_count":8733,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2839,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/791684436899221504\/tAEWuU7k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/791684436899221504\/tAEWuU7k_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":77793192,"id_str":"77793192","name":"Brian - Sharlach","screen_name":"sharlacb","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":679,"listed_count":0,"created_at":"Sun - Sep 27 18:05:44 +0000 2009","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":450,"lang":null,"status":{"created_at":"Mon - Mar 07 16:57:03 +0000 2022","id":1500878204147580930,"id_str":"1500878204147580930","text":"RT - @SarahCodyMedia \nWTNH Connecticut Families https:\/\/t.co\/qZooErmvLQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SarahCodyMedia","name":"Sarah - Cody","id":160623155,"id_str":"160623155","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/qZooErmvLQ","expanded_url":"https:\/\/twitter.com\/SarahCodyMedia\/status\/1500819743661559810","display_url":"twitter.com\/SarahCodyMedia\u2026","indices":[46,69]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1500819743661559810,"quoted_status_id_str":"1500819743661559810","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465795039024623616\/QN0fQ-bp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465795039024623616\/QN0fQ-bp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":288865167,"id_str":"288865167","name":"Cindy - Rella","screen_name":"CindyRella616","location":"New Jersey","description":"Yankees - and Giants fan... Mom and Wife, Daughter and dog mom \ud83d\udc3e : )","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":34,"friends_count":1337,"listed_count":0,"created_at":"Wed - Apr 27 15:57:54 +0000 2011","favourites_count":57202,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":77,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168879449179340801\/UefVJ-q__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168879449179340801\/UefVJ-q__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288865167\/1605157425","profile_link_color":"1C6580","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":737322790257197056,"id_str":"737322790257197056","name":"Makiyo - Masa","screen_name":"MakiyoMasa","location":"Tokyo Japan","description":"whisky - lover -dekant\u0101 founder","url":"https:\/\/t.co\/F9PxhtXJ9U","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/F9PxhtXJ9U","expanded_url":"http:\/\/www.dekanta.com","display_url":"dekanta.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":47,"friends_count":141,"listed_count":0,"created_at":"Mon - May 30 16:40:26 +0000 2016","favourites_count":4263,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":271,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/977285707038371840\/cZKay5rY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/977285707038371840\/cZKay5rY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":193181895,"id_str":"193181895","name":"Booksy","screen_name":"booksnwine","location":"Seattle","description":"a - little this, a little that. Hiking, amateur weather geek, looking for new - things to read.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":679,"listed_count":0,"created_at":"Tue - Sep 21 05:07:10 +0000 2010","favourites_count":10158,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2331,"lang":null,"status":{"created_at":"Sat - Mar 26 04:28:42 +0000 2022","id":1507575243250225156,"id_str":"1507575243250225156","text":"@EverettPolice - \ud83d\udc94\ud83d\ude4f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EverettPolice","name":"Everett - Police","id":257561890,"id_str":"257561890","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507538031531552768,"in_reply_to_status_id_str":"1507538031531552768","in_reply_to_user_id":257561890,"in_reply_to_user_id_str":"257561890","in_reply_to_screen_name":"EverettPolice","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217306723\/BobBookWine_700_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217306723\/BobBookWine_700_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":212337883,"id_str":"212337883","name":"Chris - Gagin","screen_name":"cgagin","location":"","description":"Father, husband, - lawyer and humble servant to the Constitution and Truth. The views expressed - are mine alone. #OperationGrantOH Co-Leader","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2273,"friends_count":1027,"listed_count":16,"created_at":"Fri - Nov 05 20:12:44 +0000 2010","favourites_count":7703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2248,"lang":null,"status":{"created_at":"Wed - Mar 16 23:41:47 +0000 2022","id":1504241548850077699,"id_str":"1504241548850077699","text":"RT - @triviapotus: \u201cIf we allow ourselves to be persuaded that every individual, - or party, that takes issue with our own convictions is neces\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"triviapotus","name":"Presidential - Trivia","id":2600400422,"id_str":"2600400422","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 23:39:37 +0000 2022","id":1503878618162016259,"id_str":"1503878618162016259","text":"\u201cIf - we allow ourselves to be persuaded that every individual, or party, that takes - issue with our own convictions i\u2026 https:\/\/t.co\/Q1D26BVurZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Q1D26BVurZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503878618162016259","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":411,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":148,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321961226172276736\/5aXoAqkb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321961226172276736\/5aXoAqkb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212337883\/1433019534","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":757702089925464065,"id_str":"757702089925464065","name":"Lois - C McLaughlin","screen_name":"LoisCMcLaughli1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":218,"listed_count":0,"created_at":"Mon - Jul 25 22:20:30 +0000 2016","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45503113,"id_str":"45503113","name":"The - Third Rail W Omar","screen_name":"thecomforter_1","location":"Brooklyn, NY","description":"Any - creators from all the poltical spectrum and want to be on show just DM or - email \ud83c\uddfa\ud83c\uddf8\n\nhttps:\/\/t.co\/3NuCjLuwGE","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/3NuCjLuwGE","expanded_url":"http:\/\/linktr.ee\/ThirdRailOmar","display_url":"linktr.ee\/ThirdRailOmar","indices":[90,113]}]}},"protected":false,"followers_count":78,"friends_count":2081,"listed_count":1,"created_at":"Mon - Jun 08 04:52:50 +0000 2009","favourites_count":1720,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5640,"lang":null,"status":{"created_at":"Sat - Mar 26 03:34:05 +0000 2022","id":1507561498897432578,"id_str":"1507561498897432578","text":"@SanaSaeed - I heard it''s colooood out their","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SanaSaeed","name":"Sana - Saeed","id":24854898,"id_str":"24854898","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507523157514670087,"in_reply_to_status_id_str":"1507523157514670087","in_reply_to_user_id":24854898,"in_reply_to_user_id_str":"24854898","in_reply_to_screen_name":"SanaSaeed","geo":null,"coordinates":null,"place":{"id":"94965b2c45386f87","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/94965b2c45386f87.json","place_type":"admin","name":"New - York","full_name":"New York, USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.76259,40.477383],[-71.777492,40.477383],[-71.777492,45.015851],[-79.76259,45.015851]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477059714949300233\/V82zPPt__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477059714949300233\/V82zPPt__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45503113\/1638588306","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30394712,"id_str":"30394712","name":"kevin - Colbert","screen_name":"40ozhomie","location":"philadelphia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":1407,"listed_count":3,"created_at":"Sat - Apr 11 04:10:29 +0000 2009","favourites_count":2199,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8588,"lang":null,"status":{"created_at":"Wed - Mar 23 15:46:41 +0000 2022","id":1506658700441837582,"id_str":"1506658700441837582","text":"https:\/\/t.co\/JCfO9MRowV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JCfO9MRowV","expanded_url":"https:\/\/e.chase.com\/T\/v60000017fb7695dceac72e1f4bbe5c898\/4264024e223a48b40000021ef3a0bcc2\/4264024e-223a-48b4-8033-09965f4a5f2a?__F__=v0fUYvjHMDjRPMSh3tviDHXIoXcPxvDgUUCCPvXMWoX_0JoZLAZABQF5mpMDVYup6cUHCziGgRJ2s2PlL0RJkYfP7OSk9ioZ0UVP_fe3H-UqfIP95fRYTG0cNaO5T9BNSAuaesS9VzVupnJBd8tWwrTxvszQxeekQQiRb16Hdw4jfHtDWSR9ti_nwU4gxhkcXa8vp1xEZ2hY02sa0kfcnIhznFYP0BU8Cfj1mQNzdbH6EZoCSFBkwYux7FWg_afvbzZb26tc-5uk_GzpSoEH6Wx-WEORJX0JXipxRiW9WeBeRcMu53dj9Hi8cubat0bkyLRadAeXRimMs=","display_url":"e.chase.com\/T\/v60000017fb7\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537982903\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537982903\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24638100,"id_str":"24638100","name":"Jan - Gardner","screen_name":"jmsgcmg","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":332,"listed_count":0,"created_at":"Mon - Mar 16 02:54:35 +0000 2009","favourites_count":674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":413,"lang":null,"status":{"created_at":"Sat - Mar 12 23:02:40 +0000 2022","id":1502782152655740928,"id_str":"1502782152655740928","text":"@joJBschaffer - Bring them back in style Jo!\ud83c\udf1d\ud83d\ude3d\ud83c\udf40","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joJBschaffer","name":"joJB - \ud83d\ude4c\ud83c\udffe","id":157876035,"id_str":"157876035","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502253020087738373,"in_reply_to_status_id_str":"1502253020087738373","in_reply_to_user_id":157876035,"in_reply_to_user_id_str":"157876035","in_reply_to_screen_name":"joJBschaffer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":405105678,"id_str":"405105678","name":"jerry - hilton","screen_name":"JerrryHilton","location":"United States","description":"A - proud Progressive, Husband, father, brother, veteran, arts & history buff,NO - DM\u2019s PLEASE ,#healthcareforall","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1137,"friends_count":2762,"listed_count":2,"created_at":"Fri - Nov 04 21:30:07 +0000 2011","favourites_count":4739,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10587,"lang":null,"status":{"created_at":"Sat - Mar 26 05:11:57 +0000 2022","id":1507586128819458052,"id_str":"1507586128819458052","text":"Quote - of the Day: \"Silence is the mother of truth.\" - Benjamin Disraeli","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1078612342664056832\/qIW4Tm7W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1078612342664056832\/qIW4Tm7W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405105678\/1549119632","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":489614064,"id_str":"489614064","name":"hill","screen_name":"prometefire","location":"","description":"Gills","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":2133,"listed_count":0,"created_at":"Sat - Feb 11 18:15:22 +0000 2012","favourites_count":7883,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11714,"lang":null,"status":{"created_at":"Mon - May 24 08:01:14 +0000 2021","id":1396738044385009665,"id_str":"1396738044385009665","text":"RT - @abcgazete: \"Her ta\u015f\u0131n alt\u0131ndan \u00e7\u0131kan bir \u015fah\u0131s - var, Halil Falyal\u0131\"\n@KendineMuhabir @sedat_peker''den 9 ay \u00f6nce - Falyal\u0131 konusunu g\u00fcndeme\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abcgazete","name":"ABC - Gazetesi","id":4002014542,"id_str":"4002014542","indices":[3,13]},{"screen_name":"KendineMuhabir","name":"Kendine - Muhabir","id":580321206,"id_str":"580321206","indices":[71,86]},{"screen_name":"sedat_peker","name":"Sedat - Peker","id":98149527,"id_str":"98149527","indices":[87,99]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 24 06:30:00 +0000 2021","id":1396715083141718017,"id_str":"1396715083141718017","text":"\"Her - ta\u015f\u0131n alt\u0131ndan \u00e7\u0131kan bir \u015fah\u0131s var, Halil - Falyal\u0131\"\n@KendineMuhabir @sedat_peker''den 9 ay \u00f6nce Falyal\u0131 - konusunu g\u00fcndeme getirmi\u015f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KendineMuhabir","name":"Kendine - Muhabir","id":580321206,"id_str":"580321206","indices":[56,71]},{"screen_name":"sedat_peker","name":"Sedat - Peker","id":98149527,"id_str":"98149527","indices":[72,84]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/ads-api.twitter.com\" rel=\"nofollow\"\u003eTwitter for Advertisers.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":259,"favorite_count":821,"favorited":false,"retweeted":false,"lang":"tr"},"is_quote_status":false,"retweet_count":259,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279216019387682816\/H7QbH0ng_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279216019387682816\/H7QbH0ng_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489614064\/1606458747","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3462276913,"id_str":"3462276913","name":"Lurf43","screen_name":"lurf43","location":"San - Tan Valley, AZ","description":"49ers Fanatic, Bridge Sharpy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":362,"listed_count":0,"created_at":"Sat - Sep 05 18:53:20 +0000 2015","favourites_count":18839,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Mon - Mar 14 19:39:05 +0000 2022","id":1503455696007794689,"id_str":"1503455696007794689","text":"RT - @ArizonaTourism: ''Retweet'' if you think Arizona has great sunrises. \ud83c\udf1e - \n\n\ud83d\udcf7 : @tyblue5011b https:\/\/t.co\/nnw1LjAT3D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ArizonaTourism","name":"Visit - Arizona","id":7113852,"id_str":"7113852","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 16:01:02 +0000 2022","id":1503400821236674569,"id_str":"1503400821236674569","text":"''Retweet'' - if you think Arizona has great sunrises. \ud83c\udf1e \n\n\ud83d\udcf7 : @tyblue5011b - https:\/\/t.co\/nnw1LjAT3D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1503400818602614791,"id_str":"1503400818602614791","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FN0nFEPXIAc-9Um.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN0nFEPXIAc-9Um.jpg","url":"https:\/\/t.co\/nnw1LjAT3D","display_url":"pic.twitter.com\/nnw1LjAT3D","expanded_url":"https:\/\/twitter.com\/ArizonaTourism\/status\/1503400821236674569\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503400818602614791,"id_str":"1503400818602614791","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FN0nFEPXIAc-9Um.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN0nFEPXIAc-9Um.jpg","url":"https:\/\/t.co\/nnw1LjAT3D","display_url":"pic.twitter.com\/nnw1LjAT3D","expanded_url":"https:\/\/twitter.com\/ArizonaTourism\/status\/1503400821236674569\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1440,"h":1440,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":112,"favorite_count":383,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":112,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361114595721580544\/OcGCDEuJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361114595721580544\/OcGCDEuJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3462276913\/1578416942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1684342453,"id_str":"1684342453","name":"TheDrake","screen_name":"tdrake2105","location":"Texas","description":"Hanging - out in the One Star State of Texas following Covid-19, politics, the planet, - dogs, LGBTQ, plant-based lifestyles and, most of all, much needed humor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":801,"listed_count":0,"created_at":"Mon - Aug 19 22:24:31 +0000 2013","favourites_count":9137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1711,"lang":null,"status":{"created_at":"Sat - Mar 26 02:59:26 +0000 2022","id":1507552782408196101,"id_str":"1507552782408196101","text":"@juliegrizzy - Texas...Scottish group...love this group","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"juliegrizzy","name":"Julie - \ud83c\udde8\ud83c\udde6","id":1242794624621727744,"id_str":"1242794624621727744","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507283807011061766,"in_reply_to_status_id_str":"1507283807011061766","in_reply_to_user_id":1242794624621727744,"in_reply_to_user_id_str":"1242794624621727744","in_reply_to_screen_name":"juliegrizzy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325960788918611968\/sJPuB11__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325960788918611968\/sJPuB11__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237936615,"id_str":"1237936615","name":"Robin - LaBedz","screen_name":"rplabedz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":244,"listed_count":0,"created_at":"Sun - Mar 03 05:44:44 +0000 2013","favourites_count":6120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":284,"lang":null,"status":{"created_at":"Sat - Jan 15 21:55:48 +0000 2022","id":1482471607679528960,"id_str":"1482471607679528960","text":"@RandyRecklaus - @DrydenSchool @ahsd25 @ArlingtonHtsGov @MrsKSamuels @mapplebaum3 @MrPoliszczuk - Very nice!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RandyRecklaus","name":"Randy - Recklaus","id":3192434162,"id_str":"3192434162","indices":[0,14]},{"screen_name":"DrydenSchool","name":"Dryden - School","id":368954924,"id_str":"368954924","indices":[15,28]},{"screen_name":"ahsd25","name":"ArlingtonHeightsSD25","id":151994575,"id_str":"151994575","indices":[29,36]},{"screen_name":"ArlingtonHtsGov","name":"ArlingtonHeightsIL","id":807251725,"id_str":"807251725","indices":[37,53]},{"screen_name":"MrsKSamuels","name":"Kristin - Samuels","id":1157078037403439104,"id_str":"1157078037403439104","indices":[54,66]},{"screen_name":"mapplebaum3","name":"Mrs. - Applebaum","id":769724743,"id_str":"769724743","indices":[67,79]},{"screen_name":"MrPoliszczuk","name":"Mr.P - \ud83c\udfdd","id":2964415143,"id_str":"2964415143","indices":[80,93]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1482462756427153409,"in_reply_to_status_id_str":"1482462756427153409","in_reply_to_user_id":3192434162,"in_reply_to_user_id_str":"3192434162","in_reply_to_screen_name":"RandyRecklaus","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308845121669136384,"id_str":"1308845121669136384","name":"MGY","screen_name":"MGY93757864","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":122,"listed_count":0,"created_at":"Wed - Sep 23 19:06:38 +0000 2020","favourites_count":997,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":886,"lang":null,"status":{"created_at":"Sun - Mar 13 08:48:45 +0000 2022","id":1502929644567379972,"id_str":"1502929644567379972","text":"RT - @ByDonkeys: The British government\u2019s response to refugees fleeing war - - in Ukraine and elsewhere - is an international disgrace. Here\u2019s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ByDonkeys","name":"Led - By Donkeys","id":1073606435580325889,"id_str":"1073606435580325889","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 08:04:26 +0000 2022","id":1502918495746633731,"id_str":"1502918495746633731","text":"The - British government\u2019s response to refugees fleeing war - in Ukraine and - elsewhere - is an international disgrace\u2026 https:\/\/t.co\/m8QDpqdcjV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m8QDpqdcjV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502918495746633731","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4235,"favorite_count":10708,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4235,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3076011772,"id_str":"3076011772","name":"Sue - Henderson","screen_name":"sue20537479","location":"Edinburgh, Scotland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":1088,"listed_count":2,"created_at":"Fri - Mar 06 22:24:33 +0000 2015","favourites_count":2531,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1011,"lang":null,"status":{"created_at":"Tue - Mar 22 04:48:38 +0000 2022","id":1506130711899738115,"id_str":"1506130711899738115","text":"RT - @Kira_Yarmysh: 1\/20 Tomorrow Alexei Navalny, the leader of the Russian opposition, - will be sentenced. The prosecutor''s office asked for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kira_Yarmysh","name":"\u041a\u0438\u0440\u0430 - \u042f\u0440\u043c\u044b\u0448","id":2548766911,"id_str":"2548766911","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 14:34:55 +0000 2022","id":1505915866587803655,"id_str":"1505915866587803655","text":"1\/20 - Tomorrow Alexei Navalny, the leader of the Russian opposition, will be sentenced. - The prosecutor''s office aske\u2026 https:\/\/t.co\/mRsSf9l7Hn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mRsSf9l7Hn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505915866587803655","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13487,"favorite_count":24256,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13487,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575031970318675969\/RmFvlT_W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575031970318675969\/RmFvlT_W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076011772\/1465823150","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189184703204601856,"id_str":"1189184703204601856","name":"Robin - (Redhood)","screen_name":"robin_redhood","location":"","description":"Bleh.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":544,"listed_count":0,"created_at":"Tue - Oct 29 14:18:37 +0000 2019","favourites_count":5945,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82,"lang":null,"status":{"created_at":"Fri - Dec 31 22:22:11 +0000 2021","id":1477042428804800514,"id_str":"1477042428804800514","text":"RT - @richthekid: Thank God for another blessed year \ud83d\ude4f\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richthekid","name":"BIGGEST - CEO","id":92860137,"id_str":"92860137","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 31 21:52:30 +0000 2021","id":1477034959290482688,"id_str":"1477034959290482688","text":"Thank - God for another blessed year \ud83d\ude4f\ud83c\udffd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1295,"favorite_count":4607,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1295,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189985668338012161\/QUnjfi-L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189985668338012161\/QUnjfi-L_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":637459269,"id_str":"637459269","name":"Zachary","screen_name":"ZachPuma_","location":"","description":"God - Loves you, you\u2019re a Child of God, \u201cFor the Kingdom of God is not - a matter of eating or drinking, but it is Righteousness, Peace, and Joy in - the Holy Spirit\u201d","url":"https:\/\/t.co\/2aR6DVS2mu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2aR6DVS2mu","expanded_url":"http:\/\/Instagram.com\/zachpuma","display_url":"Instagram.com\/zachpuma","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":586,"friends_count":2961,"listed_count":0,"created_at":"Mon - Jul 16 23:36:28 +0000 2012","favourites_count":4638,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6662,"lang":null,"status":{"created_at":"Sat - Mar 26 09:20:53 +0000 2022","id":1507648776974045189,"id_str":"1507648776974045189","text":"RT - @BillyGraham: \"Why did Jesus Christ leave Heaven''s glory and enter this - sin-infested world? For one reason: to make our eternal salvatio\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillyGraham","name":"Billy - Graham","id":16570573,"id_str":"16570573","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:43:55 +0000 2022","id":1507443178760294404,"id_str":"1507443178760294404","text":"\"Why - did Jesus Christ leave Heaven''s glory and enter this sin-infested world? - For one reason: to make our eternal s\u2026 https:\/\/t.co\/lD97mKNiju","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lD97mKNiju","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507443178760294404","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/app.agorapulse.com\" rel=\"nofollow\"\u003eAgorapulse app\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":370,"favorite_count":2330,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":370,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324299451322814466\/W6pcvKg6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324299451322814466\/W6pcvKg6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/637459269\/1604572569","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14600910,"id_str":"14600910","name":"Nichy\ud83c\udded\ud83c\uddf9","screen_name":"exotyc","location":"Myakka - City, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":304,"friends_count":2269,"listed_count":0,"created_at":"Wed - Apr 30 14:48:55 +0000 2008","favourites_count":71667,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8667,"lang":null,"status":{"created_at":"Fri - Mar 25 11:07:07 +0000 2022","id":1507313123568541700,"id_str":"1507313123568541700","text":"RT - @hutchinson: The Republican governor of Utah vetoed a trans sports ban yesterday. - Here is part of a letter that he wrote explaining his\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hutchinson","name":"Hutch - \ud83d\udc99\ud83d\udc9b","id":284422688,"id_str":"284422688","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:20:26 +0000 2022","id":1506667196331614214,"id_str":"1506667196331614214","text":"The - Republican governor of Utah vetoed a trans sports ban yesterday. Here is part - of a letter that he wrote explain\u2026 https:\/\/t.co\/4KmM2NMZgQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4KmM2NMZgQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506667196331614214","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14377,"favorite_count":85163,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14377,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336960758639448065\/QJQtSDZV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336960758639448065\/QJQtSDZV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14600910\/1524934120","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1072366053987151873,"id_str":"1072366053987151873","name":"Phil","screen_name":"Phil59311013","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":154,"listed_count":0,"created_at":"Tue - Dec 11 05:42:45 +0000 2018","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288603072185409537,"id_str":"1288603072185409537","name":"clk","screen_name":"clk73268360","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":239,"listed_count":0,"created_at":"Wed - Jul 29 22:31:56 +0000 2020","favourites_count":59,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1183190175129767938,"id_str":"1183190175129767938","name":"Lexer - Daniel","screen_name":"LexerD1986","location":"United States","description":"labor - law and employee rights attorney (not yours, obviously).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":553,"listed_count":2,"created_at":"Sun - Oct 13 01:18:38 +0000 2019","favourites_count":7266,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11316,"lang":null,"status":{"created_at":"Sat - Mar 26 02:38:41 +0000 2022","id":1507547557404291075,"id_str":"1507547557404291075","text":"@wrs_willoughby - @nycjim @RadioFreeTom @voxdotcom I told you to read the article because the - title of the article is being sarcastic.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wrs_willoughby","name":"Spil","id":863730760477532161,"id_str":"863730760477532161","indices":[0,15]},{"screen_name":"nycjim","name":"Jim - Roberts","id":14940354,"id_str":"14940354","indices":[16,23]},{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[24,37]},{"screen_name":"voxdotcom","name":"Vox","id":2347049341,"id_str":"2347049341","indices":[38,48]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507544908567089161,"in_reply_to_status_id_str":"1507544908567089161","in_reply_to_user_id":863730760477532161,"in_reply_to_user_id_str":"863730760477532161","in_reply_to_screen_name":"wrs_willoughby","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1305295050797088769\/K9Z9KCxv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1305295050797088769\/K9Z9KCxv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1183190175129767938\/1598897434","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":191072940,"id_str":"191072940","name":"Tatenda - Musapatike","screen_name":"TatendaCheryl","location":"Washington D.C.","description":"Founder - + CEO @voterformation + TheTAgenda, former Facebooker, romper advocate \ud83c\udfb5 - I am inimitable + I am original\ud83c\udfb5","url":"https:\/\/t.co\/c7SG8Z04B0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/c7SG8Z04B0","expanded_url":"http:\/\/www.voterformationproject.org","display_url":"voterformationproject.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1686,"friends_count":1084,"listed_count":38,"created_at":"Wed - Sep 15 15:02:48 +0000 2010","favourites_count":4458,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7752,"lang":null,"status":{"created_at":"Fri - Mar 25 18:42:25 +0000 2022","id":1507427700918607875,"id_str":"1507427700918607875","text":"We\u2019re - really about to have to pay these student loans in a pandemic and world war - 3 when this man ran on canceling\u2026 https:\/\/t.co\/3MBWf7iASX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3MBWf7iASX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507427700918607875","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541977412397834241\/jr9JtV9S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541977412397834241\/jr9JtV9S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191072940\/1394032457","profile_link_color":"3E81AD","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":103009022,"id_str":"103009022","name":"Anita","screen_name":"anitaliskey","location":"","description":"Mom. - Wife. Writer. Concerned Citizen. Late-Blooming Activist. All opinions, for - better or worse, are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":117,"friends_count":876,"listed_count":3,"created_at":"Fri - Jan 08 15:22:09 +0000 2010","favourites_count":3859,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1026,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485336367437697036\/OlhA1x0y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485336367437697036\/OlhA1x0y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":805457660,"id_str":"805457660","name":"Jeffrey - Charles","screen_name":"jeffster1965","location":"USAnarchy","description":"Best-selling - author in early stage of development patiently masquerading as a livery driver","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":232,"listed_count":0,"created_at":"Wed - Sep 05 21:48:26 +0000 2012","favourites_count":764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1469,"lang":null,"status":{"created_at":"Tue - Mar 22 22:44:59 +0000 2022","id":1506401584200261641,"id_str":"1506401584200261641","text":"All - the focus on child porn by U.S. senators grilling a black woman judicial nominee? - Tell me you''re a child predat\u2026 https:\/\/t.co\/qx9WxbBnUm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qx9WxbBnUm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506401584200261641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1119853951438991361\/B1Me_l6-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1119853951438991361\/B1Me_l6-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36101071,"id_str":"36101071","name":"Alison - Leland","screen_name":"alison_cwl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1699,"listed_count":0,"created_at":"Tue - Apr 28 15:56:28 +0000 2009","favourites_count":2907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Thu - Dec 23 18:51:49 +0000 2021","id":1474090385446252553,"id_str":"1474090385446252553","text":"Incredibly - frustrated with American Express gift cards. Cards_american. E-card has been - pending for three days. Cus\u2026 https:\/\/t.co\/EHi3te4bc7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EHi3te4bc7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474090385446252553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/837859053296549888\/iP60Cr32_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/837859053296549888\/iP60Cr32_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36101071\/1488596221","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":752564111850893312,"id_str":"752564111850893312","name":"Missy - Hubbell","screen_name":"missyhubbell","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":67,"listed_count":0,"created_at":"Mon - Jul 11 18:04:01 +0000 2016","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Jun 08 18:55:26 +0000 2021","id":1402338496484937734,"id_str":"1402338496484937734","text":"JPI - has some exciting opportunities! We are looking for talented people to add - to our team. #hiring Come join a\u2026 https:\/\/t.co\/2IqGrkHoXr","truncated":true,"entities":{"hashtags":[{"text":"hiring","indices":[94,101]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2IqGrkHoXr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1402338496484937734","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3150457838,"id_str":"3150457838","name":"adrian - \ud83e\uddf8","screen_name":"adrianlittles","location":"San Diego, CA","description":"minding - my business n moving with love along the way. :\u2019)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":685,"friends_count":683,"listed_count":0,"created_at":"Sat - Apr 11 20:07:50 +0000 2015","favourites_count":39349,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16461,"lang":null,"status":{"created_at":"Sat - Mar 26 04:03:48 +0000 2022","id":1507568977538473990,"id_str":"1507568977538473990","text":"RT - @Sospover45: @adrianlittles @gooonicorn @JanAldee AS9 is rumoured for Jujubee. - It\u2019s Juju from each season competing in a multiverse. Sad\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sospover45","name":"Peter - Panetta","id":23655636,"id_str":"23655636","indices":[3,14]},{"screen_name":"adrianlittles","name":"adrian - \ud83e\uddf8","id":3150457838,"id_str":"3150457838","indices":[16,30]},{"screen_name":"gooonicorn","name":"Angeria\u2019sDragRace","id":781444891251310592,"id_str":"781444891251310592","indices":[31,42]},{"screen_name":"JanAldee","name":"user - friendly (taylor''s version)","id":701342327231508480,"id_str":"701342327231508480","indices":[43,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:03:08 +0000 2022","id":1507568812463374342,"id_str":"1507568812463374342","text":"@adrianlittles - @gooonicorn @JanAldee AS9 is rumoured for Jujubee. It\u2019s Juju from each - season competing in a multive\u2026 https:\/\/t.co\/iPCUtJsW2z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adrianlittles","name":"adrian - \ud83e\uddf8","id":3150457838,"id_str":"3150457838","indices":[0,14]},{"screen_name":"gooonicorn","name":"Angeria\u2019sDragRace","id":781444891251310592,"id_str":"781444891251310592","indices":[15,26]},{"screen_name":"JanAldee","name":"user - friendly (taylor''s version)","id":701342327231508480,"id_str":"701342327231508480","indices":[27,36]}],"urls":[{"url":"https:\/\/t.co\/iPCUtJsW2z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507568812463374342","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507546973787750400,"in_reply_to_status_id_str":"1507546973787750400","in_reply_to_user_id":3150457838,"in_reply_to_user_id_str":"3150457838","in_reply_to_screen_name":"adrianlittles","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507549076782419968\/glnFHOyB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507549076782419968\/glnFHOyB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150457838\/1641708594","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":363224188,"id_str":"363224188","name":"The - Constituent","screen_name":"MattYoungNow","location":"I wish it was Kentucky","description":"Redneck - economist with excessive sarcasm and skepticism. \nI also write things: https:\/\/t.co\/k8jkeQMNg1","url":"https:\/\/t.co\/YVPJHkJDlV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YVPJHkJDlV","expanded_url":"https:\/\/theconstituent.substack.com\/welcome","display_url":"theconstituent.substack.com\/welcome","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/k8jkeQMNg1","expanded_url":"http:\/\/rb.gy\/ic2j61","display_url":"rb.gy\/ic2j61","indices":[79,102]}]}},"protected":false,"followers_count":256,"friends_count":686,"listed_count":16,"created_at":"Sat - Aug 27 18:51:04 +0000 2011","favourites_count":5039,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1432,"lang":null,"status":{"created_at":"Mon - Mar 21 15:44:18 +0000 2022","id":1505933326208712704,"id_str":"1505933326208712704","text":"@SenMikeLee - Honest question:\nIs gutting a nearly unanimously passed voting rights act - b\/c the nearly unanimously pa\u2026 https:\/\/t.co\/7B4Y6OtntS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenMikeLee","name":"Mike - Lee","id":88784440,"id_str":"88784440","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/7B4Y6OtntS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505933326208712704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505929901614018568,"in_reply_to_status_id_str":"1505929901614018568","in_reply_to_user_id":88784440,"in_reply_to_user_id_str":"88784440","in_reply_to_screen_name":"SenMikeLee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488553798075305984\/b4Hbin2m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488553798075305984\/b4Hbin2m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363224188\/1602263025","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1159756679707316224,"id_str":"1159756679707316224","name":"Prince - Ansah Owusu","screen_name":"PrinceAnsahOwu2","location":"Ghana.Seikwa,Rain - District","description":"Working hard on media. Edition. Photo graphics..","url":"https:\/\/t.co\/Q8wiQJXDph","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Q8wiQJXDph","expanded_url":"http:\/\/Www.royaldrake.com","display_url":"royaldrake.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":880,"listed_count":0,"created_at":"Fri - Aug 09 09:21:54 +0000 2019","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":246,"lang":null,"status":{"created_at":"Fri - May 07 09:24:37 +0000 2021","id":1390598432767807489,"id_str":"1390598432767807489","text":".@g20org - @POTUS @SecBlinken @EUCouncil #EUCO @RegSprecher @Palazzo_Chigi @BorisJohnson - thousands of @GlblCtzn''s are\u2026 https:\/\/t.co\/P7ITMUrM0r","truncated":true,"entities":{"hashtags":[{"text":"EUCO","indices":[39,44]}],"symbols":[],"user_mentions":[{"screen_name":"g20org","name":"G20 - Indonesia","id":925441731331543040,"id_str":"925441731331543040","indices":[1,8]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[9,15]},{"screen_name":"SecBlinken","name":"Secretary - Antony Blinken","id":1350150750966603777,"id_str":"1350150750966603777","indices":[16,27]},{"screen_name":"EUCouncil","name":"EU - Council","id":206717989,"id_str":"206717989","indices":[28,38]},{"screen_name":"RegSprecher","name":"Steffen - Hebestreit","id":1465296802085842950,"id_str":"1465296802085842950","indices":[45,57]},{"screen_name":"Palazzo_Chigi","name":"Palazzo_Chigi","id":963938472,"id_str":"963938472","indices":[58,72]},{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[73,86]},{"screen_name":"GlblCtzn","name":"Global - Citizen \u2b55","id":596893898,"id_str":"596893898","indices":[100,109]}],"urls":[{"url":"https:\/\/t.co\/P7ITMUrM0r","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1390598432767807489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342747155296116738\/W7BM6fUq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342747155296116738\/W7BM6fUq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3362175957,"id_str":"3362175957","name":"Olga - Tsoka","screen_name":"olgakiolgaki123","location":"Athens, Greece","description":"\u039a\u03b9 - \u03b1\u03bd \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2 - \u03bd\u03b1 \u03ba\u03ac\u03bc\u03b5\u03b9\u03c2 \u03c4\u03b7\u03bd \u03b6\u03c9\u03ae - \u03c3\u03bf\u03c5 \u03cc\u03c0\u03c9\u03c2 \u03c4\u03b7\u03bd \u03b8\u03ad\u03bb\u03b5\u03b9\u03c2,\n\u03c4\u03bf\u03cd\u03c4\u03bf - \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b7\u03c3\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd - \u03cc\u03c3\u03bf \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2:\u03bc\u03b7\u03bd - \u03c4\u03b7\u03bd \u03b5\u03be\u03b5\u03c5\u03c4\u03b5\u03bb\u03af\u03b6\u03b5\u03b9\u03c2\n\n#team_\u03ba\u03b1\u03bb\u03bf\u03ba\u03b1\u03b9\u03c1\u03ac\u03ba\u03b9\u03b4\u03b5\u03c2\n#team_\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc\u03c2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1981,"friends_count":2693,"listed_count":4,"created_at":"Mon - Jul 06 10:53:07 +0000 2015","favourites_count":7848,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6286,"lang":null,"status":{"created_at":"Fri - Mar 25 10:37:39 +0000 2022","id":1507305706571108353,"id_str":"1507305706571108353","text":"RT - @StavrouElena1: https:\/\/t.co\/tCYY9dEyuO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StavrouElena1","name":"Stavrou - Elena","id":1497422150587850752,"id_str":"1497422150587850752","indices":[3,17]}],"urls":[],"media":[{"id":1507297452206006282,"id_str":"1507297452206006282","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","url":"https:\/\/t.co\/tCYY9dEyuO","display_url":"pic.twitter.com\/tCYY9dEyuO","expanded_url":"https:\/\/twitter.com\/StavrouElena1\/status\/1507297973788717057\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1507297973788717057,"source_status_id_str":"1507297973788717057","source_user_id":1497422150587850752,"source_user_id_str":"1497422150587850752"}]},"extended_entities":{"media":[{"id":1507297452206006282,"id_str":"1507297452206006282","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","url":"https:\/\/t.co\/tCYY9dEyuO","display_url":"pic.twitter.com\/tCYY9dEyuO","expanded_url":"https:\/\/twitter.com\/StavrouElena1\/status\/1507297973788717057\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1507297973788717057,"source_status_id_str":"1507297973788717057","source_user_id":1497422150587850752,"source_user_id_str":"1497422150587850752","video_info":{"aspect_ratio":[9,16],"duration_millis":19033,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/576x1024\/uS42g_aB6n5BA02J.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/320x568\/N2Lkd3mNzdOYIhUy.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/480x852\/s9Haboncp2B4X_Xn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/pl\/iNQHeWssLhzrqHs_.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:06:55 +0000 2022","id":1507297973788717057,"id_str":"1507297973788717057","text":"https:\/\/t.co\/tCYY9dEyuO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507297452206006282,"id_str":"1507297452206006282","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","url":"https:\/\/t.co\/tCYY9dEyuO","display_url":"pic.twitter.com\/tCYY9dEyuO","expanded_url":"https:\/\/twitter.com\/StavrouElena1\/status\/1507297973788717057\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507297452206006282,"id_str":"1507297452206006282","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507297452206006282\/pu\/img\/tWXRcf5lRE6e_oht.jpg","url":"https:\/\/t.co\/tCYY9dEyuO","display_url":"pic.twitter.com\/tCYY9dEyuO","expanded_url":"https:\/\/twitter.com\/StavrouElena1\/status\/1507297973788717057\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":19033,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/576x1024\/uS42g_aB6n5BA02J.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/320x568\/N2Lkd3mNzdOYIhUy.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/vid\/480x852\/s9Haboncp2B4X_Xn.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507297452206006282\/pu\/pl\/iNQHeWssLhzrqHs_.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":59,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664896038432456704\/hfEndysA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664896038432456704\/hfEndysA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3362175957\/1509099643","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":204598174,"id_str":"204598174","name":"Gerri","screen_name":"gerrisf714","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":691,"listed_count":0,"created_at":"Tue - Oct 19 01:49:22 +0000 2010","favourites_count":100899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15820,"lang":null,"status":{"created_at":"Thu - Mar 24 05:30:28 +0000 2022","id":1506866011517161474,"id_str":"1506866011517161474","text":"RT - @OccupyDemocrats: BREAKING: The resignation letter of the New York prosecutor - who was investigating Trump leaks to the public, and he ac\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 00:34:26 +0000 2022","id":1506791514311217162,"id_str":"1506791514311217162","text":"BREAKING: - The resignation letter of the New York prosecutor who was investigating Trump - leaks to the public, and he\u2026 https:\/\/t.co\/g8zMHRqS83","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g8zMHRqS83","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506791514311217162","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11514,"favorite_count":27877,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11514,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275677758471966721\/BZ5EDhwf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275677758471966721\/BZ5EDhwf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270580256370384896,"id_str":"1270580256370384896","name":"Fiona''s - Mom","screen_name":"MomFiona","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":396,"listed_count":0,"created_at":"Wed - Jun 10 04:55:33 +0000 2020","favourites_count":8899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48296,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":167850242,"id_str":"167850242","name":"A - D","screen_name":"arpan978","location":"","description":"Men are like Wine. - Some turn to vinegar, but the best improve with age.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":124,"listed_count":1,"created_at":"Sat - Jul 17 17:44:34 +0000 2010","favourites_count":306,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Mon - Sep 06 14:46:56 +0000 2021","id":1434890867794382850,"id_str":"1434890867794382850","text":"RT - @ConstantinoX: Dear BBC: \nIf you invite a scholar\/expert for her *independent* - knowledge, and then shut her up because there\u2019s no offici\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ConstantinoX","name":"Constantino - Xavier","id":35070732,"id_str":"35070732","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 05 06:41:20 +0000 2021","id":1434406274515410945,"id_str":"1434406274515410945","text":"Dear - BBC: \nIf you invite a scholar\/expert for her *independent* knowledge, and - then shut her up because there\u2019s no\u2026 https:\/\/t.co\/XPxV8dwsHi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XPxV8dwsHi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1434406274515410945","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3201,"favorite_count":11688,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3201,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/982429414045732864\/Bmygw7fO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982429414045732864\/Bmygw7fO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167850242\/1428878242","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1716183020,"id_str":"1716183020","name":"Olugbenga - Talabi","screen_name":"3scoopsofchilin","location":"Definitely not at the - gym","description":"web developer ||\n Doctor 2b\n \ncheck likes for tweets","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5036,"friends_count":3190,"listed_count":6,"created_at":"Sat - Aug 31 16:42:59 +0000 2013","favourites_count":5936,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":54337,"lang":null,"status":{"created_at":"Fri - Mar 25 14:21:52 +0000 2022","id":1507362133264195587,"id_str":"1507362133264195587","text":"RT - @CerebralWisdom: What ''multiculturalism'' boils down to is that you can praise - any culture in the world except Western culture. - Thomas\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CerebralWisdom","name":"Cerebral - Wisdom","id":366721494,"id_str":"366721494","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:20:17 +0000 2022","id":1507361732238319619,"id_str":"1507361732238319619","text":"What - ''multiculturalism'' boils down to is that you can praise any culture in the - world except Western culture. - Thomas Sowell","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/twitter.com\/CerebralWisdom\" rel=\"nofollow\"\u003eCerebral - Wisdom\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496573906756546576\/LU07mOju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496573906756546576\/LU07mOju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1716183020\/1599608712","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1173776910373068803,"id_str":"1173776910373068803","name":"ky\u26a1\ufe0f","screen_name":"kyliejleach","location":"Yorktown, - VA","description":"jmu | \ud83c\udff3\ufe0f\u200d\ud83c\udf08 | she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":78,"friends_count":246,"listed_count":0,"created_at":"Tue - Sep 17 01:53:29 +0000 2019","favourites_count":5285,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":465,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320806272963383296\/ib-dQ8SM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320806272963383296\/ib-dQ8SM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":970039327831937025,"id_str":"970039327831937025","name":"Jess - Schmitt","screen_name":"JessXOs","location":"","description":"Drybar \ud83d\udc9b\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb - Boy Mom. Spread Love","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":963,"listed_count":2,"created_at":"Sat - Mar 03 20:52:53 +0000 2018","favourites_count":652,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"status":{"created_at":"Sat - Feb 19 02:48:10 +0000 2022","id":1494866371162689536,"id_str":"1494866371162689536","text":"RT - @OCSheriff: Fifty-six suspects were arrested and 16 victims were recovered, - including two juveniles under the age of 16, as part of an e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OCSheriff","name":"OC - Sheriff, CA","id":24207733,"id_str":"24207733","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 18 19:13:34 +0000 2022","id":1494751966798528515,"id_str":"1494751966798528515","text":"Fifty-six - suspects were arrested and 16 victims were recovered, including two juveniles - under the age of 16, as par\u2026 https:\/\/t.co\/36I5YajF6F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/36I5YajF6F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494751966798528515","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":115,"favorite_count":554,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":115,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161513967681986560\/vEQKF-S1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161513967681986560\/vEQKF-S1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/970039327831937025\/1565761486","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14592239,"id_str":"14592239","name":"JerrieHurd","screen_name":"JerrieHurd","location":"Boulder, - CO","description":"Published novelist Professional Photographer Writing website: - http:\/\/t.co\/CBcgVJIMxo Photo website below","url":"http:\/\/t.co\/6JYixDVeqK","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/6JYixDVeqK","expanded_url":"http:\/\/www.homosapiensunadorned.com","display_url":"homosapiensunadorned.com","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/CBcgVJIMxo","expanded_url":"http:\/\/www.jerriehurd.com","display_url":"jerriehurd.com","indices":[63,85]}]}},"protected":false,"followers_count":299,"friends_count":341,"listed_count":23,"created_at":"Tue - Apr 29 22:47:04 +0000 2008","favourites_count":7538,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2575,"lang":null,"status":{"created_at":"Wed - Mar 23 23:02:38 +0000 2022","id":1506768413091250177,"id_str":"1506768413091250177","text":"RT - @OccupyDemocrats: BREAKING: Officials announce that they pulled ex-Trump campaign - Chairman Paul Manafort from a plane and revoked his pa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 13:26:43 +0000 2022","id":1506623477654208516,"id_str":"1506623477654208516","text":"BREAKING: - Officials announce that they pulled ex-Trump campaign Chairman Paul Manafort - from a plane and revoked his\u2026 https:\/\/t.co\/cXKs1J8RHv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cXKs1J8RHv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506623477654208516","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18119,"favorite_count":60929,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18119,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ADE08F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458872115\/jerrie_1meecolorsquare-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458872115\/jerrie_1meecolorsquare-1_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1199499115,"id_str":"1199499115","name":"Pamela - Bradley","screen_name":"PameBradley","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":490,"friends_count":760,"listed_count":0,"created_at":"Wed - Feb 20 03:58:56 +0000 2013","favourites_count":177936,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":138467,"lang":null,"status":{"created_at":"Sat - Mar 26 03:19:09 +0000 2022","id":1507557741472063491,"id_str":"1507557741472063491","text":"RT - @DianeHankinson5: Quoting Anna Navarro ,On The View concerning SCOTUS Judge - Clarence Thomas. \" This should Not be an Issue Of Left or\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DianeHankinson5","name":"Diane - Hankinson","id":1232068669997494274,"id_str":"1232068669997494274","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:09:07 +0000 2022","id":1507374023302393860,"id_str":"1507374023302393860","text":"Quoting - Anna Navarro ,On The View concerning SCOTUS Judge Clarence Thomas. \" This - should Not be an Issue Of Left\u2026 https:\/\/t.co\/vCdLVEIFtR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vCdLVEIFtR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507374023302393860","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2970,"favorite_count":18619,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2970,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3281217425\/cb9dc8bc5ae1f59be77a4c5a0bde076d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3281217425\/cb9dc8bc5ae1f59be77a4c5a0bde076d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1199499115\/1361338769","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1606034707,"id_str":"1606034707","name":"Bruce - Frank","screen_name":"bfrank345","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":160,"listed_count":0,"created_at":"Fri - Jul 19 14:08:13 +0000 2013","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Fri - Mar 17 01:27:35 +0000 2017","id":842547931911766018,"id_str":"842547931911766018","text":"@BBCRadio4 - Help! Latest ep of World Tonight, can''t download on iTunes. Help!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCRadio4","name":"BBC - Radio 4","id":23937508,"id_str":"23937508","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":23937508,"in_reply_to_user_id_str":"23937508","in_reply_to_screen_name":"BBCRadio4","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304121654315036672,"id_str":"1304121654315036672","name":"Ahmed - ElShazly","screen_name":"AhmedAd84821837","location":"Cairo, GA","description":"I - am \nSophisticated\nInteresed in politics and history\nCrazy boy.\n.\n\u0627\u0647\u0644\u0627\u0648\u0648\u0648\u0648\u0648\u0648\u0649","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":1517,"listed_count":0,"created_at":"Thu - Sep 10 18:17:25 +0000 2020","favourites_count":15896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1943,"lang":null,"status":{"created_at":"Sun - Mar 20 12:46:33 +0000 2022","id":1505526205910589444,"id_str":"1505526205910589444","text":"@AlAhlyTV - \u0639\u0644\u0627\u0621 \u0645\u064a\u0647\u0648\u0628\ud83d\ude0d\ud83d\ude0d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlAhlyTV","name":"Al - Ahly TV - \u0642\u0646\u0627\u0629 \u0627\u0644\u0623\u0647\u0644\u064a","id":814871621139841026,"id_str":"814871621139841026","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505524078203097093,"in_reply_to_status_id_str":"1505524078203097093","in_reply_to_user_id":814871621139841026,"in_reply_to_user_id_str":"814871621139841026","in_reply_to_screen_name":"AlAhlyTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381299775170084873\/fEQkydmM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381299775170084873\/fEQkydmM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304121654315036672\/1620091440","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":68237037,"id_str":"68237037","name":"andre - tiggs","screen_name":"Dre0922","location":"Steelers Nation","description":"Fire - Investgator \ud83d\udd25\ud83d\udd25\ud83d\udd25 Board Trustee for the Mental - Health Recovery Services of Lucas County .. Lucas County Critical Incident - Stress Management","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":1007,"listed_count":0,"created_at":"Sun - Aug 23 21:09:26 +0000 2009","favourites_count":320,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1305959521022619648\/Lh83ZqWk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1305959521022619648\/Lh83ZqWk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2292145909,"id_str":"2292145909","name":"Kathy - Birdsall","screen_name":"KathyMcgeough","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":2217,"listed_count":0,"created_at":"Wed - Jan 15 04:33:32 +0000 2014","favourites_count":5113,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9954,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1075116368494776321\/6PN2Qepa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075116368494776321\/6PN2Qepa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2292145909\/1545162612","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":622209687,"id_str":"622209687","name":"Mollie - Kirby","screen_name":"molliemk","location":"","description":"the non biological - daughter of Bette Midler and Bill Murray","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":615,"friends_count":2310,"listed_count":0,"created_at":"Fri - Jun 29 18:28:50 +0000 2012","favourites_count":32835,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":748,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2352814900\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2352814900\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35670798,"id_str":"35670798","name":"Suzette - L. Hayes","screen_name":"oprahsue1960","location":"Gary, IN","description":"professional - plus size model; writer, Independent Beauty Consultant for Mary Kay Cosmetics, - producer, director and host of tv show Simply...Suzette","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":747,"listed_count":3,"created_at":"Mon - Apr 27 04:32:15 +0000 2009","favourites_count":385,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1060,"lang":null,"status":{"created_at":"Tue - Jan 04 21:48:21 +0000 2022","id":1478483462491418630,"id_str":"1478483462491418630","text":"@JoyAnnReid - 10","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyAnnReid","name":"Joy-Ann - (Pro-Democracy) Reid \ud83d\ude37","id":49698134,"id_str":"49698134","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478198695615160323,"in_reply_to_status_id_str":"1478198695615160323","in_reply_to_user_id":49698134,"in_reply_to_user_id_str":"49698134","in_reply_to_screen_name":"JoyAnnReid","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/856348998772436992\/TiMdYwzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/856348998772436992\/TiMdYwzS_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16436728,"id_str":"16436728","name":"yvetterettigdea","screen_name":"yvetterettigdea","location":"Overton, - Texas","description":"I am ret.,former pharmaceutical sales person, educator, - builder, investor. I have one daughter and no baggage. I love to travel, swim, - have fun and enjoy life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":174,"listed_count":0,"created_at":"Wed - Sep 24 16:38:01 +0000 2008","favourites_count":197,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Fri - Mar 25 19:08:35 +0000 2022","id":1507434286965735430,"id_str":"1507434286965735430","text":"Supreme - Court Justice Clarence Thomas voted to keep Trump''s Jan. 6 insurrection records - hidden. Now, texts show tha\u2026 https:\/\/t.co\/slSfyJ9mLL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/slSfyJ9mLL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507434286965735430","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1737096278\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1737096278\/image_normal.jpg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":138099327,"id_str":"138099327","name":"KKPP","screen_name":"Machakorn","location":"Thailand","description":"No - matter what it is it is","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":1073,"listed_count":0,"created_at":"Wed - Apr 28 16:28:43 +0000 2010","favourites_count":2286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Mon - Mar 07 05:15:50 +0000 2022","id":1500701738684526593,"id_str":"1500701738684526593","text":"@KC_and_Jax - Get well soon","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KC_and_Jax","name":"KC - and Jax","id":1153102019831275520,"id_str":"1153102019831275520","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500597731294810113,"in_reply_to_status_id_str":"1500597731294810113","in_reply_to_user_id":1153102019831275520,"in_reply_to_user_id_str":"1153102019831275520","in_reply_to_screen_name":"KC_and_Jax","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458059270788829194\/jkqAKGSs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458059270788829194\/jkqAKGSs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138099327\/1636463449","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2167562497,"id_str":"2167562497","name":"Susan - Aaskwo","screen_name":"susan_aaskwo","location":"Brisbane, Queensland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":1261,"listed_count":0,"created_at":"Fri - Nov 01 01:42:39 +0000 2013","favourites_count":1087,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Sat - Mar 26 06:16:01 +0000 2022","id":1507602252407934977,"id_str":"1507602252407934977","text":"@StellaSpoons - https:\/\/t.co\/1MElQTwClj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StellaSpoons","name":"Stella - Bella","id":553097596,"id_str":"553097596","indices":[0,13]}],"urls":[],"media":[{"id":1507602244648456192,"id_str":"1507602244648456192","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOwUQP7aUAAWx1x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOwUQP7aUAAWx1x.jpg","url":"https:\/\/t.co\/1MElQTwClj","display_url":"pic.twitter.com\/1MElQTwClj","expanded_url":"https:\/\/twitter.com\/susan_aaskwo\/status\/1507602252407934977\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":370,"h":208,"resize":"fit"},"large":{"w":370,"h":208,"resize":"fit"},"medium":{"w":370,"h":208,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507602244648456192,"id_str":"1507602244648456192","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FOwUQP7aUAAWx1x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FOwUQP7aUAAWx1x.jpg","url":"https:\/\/t.co\/1MElQTwClj","display_url":"pic.twitter.com\/1MElQTwClj","expanded_url":"https:\/\/twitter.com\/susan_aaskwo\/status\/1507602252407934977\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":370,"h":208,"resize":"fit"},"large":{"w":370,"h":208,"resize":"fit"},"medium":{"w":370,"h":208,"resize":"fit"}},"video_info":{"aspect_ratio":[185,104],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FOwUQP7aUAAWx1x.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507329635964825601,"in_reply_to_status_id_str":"1507329635964825601","in_reply_to_user_id":553097596,"in_reply_to_user_id_str":"553097596","in_reply_to_screen_name":"StellaSpoons","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213888575151861760,"id_str":"1213888575151861760","name":"Aman - Panjwani","screen_name":"aman_panj","location":"Washington, DC; Kirbyville, - TX","description":"Operations @campaignfuture. Reviving Opportunity for Children. - Rural Texas to @Harvard. Fulbright Scholar. Ismaili Muslim. Lover of (Pecan) - Pies and Yorkipoos.","url":"https:\/\/t.co\/Y5CcnStmhE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Y5CcnStmhE","expanded_url":"http:\/\/amanpanjwani.com","display_url":"amanpanjwani.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":321,"listed_count":1,"created_at":"Sun - Jan 05 18:23:01 +0000 2020","favourites_count":2331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":103,"lang":null,"status":{"created_at":"Wed - Mar 23 22:31:09 +0000 2022","id":1506760489191280647,"id_str":"1506760489191280647","text":"RT - @kylegriffin1: Just watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086"}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1506751479054577675,"source_status_id_str":"1506751479054577675","source_user_id":32871086,"source_user_id_str":"32871086","video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 21:55:21 +0000 2022","id":1506751479054577675,"id_str":"1506751479054577675","text":"Just - watch this video. Just watch. https:\/\/t.co\/wmERvmniL5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506751421613543434,"id_str":"1506751421613543434","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506751421613543434\/pu\/img\/dUyP_gNlKTM0J-tk.jpg","url":"https:\/\/t.co\/wmERvmniL5","display_url":"pic.twitter.com\/wmERvmniL5","expanded_url":"https:\/\/twitter.com\/kylegriffin1\/status\/1506751479054577675\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":135368,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/640x360\/GuaetMybymdrJsz5.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/1280x720\/Uvs8zJgJqKjNwAdK.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/vid\/480x270\/glx6_KtIZthhr48d.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506751421613543434\/pu\/pl\/Yh2-kQwF5zosdz8y.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43374,"favorite_count":218823,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":43374,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240720579281539074\/bv6z0rEz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240720579281539074\/bv6z0rEz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213888575151861760\/1597261422","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":38851614,"id_str":"38851614","name":"zafer","screen_name":"arslandok","location":"Brighton, - UK","description":"Digital Media Design BA LMU \/ UX Design MSc University - of Brighton \/ Jeweller\/ Royal Society of Arts Fellow","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":618,"listed_count":18,"created_at":"Sat - May 09 13:23:15 +0000 2009","favourites_count":6779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1615,"lang":null,"status":{"created_at":"Fri - Mar 25 02:17:26 +0000 2022","id":1507179824510558216,"id_str":"1507179824510558216","text":"RT - @ahbeozge: Bir bal\u0131k restoran\u0131na gitti\u011finizde rak\u0131n\u0131n - yan\u0131nda arad\u0131\u011f\u0131n\u0131z meze, bal\u0131k ya da ara s\u0131cak - nedir ? Bir men\u00fc \u00e7al\u0131\u015fmas\u0131 i\u00e7in ara\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ahbeozge","name":"Ahbe\u00f6zge","id":996634840408772609,"id_str":"996634840408772609","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:56:00 +0000 2022","id":1507023435125379077,"id_str":"1507023435125379077","text":"Bir - bal\u0131k restoran\u0131na gitti\u011finizde rak\u0131n\u0131n yan\u0131nda - arad\u0131\u011f\u0131n\u0131z meze, bal\u0131k ya da ara s\u0131cak nedir - ? Bir men\u00fc \u00e7al\u0131\u015fmas\u2026 https:\/\/t.co\/D0PxWAJ8Le","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/D0PxWAJ8Le","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507023435125379077","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":169,"favorited":false,"retweeted":false,"lang":"tr"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477253618839572485\/PKU0gDvQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477253618839572485\/PKU0gDvQ_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311139448613220353,"id_str":"1311139448613220353","name":"becky - suss","screen_name":"SussBecky","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":169,"listed_count":0,"created_at":"Wed - Sep 30 03:03:22 +0000 2020","favourites_count":552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Nov 07 13:54:34 +0000 2020","id":1325074167285288962,"id_str":"1325074167285288962","text":"@Redistrict - @DeeleyforPhilly @Commish_Schmidt ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Redistrict","name":"Dave - Wasserman","id":74820061,"id_str":"74820061","indices":[0,11]},{"screen_name":"DeeleyforPhilly","name":"Lisa - Deeley","id":2958480725,"id_str":"2958480725","indices":[12,28]},{"screen_name":"Commish_Schmidt","name":"Al - Schmidt","id":506172313,"id_str":"506172313","indices":[29,45]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325072482630574080,"in_reply_to_status_id_str":"1325072482630574080","in_reply_to_user_id":74820061,"in_reply_to_user_id_str":"74820061","in_reply_to_screen_name":"Redistrict","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":289653364,"id_str":"289653364","name":"adriana - loria","screen_name":"aloriarevelo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":257,"listed_count":0,"created_at":"Fri - Apr 29 00:44:46 +0000 2011","favourites_count":4471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1040,"lang":null,"status":{"created_at":"Thu - Jan 27 02:13:57 +0000 2022","id":1486522837733195782,"id_str":"1486522837733195782","text":"RT - @MINSAPma: Recordamos a la poblaci\u00f3n que a partir del jueves 27 de enero, - estaremos aplicando dosis pedi\u00e1tricas contra el #COVID19 a los\u2026","truncated":false,"entities":{"hashtags":[{"text":"COVID19","indices":[125,133]}],"symbols":[],"user_mentions":[{"screen_name":"MINSAPma","name":"Ministerio - de Salud de Panam\u00e1","id":197410009,"id_str":"197410009","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 27 02:10:47 +0000 2022","id":1486522042304405508,"id_str":"1486522042304405508","text":"Recordamos - a la poblaci\u00f3n que a partir del jueves 27 de enero, estaremos aplicando - dosis pedi\u00e1tricas contra el\u2026 https:\/\/t.co\/WBBXghR2qM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WBBXghR2qM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1486522042304405508","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/822994144448671745\/pXENj_-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/822994144448671745\/pXENj_-S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":490972000,"id_str":"490972000","name":"Eric - Adsetts","screen_name":"ericmufc10","location":"New York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":42,"friends_count":2479,"listed_count":2,"created_at":"Mon - Feb 13 03:32:47 +0000 2012","favourites_count":17596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379534100399276037\/fpSSe2TN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379534100399276037\/fpSSe2TN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490972000\/1617741535","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":794269374270078979,"id_str":"794269374270078979","name":"MattyBob","screen_name":"drmrhs1","location":"","description":"New - Zealand immigrant living in Ohio. Get asked \"why?\" a lot.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":93,"listed_count":0,"created_at":"Thu - Nov 03 20:05:50 +0000 2016","favourites_count":9265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":727,"lang":null,"status":{"created_at":"Tue - Nov 10 16:31:37 +0000 2020","id":1326200851598352385,"id_str":"1326200851598352385","text":"@tribelaw - So you are not in the camp that says Barr''s announcement was purely for propaganda - purposes?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tribelaw","name":"Laurence - Tribe","id":4091551984,"id_str":"4091551984","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1326200258750263298,"in_reply_to_status_id_str":"1326200258750263298","in_reply_to_user_id":4091551984,"in_reply_to_user_id_str":"4091551984","in_reply_to_screen_name":"tribelaw","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321892890113691648\/lDz8EvoK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321892890113691648\/lDz8EvoK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794269374270078979\/1603998857","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1975344871,"id_str":"1975344871","name":"tinkerchik","screen_name":"tinkerchik","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":292,"friends_count":336,"listed_count":0,"created_at":"Sun - Oct 20 14:35:55 +0000 2013","favourites_count":85789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3947,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FAF2F3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219648722759491584\/Po5T5U7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219648722759491584\/Po5T5U7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1975344871\/1547675657","profile_link_color":"7FDBB6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D4C9BE","profile_text_color":"D1B7AB","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":624952495,"id_str":"624952495","name":"David - Flick","screen_name":"DMNDavidFlick","location":"Dallas, Texas","description":"Reporter - at The Dallas Morning News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":250,"listed_count":20,"created_at":"Mon - Jul 02 19:47:44 +0000 2012","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Tue - Mar 31 17:11:01 +0000 2020","id":1245035885655199744,"id_str":"1245035885655199744","text":"RT - @jbarro: Part of what\u2019s so compelling about Tiger King is it\u2019s a - retelling of the 2016 campaign where Hillary wins.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jbarro","name":"Josh - Barro","id":16244449,"id_str":"16244449","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 31 01:25:05 +0000 2020","id":1244797832453926913,"id_str":"1244797832453926913","text":"Part - of what\u2019s so compelling about Tiger King is it\u2019s a retelling of - the 2016 campaign where Hillary wins.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":548,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2364233733\/d8kwhf1h08p7y5ch24wc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2364233733\/d8kwhf1h08p7y5ch24wc_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221468931996766208,"id_str":"1221468931996766208","name":"#TruthOverLies","screen_name":"Pegasus2077449","location":"Richmond, - TX","description":"Marine Veteran, private pilot, Grandfather. Fully #Blue. - #TaxTheRich. #FuckTrump. \u201cThe enemy of my friend, is my enemy!\u201d. NO - DM\u2019s!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3033,"friends_count":4329,"listed_count":0,"created_at":"Sun - Jan 26 16:24:43 +0000 2020","favourites_count":92964,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76635,"lang":null,"status":{"created_at":"Sat - Mar 26 02:54:03 +0000 2022","id":1507551426255495174,"id_str":"1507551426255495174","text":"RT - @Sen_JoeManchin: After meeting with Judge Ketanji Brown Jackson, considering - her record, and closely monitoring her testimony and questi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sen_JoeManchin","name":"Senator - Joe Manchin","id":234374703,"id_str":"234374703","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:43:33 +0000 2022","id":1507352490722967558,"id_str":"1507352490722967558","text":"After - meeting with Judge Ketanji Brown Jackson, considering her record, and closely - monitoring her testimony and qu\u2026 https:\/\/t.co\/XLpcGk867l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XLpcGk867l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507352490722967558","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4654,"favorite_count":65052,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4654,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506981099532136450\/xUSIoPrW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506981099532136450\/xUSIoPrW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221468931996766208\/1605029190","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256974896103653376,"id_str":"1256974896103653376","name":"Elijah - Rono","screen_name":"ElijahRono18","location":"","description":"iam a patriotic - citizen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":337,"listed_count":0,"created_at":"Sun - May 03 15:52:50 +0000 2020","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Wed - Feb 03 00:11:07 +0000 2021","id":1356757068116594690,"id_str":"1356757068116594690","text":"@KoechNelsonK - Dangerous","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KoechNelsonK","name":"NELSON - KOECH","id":804675622551293953,"id_str":"804675622551293953","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1356171309596737536,"in_reply_to_status_id_str":"1356171309596737536","in_reply_to_user_id":804675622551293953,"in_reply_to_user_id_str":"804675622551293953","in_reply_to_screen_name":"KoechNelsonK","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256975297422995458\/LIOBkg74_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256975297422995458\/LIOBkg74_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1058999362158804992,"id_str":"1058999362158804992","name":"SAID - S MAKATTA","screen_name":"makatta_s","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":103,"listed_count":0,"created_at":"Sun - Nov 04 08:28:17 +0000 2018","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Oct 07 16:08:32 +0000 2021","id":1446145426634182668,"id_str":"1446145426634182668","text":"@BabuAlly_25 - @mnaziboy @cloudbacha Mhh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BabuAlly_25","name":"Babu - Ally_11","id":1445494205745221648,"id_str":"1445494205745221648","indices":[0,12]},{"screen_name":"mnaziboy","name":"officialtaita","id":1392941504977678343,"id_str":"1392941504977678343","indices":[13,22]},{"screen_name":"cloudbacha","name":"Claud - Bacha","id":2250355207,"id_str":"2250355207","indices":[23,34]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1446085771270758406,"in_reply_to_status_id_str":"1446085771270758406","in_reply_to_user_id":1445494205745221648,"in_reply_to_user_id_str":"1445494205745221648","in_reply_to_screen_name":"BabuAlly_25","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265397884385726465\/AtL6g8j2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265397884385726465\/AtL6g8j2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1058999362158804992\/1573789003","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":620910862,"id_str":"620910862","name":"Oscar - Inedi","screen_name":"Oscar_Inedi","location":"Port Harcourt, Nigeria","description":"|social - entrepreneur| |youth leader| |gender activist| |goodwill ambassador|","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":302,"listed_count":0,"created_at":"Thu - Jun 28 11:38:20 +0000 2012","favourites_count":2297,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240931298811817987\/i4M6V4R1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240931298811817987\/i4M6V4R1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":383563114,"id_str":"383563114","name":"Red - Hood Rebel","screen_name":"RedHoodRehab","location":"Cali","description":"Just - a guy who plays video games in his spare time. Love RPGs, MMORPGs, FPS and - Sandbox. Faves: Halo, Elder Scrolls & Mass Effect.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":152,"friends_count":2824,"listed_count":3,"created_at":"Sun - Oct 02 03:26:18 +0000 2011","favourites_count":17600,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4540,"lang":null,"status":{"created_at":"Fri - Mar 25 19:08:44 +0000 2022","id":1507434323963691020,"id_str":"1507434323963691020","text":"RT - @MldGhost: If rumors are true next week Sony will announce Spartacus officially. - \n\nFinally gaming subscriptions will be magically and su\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MldGhost","name":"GeneralMLD","id":1258910450374397957,"id_str":"1258910450374397957","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:48:40 +0000 2022","id":1507414174217170948,"id_str":"1507414174217170948","text":"If - rumors are true next week Sony will announce Spartacus officially. \n\nFinally - gaming subscriptions will be magica\u2026 https:\/\/t.co\/lDmO7oCmfG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lDmO7oCmfG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507414174217170948","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":1037,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":81,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488634668014444551\/k2yVN5cb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488634668014444551\/k2yVN5cb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383563114\/1643753136","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":408285403,"id_str":"408285403","name":"mooples","screen_name":"nonotthecake","location":"somewhere, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":1139,"listed_count":0,"created_at":"Wed - Nov 09 06:54:44 +0000 2011","favourites_count":56949,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Fri - Mar 25 07:46:58 +0000 2022","id":1507262752426913794,"id_str":"1507262752426913794","text":"@eloaios - Do they mean a \"strong\" dinner or a lunch-type dinner?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eloaios","name":"eloaios","id":1228493842548060160,"id_str":"1228493842548060160","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506797612732596225,"in_reply_to_status_id_str":"1506797612732596225","in_reply_to_user_id":1228493842548060160,"in_reply_to_user_id_str":"1228493842548060160","in_reply_to_screen_name":"eloaios","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208231185245036549\/9xFl2tyU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208231185245036549\/9xFl2tyU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408285403\/1466716089","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307818196737630213,"id_str":"1307818196737630213","name":"Patriot47","screen_name":"EzrowPatricia","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":255,"listed_count":0,"created_at":"Sun - Sep 20 23:05:57 +0000 2020","favourites_count":7997,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":470,"lang":null,"status":{"created_at":"Wed - Mar 23 19:29:22 +0000 2022","id":1506714742739677184,"id_str":"1506714742739677184","text":"@linley_jeff - @NewsPolitics @catturd2 I thought it was just me.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"linley_jeff","name":"Jeff - Linley","id":975530973843435520,"id_str":"975530973843435520","indices":[0,12]},{"screen_name":"NewsPolitics","name":"Jon - Nicosia","id":32281597,"id_str":"32281597","indices":[13,26]},{"screen_name":"catturd2","name":"Catturd - \u2122","id":1043185714437992449,"id_str":"1043185714437992449","indices":[27,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506704764741902344,"in_reply_to_status_id_str":"1506704764741902344","in_reply_to_user_id":975530973843435520,"in_reply_to_user_id_str":"975530973843435520","in_reply_to_screen_name":"linley_jeff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332757974306197508\/3GggXFXu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332757974306197508\/3GggXFXu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307818196737630213\/1605700115","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1635135097,"id_str":"1635135097","name":"Andrew - Charman","screen_name":"ACharmanW","location":"Lachlan, Tasmania","description":"Main - interests are instrument collecting, music, gardening, knitting & weaving","url":"https:\/\/t.co\/POpciboGbb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/POpciboGbb","expanded_url":"http:\/\/www.hamlel.com","display_url":"hamlel.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":86,"listed_count":0,"created_at":"Wed - Jul 31 10:03:24 +0000 2013","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sat - Feb 12 02:39:44 +0000 2022","id":1492327532628045825,"id_str":"1492327532628045825","text":"@PeterCampbellll - Idiot. That\u2019s a pic from 50 years ago in a different country. Woodstock - festival.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeterCampbellll","name":"Peter - Campbell","id":1429746832901492742,"id_str":"1429746832901492742","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1492326792647954435,"in_reply_to_status_id_str":"1492326792647954435","in_reply_to_user_id":1429746832901492742,"in_reply_to_user_id_str":"1429746832901492742","in_reply_to_screen_name":"PeterCampbellll","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000361441626\/0e846404457c9ca7234095ff5c8fbad7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000361441626\/0e846404457c9ca7234095ff5c8fbad7_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4883670214,"id_str":"4883670214","name":"Carolyn - Yoshida","screen_name":"cyoshida9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":194,"listed_count":0,"created_at":"Sun - Feb 07 02:04:57 +0000 2016","favourites_count":573,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sun - Mar 01 15:22:43 +0000 2020","id":1234136993405100032,"id_str":"1234136993405100032","text":"@Double_HighFive - My annual strategy: eat tons of strawberries in-season til all cravings gone. - No temptation to eat\u2026 https:\/\/t.co\/RkBtQasnHZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Double_HighFive","name":"Victoria - Hiten","id":1421947176,"id_str":"1421947176","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/RkBtQasnHZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1234136993405100032","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1233864008651833345,"in_reply_to_status_id_str":"1233864008651833345","in_reply_to_user_id":1421947176,"in_reply_to_user_id_str":"1421947176","in_reply_to_screen_name":"Double_HighFive","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219582409290797056,"id_str":"1219582409290797056","name":"Olasunkanmi","screen_name":"Olasunk56974282","location":"","description":"easy - going and God fearing, supplier in all kind of oil products, registration - of oil company online on DPR portal. DM 08055206853,alfalatright4great@outlook.co","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":549,"listed_count":0,"created_at":"Tue - Jan 21 11:28:32 +0000 2020","favourites_count":265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Sat - Oct 31 20:11:22 +0000 2020","id":1322632277206159360,"id_str":"1322632277206159360","text":"@DuchessT_ - Hi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DuchessT_","name":"Esv. - Adesewa \u2728","id":372147590,"id_str":"372147590","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1322597915429425153,"in_reply_to_status_id_str":"1322597915429425153","in_reply_to_user_id":372147590,"in_reply_to_user_id_str":"372147590","in_reply_to_screen_name":"DuchessT_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219582878113132544\/am7C4-tD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219582878113132544\/am7C4-tD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":805387837172568065,"id_str":"805387837172568065","name":"TheTrumpResistance","screen_name":"TrumpResistanc1","location":"","description":"A - Veteran. A Patriot. An American. A Humanist. A Trump Resistor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":452,"listed_count":1,"created_at":"Sun - Dec 04 12:26:38 +0000 2016","favourites_count":4592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2882,"lang":null,"status":{"created_at":"Thu - Mar 24 00:43:37 +0000 2022","id":1506793826140176390,"id_str":"1506793826140176390","text":"@JDCocchiarella - Buh By, Dr Woo!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JDCocchiarella","name":"Jack - Cocchiarella","id":713752653289955329,"id_str":"713752653289955329","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506765088266637315,"in_reply_to_status_id_str":"1506765088266637315","in_reply_to_user_id":713752653289955329,"in_reply_to_user_id_str":"713752653289955329","in_reply_to_screen_name":"JDCocchiarella","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/807053704788443136\/qtozH_UQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/807053704788443136\/qtozH_UQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263238331133038594,"id_str":"1263238331133038594","name":"luther - Murhy","screen_name":"LutherMurhy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":435,"listed_count":0,"created_at":"Wed - May 20 22:41:23 +0000 2020","favourites_count":5430,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263238777713176578\/su21vlbd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263238777713176578\/su21vlbd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1398347858,"id_str":"1398347858","name":"Alice - Nakhimovsky","screen_name":"asnakhimovsky","location":"","description":"Colgate - University, Russian and Eurasian studies and Jewish Studies. Compulsive reader. - Too old to tweet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":1192,"listed_count":4,"created_at":"Thu - May 02 22:39:20 +0000 2013","favourites_count":476,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Fri - Jul 02 20:58:24 +0000 2021","id":1411066750934962184,"id_str":"1411066750934962184","text":"@marklamster - Fabulous news! I\u2019m so proud.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marklamster","name":"mark - lamster","id":22402924,"id_str":"22402924","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1410790762648899590,"in_reply_to_status_id_str":"1410790762648899590","in_reply_to_user_id":22402924,"in_reply_to_user_id_str":"22402924","in_reply_to_screen_name":"marklamster","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/938249220687040515\/-bLQ11-4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/938249220687040515\/-bLQ11-4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4151532094,"id_str":"4151532094","name":"Bernardo - Calzadilla Sarmiento","screen_name":"calzadiB","location":"Vienna","description":"Quality, - standards, investment & innovation are key drivers of inclusive & sustainable - industrial development! tweets personal, retweets not endorsements","url":"https:\/\/t.co\/FRJW3WBR1o","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FRJW3WBR1o","expanded_url":"http:\/\/bernardocalzadilla.com","display_url":"bernardocalzadilla.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":778,"friends_count":1044,"listed_count":32,"created_at":"Mon - Nov 09 20:03:53 +0000 2015","favourites_count":2165,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2627,"lang":null,"status":{"created_at":"Tue - Mar 08 20:43:42 +0000 2022","id":1501297628767731714,"id_str":"1501297628767731714","text":"RT - @WACOMP_SL: Happy International Women''s Day!\u00a0\n\u00a0\nUnder the #EU-funded - #WACOMP, many talented female professionals are working to strength\u2026","truncated":false,"entities":{"hashtags":[{"text":"EU","indices":[61,64]},{"text":"WACOMP","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"WACOMP_SL","name":"WACOMP - Sierra Leone","id":1127659254691897346,"id_str":"1127659254691897346","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 08 12:32:49 +0000 2022","id":1501174096847114249,"id_str":"1501174096847114249","text":"Happy - International Women''s Day!\u00a0\n\u00a0\nUnder the #EU-funded #WACOMP, many - talented female professionals are working to\u2026 https:\/\/t.co\/m86rNMYkrG","truncated":true,"entities":{"hashtags":[{"text":"EU","indices":[46,49]},{"text":"WACOMP","indices":[57,64]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m86rNMYkrG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501174096847114249","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383623463265468422\/YBONvykP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383623463265468422\/YBONvykP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4151532094\/1622940112","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2307799226,"id_str":"2307799226","name":"Saundra Tester","screen_name":"SaundraTester","location":"Clayton, - OH","description":"","url":"https:\/\/t.co\/RwiHDC5Eoi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RwiHDC5Eoi","expanded_url":"http:\/\/aol.com","display_url":"aol.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":412,"listed_count":0,"created_at":"Fri - Jan 24 05:46:04 +0000 2014","favourites_count":478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":920,"lang":null,"status":{"created_at":"Fri - May 28 01:28:48 +0000 2021","id":1398088836350160899,"id_str":"1398088836350160899","text":"DEMOCRATS - WORRYING ABOUT 10 SENATE SEATS IN 2022 ELECTION https:\/\/t.co\/4bHdyoWAoP - via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[86,94]}],"urls":[{"url":"https:\/\/t.co\/4bHdyoWAoP","expanded_url":"https:\/\/youtu.be\/FyiLq6HWz4s","display_url":"youtu.be\/FyiLq6HWz4s","indices":[58,81]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280190525992296452,"id_str":"1280190525992296452","name":"Godsbaby","screen_name":"JosephBeatric14","location":"Lagos, - Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":101,"listed_count":1,"created_at":"Mon - Jul 06 17:23:23 +0000 2020","favourites_count":103,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Thu - Mar 24 21:37:16 +0000 2022","id":1507109315584405511,"id_str":"1507109315584405511","text":"@tianaStarrrr - U finished it","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tianaStarrrr","name":"jus.tiana - \u2b50\ufe0f","id":850676413581721600,"id_str":"850676413581721600","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505975506365255684,"in_reply_to_status_id_str":"1505975506365255684","in_reply_to_user_id":850676413581721600,"in_reply_to_user_id_str":"850676413581721600","in_reply_to_screen_name":"tianaStarrrr","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280190998946222080\/fFteZ9Mk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280190998946222080\/fFteZ9Mk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":463146899,"id_str":"463146899","name":"sabra","screen_name":"sabragallagher","location":"philly","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":464,"friends_count":1370,"listed_count":3,"created_at":"Fri - Jan 13 19:39:58 +0000 2012","favourites_count":80987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24352,"lang":null,"status":{"created_at":"Fri - Mar 25 22:03:01 +0000 2022","id":1507478186157871105,"id_str":"1507478186157871105","text":"RT - @FPWellman: Criminal thugs and losers.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FPWellman","name":"Fred - Wellman","id":42518865,"id_str":"42518865","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:42:04 +0000 2022","id":1507472913930362880,"id_str":"1507472913930362880","text":"Criminal - thugs and losers. https:\/\/t.co\/bqQHL0v9YJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bqQHL0v9YJ","expanded_url":"https:\/\/twitter.com\/ztpetrizzo\/status\/1507467942283390985","display_url":"twitter.com\/ztpetrizzo\/sta\u2026","indices":[27,50]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507467942283390985,"quoted_status_id_str":"1507467942283390985","retweet_count":160,"favorite_count":607,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507467942283390985,"quoted_status_id_str":"1507467942283390985","retweet_count":160,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1337834021829619717\/Qsrm12Ow_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1337834021829619717\/Qsrm12Ow_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823374277516939264,"id_str":"823374277516939264","name":"AJ","screen_name":"ajchiotos","location":"United - States","description":"leftist, lady, Appalachian hillbilly.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":3007,"listed_count":0,"created_at":"Mon - Jan 23 03:38:20 +0000 2017","favourites_count":6536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":200,"lang":null,"status":{"created_at":"Sun - Dec 19 15:11:57 +0000 2021","id":1472585500632530944,"id_str":"1472585500632530944","text":"@Sen_JoeManchin - you are an embarrassment to all of Appalachia and you\u2019ll be remembered - as the pharmaceutical goblin\u2026 https:\/\/t.co\/3fG4jgKBAC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sen_JoeManchin","name":"Senator - Joe Manchin","id":234374703,"id_str":"234374703","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/3fG4jgKBAC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1472585500632530944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":234374703,"in_reply_to_user_id_str":"234374703","in_reply_to_screen_name":"Sen_JoeManchin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358473406740635650\/mgamuXJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358473406740635650\/mgamuXJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823374277516939264\/1610726900","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282352043521449986,"id_str":"1282352043521449986","name":"Amora","screen_name":"amora219_a","location":"Detroit, - MI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":494,"listed_count":0,"created_at":"Sun - Jul 12 16:32:17 +0000 2020","favourites_count":2896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":675,"lang":null,"status":{"created_at":"Sat - Aug 07 01:36:16 +0000 2021","id":1423820253222604804,"id_str":"1423820253222604804","text":"RT - @GOTCITYTEA: RKelly was a nut case. Read this\ud83d\ude28 https:\/\/t.co\/aLKfA2hOUU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOTCITYTEA","name":"THE - \ud83d\udc10","id":1236072261301362688,"id_str":"1236072261301362688","indices":[3,14]}],"urls":[],"media":[{"id":1419041353820872704,"id_str":"1419041353820872704","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","url":"https:\/\/t.co\/aLKfA2hOUU","display_url":"pic.twitter.com\/aLKfA2hOUU","expanded_url":"https:\/\/twitter.com\/GOTCITYTEA\/status\/1419041368597356547\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1419041368597356547,"source_status_id_str":"1419041368597356547","source_user_id":1236072261301362688,"source_user_id_str":"1236072261301362688"}]},"extended_entities":{"media":[{"id":1419041353820872704,"id_str":"1419041353820872704","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","url":"https:\/\/t.co\/aLKfA2hOUU","display_url":"pic.twitter.com\/aLKfA2hOUU","expanded_url":"https:\/\/twitter.com\/GOTCITYTEA\/status\/1419041368597356547\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1419041368597356547,"source_status_id_str":"1419041368597356547","source_user_id":1236072261301362688,"source_user_id_str":"1236072261301362688"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jul 24 21:06:41 +0000 2021","id":1419041368597356547,"id_str":"1419041368597356547","text":"RKelly - was a nut case. Read this\ud83d\ude28 https:\/\/t.co\/aLKfA2hOUU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1419041353820872704,"id_str":"1419041353820872704","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","url":"https:\/\/t.co\/aLKfA2hOUU","display_url":"pic.twitter.com\/aLKfA2hOUU","expanded_url":"https:\/\/twitter.com\/GOTCITYTEA\/status\/1419041368597356547\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1419041353820872704,"id_str":"1419041353820872704","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7Fyl8gVIAATvlm.jpg","url":"https:\/\/t.co\/aLKfA2hOUU","display_url":"pic.twitter.com\/aLKfA2hOUU","expanded_url":"https:\/\/twitter.com\/GOTCITYTEA\/status\/1419041368597356547\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":570,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":143,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383203850530791425\/3HwNuQ4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383203850530791425\/3HwNuQ4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1282352043521449986\/1613935117","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42122174,"id_str":"42122174","name":"Joseph - A. Marcano","screen_name":"joejoepr","location":"Martinsburg, WV","description":"Puertorrique\u00f1o - | Project Engineer | IP-LL.M. Candidate @gwlaw | English\/Espa\u00f1ol","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":1060,"listed_count":0,"created_at":"Sat - May 23 23:46:02 +0000 2009","favourites_count":783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Sat - Jan 22 15:28:22 +0000 2022","id":1484910818579865600,"id_str":"1484910818579865600","text":"@barricada_azul1 - @RicardoLlerandi @Miguel_Romero_ @RLSenadora @Corujo22 @consuleduc @denisselebron - @MrLuisRamos\u2026 https:\/\/t.co\/54irNIfRUA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"barricada_azul1","name":"Barricada - Azul","id":498540707,"id_str":"498540707","indices":[0,16]},{"screen_name":"RicardoLlerandi","name":"Ricardo - Llerandi","id":361997220,"id_str":"361997220","indices":[17,33]},{"screen_name":"Miguel_Romero_","name":"Miguel - Romero","id":143990858,"id_str":"143990858","indices":[34,49]},{"screen_name":"RLSenadora","name":"RiveraLassenSenadora","id":1244424284736454656,"id_str":"1244424284736454656","indices":[50,61]},{"screen_name":"Corujo22","name":"\u271d\ufe0f\ud83d\udc68\ud83c\udffd\u200d\ud83c\udfebProf. - CORUJO\ud83c\uddfa\ud83c\uddf8\ud83d\udc18\ud83d\udc0d","id":44915721,"id_str":"44915721","indices":[62,71]},{"screen_name":"consuleduc","name":"Jos\u00e9 - A. Rivera,CCC,Ed.D","id":53974581,"id_str":"53974581","indices":[72,83]},{"screen_name":"denisselebron","name":"denisse - lebron","id":165961031,"id_str":"165961031","indices":[84,98]},{"screen_name":"MrLuisRamos","name":"Luis - Ramos","id":1143625134,"id_str":"1143625134","indices":[99,111]}],"urls":[{"url":"https:\/\/t.co\/54irNIfRUA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1484910818579865600","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1484781230847635461,"in_reply_to_status_id_str":"1484781230847635461","in_reply_to_user_id":498540707,"in_reply_to_user_id_str":"498540707","in_reply_to_screen_name":"barricada_azul1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247709056036491265\/s3vtv-Ls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247709056036491265\/s3vtv-Ls_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":596006641,"id_str":"596006641","name":"Dan - G","screen_name":"Danny_Joe_G","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":642,"listed_count":1,"created_at":"Fri - Jun 01 01:33:49 +0000 2012","favourites_count":61,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":399,"lang":null,"status":{"created_at":"Mon - Feb 08 21:49:57 +0000 2021","id":1358895872172507142,"id_str":"1358895872172507142","text":"RT - @FLForestService: Excellent footage and an inside look at some of the research - being conducted on fire behavior. https:\/\/t.co\/iRfEtQVLja","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FLForestService","name":"Florida - Forest Service","id":385037555,"id_str":"385037555","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/iRfEtQVLja","expanded_url":"https:\/\/twitter.com\/VICENews\/status\/1358702107881328640","display_url":"twitter.com\/VICENews\/statu\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 08 14:46:57 +0000 2021","id":1358789421970186247,"id_str":"1358789421970186247","text":"Excellent - footage and an inside look at some of the research being conducted on fire - behavior. https:\/\/t.co\/iRfEtQVLja","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iRfEtQVLja","expanded_url":"https:\/\/twitter.com\/VICENews\/status\/1358702107881328640","display_url":"twitter.com\/VICENews\/statu\u2026","indices":[95,118]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1358702107881328640,"quoted_status_id_str":"1358702107881328640","retweet_count":14,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1358702107881328640,"quoted_status_id_str":"1358702107881328640","retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2276401528\/1lSJxAWg_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2276401528\/1lSJxAWg_normal","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1078875807987257345,"id_str":"1078875807987257345","name":"\u0434\u044b\u043c","screen_name":"skuxxverd","location":"","description":"carthago - delenda est","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":115,"listed_count":0,"created_at":"Sat - Dec 29 04:50:11 +0000 2018","favourites_count":4209,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Tue - Mar 15 00:47:29 +0000 2022","id":1503533309619494913,"id_str":"1503533309619494913","text":"@terxme - https:\/\/t.co\/RgjJ5BPqJR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"terxme","name":"Writer","id":1259320800684974081,"id_str":"1259320800684974081","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/RgjJ5BPqJR","expanded_url":"https:\/\/youtu.be\/oEXtUUlSTJw","display_url":"youtu.be\/oEXtUUlSTJw","indices":[8,31]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503491822315876367,"in_reply_to_status_id_str":"1503491822315876367","in_reply_to_user_id":1259320800684974081,"in_reply_to_user_id_str":"1259320800684974081","in_reply_to_screen_name":"terxme","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491043783198269446\/OY0tRr1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491043783198269446\/OY0tRr1L_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":899398849692921859,"id_str":"899398849692921859","name":"Texas - Lib","screen_name":"LibTexas","location":"Texas","description":"Texas native - with a weird sense of humor, positive thinker, hard worker, old hippie, despiser - of racism, sexism and any kind of discrimination.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":355,"listed_count":0,"created_at":"Sun - Aug 20 22:32:50 +0000 2017","favourites_count":3149,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":928,"lang":null,"status":{"created_at":"Sat - Mar 26 00:29:29 +0000 2022","id":1507515043381981194,"id_str":"1507515043381981194","text":"@mhdksafa - So many it\u2019s hard to pick one, but ENRAGED fits.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mhdksafa","name":"mohamad - safa","id":834078524277456897,"id_str":"834078524277456897","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507428073364467717,"in_reply_to_status_id_str":"1507428073364467717","in_reply_to_user_id":834078524277456897,"in_reply_to_user_id_str":"834078524277456897","in_reply_to_screen_name":"mhdksafa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899401791913283584\/0HpDeMs2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899401791913283584\/0HpDeMs2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1024234003136692224,"id_str":"1024234003136692224","name":"MPUMELELO","screen_name":"MPUMPUNGIBA","location":"Umlazi, - South Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":205,"friends_count":1169,"listed_count":0,"created_at":"Tue - Jul 31 10:03:10 +0000 2018","favourites_count":1609,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4483,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463014080092987398\/11WuEebM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463014080092987398\/11WuEebM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024234003136692224\/1564551229","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":930760717,"id_str":"930760717","name":"JS - Ryan","screen_name":"janesryan11","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":499,"listed_count":0,"created_at":"Tue - Nov 06 23:28:34 +0000 2012","favourites_count":14805,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2585,"lang":null,"status":{"created_at":"Fri - Mar 25 16:28:13 +0000 2022","id":1507393929196544038,"id_str":"1507393929196544038","text":"RT - @OccupyDemocrats: BREAKING: Justice Clarence Thomas is discharged from the - hospital right into the mouth of a growing controversy over h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:13:28 +0000 2022","id":1507375117520674819,"id_str":"1507375117520674819","text":"BREAKING: - Justice Clarence Thomas is discharged from the hospital right into the mouth - of a growing controversy ove\u2026 https:\/\/t.co\/k5bgeobFVF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k5bgeobFVF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507375117520674819","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7287,"favorite_count":17597,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/816790642743394304\/DTDP6s97_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816790642743394304\/DTDP6s97_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296262320155430913,"id_str":"1296262320155430913","name":"Rico&Bella","screen_name":"RicoBella2","location":"","description":"I''m - a Democrat because I love my country and democracy #resistor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":907,"friends_count":1240,"listed_count":3,"created_at":"Thu - Aug 20 01:46:45 +0000 2020","favourites_count":63906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16309,"lang":null,"status":{"created_at":"Sun - Mar 20 05:50:03 +0000 2022","id":1505421388743647233,"id_str":"1505421388743647233","text":"@markknoller - Seriously? Biden works from home on weekends. He has spent decades simply - going home to family instead\u2026 https:\/\/t.co\/IaKZpFGvLT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"markknoller","name":"Mark - Knoller","id":31127446,"id_str":"31127446","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/IaKZpFGvLT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505421388743647233","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504947623412867073,"in_reply_to_status_id_str":"1504947623412867073","in_reply_to_user_id":31127446,"in_reply_to_user_id_str":"31127446","in_reply_to_screen_name":"markknoller","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296262696883703810\/gujynupT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296262696883703810\/gujynupT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180373829647888384,"id_str":"1180373829647888384","name":"caf","screen_name":"caaaaaaaf","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1049,"listed_count":0,"created_at":"Sat - Oct 05 06:47:34 +0000 2019","favourites_count":1553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180374384772435970\/3VDUZixq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180374384772435970\/3VDUZixq_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220495037743685633,"id_str":"1220495037743685633","name":"The - Players Field","screen_name":"players_field","location":"BOCA RATON, FLORIDA","description":"Fitness\/ - Nutrition Online Instruction","url":"https:\/\/t.co\/5v1JLBwYF0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5v1JLBwYF0","expanded_url":"http:\/\/WWW.THEPLAYERSFIELD.NET","display_url":"THEPLAYERSFIELD.NET","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":597,"listed_count":1,"created_at":"Thu - Jan 23 23:56:56 +0000 2020","favourites_count":9511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2281,"lang":null,"status":{"created_at":"Mon - Mar 14 23:09:54 +0000 2022","id":1503508749033607170,"id_str":"1503508749033607170","text":"IN - FULL: Health Minister Martin Foley provides Victoria''s COVID-19 update | - ABC News https:\/\/t.co\/q4CN6eTgaE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/q4CN6eTgaE","expanded_url":"https:\/\/youtu.be\/yVF03WTeyj8","display_url":"youtu.be\/yVF03WTeyj8","indices":[85,108]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418029896811614208\/10-z_8vu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418029896811614208\/10-z_8vu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":758465167709474816,"id_str":"758465167709474816","name":"Lynn","screen_name":"sadskki","location":"Idaho, - USA","description":"not ugly, just fat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":105,"listed_count":0,"created_at":"Thu - Jul 28 00:52:42 +0000 2016","favourites_count":25337,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":889,"lang":null,"status":{"created_at":"Fri - Oct 22 12:31:48 +0000 2021","id":1451526702526394374,"id_str":"1451526702526394374","text":"RT - @brian2grimey: goddamn it\u2019s nice af outside https:\/\/t.co\/6OyDD806tb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brian2grimey","name":"Bri\ud835\ude70n\ud83c\udf47","id":1276666154216353793,"id_str":"1276666154216353793","indices":[3,16]}],"urls":[],"media":[{"id":1449792212980715525,"id_str":"1449792212980715525","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","url":"https:\/\/t.co\/6OyDD806tb","display_url":"pic.twitter.com\/6OyDD806tb","expanded_url":"https:\/\/twitter.com\/brian2grimey\/status\/1449792216143212545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1122,"h":1122,"resize":"fit"},"large":{"w":1122,"h":1122,"resize":"fit"}},"source_status_id":1449792216143212545,"source_status_id_str":"1449792216143212545","source_user_id":1276666154216353793,"source_user_id_str":"1276666154216353793"}]},"extended_entities":{"media":[{"id":1449792212980715525,"id_str":"1449792212980715525","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","url":"https:\/\/t.co\/6OyDD806tb","display_url":"pic.twitter.com\/6OyDD806tb","expanded_url":"https:\/\/twitter.com\/brian2grimey\/status\/1449792216143212545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1122,"h":1122,"resize":"fit"},"large":{"w":1122,"h":1122,"resize":"fit"}},"source_status_id":1449792216143212545,"source_status_id_str":"1449792216143212545","source_user_id":1276666154216353793,"source_user_id_str":"1276666154216353793"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Oct 17 17:39:34 +0000 2021","id":1449792216143212545,"id_str":"1449792216143212545","text":"goddamn - it\u2019s nice af outside https:\/\/t.co\/6OyDD806tb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1449792212980715525,"id_str":"1449792212980715525","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","url":"https:\/\/t.co\/6OyDD806tb","display_url":"pic.twitter.com\/6OyDD806tb","expanded_url":"https:\/\/twitter.com\/brian2grimey\/status\/1449792216143212545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1122,"h":1122,"resize":"fit"},"large":{"w":1122,"h":1122,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1449792212980715525,"id_str":"1449792212980715525","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FB6yVhzX0AU59xL.jpg","url":"https:\/\/t.co\/6OyDD806tb","display_url":"pic.twitter.com\/6OyDD806tb","expanded_url":"https:\/\/twitter.com\/brian2grimey\/status\/1449792216143212545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1122,"h":1122,"resize":"fit"},"large":{"w":1122,"h":1122,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39133,"favorite_count":315350,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":39133,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393078064431599620\/Ob3A3T8d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393078064431599620\/Ob3A3T8d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/758465167709474816\/1625878605","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2489874601,"id_str":"2489874601","name":"Steve - Stern","screen_name":"sternste2","location":"Long Beach, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":702,"listed_count":12,"created_at":"Sun - May 11 13:40:45 +0000 2014","favourites_count":344,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Mon - May 31 20:42:06 +0000 2021","id":1399466236010848256,"id_str":"1399466236010848256","text":"@langernutrition - Hate mail = lack of education","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"langernutrition","name":"Abby - Langer Nutrition","id":1490802564,"id_str":"1490802564","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1399410939544408066,"in_reply_to_status_id_str":"1399410939544408066","in_reply_to_user_id":1490802564,"in_reply_to_user_id_str":"1490802564","in_reply_to_screen_name":"langernutrition","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/999799115104972800\/zVenxrNT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/999799115104972800\/zVenxrNT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":416782998,"id_str":"416782998","name":"Brenda - Strachan \ud83c\udde8\ud83c\udde6","screen_name":"BrendaStrachan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":223,"friends_count":460,"listed_count":30,"created_at":"Sun - Nov 20 04:24:30 +0000 2011","favourites_count":16520,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34381,"lang":null,"status":{"created_at":"Sat - Mar 26 03:18:54 +0000 2022","id":1507557681296338947,"id_str":"1507557681296338947","text":"RT - @steeletalk: I just love this video so much... especially the sweetness shown - by McDavid, Kassian and Hyman in particular. :)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steeletalk","name":"Lynda - Steele \ud83c\udf99\ud83c\udf3b","id":22680659,"id_str":"22680659","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:55:38 +0000 2022","id":1507521625763188738,"id_str":"1507521625763188738","text":"I - just love this video so much... especially the sweetness shown by McDavid, - Kassian and Hyman in particular. :) https:\/\/t.co\/9YqCDZsLLl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9YqCDZsLLl","expanded_url":"https:\/\/twitter.com\/EdmontonOilers\/status\/1507519530393759746","display_url":"twitter.com\/EdmontonOilers\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507519530393759746,"quoted_status_id_str":"1507519530393759746","retweet_count":13,"favorite_count":162,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507519530393759746,"quoted_status_id_str":"1507519530393759746","retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/937035413784444929\/JR1r4sOj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/937035413784444929\/JR1r4sOj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416782998\/1499985886","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306231011408318465,"id_str":"1306231011408318465","name":"Elizabeth - Sanchez","screen_name":"bbfamily14","location":"","description":"Something - about family and politics. I like books and babies.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":428,"friends_count":1819,"listed_count":1,"created_at":"Wed - Sep 16 13:58:42 +0000 2020","favourites_count":6595,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2934,"lang":null,"status":{"created_at":"Sat - Mar 26 06:49:55 +0000 2022","id":1507610785232662529,"id_str":"1507610785232662529","text":"@DaddyCombes - @DeadBug15 My husband''s dad is. Bienvenidos a la familia","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DaddyCombes","name":"Hamster - Man","id":1175632010976448512,"id_str":"1175632010976448512","indices":[0,12]},{"screen_name":"DeadBug15","name":"\u26f1 - Dead Bug \u2614\ufe0f","id":1347570104649715714,"id_str":"1347570104649715714","indices":[13,23]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507579329059774466,"in_reply_to_status_id_str":"1507579329059774466","in_reply_to_user_id":1175632010976448512,"in_reply_to_user_id_str":"1175632010976448512","in_reply_to_screen_name":"DaddyCombes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458227049961828357\/tc90jaxL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458227049961828357\/tc90jaxL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108193667842523136,"id_str":"1108193667842523136","name":"a - \u00b9\u00b9\u2078","screen_name":"hxpealive","location":"","description":"redecorate - full time lover \u272e : @chaeyoungswifey","url":"https:\/\/t.co\/WIITqnmQ2A","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WIITqnmQ2A","expanded_url":"https:\/\/cutt.ly\/tetespace","display_url":"cutt.ly\/tetespace","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":265,"listed_count":6,"created_at":"Wed - Mar 20 02:28:54 +0000 2019","favourites_count":34572,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":45708,"lang":null,"status":{"created_at":"Thu - Nov 04 14:36:03 +0000 2021","id":1456269011642056713,"id_str":"1456269011642056713","text":"nada - bts los amo \nI vote for #bts at #MAMAVOTE 2021","truncated":false,"entities":{"hashtags":[{"text":"bts","indices":[29,33]},{"text":"MAMAVOTE","indices":[37,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435967253883678726\/Q2cIXIlu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435967253883678726\/Q2cIXIlu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108193667842523136\/1626277465","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40137613,"id_str":"40137613","name":"Steve","screen_name":"KeyWestKentucky","location":"Lexington, - Kentucky","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":144,"friends_count":838,"listed_count":2,"created_at":"Fri - May 15 01:06:44 +0000 2009","favourites_count":23368,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9469,"lang":null,"status":{"created_at":"Tue - Dec 28 15:20:16 +0000 2021","id":1475849086607712256,"id_str":"1475849086607712256","text":"@TimOBrien - Oh 100% stolen? How is that different than just \u201cstolen?\u201d Lol. What - a dolt.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TimOBrien","name":"Tim - O''Brien","id":20742461,"id_str":"20742461","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1475848127122976777,"in_reply_to_status_id_str":"1475848127122976777","in_reply_to_user_id":20742461,"in_reply_to_user_id_str":"20742461","in_reply_to_screen_name":"TimOBrien","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829821711583428609\/6hUcjMej_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829821711583428609\/6hUcjMej_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40137613\/1486679889","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":84504889,"id_str":"84504889","name":"D - Hansen","screen_name":"dmhan1","location":"Las Vegas, NV","description":"Amatuer - photographer in Nevada that just loves to shoot anything, anywhere. Father - of four, husband to one.","url":"https:\/\/t.co\/XjowfhMka5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XjowfhMka5","expanded_url":"https:\/\/www.flickr.com\/photos\/dhimagesutah\/","display_url":"flickr.com\/photos\/dhimage\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":522,"friends_count":4716,"listed_count":6,"created_at":"Fri - Oct 23 04:29:48 +0000 2009","favourites_count":84392,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1260,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223343823767556096\/_TLFwQ-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223343823767556096\/_TLFwQ-f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84504889\/1553437621","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27468058,"id_str":"27468058","name":"Robin - Harshman-Rogers","screen_name":"pypmom","location":"Midland, Michigan","description":"Queen - of Rogersland (grade 2), Wife of an AT,C. Mom of 2 spirited girls, reader, - learner, teacher, & inquirer hoping to change the world one day at a time.","url":"https:\/\/t.co\/QQ64fZr2wV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/QQ64fZr2wV","expanded_url":"https:\/\/www.amazon.com\/hz\/wishlist\/ls\/3TTXO5A2FWXX1?ref_=wl_share","display_url":"amazon.com\/hz\/wishlist\/ls\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":712,"friends_count":4504,"listed_count":7,"created_at":"Sun - Mar 29 17:52:05 +0000 2009","favourites_count":1153,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":432,"lang":null,"status":{"created_at":"Sun - Feb 20 20:20:09 +0000 2022","id":1495493496538599427,"id_str":"1495493496538599427","text":"Just - a moment of encouragement. \u2764\ufe0f That\u2019s it. That\u2019s the tweet. - #ShareKindness","truncated":false,"entities":{"hashtags":[{"text":"ShareKindness","indices":[64,78]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"790e829b009ecfde","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/790e829b009ecfde.json","place_type":"city","name":"Midland","full_name":"Midland, - MI","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-84.320149,43.574381],[-84.154385,43.574381],[-84.154385,43.697326],[-84.320149,43.697326]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/985566074476351489\/Q87nyKG__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/985566074476351489\/Q87nyKG__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27468058\/1626129953","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":719835488,"id_str":"719835488","name":"TheTorro","screen_name":"YouWantToSeeMan","location":"Berlin, - Germany","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":237,"listed_count":0,"created_at":"Fri - Jul 27 09:35:56 +0000 2012","favourites_count":4154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":471,"lang":null,"status":{"created_at":"Fri - Mar 25 18:28:11 +0000 2022","id":1507424120610373651,"id_str":"1507424120610373651","text":"RT - @IrenaBuzarewicz: https:\/\/t.co\/ImAxoxUfC8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IrenaBuzarewicz","name":"Irena - Buzarewicz","id":1399431794,"id_str":"1399431794","indices":[3,19]}],"urls":[],"media":[{"id":1507221850207793165,"id_str":"1507221850207793165","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","url":"https:\/\/t.co\/ImAxoxUfC8","display_url":"pic.twitter.com\/ImAxoxUfC8","expanded_url":"https:\/\/twitter.com\/IrenaBuzarewicz\/status\/1507221863751200812\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":526,"h":526,"resize":"fit"},"small":{"w":526,"h":526,"resize":"fit"},"medium":{"w":526,"h":526,"resize":"fit"}},"source_status_id":1507221863751200812,"source_status_id_str":"1507221863751200812","source_user_id":1399431794,"source_user_id_str":"1399431794"}]},"extended_entities":{"media":[{"id":1507221850207793165,"id_str":"1507221850207793165","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","url":"https:\/\/t.co\/ImAxoxUfC8","display_url":"pic.twitter.com\/ImAxoxUfC8","expanded_url":"https:\/\/twitter.com\/IrenaBuzarewicz\/status\/1507221863751200812\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":526,"h":526,"resize":"fit"},"small":{"w":526,"h":526,"resize":"fit"},"medium":{"w":526,"h":526,"resize":"fit"}},"source_status_id":1507221863751200812,"source_status_id_str":"1507221863751200812","source_user_id":1399431794,"source_user_id_str":"1399431794"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 05:04:29 +0000 2022","id":1507221863751200812,"id_str":"1507221863751200812","text":"https:\/\/t.co\/ImAxoxUfC8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507221850207793165,"id_str":"1507221850207793165","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","url":"https:\/\/t.co\/ImAxoxUfC8","display_url":"pic.twitter.com\/ImAxoxUfC8","expanded_url":"https:\/\/twitter.com\/IrenaBuzarewicz\/status\/1507221863751200812\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":526,"h":526,"resize":"fit"},"small":{"w":526,"h":526,"resize":"fit"},"medium":{"w":526,"h":526,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507221850207793165,"id_str":"1507221850207793165","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOq6SYNXsA0beQu.jpg","url":"https:\/\/t.co\/ImAxoxUfC8","display_url":"pic.twitter.com\/ImAxoxUfC8","expanded_url":"https:\/\/twitter.com\/IrenaBuzarewicz\/status\/1507221863751200812\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":526,"h":526,"resize":"fit"},"small":{"w":526,"h":526,"resize":"fit"},"medium":{"w":526,"h":526,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":500,"favorite_count":1820,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":500,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453125602970583042\/oJU3g3JL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453125602970583042\/oJU3g3JL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719835488\/1627815262","profile_link_color":"1B95E0","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2213296066,"id_str":"2213296066","name":"\u0642\u0631\u0627\u0636\u0647","screen_name":"qoraze","location":"Tehran, - Iran","description":"\u062f\u0631 \u0633\u06cc \u0648 \u0627\u0646\u062f\u06cc - \u0633\u0627\u0644\u06af\u06cc\u060c \u0646\u0647 \u0645\u06cc\u0627\u0646\u0647\u060c - \u06a9\u0647 \u0627\u0646\u06af\u0627\u0631 \u0627\u0646\u062a\u0647\u0627\u06cc - \u0639\u0645\u0631 \u0631\u0627 \u06af\u0632 \u0645\u06cc\u06a9\u0646\u0645\u060c - \u0628\u0627 \u0633\u0631\u0645\u0627\u06cc \u062a\u0646 \u0646\u06cc\u0645\u0647\u200c\u0645\u0631\u062f\u0647\u200c - \u0648 \u062e\u0648\u0646 \u0633\u06cc\u0627\u0647 \u0644\u062e\u062a\u0647 - \u0634\u062f\u0647\u200c \u062a\u0648\u06cc \u0642\u0644\u0628\u060c \u0646\u0645\u06cc\u200c\u062e\u0648\u0627\u0633\u062a\u0645 - \u0627\u06cc\u0646\u0647\u0627\u0631\u0648\u060c \u0648\u0627\u0642\u0639\u0627 - \u0646\u0645\u06cc\u062e\u0648\u0627\u0633\u062a\u0645","url":"https:\/\/t.co\/UACK455Jrj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UACK455Jrj","expanded_url":"https:\/\/t.me\/BiChatBot?start=sc-726532-KFVkgax","display_url":"t.me\/BiChatBot?star\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":782,"friends_count":3358,"listed_count":0,"created_at":"Sun - Dec 08 03:50:20 +0000 2013","favourites_count":8393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5265,"lang":null,"status":{"created_at":"Sat - Mar 26 09:33:35 +0000 2022","id":1507651971733495810,"id_str":"1507651971733495810","text":"RT - @samariyanos: \u0627\u062d\u062a\u0645\u0627\u0644 \u0627\u064a\u0646\u0643\u0647 - \u064a\u0643 \u0632\u0646 \u062f\u0631 \u0637\u0648\u0644 \u0632\u0646\u062f\u06af\u064a\u0634 - \u0627\u0632\u0627\u0631 \u062c\u0646\u0633\u064a \u0631\u0648 \u062a\u062c\u0631\u0628\u0647 - \u0643\u0646\u0647 \u0661 \u0628\u0647 \u0666 \u0639\u0647 \u062f\u0631 \u062d\u0627\u0644\u064a - \u0643\u0647 \u062c\u0631\u0627\u062d\u062a \u062f\u0631 \u0627\u062b\u0631 - \u062d\u0645\u0644\u0647 \u0643\u0648\u0633\u0647 \u0661 \u0628\u0647 3,748,067 - \u0627\u0633\u062a. \u0648\u0644\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"samariyanos","name":"\u0633\u0645\u0631\u064a\u0627\u0646\u0648\u062b","id":1034773440702672897,"id_str":"1034773440702672897","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:02:08 +0000 2022","id":1506979679013589000,"id_str":"1506979679013589000","text":"\u0627\u062d\u062a\u0645\u0627\u0644 - \u0627\u064a\u0646\u0643\u0647 \u064a\u0643 \u0632\u0646 \u062f\u0631 \u0637\u0648\u0644 - \u0632\u0646\u062f\u06af\u064a\u0634 \u0627\u0632\u0627\u0631 \u062c\u0646\u0633\u064a - \u0631\u0648 \u062a\u062c\u0631\u0628\u0647 \u0643\u0646\u0647 \u0661 \u0628\u0647 - \u0666 \u0639\u0647 \u062f\u0631 \u062d\u0627\u0644\u064a \u0643\u0647 \u062c\u0631\u0627\u062d\u062a - \u062f\u0631 \u0627\u062b\u0631 \u062d\u0645\u0644\u0647 \u0643\u0648\u0633\u0647 - \u0661 \u0628\u0647 3,748,067\u2026 https:\/\/t.co\/KcK1YatzCw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KcK1YatzCw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506979679013589000","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":7924,"favorited":false,"retweeted":false,"lang":"fa"},"is_quote_status":false,"retweet_count":445,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506043044532998145\/VhXExeYX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506043044532998145\/VhXExeYX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2213296066\/1618951708","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":793024980,"id_str":"793024980","name":"Debra - Strasbaugh","screen_name":"StrasbaughDebra","location":"Oklahoma","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":499,"listed_count":0,"created_at":"Fri - Aug 31 04:08:11 +0000 2012","favourites_count":1366,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Sat - Oct 23 12:29:50 +0000 2021","id":1451888593597829120,"id_str":"1451888593597829120","text":"RT - @DanPriceSeattle: How come it''s always \"if you can''t pay your bills, get - a better job\" but never \"if you can''t find workers, pay a bette\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanPriceSeattle","name":"Dan - Price","id":2172596028,"id_str":"2172596028","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Oct 22 21:19:05 +0000 2021","id":1451659399022485517,"id_str":"1451659399022485517","text":"How - come it''s always \"if you can''t pay your bills, get a better job\" but never - \"if you can''t find workers, pay a better salary\"","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19407,"favorite_count":100089,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":19407,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2561323880\/11k3KWEs_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2561323880\/11k3KWEs_normal","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284150468189597696,"id_str":"1284150468189597696","name":"Muhammed - Alieu Bah","screen_name":"AlieuBa61263377","location":"Sierra Leone ","description":"Student - at Fourah Bay College, University of Sierra Leone \ud83c\uddf8\ud83c\uddf1, - faculty of Engineering. And a business man at Wellington.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":203,"listed_count":0,"created_at":"Fri - Jul 17 15:38:34 +0000 2020","favourites_count":4471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Jul 21 14:41:54 +0000 2020","id":1285585800378425346,"id_str":"1285585800378425346","text":"@Arsenal - 3:1 Arsenal win the game","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Arsenal","name":"Arsenal","id":34613288,"id_str":"34613288","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1285561396026134530,"in_reply_to_status_id_str":"1285561396026134530","in_reply_to_user_id":34613288,"in_reply_to_user_id_str":"34613288","in_reply_to_screen_name":"Arsenal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1296466929226481665\/SrMAe383_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1296466929226481665\/SrMAe383_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215551364111056896,"id_str":"1215551364111056896","name":"balkiBartokomos","screen_name":"SharonGaleon","location":"Azerbaijan","description":"don\u2019t - be ridiculos","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":375,"listed_count":0,"created_at":"Fri - Jan 10 08:30:17 +0000 2020","favourites_count":6240,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96,"lang":null,"status":{"created_at":"Sun - Mar 13 07:16:12 +0000 2022","id":1502906354285314049,"id_str":"1502906354285314049","text":"@GOP - Y\u2019all really do have some chutzpah.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOP","name":"GOP","id":11134252,"id_str":"11134252","indices":[0,4]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502797337676193793,"in_reply_to_status_id_str":"1502797337676193793","in_reply_to_user_id":11134252,"in_reply_to_user_id_str":"11134252","in_reply_to_screen_name":"GOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215551606856417280\/SJJTgTeb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215551606856417280\/SJJTgTeb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":5812682,"id_str":"5812682","name":"mike - ritter","screen_name":"mwritter","location":"silicon valley, CA","description":"Faith - does not determine truth, in fact, it is the worst way; reasoning is the only - way to determine truth. I was religious until I reached the age of reason.","url":"https:\/\/t.co\/0nTbu9OJZL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0nTbu9OJZL","expanded_url":"http:\/\/www.wiigf.com","display_url":"wiigf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":525,"friends_count":1159,"listed_count":7,"created_at":"Sun - May 06 17:23:02 +0000 2007","favourites_count":87281,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62138,"lang":null,"status":{"created_at":"Sat - Mar 26 06:44:07 +0000 2022","id":1507609323957985285,"id_str":"1507609323957985285","text":"RT - @Kasparov63: Perhaps Biden would be \"very fortunate,\" to run against Trump - in 2024, but I wouldn''t say the same for the US or the rest o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kasparov63","name":"Garry - Kasparov","id":449588356,"id_str":"449588356","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:42:57 +0000 2022","id":1507518432702566403,"id_str":"1507518432702566403","text":"Perhaps - Biden would be \"very fortunate,\" to run against Trump in 2024, but I wouldn''t - say the same for the US or th\u2026 https:\/\/t.co\/3MRACpwro0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3MRACpwro0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507518432702566403","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":240,"favorite_count":2367,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":240,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/27199312\/face_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/27199312\/face_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5812682\/1398286579","profile_link_color":"981CEB","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3058549103,"id_str":"3058549103","name":"Noor - Baita","screen_name":"nurudeenbaita","location":"Yola, Nigeria","description":"||Entrepreneur||CEO\/MD - AT E-GLOBAL SOLUTIONS LTD||\nIT Consultant and Network Administrator\n||Businessman - Tycoon|| \n||Fire and Safety Consultant||","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":419,"friends_count":4870,"listed_count":0,"created_at":"Tue - Feb 24 10:07:31 +0000 2015","favourites_count":3401,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":598,"lang":null,"status":{"created_at":"Tue - Mar 22 16:35:16 +0000 2022","id":1506308540964691977,"id_str":"1506308540964691977","text":"@Capt_Jameela - Alhamdulillah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Capt_Jameela","name":"Captain - Jameela \ud83d\udc6e\ud83d\udd4a","id":1229472672209342471,"id_str":"1229472672209342471","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506239651975245829,"in_reply_to_status_id_str":"1506239651975245829","in_reply_to_user_id":1229472672209342471,"in_reply_to_user_id_str":"1229472672209342471","in_reply_to_screen_name":"Capt_Jameela","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342904518443487237\/uFoTpXcP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342904518443487237\/uFoTpXcP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3058549103\/1549803041","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2892988622,"id_str":"2892988622","name":"Tarek - Nadim Fakhry","screen_name":"fakhry_tarek","location":"","description":"Real - estate and hospitality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":1683,"listed_count":12,"created_at":"Fri - Nov 07 16:38:00 +0000 2014","favourites_count":4208,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530761258400628737\/Ue4IMS03_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530761258400628737\/Ue4IMS03_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3325011654,"id_str":"3325011654","name":"Dee - Giles","screen_name":"DEEGILES0410","location":"Wyoming","description":"Amputee, - CPP, FormerERNurse, #PainPatientsVote, #PROPIsATerroristOrganization, HealthCareAdvocate, - MomOf2Angels, Dog mom, \ud83d\udc99#BidenHarris, #IStandWithUkraine\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8629,"friends_count":9401,"listed_count":8,"created_at":"Sat - Aug 22 21:55:42 +0000 2015","favourites_count":64789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60395,"lang":null,"status":{"created_at":"Thu - Mar 24 00:26:40 +0000 2022","id":1506789559983517705,"id_str":"1506789559983517705","text":"@nathaliejacoby1 - YES!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506657489764368390,"in_reply_to_status_id_str":"1506657489764368390","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192017535484383234\/uGOa9Sqi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192017535484383234\/uGOa9Sqi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3325011654\/1573034513","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58628701,"id_str":"58628701","name":"D\u00e9bora - \u2728\ud83c\udf5e\ud83c\udfb2\ud83c\udfc1\ud83c\udf0a","screen_name":"deborajacintho","location":"Bras\u00edlia, - Brazil","description":"Historian & Political Scientist | PhD candidate @unb_oficial - | Consultant @BMJconsultoria | Former visiting researcher @GWtweets | Co-host - @ExplicaAmerica","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":416,"friends_count":990,"listed_count":11,"created_at":"Mon - Jul 20 23:31:37 +0000 2009","favourites_count":25562,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11040,"lang":null,"status":{"created_at":"Wed - Mar 23 20:58:50 +0000 2022","id":1506737257629245450,"id_str":"1506737257629245450","text":"RT - @BMJconsultoria: #BMJBACKSTAGE: Segundo informa\u00e7\u00f5es de bastidores, - a deputada Carla Zambelli, relatora do PL 2148\/2015 (mercado de #carb\u2026","truncated":false,"entities":{"hashtags":[{"text":"BMJBACKSTAGE","indices":[20,33]}],"symbols":[],"user_mentions":[{"screen_name":"BMJconsultoria","name":"BMJ - Consultores Associados","id":1006202359163314178,"id_str":"1006202359163314178","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:34:01 +0000 2022","id":1506731011924803585,"id_str":"1506731011924803585","text":"#BMJBACKSTAGE: - Segundo informa\u00e7\u00f5es de bastidores, a deputada Carla Zambelli, relatora - do PL 2148\/2015 (mercado de\u2026 https:\/\/t.co\/ZZV6oepUXS","truncated":true,"entities":{"hashtags":[{"text":"BMJBACKSTAGE","indices":[0,13]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZZV6oepUXS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506731011924803585","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"pt"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1098785398430597120\/HdWlG873_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1098785398430597120\/HdWlG873_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58628701\/1550805829","profile_link_color":"00B3FF","profile_sidebar_border_color":"0AFBFF","profile_sidebar_fill_color":"FF0D86","profile_text_color":"9A0BBA","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1095518556098162689,"id_str":"1095518556098162689","name":"Khristina","screen_name":"Khristi73069607","location":"San - Diego, CA","description":"Respiratory Therapist and voted most likely to say - something inappropriate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":318,"listed_count":0,"created_at":"Wed - Feb 13 03:02:32 +0000 2019","favourites_count":38319,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1430,"lang":null,"status":{"created_at":"Thu - Feb 25 19:40:58 +0000 2021","id":1365024006370287616,"id_str":"1365024006370287616","text":"RT - @BeschlossDC: Garland: \"I am not the President\u2019s lawyer. I am the - United States''s lawyer, and I will do everything in my power, which\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeschlossDC","name":"Michael - Beschloss","id":874916178,"id_str":"874916178","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 22 19:11:55 +0000 2021","id":1363929531510358017,"id_str":"1363929531510358017","text":"Garland: \"I - am not the President\u2019s lawyer. I am the United States''s lawyer, and - I will do everything in my power,\u2026 https:\/\/t.co\/ZNUYWerBnr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZNUYWerBnr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1363929531510358017","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1155,"favorite_count":6773,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1155,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243045876508975104\/H_BFczH9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243045876508975104\/H_BFczH9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095518556098162689\/1581399781","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2736822825,"id_str":"2736822825","name":"Eamonn - O''Neil","screen_name":"oneileamonn","location":"Albany, NY","description":"say - hi to your dog for me. #onepride #CubTogether #RipCity aspiring ADK 46er.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":520,"friends_count":5001,"listed_count":3,"created_at":"Fri - Aug 08 03:08:10 +0000 2014","favourites_count":55435,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6536,"lang":null,"status":{"created_at":"Thu - Mar 24 17:10:22 +0000 2022","id":1507042148553830402,"id_str":"1507042148553830402","text":"RT - @Ring_Sheryl: It probably should be a bigger deal that a sitting United States - Senator, in an interview today, said plainly that states\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ring_Sheryl","name":"Sheryl - Ring, antipoverty lawyer","id":963207700107718657,"id_str":"963207700107718657","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 01:34:39 +0000 2022","id":1506444280008744968,"id_str":"1506444280008744968","text":"It - probably should be a bigger deal that a sitting United States Senator, in - an interview today, said plainly that\u2026 https:\/\/t.co\/NGER7tIpSu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NGER7tIpSu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506444280008744968","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20839,"favorite_count":111082,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":20839,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097877320814219265\/10Ggv5sF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097877320814219265\/10Ggv5sF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":514329477,"id_str":"514329477","name":"Cee - Bee","screen_name":"CathyBlickensta","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":157,"listed_count":0,"created_at":"Sun - Mar 04 13:16:33 +0000 2012","favourites_count":32428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17832,"lang":null,"status":{"created_at":"Sat - Mar 26 06:43:32 +0000 2022","id":1507609175962132480,"id_str":"1507609175962132480","text":"RT - @UberFacts: About 47 million years ago, whales had legs and lived both on - land and in the sea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UberFacts","name":"UberFacts","id":95023423,"id_str":"95023423","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:37:01 +0000 2022","id":1507607537859891201,"id_str":"1507607537859891201","text":"About - 47 million years ago, whales had legs and lived both on land and in the sea","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":202,"favorite_count":1826,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":202,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1010216889644089345\/bd6jPhUo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1010216889644089345\/bd6jPhUo_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299123491397152771,"id_str":"1299123491397152771","name":"marianne","screen_name":"mariann42863947","location":"","description":"Loyalty","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":228,"listed_count":0,"created_at":"Thu - Aug 27 23:16:12 +0000 2020","favourites_count":105,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":131,"lang":null,"status":{"created_at":"Fri - Mar 25 18:58:40 +0000 2022","id":1507431792290189318,"id_str":"1507431792290189318","text":"@SenTedCruz - STFU. Nobody cares what you think. Your an idiot \ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9\ud83d\udca9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenTedCruz","name":"Senator - Ted Cruz","id":1074480192,"id_str":"1074480192","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507394279194435594,"in_reply_to_status_id_str":"1507394279194435594","in_reply_to_user_id":1074480192,"in_reply_to_user_id_str":"1074480192","in_reply_to_screen_name":"SenTedCruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299123731600678913\/t1iijqNq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299123731600678913\/t1iijqNq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":983510282,"id_str":"983510282","name":"Shari - Lebo","screen_name":"sharilebo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":816,"listed_count":1,"created_at":"Sat - Dec 01 23:17:15 +0000 2012","favourites_count":18800,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":705,"lang":null,"status":{"created_at":"Wed - Mar 16 13:34:58 +0000 2022","id":1504088839350104064,"id_str":"1504088839350104064","text":"Finally - going home! \ud83d\udc9d https:\/\/t.co\/VylV8hdyKS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504088834581094405,"id_str":"1504088834581094405","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FN-Y03fWYAUF8Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN-Y03fWYAUF8Z4.jpg","url":"https:\/\/t.co\/VylV8hdyKS","display_url":"pic.twitter.com\/VylV8hdyKS","expanded_url":"https:\/\/twitter.com\/sharilebo\/status\/1504088839350104064\/photo\/1","type":"photo","sizes":{"medium":{"w":555,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"},"large":{"w":947,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504088834581094405,"id_str":"1504088834581094405","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FN-Y03fWYAUF8Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN-Y03fWYAUF8Z4.jpg","url":"https:\/\/t.co\/VylV8hdyKS","display_url":"pic.twitter.com\/VylV8hdyKS","expanded_url":"https:\/\/twitter.com\/sharilebo\/status\/1504088839350104064\/photo\/1","type":"photo","sizes":{"medium":{"w":555,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":314,"h":680,"resize":"fit"},"large":{"w":947,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346205413423915008\/M_U5XF1N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346205413423915008\/M_U5XF1N_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2451825170,"id_str":"2451825170","name":"Laura - Harrell","screen_name":"yarzalaura","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":352,"listed_count":0,"created_at":"Fri - Apr 18 19:10:56 +0000 2014","favourites_count":4087,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":434,"lang":null,"status":{"created_at":"Tue - Mar 22 15:26:52 +0000 2022","id":1506291328224800772,"id_str":"1506291328224800772","text":"@MaryLTrump - I had to turn off the radio. He is a wretched human being.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLTrump","name":"Mary - L Trump","id":1045110787,"id_str":"1045110787","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506280327655874572,"in_reply_to_status_id_str":"1506280327655874572","in_reply_to_user_id":1045110787,"in_reply_to_user_id_str":"1045110787","in_reply_to_screen_name":"MaryLTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1047206920522792960\/UIJp_Vt7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1047206920522792960\/UIJp_Vt7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":217576640,"id_str":"217576640","name":"Jo - @ thornbrae","screen_name":"thornbrae","location":"Laois, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":148,"listed_count":0,"created_at":"Fri - Nov 19 22:31:16 +0000 2010","favourites_count":342,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Fri - Feb 04 22:25:23 +0000 2022","id":1489726807033196544,"id_str":"1489726807033196544","text":"@barbarascully - @MarianKeyes Rubbish","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"barbarascully","name":"Bairbre - Ni Scolai","id":25718192,"id_str":"25718192","indices":[0,14]},{"screen_name":"MarianKeyes","name":"Marian - Keyes","id":526425773,"id_str":"526425773","indices":[15,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1489536823433076737,"in_reply_to_status_id_str":"1489536823433076737","in_reply_to_user_id":25718192,"in_reply_to_user_id_str":"25718192","in_reply_to_screen_name":"barbarascully","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":797091341951873024,"id_str":"797091341951873024","name":"Sumiyyath","screen_name":"sumithy007","location":"Maldives","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":2074,"listed_count":0,"created_at":"Fri - Nov 11 14:59:20 +0000 2016","favourites_count":9277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4774,"lang":null,"status":{"created_at":"Wed - Mar 23 14:06:07 +0000 2022","id":1506633392489918468,"id_str":"1506633392489918468","text":"RT - @long_covid: Long Covid could create a generation affected by disability, - expert warns.\n\nProf @Daltmann10, immunologist at Imperial Coll\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"long_covid","name":"Long - Covid Support \ud83c\udf0d","id":1280533623561687043,"id_str":"1280533623561687043","indices":[3,14]},{"screen_name":"Daltmann10","name":"Danny - Altmann","id":243144742,"id_str":"243144742","indices":[97,108]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 08:35:53 +0000 2022","id":1506550286336335880,"id_str":"1506550286336335880","text":"Long - Covid could create a generation affected by disability, expert warns.\n\nProf - @Daltmann10, immunologist at Imper\u2026 https:\/\/t.co\/oIAvqJ0qkX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Daltmann10","name":"Danny - Altmann","id":243144742,"id_str":"243144742","indices":[81,92]}],"urls":[{"url":"https:\/\/t.co\/oIAvqJ0qkX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506550286336335880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":74,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186612177139929088\/nXegtjTi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186612177139929088\/nXegtjTi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/797091341951873024\/1569341568","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232260018587787266,"id_str":"1232260018587787266","name":"Joharnz - Maren","screen_name":"JoharnzM","location":"","description":"selflove","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":509,"friends_count":953,"listed_count":0,"created_at":"Tue - Feb 25 11:04:47 +0000 2020","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Thu - Aug 26 05:31:33 +0000 2021","id":1430764832584871936,"id_str":"1430764832584871936","text":"RT - @SagittarianMind: Happy anniversary to \u201cThe Miseducation of Lauryn Hill\u201d, - released August 25, 1998!! https:\/\/t.co\/EGuwzX3bah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SagittarianMind","name":"Sagittarian - Mind\u2122","id":160268128,"id_str":"160268128","indices":[3,19]}],"urls":[],"media":[{"id":1430464545236127748,"id_str":"1430464545236127748","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","url":"https:\/\/t.co\/EGuwzX3bah","display_url":"pic.twitter.com\/EGuwzX3bah","expanded_url":"https:\/\/twitter.com\/SagittarianMind\/status\/1430464546821529607\/photo\/1","type":"photo","sizes":{"medium":{"w":224,"h":224,"resize":"fit"},"small":{"w":224,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":224,"h":224,"resize":"fit"}},"source_status_id":1430464546821529607,"source_status_id_str":"1430464546821529607","source_user_id":160268128,"source_user_id_str":"160268128"}]},"extended_entities":{"media":[{"id":1430464545236127748,"id_str":"1430464545236127748","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","url":"https:\/\/t.co\/EGuwzX3bah","display_url":"pic.twitter.com\/EGuwzX3bah","expanded_url":"https:\/\/twitter.com\/SagittarianMind\/status\/1430464546821529607\/photo\/1","type":"photo","sizes":{"medium":{"w":224,"h":224,"resize":"fit"},"small":{"w":224,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":224,"h":224,"resize":"fit"}},"source_status_id":1430464546821529607,"source_status_id_str":"1430464546821529607","source_user_id":160268128,"source_user_id_str":"160268128"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Aug 25 09:38:19 +0000 2021","id":1430464546821529607,"id_str":"1430464546821529607","text":"Happy - anniversary to \u201cThe Miseducation of Lauryn Hill\u201d, released August - 25, 1998!! https:\/\/t.co\/EGuwzX3bah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1430464545236127748,"id_str":"1430464545236127748","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","url":"https:\/\/t.co\/EGuwzX3bah","display_url":"pic.twitter.com\/EGuwzX3bah","expanded_url":"https:\/\/twitter.com\/SagittarianMind\/status\/1430464546821529607\/photo\/1","type":"photo","sizes":{"medium":{"w":224,"h":224,"resize":"fit"},"small":{"w":224,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":224,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1430464545236127748,"id_str":"1430464545236127748","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E9oH7MqXEAQf8pF.jpg","url":"https:\/\/t.co\/EGuwzX3bah","display_url":"pic.twitter.com\/EGuwzX3bah","expanded_url":"https:\/\/twitter.com\/SagittarianMind\/status\/1430464546821529607\/photo\/1","type":"photo","sizes":{"medium":{"w":224,"h":224,"resize":"fit"},"small":{"w":224,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":224,"h":224,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5277,"favorite_count":18582,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5277,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232260385505447936\/cksfh-rQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232260385505447936\/cksfh-rQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307149726379388928,"id_str":"1307149726379388928","name":"Toni - I Finley","screen_name":"ToniIFinley5","location":"Branson MO 65616","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":318,"listed_count":0,"created_at":"Sat - Sep 19 02:50:41 +0000 2020","favourites_count":177,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":260,"lang":null,"status":{"created_at":"Thu - Nov 25 14:32:38 +0000 2021","id":1463878298820300808,"id_str":"1463878298820300808","text":"@chipfranklin - \ud83d\udc46\ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1463229447562305548,"in_reply_to_status_id_str":"1463229447562305548","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1412254682219565057\/LulevS-j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1412254682219565057\/LulevS-j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307149726379388928\/1625542730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18274624,"id_str":"18274624","name":"jake1128","screen_name":"jake1128","location":"","description":"Nurse|Retired|Passionate - about mental health","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":546,"listed_count":0,"created_at":"Sat - Dec 20 23:09:27 +0000 2008","favourites_count":1410,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":231,"lang":null,"status":{"created_at":"Tue - Mar 22 23:10:23 +0000 2022","id":1506407973148520450,"id_str":"1506407973148520450","text":"@DoYouEvenLif - @funder Reaching for chaos","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DoYouEvenLif","name":"Jesse - D.Lifson","id":780546876391067648,"id_str":"780546876391067648","indices":[0,13]},{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[14,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506404624823046146,"in_reply_to_status_id_str":"1506404624823046146","in_reply_to_user_id":780546876391067648,"in_reply_to_user_id_str":"780546876391067648","in_reply_to_screen_name":"DoYouEvenLif","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362931390413561856\/rdTdukCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362931390413561856\/rdTdukCK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":82258279,"id_str":"82258279","name":"Charles - DeVore","screen_name":"charliedevore","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":179,"listed_count":3,"created_at":"Wed - Oct 14 02:44:53 +0000 2009","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471663118\/DSC_2762_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471663118\/DSC_2762_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4901975530,"id_str":"4901975530","name":"Simon - Linus","screen_name":"SimonLinus5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":274,"listed_count":0,"created_at":"Fri - Feb 12 17:17:47 +0000 2016","favourites_count":315,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":185,"lang":null,"status":{"created_at":"Sat - Feb 12 18:10:54 +0000 2022","id":1492561866391834624,"id_str":"1492561866391834624","text":"Do - you remember when you joined Twitter? I do! #MyTwitterAnniversary https:\/\/t.co\/XbYM18SF3f","truncated":false,"entities":{"hashtags":[{"text":"MyTwitterAnniversary","indices":[47,68]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1492561857030332424,"id_str":"1492561857030332424","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FLalGd2XIAgKyMa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLalGd2XIAgKyMa.jpg","url":"https:\/\/t.co\/XbYM18SF3f","display_url":"pic.twitter.com\/XbYM18SF3f","expanded_url":"https:\/\/twitter.com\/SimonLinus5\/status\/1492561866391834624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1492561857030332424,"id_str":"1492561857030332424","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/FLalGd2XIAgKyMa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLalGd2XIAgKyMa.jpg","url":"https:\/\/t.co\/XbYM18SF3f","display_url":"pic.twitter.com\/XbYM18SF3f","expanded_url":"https:\/\/twitter.com\/SimonLinus5\/status\/1492561866391834624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":67674113,"id_str":"67674113","name":"John - Alaimo","screen_name":"johna1106","location":"Pittston Township","description":"Retired","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":179,"listed_count":0,"created_at":"Fri - Aug 21 18:06:40 +0000 2009","favourites_count":163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":79,"lang":null,"status":{"created_at":"Thu - Sep 30 16:37:30 +0000 2021","id":1443616002609135621,"id_str":"1443616002609135621","text":"@robreiner - Manchin has been bought out by trump","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robreiner","name":"Rob - Reiner","id":738080573365702657,"id_str":"738080573365702657","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1443562989253107713,"in_reply_to_status_id_str":"1443562989253107713","in_reply_to_user_id":738080573365702657,"in_reply_to_user_id_str":"738080573365702657","in_reply_to_screen_name":"robreiner","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312281961914826752,"id_str":"1312281961914826752","name":"Hema","screen_name":"Hemahemaray","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":263,"friends_count":2172,"listed_count":0,"created_at":"Sat - Oct 03 06:45:40 +0000 2020","favourites_count":896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":167,"lang":null,"status":{"created_at":"Fri - Mar 18 11:30:43 +0000 2022","id":1504782348054900762,"id_str":"1504782348054900762","text":"https:\/\/t.co\/KfsO5EtZOf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KfsO5EtZOf","expanded_url":"https:\/\/banklive.net\/ar\/exchange-rate-USD-to-EGP-today","display_url":"banklive.net\/ar\/exchange-ra\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336341565913133056\/ysENNWUq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336341565913133056\/ysENNWUq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2946870041,"id_str":"2946870041","name":"@ThinkMidTermsVoteBlue","screen_name":"Debbie1228Hart1","location":"","description":"Praying - for the #AmericanPeople","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":519,"friends_count":1833,"listed_count":6,"created_at":"Mon - Dec 29 00:14:49 +0000 2014","favourites_count":58206,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44300,"lang":null,"status":{"created_at":"Sat - Mar 26 00:45:22 +0000 2022","id":1507519040910200833,"id_str":"1507519040910200833","text":"@Snarkysass1 - OMG what has happened to the people of America?\nEspecially the Republicans","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Snarkysass1","name":"Anti-Anti-vaxxer","id":1152065651730714624,"id_str":"1152065651730714624","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507517645083578380,"in_reply_to_status_id_str":"1507517645083578380","in_reply_to_user_id":1152065651730714624,"in_reply_to_user_id_str":"1152065651730714624","in_reply_to_screen_name":"Snarkysass1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383205596132966408\/JIdLW-Wn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383205596132966408\/JIdLW-Wn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946870041\/1528069730","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1212108032122843137,"id_str":"1212108032122843137","name":"Vilhjalmur - Egilsson","screen_name":"VilhjalmurE","location":"","description":"Born 1952. Married - to Ragnhildur Pala. Four children. Six grandchildren. Ph.D. Economics University - of Southern California. Realistic optimist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":1643,"listed_count":2,"created_at":"Tue - Dec 31 20:27:43 +0000 2019","favourites_count":148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Wed - Mar 23 16:28:54 +0000 2022","id":1506669323955458053,"id_str":"1506669323955458053","text":"@andresjons - Fyrst allt er svona gott hj\u00e1 borginni af hverju st\u00f3\u00f0 h\u00fan - \u00fe\u00e1 gegn \u00fev\u00ed \u00e1rum saman a\u00f0 f\u00e6ra r\u00e9ttan - efnahags\u2026 https:\/\/t.co\/Ojr1fg2pGA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andresjons","name":"Andr\u00e9s - J\u00f3nsson","id":5805552,"id_str":"5805552","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/Ojr1fg2pGA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506669323955458053","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506648465895530502,"in_reply_to_status_id_str":"1506648465895530502","in_reply_to_user_id":5805552,"in_reply_to_user_id_str":"5805552","in_reply_to_screen_name":"andresjons","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"is"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1212108430397366278\/5Lub4T5I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1212108430397366278\/5Lub4T5I_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1051162819,"id_str":"1051162819","name":"rmp","screen_name":"ddprmp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":237,"listed_count":0,"created_at":"Mon - Dec 31 20:45:49 +0000 2012","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - May 11 21:23:12 +0000 2021","id":1392228822137909256,"id_str":"1392228822137909256","text":"https:\/\/t.co\/18PfZ1KRO4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/18PfZ1KRO4","expanded_url":"https:\/\/fb.watch\/5qHQa_IZg1\/","display_url":"fb.watch\/5qHQa_IZg1\/","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2358299761,"id_str":"2358299761","name":"nota - paloscio","screen_name":"notapal","location":"","description":"manager \/ - DJ @MusicbyCarlMont #MusicbyCarlMonte #BidenHarris2020 #VoteBlueDownBallot","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":348,"friends_count":2802,"listed_count":7,"created_at":"Sun - Feb 23 17:42:46 +0000 2014","favourites_count":35716,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":32641,"lang":null,"status":{"created_at":"Fri - Mar 25 21:50:49 +0000 2022","id":1507475115243540487,"id_str":"1507475115243540487","text":"RT - @notapal: #ProudOfPresidentBiden","truncated":false,"entities":{"hashtags":[{"text":"ProudOfPresidentBiden","indices":[13,35]}],"symbols":[],"user_mentions":[{"screen_name":"notapal","name":"nota - paloscio","id":2358299761,"id_str":"2358299761","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:45:31 +0000 2022","id":1507473781844897797,"id_str":"1507473781844897797","text":"#ProudOfPresidentBiden - https:\/\/t.co\/3x91i7n1KW","truncated":false,"entities":{"hashtags":[{"text":"ProudOfPresidentBiden","indices":[0,22]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3x91i7n1KW","expanded_url":"https:\/\/twitter.com\/KellyO\/status\/1507367527801835529","display_url":"twitter.com\/KellyO\/status\/\u2026","indices":[23,46]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507367527801835529,"quoted_status_id_str":"1507367527801835529","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":true,"quoted_status_id":1507367527801835529,"quoted_status_id_str":"1507367527801835529","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/823670091330027521\/JSD-tT8X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/823670091330027521\/JSD-tT8X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2358299761\/1617063900","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":151663974,"id_str":"151663974","name":"Chelsea - Gwizdala","screen_name":"chelseaonbass","location":"Los Angeles, CA","description":"Los - Angeles native. Bassist & orchestrator. Twitter novice. \ud83c\udde8\ud83c\uddfa\ud83c\uddfa\ud83c\uddf8","url":"https:\/\/t.co\/e9Qa1LYaU8","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e9Qa1LYaU8","expanded_url":"http:\/\/www.chelseagwizdala.com","display_url":"chelseagwizdala.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":421,"listed_count":2,"created_at":"Thu - Jun 03 23:33:39 +0000 2010","favourites_count":3005,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97,"lang":null,"status":{"created_at":"Mon - Apr 05 12:25:07 +0000 2021","id":1379047446269988873,"id_str":"1379047446269988873","text":"@DrLucyJones - I love you Dr. Lucy. Thank you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrLucyJones","name":"Dr. - Lucy Jones","id":2417085025,"id_str":"2417085025","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1379046135935889411,"in_reply_to_status_id_str":"1379046135935889411","in_reply_to_user_id":2417085025,"in_reply_to_user_id_str":"2417085025","in_reply_to_screen_name":"DrLucyJones","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270091452840685571\/FAxNOnqb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270091452840685571\/FAxNOnqb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151663974\/1591648375","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":896178000,"id_str":"896178000","name":"Isabelle - Robles","screen_name":"Isabelle_Robles","location":"Iowa, USA","description":"@mujschool - 2021 | baby yoda content welcome","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":338,"friends_count":495,"listed_count":2,"created_at":"Sun - Oct 21 21:20:06 +0000 2012","favourites_count":7214,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":630,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293035888809844736\/bS7ba5BZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293035888809844736\/bS7ba5BZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896178000\/1610377367","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234669201144500224,"id_str":"1234669201144500224","name":"James - Yaworski","screen_name":"duraflexroads","location":"Phnom Penh","description":"Self - actualized renaissance man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":425,"listed_count":0,"created_at":"Tue - Mar 03 02:37:47 +0000 2020","favourites_count":1310,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":130,"lang":null,"status":{"created_at":"Sun - Mar 13 23:49:29 +0000 2022","id":1503156324942888961,"id_str":"1503156324942888961","text":"@singledaddy2022 - You\u2019re going to experience sugar withdrawal. Ice cream and Oreo cookies - did it for me. Not a scien\u2026 https:\/\/t.co\/JLHg6yg3Za","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"singledaddy2022","name":"Daniel","id":1500517789785890825,"id_str":"1500517789785890825","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/JLHg6yg3Za","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503156324942888961","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502715630436458500,"in_reply_to_status_id_str":"1502715630436458500","in_reply_to_user_id":1500517789785890825,"in_reply_to_user_id_str":"1500517789785890825","in_reply_to_screen_name":"singledaddy2022","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234669420481351681\/aIFzxcXo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234669420481351681\/aIFzxcXo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1234669201144500224\/1619754546","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":574674261,"id_str":"574674261","name":"courtney - cave","screen_name":"courtneycave2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":2268,"listed_count":0,"created_at":"Tue - May 08 16:12:42 +0000 2012","favourites_count":89542,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Sep 22 19:09:55 +0000 2020","id":1308483686527049728,"id_str":"1308483686527049728","text":"@ChrisMurphyCT - DONE!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChrisMurphyCT","name":"Chris - Murphy","id":150078976,"id_str":"150078976","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1308446483323203586,"in_reply_to_status_id_str":"1308446483323203586","in_reply_to_user_id":150078976,"in_reply_to_user_id_str":"150078976","in_reply_to_screen_name":"ChrisMurphyCT","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":783710221189386240,"id_str":"783710221189386240","name":"Alle - McVickers","screen_name":"Upijata","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":306,"listed_count":0,"created_at":"Wed - Oct 05 16:47:32 +0000 2016","favourites_count":6458,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Thu - Feb 10 16:56:11 +0000 2022","id":1491818288443232260,"id_str":"1491818288443232260","text":"@AccountableGOP - @RepMTG _","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AccountableGOP","name":"The - Republican Accountability Project","id":1265761679947771905,"id_str":"1265761679947771905","indices":[0,15]},{"screen_name":"RepMTG","name":"Rep. - Marjorie Taylor Greene","id":1344356576786866176,"id_str":"1344356576786866176","indices":[16,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1491525010997096449,"in_reply_to_status_id_str":"1491525010997096449","in_reply_to_user_id":1265761679947771905,"in_reply_to_user_id_str":"1265761679947771905","in_reply_to_screen_name":"AccountableGOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":245010915,"id_str":"245010915","name":"Shikata - ga nai","screen_name":"shikata_ganai","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":90,"friends_count":5000,"listed_count":0,"created_at":"Sun - Jan 30 17:25:44 +0000 2011","favourites_count":3773,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":326,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/747529428276744193\/rK5vIJrP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/747529428276744193\/rK5vIJrP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245010915\/1467725569","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258812220995178497,"id_str":"1258812220995178497","name":"japopo31","screen_name":"japopo31","location":"","description":"Backstreet - Jellyroll - Van The Man fan","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1096,"listed_count":0,"created_at":"Fri - May 08 17:34:01 +0000 2020","favourites_count":14174,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":471,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260302269247041536\/0gsfhN5f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260302269247041536\/0gsfhN5f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1258812220995178497\/1589560615","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1636661120,"id_str":"1636661120","name":"Demetrius - Howard","screen_name":"Demetri11148791","location":"Meridian, ID","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":125,"friends_count":443,"listed_count":0,"created_at":"Wed - Jul 31 23:40:33 +0000 2013","favourites_count":2112,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1166,"lang":null,"status":{"created_at":"Thu - Mar 24 16:38:17 +0000 2022","id":1507034073084039170,"id_str":"1507034073084039170","text":"@MomGloucester - @tedcruz @LindseyGrahamSC These people have no soul. I would hate to be a - family member or an associate of theirs.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MomGloucester","name":"gloucester - mom","id":1242155163005194240,"id_str":"1242155163005194240","indices":[0,14]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[15,23]},{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[24,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507029814565347343,"in_reply_to_status_id_str":"1507029814565347343","in_reply_to_user_id":1242155163005194240,"in_reply_to_user_id_str":"1242155163005194240","in_reply_to_screen_name":"MomGloucester","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263846947615629313\/nKQ5Yp2r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263846947615629313\/nKQ5Yp2r_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19050070,"id_str":"19050070","name":"Emily - Savors","screen_name":"esavors","location":"Columbus, Ohio","description":"Proud - Ohioan. Quiet activist. Liberal. Feminist. My views are my own, and proudly - so.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":419,"friends_count":4233,"listed_count":1,"created_at":"Fri - Jan 16 01:58:38 +0000 2009","favourites_count":24260,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1352,"lang":null,"status":{"created_at":"Sat - Mar 26 03:44:32 +0000 2022","id":1507564128424058886,"id_str":"1507564128424058886","text":"Disgusting. - McConnell''s decision on Ketanji Brown Jackson was predictably disingenuous https:\/\/t.co\/J1khm5k7Mr - via @msnbc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[116,122]}],"urls":[{"url":"https:\/\/t.co\/J1khm5k7Mr","expanded_url":"https:\/\/www.msnbc.com\/the-reidout\/reidout-blog\/mcconnell-ketanji-brown-jackson-rcna21532","display_url":"msnbc.com\/the-reidout\/re\u2026","indices":[88,111]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444470587552841734\/Tvz5fIqd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444470587552841734\/Tvz5fIqd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19050070\/1633223600","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297942332868894721,"id_str":"1297942332868894721","name":"@Kanoti - Notie","screen_name":"Kanoti32690680","location":"","description":"football","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":1622,"listed_count":0,"created_at":"Mon - Aug 24 17:02:42 +0000 2020","favourites_count":179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Fri - Oct 30 16:36:02 +0000 2020","id":1322215697817178113,"id_str":"1322215697817178113","text":"Follow - me I follow u mara that that https:\/\/t.co\/Q6Fk41izjq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1322215693014761480,"id_str":"1322215693014761480","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/Ell0KtqXgAgdrOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ell0KtqXgAgdrOX.jpg","url":"https:\/\/t.co\/Q6Fk41izjq","display_url":"pic.twitter.com\/Q6Fk41izjq","expanded_url":"https:\/\/twitter.com\/Kanoti32690680\/status\/1322215697817178113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":816,"h":612,"resize":"fit"},"medium":{"w":816,"h":612,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1322215693014761480,"id_str":"1322215693014761480","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/Ell0KtqXgAgdrOX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ell0KtqXgAgdrOX.jpg","url":"https:\/\/t.co\/Q6Fk41izjq","display_url":"pic.twitter.com\/Q6Fk41izjq","expanded_url":"https:\/\/twitter.com\/Kanoti32690680\/status\/1322215697817178113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":816,"h":612,"resize":"fit"},"medium":{"w":816,"h":612,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303718840975622145\/dTL4lzA7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303718840975622145\/dTL4lzA7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2538371299,"id_str":"2538371299","name":"Erit","screen_name":"shamamerit","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":1019,"listed_count":0,"created_at":"Sat - May 31 23:27:42 +0000 2014","favourites_count":1665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sat - Sep 01 14:28:15 +0000 2018","id":1035897125618499584,"id_str":"1035897125618499584","text":"https:\/\/t.co\/nVLrRIQKm2 - @MiaBeckerman @GinnyKenyon @RealtorGus @CryptoBLevi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GinnyKenyon","name":"Ginny - Kenyon","id":405159667,"id_str":"405159667","indices":[38,50]},{"screen_name":"RealtorGus","name":"Coach - Gus de la Pena","id":44006490,"id_str":"44006490","indices":[51,62]}],"urls":[{"url":"https:\/\/t.co\/nVLrRIQKm2","expanded_url":"https:\/\/goo.gl\/hpsg1s#upakaqihikiz&20775","display_url":"goo.gl\/hpsg1s#upakaqi\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2832295272,"id_str":"2832295272","name":"Jim - H","screen_name":"Jhoyt27","location":"Gardnerville Ranchos, NV","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":193,"listed_count":0,"created_at":"Thu - Sep 25 23:31:58 +0000 2014","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Sat - Mar 05 03:45:37 +0000 2022","id":1499954258879385601,"id_str":"1499954258879385601","text":"RT - @wyshynski: THE DROP hits at 6:15 p.m. ET! On tonight''s show:\n\n- @MapleLeafs - old rookie Michael Bunting on Auston Matthews'' golf game\n-\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wyshynski","name":"Greg - Wyshynski","id":28035990,"id_str":"28035990","indices":[3,13]},{"screen_name":"MapleLeafs","name":"Toronto - Maple Leafs","id":55594930,"id_str":"55594930","indices":[68,79]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 03 22:32:33 +0000 2022","id":1499513083798163457,"id_str":"1499513083798163457","text":"THE - DROP hits at 6:15 p.m. ET! On tonight''s show:\n\n- @MapleLeafs old rookie - Michael Bunting on Auston Matthews'' gol\u2026 https:\/\/t.co\/e6GWDe3uub","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MapleLeafs","name":"Toronto - Maple Leafs","id":55594930,"id_str":"55594930","indices":[53,64]}],"urls":[{"url":"https:\/\/t.co\/e6GWDe3uub","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499513083798163457","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/692864511942852611\/DUGnzznE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/692864511942852611\/DUGnzznE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2239760874,"id_str":"2239760874","name":"Bret - Graham","screen_name":"bretg1t","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":314,"listed_count":0,"created_at":"Tue - Dec 10 21:01:21 +0000 2013","favourites_count":56,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Tue - Mar 08 20:24:37 +0000 2022","id":1501292828424486918,"id_str":"1501292828424486918","text":"@CitizensBank - The absolute worst! As a former HSBC customer I can\u2019t believe how bad - this transition has been. Funct\u2026 https:\/\/t.co\/DhbxcQCLvS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CitizensBank","name":"Citizens","id":210953833,"id_str":"210953833","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/DhbxcQCLvS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501292828424486918","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":210953833,"in_reply_to_user_id_str":"210953833","in_reply_to_screen_name":"CitizensBank","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542313801387745282\/ScMe8KCu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542313801387745282\/ScMe8KCu_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14955837,"id_str":"14955837","name":"athenawbeads","screen_name":"pdxathena","location":"Portland - Oregon","description":"","url":"https:\/\/t.co\/w6nJs6mnjq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/w6nJs6mnjq","expanded_url":"http:\/\/www.limo.com","display_url":"limo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":488,"listed_count":0,"created_at":"Fri - May 30 16:22:16 +0000 2008","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":182,"lang":null,"status":{"created_at":"Sat - May 04 05:45:02 +0000 2019","id":1124550482985242624,"id_str":"1124550482985242624","text":"@LawMurrayTheNU - https:\/\/t.co\/IzLOesova3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LawMurrayTheNU","name":"Law - Murray \ud83e\udd57","id":66042578,"id_str":"66042578","indices":[0,15]}],"urls":[],"media":[{"id":1124550476886753280,"id_str":"1124550476886753280","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/D5s0s1rUwAAb5KX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/D5s0s1rUwAAb5KX.jpg","url":"https:\/\/t.co\/IzLOesova3","display_url":"pic.twitter.com\/IzLOesova3","expanded_url":"https:\/\/twitter.com\/pdxathena\/status\/1124550482985242624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"},"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1124550476886753280,"id_str":"1124550476886753280","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/D5s0s1rUwAAb5KX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/D5s0s1rUwAAb5KX.jpg","url":"https:\/\/t.co\/IzLOesova3","display_url":"pic.twitter.com\/IzLOesova3","expanded_url":"https:\/\/twitter.com\/pdxathena\/status\/1124550482985242624\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"},"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/D5s0s1rUwAAb5KX.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1124550191866994693,"in_reply_to_status_id_str":"1124550191866994693","in_reply_to_user_id":66042578,"in_reply_to_user_id_str":"66042578","in_reply_to_screen_name":"LawMurrayTheNU","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/873912930139426817\/PTlyKntg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/873912930139426817\/PTlyKntg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2488848600,"id_str":"2488848600","name":"Florence - Desmangles","screen_name":"rarabwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":48,"friends_count":268,"listed_count":0,"created_at":"Sat - May 10 21:57:05 +0000 2014","favourites_count":2394,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499432111380889600\/V_Yu9Lb6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499432111380889600\/V_Yu9Lb6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2488848600\/1407908627","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":805558615218098176,"id_str":"805558615218098176","name":"D.Chapman\ud83d\udc9b\ud83c\udf3b\ud83c\uddfa\ud83c\udde6\ud83d\udc99","screen_name":"trinityriver299","location":"Northern - California, USA","description":"Retired Trinity County Supervisor, Social - Worker and Resister. No, I will not sit down & shut up! #Resist #Antifa","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":1335,"listed_count":1,"created_at":"Sun - Dec 04 23:45:15 +0000 2016","favourites_count":39135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27997,"lang":null,"status":{"created_at":"Sat - Mar 26 05:07:36 +0000 2022","id":1507585033145442309,"id_str":"1507585033145442309","text":"@amyjay401 - Walk out","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amyjay401","name":"Dr. - Amy Rutenberg","id":885901033,"id_str":"885901033","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507052611962290182,"in_reply_to_status_id_str":"1507052611962290182","in_reply_to_user_id":885901033,"in_reply_to_user_id_str":"885901033","in_reply_to_screen_name":"amyjay401","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498713094704406529\/hp5iw8FL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498713094704406529\/hp5iw8FL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805558615218098176\/1645846635","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2745442625,"id_str":"2745442625","name":"Little - red","screen_name":"Carolynrorex","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":950,"listed_count":0,"created_at":"Sun - Aug 17 15:34:24 +0000 2014","favourites_count":24430,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":185,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1148407509176082432,"id_str":"1148407509176082432","name":"Daltonjfarmer","screen_name":"daltonjfarmer","location":"","description":"Family - man,drummer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":634,"listed_count":3,"created_at":"Tue - Jul 09 01:44:21 +0000 2019","favourites_count":9032,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":null,"status":{"created_at":"Fri - Feb 25 03:06:11 +0000 2022","id":1497045229295136770,"id_str":"1497045229295136770","text":"@FritzScherz - @NealSchonMusic @aegpresents @JourneyOfficial @toto99com Oppps","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FritzScherz","name":"Fritz - Scherz","id":17301179,"id_str":"17301179","indices":[0,12]},{"screen_name":"NealSchonMusic","name":"NEAL - SCHON MUSIC","id":917457446,"id_str":"917457446","indices":[13,28]},{"screen_name":"aegpresents","name":"AEG - Presents","id":700084087,"id_str":"700084087","indices":[29,41]},{"screen_name":"JourneyOfficial","name":"JOURNEY","id":257234051,"id_str":"257234051","indices":[42,58]},{"screen_name":"toto99com","name":"TOTO","id":116562141,"id_str":"116562141","indices":[59,69]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1496911978392076302,"in_reply_to_status_id_str":"1496911978392076302","in_reply_to_user_id":17301179,"in_reply_to_user_id_str":"17301179","in_reply_to_screen_name":"FritzScherz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1148409230069682176\/WLSn_BR7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148409230069682176\/WLSn_BR7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":133833727,"id_str":"133833727","name":"Andris - Vilks","screen_name":"AndrisVilks","location":"Pier\u012bga, Vidzeme","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9875,"friends_count":199,"listed_count":117,"created_at":"Fri - Apr 16 19:09:57 +0000 2010","favourites_count":705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1691,"lang":null,"status":{"created_at":"Wed - Mar 23 20:03:07 +0000 2022","id":1506723233852186625,"id_str":"1506723233852186625","text":"RT - @rutkaste: Putina pras\u012bba par g\u0101zi nor\u0113\u0137in\u0101ties rub\u013cos - ir centiens atjaunot rub\u013ca konvert\u0113jam\u012bbu (tas nav tikai kursa - jaut\u0101jums). Iesp\u0113j\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rutkaste","name":"Uldis - Rutkaste","id":97387044,"id_str":"97387044","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:20:14 +0000 2022","id":1506697345408323586,"id_str":"1506697345408323586","text":"Putina - pras\u012bba par g\u0101zi nor\u0113\u0137in\u0101ties rub\u013cos ir centiens - atjaunot rub\u013ca konvert\u0113jam\u012bbu (tas nav tikai kursa jaut\u0101jum\u2026 - https:\/\/t.co\/LFYkcikx0O","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LFYkcikx0O","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506697345408323586","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":331,"favorited":false,"retweeted":false,"lang":"lv"},"is_quote_status":false,"retweet_count":66,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"lv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541853598229864448\/RpktceJr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541853598229864448\/RpktceJr_normal.png","profile_link_color":"447F94","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":843864652320837632,"id_str":"843864652320837632","name":"Rajan - Punitharajah","screen_name":"RajanPunitha24","location":"London","description":"Blind - men and elephant","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":231,"listed_count":0,"created_at":"Mon - Mar 20 16:39:46 +0000 2017","favourites_count":283,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":128,"lang":null,"status":{"created_at":"Thu - Mar 17 21:30:45 +0000 2022","id":1504570961865097224,"id_str":"1504570961865097224","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/843896908317937664\/ErvVU_5h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843896908317937664\/ErvVU_5h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843864652320837632\/1490035699","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":446931873,"id_str":"446931873","name":"Steven - Tregidgo","screen_name":"sailortrigger","location":"Peterhead, Scotland, UK","description":"\ud83c\uddec\ud83c\udde7 - British seaman and shellback \ud83d\udc22. Craft beer enthusiast \ud83c\udf7a. - Passionate about fishing \ud83c\udfa3 \u0e23\u0e31\u0e01\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e44\u0e17\u0e22 - \ud83c\uddf9\ud83c\udded and happily married. Fair winds and following seas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":212,"friends_count":1837,"listed_count":7,"created_at":"Mon - Dec 26 09:28:24 +0000 2011","favourites_count":688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":228,"lang":null,"status":{"created_at":"Sun - Aug 16 06:39:04 +0000 2020","id":1294886376672985088,"id_str":"1294886376672985088","text":"@oneplus - Yeah my OnePlus 6 is still going strong. Even dropped it a few times \ud83d\ude31. - Normally I like to try different m\u2026 https:\/\/t.co\/FlhuFx868z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oneplus","name":"OnePlus","id":2196922086,"id_str":"2196922086","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/FlhuFx868z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1294886376672985088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1294861445562277894,"in_reply_to_status_id_str":"1294861445562277894","in_reply_to_user_id":2196922086,"in_reply_to_user_id_str":"2196922086","in_reply_to_screen_name":"oneplus","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/894929823314972672\/jYqlpdG9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/894929823314972672\/jYqlpdG9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446931873\/1596494518","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2412807660,"id_str":"2412807660","name":"Kingtut93","screen_name":"dreese802","location":"","description":"IJWTESP - point blank period if we fuck..........we fuck .......26yo","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":1283,"listed_count":0,"created_at":"Wed - Mar 26 15:59:30 +0000 2014","favourites_count":9687,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":636,"lang":null,"status":{"created_at":"Sun - Mar 06 03:25:39 +0000 2022","id":1500311622157541376,"id_str":"1500311622157541376","text":"RT - @RealKayssi: Only #RT if you\u2019d fuck me raw \n\n#thick #ass #boobs #milf - #booty #onlyfans https:\/\/t.co\/pd1zDa6XRa","truncated":false,"entities":{"hashtags":[{"text":"RT","indices":[21,24]},{"text":"thick","indices":[48,54]},{"text":"ass","indices":[55,59]},{"text":"boobs","indices":[60,66]},{"text":"milf","indices":[67,72]},{"text":"booty","indices":[73,79]},{"text":"onlyfans","indices":[80,89]}],"symbols":[],"user_mentions":[{"screen_name":"RealKayssi","name":"Kay - Ssi \ud83d\udc95 $3 PROMO","id":1323361676381560835,"id_str":"1323361676381560835","indices":[3,14]}],"urls":[],"media":[{"id":1500077631995359233,"id_str":"1500077631995359233","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","url":"https:\/\/t.co\/pd1zDa6XRa","display_url":"pic.twitter.com\/pd1zDa6XRa","expanded_url":"https:\/\/twitter.com\/RealKayssi\/status\/1500077648197951492\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1500077648197951492,"source_status_id_str":"1500077648197951492","source_user_id":1323361676381560835,"source_user_id_str":"1323361676381560835"}]},"extended_entities":{"media":[{"id":1500077631995359233,"id_str":"1500077631995359233","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","url":"https:\/\/t.co\/pd1zDa6XRa","display_url":"pic.twitter.com\/pd1zDa6XRa","expanded_url":"https:\/\/twitter.com\/RealKayssi\/status\/1500077648197951492\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1500077648197951492,"source_status_id_str":"1500077648197951492","source_user_id":1323361676381560835,"source_user_id_str":"1323361676381560835"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 11:55:56 +0000 2022","id":1500077648197951492,"id_str":"1500077648197951492","text":"Only - #RT if you\u2019d fuck me raw \n\n#thick #ass #boobs #milf #booty #onlyfans - https:\/\/t.co\/pd1zDa6XRa","truncated":false,"entities":{"hashtags":[{"text":"RT","indices":[5,8]},{"text":"thick","indices":[32,38]},{"text":"ass","indices":[39,43]},{"text":"boobs","indices":[44,50]},{"text":"milf","indices":[51,56]},{"text":"booty","indices":[57,63]},{"text":"onlyfans","indices":[64,73]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500077631995359233,"id_str":"1500077631995359233","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","url":"https:\/\/t.co\/pd1zDa6XRa","display_url":"pic.twitter.com\/pd1zDa6XRa","expanded_url":"https:\/\/twitter.com\/RealKayssi\/status\/1500077648197951492\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500077631995359233,"id_str":"1500077631995359233","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFYqJaXsAE8Ykd.jpg","url":"https:\/\/t.co\/pd1zDa6XRa","display_url":"pic.twitter.com\/pd1zDa6XRa","expanded_url":"https:\/\/twitter.com\/RealKayssi\/status\/1500077648197951492\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":664,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":109,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046382828005535744\/MzwV7ef__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046382828005535744\/MzwV7ef__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2412807660\/1605816289","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":325979538,"id_str":"325979538","name":"MFR - Management","screen_name":"mfrmgmt","location":"","description":"Feature Film - and Television DGA Production Manager & Line Producer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":492,"listed_count":2,"created_at":"Wed - Jun 29 05:17:57 +0000 2011","favourites_count":2170,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":899,"lang":null,"status":{"created_at":"Fri - Jan 14 00:46:14 +0000 2022","id":1481789719772123136,"id_str":"1481789719772123136","text":"@TheAcademy - Steve Martin and Martin Short","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheAcademy","name":"The - Academy","id":200163448,"id_str":"200163448","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1481433145492733953,"in_reply_to_status_id_str":"1481433145492733953","in_reply_to_user_id":200163448,"in_reply_to_user_id_str":"200163448","in_reply_to_screen_name":"TheAcademy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3453224734\/d703dad2d441b4ea3163db449f15a533_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3453224734\/d703dad2d441b4ea3163db449f15a533_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325979538\/1364676668","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33940290,"id_str":"33940290","name":"Matt - Rogers, PhD","screen_name":"MattRogers0","location":"Washington, USA","description":"PhD - Sport Scientist, NSCA CSCS, old school runner, @EKU_XCTF ''85\nFighting against - anti-science misinformation\/disinformation","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":1781,"listed_count":0,"created_at":"Tue - Apr 21 15:39:18 +0000 2009","favourites_count":5861,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1306,"lang":null,"status":{"created_at":"Fri - Mar 25 18:02:49 +0000 2022","id":1507417735352913923,"id_str":"1507417735352913923","text":"@HeidiOCanada - As a native of Kentucky I am always disappointed in how many Kentuckians have - no idea the state was n\u2026 https:\/\/t.co\/zHkAL9wcKK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HeidiOCanada","name":"Heidi","id":1079382152163160064,"id_str":"1079382152163160064","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/zHkAL9wcKK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507417735352913923","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507347306504462343,"in_reply_to_status_id_str":"1507347306504462343","in_reply_to_user_id":1079382152163160064,"in_reply_to_user_id_str":"1079382152163160064","in_reply_to_screen_name":"HeidiOCanada","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/758389835241447425\/QD_XLyZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758389835241447425\/QD_XLyZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33940290\/1469649342","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":819256908108496896,"id_str":"819256908108496896","name":"Yolanda - Stripling","screen_name":"Yolanda52296178","location":"Fort Valley, GA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":693,"listed_count":0,"created_at":"Wed - Jan 11 18:57:22 +0000 2017","favourites_count":12257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":193,"lang":null,"status":{"created_at":"Wed - Mar 31 19:13:27 +0000 2021","id":1377338269600346117,"id_str":"1377338269600346117","text":"@blackwomenviews - Congratulations \u2764","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BlackWomenViews","name":"BlackWomenViews","id":1182686511340371968,"id_str":"1182686511340371968","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1377336584911998978,"in_reply_to_status_id_str":"1377336584911998978","in_reply_to_user_id":1066773270773547008,"in_reply_to_user_id_str":"1066773270773547008","in_reply_to_screen_name":"ReecieColbert","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318932914676158465\/h8VqZVEF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318932914676158465\/h8VqZVEF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/819256908108496896\/1511194045","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238544494011854851,"id_str":"1238544494011854851","name":"Yahaya - Saliu","screen_name":"YahayaSaliu1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":526,"listed_count":0,"created_at":"Fri - Mar 13 19:16:49 +0000 2020","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Jun 19 22:15:39 +0000 2020","id":1274103578504892417,"id_str":"1274103578504892417","text":"Collect - cash every day, please help me, 2000NGN for you! This is free bonus provided - by bangcasino. Everyone can ge\u2026 https:\/\/t.co\/ou1F4Cvwvm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ou1F4Cvwvm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1274103578504892417","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241441857944641538\/t62X44bQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241441857944641538\/t62X44bQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1197184219774148609,"id_str":"1197184219774148609","name":"Redbeardbeefjerky","screen_name":"Redbearbeefjer1","location":"","description":"O - aperitivo das Gal\u00e1xias","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":4988,"listed_count":1,"created_at":"Wed - Nov 20 16:05:53 +0000 2019","favourites_count":3536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":144,"lang":null,"status":{"created_at":"Sun - Feb 27 18:52:22 +0000 2022","id":1498008122711056388,"id_str":"1498008122711056388","text":"@Sandra_Costa71 - Brita","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sandra_Costa71","name":"Sandra - Costa","id":1326097661439651840,"id_str":"1326097661439651840","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497678568372977670,"in_reply_to_status_id_str":"1497678568372977670","in_reply_to_user_id":1326097661439651840,"in_reply_to_user_id_str":"1326097661439651840","in_reply_to_screen_name":"Sandra_Costa71","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197189118431780864\/vcTG50WF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197189118431780864\/vcTG50WF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2509233749,"id_str":"2509233749","name":"Janet - farmer","screen_name":"janetfa23838491","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":4999,"listed_count":1,"created_at":"Fri - Apr 25 21:55:45 +0000 2014","favourites_count":71,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Oct 21 01:52:08 +0000 2019","id":1186097807201058817,"id_str":"1186097807201058817","text":"#90DayFiance","truncated":false,"entities":{"hashtags":[{"text":"90DayFiance","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223848820750143495,"id_str":"1223848820750143495","name":"JJC39","screen_name":"JJC395","location":"Abuja, - Nigeria","description":"I love good football...#coach, house agent.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":371,"friends_count":1409,"listed_count":0,"created_at":"Sun - Feb 02 06:01:32 +0000 2020","favourites_count":4285,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":366,"lang":null,"status":{"created_at":"Sun - May 30 17:52:02 +0000 2021","id":1399061052780859393,"id_str":"1399061052780859393","text":"RT - @ESPNFC: Look what that UCL win meant to Kante and his family \ud83d\udc99 - https:\/\/t.co\/eBk1WveXb2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ESPNFC","name":"ESPN - FC","id":18091004,"id_str":"18091004","indices":[3,10]}],"urls":[],"media":[{"id":1399055337479626752,"id_str":"1399055337479626752","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","url":"https:\/\/t.co\/eBk1WveXb2","display_url":"pic.twitter.com\/eBk1WveXb2","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1399055340424019976\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1000,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"}},"source_status_id":1399055340424019976,"source_status_id_str":"1399055340424019976","source_user_id":18091004,"source_user_id_str":"18091004"}]},"extended_entities":{"media":[{"id":1399055337479626752,"id_str":"1399055337479626752","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","url":"https:\/\/t.co\/eBk1WveXb2","display_url":"pic.twitter.com\/eBk1WveXb2","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1399055340424019976\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1000,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"}},"source_status_id":1399055340424019976,"source_status_id_str":"1399055340424019976","source_user_id":18091004,"source_user_id_str":"18091004"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - May 30 17:29:21 +0000 2021","id":1399055340424019976,"id_str":"1399055340424019976","text":"Look - what that UCL win meant to Kante and his family \ud83d\udc99 https:\/\/t.co\/eBk1WveXb2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1399055337479626752,"id_str":"1399055337479626752","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","url":"https:\/\/t.co\/eBk1WveXb2","display_url":"pic.twitter.com\/eBk1WveXb2","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1399055340424019976\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1000,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1399055337479626752,"id_str":"1399055337479626752","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E2pxaruWYAAS1nI.jpg","url":"https:\/\/t.co\/eBk1WveXb2","display_url":"pic.twitter.com\/eBk1WveXb2","expanded_url":"https:\/\/twitter.com\/ESPNFC\/status\/1399055340424019976\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":1000,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9031,"favorite_count":65987,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9031,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286301399735775236\/YalIM1M9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286301399735775236\/YalIM1M9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86141735,"id_str":"86141735","name":"MarketerByTrade","screen_name":"Laney1018","location":"","description":"MBA, - Marketing Leader, Adjunct Professor","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":269,"listed_count":18,"created_at":"Thu - Oct 29 19:23:18 +0000 2009","favourites_count":7401,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2260,"lang":null,"status":{"created_at":"Tue - Mar 15 12:47:09 +0000 2022","id":1503714416038137856,"id_str":"1503714416038137856","text":"@joncoopertweets - D","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503389785615908874,"in_reply_to_status_id_str":"1503389785615908874","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349905368265191425\/sfSTPjc2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349905368265191425\/sfSTPjc2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86141735\/1487861631","profile_link_color":"981CEB","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"F0F0F5","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":393773275,"id_str":"393773275","name":"Cathy - Ahrens","screen_name":"ahrens_cathy","location":"Bettendorf Iowa","description":"Bettendorf - High School Social Studies Teacher - AP https:\/\/t.co\/6RaZOzNe6a, Honors - U.S. History, National Board Certified","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/6RaZOzNe6a","expanded_url":"http:\/\/U.S.Gov","display_url":"U.S.Gov","indices":[51,74]}]}},"protected":false,"followers_count":194,"friends_count":580,"listed_count":9,"created_at":"Wed - Oct 19 01:52:58 +0000 2011","favourites_count":2122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2104,"lang":null,"status":{"created_at":"Sat - Mar 26 02:36:11 +0000 2022","id":1507546928703279108,"id_str":"1507546928703279108","text":"RT - @jefftimmer: The fact that the former POTUS and the Republicans in Congress - and in the Judiciary were all part of a coup attempt seems l\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jefftimmer","name":"Jeff - Timmer","id":19300475,"id_str":"19300475","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:17:26 +0000 2022","id":1507361018741207060,"id_str":"1507361018741207060","text":"The - fact that the former POTUS and the Republicans in Congress and in the Judiciary - were all part of a coup attempt\u2026 https:\/\/t.co\/UDxm6rSlWq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UDxm6rSlWq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507361018741207060","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":500,"favorite_count":2966,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":500,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1833833780\/Cathy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1833833780\/Cathy_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":66512235,"id_str":"66512235","name":"Mart\u00edn - Sarmiento","screen_name":"mesarmiento","location":"Miami, FL","description":"Ingeniero - Mec\u00e1nico, empresario independiente en el \u00e1rea tecnol\u00f3gica.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":666,"listed_count":5,"created_at":"Mon - Aug 17 22:43:10 +0000 2009","favourites_count":5601,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1329,"lang":null,"status":{"created_at":"Fri - Mar 25 22:21:04 +0000 2022","id":1507482725833490437,"id_str":"1507482725833490437","text":"RT - @Retro_Series: El Santo Grial de los creyones \ud83d\ude09 #24Mar \n\nComparte - \ud83d\udd04 https:\/\/t.co\/fJdSyyqUm4","truncated":false,"entities":{"hashtags":[{"text":"24Mar","indices":[51,57]}],"symbols":[],"user_mentions":[{"screen_name":"Retro_Series","name":"Retro","id":969357257623433216,"id_str":"969357257623433216","indices":[3,16]}],"urls":[],"media":[{"id":1507120561763360774,"id_str":"1507120561763360774","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","url":"https:\/\/t.co\/fJdSyyqUm4","display_url":"pic.twitter.com\/fJdSyyqUm4","expanded_url":"https:\/\/twitter.com\/Retro_Series\/status\/1507120593447051267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":593,"resize":"fit"},"large":{"w":1080,"h":942,"resize":"fit"},"medium":{"w":1080,"h":942,"resize":"fit"}},"source_status_id":1507120593447051267,"source_status_id_str":"1507120593447051267","source_user_id":969357257623433216,"source_user_id_str":"969357257623433216"}]},"extended_entities":{"media":[{"id":1507120561763360774,"id_str":"1507120561763360774","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","url":"https:\/\/t.co\/fJdSyyqUm4","display_url":"pic.twitter.com\/fJdSyyqUm4","expanded_url":"https:\/\/twitter.com\/Retro_Series\/status\/1507120593447051267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":593,"resize":"fit"},"large":{"w":1080,"h":942,"resize":"fit"},"medium":{"w":1080,"h":942,"resize":"fit"}},"source_status_id":1507120593447051267,"source_status_id_str":"1507120593447051267","source_user_id":969357257623433216,"source_user_id_str":"969357257623433216"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:22:05 +0000 2022","id":1507120593447051267,"id_str":"1507120593447051267","text":"El - Santo Grial de los creyones \ud83d\ude09 #24Mar \n\nComparte \ud83d\udd04 - https:\/\/t.co\/fJdSyyqUm4","truncated":false,"entities":{"hashtags":[{"text":"24Mar","indices":[33,39]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507120561763360774,"id_str":"1507120561763360774","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","url":"https:\/\/t.co\/fJdSyyqUm4","display_url":"pic.twitter.com\/fJdSyyqUm4","expanded_url":"https:\/\/twitter.com\/Retro_Series\/status\/1507120593447051267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":593,"resize":"fit"},"large":{"w":1080,"h":942,"resize":"fit"},"medium":{"w":1080,"h":942,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507120561763360774,"id_str":"1507120561763360774","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpeKnWXoAYRwTp.jpg","url":"https:\/\/t.co\/fJdSyyqUm4","display_url":"pic.twitter.com\/fJdSyyqUm4","expanded_url":"https:\/\/twitter.com\/Retro_Series\/status\/1507120593447051267\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":593,"resize":"fit"},"large":{"w":1080,"h":942,"resize":"fit"},"medium":{"w":1080,"h":942,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":537,"favorite_count":3847,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":537,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/703238695239942144\/QuQtMAmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/703238695239942144\/QuQtMAmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66512235\/1405341993","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1510725380,"id_str":"1510725380","name":"Bob","screen_name":"SmilinBob2","location":"","description":"Democrat - from Nebraska. Live in Montana.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":219,"friends_count":593,"listed_count":1,"created_at":"Wed - Jun 12 14:45:52 +0000 2013","favourites_count":3399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4543,"lang":null,"status":{"created_at":"Sat - Mar 26 03:15:31 +0000 2022","id":1507556827789094913,"id_str":"1507556827789094913","text":"RT - @chipfranklin: If the spouse of a Supreme Court Justice tries to overthrow - our government, shouldn''t that justice be impeached?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:22:26 +0000 2022","id":1507498171890647041,"id_str":"1507498171890647041","text":"If - the spouse of a Supreme Court Justice tries to overthrow our government, shouldn''t - that justice be impeached?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":839,"favorite_count":3471,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":839,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261569064655\/c34c5e3367509e61f7b926e9ad5cd0e6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261569064655\/c34c5e3367509e61f7b926e9ad5cd0e6_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1093714439742738432,"id_str":"1093714439742738432","name":"Christian","screen_name":"CJOlsen4293","location":"Taos, - NM","description":"Independent thinker...don\u2019t care for Fox or CNN or - Republicans or Democrats! Truth","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":201,"friends_count":1173,"listed_count":1,"created_at":"Fri - Feb 08 03:33:37 +0000 2019","favourites_count":468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2366,"lang":null,"status":{"created_at":"Sat - Mar 26 01:27:02 +0000 2022","id":1507529528758865921,"id_str":"1507529528758865921","text":"@TheDividedStat3 - America has been destroyed?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDividedStat3","name":"The - Divided States Of America","id":1318709340627415040,"id_str":"1318709340627415040","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507483676950421505,"in_reply_to_status_id_str":"1507483676950421505","in_reply_to_user_id":1318709340627415040,"in_reply_to_user_id_str":"1318709340627415040","in_reply_to_screen_name":"TheDividedStat3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504291515224530945\/apldXGuA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504291515224530945\/apldXGuA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1093714439742738432\/1647486034","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":142771317,"id_str":"142771317","name":"Robert - Balder","screen_name":"RedlabBob2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":3157,"listed_count":2,"created_at":"Tue - May 11 18:29:31 +0000 2010","favourites_count":8337,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Wed - Oct 02 04:53:39 +0000 2019","id":1179258118720704517,"id_str":"1179258118720704517","text":"@BillKristol - No!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BillKristol","name":"Bill - Kristol","id":2800581040,"id_str":"2800581040","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1178863847064645637,"in_reply_to_status_id_str":"1178863847064645637","in_reply_to_user_id":2800581040,"in_reply_to_user_id_str":"2800581040","in_reply_to_screen_name":"BillKristol","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3356107224\/d74f154efe556868be3e7c667ddf5302_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3356107224\/d74f154efe556868be3e7c667ddf5302_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1013993711930413056,"id_str":"1013993711930413056","name":"bonnie","screen_name":"bonnie76034993","location":"","description":"NFL - NFL","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":84,"listed_count":0,"created_at":"Tue - Jul 03 03:51:54 +0000 2018","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":191,"lang":null,"status":{"created_at":"Thu - Mar 24 19:47:25 +0000 2022","id":1507081670494666761,"id_str":"1507081670494666761","text":"@LindseyGrahamSC - Who cares what you think","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LindseyGrahamSC","name":"Lindsey - Graham","id":432895323,"id_str":"432895323","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507063687919587328,"in_reply_to_status_id_str":"1507063687919587328","in_reply_to_user_id":432895323,"in_reply_to_user_id_str":"432895323","in_reply_to_screen_name":"LindseyGrahamSC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1013997267982970881\/CZX-qW-U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1013997267982970881\/CZX-qW-U_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":125094394,"id_str":"125094394","name":"Susan - Alnes","screen_name":"smalnes","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":727,"listed_count":0,"created_at":"Sun - Mar 21 17:26:35 +0000 2010","favourites_count":1243,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sun - Jun 16 00:33:19 +0000 2019","id":1140054712265392128,"id_str":"1140054712265392128","text":"@RossSchulman - We had a cool jazz station in NYC turn into country western during a commercial - break once...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RossSchulman","name":"Ross - Schulman \ud83c\uddfa\ud83c\udde6","id":21438445,"id_str":"21438445","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1139699671797043200,"in_reply_to_status_id_str":"1139699671797043200","in_reply_to_user_id":21438445,"in_reply_to_user_id_str":"21438445","in_reply_to_screen_name":"RossSchulman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":277127601,"id_str":"277127601","name":"gary - gudinkas","screen_name":"gmg814","location":"west suffield, ct usa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":1363,"listed_count":2,"created_at":"Mon - Apr 04 19:10:37 +0000 2011","favourites_count":10436,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1109,"lang":null,"status":{"created_at":"Sat - Mar 26 02:43:04 +0000 2022","id":1507548660166537216,"id_str":"1507548660166537216","text":"I - firmly believe there is a class of people in this country for whom the rule - of law does not apply. #January6th #January6thCommittee","truncated":false,"entities":{"hashtags":[{"text":"January6th","indices":[101,112]},{"text":"January6thCommittee","indices":[113,133]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723150162,"id_str":"723150162","name":"Marcia - Yanuss","screen_name":"MarciaYanuss","location":"Washington, USA","description":"Attitude - is everything","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":358,"listed_count":1,"created_at":"Sun - Jul 29 01:37:10 +0000 2012","favourites_count":579,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":262,"lang":null,"status":{"created_at":"Sat - Jan 29 19:58:35 +0000 2022","id":1487515539480014848,"id_str":"1487515539480014848","text":"@johnrich - The vaccine\u2019s purpose is to prevent serious illness, hospitalization - or death not to prevent all illness with the COVID-19 virus.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnrich","name":"John - Rich","id":16869718,"id_str":"16869718","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1487230059240996867,"in_reply_to_status_id_str":"1487230059240996867","in_reply_to_user_id":16869718,"in_reply_to_user_id_str":"16869718","in_reply_to_screen_name":"johnrich","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/784907829958160384\/EYmSViWD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/784907829958160384\/EYmSViWD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723150162\/1475971647","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1553388469,"id_str":"1553388469","name":"Deborah - Bozarth","screen_name":"DeborahBozarth","location":"Trenton, NJ","description":"NJ - Association for Justice","url":"http:\/\/t.co\/w3oX2MkEtq","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/w3oX2MkEtq","expanded_url":"http:\/\/www.nj-justice.org","display_url":"nj-justice.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":338,"listed_count":1,"created_at":"Fri - Jun 28 15:33:52 +0000 2013","favourites_count":89,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Thu - Jul 30 03:03:11 +0000 2020","id":1288671453131481089,"id_str":"1288671453131481089","text":"RT - @NJAssocJustice: Boardwalk Seminar 2020 will meet CLE requirements of trial - attorneys and include outstanding local and regional speaker\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NJAssocJustice","name":"New - Jersey Association for Justice","id":3095387566,"id_str":"3095387566","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 30 01:51:09 +0000 2020","id":1288653325358030852,"id_str":"1288653325358030852","text":"Boardwalk - Seminar 2020 will meet CLE requirements of trial attorneys and include outstanding - local and regional spe\u2026 https:\/\/t.co\/rBvrOZUtuM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rBvrOZUtuM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1288653325358030852","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000782119271\/122b7f15bc23dd97849578e39d1a6399_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000782119271\/122b7f15bc23dd97849578e39d1a6399_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553388469\/1385265752","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299428005568229380,"id_str":"1299428005568229380","name":"Yakup - Erdal ERT\u00dcRK","screen_name":"YakupErdalERTR1","location":"I\u011fd\u0131r\/T\u00fcrkiye","description":"Do\u00e7. - Dr.","url":"https:\/\/t.co\/J5b8UOv907","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/J5b8UOv907","expanded_url":"https:\/\/akademik.yok.gov.tr\/AkademikArama\/view\/viewAuthor.jsp","display_url":"akademik.yok.gov.tr\/AkademikArama\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":503,"friends_count":1779,"listed_count":1,"created_at":"Fri - Aug 28 19:26:11 +0000 2020","favourites_count":80056,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9499,"lang":null,"status":{"created_at":"Sat - Mar 26 09:53:02 +0000 2022","id":1507656865164976128,"id_str":"1507656865164976128","text":"G\u00fclmek - mi laz\u0131m a\u011flamak m\u0131? \n\nDeep Humor Karma R\u00f6portaj Serisi - (Vol16) https:\/\/t.co\/5jSnRRq8Tk @YouTube arac\u0131l\u0131\u011f\u0131yla","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[95,103]}],"urls":[{"url":"https:\/\/t.co\/5jSnRRq8Tk","expanded_url":"https:\/\/youtu.be\/VwtwsBObZjA","display_url":"youtu.be\/VwtwsBObZjA","indices":[71,94]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299429016940806149\/6d0re6bU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299429016940806149\/6d0re6bU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299428005568229380\/1638447063","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1258728988773699585,"id_str":"1258728988773699585","name":"Jimmy","screen_name":"Jimmy84618390","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":415,"listed_count":0,"created_at":"Fri - May 08 12:03:18 +0000 2020","favourites_count":5258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Tue - Dec 01 23:46:50 +0000 2020","id":1333920524628582400,"id_str":"1333920524628582400","text":"@_marlynnn - So what about bible","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1333201717064736770,"in_reply_to_status_id_str":"1333201717064736770","in_reply_to_user_id":1267204868126605312,"in_reply_to_user_id_str":"1267204868126605312","in_reply_to_screen_name":"_marlynmayo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260203663940820992\/s4L-kssB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260203663940820992\/s4L-kssB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":91934121,"id_str":"91934121","name":"Herb - Stewart","screen_name":"HerbStewart","location":"","description":"Just using - this as a newsfeed. I don''t tweet or have followers. Following and RTs =\/= - endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":4998,"listed_count":3,"created_at":"Mon - Nov 23 04:14:11 +0000 2009","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287933916678991873,"id_str":"1287933916678991873","name":"satish - Kumar","screen_name":"satishK44514435","location":"","description":"I am honest - persona and always to try to help others","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":302,"listed_count":0,"created_at":"Tue - Jul 28 02:12:48 +0000 2020","favourites_count":19083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Thu - Mar 24 02:31:10 +0000 2022","id":1506820891623460869,"id_str":"1506820891623460869","text":"@dilipkpandey - @BhagwantMann Big salute to the AAP government in Punjab","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dilipkpandey","name":"\u0924\u094b\u0921\u093c\u093f\u092f\u0947 - \u092e\u0924, \u091c\u094b\u0921\u093c\u093f\u092f\u0947 \u2018\u092d\u093e\u0930\u0924\u2019 - \ud83c\uddee\ud83c\uddf3","id":16967612,"id_str":"16967612","indices":[0,13]},{"screen_name":"BhagwantMann","name":"Bhagwant - Mann","id":170396389,"id_str":"170396389","indices":[14,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506552467252670464,"in_reply_to_status_id_str":"1506552467252670464","in_reply_to_user_id":16967612,"in_reply_to_user_id_str":"16967612","in_reply_to_screen_name":"dilipkpandey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287934142261284864\/15KsNnuo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287934142261284864\/15KsNnuo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16097363,"id_str":"16097363","name":"topperlilien","screen_name":"topperlilien","location":"Brooklyn, - NY","description":"Writer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":1438,"listed_count":2,"created_at":"Tue - Sep 02 14:38:48 +0000 2008","favourites_count":3779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3459,"lang":null,"status":{"created_at":"Wed - Mar 16 12:12:36 +0000 2022","id":1504068112576040960,"id_str":"1504068112576040960","text":"RT - @MeidasTouch: Disgraceful! There are still American companies profiting off - of operations in Russia while Putin commits atrocities again\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 23:38:57 +0000 2022","id":1503878450116907008,"id_str":"1503878450116907008","text":"Disgraceful! - There are still American companies profiting off of operations in Russia while - Putin commits atrocitie\u2026 https:\/\/t.co\/n2yHnvY6PT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/n2yHnvY6PT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503878450116907008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2155,"favorite_count":4779,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2155,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/402107150\/Topper_Nashville_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/402107150\/Topper_Nashville_normal.jpg","profile_link_color":"666666","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252579208183853058,"id_str":"1252579208183853058","name":"Ken","screen_name":"Kencheboi01","location":"","description":"Kenyan - \ud83c\uddf0\ud83c\uddea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":881,"listed_count":0,"created_at":"Tue - Apr 21 12:45:54 +0000 2020","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"status":{"created_at":"Sat - Mar 12 15:05:41 +0000 2022","id":1502662118226763784,"id_str":"1502662118226763784","text":"@philcoms - Cry babies","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"philcoms","name":"philipcheboite","id":392720807,"id_str":"392720807","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1502604809588858880,"in_reply_to_status_id_str":"1502604809588858880","in_reply_to_user_id":392720807,"in_reply_to_user_id_str":"392720807","in_reply_to_screen_name":"philcoms","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253301329759555584\/HoXhmR15_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253301329759555584\/HoXhmR15_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1041083028,"id_str":"1041083028","name":"Kassandra","screen_name":"kakassy17","location":"","description":"\ud83c\udf36","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1694,"friends_count":928,"listed_count":4,"created_at":"Fri - Dec 28 02:02:01 +0000 2012","favourites_count":49415,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":41686,"lang":null,"status":{"created_at":"Sat - Mar 26 02:26:33 +0000 2022","id":1507544506463399942,"id_str":"1507544506463399942","text":"RT - @TorontoStar: Researchers found a male birth control pill was 99 per cent - effective in preventing pregnancy and dramatically reduced spe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TorontoStar","name":"Toronto - Star","id":12848262,"id_str":"12848262","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:28:48 +0000 2022","id":1507469575457320966,"id_str":"1507469575457320966","text":"Researchers - found a male birth control pill was 99 per cent effective in preventing pregnancy - and dramatically redu\u2026 https:\/\/t.co\/GviUisz4as","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GviUisz4as","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507469575457320966","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507426099696832512,"in_reply_to_status_id_str":"1507426099696832512","in_reply_to_user_id":12848262,"in_reply_to_user_id_str":"12848262","in_reply_to_screen_name":"TorontoStar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":419,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":138,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506065148577996807\/hfK6jIS4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506065148577996807\/hfK6jIS4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1041083028\/1647909357","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":78201313,"id_str":"78201313","name":"HELEN - DECONINCK","screen_name":"Mimigirlhmd1966","location":"Washington, USA","description":"Originally - from Queens, New York, born in a Naval Hospital. Relocated to Washington - State many years ago, graduating from WSU, Pullman. Go Cougars!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":226,"listed_count":0,"created_at":"Tue - Sep 29 03:12:18 +0000 2009","favourites_count":238,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Thu - Aug 19 22:24:47 +0000 2021","id":1428483107670265857,"id_str":"1428483107670265857","text":"@GrandMoffJoseph - @seattletimes I think that it might be the Jehovah''s that are anti-vaccine.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GrandMoffJoseph","name":"Grand - Mask''d & Vax''d Moff \ud83e\udd84\ud83c\uddfa\ud83c\udde6","id":891040309,"id_str":"891040309","indices":[0,16]},{"screen_name":"seattletimes","name":"The - Seattle Times","id":14352556,"id_str":"14352556","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1428123719180771329,"in_reply_to_status_id_str":"1428123719180771329","in_reply_to_user_id":891040309,"in_reply_to_user_id_str":"891040309","in_reply_to_screen_name":"GrandMoffJoseph","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346940178896601091\/kgYeY3cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346940178896601091\/kgYeY3cm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":784530223366823936,"id_str":"784530223366823936","name":"Kendra - Lane","screen_name":"kendralane88","location":"Arizona, USA","description":"I - am not a Democrat, I am not a Republican, I''m an American... As Americans - we all need to come together & fight for Truth, Our democracy and human rights - !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1249,"friends_count":3069,"listed_count":1,"created_at":"Fri - Oct 07 23:05:56 +0000 2016","favourites_count":35200,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55081,"lang":null,"status":{"created_at":"Fri - Mar 25 21:11:52 +0000 2022","id":1507465310625943552,"id_str":"1507465310625943552","text":"RT - @muadhrezi: Corporate greed is causing inflation. Pass it on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"muadhrezi","name":"Muad - Hrezi","id":1332513411306057728,"id_str":"1332513411306057728","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 16:14:55 +0000 2022","id":1507028196470009858,"id_str":"1507028196470009858","text":"Corporate - greed is causing inflation. Pass it on.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11813,"favorite_count":35438,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11813,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/789593321077297152\/9XvYKx84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/789593321077297152\/9XvYKx84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784530223366823936\/1515626926","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2772264919,"id_str":"2772264919","name":"BRONWYN - HUMPHRIES","screen_name":"bronwyn20121","location":"Toowoomba, QLD","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":487,"friends_count":2691,"listed_count":0,"created_at":"Wed - Aug 27 03:12:47 +0000 2014","favourites_count":42339,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44092,"lang":null,"status":{"created_at":"Sat - Mar 26 08:18:41 +0000 2022","id":1507633123089174528,"id_str":"1507633123089174528","text":"@NickKyrgios - What a lovely girlfriend you have Nick and clearly you are both very happy. I - have been watching you\u2026 https:\/\/t.co\/yPWpmLtoYD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickKyrgios","name":"Nicholas - Kyrgios","id":1110553549,"id_str":"1110553549","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/yPWpmLtoYD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507633123089174528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1110553549,"in_reply_to_user_id_str":"1110553549","in_reply_to_screen_name":"NickKyrgios","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308134668081016834,"id_str":"1308134668081016834","name":"Jaski - \ud83c\udff4","screen_name":"whoisAgbatija","location":"KANO","description":"FANATICAL - UPHOLDER OF AFRICAN PREEMINENCE \ud83c\udff4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":1440,"listed_count":0,"created_at":"Mon - Sep 21 20:03:17 +0000 2020","favourites_count":3160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1650,"lang":null,"status":{"created_at":"Thu - Mar 24 21:48:50 +0000 2022","id":1507112226934640644,"id_str":"1507112226934640644","text":"\"And - if you don''t do it for me \ud83c\udfb5\ud83c\udfb6\" \nDO IT FOR ME ABEG","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395051595235221506\/5Rp_6zu5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395051595235221506\/5Rp_6zu5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308134668081016834\/1602753744","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":370651298,"id_str":"370651298","name":"vera - smith","screen_name":"vjsmith15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":136,"listed_count":0,"created_at":"Fri - Sep 09 11:53:29 +0000 2011","favourites_count":943,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":256,"lang":null,"status":{"created_at":"Tue - Jan 26 18:00:08 +0000 2021","id":1354126992476680197,"id_str":"1354126992476680197","text":"RT - @bobvanderplaats: And @tedcruz ...Congress should pass a lifetime retroactive - ban on any elected or appointed\/confirmed official from be\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bobvanderplaats","name":"Bob - Vander Plaats","id":19602035,"id_str":"19602035","indices":[3,19]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[25,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 26 01:54:37 +0000 2021","id":1353884015527387136,"id_str":"1353884015527387136","text":"And - @tedcruz ...Congress should pass a lifetime retroactive ban on any elected - or appointed\/confirmed official from\u2026 https:\/\/t.co\/aZ3paByf1f","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[4,12]}],"urls":[{"url":"https:\/\/t.co\/aZ3paByf1f","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1353884015527387136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1353818870671400962,"quoted_status_id_str":"1353818870671400962","retweet_count":137,"favorite_count":716,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1353818870671400962,"quoted_status_id_str":"1353818870671400962","retweet_count":137,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":742883607509897216,"id_str":"742883607509897216","name":"Huthifa - Hany","screen_name":"roos_H3","location":"","description":"Bios are overrated","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1231,"listed_count":7,"created_at":"Wed - Jun 15 00:57:08 +0000 2016","favourites_count":6420,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"status":{"created_at":"Wed - Feb 16 21:09:58 +0000 2022","id":1494056482157084678,"id_str":"1494056482157084678","text":"RT - @al_arje: \u0631\u062d\u0644\u0646\u0627 \u0625\u0630\u0646\u0652.. \u0644\u0627 - \u0634\u064a\u0621\u064e \u0628\u0627\u0631\u0643\u064e \u0639\u0650\u0634\u0642\u0646\u0627\n\u0648\u0644\u0627 - \u0646\u062d\u0646\u064f \u0641\u0636\u0651\u0644\u0646\u0627 \u0627\u0644\u0628\u0642\u0627\u0621\u064e - \u0645\u064f\u0639\u0644\u064e\u0651\u0642\u0627\n.\n\u0648\u0644\u0627 \u0646\u062d\u0646\u064f - \u0642\u0627\u062a\u0644\u0646\u0627 \u0644\u0623\u062c\u0644\u0650 \u0648\u0635\u0627\u0644\u0646\u0627\n\u0648\u0644\u0627 - \u0646\u062d\u0646\u064f \u0633\u0627\u0639\u062f\u0646\u0627 \u0647\u0648\u0627\u0646\u0627 - \u0644\u064a\u064f\u0634\u0631\u0642\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"al_arje","name":"\u062d\u0630\u064a\u0641\u0629 - \u0627\u0644\u0639\u0631\u062c\u064a","id":412918845,"id_str":"412918845","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 16 20:52:30 +0000 2022","id":1494052086031527944,"id_str":"1494052086031527944","text":"\u0631\u062d\u0644\u0646\u0627 - \u0625\u0630\u0646\u0652.. \u0644\u0627 \u0634\u064a\u0621\u064e \u0628\u0627\u0631\u0643\u064e - \u0639\u0650\u0634\u0642\u0646\u0627\n\u0648\u0644\u0627 \u0646\u062d\u0646\u064f - \u0641\u0636\u0651\u0644\u0646\u0627 \u0627\u0644\u0628\u0642\u0627\u0621\u064e - \u0645\u064f\u0639\u0644\u064e\u0651\u0642\u0627\n.\n\u0648\u0644\u0627 \u0646\u062d\u0646\u064f - \u0642\u0627\u062a\u0644\u0646\u0627 \u0644\u0623\u062c\u0644\u0650 \u0648\u0635\u0627\u0644\u0646\u0627\n\u0648\u0644\u0627 - \u0646\u062d\u0646\u064f \u0633\u0627\u0639\u062f\u0646\u0627 \u0647\u2026 - https:\/\/t.co\/SjC2GtVoID","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SjC2GtVoID","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494052086031527944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":235,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":33,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338756846493032450\/R8kD11id_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338756846493032450\/R8kD11id_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/742883607509897216\/1514529057","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":791730737884065792,"id_str":"791730737884065792","name":"hasan - alfayadh","screen_name":"AlfayadhHasan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":2921,"listed_count":0,"created_at":"Thu - Oct 27 19:58:12 +0000 2016","favourites_count":18876,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":589,"lang":null,"status":{"created_at":"Fri - Mar 18 15:04:11 +0000 2022","id":1504836066351661087,"id_str":"1504836066351661087","text":"\u0627\u0639\u062a\u0631\u0641 - \u0627\u0644\u0635\u062f\u064a\u0642 \u0627\u0644\u0633\u0627\u0628\u0642 - \u0644\u0639\u0627\u0631\u0636\u0629 \u0623\u0632\u064a\u0627\u0621 \u0631\u0648\u0633\u064a\u0629 - \u062a\u062f\u0639\u0649 \u063a\u0631\u064a\u062a\u0627 \u0641\u064a\u062f\u0644\u0631 - (23 \u0639\u0627\u0645\u0627\u064b)\u060c \u0627\u062e\u062a\u0641\u062a \u0628\u0637\u0631\u064a\u0642\u0629 - \u063a\u0627\u0645\u0636\u0629 \u0627\u0644\u0639\u0627\u0645 \u0627\u0644\u0645\u0627\u0636\u064a\u060c - \u0623\u0646\u0647 \u062e\u0646\u0642\u0647\u0627 \u062d\u062a\u0649\u2026 - https:\/\/t.co\/O7wXbR35yZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/O7wXbR35yZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504836066351661087","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504637930605883408,"quoted_status_id_str":"1504637930605883408","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1104296862864027648\/FsAzV5Cp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1104296862864027648\/FsAzV5Cp_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1207154701738885121,"id_str":"1207154701738885121","name":"Wissam - khan","screen_name":"prince_khan2020","location":"Afghanistan","description":"Games - Games Country Trending Haha Interesting Pictures Television Movies Travel - Music Weather Tech Professionals & Reporters Gov Officials & Agencies Weird - Pop","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":707,"listed_count":0,"created_at":"Wed - Dec 18 04:24:58 +0000 2019","favourites_count":187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":196,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331188389308223488\/kdZAFjr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331188389308223488\/kdZAFjr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1207154701738885121\/1606215097","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":721335577,"id_str":"721335577","name":"Nicole - Entzeroth","screen_name":"nic_oleslaw","location":"At the kids\u2019 table","description":"human - being, formerly known as the cat Curiosity killed","url":"https:\/\/t.co\/nwm0MUyqrv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nwm0MUyqrv","expanded_url":"https:\/\/www.blurb.com\/b?ebook=722317","display_url":"blurb.com\/b?ebook=722317","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":322,"friends_count":452,"listed_count":1,"created_at":"Sat - Jul 28 02:39:09 +0000 2012","favourites_count":17812,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2769,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1386166069400903681\/I_o7hX7W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1386166069400903681\/I_o7hX7W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721335577\/1560620410","profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":864546669743833088,"id_str":"864546669743833088","name":"Vivienne - Elliott","screen_name":"ElliottVivienne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":260,"listed_count":0,"created_at":"Tue - May 16 18:22:43 +0000 2017","favourites_count":2714,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Oct 26 01:33:04 +0000 2021","id":1452810477126381569,"id_str":"1452810477126381569","text":"@ThatEricAlper - Blue","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1452779518771466245,"in_reply_to_status_id_str":"1452779518771466245","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864546669743833088\/1555876639","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195238120129622016,"id_str":"1195238120129622016","name":"Teek - Spectrum","screen_name":"Pareidolic1","location":"Oakland, CA","description":"queer, - white, anti-binary, anti-racist memoirist and painter. they\/she. ANTIFAcist. - 70, bisexual, and bipolar. TERFs and SWERFS fuck off.","url":"https:\/\/t.co\/TSDLZ3z3t0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TSDLZ3z3t0","expanded_url":"https:\/\/bornforjoy.wordpress.com\/http:\/\/www.abstractteek.com\/and\/creatingotherness.wordpress.com","display_url":"bornforjoy.wordpress.com\/http:\/\/www.abs\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":275,"listed_count":0,"created_at":"Fri - Nov 15 07:12:56 +0000 2019","favourites_count":10679,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2503,"lang":null,"status":{"created_at":"Sat - Mar 26 10:06:44 +0000 2022","id":1507660313662951437,"id_str":"1507660313662951437","text":"@EdanClay - I have degenerative disc disease. Had one painful, debilitating herniation - years ago but nothing lately.\u2026 https:\/\/t.co\/AafaQBVWDu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdanClay","name":"Edan - Clay \ud83c\uddfa\ud83c\uddf8 Stands with Ukraine \ud83c\uddfa\ud83c\udde6","id":793902637733146624,"id_str":"793902637733146624","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/AafaQBVWDu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507660313662951437","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507640784568217600,"in_reply_to_status_id_str":"1507640784568217600","in_reply_to_user_id":793902637733146624,"in_reply_to_user_id_str":"793902637733146624","in_reply_to_screen_name":"EdanClay","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490626007996399618\/Dg-W1WiD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490626007996399618\/Dg-W1WiD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1195238120129622016\/1642047012","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23470935,"id_str":"23470935","name":"Boggled - Mind","screen_name":"tennis70","location":"","description":"21 yrs in army, - 20 yrs working in Africa and Asia as civil eng. Life experience made me a - liberal.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":52,"listed_count":0,"created_at":"Mon - Mar 09 17:57:00 +0000 2009","favourites_count":9576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6165,"lang":null,"status":{"created_at":"Fri - Mar 25 21:02:15 +0000 2022","id":1507462893276700672,"id_str":"1507462893276700672","text":"@MelissaRyan - I think George Conway is texting Clarence and saying I feel your pain.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MelissaRyan","name":"Melissa - Ryan","id":10371822,"id_str":"10371822","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507434941369372672,"in_reply_to_status_id_str":"1507434941369372672","in_reply_to_user_id":10371822,"in_reply_to_user_id_str":"10371822","in_reply_to_screen_name":"MelissaRyan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/959790815886303232\/uoBIo3Xv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/959790815886303232\/uoBIo3Xv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23470935\/1586728161","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":263514639,"id_str":"263514639","name":"Andr\u00e9e\ud83c\udde6\ud83c\uddfa\ud83c\udde8\ud83c\udde6","screen_name":"shakina1","location":"Brisbane, - Australia","description":"Librarian at Nazarene Theological College (NTC), - Thornlands, QLD.","url":"https:\/\/t.co\/bMij9N49Om","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bMij9N49Om","expanded_url":"http:\/\/ntc.edu.au","display_url":"ntc.edu.au","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":103,"listed_count":0,"created_at":"Thu - Mar 10 05:25:44 +0000 2011","favourites_count":860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Wed - Mar 09 13:33:33 +0000 2022","id":1501551769343897602,"id_str":"1501551769343897602","text":"Not - just the USA but also all the countries in favour with the idea of security - for moments like these. https:\/\/t.co\/S2JjinCgk6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S2JjinCgk6","expanded_url":"https:\/\/twitter.com\/POTUS\/status\/1501374874094383109","display_url":"twitter.com\/POTUS\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1501374874094383109,"quoted_status_id_str":"1501374874094383109","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316230926599294978\/gdWKF67Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316230926599294978\/gdWKF67Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263514639\/1602648884","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":942461066,"id_str":"942461066","name":"Kathryn - Millar","screen_name":"millar_kathryn","location":"South Jordan, UT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":848,"listed_count":0,"created_at":"Sun - Nov 11 23:28:14 +0000 2012","favourites_count":2424,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Mon - Sep 27 01:49:16 +0000 2021","id":1442305304947949568,"id_str":"1442305304947949568","text":"@VicTafur - Just win baby!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VicTafur","name":"Vic - Tafur","id":64378435,"id_str":"64378435","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1442280103392669697,"in_reply_to_status_id_str":"1442280103392669697","in_reply_to_user_id":64378435,"in_reply_to_user_id_str":"64378435","in_reply_to_screen_name":"VicTafur","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551431760634863616\/Ig5FHxNe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551431760634863616\/Ig5FHxNe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/942461066\/1420306554","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":574681815,"id_str":"574681815","name":"A.J. - Wadsworth","screen_name":"userajw","location":"Phoenix, Az","description":"Footstep - following, earth measuring, button pusher.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":957,"listed_count":0,"created_at":"Tue - May 08 16:23:20 +0000 2012","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036328067025657856\/scX3c6-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036328067025657856\/scX3c6-C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":812071977376772097,"id_str":"812071977376772097","name":"Pulse - P","screen_name":"Petegennraro","location":"Los Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":1148,"listed_count":0,"created_at":"Thu - Dec 22 23:07:01 +0000 2016","favourites_count":33978,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":392,"lang":null,"status":{"created_at":"Mon - Mar 21 21:49:44 +0000 2022","id":1506025289914228742,"id_str":"1506025289914228742","text":"@realeverywriter - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realeverywriter","name":"Richard - EveryWriter","id":1203807212096958466,"id_str":"1203807212096958466","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505604547863097350,"in_reply_to_status_id_str":"1505604547863097350","in_reply_to_user_id":1203807212096958466,"in_reply_to_user_id_str":"1203807212096958466","in_reply_to_screen_name":"realeverywriter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1186118696709832705,"id_str":"1186118696709832705","name":"Edie - Briggs","screen_name":"EdieBriggs8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":161,"listed_count":0,"created_at":"Mon - Oct 21 03:15:27 +0000 2019","favourites_count":50,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Sun - Oct 10 01:42:02 +0000 2021","id":1447014528143839239,"id_str":"1447014528143839239","text":"@FoxNews - It\u2019s really pretty simple. Do the job as dictated or don\u2019t. If you - don\u2019t? Then you don\u2019t havre a job. Ask\u2026 https:\/\/t.co\/YfMrWjt9Hr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/YfMrWjt9Hr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1447014528143839239","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1447011498988081153,"in_reply_to_status_id_str":"1447011498988081153","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":441932054,"id_str":"441932054","name":"NeoGeo","screen_name":"ReggaeVipers","location":"Ventura - County","description":"Member of the now defunct Reggae\/Ska Group. Guitar, - Bass. Retired I Follow Back No MAGA No DMs Vac\u2019d \n#Liberal #BLM #LGBTQ - #Atheist #Music #Humor #DEFUNDFOX","url":"https:\/\/t.co\/0zTHFTIv8k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0zTHFTIv8k","expanded_url":"http:\/\/www.facebook.com\/pages\/The-Vipers\/168963956534822?sk=wall","display_url":"facebook.com\/pages\/The-Vipe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1364,"friends_count":2364,"listed_count":3,"created_at":"Tue - Dec 20 15:33:49 +0000 2011","favourites_count":17578,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2173,"lang":null,"status":{"created_at":"Thu - Mar 24 16:58:57 +0000 2022","id":1507039276814327812,"id_str":"1507039276814327812","text":"RT - @AvengerResister: If Ted Cruz (R-Cancun) is proud of who he is, why doesn\u2019t - he go by Rafael?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AvengerResister","name":"Avenger - Resister","id":1334688905929613312,"id_str":"1334688905929613312","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:51:58 +0000 2022","id":1507022419046846464,"id_str":"1507022419046846464","text":"If - Ted Cruz (R-Cancun) is proud of who he is, why doesn\u2019t he go by Rafael?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1442,"favorite_count":9400,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1442,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380257263009427458\/A-ZHycMA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380257263009427458\/A-ZHycMA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441932054\/1617140079","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308321195796946944,"id_str":"1308321195796946944","name":"Muhammad - Siddique","screen_name":"Muhamma16008932","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":878,"friends_count":2758,"listed_count":0,"created_at":"Tue - Sep 22 08:25:02 +0000 2020","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":871,"lang":null,"status":{"created_at":"Sat - Jan 01 03:25:45 +0000 2022","id":1477118822121447424,"id_str":"1477118822121447424","text":"RT - @samiamjad715: \u0644\u06cc\u0688\u0631 \u06c1\u0648 \u062a\u0648 \u0627\u06cc\u0633\u0627 - \n\u06cc\u0642\u06cc\u0646 \u06a9\u0631\u06d2 \u0633\u0646 \u06a9\u0631 \u062f\u0644 - \u0622\u0628\u062f\u06cc\u062f\u06c1 \u06c1\u0648 \u06af\u06cc\u0627 \n\u0627\u0644\u0644\u06c1 - \u0646\u06d2 \u06c1\u0645\u06cc\u06ba \u06a9\u06cc\u0633\u0627 \u0644\u06cc\u0688\u0631 - \u062f\u06cc\u0627 \u0627\u0648\u0631 \u06c1\u0645 \u0627\u0633 \u06a9\u06d2 - \u0633\u0627\u062a\u06be \u06a9\u06cc\u0627 \u06a9\u0631 \u0631\u06c1\u06d2 - \n\n\u0644\u0627\u0632\u0645\u06cc \u0633\u0646\u06d2 \u0627\u0648\u0631\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"samiamjad715","name":"Sami - Amjad","id":4133677283,"id_str":"4133677283","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 31 12:42:46 +0000 2021","id":1476896613222260736,"id_str":"1476896613222260736","text":"\u0644\u06cc\u0688\u0631 - \u06c1\u0648 \u062a\u0648 \u0627\u06cc\u0633\u0627 \n\u06cc\u0642\u06cc\u0646 - \u06a9\u0631\u06d2 \u0633\u0646 \u06a9\u0631 \u062f\u0644 \u0622\u0628\u062f\u06cc\u062f\u06c1 - \u06c1\u0648 \u06af\u06cc\u0627 \n\u0627\u0644\u0644\u06c1 \u0646\u06d2 \u06c1\u0645\u06cc\u06ba - \u06a9\u06cc\u0633\u0627 \u0644\u06cc\u0688\u0631 \u062f\u06cc\u0627 \u0627\u0648\u0631 - \u06c1\u0645 \u0627\u0633 \u06a9\u06d2 \u0633\u0627\u062a\u06be \u06a9\u06cc\u0627 - \u06a9\u0631 \u0631\u06c1\u06d2 \n\n\u0644\u0627\u0632\u0645\u06cc \u0633\u2026 - https:\/\/t.co\/FvfL66z9wj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FvfL66z9wj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1476896613222260736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":115,"favorite_count":252,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":115,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309416916373639169\/0C5iDx9Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309416916373639169\/0C5iDx9Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":170079893,"id_str":"170079893","name":"Unity - N Diversity","screen_name":"Unity_Diversity","location":"Pacific Northwest","description":"Master - organizer, mom and grandma of a large family living in the Pacific Northwest. - Married to the love of my life.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":522,"friends_count":2770,"listed_count":3,"created_at":"Fri - Jul 23 22:10:09 +0000 2010","favourites_count":6866,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5604,"lang":null,"status":{"created_at":"Fri - Mar 25 04:13:20 +0000 2022","id":1507208991037812736,"id_str":"1507208991037812736","text":"RT - @nytimes: Ukraine\u2019s military has begun a counteroffensive that has altered - the central dynamic of the fighting: the question is no longe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:00:12 +0000 2022","id":1507160386876940290,"id_str":"1507160386876940290","text":"Ukraine\u2019s - military has begun a counteroffensive that has altered the central dynamic - of the fighting: the question\u2026 https:\/\/t.co\/byIaZODPf1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/byIaZODPf1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507160386876940290","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":403,"favorite_count":2051,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":403,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498155533848641539\/QDx7GVc8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498155533848641539\/QDx7GVc8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170079893\/1646023109","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1272611649170612226,"id_str":"1272611649170612226","name":"Siyakhula - community project","screen_name":"SiyakhulaP","location":"","description":"Siyakhula - community project","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":453,"friends_count":1276,"listed_count":0,"created_at":"Mon - Jun 15 19:27:48 +0000 2020","favourites_count":389,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Wed - Aug 26 15:47:34 +0000 2020","id":1298648290494418945,"id_str":"1298648290494418945","text":"We - are helping people if you want to donate at siyakhula CP contact 0660745855 - https:\/\/t.co\/5WZvOlFoX7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1298648004279382016,"id_str":"1298648004279382016","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EgW5erdXsAAsUVf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EgW5erdXsAAsUVf.jpg","url":"https:\/\/t.co\/5WZvOlFoX7","display_url":"pic.twitter.com\/5WZvOlFoX7","expanded_url":"https:\/\/twitter.com\/SiyakhulaP\/status\/1298648290494418945\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1298648004279382016,"id_str":"1298648004279382016","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EgW5erdXsAAsUVf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EgW5erdXsAAsUVf.jpg","url":"https:\/\/t.co\/5WZvOlFoX7","display_url":"pic.twitter.com\/5WZvOlFoX7","expanded_url":"https:\/\/twitter.com\/SiyakhulaP\/status\/1298648290494418945\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272612268270858240\/K4DEor7y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272612268270858240\/K4DEor7y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822447617032486912,"id_str":"822447617032486912","name":"Amen","screen_name":"Amen02766228","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":449,"listed_count":0,"created_at":"Fri - Jan 20 14:16:07 +0000 2017","favourites_count":4322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":570,"lang":null,"status":{"created_at":"Wed - Mar 23 17:46:12 +0000 2022","id":1506688777724604418,"id_str":"1506688777724604418","text":"Some - of the people out there do benefit from this illegal industry that destroy our - future leaders, mothers and fa\u2026 https:\/\/t.co\/vvBMXMJ93Q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vvBMXMJ93Q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506688777724604418","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506638134469173254,"quoted_status_id_str":"1506638134469173254","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299776288304046080\/m3AOw-ec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299776288304046080\/m3AOw-ec_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3295317140,"id_str":"3295317140","name":"Rameez - Kamarudheen","screen_name":"rmzkmr","location":"Perth, Western Australia","description":"Engineer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":285,"listed_count":0,"created_at":"Sun - Jul 26 14:08:29 +0000 2015","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Sun - Oct 17 11:24:38 +0000 2021","id":1449697858072895497,"id_str":"1449697858072895497","text":"@IgnazioMagnani - @ChiefSciWA @Nic_Hayes @abcperth @BellTowerTimes @Russell_Woolf @NikosNtoumanis - @perthobs\u2026 https:\/\/t.co\/l9uCOyyQJG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IgnazioMagnani","name":"Ignazio - Magnani","id":2215273536,"id_str":"2215273536","indices":[0,15]},{"screen_name":"ChiefSciWA","name":"Prof - Peter Klinken","id":707776183727882240,"id_str":"707776183727882240","indices":[16,27]},{"screen_name":"Nic_Hayes","name":"Nic - Hayes","id":112045070,"id_str":"112045070","indices":[28,38]},{"screen_name":"abcperth","name":"ABC - Perth","id":16213339,"id_str":"16213339","indices":[39,48]},{"screen_name":"BellTowerTimes","name":"The - Bell Tower Times","id":3004178958,"id_str":"3004178958","indices":[49,64]},{"screen_name":"Russell_Woolf","name":"Russell - Woolf","id":69231573,"id_str":"69231573","indices":[65,79]},{"screen_name":"NikosNtoumanis","name":"Nikos - Ntoumanis","id":418115204,"id_str":"418115204","indices":[80,95]},{"screen_name":"perthobs","name":"Perth - Observatory","id":3229987878,"id_str":"3229987878","indices":[96,105]}],"urls":[{"url":"https:\/\/t.co\/l9uCOyyQJG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1449697858072895497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1449680977542975490,"in_reply_to_status_id_str":"1449680977542975490","in_reply_to_user_id":2215273536,"in_reply_to_user_id_str":"2215273536","in_reply_to_screen_name":"IgnazioMagnani","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276514029217779712\/1_bkIhec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276514029217779712\/1_bkIhec_normal.jpg","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":50217856,"id_str":"50217856","name":"Marilyn - Quinlan","screen_name":"MarilynQuinlan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":497,"listed_count":0,"created_at":"Wed - Jun 24 04:50:35 +0000 2009","favourites_count":63691,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39122,"lang":null,"status":{"created_at":"Sat - Mar 26 02:55:09 +0000 2022","id":1507551704077594627,"id_str":"1507551704077594627","text":"RT - @kylegriffin1: The World Trade Organization has denied Belarus'' application - to become a member, citing the county''s involvement in Russi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kylegriffin1","name":"Kyle - Griffin","id":32871086,"id_str":"32871086","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:30:00 +0000 2022","id":1507318882205421574,"id_str":"1507318882205421574","text":"The - World Trade Organization has denied Belarus'' application to become a member, - citing the county''s involvement in\u2026 https:\/\/t.co\/12yDmM88LD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/12yDmM88LD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507318882205421574","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1631,"favorite_count":11124,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1631,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":791699892,"id_str":"791699892","name":"Wazi","screen_name":"otherafrikan","location":"Kenya","description":"I - peep into the future. A descendant of Nubia. A lover of nature and a critique - of the obvious.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":408,"friends_count":3932,"listed_count":0,"created_at":"Thu - Aug 30 14:23:53 +0000 2012","favourites_count":687,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16133,"lang":null,"status":{"created_at":"Sat - Mar 26 10:35:08 +0000 2022","id":1507667461520429059,"id_str":"1507667461520429059","text":"@tosh254_tosh - @migosi_brian @MumbiMbui @MuriithiRonny @JMuriithi13 @jwkhasndi @NjeriWanyina - Is he still in the office?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tosh254_tosh","name":"Gitonga - Nyagah\ud83c\uddf0\ud83c\uddea","id":1426278467969114112,"id_str":"1426278467969114112","indices":[0,13]},{"screen_name":"migosi_brian","name":"Migosi","id":1081616847001276416,"id_str":"1081616847001276416","indices":[14,27]},{"screen_name":"MumbiMbui","name":"Bianca","id":1397170478884835330,"id_str":"1397170478884835330","indices":[28,38]},{"screen_name":"MuriithiRonny","name":"muriithi - Nabea M''Nabea","id":1292468927679864832,"id_str":"1292468927679864832","indices":[39,53]},{"screen_name":"JMuriithi13","name":"J - Muriithi","id":1396820937069240323,"id_str":"1396820937069240323","indices":[54,66]},{"screen_name":"jwkhasndi","name":"Wanyama - JK","id":187623023,"id_str":"187623023","indices":[67,77]},{"screen_name":"NjeriWanyina","name":"___Wanyinaa\u2728\ud83d\udc9c\ud83d\ude18","id":1335579694759079937,"id_str":"1335579694759079937","indices":[78,91]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507448102399229954,"in_reply_to_status_id_str":"1507448102399229954","in_reply_to_user_id":1426278467969114112,"in_reply_to_user_id_str":"1426278467969114112","in_reply_to_screen_name":"tosh254_tosh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153636428364075008\/EBEickxg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153636428364075008\/EBEickxg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1118112818774061057,"id_str":"1118112818774061057","name":"Ophayhaw","screen_name":"ophayhaw","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":1350,"listed_count":0,"created_at":"Tue - Apr 16 11:24:04 +0000 2019","favourites_count":4407,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":165,"lang":null,"status":{"created_at":"Thu - Feb 17 08:57:36 +0000 2022","id":1494234566290296834,"id_str":"1494234566290296834","text":"https:\/\/t.co\/stMHSO9bc1 - https:\/\/t.co\/yRyszmgo0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/stMHSO9bc1","expanded_url":"https:\/\/audiomack.com\/amc-amaanah\/song\/amaanah-ft-wizkarl-x-kapre-montana-victory-prod-by-rayne","display_url":"audiomack.com\/amc-amaanah\/so\u2026","indices":[0,23]}],"media":[{"id":1494234548036640774,"id_str":"1494234548036640774","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FLyWZ5bXIAYWK78.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLyWZ5bXIAYWK78.jpg","url":"https:\/\/t.co\/yRyszmgo0a","display_url":"pic.twitter.com\/yRyszmgo0a","expanded_url":"https:\/\/twitter.com\/ophayhaw\/status\/1494234566290296834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1494234548036640774,"id_str":"1494234548036640774","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/FLyWZ5bXIAYWK78.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLyWZ5bXIAYWK78.jpg","url":"https:\/\/t.co\/yRyszmgo0a","display_url":"pic.twitter.com\/yRyszmgo0a","expanded_url":"https:\/\/twitter.com\/ophayhaw\/status\/1494234566290296834\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123127629350100992\/u7jPvERS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123127629350100992\/u7jPvERS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2213238266,"id_str":"2213238266","name":"J-Albert - Lafferty","screen_name":"JAlbert89271","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":49,"listed_count":0,"created_at":"Sun - Nov 24 23:51:26 +0000 2013","favourites_count":7130,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4897,"lang":null,"status":{"created_at":"Tue - Nov 23 23:48:23 +0000 2021","id":1463293382935998465,"id_str":"1463293382935998465","text":"RT - @Timothy30434590: @wallawallwawa @JAlbert89271 @MSNBC https:\/\/t.co\/5yBIFuL9N4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Timothy30434590","name":"Timothy - Wilson","id":1245651286239797248,"id_str":"1245651286239797248","indices":[3,19]},{"screen_name":"wallawallwawa","name":"FreedomPhreek","id":1462261938356903936,"id_str":"1462261938356903936","indices":[21,35]},{"screen_name":"JAlbert89271","name":"J-Albert - Lafferty","id":2213238266,"id_str":"2213238266","indices":[36,49]},{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[50,56]}],"urls":[],"media":[{"id":1463244459005644801,"id_str":"1463244459005644801","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","url":"https:\/\/t.co\/5yBIFuL9N4","display_url":"pic.twitter.com\/5yBIFuL9N4","expanded_url":"https:\/\/twitter.com\/Timothy30434590\/status\/1463244461648056323\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":648,"resize":"fit"},"large":{"w":1922,"h":1832,"resize":"fit"},"medium":{"w":1200,"h":1144,"resize":"fit"}},"source_status_id":1463244461648056323,"source_status_id_str":"1463244461648056323","source_user_id":1245651286239797248,"source_user_id_str":"1245651286239797248"}]},"extended_entities":{"media":[{"id":1463244459005644801,"id_str":"1463244459005644801","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","url":"https:\/\/t.co\/5yBIFuL9N4","display_url":"pic.twitter.com\/5yBIFuL9N4","expanded_url":"https:\/\/twitter.com\/Timothy30434590\/status\/1463244461648056323\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":648,"resize":"fit"},"large":{"w":1922,"h":1832,"resize":"fit"},"medium":{"w":1200,"h":1144,"resize":"fit"}},"source_status_id":1463244461648056323,"source_status_id_str":"1463244461648056323","source_user_id":1245651286239797248,"source_user_id_str":"1245651286239797248"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 23 20:34:00 +0000 2021","id":1463244461648056323,"id_str":"1463244461648056323","text":"@wallawallwawa - @JAlbert89271 @MSNBC https:\/\/t.co\/5yBIFuL9N4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wallawallwawa","name":"FreedomPhreek","id":1462261938356903936,"id_str":"1462261938356903936","indices":[0,14]},{"screen_name":"JAlbert89271","name":"J-Albert - Lafferty","id":2213238266,"id_str":"2213238266","indices":[15,28]},{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[29,35]}],"urls":[],"media":[{"id":1463244459005644801,"id_str":"1463244459005644801","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","url":"https:\/\/t.co\/5yBIFuL9N4","display_url":"pic.twitter.com\/5yBIFuL9N4","expanded_url":"https:\/\/twitter.com\/Timothy30434590\/status\/1463244461648056323\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":648,"resize":"fit"},"large":{"w":1922,"h":1832,"resize":"fit"},"medium":{"w":1200,"h":1144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1463244459005644801,"id_str":"1463244459005644801","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FE59FTaXEAEnK8F.jpg","url":"https:\/\/t.co\/5yBIFuL9N4","display_url":"pic.twitter.com\/5yBIFuL9N4","expanded_url":"https:\/\/twitter.com\/Timothy30434590\/status\/1463244461648056323\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":648,"resize":"fit"},"large":{"w":1922,"h":1832,"resize":"fit"},"medium":{"w":1200,"h":1144,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1463009378295062529,"in_reply_to_status_id_str":"1463009378295062529","in_reply_to_user_id":1462261938356903936,"in_reply_to_user_id_str":"1462261938356903936","in_reply_to_screen_name":"wallawallwawa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561587949607739393\/91eK_m_Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561587949607739393\/91eK_m_Y_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167317033358258177,"id_str":"1167317033358258177","name":"Greg - Bortz","screen_name":"bortz_greg","location":"Cape Town, South Africa","description":"Private - equity. Passionate racehorse owner. Longtime (45 year +) Tottenham Hotspur - fan for my sins. COYS.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":325,"friends_count":2148,"listed_count":0,"created_at":"Fri - Aug 30 06:04:16 +0000 2019","favourites_count":1301,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":96,"lang":null,"status":{"created_at":"Sat - Mar 12 12:45:03 +0000 2022","id":1502626724349190145,"id_str":"1502626724349190145","text":"@GMCheyne - @Ridgemont_SA @PaulaHH2 @NMB_racing @Suzettetweets @RacingGuru @apuggia001 - @4RacingZA @Piemonte_Stud Outs\u2026 https:\/\/t.co\/Was7a7XixR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GMCheyne","name":"Greg - Cheyne","id":4867230155,"id_str":"4867230155","indices":[0,9]},{"screen_name":"Ridgemont_SA","name":"Ridgemont - Highlands","id":1307445284,"id_str":"1307445284","indices":[10,23]},{"screen_name":"PaulaHH2","name":"Pauline - Herman","id":558449338,"id_str":"558449338","indices":[24,33]},{"screen_name":"NMB_racing","name":"Nelson - Mandela Bay Racing","id":1362741999791722496,"id_str":"1362741999791722496","indices":[34,45]},{"screen_name":"Suzettetweets","name":"Suzette - Viljoen","id":2203239686,"id_str":"2203239686","indices":[46,60]},{"screen_name":"RacingGuru","name":"Racing - Guru","id":4425574097,"id_str":"4425574097","indices":[61,72]},{"screen_name":"apuggia001","name":"Andrea - Puggia","id":2404778632,"id_str":"2404778632","indices":[73,84]},{"screen_name":"4RacingZA","name":"4Racing","id":1365004747309256712,"id_str":"1365004747309256712","indices":[85,95]},{"screen_name":"Piemonte_Stud","name":"Piemonte - Stud","id":518474600,"id_str":"518474600","indices":[96,110]}],"urls":[{"url":"https:\/\/t.co\/Was7a7XixR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502626724349190145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1502344089169235972,"in_reply_to_status_id_str":"1502344089169235972","in_reply_to_user_id":4867230155,"in_reply_to_user_id_str":"4867230155","in_reply_to_screen_name":"GMCheyne","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167317202925522944\/8Wh5BGH9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167317202925522944\/8Wh5BGH9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":392766300,"id_str":"392766300","name":"Ben - Lazare","screen_name":"BenjaminLazare","location":"Chicago, IL","description":"Illinois - Lobbyist. Former Medicaid analyst for Speaker Madigan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":1035,"listed_count":4,"created_at":"Mon - Oct 17 14:56:39 +0000 2011","favourites_count":5490,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":140,"lang":null,"status":{"created_at":"Thu - Nov 21 03:47:50 +0000 2019","id":1197360947951816704,"id_str":"1197360947951816704","text":"RT - @BernieSanders: We will prosecute the fossil fuel executives who knowingly - destroyed the planet. #DemDebate https:\/\/t.co\/usTGGYqlpp","truncated":false,"entities":{"hashtags":[{"text":"DemDebate","indices":[100,110]}],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[3,17]}],"urls":[],"media":[{"id":1197351296497573889,"id_str":"1197351296497573889","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","url":"https:\/\/t.co\/usTGGYqlpp","display_url":"pic.twitter.com\/usTGGYqlpp","expanded_url":"https:\/\/twitter.com\/BernieSanders\/status\/1197351780604141569\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1197351780604141569,"source_status_id_str":"1197351780604141569","source_user_id":216776631,"source_user_id_str":"216776631"}]},"extended_entities":{"media":[{"id":1197351296497573889,"id_str":"1197351296497573889","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","url":"https:\/\/t.co\/usTGGYqlpp","display_url":"pic.twitter.com\/usTGGYqlpp","expanded_url":"https:\/\/twitter.com\/BernieSanders\/status\/1197351780604141569\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1197351780604141569,"source_status_id_str":"1197351780604141569","source_user_id":216776631,"source_user_id_str":"216776631","video_info":{"aspect_ratio":[16,9],"duration_millis":78356,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/480x270\/ma_3Q13CwXlOyuLH.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/1280x720\/TcGGxwvZ4MBLgXqP.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/640x360\/AY3lWn5BQ-c0NFkZ.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/pl\/L1SLzYsYVJw6XMqG.m3u8?tag=13&v=659"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 21 03:11:24 +0000 2019","id":1197351780604141569,"id_str":"1197351780604141569","text":"We - will prosecute the fossil fuel executives who knowingly destroyed the planet. - #DemDebate https:\/\/t.co\/usTGGYqlpp","truncated":false,"entities":{"hashtags":[{"text":"DemDebate","indices":[81,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1197351296497573889,"id_str":"1197351296497573889","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","url":"https:\/\/t.co\/usTGGYqlpp","display_url":"pic.twitter.com\/usTGGYqlpp","expanded_url":"https:\/\/twitter.com\/BernieSanders\/status\/1197351780604141569\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197351296497573889,"id_str":"1197351296497573889","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1197351296497573889\/img\/v0oBc6eoOkLYfBYL.jpg","url":"https:\/\/t.co\/usTGGYqlpp","display_url":"pic.twitter.com\/usTGGYqlpp","expanded_url":"https:\/\/twitter.com\/BernieSanders\/status\/1197351780604141569\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":78356,"variants":[{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/480x270\/ma_3Q13CwXlOyuLH.mp4?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/1280x720\/TcGGxwvZ4MBLgXqP.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/vid\/640x360\/AY3lWn5BQ-c0NFkZ.mp4?tag=13"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1197351296497573889\/pl\/L1SLzYsYVJw6XMqG.m3u8?tag=13&v=659"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2322,"favorite_count":10724,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2322,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/868858151382200321\/4a5E0aKh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/868858151382200321\/4a5E0aKh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1227662169703112704,"id_str":"1227662169703112704","name":"Ir - Bgrli","screen_name":"irf70844917","location":"Azerbaijan","description":"#KarabakhisAzerbaijan - \ud83c\udde6\ud83c\uddff","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":398,"listed_count":0,"created_at":"Wed - Feb 12 18:34:29 +0000 2020","favourites_count":2893,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"status":{"created_at":"Tue - Mar 22 17:50:27 +0000 2022","id":1506327459754614790,"id_str":"1506327459754614790","text":"RT - @BaghirliRavan: #\u00dcmumd\u00fcnyaSuG\u00fcn\u00fc i\u00e7m\u0259li suyun - \u0259h\u0259miyy\u0259tini vur\u011fulamaq \u00fc\u00e7\u00fcn 1993-c\u00fc - ild\u0259n h\u0259r il mart\u0131n 22-d\u0259 qeyd olunur. @UN sayt\u0131na - g\u2026","truncated":false,"entities":{"hashtags":[{"text":"\u00dcmumd\u00fcnyaSuG\u00fcn\u00fc","indices":[19,35]}],"symbols":[],"user_mentions":[{"screen_name":"BaghirliRavan","name":"Ravan - Baghirli","id":1474277811242295342,"id_str":"1474277811242295342","indices":[3,17]},{"screen_name":"UN","name":"United - Nations","id":14159148,"id_str":"14159148","indices":[126,129]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 17:13:32 +0000 2022","id":1506318169765515278,"id_str":"1506318169765515278","text":"#\u00dcmumd\u00fcnyaSuG\u00fcn\u00fc - i\u00e7m\u0259li suyun \u0259h\u0259miyy\u0259tini vur\u011fulamaq \u00fc\u00e7\u00fcn - 1993-c\u00fc ild\u0259n h\u0259r il mart\u0131n 22-d\u0259 qeyd olunur. @UN - sayt\u2026 https:\/\/t.co\/80McCe3Xx5","truncated":true,"entities":{"hashtags":[{"text":"\u00dcmumd\u00fcnyaSuG\u00fcn\u00fc","indices":[0,16]}],"symbols":[],"user_mentions":[{"screen_name":"UN","name":"United - Nations","id":14159148,"id_str":"14159148","indices":[107,110]}],"urls":[{"url":"https:\/\/t.co\/80McCe3Xx5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506318169765515278","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"efc23cd34689b068","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/efc23cd34689b068.json","place_type":"country","name":"Azerbaijan","full_name":"Azerbaijan","country_code":"AZ","country":"Azerbaijan","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[44.763113,38.3970566],[50.6078339,38.3970566],[50.6078339,41.9099084],[44.763113,41.9099084]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466469519841538048\/8IZP_0wo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466469519841538048\/8IZP_0wo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227662169703112704\/1636346704","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1637985403,"id_str":"1637985403","name":"Tiffany - Striepling","screen_name":"mommarella","location":"","description":"Disciple. - Wife. Momma. American. Southerner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1357,"listed_count":0,"created_at":"Thu - Aug 01 13:14:19 +0000 2013","favourites_count":3141,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":920,"lang":null,"status":{"created_at":"Fri - Mar 11 15:53:36 +0000 2022","id":1502311789584957450,"id_str":"1502311789584957450","text":"@FoxNews - @seanhannity When Americans have to think twice about their beach trip liberty - is at stake!!! \ud83d\ude44","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]},{"screen_name":"seanhannity","name":"Sean - Hannity","id":41634520,"id_str":"41634520","indices":[9,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502132204087906306,"in_reply_to_status_id_str":"1502132204087906306","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880446337774489600\/gEIiEE3P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880446337774489600\/gEIiEE3P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637985403\/1498749771","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":770296164625244161,"id_str":"770296164625244161","name":"Joseph - A Noto","screen_name":"joeynoto49","location":"","description":"Entertainment - Entertainment News Opinion News Political News Weather","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":366,"friends_count":336,"listed_count":0,"created_at":"Mon - Aug 29 16:24:51 +0000 2016","favourites_count":42942,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12615,"lang":null,"status":{"created_at":"Sat - Mar 26 04:39:32 +0000 2022","id":1507577973309812738,"id_str":"1507577973309812738","text":"RT - @GrandmaMO: Marie Yovanovitch says Putin didn''t need to invade Ukraine while - Trump was president because he ''could just sit back and let\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GrandmaMO","name":"Marline - O''Farrill","id":23816152,"id_str":"23816152","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:49:23 +0000 2022","id":1507429455945670657,"id_str":"1507429455945670657","text":"Marie - Yovanovitch says Putin didn''t need to invade Ukraine while Trump was president - because he ''could just sit bac\u2026 https:\/\/t.co\/V57XKHaXDm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/V57XKHaXDm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507429455945670657","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/770299871404318720\/PZlUHwYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/770299871404318720\/PZlUHwYH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262034935327711232,"id_str":"1262034935327711232","name":"Poetically - Written\ud83d\udcc3\ud83d\udd8b","screen_name":"misscocodimps","location":"Nowhere - Close By","description":"Happily Married somewhere in El Salvador\nMommy \ud83d\udc99MARCO\ud83d\udc99\ud83d\udc69\ud83c\udffd\u200d\ud83c\udf7c\ud83d\udc76\ud83c\udffd - \ud83e\udd0dAlpha & Darla\ud83e\udd0d\ud83d\udc15\ud83d\udc15","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":3534,"listed_count":0,"created_at":"Sun - May 17 15:00:27 +0000 2020","favourites_count":3848,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1920,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497703389651779589\/5jCLs0Nn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497703389651779589\/5jCLs0Nn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1262034935327711232\/1605060536","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271349682762133505,"id_str":"1271349682762133505","name":"Mehar","screen_name":"mehar_khan08","location":"Peshawar - ","description":"forever exits as long as we live","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":398,"friends_count":267,"listed_count":1,"created_at":"Fri - Jun 12 07:56:44 +0000 2020","favourites_count":14726,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7816,"lang":null,"status":{"created_at":"Sat - Mar 26 10:03:01 +0000 2022","id":1507659377314086913,"id_str":"1507659377314086913","text":"RT - @PoemHeaven: have gratitude for your strengths. https:\/\/t.co\/Ifn8bXdC83","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PoemHeaven","name":"Poem - Heaven","id":2685318456,"id_str":"2685318456","indices":[3,14]}],"urls":[],"media":[{"id":1507631807675654152,"id_str":"1507631807675654152","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","url":"https:\/\/t.co\/Ifn8bXdC83","display_url":"pic.twitter.com\/Ifn8bXdC83","expanded_url":"https:\/\/twitter.com\/PoemHeaven\/status\/1507631814457929730\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":654,"resize":"fit"},"large":{"w":1284,"h":1235,"resize":"fit"},"medium":{"w":1200,"h":1154,"resize":"fit"}},"source_status_id":1507631814457929730,"source_status_id_str":"1507631814457929730","source_user_id":2685318456,"source_user_id_str":"2685318456"}]},"extended_entities":{"media":[{"id":1507631807675654152,"id_str":"1507631807675654152","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","url":"https:\/\/t.co\/Ifn8bXdC83","display_url":"pic.twitter.com\/Ifn8bXdC83","expanded_url":"https:\/\/twitter.com\/PoemHeaven\/status\/1507631814457929730\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":654,"resize":"fit"},"large":{"w":1284,"h":1235,"resize":"fit"},"medium":{"w":1200,"h":1154,"resize":"fit"}},"source_status_id":1507631814457929730,"source_status_id_str":"1507631814457929730","source_user_id":2685318456,"source_user_id_str":"2685318456"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:13:29 +0000 2022","id":1507631814457929730,"id_str":"1507631814457929730","text":"have - gratitude for your strengths. https:\/\/t.co\/Ifn8bXdC83","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507631807675654152,"id_str":"1507631807675654152","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","url":"https:\/\/t.co\/Ifn8bXdC83","display_url":"pic.twitter.com\/Ifn8bXdC83","expanded_url":"https:\/\/twitter.com\/PoemHeaven\/status\/1507631814457929730\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":654,"resize":"fit"},"large":{"w":1284,"h":1235,"resize":"fit"},"medium":{"w":1200,"h":1154,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507631807675654152,"id_str":"1507631807675654152","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwvJCyWYAgTmZs.jpg","url":"https:\/\/t.co\/Ifn8bXdC83","display_url":"pic.twitter.com\/Ifn8bXdC83","expanded_url":"https:\/\/twitter.com\/PoemHeaven\/status\/1507631814457929730\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":654,"resize":"fit"},"large":{"w":1284,"h":1235,"resize":"fit"},"medium":{"w":1200,"h":1154,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1441,"favorite_count":4489,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1441,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499764930756681734\/yzcYjUdt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499764930756681734\/yzcYjUdt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1271349682762133505\/1646407010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":414919166,"id_str":"414919166","name":"#BushidoCode","screen_name":"im_koxmox","location":"Dubai, - United Arab Emirates","description":"Good will hunting\n \u264b, ChelseaFC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3054,"friends_count":4956,"listed_count":5,"created_at":"Thu - Nov 17 17:20:47 +0000 2011","favourites_count":32993,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13406,"lang":null,"status":{"created_at":"Sun - Mar 13 19:23:16 +0000 2022","id":1503089326145507328,"id_str":"1503089326145507328","text":"RT - @CalmDeion: Be the energy you want to receive.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalmDeion","name":"Deion - \ud80c\udef9","id":879980597719871488,"id_str":"879980597719871488","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 18:12:57 +0000 2022","id":1501984470219427854,"id_str":"1501984470219427854","text":"Be - the energy you want to receive.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6662,"favorite_count":19073,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6662,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462470490098999301\/cDyBk6tX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462470490098999301\/cDyBk6tX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/414919166\/1637515111","profile_link_color":"0084B4","profile_sidebar_border_color":"EBE3C1","profile_sidebar_fill_color":"E0DCF5","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":74790337,"id_str":"74790337","name":"Ross","screen_name":"RossParker5","location":"Metaverse","description":"All - things markets \ud83d\udcc8 \ud83d\udcc9 | Full time IT \u2328\ufe0f\ud83d\udcbb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":438,"friends_count":2301,"listed_count":5,"created_at":"Wed - Sep 16 17:49:00 +0000 2009","favourites_count":6188,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5748,"lang":null,"status":{"created_at":"Tue - Mar 22 11:38:59 +0000 2022","id":1506233979254497282,"id_str":"1506233979254497282","text":"@DawgDaisy - @MBdaytrading PM me.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DawgDaisy","name":"Kelt - Smallpox - Low Cap Investor","id":1237095198364250113,"id_str":"1237095198364250113","indices":[0,10]},{"screen_name":"MBdaytrading","name":"\u1d0d\u0299\u1d1b\u0280\u1d00\u1d05\u026a\u0274\u0262 - : \u0441\u0442\u043e\u044e \u0437 \u0443\u043a\u0440\u0430\u0457\u043d\u043e\u044e\ud83c\uddfa\ud83c\udde6","id":937264276699598848,"id_str":"937264276699598848","indices":[11,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506233551099990021,"in_reply_to_status_id_str":"1506233551099990021","in_reply_to_user_id":1237095198364250113,"in_reply_to_user_id_str":"1237095198364250113","in_reply_to_screen_name":"DawgDaisy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188826147800399877\/ZAoUlVbJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188826147800399877\/ZAoUlVbJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74790337\/1572273322","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":163104850,"id_str":"163104850","name":"Dr - Rahul Muchhadia","screen_name":"MuchhadiaRahul","location":"Ahmedabad","description":"Orthodontist - & Dentofacial Orthopedician \ud83c\uddee\ud83c\uddf3","url":"https:\/\/t.co\/DXu7gJCr1u","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DXu7gJCr1u","expanded_url":"http:\/\/www.theorthodontist.in","display_url":"theorthodontist.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":534,"listed_count":2,"created_at":"Mon - Jul 05 15:20:44 +0000 2010","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":250,"lang":null,"status":{"created_at":"Thu - Jan 28 16:42:59 +0000 2021","id":1354832354162995204,"id_str":"1354832354162995204","text":"RT - @ValaAfshar: As you get older, you:\n\n1 appreciate your parents more\n2 stop - taking your health for granted\n3 value and cherish good frien\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ValaAfshar","name":"Vala - Afshar","id":259725229,"id_str":"259725229","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 27 19:55:56 +0000 2021","id":1354518523452784641,"id_str":"1354518523452784641","text":"As - you get older, you:\n\n1 appreciate your parents more\n2 stop taking your - health for granted\n3 value and cherish go\u2026 https:\/\/t.co\/oKHd0GSpVx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oKHd0GSpVx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1354518523452784641","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":187,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":55,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618852075271647232\/mOuUoAhX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618852075271647232\/mOuUoAhX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163104850\/1415201881","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58004873,"id_str":"58004873","name":"DoeBoy","screen_name":"DoeboyDPI","location":"The - MotherShip","description":"They say, never discuss Politics and Religion at - a dinner party. Sorry, they just happen to be my two favorite subjects. #Resist - #WearaMask #Bluewave #Never45","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1016,"friends_count":2798,"listed_count":0,"created_at":"Sat - Jul 18 19:04:24 +0000 2009","favourites_count":2011,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2819,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127885612\/Desert_Landscape_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127885612\/Desert_Landscape_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":742912753971535872,"id_str":"742912753971535872","name":"Jenny - Saffran","screen_name":"jenny_saffran","location":"Madison, Wi","description":"Studies - how babies learn language at UW-Madison, parent, dog lover, erstwhile musician. - She\/her\/hers.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1975,"friends_count":1412,"listed_count":13,"created_at":"Wed - Jun 15 02:52:58 +0000 2016","favourites_count":1765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":367,"lang":null,"status":{"created_at":"Fri - Mar 25 17:56:21 +0000 2022","id":1507416109233938439,"id_str":"1507416109233938439","text":"@FerrignoStephen - @UWMadison @UWPsych So excited that you\u2019re joining us! It\u2019s gonna - be great.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FerrignoStephen","name":"Stephen - Ferrigno","id":3387824291,"id_str":"3387824291","indices":[0,16]},{"screen_name":"UWMadison","name":"UW\u2013Madison","id":15763818,"id_str":"15763818","indices":[17,27]},{"screen_name":"UWPsych","name":"UW-Madison - Psych","id":1676121164,"id_str":"1676121164","indices":[28,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507367298516013068,"in_reply_to_status_id_str":"1507367298516013068","in_reply_to_user_id":3387824291,"in_reply_to_user_id_str":"3387824291","in_reply_to_screen_name":"FerrignoStephen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353054247554871296\/eNjZR1IF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353054247554871296\/eNjZR1IF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":247643000,"id_str":"247643000","name":"Taye - Akinola","screen_name":"TayeAkinola","location":"Washington, DC","description":"@GallaudetU - + @TXST + @WashULaw alum | child of immigrants | deaf | gay | paralegal extraordinaire - | washingtonian | #BlackLivesMatter","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":159,"friends_count":1602,"listed_count":3,"created_at":"Sat - Feb 05 07:10:35 +0000 2011","favourites_count":7257,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4056,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319464338311270401\/jIhCT07l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319464338311270401\/jIhCT07l_normal.jpg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":307907931,"id_str":"307907931","name":"Jacquelyn - Thorne","screen_name":"Jth0rne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":776,"listed_count":0,"created_at":"Mon - May 30 14:11:24 +0000 2011","favourites_count":11264,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7332,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496124011114295297\/FnXkQ-7U_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496124011114295297\/FnXkQ-7U_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":233567797,"id_str":"233567797","name":"Dan - Browning","screen_name":"brownide","location":"Minneapolis MN","description":"retired - from IT industry","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":1045,"listed_count":1,"created_at":"Mon - Jan 03 15:34:14 +0000 2011","favourites_count":8592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4918,"lang":null,"status":{"created_at":"Sat - Mar 26 01:47:29 +0000 2022","id":1507534675207675906,"id_str":"1507534675207675906","text":"RT - @richsignorelli: As a member of the SCOTUS bar, I am calling for Thomas to - resign before he brings further shame to the Court. His decis\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richsignorelli","name":"Richard - Signorelli","id":1109045045649424386,"id_str":"1109045045649424386","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:09:25 +0000 2022","id":1507419396020400130,"id_str":"1507419396020400130","text":"As - a member of the SCOTUS bar, I am calling for Thomas to resign before he brings - further shame to the Court. His d\u2026 https:\/\/t.co\/VvZ1weeIxX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VvZ1weeIxX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507419396020400130","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15474,"favorite_count":67643,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":15474,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451386989963513856\/b7WZL_yr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451386989963513856\/b7WZL_yr_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":447599272,"id_str":"447599272","name":"marvena","screen_name":"nikky411969","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":700,"listed_count":1,"created_at":"Tue - Dec 27 02:35:29 +0000 2011","favourites_count":2090,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1372,"lang":null,"status":{"created_at":"Thu - Mar 17 16:57:18 +0000 2022","id":1504502146942881799,"id_str":"1504502146942881799","text":"@Paula_White - Yes Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Paula_White","name":"Paula - White-Cain","id":27768807,"id_str":"27768807","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504483698086801408,"in_reply_to_status_id_str":"1504483698086801408","in_reply_to_user_id":27768807,"in_reply_to_user_id_str":"27768807","in_reply_to_screen_name":"Paula_White","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/920326508488658946\/LNtRbcLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/920326508488658946\/LNtRbcLx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957310275518173184,"id_str":"957310275518173184","name":"Man - in the Middle","screen_name":"Middle_Man_60","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":114,"friends_count":1310,"listed_count":2,"created_at":"Sat - Jan 27 17:52:10 +0000 2018","favourites_count":11827,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17508,"lang":null,"status":{"created_at":"Fri - Mar 25 23:40:28 +0000 2022","id":1507502706822455304,"id_str":"1507502706822455304","text":"@EvaCigarLady - @LuckeeStrke Exactly right. Booker would be devastated if he woke up tomorrow - and he was white. The g\u2026 https:\/\/t.co\/XpUvOEMKIR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EvaCigarLady","name":"Eva","id":952349545354047488,"id_str":"952349545354047488","indices":[0,13]},{"screen_name":"LuckeeStrke","name":"\ud83c\udf40LuckyStrike\ud83c\udf40","id":1140964196705865729,"id_str":"1140964196705865729","indices":[14,26]}],"urls":[{"url":"https:\/\/t.co\/XpUvOEMKIR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507502706822455304","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507377942665388033,"in_reply_to_status_id_str":"1507377942665388033","in_reply_to_user_id":952349545354047488,"in_reply_to_user_id_str":"952349545354047488","in_reply_to_screen_name":"EvaCigarLady","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/957316658200129536\/2XWELPZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/957316658200129536\/2XWELPZA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283003622851260416,"id_str":"1283003622851260416","name":"Nena - Dawalbait","screen_name":"DawalbaitNena","location":"","description":"History - doesn''t talk about quitters","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":313,"listed_count":0,"created_at":"Tue - Jul 14 11:41:29 +0000 2020","favourites_count":2452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":190,"lang":null,"status":{"created_at":"Fri - Mar 11 15:27:44 +0000 2022","id":1502305277177176068,"id_str":"1502305277177176068","text":"RT - @MustafaHosny: \u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u062f\u0639 - \u0644\u0646\u0627 \u0630\u0646\u0628\u064b\u0627 \u0625\u0644\u0627 \u063a\u0641\u0631\u062a\u0647\u060c - \u0648\u0644\u0627 \u0639\u064a\u0628\u064b\u0627 \u0625\u0644\u0627 \u0633\u062a\u0631\u062a\u0647\u060c - \u0648\u0644\u0627 \u0647\u0645\u064b\u0627 \u0625\u0644\u0627 \u0641\u0631\u062c\u062a\u0647\u060c - \u0648\u0644\u0627 \u062f\u064a\u0646\u064b\u0627 \u0625\u0644\u0627 \u0642\u0636\u064a\u062a\u0647\u060c - \u0648\u0644\u0627 \u062d\u0627\u062c\u0629 \u0645\u0646 \u062d\u0648\u0627\u0626\u062c - \u0627\u0644\u062f\u0646\u064a\u0627\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MustafaHosny","name":"Mustafa - Hosny","id":60576219,"id_str":"60576219","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 19:03:22 +0000 2022","id":1501997158194683907,"id_str":"1501997158194683907","text":"\u0627\u0644\u0644\u0647\u0645 - \u0644\u0627 \u062a\u062f\u0639 \u0644\u0646\u0627 \u0630\u0646\u0628\u064b\u0627 - \u0625\u0644\u0627 \u063a\u0641\u0631\u062a\u0647\u060c \u0648\u0644\u0627 - \u0639\u064a\u0628\u064b\u0627 \u0625\u0644\u0627 \u0633\u062a\u0631\u062a\u0647\u060c - \u0648\u0644\u0627 \u0647\u0645\u064b\u0627 \u0625\u0644\u0627 \u0641\u0631\u062c\u062a\u0647\u060c - \u0648\u0644\u0627 \u062f\u064a\u0646\u064b\u0627 \u0625\u0644\u0627 \u0642\u0636\u064a\u062a\u0647\u060c - \u0648\u0644\u0627 \u062d\u0627\u062c\u0629 \u0645\u0646 \u062d\u0648\u0627\u0626\u062c - \u0627\u2026 https:\/\/t.co\/f7RQtZFBz9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f7RQtZFBz9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501997158194683907","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3197,"favorite_count":12454,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":3197,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366419103242674176\/m757YP8X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366419103242674176\/m757YP8X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1283003622851260416\/1602923669","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2221730820,"id_str":"2221730820","name":"Johnny - Giwa-Agbomeirele","screen_name":"johnnygiwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":795,"listed_count":0,"created_at":"Fri - Nov 29 16:46:17 +0000 2013","favourites_count":557,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":101,"lang":null,"status":{"created_at":"Wed - Feb 02 00:43:21 +0000 2022","id":1488674362957963266,"id_str":"1488674362957963266","text":"RT - @JamaicaConstab: We are seeking your assistance in locating the parents\/guardian - of this child who is currently at the Olympic Gardens P\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JamaicaConstab","name":"Jamaica - Constabulary Force","id":473394748,"id_str":"473394748","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 31 22:03:50 +0000 2022","id":1488271832717352965,"id_str":"1488271832717352965","text":"We - are seeking your assistance in locating the parents\/guardian of this child - who is currently at the Olympic Garde\u2026 https:\/\/t.co\/Y9oqY0cKjv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y9oqY0cKjv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1488271832717352965","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":952,"favorite_count":462,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":952,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000807208712\/e15a8b2badb151f2e623a203f2a6869a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000807208712\/e15a8b2badb151f2e623a203f2a6869a_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305126281604931586,"id_str":"1305126281604931586","name":"Majorjose","screen_name":"Majorjose2","location":"","description":"@majorjose2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":605,"friends_count":1105,"listed_count":0,"created_at":"Sun - Sep 13 12:48:59 +0000 2020","favourites_count":7204,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":430,"lang":null,"status":{"created_at":"Wed - Mar 16 15:11:54 +0000 2022","id":1504113233132769282,"id_str":"1504113233132769282","text":"@rhas231 - @Bigmozel Ozark too","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rhas231","name":"schalke","id":193513185,"id_str":"193513185","indices":[0,8]},{"screen_name":"Bigmozel","name":"BIGMOZEL - - TOP 10\ud83c\udf6c\u2665\ufe0f","id":797014491024281600,"id_str":"797014491024281600","indices":[9,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503655560176148482,"in_reply_to_status_id_str":"1503655560176148482","in_reply_to_user_id":193513185,"in_reply_to_user_id_str":"193513185","in_reply_to_screen_name":"rhas231","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410517136800428035\/lXSzJSLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410517136800428035\/lXSzJSLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305126281604931586\/1616746818","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":735156275789598720,"id_str":"735156275789598720","name":"Richard","screen_name":"richit56","location":"Manassas, - VA","description":"DC Luxury Automated Shade Systems provider. @RockvilleInt - Political observer & critic #wearamask @Lutron @HunterDouglas @JoeBiden @KamalaHarris","url":"https:\/\/t.co\/vwnewARNyV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vwnewARNyV","expanded_url":"http:\/\/rockivilleinteriors.com","display_url":"rockivilleinteriors.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":395,"listed_count":0,"created_at":"Tue - May 24 17:11:29 +0000 2016","favourites_count":292,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62,"lang":null,"status":{"created_at":"Sun - Aug 29 14:08:48 +0000 2021","id":1431982167538667525,"id_str":"1431982167538667525","text":"RT - @TheMonk1953: If you are uncertain about downloading \"I Alone Can Fix It\" - this paragraph to me might be the trigger to push down on your\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheMonk1953","name":"Neal - Martin ","id":2855564906,"id_str":"2855564906","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jul 20 11:28:58 +0000 2021","id":1417446428805324803,"id_str":"1417446428805324803","text":"If - you are uncertain about downloading \"I Alone Can Fix It\" this paragraph - to me might be the trigger to push down\u2026 https:\/\/t.co\/ski4J1W00X","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ski4J1W00X","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1417446428805324803","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302466105550802946\/82KLlc-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302466105550802946\/82KLlc-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735156275789598720\/1614972824","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":923359389800714240,"id_str":"923359389800714240","name":"Dolores - Donofrio","screen_name":"DoloresDonofrio","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":1009,"listed_count":0,"created_at":"Thu - Oct 26 01:23:28 +0000 2017","favourites_count":26822,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":109,"lang":null,"status":{"created_at":"Fri - Nov 19 18:42:15 +0000 2021","id":1461766789495459854,"id_str":"1461766789495459854","text":"@RealMattCouch - Amen!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealMattCouch","name":"Matt - Couch","id":601535938,"id_str":"601535938","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1461763623127330831,"in_reply_to_status_id_str":"1461763623127330831","in_reply_to_user_id":601535938,"in_reply_to_user_id_str":"601535938","in_reply_to_screen_name":"RealMattCouch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1123594122533658625,"id_str":"1123594122533658625","name":"sanath - wijesinghe","screen_name":"sanathwijesing3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":330,"listed_count":0,"created_at":"Wed - May 01 14:24:48 +0000 2019","favourites_count":368,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Sat - Oct 03 01:47:41 +0000 2020","id":1312207664030470145,"id_str":"1312207664030470145","text":"@realDonaldTrump - Get well soon Mr.president","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1312158400352972800,"in_reply_to_status_id_str":"1312158400352972800","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":839250379,"id_str":"839250379","name":"\ud835\udd41\ud835\udd66\ud835\udd64\ud835\udd65 - \u2102\ud835\udd59\ud835\udd56\ud835\udd63\ud835\udd6a\ud835\udd5d\ud83e\udd8b\ud83e\udd8b","screen_name":"MiasamaEast","location":"Usa","description":"American - \ud83c\uddfa\ud83c\uddf8living overseas\ud83c\udf0a mother\ud83d\udc6bFrom - Orlando, Florida #Resistance #NeverAgain #EnoughIsEnough","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":994,"friends_count":1919,"listed_count":8,"created_at":"Sat - Sep 22 06:51:30 +0000 2012","favourites_count":189037,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":216526,"lang":null,"status":{"created_at":"Fri - Mar 25 14:16:27 +0000 2022","id":1507360767993073664,"id_str":"1507360767993073664","text":"RT - @costareports: \u201cMs. Thomas effectively toggled between like-minded members - of the executive and legislative branches, even as her husban\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"costareports","name":"Robert - Costa","id":86129724,"id_str":"86129724","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:31:51 +0000 2022","id":1507183449181929475,"id_str":"1507183449181929475","text":"\u201cMs. - Thomas effectively toggled between like-minded members of the executive and - legislative branches, even as her\u2026 https:\/\/t.co\/HKQIXsDFK4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HKQIXsDFK4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507183449181929475","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":501,"favorite_count":1399,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":501,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279784366512709633\/dGAXJ_lp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279784366512709633\/dGAXJ_lp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839250379\/1632305310","profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"310485","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226653564052869121,"id_str":"1226653564052869121","name":"Femi - Ajala","screen_name":"FemiAjala8","location":"","description":"just ME","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":551,"listed_count":0,"created_at":"Sun - Feb 09 23:46:25 +0000 2020","favourites_count":959,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sun - Mar 21 14:03:44 +0000 2021","id":1373636447782207489,"id_str":"1373636447782207489","text":"@RealKiddWaya - Everyone keep saying work hard like it\u2019s easy to do,you work smart my - https:\/\/t.co\/BwZupi7SpC grace m\u2026 https:\/\/t.co\/kCbzhgT8RV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealKiddWaya","name":"Kiddwaya - \ud83c\udf13","id":1081814151897513984,"id_str":"1081814151897513984","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/BwZupi7SpC","expanded_url":"http:\/\/brother.na","display_url":"brother.na","indices":[84,107]},{"url":"https:\/\/t.co\/kCbzhgT8RV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1373636447782207489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1373561678714003456,"in_reply_to_status_id_str":"1373561678714003456","in_reply_to_user_id":1081814151897513984,"in_reply_to_user_id_str":"1081814151897513984","in_reply_to_screen_name":"RealKiddWaya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369644135888609286\/y3F9fIN5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369644135888609286\/y3F9fIN5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280969428201607169,"id_str":"1280969428201607169","name":"GaRP","screen_name":"GlennPh73983526","location":"Kansas, - USA","description":"Experimental psychologist, Photographer, Retired social - stat guy, & Army intelligence officer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":563,"listed_count":0,"created_at":"Wed - Jul 08 20:58:29 +0000 2020","favourites_count":2731,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3309,"lang":null,"status":{"created_at":"Sat - Mar 26 03:23:16 +0000 2022","id":1507558780304769027,"id_str":"1507558780304769027","text":"Maybe - he and Tucker will marry https:\/\/t.co\/UEprqmyBnV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UEprqmyBnV","expanded_url":"https:\/\/twitter.com\/margoandhow\/status\/1507554273273462789","display_url":"twitter.com\/margoandhow\/st\u2026","indices":[31,54]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507554273273462789,"quoted_status_id_str":"1507554273273462789","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441229646461243400\/uQro8vnK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441229646461243400\/uQro8vnK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2514138974,"id_str":"2514138974","name":"Hernan - Murua","screen_name":"muruaraffa","location":"Saint-Jean-sur-Richelieu","description":"Coach - Consultant Engineer Lawyer Looking for new adventures","url":"https:\/\/t.co\/vOUXWHkZHN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vOUXWHkZHN","expanded_url":"http:\/\/www.mercoachweb.com","display_url":"mercoachweb.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":380,"listed_count":29,"created_at":"Thu - May 22 01:24:59 +0000 2014","favourites_count":971,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2481,"lang":null,"status":{"created_at":"Mon - Mar 21 02:08:25 +0000 2022","id":1505728004449783810,"id_str":"1505728004449783810","text":"@RoxanaKreimer - Sabes que est\u00e1 errado se pude probar en diversas maneras. La m\u00e1s - simples D+M+E =D'' , Marx se olvida\u2026 https:\/\/t.co\/KE7FYrjQGb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoxanaKreimer","name":"Roxana - Kreimer","id":200886739,"id_str":"200886739","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/KE7FYrjQGb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505728004449783810","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505597631636070403,"in_reply_to_status_id_str":"1505597631636070403","in_reply_to_user_id":200886739,"in_reply_to_user_id_str":"200886739","in_reply_to_screen_name":"RoxanaKreimer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471115880961544193\/V_23ERfy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471115880961544193\/V_23ERfy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2514138974\/1482007395","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":623641186,"id_str":"623641186","name":"Mark - Lawson","screen_name":"mwl65","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":375,"listed_count":0,"created_at":"Sun - Jul 01 10:49:44 +0000 2012","favourites_count":305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":702,"lang":null,"status":{"created_at":"Fri - Feb 11 09:47:17 +0000 2022","id":1492072742052667409,"id_str":"1492072742052667409","text":"Dogs - of Berlin 2 1\/2 Stars out of 5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2860993484,"id_str":"2860993484","name":"Steven - Dubois","screen_name":"Thereandbackag1","location":"Minnesota, USA","description":"I - love street photography and retro gaming.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":824,"listed_count":0,"created_at":"Fri - Oct 17 19:11:53 +0000 2014","favourites_count":16556,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":275,"lang":null,"status":{"created_at":"Mon - Jan 03 00:22:24 +0000 2022","id":1477797454703648777,"id_str":"1477797454703648777","text":"@citrus3000psi - Glad I got mine already.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"citrus3000psi","name":"citrus3000psi","id":741353206912045056,"id_str":"741353206912045056","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1477729666291142661,"in_reply_to_status_id_str":"1477729666291142661","in_reply_to_user_id":741353206912045056,"in_reply_to_user_id_str":"741353206912045056","in_reply_to_screen_name":"citrus3000psi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081143808191066112\/qlHo24rX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081143808191066112\/qlHo24rX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2860993484\/1546599744","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189480549871542272,"id_str":"1189480549871542272","name":"John - Evans","screen_name":"JohnEvansKCBS","location":"San Francisco","description":"News - Anchor KCBS Radio San Francisco \n106.9 FM\/AM 740, https:\/\/t.co\/43gHLZWqoE, - https:\/\/t.co\/e7qcNw5SmP\u2026","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/43gHLZWqoE","expanded_url":"http:\/\/kcbsradio.com","display_url":"kcbsradio.com","indices":[55,78]},{"url":"https:\/\/t.co\/e7qcNw5SmP","expanded_url":"http:\/\/www.audacy.com\/kcbsradio\/list","display_url":"audacy.com\/kcbsradio\/list","indices":[80,103]}]}},"protected":false,"followers_count":454,"friends_count":2219,"listed_count":9,"created_at":"Wed - Oct 30 09:54:19 +0000 2019","favourites_count":196,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2290,"lang":null,"status":{"created_at":"Tue - Feb 15 05:20:44 +0000 2022","id":1493455212412956673,"id_str":"1493455212412956673","text":"On - the news tonight on KCBS at 10:00, we''ll recap the massive outpouring for - the late Raiders coach John Madden\n-To\u2026 https:\/\/t.co\/qKLriuzN2H","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qKLriuzN2H","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493455212412956673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189865498743320580\/6R0K5i0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189865498743320580\/6R0K5i0H_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927284394141904897,"id_str":"927284394141904897","name":"The - Leftist Athiest","screen_name":"sanjakulic08","location":"Spain","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":464,"listed_count":0,"created_at":"Sun - Nov 05 21:20:02 +0000 2017","favourites_count":5247,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1074,"lang":null,"status":{"created_at":"Tue - Mar 15 04:16:31 +0000 2022","id":1503585910750957569,"id_str":"1503585910750957569","text":"@joncoopertweets - Nothing\u2026 couldn\u2019t give a f*** about his dumb ass face!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503435799760711683,"in_reply_to_status_id_str":"1503435799760711683","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1387541870897733632\/oXVv98JM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1387541870897733632\/oXVv98JM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831212296168996865,"id_str":"831212296168996865","name":"LizaNoone","screen_name":"LizaNoone","location":"Boston, - MA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":257,"listed_count":0,"created_at":"Mon - Feb 13 18:43:49 +0000 2017","favourites_count":2744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1787,"lang":null,"status":{"created_at":"Sat - Mar 26 01:36:00 +0000 2022","id":1507531784036233218,"id_str":"1507531784036233218","text":"@MarshaBlackburn - Hey Home Economics Queen, Sit down and stop talking. Get a haircut and stop - using Aqua Net, it has\u2026 https:\/\/t.co\/vUHsomSjQn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/vUHsomSjQn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507531784036233218","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507500586798927879,"in_reply_to_status_id_str":"1507500586798927879","in_reply_to_user_id":278145569,"in_reply_to_user_id_str":"278145569","in_reply_to_screen_name":"MarshaBlackburn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/831215009451667456\/_I5BD4km_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/831215009451667456\/_I5BD4km_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831212296168996865\/1494557329","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":946685725470281728,"id_str":"946685725470281728","name":"ericb","screen_name":"Riciebun","location":"UK","description":"Bio - doesn''t matter","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1121,"friends_count":2397,"listed_count":0,"created_at":"Fri - Dec 29 10:14:00 +0000 2017","favourites_count":9935,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"status":{"created_at":"Sun - Mar 20 20:49:55 +0000 2022","id":1505647849559797765,"id_str":"1505647849559797765","text":"RT - @United_Webby: Where can I watch real v Barca ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"United_Webby","name":"Darren - Webb","id":231138690,"id_str":"231138690","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 20:07:27 +0000 2022","id":1505637163341393920,"id_str":"1505637163341393920","text":"Where - can I watch real v Barca ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457293559267266565\/wA1z6Vzi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457293559267266565\/wA1z6Vzi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946685725470281728\/1633256531","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14292394,"id_str":"14292394","name":"jimnoz","screen_name":"jimnoz","location":"Orlando","description":"Retired, - crypto maximalist....I support \ud83c\uddfa\ud83c\udde6 and \ud83c\uddf5\ud83c\uddf1","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":2561,"listed_count":13,"created_at":"Thu - Apr 03 11:29:04 +0000 2008","favourites_count":17789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10422,"lang":null,"status":{"created_at":"Fri - Mar 25 18:48:00 +0000 2022","id":1507429105762983937,"id_str":"1507429105762983937","text":"@dcexaminer - @joerogan Oh OK Joe ...grrrrr!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dcexaminer","name":"Washington - Examiner","id":18956073,"id_str":"18956073","indices":[0,11]},{"screen_name":"joerogan","name":"Joe - Rogan","id":18208354,"id_str":"18208354","indices":[12,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507137616310939649,"in_reply_to_status_id_str":"1507137616310939649","in_reply_to_user_id":18956073,"in_reply_to_user_id_str":"18956073","in_reply_to_screen_name":"dcexaminer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000811500589\/483c3b7b640a48b7cb55b5541cfcbad3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000811500589\/483c3b7b640a48b7cb55b5541cfcbad3_normal.png","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":331142375,"id_str":"331142375","name":"JJC03","screen_name":"felsmichael","location":"Tampa, - FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":913,"listed_count":0,"created_at":"Thu - Jul 07 18:20:38 +0000 2011","favourites_count":22448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5549,"lang":null,"status":{"created_at":"Tue - Mar 22 21:23:49 +0000 2022","id":1506381155087663110,"id_str":"1506381155087663110","text":"RT - @MeidasTouch: We are releasing a video called #GOPMustGo. Once 500 people - respond to this tweet with the hashtag we will drop it! Ready,\u2026","truncated":false,"entities":{"hashtags":[{"text":"GOPMustGo","indices":[49,59]}],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:06:56 +0000 2022","id":1506376908468269056,"id_str":"1506376908468269056","text":"We - are releasing a video called #GOPMustGo. Once 500 people respond to this tweet - with the hashtag we will drop it! Ready, go!","truncated":false,"entities":{"hashtags":[{"text":"GOPMustGo","indices":[32,42]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3721,"favorite_count":11272,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3721,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/805546701461356548\/_iBs6K2F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/805546701461356548\/_iBs6K2F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":131176081,"id_str":"131176081","name":"Dexter - Consolacion","screen_name":"dcconsolacion","location":"Davao City","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":648,"listed_count":0,"created_at":"Fri - Apr 09 14:03:23 +0000 2010","favourites_count":117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Fri - Feb 18 10:41:45 +0000 2022","id":1494623164017508352,"id_str":"1494623164017508352","text":"@TheDeanQuinito - since there are a lot of serious buyers for the alaska franchise, the pba - should also consider new\u2026 https:\/\/t.co\/XqjL03ZnW9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDeanQuinito","name":"Quinito - Henson","id":341484821,"id_str":"341484821","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/XqjL03ZnW9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494623164017508352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1494486588369543176,"in_reply_to_status_id_str":"1494486588369543176","in_reply_to_user_id":341484821,"in_reply_to_user_id_str":"341484821","in_reply_to_screen_name":"TheDeanQuinito","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193377977825820672\/Doy4lRUf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193377977825820672\/Doy4lRUf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16151077,"id_str":"16151077","name":"Jimmy - LaRoue","screen_name":"jlaroue","location":"Virginia Beach, VA","description":"Reporter - for @suffolknews. \"... if I have the strength to love, I will be too weak - to hate.\" --Rev. Jefferson Jones of Surge Ministries in Christiansburg.","url":"https:\/\/t.co\/ub1jB86hxy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ub1jB86hxy","expanded_url":"https:\/\/suffolknewsherald.com","display_url":"suffolknewsherald.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1933,"friends_count":4957,"listed_count":38,"created_at":"Fri - Sep 05 23:17:06 +0000 2008","favourites_count":68786,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50218,"lang":null,"status":{"created_at":"Tue - Mar 22 22:08:24 +0000 2022","id":1506392376868229121,"id_str":"1506392376868229121","text":"RT - @VirtualVirginia: K\u20135 learners this summer can virtually travel abroad - to learn French or Spanish or virtually camp out to learn STEM sk\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VirtualVirginia","name":"Virtual - Virginia","id":1249781662365483008,"id_str":"1249781662365483008","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 17:18:27 +0000 2022","id":1504145078637502470,"id_str":"1504145078637502470","text":"K\u20135 - learners this summer can virtually travel abroad to learn French or Spanish - or virtually camp out to learn STEM\u2026 https:\/\/t.co\/ryeq1qoAvT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ryeq1qoAvT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504145078637502470","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1199827089937055744\/okRzyH3u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1199827089937055744\/okRzyH3u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16151077\/1574896045","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1260693908872466433,"id_str":"1260693908872466433","name":"Ennock","screen_name":"Ennock17","location":"","description":"Smiley","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":109,"listed_count":2,"created_at":"Wed - May 13 22:10:40 +0000 2020","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Thu - Nov 19 10:11:48 +0000 2020","id":1329366758516428800,"id_str":"1329366758516428800","text":"@Axelus225 - Viens je t''explique","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Axelus225","name":"Axel.Jo\ud83d\ude0e\ud83c\udde8\ud83c\uddee","id":881571478310965250,"id_str":"881571478310965250","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1329359378064035841,"in_reply_to_status_id_str":"1329359378064035841","in_reply_to_user_id":881571478310965250,"in_reply_to_user_id_str":"881571478310965250","in_reply_to_screen_name":"Axelus225","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260694211483049985\/IyF_BRMo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260694211483049985\/IyF_BRMo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1008704486079172608,"id_str":"1008704486079172608","name":"ROSE - TOWNSEND","screen_name":"rtownse41177044","location":"","description":"I am - a 77 year old widow.Born in Mass.I hav 4 children 2 grandkids 1 ggrandson","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":287,"listed_count":0,"created_at":"Mon - Jun 18 13:34:25 +0000 2018","favourites_count":6644,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18735,"lang":null,"status":{"created_at":"Wed - Aug 25 22:30:20 +0000 2021","id":1430658831118442501,"id_str":"1430658831118442501","text":"RT - @WalshFreedom: Since March of this year, the State Department has sent 19 - messages to Americans in Afghanistan telling them to leave. Wa\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WalshFreedom","name":"Joe - Walsh","id":236487888,"id_str":"236487888","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Aug 25 18:51:32 +0000 2021","id":1430603768362676226,"id_str":"1430603768362676226","text":"Since - March of this year, the State Department has sent 19 messages to Americans - in Afghanistan telling them to lea\u2026 https:\/\/t.co\/M3jtSB0ZWH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M3jtSB0ZWH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1430603768362676226","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8193,"favorite_count":25358,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8193,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374162516515946496\/roUbo9jb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374162516515946496\/roUbo9jb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250536636955471881,"id_str":"1250536636955471881","name":"Lawrence - N. Nkwocha","screen_name":"LawNkwocha","location":"Miami, FL","description":"I - love freedom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":184,"listed_count":2,"created_at":"Wed - Apr 15 21:30:43 +0000 2020","favourites_count":3152,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9356,"lang":null,"status":{"created_at":"Sat - Mar 26 10:13:54 +0000 2022","id":1507662117939388419,"id_str":"1507662117939388419","text":"RT - @ngozika_nzeadi: Why did #FreeMNK stop trending on Twitter? Is it not worth - it to keep Onyendu on twitter\u2019s consciousness? Think about\u2026","truncated":false,"entities":{"hashtags":[{"text":"FreeMNK","indices":[28,36]}],"symbols":[],"user_mentions":[{"screen_name":"ngozika_nzeadi","name":"Ngozi","id":1080935918868070400,"id_str":"1080935918868070400","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:28:04 +0000 2022","id":1507590185420263426,"id_str":"1507590185420263426","text":"Why - did #FreeMNK stop trending on Twitter? Is it not worth it to keep Onyendu - on twitter\u2019s consciousness? Think ab\u2026 https:\/\/t.co\/ouK7HqnFzy","truncated":true,"entities":{"hashtags":[{"text":"FreeMNK","indices":[8,16]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ouK7HqnFzy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507590185420263426","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":64,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":69,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250564572911730695\/-n4H9zs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250564572911730695\/-n4H9zs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250536636955471881\/1615252782","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":789380361230819328,"id_str":"789380361230819328","name":"vineet - kumar","screen_name":"VineetVk665043","location":"Ludhiana, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":480,"listed_count":0,"created_at":"Fri - Oct 21 08:18:39 +0000 2016","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19172801,"id_str":"19172801","name":"Fran - Kozarsky","screen_name":"fkrock","location":"New York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":1992,"listed_count":0,"created_at":"Mon - Jan 19 04:56:41 +0000 2009","favourites_count":476,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303812977481723912\/YXRBYJDU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303812977481723912\/YXRBYJDU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4465113437,"id_str":"4465113437","name":"Nan","screen_name":"nandea61","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":564,"listed_count":0,"created_at":"Sun - Dec 13 01:22:03 +0000 2015","favourites_count":14252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3156,"lang":null,"status":{"created_at":"Fri - Mar 25 04:46:22 +0000 2022","id":1507217305041874947,"id_str":"1507217305041874947","text":"RT - @BetteMidler: https:\/\/t.co\/EkjIeTOHHz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BetteMidler","name":"bettemidler","id":139823781,"id_str":"139823781","indices":[3,15]}],"urls":[],"media":[{"id":1507141888687501317,"id_str":"1507141888687501317","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","url":"https:\/\/t.co\/EkjIeTOHHz","display_url":"pic.twitter.com\/EkjIeTOHHz","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1507141890985979904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":597,"resize":"fit"},"medium":{"w":480,"h":597,"resize":"fit"},"large":{"w":480,"h":597,"resize":"fit"}},"source_status_id":1507141890985979904,"source_status_id_str":"1507141890985979904","source_user_id":139823781,"source_user_id_str":"139823781"}]},"extended_entities":{"media":[{"id":1507141888687501317,"id_str":"1507141888687501317","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","url":"https:\/\/t.co\/EkjIeTOHHz","display_url":"pic.twitter.com\/EkjIeTOHHz","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1507141890985979904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":597,"resize":"fit"},"medium":{"w":480,"h":597,"resize":"fit"},"large":{"w":480,"h":597,"resize":"fit"}},"source_status_id":1507141890985979904,"source_status_id_str":"1507141890985979904","source_user_id":139823781,"source_user_id_str":"139823781"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:46:42 +0000 2022","id":1507141890985979904,"id_str":"1507141890985979904","text":"https:\/\/t.co\/EkjIeTOHHz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507141888687501317,"id_str":"1507141888687501317","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","url":"https:\/\/t.co\/EkjIeTOHHz","display_url":"pic.twitter.com\/EkjIeTOHHz","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1507141890985979904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":597,"resize":"fit"},"medium":{"w":480,"h":597,"resize":"fit"},"large":{"w":480,"h":597,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507141888687501317,"id_str":"1507141888687501317","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOpxkAVUcAUT7a6.jpg","url":"https:\/\/t.co\/EkjIeTOHHz","display_url":"pic.twitter.com\/EkjIeTOHHz","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1507141890985979904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":597,"resize":"fit"},"medium":{"w":480,"h":597,"resize":"fit"},"large":{"w":480,"h":597,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4952,"favorite_count":30760,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":4952,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23105439,"id_str":"23105439","name":"Bill - Buzenberg","screen_name":"Buzenberg","location":"Port Ludlow, WA","description":"Former - V.P. NPR & MPR News, Ex. Dir. Center for Public Integrity, and former Harvard - Fellow at IOP, Shorenstein; now writer and consultant living near Seattle.","url":"https:\/\/t.co\/vwEWJlpwJt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vwEWJlpwJt","expanded_url":"http:\/\/www.publicintegrity.org","display_url":"publicintegrity.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1058,"friends_count":655,"listed_count":51,"created_at":"Fri - Mar 06 19:21:15 +0000 2009","favourites_count":29981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2734,"lang":null,"status":{"created_at":"Thu - Mar 24 19:30:47 +0000 2022","id":1507077488077262867,"id_str":"1507077488077262867","text":"Chances - are this will get no coverage at all, or perhaps a minimal mere mention. https:\/\/t.co\/Fh6mSkBQDf","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Fh6mSkBQDf","expanded_url":"https:\/\/twitter.com\/whcos\/status\/1506997831135272960","display_url":"twitter.com\/whcos\/status\/1\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506997831135272960,"quoted_status_id_str":"1506997831135272960","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D4E6E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578296270273441792\/ZpbJbfQ3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578296270273441792\/ZpbJbfQ3_normal.jpeg","profile_link_color":"0ABEFF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1139619405925457921,"id_str":"1139619405925457921","name":"\u00e6","screen_name":"IFLqwid6DVtfK82","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1766,"listed_count":0,"created_at":"Fri - Jun 14 19:43:34 +0000 2019","favourites_count":19419,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":541,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372410356782497792\/BNt0bB5i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372410356782497792\/BNt0bB5i_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250266939978547201,"id_str":"1250266939978547201","name":"jmdraho","screen_name":"jmdraho1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":611,"listed_count":0,"created_at":"Wed - Apr 15 03:37:47 +0000 2020","favourites_count":1014,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Fri - Mar 11 19:00:37 +0000 2022","id":1502358854113411082,"id_str":"1502358854113411082","text":"@jax0ftrades - Happy birthday Jacki!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jax0ftrades","name":"Jacki - Eli","id":495350749,"id_str":"495350749","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1502041393136652290,"in_reply_to_status_id_str":"1502041393136652290","in_reply_to_user_id":495350749,"in_reply_to_user_id_str":"495350749","in_reply_to_screen_name":"jax0ftrades","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250267224952070146\/7cz52IYh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250267224952070146\/7cz52IYh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":932296182079954944,"id_str":"932296182079954944","name":"Yesh","screen_name":"Yesh74690278","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1827,"listed_count":0,"created_at":"Sun - Nov 19 17:15:05 +0000 2017","favourites_count":13098,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":792794226178265092,"id_str":"792794226178265092","name":"Miranda - Wisner","screen_name":"mirandawisner11","location":"West Virginia, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":324,"listed_count":1,"created_at":"Sun - Oct 30 18:24:07 +0000 2016","favourites_count":10335,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Apr 28 10:15:58 +0000 2021","id":1387349867043987456,"id_str":"1387349867043987456","text":"RT - @LaurenGruel: I forgot my mask at home & entered a grocery store expecting - someone to immediately stop me(I always wear a mask in public\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LaurenGruel","name":"Lauren","id":2712527880,"id_str":"2712527880","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 27 16:26:35 +0000 2021","id":1387080747102523394,"id_str":"1387080747102523394","text":"I - forgot my mask at home & entered a grocery store expecting someone to - immediately stop me(I always wear a mask in\u2026 https:\/\/t.co\/LQx81zSniG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LQx81zSniG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1387080747102523394","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1025,"favorite_count":11794,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1025,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4227148367,"id_str":"4227148367","name":"Ahmad - yusuf","screen_name":"Ahmadbioc","location":"Hadejia, Nigeria","description":"Ahmad - yusuf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":577,"listed_count":0,"created_at":"Thu - Nov 19 15:26:32 +0000 2015","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Fri - Oct 01 11:43:22 +0000 2021","id":1443904368055623689,"id_str":"1443904368055623689","text":"Hello - World","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233024803340156930\/Xnc2_PLo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233024803340156930\/Xnc2_PLo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":354906833,"id_str":"354906833","name":"Teresa - Deetman","screen_name":"ArtandMax","location":"San Diego CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":459,"listed_count":0,"created_at":"Sun - Aug 14 14:14:29 +0000 2011","favourites_count":3749,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - May 16 18:38:47 +0000 2020","id":1261727814102859777,"id_str":"1261727814102859777","text":"RT - @jleeannis: https:\/\/t.co\/PIHnEl2R71","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jleeannis","name":"Lee - Annis","id":466167085,"id_str":"466167085","indices":[3,13]}],"urls":[],"media":[{"id":1261544356760215554,"id_str":"1261544356760215554","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","url":"https:\/\/t.co\/PIHnEl2R71","display_url":"pic.twitter.com\/PIHnEl2R71","expanded_url":"https:\/\/twitter.com\/jleeannis\/status\/1261544366126125056\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1261544366126125056,"source_status_id_str":"1261544366126125056","source_user_id":466167085,"source_user_id_str":"466167085"}]},"extended_entities":{"media":[{"id":1261544356760215554,"id_str":"1261544356760215554","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","url":"https:\/\/t.co\/PIHnEl2R71","display_url":"pic.twitter.com\/PIHnEl2R71","expanded_url":"https:\/\/twitter.com\/jleeannis\/status\/1261544366126125056\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1261544366126125056,"source_status_id_str":"1261544366126125056","source_user_id":466167085,"source_user_id_str":"466167085"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - May 16 06:29:49 +0000 2020","id":1261544366126125056,"id_str":"1261544366126125056","text":"https:\/\/t.co\/PIHnEl2R71","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1261544356760215554,"id_str":"1261544356760215554","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","url":"https:\/\/t.co\/PIHnEl2R71","display_url":"pic.twitter.com\/PIHnEl2R71","expanded_url":"https:\/\/twitter.com\/jleeannis\/status\/1261544366126125056\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1261544356760215554,"id_str":"1261544356760215554","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYHn6JUXYAI2I1g.png","url":"https:\/\/t.co\/PIHnEl2R71","display_url":"pic.twitter.com\/PIHnEl2R71","expanded_url":"https:\/\/twitter.com\/jleeannis\/status\/1261544366126125056\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":720,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7066,"favorite_count":32281,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":7066,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/670391994108108800\/qCjc5Ciq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/670391994108108800\/qCjc5Ciq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354906833\/1448668840","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1121811728667500544,"id_str":"1121811728667500544","name":"Edward - Zogby","screen_name":"EdwardZogby","location":"","description":"New grandpa\nPolicy - and Program Management in Human Services. 20 years as a policy and program - Director. Loves America and our democracy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":712,"friends_count":1095,"listed_count":0,"created_at":"Fri - Apr 26 16:22:13 +0000 2019","favourites_count":6445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35387,"lang":null,"status":{"created_at":"Fri - Mar 25 18:35:19 +0000 2022","id":1507425914908459049,"id_str":"1507425914908459049","text":"RT - @bblock29: Ginni Thomas does not discuss overturning the election with Her - husband but texts Mark Meadows and Jared Kushner.\nDoes anyone\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bblock29","name":"Agolf - Twitler Slayer","id":1949789970,"id_str":"1949789970","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:53:59 +0000 2022","id":1507400414588772385,"id_str":"1507400414588772385","text":"Ginni - Thomas does not discuss overturning the election with Her husband but texts - Mark Meadows and Jared Kushner.\nDoes anyone believe this?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2280,"favorite_count":10763,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2280,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444423998331400192\/GSbG9pMF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444423998331400192\/GSbG9pMF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1200301840564400128,"id_str":"1200301840564400128","name":"Marilyn - Schenker","screen_name":"MarilynSchenker","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":53,"listed_count":0,"created_at":"Fri - Nov 29 06:34:49 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237084454331564032,"id_str":"1237084454331564032","name":"jdkimelman","screen_name":"jdkimelman","location":"","description":"physician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":482,"listed_count":0,"created_at":"Mon - Mar 09 18:36:32 +0000 2020","favourites_count":3807,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Thu - Jan 06 14:10:25 +0000 2022","id":1479092996863930370,"id_str":"1479092996863930370","text":"RT - @jeremyfaust: RT if you personally know someone with Covid right now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeremyfaust","name":"Jeremy - Faust MD MS (ER physician)","id":35328942,"id_str":"35328942","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jan 05 07:38:18 +0000 2022","id":1478631929435938819,"id_str":"1478631929435938819","text":"RT - if you personally know someone with Covid right now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":103251,"favorite_count":96318,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":103251,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":175198126,"id_str":"175198126","name":"\ud83d\udc51KingSaintEfraim - JuanElqanah","screen_name":"thatholyking","location":"Uyo,Akwa Ibom State, - Nigeria ","description":"A conservative Catholic. A doting husband and a caring - father.\nAn ardent @Arsenal fan and erudite sports analyst.\nA patriot and - true democrat.","url":"https:\/\/t.co\/AWTkOJSLac","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AWTkOJSLac","expanded_url":"http:\/\/www.facebook.com\/uk2kare","display_url":"facebook.com\/uk2kare","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":1748,"listed_count":0,"created_at":"Thu - Aug 05 23:33:17 +0000 2010","favourites_count":1685,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":219,"lang":null,"status":{"created_at":"Sat - Mar 26 10:00:42 +0000 2022","id":1507658795786330116,"id_str":"1507658795786330116","text":"@afcstuff - @m8arteta Happy birthday,boss","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"afcstuff","name":"afcstuff","id":3123238004,"id_str":"3123238004","indices":[0,9]},{"screen_name":"m8arteta","name":"Mikel - Arteta","id":955229336,"id_str":"955229336","indices":[10,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507631927896989700,"in_reply_to_status_id_str":"1507631927896989700","in_reply_to_user_id":3123238004,"in_reply_to_user_id_str":"3123238004","in_reply_to_screen_name":"afcstuff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1455921271028523016\/eMMEnuLc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1455921271028523016\/eMMEnuLc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175198126\/1630670299","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3404176714,"id_str":"3404176714","name":"\ud83e\udd8b - asha","screen_name":"rockstar_asha","location":"Mirabel","description":"Phoenix","url":"https:\/\/t.co\/cdMw2gJDSb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cdMw2gJDSb","expanded_url":"https:\/\/www.tumblr.com\/blog\/rockstar-asha","display_url":"tumblr.com\/blog\/rockstar-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1120,"friends_count":195,"listed_count":0,"created_at":"Wed - Aug 05 12:28:56 +0000 2015","favourites_count":20444,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34147,"lang":null,"status":{"created_at":"Wed - Mar 23 15:15:27 +0000 2022","id":1506650841435893764,"id_str":"1506650841435893764","text":"RT - @baddest_htx: Spring break should be 2 weeks for college students \ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baddest_htx","name":"d.essalyn","id":967167104540729350,"id_str":"967167104540729350","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 18:33:28 +0000 2022","id":1505975899287703559,"id_str":"1505975899287703559","text":"Spring - break should be 2 weeks for college students \ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11076,"favorite_count":91239,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11076,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395782579274403841\/4h-ho8C1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395782579274403841\/4h-ho8C1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3404176714\/1546603307","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23517689,"id_str":"23517689","name":"Mary","screen_name":"maryjeans","location":"","description":"Concord - in Babel (most of the time).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":35,"listed_count":0,"created_at":"Mon - Mar 09 22:49:14 +0000 2009","favourites_count":10028,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6289,"lang":null,"status":{"created_at":"Fri - Mar 25 14:00:22 +0000 2022","id":1507356721299263488,"id_str":"1507356721299263488","text":"@SheLuvsJMart - I will if I want","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SheLuvsJMart","name":"jmart","id":772200350405185536,"id_str":"772200350405185536","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504915223232188417,"in_reply_to_status_id_str":"1504915223232188417","in_reply_to_user_id":772200350405185536,"in_reply_to_user_id_str":"772200350405185536","in_reply_to_screen_name":"SheLuvsJMart","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338857678806929408\/MngkpyTn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338857678806929408\/MngkpyTn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23517689\/1405896734","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1179910482,"id_str":"1179910482","name":"fastanaki","screen_name":"Fastanaki","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":122,"friends_count":2103,"listed_count":0,"created_at":"Thu - Feb 14 18:09:05 +0000 2013","favourites_count":20006,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2524,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488774174828396544\/n7jBlnjY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488774174828396544\/n7jBlnjY_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":458654399,"id_str":"458654399","name":"Ammar - Awada","screen_name":"AwadaTom","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":431,"listed_count":0,"created_at":"Sun - Jan 08 20:14:15 +0000 2012","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Wed - Feb 10 12:00:58 +0000 2021","id":1359472424350322689,"id_str":"1359472424350322689","text":"@elonmusk - U are the best ans smart","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1359401265017610247,"in_reply_to_status_id_str":"1359401265017610247","in_reply_to_user_id":44196397,"in_reply_to_user_id_str":"44196397","in_reply_to_screen_name":"elonmusk","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":967416884,"id_str":"967416884","name":"cleopas - jerimani","screen_name":"cleopasjeriman1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":491,"listed_count":0,"created_at":"Sat - Nov 24 05:28:34 +0000 2012","favourites_count":150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu - Nov 25 15:01:51 +0000 2021","id":1463885651892486149,"id_str":"1463885651892486149","text":"@Rakgadi_EM - Well spoken Malema. Wish they could listen to these words of wisdom so that - our motherland can prosper\u2026 https:\/\/t.co\/k7uJnqQld0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Rakgadi_EM","name":"\ud835\udc0e\ud835\udc1f\ud835\udc1f\ud835\udc22\ud835\udc1c\ud835\udc22\ud835\udc1a\ud835\udc25 - \ud835\udc11\ud835\udc1a\ud835\udc24\ud835\udc20\ud835\udc1a\ud835\udc1d\ud835\udc22 - \ud835\udc12\ud835\udc28\ud835\udc25\ud835\udc1d\ud835\udc22\ud835\udc1e\ud835\udc2b - \ud83c\uddff","id":595351222,"id_str":"595351222","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/k7uJnqQld0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1463885651892486149","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1463802737322254336,"in_reply_to_status_id_str":"1463802737322254336","in_reply_to_user_id":595351222,"in_reply_to_user_id_str":"595351222","in_reply_to_screen_name":"Rakgadi_EM","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2888552050\/d2d9f11afa55660d84ba7505d0e4b78c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2888552050\/d2d9f11afa55660d84ba7505d0e4b78c_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":630740093,"id_str":"630740093","name":"pinson","screen_name":"pinsoncreek","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":29,"friends_count":493,"listed_count":0,"created_at":"Mon - Jul 09 03:19:46 +0000 2012","favourites_count":1280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":406,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1088535723244994565\/aIxx-kNX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1088535723244994565\/aIxx-kNX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":972281655653289984,"id_str":"972281655653289984","name":"rae","screen_name":"rae_chel1221","location":"Philadelphia, - PA","description":"maybe i\u2019m not dying, i\u2019m just living in decaying - cities","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":88,"friends_count":660,"listed_count":0,"created_at":"Sat - Mar 10 01:23:05 +0000 2018","favourites_count":28587,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6999,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477325326963380226\/cy5NPXaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477325326963380226\/cy5NPXaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972281655653289984\/1637728296","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":294593202,"id_str":"294593202","name":"Betty - Melkon","screen_name":"BMelkon","location":"Hilton Head Island, SC","description":"Nutritional - Health Counselor. Alliance-trained Yoga Instructor at Island Yoga.","url":"http:\/\/t.co\/efQGblcQSV","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/efQGblcQSV","expanded_url":"http:\/\/www.bettymelkon.com","display_url":"bettymelkon.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":116,"listed_count":1,"created_at":"Sat - May 07 12:34:55 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":160,"lang":null,"status":{"created_at":"Wed - Oct 28 00:01:54 +0000 2020","id":1321240740161298434,"id_str":"1321240740161298434","text":"@WillieGeist - @realmikefox @ChrisStapleton Everybody I know loves you Willie Geist and we - wake up on Sunday morning\u2026 https:\/\/t.co\/MmGZyTMkdb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WillieGeist","name":"Willie - Geist","id":17291393,"id_str":"17291393","indices":[0,12]},{"screen_name":"realmikefox","name":"Michael - J. Fox","id":398092540,"id_str":"398092540","indices":[13,25]},{"screen_name":"ChrisStapleton","name":"Chris - Stapleton","id":51104447,"id_str":"51104447","indices":[26,41]}],"urls":[{"url":"https:\/\/t.co\/MmGZyTMkdb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1321240740161298434","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1321232566024839169,"in_reply_to_status_id_str":"1321232566024839169","in_reply_to_user_id":17291393,"in_reply_to_user_id_str":"17291393","in_reply_to_screen_name":"WillieGeist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":106,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/694208443712999424\/rEROCE0P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/694208443712999424\/rEROCE0P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294593202\/1448540495","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048193377,"id_str":"1048193377","name":"jpf","screen_name":"thurm1955","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":1048,"listed_count":0,"created_at":"Sun - Dec 30 15:43:27 +0000 2012","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Fri - Mar 19 02:21:38 +0000 2021","id":1372734980800065538,"id_str":"1372734980800065538","text":"@TaylorMadeGolf - 5 iron","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TaylorMadeGolf","name":"TaylorMade - Golf","id":44706253,"id_str":"44706253","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1372638957951840258,"in_reply_to_status_id_str":"1372638957951840258","in_reply_to_user_id":44706253,"in_reply_to_user_id_str":"44706253","in_reply_to_screen_name":"TaylorMadeGolf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20206279,"id_str":"20206279","name":"PAnn","screen_name":"Annaula76","location":"Boston, - MA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":279,"listed_count":0,"created_at":"Fri - Feb 06 00:44:33 +0000 2009","favourites_count":7996,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914091218690338817\/7acDxeFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914091218690338817\/7acDxeFy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":524967727,"id_str":"524967727","name":"alana - brown","screen_name":"alanabrown15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":157,"listed_count":0,"created_at":"Thu - Mar 15 02:53:15 +0000 2012","favourites_count":3130,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":650,"lang":null,"status":{"created_at":"Tue - Mar 15 12:48:46 +0000 2022","id":1503714823762235398,"id_str":"1503714823762235398","text":"RT - @DonaldJTrumpJr: What the hell has Congress done to deserve a 21% raise? I - guess, like insider trading, they can hedge against inflation\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 12:34:49 +0000 2022","id":1503711312546836483,"id_str":"1503711312546836483","text":"What - the hell has Congress done to deserve a 21% raise? I guess, like insider trading, - they can hedge against infla\u2026 https:\/\/t.co\/UxWrfcC4iG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UxWrfcC4iG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503711312546836483","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16095,"favorite_count":66692,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16095,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":961386284001517568,"id_str":"961386284001517568","name":"Jim - McDowall","screen_name":"JimMcDowall10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":64,"listed_count":0,"created_at":"Wed - Feb 07 23:48:46 +0000 2018","favourites_count":2501,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Aug 27 15:59:02 +0000 2019","id":1166379601855229952,"id_str":"1166379601855229952","text":"#BELCO_ESNA - https:\/\/t.co\/VOJoyZZkXt","truncated":false,"entities":{"hashtags":[{"text":"BELCO_ESNA","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VOJoyZZkXt","expanded_url":"https:\/\/twitter.com\/EnergyStorageNA\/status\/1163919800071942144","display_url":"twitter.com\/EnergyStorageN\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1163919800071942144,"quoted_status_id_str":"1163919800071942144","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":495999624,"id_str":"495999624","name":"hank","screen_name":"henri1746","location":"","description":"Do - Not Comply\n\"Once in awhile it really hits people they don''t have to experience - the world they have been told to\"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":648,"friends_count":2564,"listed_count":0,"created_at":"Sat - Feb 18 14:26:23 +0000 2012","favourites_count":50987,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13019,"lang":null,"status":{"created_at":"Sat - Mar 26 08:52:45 +0000 2022","id":1507641694262632454,"id_str":"1507641694262632454","text":"https:\/\/t.co\/yftymIDD7q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yftymIDD7q","expanded_url":"https:\/\/childrenshealthdefense.org\/defender\/myocarditis-kids-after-covid-vaccine-vaers-data\/","display_url":"childrenshealthdefense.org\/defender\/myoca\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461678020020908050\/65R414fd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461678020020908050\/65R414fd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495999624\/1637690391","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1120641384,"id_str":"1120641384","name":"Chad - Clement","screen_name":"cclement873","location":"Texas, USA","description":"Catholic, - Constitutional Conservative, History Buff.... #CloseTheBorder #StandWithIsrael - #ProLife #2A #CowboysNation #Mavericks #BullsNation #Rangers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2472,"friends_count":1892,"listed_count":28,"created_at":"Sat - Jan 26 01:09:32 +0000 2013","favourites_count":51644,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":30519,"lang":null,"status":{"created_at":"Thu - Mar 24 17:54:32 +0000 2022","id":1507053262272450569,"id_str":"1507053262272450569","text":"RT - @RealCandaceO: Biden: We must appoint a woman to the Supreme Court. \n\nSupreme - Court Nominee: I don\u2019t know what a woman is\u2014 I\u2019m not a bio\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealCandaceO","name":"Candace - Owens","id":878247600096509952,"id_str":"878247600096509952","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 19:14:35 +0000 2022","id":1506711019485290510,"id_str":"1506711019485290510","text":"Biden: - We must appoint a woman to the Supreme Court. \n\nSupreme Court Nominee: I - don\u2019t know what a woman is\u2014 I\u2019m not\u2026 https:\/\/t.co\/uJ2JGrXLYC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uJ2JGrXLYC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506711019485290510","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22723,"favorite_count":105212,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22723,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398622970340335617\/Y724Nq_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398622970340335617\/Y724Nq_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120641384\/1634742194","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36069572,"id_str":"36069572","name":"SANDI - GRATTERI","screen_name":"LSTCA29","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":252,"listed_count":0,"created_at":"Tue - Apr 28 13:53:46 +0000 2009","favourites_count":2543,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":897,"lang":null,"status":{"created_at":"Fri - Mar 25 17:55:35 +0000 2022","id":1507415914479726592,"id_str":"1507415914479726592","text":"@JH4PDX - I didn\u2019t realize Portland was thriving. Have you been form town lately - ? Fantasy world you live in must be nice","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JH4PDX","name":"Jo - Ann for Portland","id":1321891504344899584,"id_str":"1321891504344899584","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507085419560812545,"in_reply_to_status_id_str":"1507085419560812545","in_reply_to_user_id":1321891504344899584,"in_reply_to_user_id_str":"1321891504344899584","in_reply_to_screen_name":"JH4PDX","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":919719762527182849,"id_str":"919719762527182849","name":"Ann - Bolen","screen_name":"gabimom18","location":"Baldwin City, KS","description":"Fun, - good natured, happy, friendly, intelligent, politically aware liberal democrat, - Mom, really great Grandma","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":316,"listed_count":0,"created_at":"Mon - Oct 16 00:20:53 +0000 2017","favourites_count":7833,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2687,"lang":null,"status":{"created_at":"Wed - Dec 22 17:53:20 +0000 2021","id":1473713280245981196,"id_str":"1473713280245981196","text":"RT - @OccupyDemocrats: BREAKING NEWS: Intel senda a defiant message to its anti-vaxxer - employees, announces that all unvaccinated workers wil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 22 12:06:02 +0000 2021","id":1473625877858582530,"id_str":"1473625877858582530","text":"BREAKING - NEWS: Intel senda a defiant message to its anti-vaxxer employees, announces - that all unvaccinated workers\u2026 https:\/\/t.co\/9zWX8E4xbx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9zWX8E4xbx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1473625877858582530","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5668,"favorite_count":18024,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5668,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232367402853240834,"id_str":"1232367402853240834","name":"Swedishchef18","screen_name":"Swedishchef181","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":830,"listed_count":0,"created_at":"Tue - Feb 25 18:11:07 +0000 2020","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":207618538,"id_str":"207618538","name":"Mouette - San Diego","screen_name":"mouettesandiego","location":"2015 Birch Rd. Chula - Vista","description":"Special Occasion dresses, and accesories","url":"http:\/\/t.co\/jHL2PAbS7A","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jHL2PAbS7A","expanded_url":"http:\/\/www.mouettesandiego.com","display_url":"mouettesandiego.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":137,"listed_count":0,"created_at":"Mon - Oct 25 17:48:51 +0000 2010","favourites_count":362,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Tue - Mar 09 03:41:45 +0000 2021","id":1369131266432331780,"id_str":"1369131266432331780","text":"RT - @RobMeyerson: Funny how people always say \u201cavoid that like the plague\u201d - and then the plague shows up and millions of people do very littl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RobMeyerson","name":"Rob - Meyerson","id":932072245412765696,"id_str":"932072245412765696","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 07 17:01:50 +0000 2021","id":1368607838386319362,"id_str":"1368607838386319362","text":"Funny - how people always say \u201cavoid that like the plague\u201d and then the - plague shows up and millions of people do very little to avoid it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55448,"favorite_count":349168,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":55448,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537627680300990464\/VJbv_gnc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537627680300990464\/VJbv_gnc_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":321381747,"id_str":"321381747","name":"Tai_YOLO","screen_name":"attinahcmaI","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":57,"listed_count":9,"created_at":"Tue - Jun 21 13:48:21 +0000 2011","favourites_count":13787,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":118682,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456953939744546816\/mWe926nG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456953939744546816\/mWe926nG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321381747\/1562205759","profile_link_color":"1500B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":804772075,"id_str":"804772075","name":"Grant - Gamble","screen_name":"GrantGambleJr","location":"Jacksonville, Fl.","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":884,"listed_count":0,"created_at":"Wed - Sep 05 14:59:17 +0000 2012","favourites_count":6052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":616,"lang":null,"status":{"created_at":"Sun - Mar 13 03:44:35 +0000 2022","id":1502853100738072580,"id_str":"1502853100738072580","text":"RT - @viewsdey: A black man becomes the first Surgeon to cure deafness. \ud83d\ude4f\u2764\ufe0f\n\nHow - many RETWEETS to appreciate him?\nhttps:\/\/t.co\/R7KfVYHE6k htt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"viewsdey","name":"NUNGUA - BURNA ( FACTOS RONALDO )","id":1320087277046059008,"id_str":"1320087277046059008","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/R7KfVYHE6k","expanded_url":"https:\/\/twitter.com\/i\/spaces\/1OyKADomoPDxb","display_url":"twitter.com\/i\/spaces\/1OyKA\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 12 08:25:15 +0000 2022","id":1502561344742121478,"id_str":"1502561344742121478","text":"A - black man becomes the first Surgeon to cure deafness. \ud83d\ude4f\u2764\ufe0f\n\nHow - many RETWEETS to appreciate him?\u2026 https:\/\/t.co\/btC7SkACvG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/btC7SkACvG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502561344742121478","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[99,122]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":131033,"favorite_count":504635,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":131033,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897082262080114689\/66ccvPon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897082262080114689\/66ccvPon_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":283738725,"id_str":"283738725","name":"J - Pulsifer","screen_name":"draffish","location":"","description":"views are - my own #vetsforguncontrol he\/him","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":1527,"listed_count":0,"created_at":"Sun - Apr 17 22:51:47 +0000 2011","favourites_count":9599,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1854,"lang":null,"status":{"created_at":"Fri - Mar 25 13:59:15 +0000 2022","id":1507356441455304705,"id_str":"1507356441455304705","text":"@tonyposnanski - Hot coffee Starbucks. Iced Dunkin\u2019","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507353471363817478,"in_reply_to_status_id_str":"1507353471363817478","in_reply_to_user_id":17642747,"in_reply_to_user_id_str":"17642747","in_reply_to_screen_name":"tonyposnanski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057367452378714113\/i93n6VSg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057367452378714113\/i93n6VSg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283738725\/1546222188","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34465209,"id_str":"34465209","name":"Tanuja - Murgai","screen_name":"tmurgai","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":220,"listed_count":0,"created_at":"Thu - Apr 23 00:41:51 +0000 2009","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107424079668219910,"id_str":"1107424079668219910","name":"Granny","screen_name":"Granny36552332","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":145,"listed_count":0,"created_at":"Sun - Mar 17 23:30:50 +0000 2019","favourites_count":145,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23899718,"id_str":"23899718","name":"Irving - Kolodziejski","screen_name":"irvingk","location":"Maine","description":"Found - the right person to spend the rest of my life with.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":66,"listed_count":0,"created_at":"Thu - Mar 12 04:43:41 +0000 2009","favourites_count":1146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5066,"lang":null,"status":{"created_at":"Sat - Mar 26 02:39:19 +0000 2022","id":1507547719837143047,"id_str":"1507547719837143047","text":"@CharlieCrist - How about, instead of traveling to PR, you talk to the people in Florida. - They may be FROM Pr, but they''re not IN PR.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CharlieCrist","name":"Charlie - Crist","id":38970940,"id_str":"38970940","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507427878027378689,"in_reply_to_status_id_str":"1507427878027378689","in_reply_to_user_id":38970940,"in_reply_to_user_id_str":"38970940","in_reply_to_screen_name":"CharlieCrist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1049354515114283011,"id_str":"1049354515114283011","name":"Elizabeth - Berenguer","screen_name":"BerenguerProf","location":"Gulfport, FL","description":"Professor - of legal writing; lover of words","url":"https:\/\/t.co\/gI8us1QX6H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gI8us1QX6H","expanded_url":"https:\/\/www.stetson.edu\/law\/faculty\/home\/elizabeth-berenguer.php","display_url":"stetson.edu\/law\/faculty\/ho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":209,"friends_count":275,"listed_count":4,"created_at":"Mon - Oct 08 17:43:07 +0000 2018","favourites_count":1131,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Thu - Mar 24 18:18:08 +0000 2022","id":1507059204607066116,"id_str":"1507059204607066116","text":"This - cause is close to my heart - please sign: https:\/\/t.co\/HcPFSWxe0n","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HcPFSWxe0n","expanded_url":"http:\/\/sign.moveon.org\/petitions\/act-fast-appoint-justice-breyer-s-replacement-as-soon-as-possible?source=twitter_share_button&utm_source=twitter&share=2b88941c-39cf-4222-892d-b411d56fbac1","display_url":"sign.moveon.org\/petitions\/act-\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050350863217283073\/fBgLBoyN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050350863217283073\/fBgLBoyN_normal.jpg","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1085188293283721216,"id_str":"1085188293283721216","name":"Shams - 7 Elbey","screen_name":"7_elbey","location":"","description":"Life Coach Governmental - Black Political scientist researcher entrepreneur Activist Moorish American - Nuwaupian Muslim Indian Nationalist ! - Democrat ???","url":"https:\/\/t.co\/b7ZxXaIeDN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b7ZxXaIeDN","expanded_url":"http:\/\/www.cbpm.org\/shamsamoorishamerican","display_url":"cbpm.org\/shamsamoorisha\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":4890,"listed_count":0,"created_at":"Tue - Jan 15 14:53:45 +0000 2019","favourites_count":904,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4334,"lang":null,"status":{"created_at":"Sun - Jun 27 20:31:34 +0000 2021","id":1409248058584571911,"id_str":"1409248058584571911","text":"RT - @7_elbey: Republicans don''t cheat for votes tell the truth about what you - all really mean in society and That''s it''s First denial of Peo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"7_elbey","name":"Shams - 7 Elbey","id":1085188293283721216,"id_str":"1085188293283721216","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 27 15:55:07 +0000 2021","id":1387072827392659466,"id_str":"1387072827392659466","text":"Republicans - don''t cheat for votes tell the truth about what you all really mean in society - and That''s it''s First de\u2026 https:\/\/t.co\/xma09WfcWm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xma09WfcWm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1387072827392659466","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1387063147383623681,"in_reply_to_status_id_str":"1387063147383623681","in_reply_to_user_id":1085188293283721216,"in_reply_to_user_id_str":"1085188293283721216","in_reply_to_screen_name":"7_elbey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1085189029883072513\/mG3G53dj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1085189029883072513\/mG3G53dj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3249085018,"id_str":"3249085018","name":"jerry - Krieger","screen_name":"jkrieger871","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":899,"listed_count":0,"created_at":"Tue - May 12 22:40:06 +0000 2015","favourites_count":2079,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":656,"lang":null,"status":{"created_at":"Sat - Mar 19 01:47:07 +0000 2022","id":1504997864396763143,"id_str":"1504997864396763143","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17032387,"id_str":"17032387","name":"Nola - Armstrong","screen_name":"NolaArmstrong","location":"Columbia, SC","description":"BamaBornBuckeye, - person for Hall, Hank, Gidget and Gracie \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":511,"friends_count":1304,"listed_count":7,"created_at":"Wed - Oct 29 00:36:30 +0000 2008","favourites_count":7912,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1680,"lang":null,"status":{"created_at":"Wed - Mar 16 14:41:30 +0000 2022","id":1504105581543575552,"id_str":"1504105581543575552","text":"@carolecash19 - @WarOnDumb I''m old enough to remember this textbook at Mitchell Satellite - Elementary in Gadsden https:\/\/t.co\/ZOFOkhoXKL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"carolecash19","name":"carole - cash","id":957048356576157699,"id_str":"957048356576157699","indices":[0,13]},{"screen_name":"WarOnDumb","name":"Kyle - Whitmire","id":96505646,"id_str":"96505646","indices":[14,24]}],"urls":[{"url":"https:\/\/t.co\/ZOFOkhoXKL","expanded_url":"https:\/\/birminghamwatch.org\/know-alabama-justified-slavery-praised-confederacy-schoolchildren\/","display_url":"birminghamwatch.org\/know-alabama-j\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1503980460891947010,"in_reply_to_status_id_str":"1503980460891947010","in_reply_to_user_id":957048356576157699,"in_reply_to_user_id_str":"957048356576157699","in_reply_to_screen_name":"carolecash19","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472187681715142658\/zFu_RxK9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472187681715142658\/zFu_RxK9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17032387\/1618164069","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1041799278404829184,"id_str":"1041799278404829184","name":"My - side","screen_name":"Myside89551195","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":198,"listed_count":0,"created_at":"Mon - Sep 17 21:21:18 +0000 2018","favourites_count":5226,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1692,"lang":null,"status":{"created_at":"Wed - Dec 30 14:03:48 +0000 2020","id":1344283046963339267,"id_str":"1344283046963339267","text":"Do - You Love Me? https:\/\/t.co\/378vvVBcpZ via @YouTube","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[44,52]}],"urls":[{"url":"https:\/\/t.co\/378vvVBcpZ","expanded_url":"https:\/\/youtu.be\/fn3KWM1kuAw","display_url":"youtu.be\/fn3KWM1kuAw","indices":[16,39]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220340604132921346\/czaIEtyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220340604132921346\/czaIEtyZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":743831890898132992,"id_str":"743831890898132992","name":"LDR. - Rapheal Ogunnaike","screen_name":"Ogunraph84","location":"Lagos, Nigeria","description":"A - man of great purpose and spiritually incline with great potential and passion - for success and soul wining business","url":"https:\/\/t.co\/imswDz8YP6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/imswDz8YP6","expanded_url":"http:\/\/www.upsteelinglyelectric.com","display_url":"upsteelinglyelectric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":226,"listed_count":0,"created_at":"Fri - Jun 17 15:45:17 +0000 2016","favourites_count":776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":681,"lang":null,"status":{"created_at":"Tue - Mar 22 17:33:59 +0000 2022","id":1506323315689984005,"id_str":"1506323315689984005","text":"@AndrewSalisu - Ore na scam !!!! oh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewSalisu","name":"Andre - Ayo","id":3021802894,"id_str":"3021802894","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506010127153123331,"in_reply_to_status_id_str":"1506010127153123331","in_reply_to_user_id":3021802894,"in_reply_to_user_id_str":"3021802894","in_reply_to_screen_name":"AndrewSalisu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372076275154747393\/wkTcK1Se_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372076275154747393\/wkTcK1Se_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743831890898132992\/1571284883","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2902996796,"id_str":"2902996796","name":"Wayne - Watson","screen_name":"wwatson703","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":86,"listed_count":0,"created_at":"Mon - Nov 17 19:25:01 +0000 2014","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - May 25 18:06:20 +0000 2021","id":1397252710173450245,"id_str":"1397252710173450245","text":"https:\/\/t.co\/CPlYyzicPW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CPlYyzicPW","expanded_url":"https:\/\/www.npr.org\/emailafriend?storyId=999832188","display_url":"npr.org\/emailafriend?s\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534427832337047552\/G8b8PK0g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534427832337047552\/G8b8PK0g_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":724281244293435393,"id_str":"724281244293435393","name":".","screen_name":"itsmosey_musah","location":"Home","description":"Believer\/\/ - Messi \ud83d\udc10 @Arsenal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2673,"friends_count":2985,"listed_count":11,"created_at":"Sun - Apr 24 16:57:59 +0000 2016","favourites_count":52326,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23655,"lang":null,"status":{"created_at":"Sat - Mar 26 07:45:32 +0000 2022","id":1507624779330822149,"id_str":"1507624779330822149","text":"RT - @amazing_physics: \ud83d\udeb4+ Physics = Winner https:\/\/t.co\/saKjRqldXo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amazing_physics","name":"Amazing - Physics","id":1164200820377817092,"id_str":"1164200820377817092","indices":[3,19]}],"urls":[],"media":[{"id":1507243489825853442,"id_str":"1507243489825853442","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","url":"https:\/\/t.co\/saKjRqldXo","display_url":"pic.twitter.com\/saKjRqldXo","expanded_url":"https:\/\/twitter.com\/amazing_physics\/status\/1507243527637454872\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507243527637454872,"source_status_id_str":"1507243527637454872","source_user_id":1164200820377817092,"source_user_id_str":"1164200820377817092"}]},"extended_entities":{"media":[{"id":1507243489825853442,"id_str":"1507243489825853442","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","url":"https:\/\/t.co\/saKjRqldXo","display_url":"pic.twitter.com\/saKjRqldXo","expanded_url":"https:\/\/twitter.com\/amazing_physics\/status\/1507243527637454872\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507243527637454872,"source_status_id_str":"1507243527637454872","source_user_id":1164200820377817092,"source_user_id_str":"1164200820377817092","video_info":{"aspect_ratio":[16,9],"duration_millis":81270,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/vid\/480x270\/L6qzp-iiORGZWdBB.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/pl\/aqhzhLBtSjI2WXUm.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/vid\/640x360\/Awu5xoRPKGyaBg2f.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:30:34 +0000 2022","id":1507243527637454872,"id_str":"1507243527637454872","text":"\ud83d\udeb4+ - Physics = Winner https:\/\/t.co\/saKjRqldXo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507243489825853442,"id_str":"1507243489825853442","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","url":"https:\/\/t.co\/saKjRqldXo","display_url":"pic.twitter.com\/saKjRqldXo","expanded_url":"https:\/\/twitter.com\/amazing_physics\/status\/1507243527637454872\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507243489825853442,"id_str":"1507243489825853442","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507243489825853442\/pu\/img\/0PhSU5GuhIexmNjx.jpg","url":"https:\/\/t.co\/saKjRqldXo","display_url":"pic.twitter.com\/saKjRqldXo","expanded_url":"https:\/\/twitter.com\/amazing_physics\/status\/1507243527637454872\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":81270,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/vid\/480x270\/L6qzp-iiORGZWdBB.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/pl\/aqhzhLBtSjI2WXUm.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507243489825853442\/pu\/vid\/640x360\/Awu5xoRPKGyaBg2f.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5174,"favorite_count":27024,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5174,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484227470840770560\/uQVm2NfE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484227470840770560\/uQVm2NfE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/724281244293435393\/1636318072","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":774324487,"id_str":"774324487","name":"mark - williams","screen_name":"markshnych","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":1037,"listed_count":0,"created_at":"Wed - Aug 22 19:20:17 +0000 2012","favourites_count":149,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Wed - Feb 02 23:32:52 +0000 2022","id":1489019017029378050,"id_str":"1489019017029378050","text":"@AdamKinzinger - Thanks for your insight","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamKinzinger","name":"Adam - Kinzinger","id":18004222,"id_str":"18004222","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1488903613237927936,"in_reply_to_status_id_str":"1488903613237927936","in_reply_to_user_id":18004222,"in_reply_to_user_id_str":"18004222","in_reply_to_screen_name":"AdamKinzinger","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796804731393949697,"id_str":"796804731393949697","name":"Vish - Prasad","screen_name":"VishPrasad2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":620,"listed_count":0,"created_at":"Thu - Nov 10 20:00:26 +0000 2016","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Dec 09 22:32:43 +0000 2016","id":807352304227774464,"id_str":"807352304227774464","text":"@repdonnaedwards - @billmaher @NASAGoddard","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"repdonnaedwards","name":"Rep - Donna F Edwards","id":82649553,"id_str":"82649553","indices":[0,16]},{"screen_name":"billmaher","name":"Bill - Maher","id":19697415,"id_str":"19697415","indices":[17,27]},{"screen_name":"NASAGoddard","name":"NASA - Goddard","id":20060293,"id_str":"20060293","indices":[28,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":804439472305647616,"in_reply_to_status_id_str":"804439472305647616","in_reply_to_user_id":82649553,"in_reply_to_user_id_str":"82649553","in_reply_to_screen_name":"repdonnaedwards","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":794217802022404096,"id_str":"794217802022404096","name":"Stacy - Wolinsky","screen_name":"StacyWolinsky","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":140,"listed_count":0,"created_at":"Thu - Nov 03 16:40:54 +0000 2016","favourites_count":2337,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Thu - Jan 21 12:14:44 +0000 2021","id":1352228131650809858,"id_str":"1352228131650809858","text":"RT - @davidaxelrod: If you missed @AC360\u2019s interview tonight with 22-yr-old - poet @TheAmandaGorman, who blew everyone away at today\u2019s inaugura\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidaxelrod","name":"David - Axelrod","id":244655353,"id_str":"244655353","indices":[3,16]},{"screen_name":"AC360","name":"Anderson - Cooper 360\u00b0","id":227837742,"id_str":"227837742","indices":[32,38]},{"screen_name":"TheAmandaGorman","name":"Amanda - Gorman","id":2569743630,"id_str":"2569743630","indices":[79,95]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 21 04:34:01 +0000 2021","id":1352112190342504449,"id_str":"1352112190342504449","text":"If - you missed @AC360\u2019s interview tonight with 22-yr-old poet @TheAmandaGorman, - who blew everyone away at today\u2019s in\u2026 https:\/\/t.co\/3IONdZrCEy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AC360","name":"Anderson - Cooper 360\u00b0","id":227837742,"id_str":"227837742","indices":[14,20]},{"screen_name":"TheAmandaGorman","name":"Amanda - Gorman","id":2569743630,"id_str":"2569743630","indices":[61,77]}],"urls":[{"url":"https:\/\/t.co\/3IONdZrCEy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1352112190342504449","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":336,"favorite_count":3246,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":336,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900161611331244032\/2QTtfWHw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900161611331244032\/2QTtfWHw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1479269467,"id_str":"1479269467","name":"kjofranc","screen_name":"kjofranc","location":"","description":"","url":"https:\/\/t.co\/OPIP88Jc2c","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPIP88Jc2c","expanded_url":"http:\/\/kjofranc.wordpress.com","display_url":"kjofranc.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":1659,"listed_count":0,"created_at":"Mon - Jun 03 09:06:51 +0000 2013","favourites_count":990,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1188,"lang":null,"status":{"created_at":"Thu - Mar 24 05:11:06 +0000 2022","id":1506861141498212355,"id_str":"1506861141498212355","text":"RT - @Agent44M: I\u2019m going to @KibeReborn\u2019s upcoming Space. Will you join - too?\n#AndrewKibe\n\nhttps:\/\/t.co\/cm5oxpWPGm","truncated":false,"entities":{"hashtags":[{"text":"AndrewKibe","indices":[76,87]}],"symbols":[],"user_mentions":[{"screen_name":"Agent44M","name":"Agent - 44","id":827250481168793600,"id_str":"827250481168793600","indices":[3,12]},{"screen_name":"KibeReborn","name":"KIBE - Reborn","id":1506703660482453508,"id_str":"1506703660482453508","indices":[27,38]}],"urls":[{"url":"https:\/\/t.co\/cm5oxpWPGm","expanded_url":"https:\/\/twitter.com\/i\/spaces\/1MnxnkajANkKO","display_url":"twitter.com\/i\/spaces\/1Mnxn\u2026","indices":[89,112]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 04:00:42 +0000 2022","id":1506843423332093955,"id_str":"1506843423332093955","text":"I\u2019m - going to @KibeReborn\u2019s upcoming Space. Will you join too?\n#AndrewKibe\n\nhttps:\/\/t.co\/cm5oxpWPGm","truncated":false,"entities":{"hashtags":[{"text":"AndrewKibe","indices":[62,73]}],"symbols":[],"user_mentions":[{"screen_name":"KibeReborn","name":"KIBE - Reborn","id":1506703660482453508,"id_str":"1506703660482453508","indices":[13,24]}],"urls":[{"url":"https:\/\/t.co\/cm5oxpWPGm","expanded_url":"https:\/\/twitter.com\/i\/spaces\/1MnxnkajANkKO","display_url":"twitter.com\/i\/spaces\/1Mnxn\u2026","indices":[75,98]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488422356011958272\/RIHgUKW4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488422356011958272\/RIHgUKW4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1479269467\/1643702181","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1571291916,"id_str":"1571291916","name":"Gerardine - Ferry","screen_name":"gerardineferry","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":234,"listed_count":1,"created_at":"Fri - Jul 05 20:43:53 +0000 2013","favourites_count":217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Wed - Jan 26 00:27:56 +0000 2022","id":1486133769610399745,"id_str":"1486133769610399745","text":"RT - @DublinAirport: We have 2 x Return Business Class flights to Antalya to give - away with thanks to @TurkishAirlines \u2708\ufe0f\ud83c\uddf9\ud83c\uddf7\n - \nAntalya combine\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DublinAirport","name":"Dublin - Airport","id":179569408,"id_str":"179569408","indices":[3,17]},{"screen_name":"TurkishAirlines","name":"Turkish - Airlines","id":18909186,"id_str":"18909186","indices":[100,116]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 24 10:40:58 +0000 2022","id":1485563269423288322,"id_str":"1485563269423288322","text":"We - have 2 x Return Business Class flights to Antalya to give away with thanks - to @TurkishAirlines \u2708\ufe0f\ud83c\uddf9\ud83c\uddf7\n \nAntalya co\u2026 - https:\/\/t.co\/iW9IkmQp07","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TurkishAirlines","name":"Turkish - Airlines","id":18909186,"id_str":"18909186","indices":[81,97]}],"urls":[{"url":"https:\/\/t.co\/iW9IkmQp07","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1485563269423288322","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8053,"favorite_count":3332,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8053,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547703889450237952\/fIG8b7OS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547703889450237952\/fIG8b7OS_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1314208417892851712,"id_str":"1314208417892851712","name":"Charles","screen_name":"Charles2020Joe","location":"","description":"Vote - vote vote","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":174,"listed_count":0,"created_at":"Thu - Oct 08 14:18:16 +0000 2020","favourites_count":155,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Sun - Mar 28 14:10:48 +0000 2021","id":1376174941108797452,"id_str":"1376174941108797452","text":"@FoxNews - It is called vaccinations!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1375903376026832906,"in_reply_to_status_id_str":"1375903376026832906","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314217853952745473\/tlyqh40Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314217853952745473\/tlyqh40Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314208417892851712\/1602168949","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":534912899,"id_str":"534912899","name":"Tim - Scott","screen_name":"tscott24539","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":586,"listed_count":0,"created_at":"Sat - Mar 24 02:15:59 +0000 2012","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":124,"lang":null,"status":{"created_at":"Wed - Nov 24 15:04:03 +0000 2021","id":1463523815468769293,"id_str":"1463523815468769293","text":"RT - @coveo: \ud83c\udf89It\u2019s official! Coveo is now listed on the TSX (@tsx_tsxv)! - Find us as $CVO. \n\nThanks to our employees, partners, and clients ar\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[{"text":"CVO","indices":[82,86]}],"user_mentions":[{"screen_name":"coveo","name":"COVEO","id":14033572,"id_str":"14033572","indices":[3,9]},{"screen_name":"tsx_tsxv","name":"Canada''s - Markets","id":3439286818,"id_str":"3439286818","indices":[59,68]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 24 14:30:27 +0000 2021","id":1463515360406216714,"id_str":"1463515360406216714","text":"\ud83c\udf89It\u2019s - official! Coveo is now listed on the TSX (@tsx_tsxv)! Find us as $CVO. \n\nThanks - to our employees, partners, a\u2026 https:\/\/t.co\/u0CIcrVlXV","truncated":true,"entities":{"hashtags":[],"symbols":[{"text":"CVO","indices":[71,75]}],"user_mentions":[{"screen_name":"tsx_tsxv","name":"Canada''s - Markets","id":3439286818,"id_str":"3439286818","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/u0CIcrVlXV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1463515360406216714","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248734947571105794\/b50-5kV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248734947571105794\/b50-5kV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/534912899\/1356385290","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24885435,"id_str":"24885435","name":"Jared - Furtado","screen_name":"Jared_Towerhill","location":"Newport, RI","description":"Investor - in Tech, Life Sciences and Clean Tech sectors. Talent Acquisition from seed - to unicorn stage.\nManaging Partner @thursday_vc\nFounder @Towerhill_Assoc","url":"https:\/\/t.co\/rOGa76MF5h","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rOGa76MF5h","expanded_url":"http:\/\/www.TowerH.com","display_url":"TowerH.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":481,"friends_count":261,"listed_count":15,"created_at":"Tue - Mar 17 14:05:25 +0000 2009","favourites_count":223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"status":{"created_at":"Wed - Oct 28 16:49:03 +0000 2020","id":1321494199242575874,"id_str":"1321494199242575874","text":"Words - fall short to express how proud I am of the leadership by @willahmed & - the world-class team @whoop. I\u2019m blown\u2026 https:\/\/t.co\/u0KvYJA4WD","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"willahmed","name":"Will - Ahmed","id":415223022,"id_str":"415223022","indices":[64,74]},{"screen_name":"whoop","name":"WHOOP","id":559138467,"id_str":"559138467","indices":[102,108]}],"urls":[{"url":"https:\/\/t.co\/u0KvYJA4WD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1321494199242575874","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1321417755845890048,"quoted_status_id_str":"1321417755845890048","retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852626339416952832\/9Lu1zmLb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852626339416952832\/9Lu1zmLb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24885435\/1492116960","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":264611026,"id_str":"264611026","name":"Margaret","screen_name":"mtanzosh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":1222,"listed_count":0,"created_at":"Sat - Mar 12 05:14:11 +0000 2011","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Tue - May 26 19:19:06 +0000 2020","id":1265361838960717824,"id_str":"1265361838960717824","text":"RT - @JoyceWhiteVance: Trump has shown more outrage in the last few days about - Americans voting by mail during a pandemic than he has ever sh\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyceWhiteVance","name":"Joyce - Alene","id":548384458,"id_str":"548384458","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 26 13:30:39 +0000 2020","id":1265274148617584640,"id_str":"1265274148617584640","text":"Trump - has shown more outrage in the last few days about Americans voting by mail - during a pandemic than he has ever\u2026 https:\/\/t.co\/vElCtl6Rq1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vElCtl6Rq1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1265274148617584640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17563,"favorite_count":62645,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":17563,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2738424160,"id_str":"2738424160","name":"Robert - D''Addio","screen_name":"rsdaddio10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":355,"listed_count":1,"created_at":"Sat - Aug 09 20:01:45 +0000 2014","favourites_count":6621,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1203734799279521792,"id_str":"1203734799279521792","name":"Mahfujur - Nime","screen_name":"NimeMahfujur","location":"Rajshahi, Bangladesh","description":"This - is Mahfujur Rahman. I''m a simple introvert & brown hair person. I love to - travel a lot & have some hobbies like photography & gardenning.","url":"https:\/\/t.co\/rbOKh7liGF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rbOKh7liGF","expanded_url":"https:\/\/www.fiverr.com\/mahfujurnime","display_url":"fiverr.com\/mahfujurnime","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":419,"friends_count":992,"listed_count":0,"created_at":"Sun - Dec 08 17:56:25 +0000 2019","favourites_count":2312,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":400,"lang":null,"status":{"created_at":"Tue - Mar 22 18:07:15 +0000 2022","id":1506331689462616066,"id_str":"1506331689462616066","text":"https:\/\/t.co\/2VbbGOzimw\n#Deprem - #WestBengal #WestBengal #suriyeliler #Rampurhat #isola #ITZY","truncated":false,"entities":{"hashtags":[{"text":"Deprem","indices":[24,31]},{"text":"WestBengal","indices":[32,43]},{"text":"WestBengal","indices":[44,55]},{"text":"suriyeliler","indices":[56,68]},{"text":"Rampurhat","indices":[69,79]},{"text":"isola","indices":[80,86]},{"text":"ITZY","indices":[87,92]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2VbbGOzimw","expanded_url":"https:\/\/www.fiverr.com\/s2\/a604b4791b?utm_source=Twitter_Mobile","display_url":"fiverr.com\/s2\/a604b4791b?\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"000beff42dc3eb57","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/000beff42dc3eb57.json","place_type":"city","name":"Rajshahi","full_name":"Rajshahi, - Bangladesh","country_code":"BD","country":"Bangladesh","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[88.5592194,24.3538531],[88.6501923,24.3538531],[88.6501923,24.3829994],[88.5592194,24.3829994]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269864232683597824\/FgvBQxY3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269864232683597824\/FgvBQxY3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1203734799279521792\/1622341024","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1369512078,"id_str":"1369512078","name":"KathleenBehrens","screen_name":"BehrensKathleen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":92,"listed_count":0,"created_at":"Sun - Apr 21 13:08:14 +0000 2013","favourites_count":7822,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Wed - Sep 29 14:45:50 +0000 2021","id":1443225511665324041,"id_str":"1443225511665324041","text":"RT - @JonesForAR: My likely opponent Sarah Huckabee Sanders has 800k followers. - I have 127k. Help us close the gap!\n\nRT and spread the word!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JonesForAR","name":"Chris - Jones","id":890931539017687040,"id_str":"890931539017687040","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Sep 28 18:15:11 +0000 2021","id":1442915809886564354,"id_str":"1442915809886564354","text":"My - likely opponent Sarah Huckabee Sanders has 800k followers. I have 127k. Help - us close the gap!\n\nRT and spread the word!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17764,"favorite_count":27988,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":17764,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":826256236047917062,"id_str":"826256236047917062","name":"Granola - Waffles","screen_name":"WafflesGranola","location":"","description":"Love - always wins. I know this to be true, I listened to facts, took advice from - a strong, brilliant man and am here to live another day. MASK UP! Credit: - AMC.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":437,"listed_count":1,"created_at":"Tue - Jan 31 02:30:12 +0000 2017","favourites_count":1907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3393,"lang":null,"status":{"created_at":"Mon - Mar 21 04:45:20 +0000 2022","id":1505767491150172162,"id_str":"1505767491150172162","text":"@naeaglecam - What a beautiful nest bowl!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"naeaglecam","name":"Mr. - P & Lotus","id":710743919349227520,"id_str":"710743919349227520","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505221968894861312,"in_reply_to_status_id_str":"1505221968894861312","in_reply_to_user_id":710743919349227520,"in_reply_to_user_id_str":"710743919349227520","in_reply_to_screen_name":"naeaglecam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/837696785762021376\/gCqDnlTD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/837696785762021376\/gCqDnlTD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826256236047917062\/1604457674","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":788936394898935808,"id_str":"788936394898935808","name":"Joseph - Leonards","screen_name":"joseph_leonards","location":"Covington, LA","description":"Proud - husband and father. August, Mirelle, and Hans keep me smiling. Underrepresented - Independent.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":852,"listed_count":0,"created_at":"Thu - Oct 20 02:54:29 +0000 2016","favourites_count":7596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":330,"lang":null,"status":{"created_at":"Thu - Nov 18 20:19:52 +0000 2021","id":1461428968113029131,"id_str":"1461428968113029131","text":"RT - @LaDemos: Kennedy says he means no disrespect but THAT\u2019S ALL HE MEANS.\n\nIt\u2019s - never about serving the public good, Louisiana, or America.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LaDemos","name":"Louisiana - Democrats","id":59869729,"id_str":"59869729","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 18 17:50:56 +0000 2021","id":1461391487296487429,"id_str":"1461391487296487429","text":"Kennedy - says he means no disrespect but THAT\u2019S ALL HE MEANS.\n\nIt\u2019s never - about serving the public good, Louisiana,\u2026 https:\/\/t.co\/fI3SwsPJdk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fI3SwsPJdk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1461391487296487429","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1461372365821075458,"quoted_status_id_str":"1461372365821075458","retweet_count":61,"favorite_count":179,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1461372365821075458,"quoted_status_id_str":"1461372365821075458","retweet_count":61,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1098541726254403588\/LcYz8pg3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1098541726254403588\/LcYz8pg3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/788936394898935808\/1550747765","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21631086,"id_str":"21631086","name":"Se-Kyu - Kim","screen_name":"besthero7","location":"Korea","description":"#\ub098\ub294 - \ubb38\ud30c\ub2e4! #\uad8c\ub825\uc758\uc8fc\uc778\uc740\uad6d\ubbfc\uc774\ub2e4! - #\uc6b0\uad6d\ucda9\uc815\uc758 \ub9c8\uc74c\uc73c\ub85c \ub300\ud55c\ubbfc\uad6d\uc744 - \uc9c0\ud0a4\uae30 \uc704\ud574 \uc2f8\uc6b0\ub294 \ub808\uc9c0\uc2a4\ud0d5\uc2a4! - #\uc88c\uc6b0\uc801\ud3d0\uccad\uc0b0! #\ud604\uc2e4\uba54\ud2b8\ub9ad\uc2a4 - \uc138\uacc4\uc5d0 \ub208 \ub72c \uae68\uc2dc\ubbfc! #\ub354\ubd88\uc5b4\ubbfc\uc8fc\ub2f9 - \uc804\uad6d\ub300\uc758\uc6d0 & \uad8c\ub9ac\ub2f9\uc6d0 #KiLoCorn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2328,"friends_count":4365,"listed_count":10,"created_at":"Mon - Feb 23 04:29:44 +0000 2009","favourites_count":63522,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29766,"lang":null,"status":{"created_at":"Sat - Mar 26 01:03:01 +0000 2022","id":1507523482493480966,"id_str":"1507523482493480966","text":"[1\ubcf4] - \uc2e0\uaddc\ud655\uc9c4 33\ub9cc5580\uba85\u2026\uc0ac\ub9dd 323\uba85, \uc704\uc911\uc99d - 1164\uba85 https:\/\/t.co\/ExhOLjrFlK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ExhOLjrFlK","expanded_url":"https:\/\/www.hankyung.com\/society\/article\/202203262432Y","display_url":"hankyung.com\/society\/articl\u2026","indices":[38,61]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"ko"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338068199867260929\/4PIqJUc8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338068199867260929\/4PIqJUc8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21631086\/1607888974","profile_link_color":"2280A9","profile_sidebar_border_color":"2280A9","profile_sidebar_fill_color":"020812","profile_text_color":"17406C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":824249053714096129,"id_str":"824249053714096129","name":"Jennifer - McLean","screen_name":"jenalm2016","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":18,"friends_count":1805,"listed_count":0,"created_at":"Wed - Jan 25 13:34:23 +0000 2017","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825452872141783040\/3KPY1V7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825452872141783040\/3KPY1V7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824249053714096129\/1485638371","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1085288043920179200,"id_str":"1085288043920179200","name":"Sandra - Marsh","screen_name":"SandraM30576288","location":"Limerick, Ireland","description":"Tuned - in, interested and wide awake.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":770,"listed_count":0,"created_at":"Tue - Jan 15 21:30:08 +0000 2019","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Tue - Jul 13 07:37:16 +0000 2021","id":1414851404175396865,"id_str":"1414851404175396865","text":"RT - @nayright12: Boris Starling\nThis is England.\n1.This is England: Raheem Sterling, - whose big sister would go with him to training and back\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nayright12","name":"Nonny - Nay Empress of the Hard Left \ud83d\ude04\ud83c\udf39 \ud83d\udc4a","id":976644645231919104,"id_str":"976644645231919104","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 12 17:17:53 +0000 2021","id":1414635135421538307,"id_str":"1414635135421538307","text":"Boris - Starling\nThis is England.\n1.This is England: Raheem Sterling, whose big - sister would go with him to training\u2026 https:\/\/t.co\/6BuB2v8CqL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6BuB2v8CqL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1414635135421538307","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5374,"favorite_count":18408,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5374,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250021541410193414\/Xp_OUtgt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250021541410193414\/Xp_OUtgt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1085288043920179200\/1586863336","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3117290305,"id_str":"3117290305","name":"Rusin","screen_name":"rbukanl","location":"Tasikmalaya, - Jawa Barat","description":"All ears.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":232,"friends_count":173,"listed_count":1,"created_at":"Mon - Mar 30 14:46:34 +0000 2015","favourites_count":6806,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506985837459738627\/v7tSRiZz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506985837459738627\/v7tSRiZz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117290305\/1645927410","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":745161704,"id_str":"745161704","name":"E - Alfonso","screen_name":"EmiAlfonso2","location":"Philippines","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":167,"listed_count":0,"created_at":"Wed - Aug 08 13:05:48 +0000 2012","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Sun - Aug 07 07:38:30 +0000 2016","id":762191170680356864,"id_str":"762191170680356864","text":"Just - posted a photo https:\/\/t.co\/XtfQ93Eb3J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XtfQ93Eb3J","expanded_url":"https:\/\/www.instagram.com\/p\/BIzKR7RgV_Z\/","display_url":"instagram.com\/p\/BIzKR7RgV_Z\/","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/762182612420923392\/FQ_NZs3z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/762182612420923392\/FQ_NZs3z_normal.jpg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1042454996388724736,"id_str":"1042454996388724736","name":"Vonnie","screen_name":"VanwormerYvonne","location":"Sturgis, - MI","description":"Proud Democrat. Michigander in love with a Cheese Head - = Packer Fan for life. and oh yea, still hanging with The Walking Dead. NO - DMs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":181,"friends_count":604,"listed_count":0,"created_at":"Wed - Sep 19 16:46:53 +0000 2018","favourites_count":83069,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2659,"lang":null,"status":{"created_at":"Sat - Mar 26 10:06:39 +0000 2022","id":1507660293060632581,"id_str":"1507660293060632581","text":"@LincolnWatchman - Don Winslow blocked me for mentioning the Palmer report for Heaven\u2019s - sake \ud83d\ude44","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LincolnWatchman","name":"The - Lincoln Watchman\ud83d\udc40\ud83c\uddfa\ud83c\uddf8","id":3002029764,"id_str":"3002029764","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507659528728453121,"in_reply_to_status_id_str":"1507659528728453121","in_reply_to_user_id":1042454996388724736,"in_reply_to_user_id_str":"1042454996388724736","in_reply_to_screen_name":"VanwormerYvonne","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400098788841246723\/bo2hUv5j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400098788841246723\/bo2hUv5j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042454996388724736\/1613761206","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2721263624,"id_str":"2721263624","name":"Elizabeth - Dodds","screen_name":"lhdodds1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":23,"listed_count":0,"created_at":"Sun - Aug 10 09:54:26 +0000 2014","favourites_count":642,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270433169750274050\/nDjKf_C-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270433169750274050\/nDjKf_C-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2721263624\/1462350714","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":598204266,"id_str":"598204266","name":"Fahada","screen_name":"afahada_","location":"Penang - Island","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":428,"listed_count":1,"created_at":"Sun - Jun 03 07:42:15 +0000 2012","favourites_count":15812,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8781,"lang":null,"status":{"created_at":"Thu - Mar 24 02:18:11 +0000 2022","id":1506817622335451137,"id_str":"1506817622335451137","text":"RT - @health_malaysia: Karipap berintikan oksigen juga tidak digalakkan.. https:\/\/t.co\/1UppKFjYYL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"health_malaysia","name":"Public - Health Malaysia","id":1079223001873182720,"id_str":"1079223001873182720","indices":[3,19]}],"urls":[],"media":[{"id":1506515858608193536,"id_str":"1506515858608193536","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","url":"https:\/\/t.co\/1UppKFjYYL","display_url":"pic.twitter.com\/1UppKFjYYL","expanded_url":"https:\/\/twitter.com\/health_malaysia\/status\/1506515860923424768\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1064,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":1064,"resize":"fit"},"small":{"w":529,"h":680,"resize":"fit"}},"source_status_id":1506515860923424768,"source_status_id_str":"1506515860923424768","source_user_id":1079223001873182720,"source_user_id_str":"1079223001873182720"}]},"extended_entities":{"media":[{"id":1506515858608193536,"id_str":"1506515858608193536","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","url":"https:\/\/t.co\/1UppKFjYYL","display_url":"pic.twitter.com\/1UppKFjYYL","expanded_url":"https:\/\/twitter.com\/health_malaysia\/status\/1506515860923424768\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1064,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":1064,"resize":"fit"},"small":{"w":529,"h":680,"resize":"fit"}},"source_status_id":1506515860923424768,"source_status_id_str":"1506515860923424768","source_user_id":1079223001873182720,"source_user_id_str":"1079223001873182720"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 06:19:05 +0000 2022","id":1506515860923424768,"id_str":"1506515860923424768","text":"Karipap - berintikan oksigen juga tidak digalakkan.. https:\/\/t.co\/1UppKFjYYL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506515858608193536,"id_str":"1506515858608193536","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","url":"https:\/\/t.co\/1UppKFjYYL","display_url":"pic.twitter.com\/1UppKFjYYL","expanded_url":"https:\/\/twitter.com\/health_malaysia\/status\/1506515860923424768\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1064,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":1064,"resize":"fit"},"small":{"w":529,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506515858608193536,"id_str":"1506515858608193536","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOg4MQjVgAAhejk.jpg","url":"https:\/\/t.co\/1UppKFjYYL","display_url":"pic.twitter.com\/1UppKFjYYL","expanded_url":"https:\/\/twitter.com\/health_malaysia\/status\/1506515860923424768\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1064,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":828,"h":1064,"resize":"fit"},"small":{"w":529,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7461,"favorite_count":8397,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":false,"retweet_count":7461,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372169076278059013\/j9KSKDXB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372169076278059013\/j9KSKDXB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598204266\/1615985578","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":88364998,"id_str":"88364998","name":"Grace - Emory","screen_name":"gkve4774","location":"Crystal Springs, MS","description":"Christian*C.A.Graduate - 1992*College @ Hinds Community College*College @ UND*married to John Emory*3 - kids*Homemaker*4-H Leader*Girl Scout Leader","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":711,"listed_count":0,"created_at":"Sun - Nov 08 06:19:13 +0000 2009","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":541,"lang":null,"status":{"created_at":"Mon - Oct 18 14:52:20 +0000 2021","id":1450112515338293259,"id_str":"1450112515338293259","text":"@TheLucasBlack - Amen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheLucasBlack","name":"Lucas - Black","id":565919881,"id_str":"565919881","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1450099201132482563,"in_reply_to_status_id_str":"1450099201132482563","in_reply_to_user_id":565919881,"in_reply_to_user_id_str":"565919881","in_reply_to_screen_name":"TheLucasBlack","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/706741888460726273\/TtdVAmHL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/706741888460726273\/TtdVAmHL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88364998\/1457335370","profile_link_color":"038544","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1535861376,"id_str":"1535861376","name":"mags","screen_name":"mags_mags1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":185,"listed_count":0,"created_at":"Fri - Jun 21 06:33:41 +0000 2013","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Dec 24 14:26:16 +0000 2020","id":1342114375130370050,"id_str":"1342114375130370050","text":"Happy - Holidays my friend\ud83c\udf84\ud83c\udf84\ud83c\udf84\ud83c\udf84\ud83c\udf84","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1342113364038836224,"in_reply_to_status_id_str":"1342113364038836224","in_reply_to_user_id":1535861376,"in_reply_to_user_id_str":"1535861376","in_reply_to_screen_name":"mags_mags1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1097286544652726272\/5oEehwC4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1097286544652726272\/5oEehwC4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293739446341255171,"id_str":"1293739446341255171","name":"jann - hinkle","screen_name":"hinkle_jann","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":121,"listed_count":0,"created_at":"Thu - Aug 13 02:44:10 +0000 2020","favourites_count":7473,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Tue - Nov 16 23:12:46 +0000 2021","id":1460747703210504192,"id_str":"1460747703210504192","text":"@jacksonhinklle - Beautiful !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jacksonhinklle","name":"Jackson - Hinkle \ud83c\uddfa\ud83c\uddf8","id":1151913018936053760,"id_str":"1151913018936053760","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1460744483348172805,"in_reply_to_status_id_str":"1460744483348172805","in_reply_to_user_id":1151913018936053760,"in_reply_to_user_id_str":"1151913018936053760","in_reply_to_screen_name":"jacksonhinklle","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":63298075,"id_str":"63298075","name":"Bob - McGee","screen_name":"McGeeInsight","location":"BRIDGEWATER, MA","description":"Business - journalist since 1987.","url":"https:\/\/t.co\/HO70DUibsz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HO70DUibsz","expanded_url":"http:\/\/formula4media.com","display_url":"formula4media.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":359,"friends_count":3619,"listed_count":27,"created_at":"Wed - Aug 05 23:41:24 +0000 2009","favourites_count":1478,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2786,"lang":null,"status":{"created_at":"Thu - Feb 17 17:06:47 +0000 2022","id":1494357673390792704,"id_str":"1494357673390792704","text":"The - company has set a goal of doubling the lifetime of its footwear products and - we could not be prouder to partner\u2026 https:\/\/t.co\/8a10Xen5YV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8a10Xen5YV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1494357673390792704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204148525120008192\/KijswD33_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204148525120008192\/KijswD33_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63298075\/1495567721","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35317426,"id_str":"35317426","name":"Siobhan","screen_name":"Sbeeney","location":"Oxford, - England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":277,"friends_count":2288,"listed_count":1,"created_at":"Sat - Apr 25 21:37:31 +0000 2009","favourites_count":21329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":367,"lang":null,"status":{"created_at":"Thu - Mar 17 11:54:26 +0000 2022","id":1504425928633602048,"id_str":"1504425928633602048","text":"RT - @sidneylandsam: So AD was wrong enough to get the race director changed, the - rule he breached changed, but not the wrong result that he\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sidneylandsam","name":"Sarah\ud83d\udcaf+","id":2178774427,"id_str":"2178774427","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 05:52:41 +0000 2022","id":1503972503378702340,"id_str":"1503972503378702340","text":"So - AD was wrong enough to get the race director changed, the rule he breached - changed, but not the wrong result tha\u2026 https:\/\/t.co\/8xsSepUZS0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8xsSepUZS0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503972503378702340","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":247,"favorite_count":995,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":247,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1610856341\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1610856341\/image_normal.jpg","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21913598,"id_str":"21913598","name":"John - Lester","screen_name":"lesterohio","location":"Columbus, Ohio","description":"Executive - Director, Ohio Leadership Institute - NEW BOOK - Teaching Leadership & 21st - Century Skills.","url":"https:\/\/t.co\/oonUuGwLbf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oonUuGwLbf","expanded_url":"http:\/\/johnlester.com","display_url":"johnlester.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1562,"friends_count":1353,"listed_count":36,"created_at":"Wed - Feb 25 20:26:15 +0000 2009","favourites_count":4890,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8637,"lang":null,"status":{"created_at":"Fri - Mar 25 22:12:52 +0000 2022","id":1507480661980073985,"id_str":"1507480661980073985","text":"RT - @ohioltc82: Teach a little leadership this summer! @amazon @PiecesOLearning - https:\/\/t.co\/YsEsROWzpM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ohioltc82","name":"Ohio - Leadership Inst","id":2334359847,"id_str":"2334359847","indices":[3,13]},{"screen_name":"amazon","name":"Amazon","id":20793816,"id_str":"20793816","indices":[54,61]},{"screen_name":"PiecesOLearning","name":"Pieces - of Learning","id":202318994,"id_str":"202318994","indices":[62,78]}],"urls":[],"media":[{"id":1507480354306859008,"id_str":"1507480354306859008","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}},"source_status_id":1507480357834301443,"source_status_id_str":"1507480357834301443","source_user_id":2334359847,"source_user_id_str":"2334359847"}]},"extended_entities":{"media":[{"id":1507480354306859008,"id_str":"1507480354306859008","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}},"source_status_id":1507480357834301443,"source_status_id_str":"1507480357834301443","source_user_id":2334359847,"source_user_id_str":"2334359847"},{"id":1507480354298511361,"id_str":"1507480354298511361","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZS_XwAEWska.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZS_XwAEWska.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}},"source_status_id":1507480357834301443,"source_status_id_str":"1507480357834301443","source_user_id":2334359847,"source_user_id_str":"2334359847"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:11:39 +0000 2022","id":1507480357834301443,"id_str":"1507480357834301443","text":"Teach - a little leadership this summer! @amazon @PiecesOLearning https:\/\/t.co\/YsEsROWzpM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amazon","name":"Amazon","id":20793816,"id_str":"20793816","indices":[39,46]},{"screen_name":"PiecesOLearning","name":"Pieces - of Learning","id":202318994,"id_str":"202318994","indices":[47,63]}],"urls":[],"media":[{"id":1507480354306859008,"id_str":"1507480354306859008","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507480354306859008,"id_str":"1507480354306859008","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZTBXIAA4yy-.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}}},{"id":1507480354298511361,"id_str":"1507480354298511361","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOulZS_XwAEWska.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOulZS_XwAEWska.jpg","url":"https:\/\/t.co\/YsEsROWzpM","display_url":"pic.twitter.com\/YsEsROWzpM","expanded_url":"https:\/\/twitter.com\/ohioltc82\/status\/1507480357834301443\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":680,"h":953,"resize":"fit"},"medium":{"w":680,"h":953,"resize":"fit"},"small":{"w":485,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/731336605206773760\/WLD6WDQA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/731336605206773760\/WLD6WDQA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21913598\/1428073207","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1004689172995756032,"id_str":"1004689172995756032","name":"Richmond","screen_name":"Richmon00092495","location":"Accra, - Ghana","description":"Baseball Baseball Animals Gov Officials & Agencies Fun - Fun Fitness & Wellness eSports Entertainment Celebrity Gamers Books Basketball - Games Wrestling Technology","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":1008,"listed_count":0,"created_at":"Thu - Jun 07 11:38:59 +0000 2018","favourites_count":4256,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":780,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267118361789509634\/QYTDFudi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267118361789509634\/QYTDFudi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1004689172995756032\/1590939535","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1234510950369234945,"id_str":"1234510950369234945","name":"Auwal - M_T","screen_name":"Auwal_M_T","location":"Adamawa, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":178,"friends_count":849,"listed_count":0,"created_at":"Mon - Mar 02 16:08:57 +0000 2020","favourites_count":625,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":190,"lang":null,"status":{"created_at":"Wed - Oct 06 14:20:33 +0000 2021","id":1445755863457619974,"id_str":"1445755863457619974","text":"RT - @mastermynd101: This squid game is all about Nigeria and its citizens eating - themselves up\n\nNo wonder the players clothes are Green whit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 06 07:36:27 +0000 2021","id":1445654171001057282,"id_str":"1445654171001057282","text":"This - squid game is all about Nigeria and its citizens eating themselves up\n\nNo - wonder the players clothes are Green\u2026 https:\/\/t.co\/9grzXjDi7s","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9grzXjDi7s","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1445654171001057282","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":114,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":39,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381120565797388289\/RlYKfgTA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381120565797388289\/RlYKfgTA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1173336576216174599,"id_str":"1173336576216174599","name":"Onwe - Ejike Amos Emperor","screen_name":"amos_onwe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":1856,"listed_count":0,"created_at":"Sun - Sep 15 20:44:13 +0000 2019","favourites_count":3498,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2923,"lang":null,"status":{"created_at":"Mon - Mar 21 07:04:12 +0000 2022","id":1505802440536432640,"id_str":"1505802440536432640","text":"RT - @ChinasaNworu: Nigeria losing 95% of crude oil to thieves: Tony Elumelu. @UKinNigeria - @USinNigeria @real_IpobDOS @StateDept @NOIweala @S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChinasaNworu","name":"Chinasa - Nworu","id":3252528612,"id_str":"3252528612","indices":[3,16]},{"screen_name":"UKinNigeria","name":"UK - in Nigeria\ud83c\uddec\ud83c\udde7\ud83c\uddf3\ud83c\uddec","id":325512390,"id_str":"325512390","indices":[76,88]},{"screen_name":"USinNigeria","name":"U.S. - Mission Nigeria","id":69281027,"id_str":"69281027","indices":[89,101]},{"screen_name":"real_IpobDOS","name":"Directorate - Of State (DOS)","id":987317488374329347,"id_str":"987317488374329347","indices":[102,115]},{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[116,126]},{"screen_name":"NOIweala","name":"Ngozi - Okonjo-Iweala","id":372755940,"id_str":"372755940","indices":[127,136]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 21:02:37 +0000 2022","id":1504563882039431177,"id_str":"1504563882039431177","text":"Nigeria - losing 95% of crude oil to thieves: Tony Elumelu. @UKinNigeria @USinNigeria - @real_IpobDOS @StateDept\u2026 https:\/\/t.co\/FLKjVJXBDn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UKinNigeria","name":"UK - in Nigeria\ud83c\uddec\ud83c\udde7\ud83c\uddf3\ud83c\uddec","id":325512390,"id_str":"325512390","indices":[58,70]},{"screen_name":"USinNigeria","name":"U.S. - Mission Nigeria","id":69281027,"id_str":"69281027","indices":[71,83]},{"screen_name":"real_IpobDOS","name":"Directorate - Of State (DOS)","id":987317488374329347,"id_str":"987317488374329347","indices":[84,97]},{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[98,108]}],"urls":[{"url":"https:\/\/t.co\/FLKjVJXBDn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504563882039431177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":371,"favorite_count":227,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":371,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483592773638844417\/o0cx1mR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483592773638844417\/o0cx1mR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173336576216174599\/1593716981","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1088216112297209858,"id_str":"1088216112297209858","name":"UncleTuu\u963f\u571f\u4f2f","screen_name":"Greg57907329","location":"","description":"\u83ab\u6028\u5929\u83ab\u5c24\u4eba\uff0c\u547d\u987a\u547d\u6b79\u90fd\u662f\u4e00\u751f!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":409,"listed_count":0,"created_at":"Wed - Jan 23 23:25:14 +0000 2019","favourites_count":2412,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1467,"lang":null,"status":{"created_at":"Sat - Mar 26 00:05:28 +0000 2022","id":1507509001034268672,"id_str":"1507509001034268672","text":"RT - @NickAdamsinUSA: RT if you support Elon Musk buying Twitter and bringing Trump - BACK!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickAdamsinUSA","name":"Nick - Adams","id":91583544,"id_str":"91583544","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:30:31 +0000 2022","id":1507454904926933004,"id_str":"1507454904926933004","text":"RT - if you support Elon Musk buying Twitter and bringing Trump BACK!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6135,"favorite_count":19791,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":6135,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408015918358093824\/c_-fu2tj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408015918358093824\/c_-fu2tj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088216112297209858\/1553092866","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1236607524003971072,"id_str":"1236607524003971072","name":"pkrajesh555","screen_name":"PkRajesh555","location":"Jammu, - Jammu And Kashmir","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":834,"listed_count":0,"created_at":"Sun - Mar 08 11:00:05 +0000 2020","favourites_count":159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Nov 08 15:46:08 +0000 2021","id":1457736201830428676,"id_str":"1457736201830428676","text":"DR. - ALI JAN: Kashmir''s own Healer https:\/\/t.co\/40WAJim4H3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/40WAJim4H3","expanded_url":"https:\/\/www.greaterkashmir.com\/op-ed-2\/dr-ali-jan-kashmirs-own-healer","display_url":"greaterkashmir.com\/op-ed-2\/dr-ali\u2026","indices":[34,57]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252571329439715328\/wo9AN17A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252571329439715328\/wo9AN17A_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292431654074683392,"id_str":"1292431654074683392","name":"Kholy - El Rahman","screen_name":"KholyRahman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":1658,"listed_count":2,"created_at":"Sun - Aug 09 12:05:21 +0000 2020","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":587,"lang":null,"status":{"created_at":"Sat - Mar 12 13:54:13 +0000 2022","id":1502644132665348102,"id_str":"1502644132665348102","text":"Schr\u00f6der - \"nicht im Auftrag\" Kiews in Moskau https:\/\/t.co\/wAgddCyoj7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wAgddCyoj7","expanded_url":"https:\/\/www.zdf.de\/nachrichten\/politik\/vize-ministerpraesidentin-stefanishyna-ukraine-krieg-russland-100.html#xtor=CS5-21","display_url":"zdf.de\/nachrichten\/po\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293187186410401793\/N-gcRbLn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293187186410401793\/N-gcRbLn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3913500133,"id_str":"3913500133","name":"Mahmudur - Rahman Ahad","screen_name":"ahadrr96","location":"Dhaka, Bangladesh","description":"\ud83d\ude08\ud83d\ude08(\ud83d\ude07) - \ud83d\udc7f\ud83d\udc7f","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":161,"friends_count":4673,"listed_count":1,"created_at":"Fri - Oct 16 11:52:16 +0000 2015","favourites_count":3239,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":48,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/876083241878380545\/38JsS2Id_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/876083241878380545\/38JsS2Id_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3913500133\/1497709043","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":778529869428826112,"id_str":"778529869428826112","name":"Teddy - Talks","screen_name":"ThorpeNPhilky","location":"Philadelphia, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":237,"friends_count":3592,"listed_count":0,"created_at":"Wed - Sep 21 09:42:40 +0000 2016","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2139,"lang":null,"status":{"created_at":"Thu - Oct 14 16:47:27 +0000 2021","id":1448691935464599557,"id_str":"1448691935464599557","text":"RT - @barrelofbourbon: If you have the time to type a zillion red flags - \ud83d\udea9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"barrelofbourbon","name":"Magszilla","id":1228500286278447104,"id_str":"1228500286278447104","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 13 22:51:23 +0000 2021","id":1448421136526712837,"id_str":"1448421136526712837","text":"If - you have the time to type a zillion red flags - \ud83d\udea9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":98,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905300461749751808\/VRtq4l-c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905300461749751808\/VRtq4l-c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/778529869428826112\/1474991941","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265652483629686785,"id_str":"1265652483629686785","name":"LORI - DeWitt","screen_name":"LORIDeWitt12","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":514,"listed_count":0,"created_at":"Wed - May 27 14:34:17 +0000 2020","favourites_count":23907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1250,"lang":null,"status":{"created_at":"Thu - Mar 24 15:51:07 +0000 2022","id":1507022207037313026,"id_str":"1507022207037313026","text":"RT - @PearlJamOnline: In an interview with Guitar Player, @PearlJam guitarist @MikeMcCreadyPJ - made a list of his favorite songs written by hi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PearlJamOnline","name":"PearlJamOnline.it","id":27473819,"id_str":"27473819","indices":[3,18]},{"screen_name":"PearlJam","name":"Pearl - Jam \ud83c\uddfa\ud83c\udde6","id":15155074,"id_str":"15155074","indices":[56,65]},{"screen_name":"MikeMcCreadyPJ","name":"Mike - McCready","id":270193608,"id_str":"270193608","indices":[76,91]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:43:25 +0000 2022","id":1507020268832665609,"id_str":"1507020268832665609","text":"In - an interview with Guitar Player, @PearlJam guitarist @MikeMcCreadyPJ made - a list of his favorite songs written b\u2026 https:\/\/t.co\/bOg37SYYwF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PearlJam","name":"Pearl - Jam \ud83c\uddfa\ud83c\udde6","id":15155074,"id_str":"15155074","indices":[36,45]},{"screen_name":"MikeMcCreadyPJ","name":"Mike - McCready","id":270193608,"id_str":"270193608","indices":[56,71]}],"urls":[{"url":"https:\/\/t.co\/bOg37SYYwF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507020268832665609","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":53,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1210987711273684993,"id_str":"1210987711273684993","name":"mojgan","screen_name":"mojgan59425122","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":533,"listed_count":0,"created_at":"Sat - Dec 28 18:15:59 +0000 2019","favourites_count":3653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345786338063372290\/7HXfcjtf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345786338063372290\/7HXfcjtf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1210987711273684993\/1609695496","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":872745668816896000,"id_str":"872745668816896000","name":"Alan - Way","screen_name":"AlanWay7","location":"Rideau Lakes, Ontario","description":"Competitive, - creative, information sponge, worldly, caring, love politics, liberal minded, - free spirit etc.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":210,"listed_count":0,"created_at":"Thu - Jun 08 09:22:37 +0000 2017","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Sun - Dec 12 01:04:17 +0000 2021","id":1469835461992620039,"id_str":"1469835461992620039","text":"@ABC - @michaelstrahan I would rather hear about his feelings for those folks at - his Kentucky plant that lost their l\u2026 https:\/\/t.co\/sFugNIIhXn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC","name":"ABC - News","id":28785486,"id_str":"28785486","indices":[0,4]},{"screen_name":"michaelstrahan","name":"Michael - Strahan","id":26553086,"id_str":"26553086","indices":[5,20]}],"urls":[{"url":"https:\/\/t.co\/sFugNIIhXn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1469835461992620039","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1469681487234666500,"in_reply_to_status_id_str":"1469681487234666500","in_reply_to_user_id":28785486,"in_reply_to_user_id_str":"28785486","in_reply_to_screen_name":"ABC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":40,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/879477390803685376\/YA5cJsVT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/879477390803685376\/YA5cJsVT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":564844043,"id_str":"564844043","name":"Carolyn - Whitmore","screen_name":"CarolynWhitmor1","location":"","description":"My - Family and Friends are most important, next is giving back, and then sports!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":319,"listed_count":0,"created_at":"Fri - Apr 27 19:10:07 +0000 2012","favourites_count":6650,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276862377141645315\/VmIL-LQM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276862377141645315\/VmIL-LQM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564844043\/1593262604","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290946467180564480,"id_str":"1290946467180564480","name":"Abenezer - Alemu","screen_name":"AbenezerAlemu18","location":"","description":"lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":827,"listed_count":0,"created_at":"Wed - Aug 05 09:43:41 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290946699888930817\/nbRiWIpJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290946699888930817\/nbRiWIpJ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":180202395,"id_str":"180202395","name":"Joop - PDX","screen_name":"jooppdx","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":334,"listed_count":0,"created_at":"Thu - Aug 19 02:01:06 +0000 2010","favourites_count":171,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Aug 14 03:53:44 +0000 2021","id":1426391561961541635,"id_str":"1426391561961541635","text":"@bibekum - \u2026Because it\u2019s hard choosing just one.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bibekum","name":"Rita - Bibekum Aya\ud83c\udde8\ud83c\uddf2\ud83c\udde9\ud83c\uddf0","id":1370095500,"id_str":"1370095500","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1426196464154419204,"in_reply_to_status_id_str":"1426196464154419204","in_reply_to_user_id":1370095500,"in_reply_to_user_id_str":"1370095500","in_reply_to_screen_name":"bibekum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1089136656614080512,"id_str":"1089136656614080512","name":"Milos - Vojinovic","screen_name":"MilosVojinovi19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":699,"listed_count":0,"created_at":"Sat - Jan 26 12:23:08 +0000 2019","favourites_count":129,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Sat - Jan 02 10:27:22 +0000 2021","id":1345315741298515968,"id_str":"1345315741298515968","text":"RT - @NenadBlagojevic: Za vi\u0161e trikova, zapratite me \ud83d\ude05https:\/\/t.co\/H6dUZgyun7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NenadBlagojevic","name":"MARFIJEV - ZAKON 17K","id":181994741,"id_str":"181994741","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/H6dUZgyun7","expanded_url":"https:\/\/twitter.com\/ElNono111111111\/status\/1343230072241713153\/video\/1","display_url":"twitter.com\/ElNono11111111\u2026","indices":[52,75]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 02 06:05:00 +0000 2021","id":1345249715030396929,"id_str":"1345249715030396929","text":"Za - vi\u0161e trikova, zapratite me \ud83d\ude05https:\/\/t.co\/H6dUZgyun7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H6dUZgyun7","expanded_url":"https:\/\/twitter.com\/ElNono111111111\/status\/1343230072241713153\/video\/1","display_url":"twitter.com\/ElNono11111111\u2026","indices":[31,54]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":190,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3253175038,"id_str":"3253175038","name":"Tiina-Maria - Levamo","screen_name":"TLevamo","location":"Sipoo","description":"@pelastakaalapse - erityisasiantuntija adoptio\u00e4iti opettaja sosiologi sipoolainen Vihre\u00e4 - varavaltuutettu sivistysvaliokunta vammaisneuvosto","url":"https:\/\/t.co\/JJyU1RsjEF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JJyU1RsjEF","expanded_url":"http:\/\/tiinamarialevamo.net","display_url":"tiinamarialevamo.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1228,"friends_count":3600,"listed_count":4,"created_at":"Thu - May 14 06:18:53 +0000 2015","favourites_count":7452,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3618,"lang":null,"status":{"created_at":"Mon - Mar 21 11:50:15 +0000 2022","id":1505874427287945224,"id_str":"1505874427287945224","text":"@MiB_ry - @pamliitto Adoptio\u00e4itin\u00e4 kiinnitt\u00e4isin huomion tuohon raskaussyrjint\u00e4 - termiin. Se j\u00e4tt\u00e4\u00e4 ulkopuolelleen mon\u2026 https:\/\/t.co\/bnEUuT0NGO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MiB_ry","name":"Mothers - in Business","id":3438181593,"id_str":"3438181593","indices":[0,7]},{"screen_name":"pamliitto","name":"PAM - ry","id":72275801,"id_str":"72275801","indices":[8,18]}],"urls":[{"url":"https:\/\/t.co\/bnEUuT0NGO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505874427287945224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1503709285376831488,"in_reply_to_status_id_str":"1503709285376831488","in_reply_to_user_id":3438181593,"in_reply_to_user_id_str":"3438181593","in_reply_to_screen_name":"MiB_ry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486357704029396993\/nXwD4KUJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486357704029396993\/nXwD4KUJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253175038\/1646465484","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240012672936161281,"id_str":"1240012672936161281","name":"Connie","screen_name":"Connie87665363","location":"","description":"Easy - going quiet. Like to watch crime shows, crochet, walk the dog.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":149,"listed_count":0,"created_at":"Tue - Mar 17 20:31:01 +0000 2020","favourites_count":1709,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1164,"lang":null,"status":{"created_at":"Fri - Mar 25 12:14:04 +0000 2022","id":1507329969235578894,"id_str":"1507329969235578894","text":"@nathaliejacoby1 - No I''m not I have COPD, it''s pretty far along so I try not to take any chances.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497589771354480642,"in_reply_to_status_id_str":"1497589771354480642","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240013079766872073\/nWDDpKSk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240013079766872073\/nWDDpKSk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1214820910240354304,"id_str":"1214820910240354304","name":"davinci","screen_name":"davinci97267330","location":"Port - Harcourt, Nigeria","description":"God own son...A believer of possibilities.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":222,"friends_count":1414,"listed_count":1,"created_at":"Wed - Jan 08 08:07:40 +0000 2020","favourites_count":1318,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1485,"lang":null,"status":{"created_at":"Tue - Nov 23 03:12:38 +0000 2021","id":1462982393929691142,"id_str":"1462982393929691142","text":"RT - @renoomokri: Alcohol is not a sin. But drunkenness is a sin. Deut 14:26, 1 - Tim 5:23\n\nEating is not a sin. Gluttony (overeating) is a sin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"renoomokri","name":"Reno - Omokri","id":264248576,"id_str":"264248576","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 22 21:09:42 +0000 2021","id":1462891057721622528,"id_str":"1462891057721622528","text":"Alcohol - is not a sin. But drunkenness is a sin. Deut 14:26, 1 Tim 5:23\n\nEating is - not a sin. Gluttony (overeating)\u2026 https:\/\/t.co\/QAakzK8Ifl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QAakzK8Ifl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1462891057721622528","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":343,"favorite_count":1104,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":343,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322017527178940416\/DgiKiPv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322017527178940416\/DgiKiPv3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213187023923601413,"id_str":"1213187023923601413","name":"Pettigrew!\ud83d\udef8","screen_name":"dammnnnit","location":"London, - England","description":"sleep is the cousin of death\ud83d\ude08\ud83d\udc80. - Arsenal fan. Actuarial Science @ UG","url":"https:\/\/t.co\/qq3HsE44tt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qq3HsE44tt","expanded_url":"http:\/\/BBC.com","display_url":"BBC.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":447,"friends_count":1927,"listed_count":0,"created_at":"Fri - Jan 03 19:55:07 +0000 2020","favourites_count":113208,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2841,"lang":null,"status":{"created_at":"Fri - Mar 25 21:56:40 +0000 2022","id":1507476588245491718,"id_str":"1507476588245491718","text":"RT - @__Epiphanyy: Date night \ud83e\udd42 https:\/\/t.co\/LYoAuo5nOc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"__Epiphanyy","name":"KING - Pip","id":774069149769359360,"id_str":"774069149769359360","indices":[3,15]}],"urls":[],"media":[{"id":1507476361698582531,"id_str":"1507476361698582531","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"large":{"w":1780,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":591,"h":680,"resize":"fit"},"medium":{"w":1043,"h":1200,"resize":"fit"}},"source_status_id":1507476375191666695,"source_status_id_str":"1507476375191666695","source_user_id":774069149769359360,"source_user_id_str":"774069149769359360"}]},"extended_entities":{"media":[{"id":1507476361698582531,"id_str":"1507476361698582531","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"large":{"w":1780,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":591,"h":680,"resize":"fit"},"medium":{"w":1043,"h":1200,"resize":"fit"}},"source_status_id":1507476375191666695,"source_status_id_str":"1507476375191666695","source_user_id":774069149769359360,"source_user_id_str":"774069149769359360"},{"id":1507476362147373062,"id_str":"1507476362147373062","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw7EXoAYnj3v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw7EXoAYnj3v.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1869,"h":2048,"resize":"fit"}},"source_status_id":1507476375191666695,"source_status_id_str":"1507476375191666695","source_user_id":774069149769359360,"source_user_id_str":"774069149769359360"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:55:50 +0000 2022","id":1507476375191666695,"id_str":"1507476375191666695","text":"Date - night \ud83e\udd42 https:\/\/t.co\/LYoAuo5nOc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507476361698582531,"id_str":"1507476361698582531","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"large":{"w":1780,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":591,"h":680,"resize":"fit"},"medium":{"w":1043,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507476361698582531,"id_str":"1507476361698582531","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw5ZXoAMm7Yf.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"large":{"w":1780,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":591,"h":680,"resize":"fit"},"medium":{"w":1043,"h":1200,"resize":"fit"}}},{"id":1507476362147373062,"id_str":"1507476362147373062","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOuhw7EXoAYnj3v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOuhw7EXoAYnj3v.jpg","url":"https:\/\/t.co\/LYoAuo5nOc","display_url":"pic.twitter.com\/LYoAuo5nOc","expanded_url":"https:\/\/twitter.com\/__Epiphanyy\/status\/1507476375191666695\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":680,"resize":"fit"},"medium":{"w":1095,"h":1200,"resize":"fit"},"large":{"w":1869,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"ec212eb1116b92e2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ec212eb1116b92e2.json","place_type":"city","name":"Reston","full_name":"Reston, - VA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-77.393246,38.90861],[-77.304868,38.90861],[-77.304868,39.002993],[-77.393246,39.002993]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":122,"favorite_count":1095,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":122,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479270218128048129\/-5ueE6Sy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479270218128048129\/-5ueE6Sy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213187023923601413\/1600133454","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1069634386004402176,"id_str":"1069634386004402176","name":"la","screen_name":"LailyNisfa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":44,"friends_count":90,"listed_count":0,"created_at":"Mon - Dec 03 16:48:05 +0000 2018","favourites_count":1544,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":128,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507314731186483201\/JZngFKsi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507314731186483201\/JZngFKsi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":140252823,"id_str":"140252823","name":"Glenn - Taylor, II","screen_name":"taylorglenn2","location":"Reno, NV","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":4945,"listed_count":3,"created_at":"Wed - May 05 01:11:13 +0000 2010","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"status":{"created_at":"Tue - Feb 15 17:24:22 +0000 2022","id":1493637320112685062,"id_str":"1493637320112685062","text":"Check - out this trailer for my friend''s movie\nhttps:\/\/t.co\/XB6zGALMUN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XB6zGALMUN","expanded_url":"https:\/\/youtu.be\/sZmzfuEs7LA","display_url":"youtu.be\/sZmzfuEs7LA","indices":[45,68]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1332899370610565120\/YNLDbOjD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1332899370610565120\/YNLDbOjD_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1254736743816990720,"id_str":"1254736743816990720","name":"Mrinank - Arya","screen_name":"MrinankArya","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":3876,"listed_count":6,"created_at":"Mon - Apr 27 11:38:54 +0000 2020","favourites_count":5367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Mon - Mar 21 06:40:31 +0000 2022","id":1505796479352381441,"id_str":"1505796479352381441","text":"RT - @MarvelStudios: @MrinankArya Embrace the chaos \ud83c\udf19 Mark your calendars - for Marvel Studios\u2019 #MoonKnight, streaming March 30 on @DisneyPlus.\u2026","truncated":false,"entities":{"hashtags":[{"text":"MoonKnight","indices":[92,103]}],"symbols":[],"user_mentions":[{"screen_name":"MarvelStudios","name":"Marvel - Studios","id":750751206427860992,"id_str":"750751206427860992","indices":[3,17]},{"screen_name":"MrinankArya","name":"Mrinank - Arya","id":1254736743816990720,"id_str":"1254736743816990720","indices":[19,31]},{"screen_name":"disneyplus","name":"Disney+","id":985916593065476096,"id_str":"985916593065476096","indices":[127,138]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 18:06:59 +0000 2022","id":1505606847599939593,"id_str":"1505606847599939593","text":"@MrinankArya - Embrace the chaos \ud83c\udf19 Mark your calendars for Marvel Studios\u2019 - #MoonKnight, streaming March 30 on\u2026 https:\/\/t.co\/6AOmC0UCLm","truncated":true,"entities":{"hashtags":[{"text":"MoonKnight","indices":[73,84]}],"symbols":[],"user_mentions":[{"screen_name":"MrinankArya","name":"Mrinank - Arya","id":1254736743816990720,"id_str":"1254736743816990720","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/6AOmC0UCLm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505606847599939593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"source":"\u003ca - href=\"https:\/\/www.qwvr.co\" rel=\"nofollow\"\u003eArrow.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1254736743816990720,"in_reply_to_user_id_str":"1254736743816990720","in_reply_to_screen_name":"MrinankArya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1254736869985828865\/Qz04SHVg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1254736869985828865\/Qz04SHVg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":949730169723506689,"id_str":"949730169723506689","name":"Martin - Lloyd","screen_name":"MartinL03949291","location":"Ellesmere Port, England","description":"I - Love Both Facebook and Twitter I Love Liverpool Football Club Rugby Union - I Love Professional Wrestling WWE I Love Reading Star Trek and Harry Potter - Books","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":492,"friends_count":2938,"listed_count":0,"created_at":"Sat - Jan 06 19:51:32 +0000 2018","favourites_count":4813,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2538,"lang":null,"status":{"created_at":"Sun - Mar 20 18:36:40 +0000 2022","id":1505614316619419657,"id_str":"1505614316619419657","text":"@bmstores - Have You Raised Prices on Toilet Rolls?\nYesterday When I Went to B&ms - in Ellesmere Port The Price Had Gone up From \u00a31.99 to \u00a32.39","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bmstores","name":"B&M - Stores","id":130548872,"id_str":"130548872","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":130548872,"in_reply_to_user_id_str":"130548872","in_reply_to_screen_name":"bmstores","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1030036321274880001\/zWN9HQJI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1030036321274880001\/zWN9HQJI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":867619487595585536,"id_str":"867619487595585536","name":"Wale - Adeosun","screen_name":"olawaleadeosunn","location":"Ibadan, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":114,"listed_count":0,"created_at":"Thu - May 25 05:53:00 +0000 2017","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Fri - Oct 23 08:51:06 +0000 2020","id":1319561978059292672,"id_str":"1319561978059292672","text":"@davido - Thanks bro, we need a clean slate in our political leadership. We are tired - of all these analogy leaders.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davido","name":"Davido","id":192947735,"id_str":"192947735","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1319535934476587008,"in_reply_to_status_id_str":"1319535934476587008","in_reply_to_user_id":192947735,"in_reply_to_user_id_str":"192947735","in_reply_to_screen_name":"davido","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143779476687532032\/RIQTWM89_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143779476687532032\/RIQTWM89_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/867619487595585536\/1561533249","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":287315118,"id_str":"287315118","name":"Le - Maaloulyx","screen_name":"jelmaalouli","location":"France","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":191,"friends_count":4958,"listed_count":4,"created_at":"Sun - Apr 24 19:06:13 +0000 2011","favourites_count":815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":552,"lang":null,"status":{"created_at":"Sat - Mar 26 10:11:50 +0000 2022","id":1507661598801944581,"id_str":"1507661598801944581","text":"@EmmanuelMacron - Bravo Macron. You have been F**ked by the American with the submarines and - now will be F**ked with Gaz. Keep on going dude","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EmmanuelMacron","name":"Emmanuel - Macron","id":1976143068,"id_str":"1976143068","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507449619747377152,"in_reply_to_status_id_str":"1507449619747377152","in_reply_to_user_id":1976143068,"in_reply_to_user_id_str":"1976143068","in_reply_to_screen_name":"EmmanuelMacron","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335412736\/success_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335412736\/success_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2500222875,"id_str":"2500222875","name":"Obafemi - Yomi","screen_name":"Yomi_Lil","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":138,"listed_count":0,"created_at":"Mon - Apr 21 19:01:01 +0000 2014","favourites_count":83,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Jan 24 08:09:05 +0000 2021","id":1353253475770052610,"id_str":"1353253475770052610","text":"RT - @CNNPolitics: The prospects of convicting Donald Trump are eroding as the - GOP grows vocal against Senate impeachment proceedings https:\/\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNNPolitics","name":"CNN - Politics","id":13850422,"id_str":"13850422","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 24 07:29:05 +0000 2021","id":1353243411218894850,"id_str":"1353243411218894850","text":"The - prospects of convicting Donald Trump are eroding as the GOP grows vocal against - Senate impeachment proceedings\u2026 https:\/\/t.co\/NYm9FPcGDJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NYm9FPcGDJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1353243411218894850","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":213,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":59,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":71112462,"id_str":"71112462","name":"Crissy","screen_name":"Banopato","location":"Spokane, - Wa","description":"community health pharmacist, reality TV connoisseur, political - junkie, mom (fur and human)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":342,"listed_count":0,"created_at":"Wed - Sep 02 23:41:08 +0000 2009","favourites_count":180,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":341,"lang":null,"status":{"created_at":"Wed - Mar 23 06:56:30 +0000 2022","id":1506525278511665152,"id_str":"1506525278511665152","text":"@MjrMorris - It''s like if Tony Soprano and Joe Exotic had a baby. Best line of the movie - was when he said he would t\u2026 https:\/\/t.co\/lf6yuAJoNM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MjrMorris","name":"Major - Morris","id":3592857202,"id_str":"3592857202","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/lf6yuAJoNM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506525278511665152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504585883890196482,"in_reply_to_status_id_str":"1504585883890196482","in_reply_to_user_id":3592857202,"in_reply_to_user_id_str":"3592857202","in_reply_to_screen_name":"MjrMorris","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118362640240103424\/pEERQ92u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118362640240103424\/pEERQ92u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71112462\/1388131308","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49086593,"id_str":"49086593","name":"El - Guapo","screen_name":"dubblosvn","location":"Tucson, Arizona","description":"passionately - inquisitive, realistic idealist, progressive, Atheist, lover of nature, Science - & the Universe. Wander-luster, Politico,#RESIST","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":717,"listed_count":0,"created_at":"Sat - Jun 20 19:07:11 +0000 2009","favourites_count":69101,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2989,"lang":null,"status":{"created_at":"Tue - Mar 22 05:08:39 +0000 2022","id":1506135745748037632,"id_str":"1506135745748037632","text":"RT - @pevchikh: Have a look at this wonderful yacht called Scheherezade. It\u2019s - been talked about for a while. The rumour is it belongs to Vlad\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pevchikh","name":"Maria - Pevchikh","id":2845731895,"id_str":"2845731895","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 16:19:35 +0000 2022","id":1505942207030779912,"id_str":"1505942207030779912","text":"Have - a look at this wonderful yacht called Scheherezade. It\u2019s been talked - about for a while. The rumour is it belon\u2026 https:\/\/t.co\/YUW8jUR2Zk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YUW8jUR2Zk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505942207030779912","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9309,"favorite_count":29744,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9309,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928090911434608641\/MK6L6cET_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928090911434608641\/MK6L6cET_normal.jpg","profile_link_color":"FF691F","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"CC6633","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263860773836582912,"id_str":"1263860773836582912","name":"Sajid","screen_name":"____Sajid","location":"Srinagar - \ud83c\udf41 - kashmir \u2763 ","description":"(views personal ) .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":108,"listed_count":1,"created_at":"Fri - May 22 15:54:36 +0000 2020","favourites_count":9867,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Thu - Mar 24 13:55:00 +0000 2022","id":1506992981902970881,"id_str":"1506992981902970881","text":"No - matter the darkness, always pray for the light of Allah\n\n\u201cAnd he called - out within the darkness, \u2018There is no de\u2026 https:\/\/t.co\/oBR4JzoxAl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oBR4JzoxAl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506992981902970881","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507041606343438337\/H7bP9aoJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507041606343438337\/H7bP9aoJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263860773836582912\/1647760106","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1222792845112827907,"id_str":"1222792845112827907","name":"sadhasmanto","screen_name":"taqalufnahipls","location":"New - York, USA","description":"I am a witch.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":297,"listed_count":0,"created_at":"Thu - Jan 30 08:05:36 +0000 2020","favourites_count":1243,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":147,"lang":null,"status":{"created_at":"Tue - Mar 22 11:34:30 +0000 2022","id":1506232849749491712,"id_str":"1506232849749491712","text":"RT - @banoqvi: In a world running on lies, ulterior motives, and material gain, - there are few who dedicate their lives to capturing the momen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"banoqvi","name":"Shehrbano - Naqvi","id":1296404446654738433,"id_str":"1296404446654738433","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 16:35:51 +0000 2022","id":1505946299140644867,"id_str":"1505946299140644867","text":"In - a world running on lies, ulterior motives, and material gain, there are few - who dedicate their lives to capturin\u2026 https:\/\/t.co\/oH7Pb9mvkX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oH7Pb9mvkX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505946299140644867","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462495803688239109\/BfUIHSPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462495803688239109\/BfUIHSPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1222792845112827907\/1608356596","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":249418852,"id_str":"249418852","name":"Thomas - Zuzelo","screen_name":"tzuzelo","location":"Sao Paulo, Brazil","description":"Unsolicited - advice, great articles, politics and regular doses of why #BlackLivesMatter.","url":"https:\/\/t.co\/rUcJqeIUMA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rUcJqeIUMA","expanded_url":"http:\/\/www.avp.org\/","display_url":"avp.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":222,"listed_count":0,"created_at":"Wed - Feb 09 00:47:00 +0000 2011","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Thu - Jan 07 17:27:55 +0000 2021","id":1347233516682170368,"id_str":"1347233516682170368","text":"RT - @frankthorp: SCHUMER calls on Pres Trump to be removed from office: \"The - quickest and most effective way - it can be done today - to rem\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"frankthorp","name":"Frank - Thorp V","id":14007532,"id_str":"14007532","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 07 16:32:58 +0000 2021","id":1347219686442889217,"id_str":"1347219686442889217","text":"SCHUMER - calls on Pres Trump to be removed from office: \"The quickest and most effective - way - it can be done today\u2026 https:\/\/t.co\/Bc47LwDErx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Bc47LwDErx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347219686442889217","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1347219275107471360,"in_reply_to_status_id_str":"1347219275107471360","in_reply_to_user_id":14007532,"in_reply_to_user_id_str":"14007532","in_reply_to_screen_name":"frankthorp","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":432,"favorite_count":1394,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":432,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299322727153635328\/frFg5L_g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299322727153635328\/frFg5L_g_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4307100914,"id_str":"4307100914","name":"Y\ud83e\udd84\ud83d\udc98\u2602\ufe0f\ud83c\udf08","screen_name":"y19910925","location":"Tokyo - & London","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":150,"listed_count":0,"created_at":"Sat - Nov 21 02:03:15 +0000 2015","favourites_count":9950,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":99,"lang":null,"status":{"created_at":"Mon - Nov 08 12:15:14 +0000 2021","id":1457683127610994692,"id_str":"1457683127610994692","text":"@konotarogomame - \ud83e\udd26\u200d\u2640\ufe0f\ud83e\udd26\u200d\u2640\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"konotarogomame","name":"\u6cb3\u91ce\u592a\u90ce","id":104388107,"id_str":"104388107","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1457602246984699907,"in_reply_to_status_id_str":"1457602246984699907","in_reply_to_user_id":104388107,"in_reply_to_user_id_str":"104388107","in_reply_to_screen_name":"konotarogomame","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/951654185807659009\/EEvnqmCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/951654185807659009\/EEvnqmCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4307100914\/1632318258","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":123920492,"id_str":"123920492","name":"haryani - mohd saleh","screen_name":"haryanimsl","location":"Kuala Lumpur , Malaysia","description":"une - fille p\u00e9tillante simple qui r\u00eave de conqu\u00e9rir le monde","url":"https:\/\/t.co\/pIvGF2Jnwb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pIvGF2Jnwb","expanded_url":"http:\/\/haryanimsl.blogspot.com\/","display_url":"haryanimsl.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2926,"friends_count":2362,"listed_count":28,"created_at":"Wed - Mar 17 16:52:37 +0000 2010","favourites_count":10318,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109576,"lang":null,"status":{"created_at":"Sat - Mar 26 05:09:30 +0000 2022","id":1507585511183241222,"id_str":"1507585511183241222","text":"RT - @zone_astronomy: Mercury Eating Gold.\ud83d\ude2e https:\/\/t.co\/sY73Nh3pPj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zone_astronomy","name":"Physics - & Astronomy Zone","id":1222182373867032576,"id_str":"1222182373867032576","indices":[3,18]}],"urls":[],"media":[{"id":1507228482224500799,"id_str":"1507228482224500799","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","url":"https:\/\/t.co\/sY73Nh3pPj","display_url":"pic.twitter.com\/sY73Nh3pPj","expanded_url":"https:\/\/twitter.com\/zone_astronomy\/status\/1507228508266934272\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"source_status_id":1507228508266934272,"source_status_id_str":"1507228508266934272","source_user_id":1222182373867032576,"source_user_id_str":"1222182373867032576"}]},"extended_entities":{"media":[{"id":1507228482224500799,"id_str":"1507228482224500799","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","url":"https:\/\/t.co\/sY73Nh3pPj","display_url":"pic.twitter.com\/sY73Nh3pPj","expanded_url":"https:\/\/twitter.com\/zone_astronomy\/status\/1507228508266934272\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"source_status_id":1507228508266934272,"source_status_id_str":"1507228508266934272","source_user_id":1222182373867032576,"source_user_id_str":"1222182373867032576","video_info":{"aspect_ratio":[1,1],"duration_millis":20689,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/320x320\/7Aev5bwjA1nqcxJS.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/540x540\/i9vUMBMu4WSD_l_F.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/640x640\/flN56QeEUQLMW4ph.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/pl\/8sbQd7fFIZNUqcSQ.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 05:30:53 +0000 2022","id":1507228508266934272,"id_str":"1507228508266934272","text":"Mercury - Eating Gold.\ud83d\ude2e https:\/\/t.co\/sY73Nh3pPj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507228482224500799,"id_str":"1507228482224500799","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","url":"https:\/\/t.co\/sY73Nh3pPj","display_url":"pic.twitter.com\/sY73Nh3pPj","expanded_url":"https:\/\/twitter.com\/zone_astronomy\/status\/1507228508266934272\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507228482224500799,"id_str":"1507228482224500799","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507228482224500799\/pu\/img\/wGllg0QcMdZwUogF.jpg","url":"https:\/\/t.co\/sY73Nh3pPj","display_url":"pic.twitter.com\/sY73Nh3pPj","expanded_url":"https:\/\/twitter.com\/zone_astronomy\/status\/1507228508266934272\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":20689,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/320x320\/7Aev5bwjA1nqcxJS.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/540x540\/i9vUMBMu4WSD_l_F.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/vid\/640x640\/flN56QeEUQLMW4ph.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507228482224500799\/pu\/pl\/8sbQd7fFIZNUqcSQ.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":317,"favorite_count":1912,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":317,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323453006088531968\/rd0O1qqT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323453006088531968\/rd0O1qqT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123920492\/1604370762","profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":898655514757918721,"id_str":"898655514757918721","name":"OrangeMike44","screen_name":"OrangeMike44","location":"Wichita, - KS","description":"Star Trek, science fiction, Syracuse sports, Kansas Democrat, - politics, TV, movies, puns, music clips, wisecrackery and yes, pineapple goes - on pizza.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":633,"friends_count":1490,"listed_count":2,"created_at":"Fri - Aug 18 21:19:05 +0000 2017","favourites_count":5237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4250,"lang":null,"status":{"created_at":"Wed - Nov 10 05:38:14 +0000 2021","id":1458307993032957956,"id_str":"1458307993032957956","text":"@TinseltownTwins - For sure - love that movie!\ud83d\udc4d\ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TinseltownTwins","name":"The - Tinseltown Twins","id":783034777318207488,"id_str":"783034777318207488","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1344640270256775170,"in_reply_to_status_id_str":"1344640270256775170","in_reply_to_user_id":898655514757918721,"in_reply_to_user_id_str":"898655514757918721","in_reply_to_screen_name":"OrangeMike44","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1416987385296994307\/k8QrPAkD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1416987385296994307\/k8QrPAkD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/898655514757918721\/1607548161","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":710287857,"id_str":"710287857","name":"Sandra - DaSilva","screen_name":"SandraD27811109","location":"Massachusetts, USA","description":"GodIsGreat...AllOfTheTime!!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":16,"friends_count":1041,"listed_count":0,"created_at":"Sat - Oct 12 04:44:18 +0000 2013","favourites_count":847,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240941651192958976\/eYQtb2lb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240941651192958976\/eYQtb2lb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/710287857\/1529204148","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300733371174264834,"id_str":"1300733371174264834","name":"Ikenna - Okafor","screen_name":"IkennaO66522640","location":"","description":"i am - fun to be with","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":582,"listed_count":0,"created_at":"Tue - Sep 01 09:53:22 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300733769998102528\/Lp9Zqcig_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300733769998102528\/Lp9Zqcig_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240618557374955520,"id_str":"1240618557374955520","name":"and - Co","screen_name":"Debbie23707344","location":"","description":"Keeping it - Positive","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":578,"listed_count":0,"created_at":"Thu - Mar 19 12:38:18 +0000 2020","favourites_count":3516,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Tue - Nov 02 13:33:18 +0000 2021","id":1455528447095316483,"id_str":"1455528447095316483","text":"RT - @LeoDiCaprio: Sir David Attenborough\u2019s powerful message to leaders at - #COP26 reminds them why they are there. The world is watching. #Ey\u2026","truncated":false,"entities":{"hashtags":[{"text":"COP26","indices":[73,79]}],"symbols":[],"user_mentions":[{"screen_name":"LeoDiCaprio","name":"Leonardo - DiCaprio","id":133880286,"id_str":"133880286","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 02 13:30:01 +0000 2021","id":1455527619965952017,"id_str":"1455527619965952017","text":"Sir - David Attenborough\u2019s powerful message to leaders at #COP26 reminds them - why they are there. The world is watchi\u2026 https:\/\/t.co\/6ySjGxi4r9","truncated":true,"entities":{"hashtags":[{"text":"COP26","indices":[56,62]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6ySjGxi4r9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1455527619965952017","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2190,"favorite_count":9772,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2190,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240625277841047552\/gmk7773H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240625277841047552\/gmk7773H_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2325651194,"id_str":"2325651194","name":"M - Haugh","screen_name":"Mickello3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":865,"listed_count":0,"created_at":"Mon - Feb 03 15:37:14 +0000 2014","favourites_count":116,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431909368510951424\/-mgLn-F6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431909368510951424\/-mgLn-F6_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":461812865,"id_str":"461812865","name":"Alice - Cordes","screen_name":"Alice_cordes","location":"Mooresville, IN","description":"Christian, - wife, mother, grandmother. Retired non-profit ED. living with stage 4 kidney - cancer, 20 yr breast cancer survivor. My life is full & blessed.","url":"https:\/\/t.co\/ytBh5rpecV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ytBh5rpecV","expanded_url":"http:\/\/www.churchesinmission.org","display_url":"churchesinmission.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":248,"listed_count":1,"created_at":"Thu - Jan 12 06:47:36 +0000 2012","favourites_count":6927,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":355,"lang":null,"status":{"created_at":"Tue - Jan 11 08:10:43 +0000 2022","id":1480814416111276034,"id_str":"1480814416111276034","text":"RT - @wrtv: \"Without blood readily available, patients'' lives could be at risk. - Trauma patients may not have the blood needed for treatment;\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wrtv","name":"WRTV - Indianapolis","id":14408705,"id_str":"14408705","indices":[3,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 11 00:01:00 +0000 2022","id":1480691175292084224,"id_str":"1480691175292084224","text":"\"Without - blood readily available, patients'' lives could be at risk. Trauma patients - may not have the blood needed f\u2026 https:\/\/t.co\/K6HkEDQ6fi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K6HkEDQ6fi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1480691175292084224","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialnewsdesk.com\" rel=\"nofollow\"\u003eSocialNewsDesk\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/770772336169451521\/sPOgEacA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/770772336169451521\/sPOgEacA_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167268314713772032,"id_str":"1167268314713772032","name":"Jayden - Lie","screen_name":"jayden_lie","location":"","description":"Be Your Self - & Never Give Up","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":27,"friends_count":943,"listed_count":0,"created_at":"Fri - Aug 30 02:50:45 +0000 2019","favourites_count":6007,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323321612922335232\/uA7BkV0b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323321612922335232\/uA7BkV0b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297139964036210689,"id_str":"1297139964036210689","name":"claus - roesl","screen_name":"claus_roesl","location":"","description":"climate change, - earth, oceans, Africa, Asia, human rights and women","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":441,"friends_count":5001,"listed_count":7,"created_at":"Sat - Aug 22 11:54:56 +0000 2020","favourites_count":13047,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2573,"lang":null,"status":{"created_at":"Sat - Mar 26 07:36:36 +0000 2022","id":1507622531834028033,"id_str":"1507622531834028033","text":"RT - @MoscowTimes: Russia has signalled it may dial back its war aims to focus - on eastern Ukraine after failing to break Ukrainian resistance\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MoscowTimes","name":"The - Moscow Times","id":19527964,"id_str":"19527964","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:23:30 +0000 2022","id":1507619235777945602,"id_str":"1507619235777945602","text":"Russia - has signalled it may dial back its war aims to focus on eastern Ukraine after - failing to break Ukrainian res\u2026 https:\/\/t.co\/OVEIevNnZu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OVEIevNnZu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507619235777945602","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":76,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":35,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":254321788,"id_str":"254321788","name":"Mohammed - Sarul Islam","screen_name":"Sarulislam","location":"United Kingdom ","description":"Founder - of Community Support Foundation,UK #CSF #Love #mother language. https:\/\/t.co\/Uhbj72e8Fh. - Former County Councillor.. \u2764\ufe0f #Space #Travel","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/Uhbj72e8Fh","expanded_url":"http:\/\/imlmcardiff.wales","display_url":"imlmcardiff.wales","indices":[72,95]}]}},"protected":false,"followers_count":451,"friends_count":884,"listed_count":35,"created_at":"Sat - Feb 19 02:22:34 +0000 2011","favourites_count":2711,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7250,"lang":null,"status":{"created_at":"Fri - Mar 25 17:37:54 +0000 2022","id":1507411465392775179,"id_str":"1507411465392775179","text":"Greetings - from the entrance of holy city #Makkah #Alhamdulillah https:\/\/t.co\/3ZChTCIgej","truncated":false,"entities":{"hashtags":[{"text":"Makkah","indices":[41,48]},{"text":"Alhamdulillah","indices":[49,63]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507411456236654599,"id_str":"1507411456236654599","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtmu5tXEAcKFVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtmu5tXEAcKFVs.jpg","url":"https:\/\/t.co\/3ZChTCIgej","display_url":"pic.twitter.com\/3ZChTCIgej","expanded_url":"https:\/\/twitter.com\/Sarulislam\/status\/1507411465392775179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":643,"resize":"fit"},"small":{"w":680,"h":364,"resize":"fit"},"large":{"w":2048,"h":1097,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507411456236654599,"id_str":"1507411456236654599","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtmu5tXEAcKFVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtmu5tXEAcKFVs.jpg","url":"https:\/\/t.co\/3ZChTCIgej","display_url":"pic.twitter.com\/3ZChTCIgej","expanded_url":"https:\/\/twitter.com\/Sarulislam\/status\/1507411465392775179\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":643,"resize":"fit"},"small":{"w":680,"h":364,"resize":"fit"},"large":{"w":2048,"h":1097,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1437935586669699075\/5g484CTR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1437935586669699075\/5g484CTR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254321788\/1627340389","profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":556311472,"id_str":"556311472","name":"Jack - McCarthy","screen_name":"jmccarthy002","location":"NYC","description":"PR - @ProsekPR \/\/ @NewhouseSU Alum \u201819","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":496,"listed_count":0,"created_at":"Tue - Apr 17 21:45:35 +0000 2012","favourites_count":2032,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":116,"lang":null,"status":{"created_at":"Wed - Jan 26 02:56:49 +0000 2022","id":1486171239685177354,"id_str":"1486171239685177354","text":"The - joys of living in NYC. https:\/\/t.co\/jlQbqnwXil","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1486171179190734851,"id_str":"1486171179190734851","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1486171179190734851\/pu\/img\/uAHN6RHskdXrsaAj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1486171179190734851\/pu\/img\/uAHN6RHskdXrsaAj.jpg","url":"https:\/\/t.co\/jlQbqnwXil","display_url":"pic.twitter.com\/jlQbqnwXil","expanded_url":"https:\/\/twitter.com\/jmccarthy002\/status\/1486171239685177354\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1486171179190734851,"id_str":"1486171179190734851","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1486171179190734851\/pu\/img\/uAHN6RHskdXrsaAj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1486171179190734851\/pu\/img\/uAHN6RHskdXrsaAj.jpg","url":"https:\/\/t.co\/jlQbqnwXil","display_url":"pic.twitter.com\/jlQbqnwXil","expanded_url":"https:\/\/twitter.com\/jmccarthy002\/status\/1486171239685177354\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":11211,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1486171179190734851\/pu\/vid\/320x568\/UnQJ2ZVluNlJl7G9.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1486171179190734851\/pu\/pl\/vwfDkXSDmmnCUeYw.m3u8?tag=12&container=fmp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1486171179190734851\/pu\/vid\/720x1280\/0uqb2LVJEjGUIqV0.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1486171179190734851\/pu\/vid\/480x852\/NjskWjlgXd2Vzohl.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186636684332535808\/1-RELHY-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186636684332535808\/1-RELHY-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/556311472\/1639110220","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305192076577972224,"id_str":"1305192076577972224","name":"Croaked","screen_name":"croak_the","location":"I - don''t know, it''s wet.","description":"Former tadpole.","url":"https:\/\/t.co\/dKYKQzFbpV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dKYKQzFbpV","expanded_url":"https:\/\/squattingtoads.wordpress.com\/","display_url":"squattingtoads.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":990,"listed_count":0,"created_at":"Sun - Sep 13 17:10:33 +0000 2020","favourites_count":2369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3030,"lang":null,"status":{"created_at":"Fri - Mar 25 16:47:31 +0000 2022","id":1507398788373118977,"id_str":"1507398788373118977","text":"@LucyLThinks - @ClassicMovieHub Sweeping epics to ''small'' dramas to fanciful comedies, - he could direct them all.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LucyLThinks","name":"Lucy","id":152036314,"id_str":"152036314","indices":[0,12]},{"screen_name":"ClassicMovieHub","name":"Classic - Movie Hub","id":272538235,"id_str":"272538235","indices":[13,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507376502932971521,"in_reply_to_status_id_str":"1507376502932971521","in_reply_to_user_id":152036314,"in_reply_to_user_id_str":"152036314","in_reply_to_screen_name":"LucyLThinks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1305194883724926976\/1hR8UEsb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1305194883724926976\/1hR8UEsb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305192076577972224\/1606088877","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1289801772018667520,"id_str":"1289801772018667520","name":"Marian","screen_name":"Marianglasses","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":213,"listed_count":0,"created_at":"Sun - Aug 02 05:55:40 +0000 2020","favourites_count":331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sat - Oct 24 18:24:49 +0000 2020","id":1320068745994317832,"id_str":"1320068745994317832","text":"RT - @ananavarro: These @ProjectLincoln billboards are up in Times Square.\n#Jarvanka - don\u2019t want you to see them.\nThey are threatening to sue.\u2026","truncated":false,"entities":{"hashtags":[{"text":"Jarvanka","indices":[73,82]}],"symbols":[],"user_mentions":[{"screen_name":"ananavarro","name":"Ana - Navarro-C\u00e1rdenas","id":19568591,"id_str":"19568591","indices":[3,14]},{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[22,37]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 24 13:47:13 +0000 2020","id":1319998885113233409,"id_str":"1319998885113233409","text":"These - @ProjectLincoln billboards are up in Times Square.\n#Jarvanka don\u2019t want - you to see them.\nThey are threatening\u2026 https:\/\/t.co\/GoAZ4KyRAC","truncated":true,"entities":{"hashtags":[{"text":"Jarvanka","indices":[57,66]}],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[6,21]}],"urls":[{"url":"https:\/\/t.co\/GoAZ4KyRAC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1319998885113233409","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41151,"favorite_count":65123,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41151,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":152666810,"id_str":"152666810","name":"Julio - Zapata E. Petrone","screen_name":"JulioEZapata","location":"Suwanee, GA","description":"Entrepreneur, - husband and proud father of two. Love politics and sports. \ud83c\uddfa\ud83c\uddfe - \ud83c\uddee\ud83c\uddf9 \ud83c\uddea\ud83c\uddf8 \ud83c\uddfa\ud83c\uddf8 - @CAPe\u00f1arol. Hay orden de no aflojar!\u2026 53 y corran Perrooos!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":794,"listed_count":0,"created_at":"Sun - Jun 06 15:16:55 +0000 2010","favourites_count":3979,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":916,"lang":null,"status":{"created_at":"Thu - Mar 17 01:03:58 +0000 2022","id":1504262232250765312,"id_str":"1504262232250765312","text":"@lucas_cap_1891 - Las pelotudeces que dice cualquiera porque existe este medio. Bien por el - botija que rompi\u00f3 el culo por Pe\u00f1arol.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lucas_cap_1891","name":"lucas","id":1417244137049493511,"id_str":"1417244137049493511","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503906954258706432,"in_reply_to_status_id_str":"1503906954258706432","in_reply_to_user_id":1417244137049493511,"in_reply_to_user_id_str":"1417244137049493511","in_reply_to_screen_name":"lucas_cap_1891","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460727543527522318\/ZjGLq3Tc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460727543527522318\/ZjGLq3Tc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152666810\/1598215210","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":959552729998864391,"id_str":"959552729998864391","name":"Frances - Robinson","screen_name":"robbie30906","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":100,"listed_count":0,"created_at":"Fri - Feb 02 22:22:53 +0000 2018","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825781024277684224,"id_str":"825781024277684224","name":"Ingvill","screen_name":"IngvillKM","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":990,"listed_count":0,"created_at":"Sun - Jan 29 19:01:53 +0000 2017","favourites_count":66731,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1610,"lang":null,"status":{"created_at":"Thu - May 27 07:34:04 +0000 2021","id":1397818371190657024,"id_str":"1397818371190657024","text":"RT - @delina4az: My name is Delina DiSanto. \n\nI\u2019m a registered nurse, a - small business owner, and the Democrat running against Paul Gosar in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"delina4az","name":"Delina - DiSanto","id":967145325881319425,"id_str":"967145325881319425","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - May 26 17:19:33 +0000 2021","id":1397603326330540045,"id_str":"1397603326330540045","text":"My - name is Delina DiSanto. \n\nI\u2019m a registered nurse, a small business - owner, and the Democrat running against Paul\u2026 https:\/\/t.co\/2lq1C49YQh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2lq1C49YQh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1397603326330540045","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12615,"favorite_count":25598,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12615,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22847279,"id_str":"22847279","name":"jesse","screen_name":"antirush","location":"Detroit","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":704,"listed_count":0,"created_at":"Wed - Mar 04 22:39:06 +0000 2009","favourites_count":9056,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Sat - Mar 19 15:59:52 +0000 2022","id":1505212466216808451,"id_str":"1505212466216808451","text":"@StellaParton - @funder Put it in a bowl and put milk on it makes a good breakfast in a pinch","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StellaParton","name":"Stella - Parton","id":49151622,"id_str":"49151622","indices":[0,13]},{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[14,21]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505208134217965585,"in_reply_to_status_id_str":"1505208134217965585","in_reply_to_user_id":49151622,"in_reply_to_user_id_str":"49151622","in_reply_to_screen_name":"StellaParton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":892933650018381825,"id_str":"892933650018381825","name":"Sincere - Apex-El","screen_name":"DustinParks28","location":"Cleveland, OH","description":"Government - & Politics Science Technology Space News Science News Tech News Science America - Human Resource Management","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":1377,"listed_count":4,"created_at":"Thu - Aug 03 02:22:26 +0000 2017","favourites_count":2429,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"status":{"created_at":"Wed - Mar 23 12:27:10 +0000 2022","id":1506608491963817984,"id_str":"1506608491963817984","text":"@TheDustyBC - Great \ud83d\ude0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheDustyBC","name":"DustyBC - Crypto News","id":913778551555608576,"id_str":"913778551555608576","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506383042968969220,"in_reply_to_status_id_str":"1506383042968969220","in_reply_to_user_id":913778551555608576,"in_reply_to_user_id_str":"913778551555608576","in_reply_to_screen_name":"TheDustyBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1420379402190348288\/eNnpoI01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1420379402190348288\/eNnpoI01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892933650018381825\/1591246625","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312902666465542144,"id_str":"1312902666465542144","name":"Dovalinamartin1","screen_name":"Dovalinamartin1","location":"Shreveport, - LA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":284,"friends_count":794,"listed_count":0,"created_at":"Sun - Oct 04 23:49:50 +0000 2020","favourites_count":6190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2570,"lang":null,"status":{"created_at":"Sat - Nov 28 07:19:23 +0000 2020","id":1332584859852828677,"id_str":"1332584859852828677","text":"@last_buffoon - Need to watch this video.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"last_buffoon","name":"FIGHT - TO PROTECT DEMOCRACY","id":3448984879,"id_str":"3448984879","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1332572400702033920,"in_reply_to_status_id_str":"1332572400702033920","in_reply_to_user_id":3448984879,"in_reply_to_user_id_str":"3448984879","in_reply_to_screen_name":"last_buffoon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312904208803401735\/OuRuEXRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312904208803401735\/OuRuEXRl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261874244121739269,"id_str":"1261874244121739269","name":"Jean - Bosco nkurunziza","screen_name":"JeanBosconkur11","location":"Bujumbura town - down ","description":"necessary","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":701,"listed_count":0,"created_at":"Sun - May 17 04:21:49 +0000 2020","favourites_count":713,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Wed - Nov 11 04:52:05 +0000 2020","id":1326387198711705605,"id_str":"1326387198711705605","text":"May - God protect to you American New leader https:\/\/t.co\/9TaWZSJ9fV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9TaWZSJ9fV","expanded_url":"https:\/\/twitter.com\/JoeBiden\/status\/1326344141446373376","display_url":"twitter.com\/JoeBiden\/statu\u2026","indices":[43,66]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1326344141446373376,"quoted_status_id_str":"1326344141446373376","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261877614685425664\/Zf5OCuHB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261877614685425664\/Zf5OCuHB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2398614327,"id_str":"2398614327","name":"aaron","screen_name":"JiagenAaron","location":"Canada","description":"data - engineer | constantly learning new things | Toronto","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":225,"listed_count":0,"created_at":"Mon - Mar 10 04:46:45 +0000 2014","favourites_count":154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sun - Jul 04 23:55:26 +0000 2021","id":1411836078114357248,"id_str":"1411836078114357248","text":"@pickover - It looks like the ball is rotating with the rope but it is moving on a line...beautiful!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pickover","name":"Cliff - Pickover","id":16176754,"id_str":"16176754","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1411472291486175238,"in_reply_to_status_id_str":"1411472291486175238","in_reply_to_user_id":16176754,"in_reply_to_user_id_str":"16176754","in_reply_to_screen_name":"pickover","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367313664018173955\/0c-KrNWU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367313664018173955\/0c-KrNWU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2460523911,"id_str":"2460523911","name":"Doreen","screen_name":"DoreenPdjacques","location":"","description":"grandma - to 3 gorgeous girls","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":63,"listed_count":0,"created_at":"Fri - Apr 04 18:18:52 +0000 2014","favourites_count":106,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sun - Aug 08 16:18:41 +0000 2021","id":1424404707661991945,"id_str":"1424404707661991945","text":"L","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456086508467142656\/gWNbByVV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456086508467142656\/gWNbByVV_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2382803208,"id_str":"2382803208","name":"Kevyne - \ud83c\uddfa\ud83c\uddf2\ud83c\uddef\ud83c\uddf5\ud83c\uddf8\ud83c\uddea\u2640\ufe0f\u267f - \ud83d\ude37\ud83d\udc89\ud83d\udc89 #SexNotGender","screen_name":"KevyneShandris","location":"Georgia, - USA","description":"Proud disabled biological woman, who defied labels; stigma - and hate for over 50 yrs.\n#BidenHarris #STEMWOMEN #ERA\n \nBPD; PCA Stroke - x2; Crohn''s Disease survivor","url":"https:\/\/t.co\/gzqARn2Jwn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gzqARn2Jwn","expanded_url":"http:\/\/www.youtube.com\/user\/KevyneShandris","display_url":"youtube.com\/user\/KevyneSha\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":190,"friends_count":1106,"listed_count":3,"created_at":"Mon - Mar 10 23:07:40 +0000 2014","favourites_count":15561,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38772,"lang":null,"status":{"created_at":"Sat - Mar 26 01:26:42 +0000 2022","id":1507529441513295884,"id_str":"1507529441513295884","text":"Yep.\n\nIf - you haven''t noticed the ACLU isn''t operating like the ACLU people once knew, - this -- the ACLU representing\u2026 https:\/\/t.co\/aSkhfzZ046","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aSkhfzZ046","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529441513295884","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"05071E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1020203402398240768\/jpvXX1Ub_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1020203402398240768\/jpvXX1Ub_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2382803208\/1646291710","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D0DCDC","profile_text_color":"FE9506","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2236072673,"id_str":"2236072673","name":"Steve - Slemko","screen_name":"SlemkoSteve","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":4765,"listed_count":1,"created_at":"Sat - Dec 21 09:16:05 +0000 2013","favourites_count":43220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Mar 17 20:25:43 +0000 2018","id":975105924582035456,"id_str":"975105924582035456","text":"RT - @JohnBrennan: When the full extent of your venality, moral turpitude, and - political corruption becomes known, you will take your rightfu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnBrennan","name":"John - O. Brennan","id":910492003359760384,"id_str":"910492003359760384","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 17 12:00:48 +0000 2018","id":974978856997224448,"id_str":"974978856997224448","text":"When - the full extent of your venality, moral turpitude, and political corruption - becomes known, you will take your\u2026 https:\/\/t.co\/xbl1pcESbL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xbl1pcESbL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/974978856997224448","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":974859881827258369,"quoted_status_id_str":"974859881827258369","retweet_count":89210,"favorite_count":221744,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":974859881827258369,"quoted_status_id_str":"974859881827258369","retweet_count":89210,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414324520464699392\/g-bWpMHc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414324520464699392\/g-bWpMHc_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213684530072059904,"id_str":"1213684530072059904","name":"moo - moo","screen_name":"jacindafatimah","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":33,"friends_count":191,"listed_count":0,"created_at":"Sun - Jan 05 04:52:02 +0000 2020","favourites_count":18974,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11628,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424244045505654785\/qdJXpsPw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424244045505654785\/qdJXpsPw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213684530072059904\/1624377804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1201881165092806663,"id_str":"1201881165092806663","name":"sholanke - olamide Tunde","screen_name":"sholanke_tunde","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":234,"listed_count":0,"created_at":"Tue - Dec 03 15:10:01 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Jan 19 05:22:29 +0000 2021","id":1351399608631570432,"id_str":"1351399608631570432","text":"RT - @small__madam: I want to scream\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\nGod did - it\ud83d\ude2d\ud83d\ude2d\nGod answer prayers","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"small__madam","name":"Bee\ud83d\udc9c\ud83d\udc51","id":712703029284380672,"id_str":"712703029284380672","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jan 18 06:37:52 +0000 2021","id":1351056193305923592,"id_str":"1351056193305923592","text":"I - want to scream\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\nGod did it\ud83d\ude2d\ud83d\ude2d\nGod - answer prayers","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1002,"favorite_count":7786,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1002,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":459024118,"id_str":"459024118","name":"Folarin","screen_name":"Wajufolarin","location":"Somewhere - Living","description":"I''m a King\ud83d\udc51||\nBeliever of Christ\ud83d\udcaf||\n\ud83c\udf10 - Political Enthusiast \ud83c\uddf3\ud83c\uddec\ud83c\uddfa\ud83c\uddf8||\nGod - || Books\ud83d\udcd6 Music \ud83c\udfb5 & Sports \u26bd \ud83d\udcaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":395,"listed_count":0,"created_at":"Mon - Jan 09 06:13:05 +0000 2012","favourites_count":13258,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1714,"lang":null,"status":{"created_at":"Thu - Mar 24 17:54:58 +0000 2022","id":1507053372230225921,"id_str":"1507053372230225921","text":"RT - @joncoopertweets: When Clarence Thomas was hospitalized on Sunday after experiencing - \u201cflu-like symptoms,\u201d he was expected to be released\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 11:31:38 +0000 2022","id":1506956902231597056,"id_str":"1506956902231597056","text":"When - Clarence Thomas was hospitalized on Sunday after experiencing \u201cflu-like - symptoms,\u201d he was expected to be relea\u2026 https:\/\/t.co\/4YnzvLqCDw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4YnzvLqCDw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506956902231597056","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":714,"favorite_count":4248,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":714,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382236305996791808\/TBLTwUtp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382236305996791808\/TBLTwUtp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459024118\/1597970304","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1063058065614872576,"id_str":"1063058065614872576","name":"Alexandra - Sued","screen_name":"AlexandraASDL","location":"New York, USA","description":"Human - Rights junkie | Abogada en \ud83c\udde9\ud83c\uddf4 y \ud83c\uddfa\ud83c\uddf8 - | Feminista","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":570,"friends_count":682,"listed_count":1,"created_at":"Thu - Nov 15 13:16:08 +0000 2018","favourites_count":39621,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2721,"lang":null,"status":{"created_at":"Fri - Mar 25 22:32:36 +0000 2022","id":1507485630627991552,"id_str":"1507485630627991552","text":"@AnselSf - Also, no *Karen*, you have not been haunted throughout your entire career. - Is black people and POC who are\u2026 https:\/\/t.co\/hEKUx3cVWt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnselSf","name":"Ansel","id":143161375,"id_str":"143161375","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/hEKUx3cVWt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507485630627991552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507484092304171013,"in_reply_to_status_id_str":"1507484092304171013","in_reply_to_user_id":143161375,"in_reply_to_user_id_str":"143161375","in_reply_to_screen_name":"AnselSf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489464816385331200\/TnDt4xj7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489464816385331200\/TnDt4xj7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1063058065614872576\/1622231492","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":110049445,"id_str":"110049445","name":"Karen","screen_name":"bendgrl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":403,"listed_count":0,"created_at":"Sun - Jan 31 04:51:39 +0000 2010","favourites_count":97,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529890557196115968\/JCSJ9iu2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529890557196115968\/JCSJ9iu2_normal.jpeg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":821768900,"id_str":"821768900","name":"hermahdez","screen_name":"AhmedAyiki","location":"kwara - state","description":"I don''t tolerate rubbish, i always stand on my own - so I don''t give fuck and i don''t allow it. I''m very calm person with very - good habits.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":1262,"listed_count":0,"created_at":"Thu - Sep 13 16:10:00 +0000 2012","favourites_count":152,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":460,"lang":null,"status":{"created_at":"Sat - Mar 19 09:22:56 +0000 2022","id":1505112574957965313,"id_str":"1505112574957965313","text":"RT - @mrbayoa1: Winning millions will eventually happen because impossible is just - a big word thrown around by small men who find it easier t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrbayoa1","name":"Mr - Bayo","id":1280152605474373635,"id_str":"1280152605474373635","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 09:50:48 +0000 2022","id":1504757201524740133,"id_str":"1504757201524740133","text":"Winning - millions will eventually happen because impossible is just a big word thrown - around by small men who find i\u2026 https:\/\/t.co\/rGBs1tYnbb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rGBs1tYnbb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504757201524740133","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3160,"favorite_count":19695,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3160,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1440965007806709760\/Vsg8fsA0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1440965007806709760\/Vsg8fsA0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821768900\/1632387804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":416602375,"id_str":"416602375","name":"Abdinor - Mohamed Omar ( B. MAGAN)","screen_name":"AbnorawillAwill","location":"Kent - . London. United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":3234,"listed_count":1,"created_at":"Sat - Nov 19 22:33:47 +0000 2011","favourites_count":460,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2806,"lang":null,"status":{"created_at":"Thu - Mar 24 19:12:37 +0000 2022","id":1507072913370980354,"id_str":"1507072913370980354","text":"2 - people followed me \/\/ automatically checked by https:\/\/t.co\/MdiJ0YHL83","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MdiJ0YHL83","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[49,72]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487291004243828738\/EVcz0_-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487291004243828738\/EVcz0_-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416602375\/1643432783","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1311774405324832779,"id_str":"1311774405324832779","name":"Yunusa - Jafar Madobi","screen_name":"MadobiYunusa","location":"","description":"need - to know","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":1519,"listed_count":4,"created_at":"Thu - Oct 01 21:06:34 +0000 2020","favourites_count":288,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Thu - Nov 12 11:19:42 +0000 2020","id":1326847130535911424,"id_str":"1326847130535911424","text":"Masha - Allah Alhamdulillah https:\/\/t.co\/qVzih6pL3s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qVzih6pL3s","expanded_url":"https:\/\/twitter.com\/_reemarh\/status\/1326828307078385664","display_url":"twitter.com\/_reemarh\/statu\u2026","indices":[26,49]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1326828307078385664,"quoted_status_id_str":"1326828307078385664","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311774977629270016\/twXqe89s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311774977629270016\/twXqe89s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33439729,"id_str":"33439729","name":"MANI - L CFA","screen_name":"MANILAKS","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":1186,"listed_count":1,"created_at":"Mon - Apr 20 05:43:27 +0000 2009","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Wed - Nov 18 15:34:08 +0000 2020","id":1329085487479328769,"id_str":"1329085487479328769","text":"@sagarikaghose - What a connection you are weaving!!! Truly no one can be better in Journalism - than Sagarika. Let better sense prevail.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sagarikaghose","name":"Sagarika - Ghose","id":56312411,"id_str":"56312411","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1329050453087141888,"in_reply_to_status_id_str":"1329050453087141888","in_reply_to_user_id":56312411,"in_reply_to_user_id_str":"56312411","in_reply_to_screen_name":"sagarikaghose","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":115613048,"id_str":"115613048","name":"Kwadwo - Oppong Yeboah-Gyan","screen_name":"K_ygyan","location":"Accra, Ghana","description":"God - is good.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":196,"friends_count":92,"listed_count":1,"created_at":"Fri - Feb 19 08:17:16 +0000 2010","favourites_count":221,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":207,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380811344107167745\/S8x0_0Ko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380811344107167745\/S8x0_0Ko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115613048\/1529877672","profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":717375122810748928,"id_str":"717375122810748928","name":"Patricia - Rupanga","screen_name":"RupangaPatricia","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":89,"friends_count":1985,"listed_count":0,"created_at":"Tue - Apr 05 15:35:32 +0000 2016","favourites_count":1723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":613210200,"id_str":"613210200","name":"Tennille - Rice","screen_name":"AzulChula","location":"Las Vegas Nevada","description":"Perfectly - Posh Consultant","url":"http:\/\/t.co\/eABOKB3Xxw","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/eABOKB3Xxw","expanded_url":"http:\/\/www.perfectlyposh.com\/tennille","display_url":"perfectlyposh.com\/tennille","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":77,"listed_count":0,"created_at":"Wed - Jun 20 04:28:34 +0000 2012","favourites_count":983,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1723,"lang":null,"status":{"created_at":"Fri - Mar 25 23:00:12 +0000 2022","id":1507492574147198977,"id_str":"1507492574147198977","text":"It''s - the kind of day when anything -- no matter how important ... More for Scorpio - https:\/\/t.co\/aHodcxiHF2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/aHodcxiHF2","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621528534629003264\/biqDRu8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621528534629003264\/biqDRu8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613210200\/1442350582","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1380673093,"id_str":"1380673093","name":"Juli - Reinholz","screen_name":"revreinholz","location":"Wenatchee WA","description":"United - Methodist clergy, grandma, mother, wife, friend, mentor, visionary leader","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":440,"listed_count":7,"created_at":"Thu - Apr 25 23:51:16 +0000 2013","favourites_count":30519,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":412,"lang":null,"status":{"created_at":"Thu - Mar 24 15:08:16 +0000 2022","id":1507011420780580864,"id_str":"1507011420780580864","text":"RT - @tokitaeII: I was sad to see Russell Wilson leave Seattle but would love to - see Colin Kaepernick get a tryout with the Seahawks. He was\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tokitaeII","name":"Chris - Rilling\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0d","id":827689621865717761,"id_str":"827689621865717761","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:24:02 +0000 2022","id":1506819095664111621,"id_str":"1506819095664111621","text":"I - was sad to see Russell Wilson leave Seattle but would love to see Colin Kaepernick - get a tryout with the Seahawks\u2026 https:\/\/t.co\/T322Sqmnx4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/T322Sqmnx4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506819095664111621","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":490,"favorite_count":3167,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":490,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000306161845\/a5f5987033f1ba23890a08f62949d73a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000306161845\/a5f5987033f1ba23890a08f62949d73a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1380673093\/1381814227","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":364056632,"id_str":"364056632","name":"Susan - Huffman","screen_name":"HuffmanSusan","location":"","description":"Teacher, - mother, wife, daughter and aspiring gardener.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":482,"listed_count":0,"created_at":"Mon - Aug 29 03:42:10 +0000 2011","favourites_count":38440,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":830,"lang":null,"status":{"created_at":"Tue - Mar 22 05:44:20 +0000 2022","id":1506144728219152390,"id_str":"1506144728219152390","text":"RT - @PhysInHistory: \"One, remember to look up at the stars and not down at your - feet. Two, never give up work. Work gives you meaning and pu\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhysInHistory","name":"Physics - In History","id":1288841746898534401,"id_str":"1288841746898534401","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:22:53 +0000 2022","id":1505927936704380940,"id_str":"1505927936704380940","text":"\"One, - remember to look up at the stars and not down at your feet. Two, never give - up work. Work gives you meaning a\u2026 https:\/\/t.co\/GJzCITFVCo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GJzCITFVCo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505927936704380940","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":784,"favorite_count":3171,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":784,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239262480611737601\/4iejORfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239262480611737601\/4iejORfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364056632\/1584298175","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2286033625,"id_str":"2286033625","name":"scale - less","screen_name":"LessScale","location":"","description":"y","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":908,"listed_count":0,"created_at":"Sat - Jan 11 03:33:55 +0000 2014","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":774107045364576256,"id_str":"774107045364576256","name":"Sasha - Robeson","screen_name":"RobesonSasha","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":278,"listed_count":0,"created_at":"Fri - Sep 09 04:47:56 +0000 2016","favourites_count":12502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Sat - Nov 07 17:16:13 +0000 2020","id":1325124912365760513,"id_str":"1325124912365760513","text":"@SchittsCreek - https:\/\/t.co\/vNWjekWASs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SchittsCreek","name":"Schitt''s - Creek","id":2237952289,"id_str":"2237952289","indices":[0,13]}],"urls":[],"media":[{"id":1325124902437810177,"id_str":"1325124902437810177","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EmPKE_TUcAEG1G4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EmPKE_TUcAEG1G4.jpg","url":"https:\/\/t.co\/vNWjekWASs","display_url":"pic.twitter.com\/vNWjekWASs","expanded_url":"https:\/\/twitter.com\/RobesonSasha\/status\/1325124912365760513\/photo\/1","type":"photo","sizes":{"small":{"w":334,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":366,"resize":"fit"},"medium":{"w":334,"h":366,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1325124902437810177,"id_str":"1325124902437810177","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EmPKE_TUcAEG1G4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EmPKE_TUcAEG1G4.jpg","url":"https:\/\/t.co\/vNWjekWASs","display_url":"pic.twitter.com\/vNWjekWASs","expanded_url":"https:\/\/twitter.com\/RobesonSasha\/status\/1325124912365760513\/photo\/1","type":"animated_gif","sizes":{"small":{"w":334,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":366,"resize":"fit"},"medium":{"w":334,"h":366,"resize":"fit"}},"video_info":{"aspect_ratio":[167,183],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EmPKE_TUcAEG1G4.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325118916763418625,"in_reply_to_status_id_str":"1325118916763418625","in_reply_to_user_id":2237952289,"in_reply_to_user_id_str":"2237952289","in_reply_to_screen_name":"SchittsCreek","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":324095212,"id_str":"324095212","name":"Rita - Bush","screen_name":"rbush59","location":"Riverside, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":167,"listed_count":0,"created_at":"Sun - Jun 26 00:30:03 +0000 2011","favourites_count":4221,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Mon - Apr 26 01:28:24 +0000 2021","id":1386492322863476737,"id_str":"1386492322863476737","text":"@MichaelSteele - @NBCJoshua @TheWeekMSNBC Great Job Hosting on MSNBC!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichaelSteele","name":"Michael - Steele","id":50317463,"id_str":"50317463","indices":[0,14]},{"screen_name":"NBCJoshua","name":"Joshua - Johnson","id":275349340,"id_str":"275349340","indices":[15,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1386472070507282434,"in_reply_to_status_id_str":"1386472070507282434","in_reply_to_user_id":50317463,"in_reply_to_user_id_str":"50317463","in_reply_to_screen_name":"MichaelSteele","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137562995825864704\/Isowmybu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137562995825864704\/Isowmybu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":151381533,"id_str":"151381533","name":"Eng. - Mahmoud Soliman","screen_name":"EMahmoudSoliman","location":"Mansoura - Egypt","description":"\u0627\u0633\u062a\u0634\u0627\u0631\u0649 - \u0648 \u0645\u062f\u0631\u0628 \u0648 \u0645\u0647\u0646\u062f\u0633 \u0646\u0638\u0645 - \u0645\u0639\u062a\u0645\u062f \u0645\u0646 \u0645\u0627\u064a\u0643\u0631\u0648\u0633\u0648\u0641\u062a - ( \u062a\u062e\u0635\u0635 \u0623\u0645\u0646 \u0646\u0638\u0645 ) \u0645\u0646\u0630 - \u0662\u0660\u0660\u0666 - \u062e\u0628\u064a\u0631 \u0641\u0649 \u0627\u0644\u0623\u0645\u0646 - \u0627\u0644\u0633\u064a\u0628\u0631\u0627\u0646\u064a\n ( IT Trainer- MCSE-MCLC-MCT- - CyberSecurity )\n\nPotterhead","url":"https:\/\/t.co\/3xsHJXQZiQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3xsHJXQZiQ","expanded_url":"http:\/\/www.linkedin.com\/in\/mahmoud-soliman-71130b18","display_url":"linkedin.com\/in\/mahmoud-sol\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8627,"friends_count":3760,"listed_count":392,"created_at":"Thu - Jun 03 08:16:35 +0000 2010","favourites_count":11136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":129028,"lang":null,"status":{"created_at":"Sat - Mar 26 09:13:03 +0000 2022","id":1507646806259286017,"id_str":"1507646806259286017","text":"\u0648\u0625\u0630\u0627 - \u0643\u0646\u062a \u0644\u0627 \u062a\u0633\u062a\u0637\u064a\u0639 \u0627\u0644\u062a\u062d\u0648\u0644 - \u0644\u0644\u0646\u0638\u0645 \u0648\u0627\u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a - \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629 \u0648\u062a\u0631\u064a\u062f - \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0641\u0649 \u0627\u0644\u062d\u0635\u0648\u0644 - \u0639\u0644\u0649 \u0623\u0646\u0633\u0628 \u0648\u0623\u0631\u062e\u0635 - \u062d\u0644\u0648\u0644 \u0645\u0627\u064a\u0643\u0631\u0648\u0633\u0648\u0641\u062a - (\u0648\u064a\u0646\u062f\u0648\u0632\u2026 https:\/\/t.co\/Do8DQpnZHv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Do8DQpnZHv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507646806259286017","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507646804111810560,"in_reply_to_status_id_str":"1507646804111810560","in_reply_to_user_id":151381533,"in_reply_to_user_id_str":"151381533","in_reply_to_screen_name":"EMahmoudSoliman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069953050633273350\/roxUb4WM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069953050633273350\/roxUb4WM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151381533\/1543931706","profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":855883508,"id_str":"855883508","name":"Dickson","screen_name":"dndhlovu200","location":"Lusaka, - Zambia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":615,"listed_count":0,"created_at":"Mon - Oct 01 05:30:58 +0000 2012","favourites_count":298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Sun - Feb 27 09:39:16 +0000 2022","id":1497868928705511425,"id_str":"1497868928705511425","text":"@WymanKaluba - @PaulShalalaZNBC @ssepiso Happy birthday","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WymanKaluba","name":"Eng - Wyman Kaluba","id":50594239,"id_str":"50594239","indices":[0,12]},{"screen_name":"PaulShalalaZNBC","name":"Paul - Shalala ZNBC","id":251594275,"id_str":"251594275","indices":[13,29]},{"screen_name":"ssepiso","name":"Shalala - Oliver Sepiso","id":99637186,"id_str":"99637186","indices":[30,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497827670729633793,"in_reply_to_status_id_str":"1497827670729633793","in_reply_to_user_id":50594239,"in_reply_to_user_id_str":"50594239","in_reply_to_screen_name":"WymanKaluba","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3488055738\/c273892b535d0e02ca81542f5ad6054b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3488055738\/c273892b535d0e02ca81542f5ad6054b_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2701382310,"id_str":"2701382310","name":"Kamran - \u0130smiyev \ud83c\udde6\ud83c\uddff","screen_name":"Ismiyev1907","location":"","description":"#KarabakhisAzerbaijan - \ud83c\udde6\ud83c\uddff\nBachelor''s degree in #InternationalRelations at - #BSU\n\nMaster''s Degree in #HR and #\u0130nterculturalHeritage at #UniofBologna","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":104,"listed_count":0,"created_at":"Sat - Aug 02 18:06:03 +0000 2014","favourites_count":3854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":640,"lang":null,"status":{"created_at":"Sat - Feb 26 16:08:37 +0000 2022","id":1497604524047020037,"id_str":"1497604524047020037","text":"RT - @ZelenskyyUa: I continue negotiations with international partners. Had a conversation - with \ud83c\udde6\ud83c\uddff President @presidentaz. We appreciate the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[3,15]},{"screen_name":"presidentaz","name":"Ilham - Aliyev","id":143742312,"id_str":"143742312","indices":[107,119]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 15:48:39 +0000 2022","id":1497599500889821186,"id_str":"1497599500889821186","text":"I - continue negotiations with international partners. Had a conversation with - \ud83c\udde6\ud83c\uddff President @presidentaz. We apprecia\u2026 https:\/\/t.co\/UHoJD9Cqop","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"presidentaz","name":"Ilham - Aliyev","id":143742312,"id_str":"143742312","indices":[90,102]}],"urls":[{"url":"https:\/\/t.co\/UHoJD9Cqop","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497599500889821186","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12392,"favorite_count":116831,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12392,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385342994941943810\/sqFd9ths_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385342994941943810\/sqFd9ths_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2701382310\/1601722571","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312955889712869376,"id_str":"1312955889712869376","name":"isabela - nakatani","screen_name":"isanakatani1","location":"","description":"eu com - raiva de tudo e todos? imagina (to aqui s\u00f3 por marvel, politica e crushs - famosos)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":86,"listed_count":0,"created_at":"Mon - Oct 05 03:21:03 +0000 2020","favourites_count":2969,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":551,"lang":null,"status":{"created_at":"Sat - Mar 05 07:41:22 +0000 2022","id":1500013585228963840,"id_str":"1500013585228963840","text":"ASHTRAY\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d - FEZ\ud83d\ude2d\ud83d\ude2d\ud83d\ude2dMADDY\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312956148144918528\/2vix3Xmd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312956148144918528\/2vix3Xmd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15640771,"id_str":"15640771","name":"Suzy - Garcia","screen_name":"SuzyGarcia20","location":"San Diego","description":"#PR - and #marketing pro @scatenadaniels, brand enthusiast, wifey, mom, changemaker, - loves tacos and panda videos","url":"https:\/\/t.co\/WShypC513d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WShypC513d","expanded_url":"http:\/\/www.scatenadaniels.com","display_url":"scatenadaniels.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":918,"friends_count":3037,"listed_count":30,"created_at":"Tue - Jul 29 02:07:16 +0000 2008","favourites_count":1618,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1300,"lang":null,"status":{"created_at":"Wed - Mar 23 23:21:09 +0000 2022","id":1506773070484172801,"id_str":"1506773070484172801","text":"RT - @NAHJSDTJ: Calling all journalism students in San Diego and Tijuana! \ud83d\udde3\ufe0f\n\nWe - are now accepting applications for our 2022 scholarships.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NAHJSDTJ","name":"NAHJ - SD-TJ","id":1300823190,"id_str":"1300823190","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 19:13:00 +0000 2022","id":1504173906755694593,"id_str":"1504173906755694593","text":"Calling - all journalism students in San Diego and Tijuana! \ud83d\udde3\ufe0f\n\nWe - are now accepting applications for our 2022 schola\u2026 https:\/\/t.co\/rf2hwPLC2r","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/rf2hwPLC2r","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504173906755694593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0F0201","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430888122985889793\/5LeLPTTr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430888122985889793\/5LeLPTTr_normal.jpeg","profile_link_color":"AA1A4B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FF816E","profile_text_color":"FDFFC9","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":829343281305833472,"id_str":"829343281305833472","name":"Lenin - Dharma","screen_name":"LeninDharmaa","location":"","description":"Be Strong - Now. Things Will Get Better.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":2173,"listed_count":1,"created_at":"Wed - Feb 08 14:57:01 +0000 2017","favourites_count":37424,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4208,"lang":null,"status":{"created_at":"Sat - Mar 26 10:04:24 +0000 2022","id":1507659726523301891,"id_str":"1507659726523301891","text":"@Arjun_sampath_ - \u0bb5\u0bbf\u0bb0\u0bc8\u0bb5\u0bbe\u0b95 \u0bb5\u0bbe\u0bb0\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd... \u0baa\u0bc6\u0b9f\u0bcd\u0bb0\u0bcb\u0bb2\u0bcd - \u0b87\u0bb2\u0bb5\u0b9a\u0bae\u0bcd.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Arjun_sampath_","name":"\u0b85\u0bb0\u0bcd\u0b9c\u0bc1\u0ba9\u0bcd - \u0b9a\u0bae\u0bcd\u0baa\u0ba4\u0bcd","id":1433985964301434888,"id_str":"1433985964301434888","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507390684780658689,"in_reply_to_status_id_str":"1507390684780658689","in_reply_to_user_id":1433985964301434888,"in_reply_to_user_id_str":"1433985964301434888","in_reply_to_screen_name":"Arjun_sampath_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ta"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928872446182162432\/e19Xn7iu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928872446182162432\/e19Xn7iu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829343281305833472\/1487248421","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16317506,"id_str":"16317506","name":"Malibu - Sky","screen_name":"Malibu2PD2Vegas","location":"Malibu, Palm Desert and Vegas","description":"#beachbum - #resist #tennis #attorney #goknightsgo #poker #Vegas","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1041,"friends_count":4875,"listed_count":20,"created_at":"Tue - Sep 16 20:59:13 +0000 2008","favourites_count":43783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11784,"lang":null,"status":{"created_at":"Sat - Mar 26 03:07:12 +0000 2022","id":1507554735561216000,"id_str":"1507554735561216000","text":"@VegasIssues - Cox sucks","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VegasIssues","name":"Las - Vegas Issues","id":2831498270,"id_str":"2831498270","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507530607181459459,"in_reply_to_status_id_str":"1507530607181459459","in_reply_to_user_id":2831498270,"in_reply_to_user_id_str":"2831498270","in_reply_to_screen_name":"VegasIssues","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/931326489257172992\/rp-3DqNF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/931326489257172992\/rp-3DqNF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16317506\/1584211491","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1647182906,"id_str":"1647182906","name":"@Sathishkumar_kongu","screen_name":"Sathish5S","location":"Coimbatore, - Tamilnadu","description":"\u0b8e\u0ba3\u0bcd\u0ba3\u0bae\u0bcd \u0baa\u0bcb\u0bb2\u0bcd - \u0bb5\u0bbe\u0bb4\u0bcd\u0b95\u0bcd\u0b95\u0bc8...","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":157,"friends_count":5007,"listed_count":1,"created_at":"Mon - Aug 05 07:26:29 +0000 2013","favourites_count":52006,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460520977977118721\/NNjSBZok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460520977977118721\/NNjSBZok_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1647182906\/1573010817","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246485609130139651,"id_str":"1246485609130139651","name":"Papaa - Miundombinu","screen_name":"Cobra_Centino","location":"Dar es Salaam, Tanzania","description":"CN - Clothing Line:\n- We are selling Men''s Latest clothes, Shoes and other Accessories.\n- - We deriver the parcel and charges varying depending on the Distance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":552,"listed_count":0,"created_at":"Sat - Apr 04 17:11:54 +0000 2020","favourites_count":498,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":272,"lang":null,"status":{"created_at":"Sat - Mar 26 09:06:27 +0000 2022","id":1507645144820076544,"id_str":"1507645144820076544","text":"@Eric_Bernard94 - Black Crab","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Eric_Bernard94","name":"MR - BEN","id":2877409326,"id_str":"2877409326","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507643975519416320,"in_reply_to_status_id_str":"1507643975519416320","in_reply_to_user_id":2877409326,"in_reply_to_user_id_str":"2877409326","in_reply_to_screen_name":"Eric_Bernard94","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1290341048095510528\/K3_XqKLv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1290341048095510528\/K3_XqKLv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20335313,"id_str":"20335313","name":"Sherry","screen_name":"sherryande","location":"","description":"Davell - Gardner, 22 months old, was shot and killed, not by cops, in Brooklyn in the - deadly summer of 2020 #DavellGardnerMatters","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1373,"friends_count":4004,"listed_count":6,"created_at":"Sat - Feb 07 21:44:01 +0000 2009","favourites_count":29347,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26378,"lang":null,"status":{"created_at":"Fri - Mar 25 16:26:41 +0000 2022","id":1507393545740582912,"id_str":"1507393545740582912","text":"Watch - the other hand\nhttps:\/\/t.co\/QqCISYK1EK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QqCISYK1EK","expanded_url":"https:\/\/www.yahoo.com\/news\/china-solomon-islands-draft-secret-115126931.html","display_url":"yahoo.com\/news\/china-sol\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358227375197097984\/CNK88us__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358227375197097984\/CNK88us__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20335313\/1612661616","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1186850187794362369,"id_str":"1186850187794362369","name":"Atak - Lual","screen_name":"MaguopngokAtak","location":"Juba","description":"never - give up whatever","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":107,"listed_count":0,"created_at":"Wed - Oct 23 03:42:53 +0000 2019","favourites_count":88,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Tue - Mar 22 18:58:43 +0000 2022","id":1506344641725140999,"id_str":"1506344641725140999","text":"@EyeRadioJuba - is really a credit for South Sudanese who will travel to those places.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EyeRadioJuba","name":"Eye - Radio","id":1597763490,"id_str":"1597763490","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506260865951088647,"in_reply_to_status_id_str":"1506260865951088647","in_reply_to_user_id":1597763490,"in_reply_to_user_id_str":"1597763490","in_reply_to_screen_name":"EyeRadioJuba","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186850671875842048\/eyIMO93g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186850671875842048\/eyIMO93g_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182392359759306752,"id_str":"1182392359759306752","name":"John - Lippe","screen_name":"JohnLippe2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":653,"listed_count":0,"created_at":"Thu - Oct 10 20:28:06 +0000 2019","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Sun - Dec 06 23:08:37 +0000 2020","id":1335722843791896576,"id_str":"1335722843791896576","text":"@RyanAFournier - Trump\u2019s lawyers are 1-39 on cases in court, this election doesn\u2019t - prove anything , where is your evi\u2026 https:\/\/t.co\/X7VNhCD8KS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RyanAFournier","name":"Ryan - Fournier","id":166751745,"id_str":"166751745","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/X7VNhCD8KS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1335722843791896576","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1335670285182390272,"in_reply_to_status_id_str":"1335670285182390272","in_reply_to_user_id":166751745,"in_reply_to_user_id_str":"166751745","in_reply_to_screen_name":"RyanAFournier","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321860777528250368\/Mudv3rbZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321860777528250368\/Mudv3rbZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1171985827817250816,"id_str":"1171985827817250816","name":"Fanta - dabor","screen_name":"dabor_fanta","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":1199,"listed_count":0,"created_at":"Thu - Sep 12 03:16:32 +0000 2019","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Jul 01 19:10:28 +0000 2021","id":1410677201662533638,"id_str":"1410677201662533638","text":"RT - @piersmorgan: BREAKING: The Diana statue, unveiled by her feuding sons. https:\/\/t.co\/BmZ23kLWlj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"piersmorgan","name":"Piers - Morgan","id":216299334,"id_str":"216299334","indices":[3,15]}],"urls":[],"media":[{"id":1410602600207060994,"id_str":"1410602600207060994","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","url":"https:\/\/t.co\/BmZ23kLWlj","display_url":"pic.twitter.com\/BmZ23kLWlj","expanded_url":"https:\/\/twitter.com\/piersmorgan\/status\/1410602605458333708\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"medium":{"w":1024,"h":682,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1410602605458333708,"source_status_id_str":"1410602605458333708","source_user_id":216299334,"source_user_id_str":"216299334"}]},"extended_entities":{"media":[{"id":1410602600207060994,"id_str":"1410602600207060994","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","url":"https:\/\/t.co\/BmZ23kLWlj","display_url":"pic.twitter.com\/BmZ23kLWlj","expanded_url":"https:\/\/twitter.com\/piersmorgan\/status\/1410602605458333708\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"medium":{"w":1024,"h":682,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1410602605458333708,"source_status_id_str":"1410602605458333708","source_user_id":216299334,"source_user_id_str":"216299334"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jul 01 14:14:03 +0000 2021","id":1410602605458333708,"id_str":"1410602605458333708","text":"BREAKING: - The Diana statue, unveiled by her feuding sons. https:\/\/t.co\/BmZ23kLWlj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1410602600207060994,"id_str":"1410602600207060994","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","url":"https:\/\/t.co\/BmZ23kLWlj","display_url":"pic.twitter.com\/BmZ23kLWlj","expanded_url":"https:\/\/twitter.com\/piersmorgan\/status\/1410602605458333708\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"medium":{"w":1024,"h":682,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1410602600207060994,"id_str":"1410602600207060994","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E5N3l1iVkAI6K1O.jpg","url":"https:\/\/t.co\/BmZ23kLWlj","display_url":"pic.twitter.com\/BmZ23kLWlj","expanded_url":"https:\/\/twitter.com\/piersmorgan\/status\/1410602605458333708\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"medium":{"w":1024,"h":682,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":655,"favorite_count":13381,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":655,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171986027273216001\/wL9G_6kA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171986027273216001\/wL9G_6kA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":536757611,"id_str":"536757611","name":"Prudence - Gourguechon","screen_name":"pgourguechon","location":"Chicago","description":"Consultant, - advisor, author, speaker on psychology of business: leadership, investing, - critical career changes, the new retirement. Psychoanalyst, physician.","url":"https:\/\/t.co\/AtHttdATF6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AtHttdATF6","expanded_url":"http:\/\/www.invantageadvising.com","display_url":"invantageadvising.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1493,"friends_count":1141,"listed_count":46,"created_at":"Mon - Mar 26 00:03:20 +0000 2012","favourites_count":2617,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3832,"lang":null,"status":{"created_at":"Mon - Mar 07 00:22:31 +0000 2022","id":1500627923056963584,"id_str":"1500627923056963584","text":"RT - @Corix_JC: 7 Reasons Why Decision-Making By Consensus Is A Bad Idea (And What - To Do Instead) >> https:\/\/t.co\/YkaTOB50uN via @forbes @pgo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Corix_JC","name":"JC - Gaillard","id":3345194367,"id_str":"3345194367","indices":[3,12]},{"screen_name":"Forbes","name":"Forbes","id":91478624,"id_str":"91478624","indices":[133,140]}],"urls":[{"url":"https:\/\/t.co\/YkaTOB50uN","expanded_url":"https:\/\/buff.ly\/3HNUjhz","display_url":"buff.ly\/3HNUjhz","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 20:05:03 +0000 2022","id":1500563126785384451,"id_str":"1500563126785384451","text":"7 - Reasons Why Decision-Making By Consensus Is A Bad Idea (And What To Do Instead) - >> https:\/\/t.co\/YkaTOB50uN via\u2026 https:\/\/t.co\/TAcvLsRAVB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YkaTOB50uN","expanded_url":"https:\/\/buff.ly\/3HNUjhz","display_url":"buff.ly\/3HNUjhz","indices":[91,114]},{"url":"https:\/\/t.co\/TAcvLsRAVB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500563126785384451","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[120,143]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/773989773128114176\/JIq3zNUz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/773989773128114176\/JIq3zNUz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/536757611\/1473368800","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":15065920,"id_str":"15065920","name":"swerber","screen_name":"swerber","location":"Los - Angeles","description":"","url":"http:\/\/t.co\/QMwApu7Ao3","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QMwApu7Ao3","expanded_url":"http:\/\/www.brandbuildingexperts.us","display_url":"brandbuildingexperts.us","indices":[0,22]}]},"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":111,"listed_count":0,"created_at":"Mon - Jun 09 21:28:09 +0000 2008","favourites_count":1530,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":448,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/714162101728714752\/Dgjw_eNA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/714162101728714752\/Dgjw_eNA_normal.jpg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1032004187268284416,"id_str":"1032004187268284416","name":"Christian - Joseph","screen_name":"__Chrisjoseph","location":"Montr\u00e9al, Qu\u00e9bec - \ud83c\udde8\ud83c\udde6","description":"#GoBolts.\ud83d\udc36\ud83c\udfc8\ud83c\udfc0\u26bd\ufe0f\u26be\ufe0f","url":"https:\/\/t.co\/j2TtQwgQsg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j2TtQwgQsg","expanded_url":"http:\/\/instagram.com\/__chrisjoseph","display_url":"instagram.com\/__chrisjoseph","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":487,"friends_count":5002,"listed_count":0,"created_at":"Tue - Aug 21 20:39:06 +0000 2018","favourites_count":292310,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":398,"lang":null,"status":{"created_at":"Thu - Mar 24 00:11:55 +0000 2022","id":1506785848708190214,"id_str":"1506785848708190214","text":"#NouvellePhotoDeProfil - https:\/\/t.co\/IBuF0Twh8H","truncated":false,"entities":{"hashtags":[{"text":"NouvellePhotoDeProfil","indices":[0,22]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506785845868642307,"id_str":"1506785845868642307","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOktvleWQAMxXtx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOktvleWQAMxXtx.jpg","url":"https:\/\/t.co\/IBuF0Twh8H","display_url":"pic.twitter.com\/IBuF0Twh8H","expanded_url":"https:\/\/twitter.com\/__Chrisjoseph\/status\/1506785848708190214\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506785845868642307,"id_str":"1506785845868642307","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/FOktvleWQAMxXtx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOktvleWQAMxXtx.jpg","url":"https:\/\/t.co\/IBuF0Twh8H","display_url":"pic.twitter.com\/IBuF0Twh8H","expanded_url":"https:\/\/twitter.com\/__Chrisjoseph\/status\/1506785848708190214\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507030895076724737\/QTonEJ8x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507030895076724737\/QTonEJ8x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1032004187268284416\/1648139073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":265755737,"id_str":"265755737","name":"Wendy - Kutka","screen_name":"wkutka","location":"","description":"retired, and loving - it","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":637,"listed_count":4,"created_at":"Mon - Mar 14 03:03:20 +0000 2011","favourites_count":3940,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1819,"lang":null,"status":{"created_at":"Wed - Mar 23 17:19:33 +0000 2022","id":1506682073729404928,"id_str":"1506682073729404928","text":"RT - @Snoopy: Dogs make the best of friends \u2764\ufe0f Show your puppy some love - today! #NationalPuppyDay https:\/\/t.co\/2e8w7Mya0j","truncated":false,"entities":{"hashtags":[{"text":"NationalPuppyDay","indices":[78,95]}],"symbols":[],"user_mentions":[{"screen_name":"Snoopy","name":"PEANUTS","id":245548093,"id_str":"245548093","indices":[3,10]}],"urls":[],"media":[{"id":1506645948222615560,"id_str":"1506645948222615560","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","url":"https:\/\/t.co\/2e8w7Mya0j","display_url":"pic.twitter.com\/2e8w7Mya0j","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/1506645951850680329\/photo\/1","type":"photo","sizes":{"small":{"w":612,"h":612,"resize":"fit"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":612,"h":612,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1506645951850680329,"source_status_id_str":"1506645951850680329","source_user_id":245548093,"source_user_id_str":"245548093"}]},"extended_entities":{"media":[{"id":1506645948222615560,"id_str":"1506645948222615560","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","url":"https:\/\/t.co\/2e8w7Mya0j","display_url":"pic.twitter.com\/2e8w7Mya0j","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/1506645951850680329\/photo\/1","type":"photo","sizes":{"small":{"w":612,"h":612,"resize":"fit"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":612,"h":612,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1506645951850680329,"source_status_id_str":"1506645951850680329","source_user_id":245548093,"source_user_id_str":"245548093"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 14:56:01 +0000 2022","id":1506645951850680329,"id_str":"1506645951850680329","text":"Dogs - make the best of friends \u2764\ufe0f Show your puppy some love today! #NationalPuppyDay - https:\/\/t.co\/2e8w7Mya0j","truncated":false,"entities":{"hashtags":[{"text":"NationalPuppyDay","indices":[66,83]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506645948222615560,"id_str":"1506645948222615560","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","url":"https:\/\/t.co\/2e8w7Mya0j","display_url":"pic.twitter.com\/2e8w7Mya0j","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/1506645951850680329\/photo\/1","type":"photo","sizes":{"small":{"w":612,"h":612,"resize":"fit"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":612,"h":612,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1506645948222615560,"id_str":"1506645948222615560","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiugeIXMAgHaLJ.png","url":"https:\/\/t.co\/2e8w7Mya0j","display_url":"pic.twitter.com\/2e8w7Mya0j","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/1506645951850680329\/photo\/1","type":"photo","sizes":{"small":{"w":612,"h":612,"resize":"fit"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":612,"h":612,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3151,"favorite_count":15092,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3151,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278145509\/IMG_5332_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278145509\/IMG_5332_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265755737\/1498252386","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3405084269,"id_str":"3405084269","name":"VotesDal","screen_name":"VotesDal","location":"Pennsylvania, - USA","description":"I''m a mom who sings sometimes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":538,"friends_count":4835,"listed_count":0,"created_at":"Thu - Aug 06 02:36:50 +0000 2015","favourites_count":45200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":586,"lang":null,"status":{"created_at":"Fri - Mar 25 14:21:59 +0000 2022","id":1507362163454881793,"id_str":"1507362163454881793","text":"RT - @RepHankJohnson: Congress needs to pass my & @ChrisMurphyCT\u2019s #SCOTUS - Ethics Act\u2014transparency & accountability at our highest court can\u2026","truncated":false,"entities":{"hashtags":[{"text":"SCOTUS","indices":[69,76]}],"symbols":[],"user_mentions":[{"screen_name":"RepHankJohnson","name":"Rep. - Hank Johnson","id":24745957,"id_str":"24745957","indices":[3,18]},{"screen_name":"ChrisMurphyCT","name":"Chris - Murphy","id":150078976,"id_str":"150078976","indices":[52,66]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:18:00 +0000 2022","id":1507361158554177537,"id_str":"1507361158554177537","text":"Congress - needs to pass my & @ChrisMurphyCT\u2019s #SCOTUS Ethics Act\u2014transparency - & accountability at our highest court\u2026 https:\/\/t.co\/ypK9Th1vh2","truncated":true,"entities":{"hashtags":[{"text":"SCOTUS","indices":[49,56]}],"symbols":[],"user_mentions":[{"screen_name":"ChrisMurphyCT","name":"Chris - Murphy","id":150078976,"id_str":"150078976","indices":[32,46]}],"urls":[{"url":"https:\/\/t.co\/ypK9Th1vh2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507361158554177537","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[124,147]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825101554113970176\/bnYZ68Gg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825101554113970176\/bnYZ68Gg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16062149,"id_str":"16062149","name":"actorsstudio","screen_name":"actorsstudio","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":106,"friends_count":996,"listed_count":0,"created_at":"Sun - Aug 31 03:22:42 +0000 2008","favourites_count":4978,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":584,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/860678554195034113\/dMGpF-t0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/860678554195034113\/dMGpF-t0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":631640810,"id_str":"631640810","name":"Joan","screen_name":"joansths1","location":"Planet - Earth ","description":"The planet is our home to respect & live in - not dominate - or abuse. Researcher\nOrganic food development consultant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2012,"friends_count":4995,"listed_count":3,"created_at":"Tue - Jul 10 03:29:10 +0000 2012","favourites_count":52685,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":137452,"lang":null,"status":{"created_at":"Sat - Mar 26 04:42:11 +0000 2022","id":1507578639507881989,"id_str":"1507578639507881989","text":"RT - @FBIWFO: Help #FBIWFO find Yevgeniy Viktorovich Prigozhin. He allegedly conspired - to defraud the U.S. by interfering with the functions\u2026","truncated":false,"entities":{"hashtags":[{"text":"FBIWFO","indices":[17,24]}],"symbols":[],"user_mentions":[{"screen_name":"FBIWFO","name":"FBI - Washington Field","id":343452680,"id_str":"343452680","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:00:46 +0000 2022","id":1507387020183805974,"id_str":"1507387020183805974","text":"Help - #FBIWFO find Yevgeniy Viktorovich Prigozhin. He allegedly conspired to defraud - the U.S. by interfering with th\u2026 https:\/\/t.co\/DdxhPyIM12","truncated":true,"entities":{"hashtags":[{"text":"FBIWFO","indices":[5,12]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DdxhPyIM12","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507387020183805974","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7603,"favorite_count":12109,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7603,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353056539058163712\/DFDEJQkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353056539058163712\/DFDEJQkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/631640810\/1590865183","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":85513092,"id_str":"85513092","name":"Beverly - Smith","screen_name":"Jaecinth","location":"Denver, CO","description":"Equality - is my religion. Adoptee. I believe every society owes every child the first - three rungs of Maslow\u2019s hierarchy. This is where I scream into the dark.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":604,"listed_count":1,"created_at":"Tue - Oct 27 06:39:21 +0000 2009","favourites_count":3452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4096,"lang":null,"status":{"created_at":"Sat - Mar 26 00:02:31 +0000 2022","id":1507508257232891904,"id_str":"1507508257232891904","text":"@FeistyPK2 - Poetry.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FeistyPK2","name":"\ud83c\uddfa\ud83c\uddf8Whatever\ud83c\udf3bHeather\ud83c\uddfa\ud83c\uddf8","id":1318992190627078145,"id_str":"1318992190627078145","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507498619397677060,"in_reply_to_status_id_str":"1507498619397677060","in_reply_to_user_id":1318992190627078145,"in_reply_to_user_id_str":"1318992190627078145","in_reply_to_screen_name":"FeistyPK2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498024671383633923\/TehJgQkd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498024671383633923\/TehJgQkd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85513092\/1538096225","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":141586549,"id_str":"141586549","name":"Shauna - Avrith","screen_name":"swavrith","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":593,"listed_count":0,"created_at":"Sat - May 08 13:27:33 +0000 2010","favourites_count":7615,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":null,"status":{"created_at":"Tue - Nov 10 15:17:29 +0000 2020","id":1326182194805530626,"id_str":"1326182194805530626","text":"@angelafilmmaker - @BoutrousTed @JoeBiden It\u2019s a federal court rule that essentially says - an attorney signing a plead\u2026 https:\/\/t.co\/kS24ivGUpV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"angelafilmmaker","name":"angela - mancuso","id":109019732,"id_str":"109019732","indices":[0,16]},{"screen_name":"BoutrousTed","name":"Ted - Boutrous","id":1130070541,"id_str":"1130070541","indices":[17,29]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[30,39]}],"urls":[{"url":"https:\/\/t.co\/kS24ivGUpV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1326182194805530626","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1326179217327878144,"in_reply_to_status_id_str":"1326179217327878144","in_reply_to_user_id":109019732,"in_reply_to_user_id_str":"109019732","in_reply_to_screen_name":"angelafilmmaker","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287453771094622209\/s9hxl59v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287453771094622209\/s9hxl59v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141586549\/1595787874","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16677023,"id_str":"16677023","name":"Kathy - Jones","screen_name":"gima_jones","location":"Chanute, KS","description":"Advocacy - Director and Parenting Specialist for Advocates for High Ability Learners.","url":"http:\/\/t.co\/LOyeK7p36P","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/LOyeK7p36P","expanded_url":"http:\/\/www.aha-learners.org","display_url":"aha-learners.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":415,"friends_count":523,"listed_count":18,"created_at":"Fri - Oct 10 00:59:34 +0000 2008","favourites_count":1295,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":944,"lang":null,"status":{"created_at":"Wed - Mar 09 14:58:28 +0000 2022","id":1501573138852818947,"id_str":"1501573138852818947","text":"RT - @11thHour: REMINDER: Make sure to reset your DVR to watch the 11th Hour with - Stephanie Ruhle","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"11thHour","name":"11th - Hour","id":771388593130483712,"id_str":"771388593130483712","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 14:30:00 +0000 2022","id":1501565972473204737,"id_str":"1501565972473204737","text":"REMINDER: - Make sure to reset your DVR to watch the 11th Hour with Stephanie Ruhle","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":147,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000377564787\/69e2f869303e2ee77b6b5992e5c7a372_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000377564787\/69e2f869303e2ee77b6b5992e5c7a372_normal.jpeg","profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240049156527403008,"id_str":"1240049156527403008","name":"Debra - Hill","screen_name":"DebraHi09474789","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":637,"listed_count":0,"created_at":"Tue - Mar 17 22:55:44 +0000 2020","favourites_count":12690,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Sep 03 01:17:29 +0000 2021","id":1433599999858946052,"id_str":"1433599999858946052","text":"@uofmTeacherEd - Congratulations Mrs. Loggins!! They are so blessed to have you!! They truly - have an intelligent, tru\u2026 https:\/\/t.co\/mEgX5BkVFL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"uofmTeacherEd","name":"UofM - Teacher Edu","id":358228129,"id_str":"358228129","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/mEgX5BkVFL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1433599999858946052","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1433092570616320010,"in_reply_to_status_id_str":"1433092570616320010","in_reply_to_user_id":358228129,"in_reply_to_user_id_str":"358228129","in_reply_to_screen_name":"uofmTeacherEd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3227520553,"id_str":"3227520553","name":"m","screen_name":"MeganHull47","location":"Carmichael, - CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":328,"listed_count":0,"created_at":"Tue - May 26 19:40:38 +0000 2015","favourites_count":33834,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1824,"lang":null,"status":{"created_at":"Fri - Aug 13 01:06:32 +0000 2021","id":1425987099128258563,"id_str":"1425987099128258563","text":"@NCPPANEL - My mom -- 1943 after her enlistment in the WAVES during WWII. Jean Johnson - was stationed as a Yeoman Seco\u2026 https:\/\/t.co\/r0wY7Q5ge5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NCPPANEL","name":"NCP","id":223900960,"id_str":"223900960","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/r0wY7Q5ge5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1425987099128258563","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1425910216114245633,"in_reply_to_status_id_str":"1425910216114245633","in_reply_to_user_id":223900960,"in_reply_to_user_id_str":"223900960","in_reply_to_screen_name":"NCPPANEL","geo":null,"coordinates":null,"place":{"id":"b37d3f2758ab6f61","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b37d3f2758ab6f61.json","place_type":"city","name":"Carmichael","full_name":"Carmichael, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-121.3461003,38.591142],[-121.291344,38.591142],[-121.291344,38.691468],[-121.3461003,38.691468]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2891646839,"id_str":"2891646839","name":"Just - Me 2","screen_name":"NCresap","location":"Crystal Lake, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":878,"listed_count":1,"created_at":"Tue - Nov 25 04:08:26 +0000 2014","favourites_count":5467,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":954,"lang":null,"status":{"created_at":"Tue - Mar 08 04:00:23 +0000 2022","id":1501045136993701890,"id_str":"1501045136993701890","text":"@Jim_Jordan - Good greif!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1500938259635052545,"in_reply_to_status_id_str":"1500938259635052545","in_reply_to_user_id":18166778,"in_reply_to_user_id_str":"18166778","in_reply_to_screen_name":"Jim_Jordan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/827029907620364289\/b9n1Uqo3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/827029907620364289\/b9n1Uqo3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891646839\/1486014082","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":788239794,"id_str":"788239794","name":"Cult45 - exorcist","screen_name":"N95MagatMask","location":"P-town","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":129,"listed_count":0,"created_at":"Wed - Aug 29 01:19:53 +0000 2012","favourites_count":489,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Fri - Jan 01 19:45:40 +0000 2021","id":1345093855352291332,"id_str":"1345093855352291332","text":"@realDonaldTrump - Authoritarian game show hosts are so last year.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1345088187811700748,"in_reply_to_status_id_str":"1345088187811700748","in_reply_to_user_id":25073877,"in_reply_to_user_id_str":"25073877","in_reply_to_screen_name":"realDonaldTrump","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325460572419235840\/_vU-vd9r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325460572419235840\/_vU-vd9r_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3134016488,"id_str":"3134016488","name":"Margaret - Danuser","screen_name":"margaretdanuser","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":791,"listed_count":0,"created_at":"Fri - Apr 03 03:24:50 +0000 2015","favourites_count":1096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/816057741278117892\/Jy83FNc4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/816057741278117892\/Jy83FNc4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3134016488\/1483398549","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1634664528,"id_str":"1634664528","name":"Neil - Masaquel","screen_name":"amasaquel","location":"San Francisco, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":370,"listed_count":0,"created_at":"Wed - Jul 31 05:41:56 +0000 2013","favourites_count":5681,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698017507223871489\/QjZCuhM5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698017507223871489\/QjZCuhM5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1634664528\/1455256316","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":153140376,"id_str":"153140376","name":"John - Flynn","screen_name":"PolicyLogicAz","location":"","description":"PolicyLogic - is a government affairs and consulting firm which implements results driven - strategies for Arizona fire, EMS and fire based ambulance services","url":"http:\/\/t.co\/4lrcmRgjBV","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4lrcmRgjBV","expanded_url":"http:\/\/www.policylogicaz.com","display_url":"policylogicaz.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":true,"followers_count":221,"friends_count":343,"listed_count":2,"created_at":"Mon - Jun 07 19:57:47 +0000 2010","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2235860606\/John_Flynn_1740_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2235860606\/John_Flynn_1740_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":249849141,"id_str":"249849141","name":"Taylor - Senatore","screen_name":"TaylorSenatore","location":"New York City","description":"Dad, - Wine Guru, Political Junkie, Gentleman of Leisure. VOTE!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":203,"friends_count":178,"listed_count":31,"created_at":"Wed - Feb 09 22:29:36 +0000 2011","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1014147511223771136\/LWtC1LUU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1014147511223771136\/LWtC1LUU_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1012581210508484608,"id_str":"1012581210508484608","name":"Abid - Arwar","screen_name":"AbidArwar","location":"in imaginative world","description":"If - you can stay positive in a negative situation, you win... firm believes in - the Humanity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":4,"listed_count":1,"created_at":"Fri - Jun 29 06:19:08 +0000 2018","favourites_count":5832,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1505,"lang":null,"status":{"created_at":"Wed - Mar 02 09:53:42 +0000 2022","id":1498959724867305475,"id_str":"1498959724867305475","text":"Say - no to war ,#Everyoneslivesmatter \n#no_war","truncated":false,"entities":{"hashtags":[{"text":"Everyoneslivesmatter","indices":[15,36]},{"text":"no_war","indices":[38,45]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461910970058563586\/nQ6oVtHE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461910970058563586\/nQ6oVtHE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012581210508484608\/1637569687","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2333381767,"id_str":"2333381767","name":"Kase - KABAALU","screen_name":"KABAALUKase","location":"Mmengo, Kampala","description":"\ud83d\ude4f\ud83d\udcd6\ud83d\ude07Mt.16:26; - Lk.9:25; Mk.8:36","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":136,"friends_count":5000,"listed_count":2,"created_at":"Sat - Feb 08 12:03:08 +0000 2014","favourites_count":9759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":69,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498550337401200643\/E-9x3D5n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498550337401200643\/E-9x3D5n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333381767\/1613792893","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18534241,"id_str":"18534241","name":"Hugh - Paisley","screen_name":"hughpaisley","location":"Toronto, Ontario","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":142,"listed_count":0,"created_at":"Thu - Jan 01 19:48:55 +0000 2009","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Sun - Sep 05 03:35:15 +0000 2021","id":1434359443777540101,"id_str":"1434359443777540101","text":"@JudyWoodruff - In our house in Canada we only watch The News Hour for news. However we don\u2019t - call it The News Hour -\u2026 https:\/\/t.co\/8PZHulw1C8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JudyWoodruff","name":"Judy - Woodruff","id":48144950,"id_str":"48144950","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/8PZHulw1C8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1434359443777540101","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1434218967086911497,"in_reply_to_status_id_str":"1434218967086911497","in_reply_to_user_id":48144950,"in_reply_to_user_id_str":"48144950","in_reply_to_screen_name":"JudyWoodruff","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23399379,"id_str":"23399379","name":"Carolyn - Brown","screen_name":"cbrown3706","location":"Wisconsin, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":636,"listed_count":0,"created_at":"Mon - Mar 09 03:59:05 +0000 2009","favourites_count":1878,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969241266444681216\/kMZgV2MM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969241266444681216\/kMZgV2MM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23399379\/1519920302","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":94277229,"id_str":"94277229","name":"chet - sharma","screen_name":"csharma75","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":343,"listed_count":4,"created_at":"Thu - Dec 03 07:13:50 +0000 2009","favourites_count":9110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1112,"lang":null,"status":{"created_at":"Tue - Dec 21 12:16:55 +0000 2021","id":1473266227560726541,"id_str":"1473266227560726541","text":"@lofigirl - Love this channel!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lofigirl","name":"Lofi - Girl","id":3165311079,"id_str":"3165311079","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1473241070687379457,"in_reply_to_status_id_str":"1473241070687379457","in_reply_to_user_id":3165311079,"in_reply_to_user_id_str":"3165311079","in_reply_to_screen_name":"lofigirl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":766112755497758721,"id_str":"766112755497758721","name":"Leslie - Batchelor","screen_name":"LeslieBatch","location":"Oklahoma City, OK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":58,"friends_count":396,"listed_count":0,"created_at":"Thu - Aug 18 03:21:29 +0000 2016","favourites_count":7278,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":372,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1001217148323319808\/Jxm3qMVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1001217148323319808\/Jxm3qMVV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766112755497758721\/1527543745","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256891625474789378,"id_str":"1256891625474789378","name":"V","screen_name":"dancingquokka","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":75,"listed_count":0,"created_at":"Sun - May 03 10:21:41 +0000 2020","favourites_count":77,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Sep 14 23:19:45 +0000 2021","id":1437919024000774153,"id_str":"1437919024000774153","text":"#MetGala - this and Met Gala that, but no one\u2019s asking the real questions \ud83d\ude14\n\nDid - Blake Lively\u2019s dress match the carpet again?","truncated":false,"entities":{"hashtags":[{"text":"MetGala","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256892130720722944\/so1Fx6fv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256892130720722944\/so1Fx6fv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":488952043,"id_str":"488952043","name":"e-jewl","screen_name":"alphazoid","location":"Far - far western Ky. ","description":"writer farmer painter poet cook sister mom - & love","url":"https:\/\/t.co\/0M9bNhDofe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0M9bNhDofe","expanded_url":"http:\/\/outcropping.blogspot.com","display_url":"outcropping.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":300,"listed_count":0,"created_at":"Sat - Feb 11 01:13:24 +0000 2012","favourites_count":891,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":342,"lang":null,"status":{"created_at":"Sun - Mar 13 01:17:22 +0000 2022","id":1502816053486751746,"id_str":"1502816053486751746","text":"@StuckInRedMO - @StephanieNOlson I did the same thing last year. We had a bottom line price - until time to sign papers\u2026 https:\/\/t.co\/3MwF945aqu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StuckInRedMO","name":"Tax - The New Robber Barons","id":566607389,"id_str":"566607389","indices":[0,13]},{"screen_name":"StephanieNOlson","name":"\ud83c\udf39 - Stephanie Nadi Olson","id":973360384404086784,"id_str":"973360384404086784","indices":[14,30]}],"urls":[{"url":"https:\/\/t.co\/3MwF945aqu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502816053486751746","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502771140527280134,"in_reply_to_status_id_str":"1502771140527280134","in_reply_to_user_id":566607389,"in_reply_to_user_id_str":"566607389","in_reply_to_screen_name":"StuckInRedMO","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1327795893307904005\/b6x2u0vK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1327795893307904005\/b6x2u0vK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488952043\/1605406185","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":528921314,"id_str":"528921314","name":"Anne - Herbert","screen_name":"AnneHerbert1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":311,"listed_count":0,"created_at":"Sun - Mar 18 23:03:51 +0000 2012","favourites_count":5707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2423,"lang":null,"status":{"created_at":"Thu - Mar 24 14:35:02 +0000 2022","id":1507003058399563778,"id_str":"1507003058399563778","text":"RT - @OccupyDemocrats: In this powerful photo, Judge Ketanji Brown Jackson gets - a kiss from her husband after being subjected to a barrage of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:05:19 +0000 2022","id":1506814387826446337,"id_str":"1506814387826446337","text":"In - this powerful photo, Judge Ketanji Brown Jackson gets a kiss from her husband - after being subjected to a barrage\u2026 https:\/\/t.co\/uouxjoSqv9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uouxjoSqv9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506814387826446337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11373,"favorite_count":46585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11373,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154973005602263040,"id_str":"1154973005602263040","name":"Dr.Terry - Stawar","screen_name":"TStawar","location":"Southern Indiana","description":"Adjunct - Faculty Psychology","url":"https:\/\/t.co\/6E5r7iwBmw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6E5r7iwBmw","expanded_url":"http:\/\/www.planetterry.wordpress.com","display_url":"planetterry.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":716,"friends_count":4478,"listed_count":1,"created_at":"Sat - Jul 27 04:33:17 +0000 2019","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":705,"lang":null,"status":{"created_at":"Sun - Mar 13 00:07:33 +0000 2022","id":1502798483203538950,"id_str":"1502798483203538950","text":"Pulling - my kid out of home school. I don\u2019t like what they\u2019re teaching there.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1154973447652610048\/xDFERAjA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1154973447652610048\/xDFERAjA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154973005602263040\/1564204598","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":83598672,"id_str":"83598672","name":"Damon - Buffum","screen_name":"dabuffum","location":"New York, USA","description":"Sales - Director @ ePlus, Member of Board of Education, Father, Grandfather, Husband, - Yankee Fan, Tech, Crypto, My Tweets are MY OWN OPINION","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1000,"friends_count":3436,"listed_count":44,"created_at":"Mon - Oct 19 13:26:34 +0000 2009","favourites_count":51612,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24681,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607699513730584578\/P42ElUvP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607699513730584578\/P42ElUvP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83598672\/1535860880","profile_link_color":"17406C","profile_sidebar_border_color":"2280A9","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084956243079376896,"id_str":"1084956243079376896","name":"Brad - Houser","screen_name":"Brad_H404","location":"Atlanta, GA","description":"Husband, - Dog Dad, Gay, and Lover of Day Drinking. Black Lives Matter, Trans Lives Matter! - Biden\/Harris 2020. Turn GA Blue!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":1207,"listed_count":0,"created_at":"Mon - Jan 14 23:31:40 +0000 2019","favourites_count":4581,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Sat - Mar 26 00:46:01 +0000 2022","id":1507519206249619460,"id_str":"1507519206249619460","text":"@CMargaronis - @saymaysmith @PettyLupone Mika Brezinski the Megan McCain of the left! If - I hear about her father one\u2026 https:\/\/t.co\/Y3jluTvrtK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CMargaronis","name":"\ud83c\uddfa\ud83c\uddf8\ud83c\udf3b\ud83c\uddfa\ud83c\udde6 - Thee Catherine #ConfirmKBJ","id":1852375052,"id_str":"1852375052","indices":[0,12]},{"screen_name":"saymaysmith","name":"Sarah - Margaret Smith","id":2203893414,"id_str":"2203893414","indices":[13,25]},{"screen_name":"PettyLupone","name":"Renee","id":3260204767,"id_str":"3260204767","indices":[26,38]}],"urls":[{"url":"https:\/\/t.co\/Y3jluTvrtK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507519206249619460","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507228927177072641,"in_reply_to_status_id_str":"1507228927177072641","in_reply_to_user_id":1852375052,"in_reply_to_user_id_str":"1852375052","in_reply_to_screen_name":"CMargaronis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1084956624337420288\/HntFlH2P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084956624337420288\/HntFlH2P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1084956243079376896\/1568931214","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2851195783,"id_str":"2851195783","name":"Krista","screen_name":"MyUsner","location":"Louisiana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":107,"listed_count":0,"created_at":"Fri - Oct 10 21:00:49 +0000 2014","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Fri - Apr 10 13:35:51 +0000 2015","id":586522986905231360,"id_str":"586522986905231360","text":"Motivation - is your best health and fitness tool\n#motivate https:\/\/t.co\/sQh0UEZJTT","truncated":false,"entities":{"hashtags":[{"text":"motivate","indices":[48,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sQh0UEZJTT","expanded_url":"https:\/\/instagram.com\/p\/1S9o33tAUi\/","display_url":"instagram.com\/p\/1S9o33tAUi\/","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927573889282166785\/u7EafepO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927573889282166785\/u7EafepO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4787466554,"id_str":"4787466554","name":"Terry - G.","screen_name":"TerryGar5977","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":387,"listed_count":0,"created_at":"Wed - Jan 20 06:43:04 +0000 2016","favourites_count":17108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Thu - Oct 08 15:04:01 +0000 2020","id":1314220009351122944,"id_str":"1314220009351122944","text":"@dsnowdy - @babydirewolf @RagingLibNana @Acosta Dave you\u2019re right. He received Regeneron. - They are antibodies. It\u2019s a\u2026 https:\/\/t.co\/8PCnmIFG8F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dsnowdy","name":"Dave - Snowdy","id":38529094,"id_str":"38529094","indices":[0,8]},{"screen_name":"babydirewolf","name":"\ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83e\udd84 - Nymeria \ud83e\udd84\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":885937130685554691,"id_str":"885937130685554691","indices":[9,22]},{"screen_name":"RagingLibNana","name":"Nana - G From Hellberta-I Stand With Ukraine","id":3383983353,"id_str":"3383983353","indices":[23,37]},{"screen_name":"Acosta","name":"Jim - Acosta","id":22771961,"id_str":"22771961","indices":[38,45]}],"urls":[{"url":"https:\/\/t.co\/8PCnmIFG8F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1314220009351122944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1314212225914040322,"in_reply_to_status_id_str":"1314212225914040322","in_reply_to_user_id":38529094,"in_reply_to_user_id_str":"38529094","in_reply_to_screen_name":"dsnowdy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1187067518935941120\/fxlqkzuc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1187067518935941120\/fxlqkzuc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4787466554\/1453565721","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307210500774612992,"id_str":"1307210500774612992","name":"Dr - Huma Zaidi","screen_name":"DrHumaZaidi","location":"","description":"Humanist - I Doctor I Healthcare Quality Improvement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":2394,"listed_count":0,"created_at":"Sat - Sep 19 06:51:03 +0000 2020","favourites_count":227,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"status":{"created_at":"Mon - Mar 21 03:27:45 +0000 2022","id":1505747966715658241,"id_str":"1505747966715658241","text":"RT - @Strandjunker: If you are still wearing a mask when you go out, please retweet - this status. I would just like to see how much common sen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Strandjunker","name":"Andrea - Junker","id":1866938882,"id_str":"1866938882","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 17:00:02 +0000 2022","id":1505227609419956233,"id_str":"1505227609419956233","text":"If - you are still wearing a mask when you go out, please retweet this status. - I would just like to see how much comm\u2026 https:\/\/t.co\/fGTjE25pXd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fGTjE25pXd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505227609419956233","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49488,"favorite_count":51464,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":49488,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307211042036936704\/mS67jZt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307211042036936704\/mS67jZt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307210500774612992\/1646650455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220498987163291650,"id_str":"1220498987163291650","name":"Jaqueline","screen_name":"Jaqueli29883162","location":"","description":"Autenticidade","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":178,"listed_count":0,"created_at":"Fri - Jan 24 00:10:51 +0000 2020","favourites_count":7882,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1233958541951561729,"id_str":"1233958541951561729","name":"lauren - \u2728","screen_name":"laurenluna808","location":"","description":"she taste - like weed and nattys, her ass be fatty \ud83d\ude29","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":19,"listed_count":0,"created_at":"Sun - Mar 01 03:33:45 +0000 2020","favourites_count":468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":64,"lang":null,"status":{"created_at":"Sat - Mar 12 08:15:19 +0000 2022","id":1502558846237118464,"id_str":"1502558846237118464","text":"people - watching at the club should be a sport","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233958718863101952\/yDEgEvFd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233958718863101952\/yDEgEvFd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233958541951561729\/1591496429","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198911552319053825,"id_str":"1198911552319053825","name":"Ugochukwublaise1","screen_name":"Ugochukwublais3","location":"Owerri, - Nigeria","description":"rationalistic person","url":"https:\/\/t.co\/zMtfn2BdlK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zMtfn2BdlK","expanded_url":"http:\/\/www.bobdeblaise.com","display_url":"bobdeblaise.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":201,"friends_count":2712,"listed_count":0,"created_at":"Mon - Nov 25 10:29:40 +0000 2019","favourites_count":20789,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":472,"lang":null,"status":{"created_at":"Thu - Dec 10 11:00:07 +0000 2020","id":1336989063212130307,"id_str":"1336989063212130307","text":"@haylesoflagos - I can fuck ur pretty pussy for 15mintes without releasing","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"haylesoflagos","name":"\ud835\udc07\ud835\udc1a\ud835\udc32\ud835\udc25\ud835\udc1e\ud835\udc2c - \ud83c\udf41\u2795","id":3301589511,"id_str":"3301589511","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1336949837934235648,"in_reply_to_status_id_str":"1336949837934235648","in_reply_to_user_id":3301589511,"in_reply_to_user_id_str":"3301589511","in_reply_to_screen_name":"haylesoflagos","geo":null,"coordinates":null,"place":{"id":"00dfa50d5c526a40","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00dfa50d5c526a40.json","place_type":"city","name":"Owerri","full_name":"Owerri, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[6.9820783,5.4522716],[7.0775981,5.4522716],[7.0775981,5.5448138],[6.9820783,5.5448138]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268597110456365056\/8r2o-Arf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268597110456365056\/8r2o-Arf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198911552319053825\/1591292094","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1869584533,"id_str":"1869584533","name":"frank - schwab","screen_name":"FrankSchwab71","location":"Kitchener ON Canada","description":"Blue - Jays fan animal lover and Proud Canadian.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":89,"listed_count":4,"created_at":"Sun - Sep 15 23:30:51 +0000 2013","favourites_count":33489,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3704,"lang":null,"status":{"created_at":"Sat - Mar 26 02:37:54 +0000 2022","id":1507547361865781252,"id_str":"1507547361865781252","text":"RT - @AmazingNature00: National Geographic Picture of The Year. \nBlack images - are shadows of zebras. Zoom in and you will see zebras.\ud83e\udd93 https:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmazingNature00","name":"Amazing - Nature","id":1231288602912489472,"id_str":"1231288602912489472","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:30:28 +0000 2022","id":1507152902103924736,"id_str":"1507152902103924736","text":"National - Geographic Picture of The Year. \nBlack images are shadows of zebras. Zoom - in and you will see zebras.\ud83e\udd93 https:\/\/t.co\/d1ArkZ1ZpD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507152899192893446,"id_str":"1507152899192893446","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7k5qXsAYzMcE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7k5qXsAYzMcE.jpg","url":"https:\/\/t.co\/d1ArkZ1ZpD","display_url":"pic.twitter.com\/d1ArkZ1ZpD","expanded_url":"https:\/\/twitter.com\/AmazingNature00\/status\/1507152902103924736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":720,"h":888,"resize":"fit"},"large":{"w":720,"h":888,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507152899192893446,"id_str":"1507152899192893446","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7k5qXsAYzMcE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7k5qXsAYzMcE.jpg","url":"https:\/\/t.co\/d1ArkZ1ZpD","display_url":"pic.twitter.com\/d1ArkZ1ZpD","expanded_url":"https:\/\/twitter.com\/AmazingNature00\/status\/1507152902103924736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":551,"h":680,"resize":"fit"},"medium":{"w":720,"h":888,"resize":"fit"},"large":{"w":720,"h":888,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2853,"favorite_count":15668,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2853,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C1EBDF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244763131915665408\/icFfdz_g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244763131915665408\/icFfdz_g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1869584533\/1631391845","profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21829528,"id_str":"21829528","name":"Jane","screen_name":"janeft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":307,"listed_count":0,"created_at":"Wed - Feb 25 03:07:28 +0000 2009","favourites_count":8549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":211,"lang":null,"status":{"created_at":"Thu - Feb 11 04:15:07 +0000 2021","id":1359717575647780864,"id_str":"1359717575647780864","text":"Just - saw your statement on Fox. What is wrong with you?\nTrump encouraged violence - for four years.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2737002304\/d3456b0a4b8936999076dbf36c2c4d55_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2737002304\/d3456b0a4b8936999076dbf36c2c4d55_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":335505145,"id_str":"335505145","name":"Carolina - Revelo MD MSc","screen_name":"Caro_Revmd","location":"SC","description":"No - more plastic save the planet. Science behind beauty Derm Research - physician.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":407,"listed_count":0,"created_at":"Thu - Jul 14 19:52:23 +0000 2011","favourites_count":1802,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":407,"lang":null,"status":{"created_at":"Sat - Mar 12 14:05:29 +0000 2022","id":1502646969369767937,"id_str":"1502646969369767937","text":"@MountPleasantPD - At what time it will be open ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MountPleasantPD","name":"Mount - Pleasant PD","id":24186319,"id_str":"24186319","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1502630261334368264,"in_reply_to_status_id_str":"1502630261334368264","in_reply_to_user_id":24186319,"in_reply_to_user_id_str":"24186319","in_reply_to_screen_name":"MountPleasantPD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459699106767638531\/ZFHGJ9FY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459699106767638531\/ZFHGJ9FY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335505145\/1646876492","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293344214076411904,"id_str":"1293344214076411904","name":"Charese - Fruge","screen_name":"ChareseFruge","location":"Las Vegas","description":"Die - Hard Saints Fan","url":"https:\/\/t.co\/JQfWz37v4k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JQfWz37v4k","expanded_url":"https:\/\/linktr.ee\/Mcmedia1","display_url":"linktr.ee\/Mcmedia1","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":324,"friends_count":772,"listed_count":3,"created_at":"Wed - Aug 12 00:31:29 +0000 2020","favourites_count":13358,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3813,"lang":null,"status":{"created_at":"Sat - Mar 26 06:13:15 +0000 2022","id":1507601555586957314,"id_str":"1507601555586957314","text":"They - bottle this shit! @ashleylanaux https:\/\/t.co\/ebgqbpBPGl","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ashleylanaux","name":"Ashley - Lanaux","id":36793364,"id_str":"36793364","indices":[23,36]}],"urls":[{"url":"https:\/\/t.co\/ebgqbpBPGl","expanded_url":"https:\/\/www.instagram.com\/p\/CbjnrB2uEs0\/?utm_medium=twitter","display_url":"instagram.com\/p\/CbjnrB2uEs0\/\u2026","indices":[37,60]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1406392026485067777\/Zy5FFu-Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1406392026485067777\/Zy5FFu-Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1293344214076411904\/1641427466","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16844276,"id_str":"16844276","name":"Liz - Kenigsberg","screen_name":"LizKenigsberg","location":"Washington, DC","description":"SVP - @SKDKnick. | Fmr spokeslady for @SenatorShaheen and @DrRichCarmona.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":418,"friends_count":1159,"listed_count":9,"created_at":"Sat - Oct 18 22:33:09 +0000 2008","favourites_count":2544,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1108,"lang":null,"status":{"created_at":"Sat - Nov 07 19:55:00 +0000 2020","id":1325164873345462273,"id_str":"1325164873345462273","text":"\ud83e\udd70 - https:\/\/t.co\/OFpsM7Zw7B","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OFpsM7Zw7B","expanded_url":"https:\/\/twitter.com\/Lesdoggg\/status\/1325120630543409153","display_url":"twitter.com\/Lesdoggg\/statu\u2026","indices":[2,25]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1325120630543409153,"quoted_status_id_str":"1325120630543409153","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301518950593974275\/K-YuJSQx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301518950593974275\/K-YuJSQx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16844276\/1599141732","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":804867272175022080,"id_str":"804867272175022080","name":"muski - yusof","screen_name":"muskiyusof2","location":"Ota-ku, Tokyo","description":"nasi - lemak","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":586,"friends_count":4702,"listed_count":7,"created_at":"Sat - Dec 03 01:58:06 +0000 2016","favourites_count":6390,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2261,"lang":null,"status":{"created_at":"Sat - Mar 26 00:29:17 +0000 2022","id":1507514993482530819,"id_str":"1507514993482530819","text":"https:\/\/t.co\/YMlEKOUk4v","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507514985387560964,"id_str":"1507514985387560964","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvE5F2akAQqais.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvE5F2akAQqais.jpg","url":"https:\/\/t.co\/YMlEKOUk4v","display_url":"pic.twitter.com\/YMlEKOUk4v","expanded_url":"https:\/\/twitter.com\/muskiyusof2\/status\/1507514993482530819\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":849,"h":1200,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":1241,"h":1754,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507514985387560964,"id_str":"1507514985387560964","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvE5F2akAQqais.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvE5F2akAQqais.jpg","url":"https:\/\/t.co\/YMlEKOUk4v","display_url":"pic.twitter.com\/YMlEKOUk4v","expanded_url":"https:\/\/twitter.com\/muskiyusof2\/status\/1507514993482530819\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":849,"h":1200,"resize":"fit"},"small":{"w":481,"h":680,"resize":"fit"},"large":{"w":1241,"h":1754,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130257406825381895\/3_0eiN7s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130257406825381895\/3_0eiN7s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":701265949,"id_str":"701265949","name":"Brian - Baran","screen_name":"BrianBaran","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":1805,"listed_count":1,"created_at":"Tue - Jul 17 15:39:07 +0000 2012","favourites_count":417,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":303,"lang":null,"status":{"created_at":"Mon - Feb 28 19:02:42 +0000 2022","id":1498373110684389383,"id_str":"1498373110684389383","text":"RT - @Ol_TimeFootball: Buddy Ryan\nThe 46 Defense \nDPOY Mike Singletary\nAnd a - bunch of hits that would get you suspended today.\n#DaBears https\u2026","truncated":false,"entities":{"hashtags":[{"text":"DaBears","indices":[125,133]}],"symbols":[],"user_mentions":[{"screen_name":"Ol_TimeFootball","name":"Old - Time Football \ud83c\udfc8","id":1087084293212594177,"id_str":"1087084293212594177","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 04:53:13 +0000 2022","id":1498159331237187584,"id_str":"1498159331237187584","text":"Buddy - Ryan\nThe 46 Defense \nDPOY Mike Singletary\nAnd a bunch of hits that would - get you suspended today.\n#DaBears https:\/\/t.co\/mBYXJjxiwj","truncated":false,"entities":{"hashtags":[{"text":"DaBears","indices":[104,112]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1498158564669419524,"id_str":"1498158564669419524","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498158564669419524\/pu\/img\/B2FKqxmPMWr9ni0b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498158564669419524\/pu\/img\/B2FKqxmPMWr9ni0b.jpg","url":"https:\/\/t.co\/mBYXJjxiwj","display_url":"pic.twitter.com\/mBYXJjxiwj","expanded_url":"https:\/\/twitter.com\/Ol_TimeFootball\/status\/1498159331237187584\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498158564669419524,"id_str":"1498158564669419524","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498158564669419524\/pu\/img\/B2FKqxmPMWr9ni0b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1498158564669419524\/pu\/img\/B2FKqxmPMWr9ni0b.jpg","url":"https:\/\/t.co\/mBYXJjxiwj","display_url":"pic.twitter.com\/mBYXJjxiwj","expanded_url":"https:\/\/twitter.com\/Ol_TimeFootball\/status\/1498159331237187584\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":127541,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498158564669419524\/pu\/vid\/640x480\/VFLVt4AJ8pwAqX-2.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498158564669419524\/pu\/vid\/480x360\/S6wN4h-k3cnuCV5M.mp4?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498158564669419524\/pu\/vid\/360x270\/PqoyUoJJiBHF3jdA.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1498158564669419524\/pu\/pl\/Pc5wamkyM0O-_Y7o.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":472,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":90,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2406193643\/Bears_pic._normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2406193643\/Bears_pic._normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":706416668,"id_str":"706416668","name":"Natalie - Hill","screen_name":"Natalie26487725","location":"St Louis, MO","description":"Let - us march on til victory is won ...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":923,"friends_count":3577,"listed_count":16,"created_at":"Fri - Jul 20 04:20:59 +0000 2012","favourites_count":108149,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":66878,"lang":null,"status":{"created_at":"Sat - Mar 26 02:18:55 +0000 2022","id":1507542584364838922,"id_str":"1507542584364838922","text":"\ud83d\ude2d\"\u2018We - are lost\u2019: Yemenis face eighth year of struggle as war grinds on\" here: - https:\/\/t.co\/PWgBkA8iOh \nTo read it o\u2026 https:\/\/t.co\/ylunLmZcRb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PWgBkA8iOh","expanded_url":"https:\/\/share.smartnews.com\/cokTp","display_url":"share.smartnews.com\/cokTp","indices":[78,101]},{"url":"https:\/\/t.co\/ylunLmZcRb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507542584364838922","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/980801603673427970\/mejULgPu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/980801603673427970\/mejULgPu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/706416668\/1618076524","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35851802,"id_str":"35851802","name":"Krissi - Jimroglou","screen_name":"kjimroglou","location":"Washington, DC","description":"Sr. - EVP 617MediaGroup | former @WorkingAmerica @seiu @pewtrusts | lesbian feminist - | #1u | she\/her | words my own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":713,"friends_count":4976,"listed_count":16,"created_at":"Mon - Apr 27 20:33:24 +0000 2009","favourites_count":4539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4499,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:03 +0000 2022","id":1507551928259125249,"id_str":"1507551928259125249","text":"RT - @IndieWire: \u2018Dykes, Camera, Action!\u2019 Review: A Peppy, If Pithy History - of Lesbian Cinema https:\/\/t.co\/OUaUVJmdvb https:\/\/t.co\/SCtHfik8dB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IndieWire","name":"IndieWire","id":13992132,"id_str":"13992132","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/OUaUVJmdvb","expanded_url":"https:\/\/bit.ly\/2LA4yv2","display_url":"bit.ly\/2LA4yv2","indices":[92,115]}],"media":[{"id":1261353734636011521,"id_str":"1261353734636011521","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","url":"https:\/\/t.co\/SCtHfik8dB","display_url":"pic.twitter.com\/SCtHfik8dB","expanded_url":"https:\/\/twitter.com\/IndieWire\/status\/1261551960244645888\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":380,"resize":"fit"},"large":{"w":1536,"h":859,"resize":"fit"},"medium":{"w":1200,"h":671,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1261551960244645888,"source_status_id_str":"1261551960244645888","source_user_id":13992132,"source_user_id_str":"13992132"}]},"extended_entities":{"media":[{"id":1261353734636011521,"id_str":"1261353734636011521","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","url":"https:\/\/t.co\/SCtHfik8dB","display_url":"pic.twitter.com\/SCtHfik8dB","expanded_url":"https:\/\/twitter.com\/IndieWire\/status\/1261551960244645888\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":380,"resize":"fit"},"large":{"w":1536,"h":859,"resize":"fit"},"medium":{"w":1200,"h":671,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1261551960244645888,"source_status_id_str":"1261551960244645888","source_user_id":13992132,"source_user_id_str":"13992132"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - May 16 07:00:00 +0000 2020","id":1261551960244645888,"id_str":"1261551960244645888","text":"\u2018Dykes, - Camera, Action!\u2019 Review: A Peppy, If Pithy History of Lesbian Cinema - https:\/\/t.co\/OUaUVJmdvb https:\/\/t.co\/SCtHfik8dB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OUaUVJmdvb","expanded_url":"https:\/\/bit.ly\/2LA4yv2","display_url":"bit.ly\/2LA4yv2","indices":[77,100]}],"media":[{"id":1261353734636011521,"id_str":"1261353734636011521","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","url":"https:\/\/t.co\/SCtHfik8dB","display_url":"pic.twitter.com\/SCtHfik8dB","expanded_url":"https:\/\/twitter.com\/IndieWire\/status\/1261551960244645888\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":380,"resize":"fit"},"large":{"w":1536,"h":859,"resize":"fit"},"medium":{"w":1200,"h":671,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1261353734636011521,"id_str":"1261353734636011521","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EYE6iekXgAEYOzH.png","url":"https:\/\/t.co\/SCtHfik8dB","display_url":"pic.twitter.com\/SCtHfik8dB","expanded_url":"https:\/\/twitter.com\/IndieWire\/status\/1261551960244645888\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":380,"resize":"fit"},"large":{"w":1536,"h":859,"resize":"fit"},"medium":{"w":1200,"h":671,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":58,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274374384648687616\/73A7WEt0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274374384648687616\/73A7WEt0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35851802\/1592669726","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17156993,"id_str":"17156993","name":"tweetdeb","screen_name":"tweetdeb","location":"CT","description":"Amateur - coffee roaster...Professional coffee cupper...","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":22,"friends_count":1276,"listed_count":0,"created_at":"Tue - Nov 04 14:36:45 +0000 2008","favourites_count":3777,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":744,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278121215077613574\/oe83YGIe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278121215077613574\/oe83YGIe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17156993\/1593562776","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3536543537,"id_str":"3536543537","name":"A - Friz","screen_name":"adomfriz","location":"Haddonfield, NJ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":911,"listed_count":0,"created_at":"Thu - Sep 03 18:20:24 +0000 2015","favourites_count":941,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":157,"lang":null,"status":{"created_at":"Wed - Mar 23 21:16:24 +0000 2022","id":1506741677242957833,"id_str":"1506741677242957833","text":"@vvesl - ODB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"vvesl","name":"W - E S","id":64892484,"id_str":"64892484","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506340446292828169,"in_reply_to_status_id_str":"1506340446292828169","in_reply_to_user_id":64892484,"in_reply_to_user_id_str":"64892484","in_reply_to_screen_name":"vvesl","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1210759415642513408\/ys9mk6Ey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1210759415642513408\/ys9mk6Ey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3536543537\/1549937561","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":12273202,"id_str":"12273202","name":"Alan - Brightman","screen_name":"abrightman","location":"New York","description":"Founder - of Apple\u2019s Accessibility Team (1985) and Yahoo\u2019s Accessibility Lab - (2004). Disability. Accessibility. Technology.","url":"https:\/\/t.co\/Od2w9eMXWK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Od2w9eMXWK","expanded_url":"http:\/\/bit.ly\/6Tq6Sh","display_url":"bit.ly\/6Tq6Sh","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":567,"friends_count":1268,"listed_count":39,"created_at":"Tue - Jan 15 14:41:42 +0000 2008","favourites_count":579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":269,"lang":null,"status":{"created_at":"Thu - Feb 03 03:13:43 +0000 2022","id":1489074595105853442,"id_str":"1489074595105853442","text":"@JaMorant - Perfect.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JaMorant","name":"Ja - Morant","id":3165563219,"id_str":"3165563219","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487325179827130371,"in_reply_to_status_id_str":"1487325179827130371","in_reply_to_user_id":3165563219,"in_reply_to_user_id_str":"3165563219","in_reply_to_screen_name":"JaMorant","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/108784356\/DisabilityLand_Cover_240dpi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/108784356\/DisabilityLand_Cover_240dpi_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4197811911,"id_str":"4197811911","name":"BrianS88","screen_name":"Brian278200","location":"West - Virginia, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":64,"listed_count":0,"created_at":"Mon - Nov 16 00:21:06 +0000 2015","favourites_count":846,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":352,"lang":null,"status":{"created_at":"Fri - Dec 24 01:25:47 +0000 2021","id":1474189528692834306,"id_str":"1474189528692834306","text":"@JoeBiden - Wow ten cents!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1474188578758533123,"in_reply_to_status_id_str":"1474188578758533123","in_reply_to_user_id":939091,"in_reply_to_user_id_str":"939091","in_reply_to_screen_name":"JoeBiden","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311874111631765505\/yCybrLmf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311874111631765505\/yCybrLmf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4197811911\/1601609971","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268708542049144832,"id_str":"1268708542049144832","name":"MandyP","screen_name":"MandyP18975528","location":"","description":"Truth","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":70,"friends_count":141,"listed_count":0,"created_at":"Fri - Jun 05 00:57:56 +0000 2020","favourites_count":5066,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":847,"lang":null,"status":{"created_at":"Sun - Feb 27 07:36:28 +0000 2022","id":1497838024289366017,"id_str":"1497838024289366017","text":"@LoriJSh - @laurenboebert \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LoriJSh","name":"LoriLvsGB\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":32889851,"id_str":"32889851","indices":[0,8]},{"screen_name":"laurenboebert","name":"Lauren - Boebert","id":1201670995435646976,"id_str":"1201670995435646976","indices":[9,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497608702559338499,"in_reply_to_status_id_str":"1497608702559338499","in_reply_to_user_id":32889851,"in_reply_to_user_id_str":"32889851","in_reply_to_screen_name":"LoriJSh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351889748030271489\/0IcZzL8a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351889748030271489\/0IcZzL8a_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306079351172145155,"id_str":"1306079351172145155","name":"Ashlav","screen_name":"ashlav556","location":"","description":"\ud83d\udc8b\ud83c\udf08\ud83e\ude7a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1400,"listed_count":2,"created_at":"Wed - Sep 16 03:56:09 +0000 2020","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Fri - Nov 19 03:49:04 +0000 2021","id":1461542012474302465,"id_str":"1461542012474302465","text":"RT - @ericghill: @AndrewSolender https:\/\/t.co\/6AcTrCGM6l","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ericghill","name":"seize - the diem","id":11695172,"id_str":"11695172","indices":[3,13]},{"screen_name":"AndrewSolender","name":"Andrew - Solender","id":1163618839,"id_str":"1163618839","indices":[15,30]}],"urls":[],"media":[{"id":1461531922207707139,"id_str":"1461531922207707139","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","url":"https:\/\/t.co\/6AcTrCGM6l","display_url":"pic.twitter.com\/6AcTrCGM6l","expanded_url":"https:\/\/twitter.com\/ericghill\/status\/1461531948778545157\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":238,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":238,"resize":"fit"},"large":{"w":500,"h":238,"resize":"fit"}},"source_status_id":1461531948778545157,"source_status_id_str":"1461531948778545157","source_user_id":11695172,"source_user_id_str":"11695172"}]},"extended_entities":{"media":[{"id":1461531922207707139,"id_str":"1461531922207707139","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","url":"https:\/\/t.co\/6AcTrCGM6l","display_url":"pic.twitter.com\/6AcTrCGM6l","expanded_url":"https:\/\/twitter.com\/ericghill\/status\/1461531948778545157\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":238,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":238,"resize":"fit"},"large":{"w":500,"h":238,"resize":"fit"}},"source_status_id":1461531948778545157,"source_status_id_str":"1461531948778545157","source_user_id":11695172,"source_user_id_str":"11695172","video_info":{"aspect_ratio":[250,119],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FEhniisVkAMsK5N.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 19 03:09:05 +0000 2021","id":1461531948778545157,"id_str":"1461531948778545157","text":"@AndrewSolender - https:\/\/t.co\/6AcTrCGM6l","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewSolender","name":"Andrew - Solender","id":1163618839,"id_str":"1163618839","indices":[0,15]}],"urls":[],"media":[{"id":1461531922207707139,"id_str":"1461531922207707139","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","url":"https:\/\/t.co\/6AcTrCGM6l","display_url":"pic.twitter.com\/6AcTrCGM6l","expanded_url":"https:\/\/twitter.com\/ericghill\/status\/1461531948778545157\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":238,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":238,"resize":"fit"},"large":{"w":500,"h":238,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1461531922207707139,"id_str":"1461531922207707139","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/FEhniisVkAMsK5N.jpg","url":"https:\/\/t.co\/6AcTrCGM6l","display_url":"pic.twitter.com\/6AcTrCGM6l","expanded_url":"https:\/\/twitter.com\/ericghill\/status\/1461531948778545157\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":238,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":238,"resize":"fit"},"large":{"w":500,"h":238,"resize":"fit"}},"video_info":{"aspect_ratio":[250,119],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/FEhniisVkAMsK5N.mp4"}]}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1461516134063169540,"in_reply_to_status_id_str":"1461516134063169540","in_reply_to_user_id":1163618839,"in_reply_to_user_id_str":"1163618839","in_reply_to_screen_name":"AndrewSolender","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306079547356524545\/EDZlbX2l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306079547356524545\/EDZlbX2l_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":936227874,"id_str":"936227874","name":"Skye","screen_name":"pameladeitch","location":"","description":"Here - only for good vibes\nNo DM please\nLet''s bring all our troups home.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":918,"listed_count":2,"created_at":"Fri - Nov 09 06:17:43 +0000 2012","favourites_count":2367,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2418,"lang":null,"status":{"created_at":"Sat - Mar 26 01:14:11 +0000 2022","id":1507526291540647938,"id_str":"1507526291540647938","text":"https:\/\/t.co\/iqv5kWHfVQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iqv5kWHfVQ","expanded_url":"https:\/\/www.instagram.com\/reel\/CbF_z0tFFK1\/?utm_medium=share_sheet","display_url":"instagram.com\/reel\/CbF_z0tFF\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495092361508106243\/QdAuADIu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495092361508106243\/QdAuADIu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936227874\/1353137865","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279798995364327425,"id_str":"1279798995364327425","name":"lori","screen_name":"lori13424794","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":493,"listed_count":0,"created_at":"Sun - Jul 05 15:27:34 +0000 2020","favourites_count":3191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":536,"lang":null,"status":{"created_at":"Sat - Mar 05 20:15:30 +0000 2022","id":1500203369100677123,"id_str":"1500203369100677123","text":"RT - @visegrad24: The Russian Ministry of Defense claims that it has only conducted - precision airstrikes on military facilities in Kharkiv. h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"visegrad24","name":"Visegr\u00e1d - 24","id":1222773302441148416,"id_str":"1222773302441148416","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 18:45:47 +0000 2022","id":1500180792537985028,"id_str":"1500180792537985028","text":"The - Russian Ministry of Defense claims that it has only conducted precision airstrikes - on military facilities in Kh\u2026 https:\/\/t.co\/sbZR3pqMH3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sbZR3pqMH3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500180792537985028","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":835,"favorite_count":2027,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":835,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2437744244,"id_str":"2437744244","name":"Evan - Walls","screen_name":"evanwalls_","location":"Little Rock, AR","description":"Harding - \u201822 | TNT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":429,"listed_count":1,"created_at":"Fri - Apr 11 01:18:04 +0000 2014","favourites_count":7325,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":373,"lang":null,"status":{"created_at":"Fri - Mar 25 01:50:57 +0000 2022","id":1507173159107235840,"id_str":"1507173159107235840","text":"RT - @RazorbackMBB: zig a zig ah https:\/\/t.co\/4Kk8cPyC79","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RazorbackMBB","name":"ELITE - EIGHT HOGS \ud83d\udc17","id":621254841,"id_str":"621254841","indices":[3,16]}],"urls":[],"media":[{"id":1507167378244730881,"id_str":"1507167378244730881","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","url":"https:\/\/t.co\/4Kk8cPyC79","display_url":"pic.twitter.com\/4Kk8cPyC79","expanded_url":"https:\/\/twitter.com\/RazorbackMBB\/status\/1507167477125447693\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1507167477125447693,"source_status_id_str":"1507167477125447693","source_user_id":621254841,"source_user_id_str":"621254841"}]},"extended_entities":{"media":[{"id":1507167378244730881,"id_str":"1507167378244730881","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","url":"https:\/\/t.co\/4Kk8cPyC79","display_url":"pic.twitter.com\/4Kk8cPyC79","expanded_url":"https:\/\/twitter.com\/RazorbackMBB\/status\/1507167477125447693\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1507167477125447693,"source_status_id_str":"1507167477125447693","source_user_id":621254841,"source_user_id_str":"621254841"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:28:23 +0000 2022","id":1507167477125447693,"id_str":"1507167477125447693","text":"zig - a zig ah https:\/\/t.co\/4Kk8cPyC79","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507167378244730881,"id_str":"1507167378244730881","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","url":"https:\/\/t.co\/4Kk8cPyC79","display_url":"pic.twitter.com\/4Kk8cPyC79","expanded_url":"https:\/\/twitter.com\/RazorbackMBB\/status\/1507167477125447693\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507167378244730881,"id_str":"1507167378244730881","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqIvsVVgAEnyQT.jpg","url":"https:\/\/t.co\/4Kk8cPyC79","display_url":"pic.twitter.com\/4Kk8cPyC79","expanded_url":"https:\/\/twitter.com\/RazorbackMBB\/status\/1507167477125447693\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1331,"favorite_count":6299,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"is_quote_status":false,"retweet_count":1331,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424174683142905856\/iDDVgUfS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424174683142905856\/iDDVgUfS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2437744244\/1628384525","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":880079601023590402,"id_str":"880079601023590402","name":"Richard - Cohen","screen_name":"Richard06666912","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":309,"friends_count":3166,"listed_count":0,"created_at":"Wed - Jun 28 15:05:02 +0000 2017","favourites_count":257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":318,"lang":null,"status":{"created_at":"Tue - Mar 22 13:14:06 +0000 2022","id":1506257916478861313,"id_str":"1506257916478861313","text":"@good_trouble96 - We are living what sounds very similar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"good_trouble96","name":"Maggie - \u2b50\ufe0fGood Trouble\u2b50\ufe0f","id":1339727827789213697,"id_str":"1339727827789213697","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506108187589505028,"in_reply_to_status_id_str":"1506108187589505028","in_reply_to_user_id":1339727827789213697,"in_reply_to_user_id_str":"1339727827789213697","in_reply_to_screen_name":"good_trouble96","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":55969385,"id_str":"55969385","name":"Nancy - Lanning","screen_name":"nelann","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":954,"listed_count":0,"created_at":"Sun - Jul 12 00:15:58 +0000 2009","favourites_count":186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243904346,"id_str":"243904346","name":"Valerie - Dance","screen_name":"VLDance","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":509,"listed_count":0,"created_at":"Fri - Jan 28 02:08:20 +0000 2011","favourites_count":241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - May 22 19:07:50 +0000 2020","id":1263909452148805638,"id_str":"1263909452148805638","text":"@the_sammoth - @clairecdowns Nashville - same for both!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clairecdowns","name":"Claire - Downs","id":148069486,"id_str":"148069486","indices":[13,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":822696509070196736,"id_str":"822696509070196736","name":"JackBaum","screen_name":"classical2nw","location":"","description":"Proud - progressive Dem","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":2612,"listed_count":0,"created_at":"Sat - Jan 21 06:45:07 +0000 2017","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - May 20 20:26:27 +0000 2020","id":1263204462530752512,"id_str":"1263204462530752512","text":"kogi - Korean food truck","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":705514825,"id_str":"705514825","name":"Fran - Osment","screen_name":"FOsment","location":"","description":"wife, mother, - gardener, flea market shopper","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":81,"listed_count":0,"created_at":"Thu - Jul 19 18:05:17 +0000 2012","favourites_count":700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":702,"lang":null,"status":{"created_at":"Wed - Mar 23 16:18:04 +0000 2022","id":1506666598144389120,"id_str":"1506666598144389120","text":"@GLFOP - @HomeDepot We used to teach children that policemen were our friends when - we did units on community helpers!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GLFOP","name":"National - Fraternal Order of Police (FOP)","id":222196210,"id_str":"222196210","indices":[0,6]},{"screen_name":"HomeDepot","name":"The - Home Depot","id":14791918,"id_str":"14791918","indices":[7,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506455378367848449,"in_reply_to_status_id_str":"1506455378367848449","in_reply_to_user_id":222196210,"in_reply_to_user_id_str":"222196210","in_reply_to_screen_name":"GLFOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/873001856896819201\/atB8zee__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/873001856896819201\/atB8zee__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35281416,"id_str":"35281416","name":"Bruce - Coleman","screen_name":"brcoleman3","location":"ATX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":474,"listed_count":0,"created_at":"Sat - Apr 25 18:55:28 +0000 2009","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Jan 18 16:53:42 +0000 2022","id":1483482744088838152,"id_str":"1483482744088838152","text":"@GreshKeefe - Condescending, never been wrong, blow hard vs. ass kissing team suck-up? I''m - coming back Zo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GreshKeefe","name":"Gresh - & Keefe","id":2422307162,"id_str":"2422307162","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2422307162,"in_reply_to_user_id_str":"2422307162","in_reply_to_screen_name":"GreshKeefe","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":501220460,"id_str":"501220460","name":"Pablo - Morales \ud83c\udf0a\ud83c\uddfa\ud83c\uddf8\ud83c\udf0a\u264b","screen_name":"pmorales316","location":"New - Port Richey, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":109,"friends_count":2360,"listed_count":0,"created_at":"Thu - Feb 23 22:48:38 +0000 2012","favourites_count":21711,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21968,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/955109772264726528\/sQOyTWu8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/955109772264726528\/sQOyTWu8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249825120811651074,"id_str":"1249825120811651074","name":"Annie\u2764\ufe0f","screen_name":"BellitaAnnie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":45,"listed_count":0,"created_at":"Mon - Apr 13 22:22:01 +0000 2020","favourites_count":545,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215,"lang":null,"status":{"created_at":"Thu - Feb 10 09:40:13 +0000 2022","id":1491708573864366080,"id_str":"1491708573864366080","text":"RT - @sikanikwame_: I prophesy over you , receive the miracle in Jesus Name \u2026God - bless you all","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sikanikwame_","name":"Sikani - Kwame","id":1324983997,"id_str":"1324983997","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 06:16:15 +0000 2022","id":1491657246387982338,"id_str":"1491657246387982338","text":"I - prophesy over you , receive the miracle in Jesus Name \u2026God bless you - all","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":304,"favorite_count":1755,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":304,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392504962106761224\/gXvv9VxX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392504962106761224\/gXvv9VxX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1249825120811651074\/1597002902","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858535217967095809,"id_str":"858535217967095809","name":"\ud835\udd7e\ud835\udd8e\ud835\udd9b\ud835\udd86\ud835\udd90\ud835\udd9a\ud835\udd92\ud835\udd86\ud835\udd97 - \ud835\udd6e\ud835\udd8d\ud835\udd86\ud835\udd93\ud835\udd89\ud835\udd97\ud835\udd86\ud835\udd98\ud835\udd8a\ud835\udd90\ud835\udd86\ud835\udd97","screen_name":"sivakumar871993","location":"Chennai, - India","description":"\ud83c\udd73\ud83c\udd7e \ud83c\udd7c\ud83c\udd7e\ud83c\udd81\ud83c\udd74 - \ud83c\udd7e\ud83c\udd75 \ud83c\udd86\ud83c\udd77\ud83c\udd70\ud83c\udd83 - \ud83c\udd7c\ud83c\udd70\ud83c\udd7a\ud83c\udd74\ud83c\udd82 \ud83c\udd88\ud83c\udd7e\ud83c\udd84 - \ud83c\udd77\ud83c\udd70\ud83c\udd7f\ud83c\udd7f\ud83c\udd88","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":183,"friends_count":2560,"listed_count":0,"created_at":"Sun - Apr 30 04:15:21 +0000 2017","favourites_count":141,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501190384130539521\/yyG2guaH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501190384130539521\/yyG2guaH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/858535217967095809\/1638881889","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1097391278961160192,"id_str":"1097391278961160192","name":"Siggi - Duvel","screen_name":"DuvelSiggi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":190,"listed_count":0,"created_at":"Mon - Feb 18 07:04:04 +0000 2019","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Apr 05 01:49:10 +0000 2020","id":1246615832517582852,"id_str":"1246615832517582852","text":"#Coronavirus","truncated":false,"entities":{"hashtags":[{"text":"Coronavirus","indices":[0,12]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":262842454,"id_str":"262842454","name":"Charlotte - Coetzee","screen_name":"CharlotteAC1","location":"London","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":999,"listed_count":1,"created_at":"Tue - Mar 08 21:41:52 +0000 2011","favourites_count":2854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":141,"lang":null,"status":{"created_at":"Thu - Mar 11 22:01:52 +0000 2021","id":1370132895227072517,"id_str":"1370132895227072517","text":"RT - @JoannaLumleyUK: Please share this far & wide. Feel so sad about the #SarahEverard - news and can\u2019t even begin to imagine how her family &\u2026","truncated":false,"entities":{"hashtags":[{"text":"SarahEverard","indices":[76,89]}],"symbols":[],"user_mentions":[{"screen_name":"JoannaLumleyUK","name":"Joanna - Lumley OBE","id":1320811231,"id_str":"1320811231","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 11 20:21:13 +0000 2021","id":1370107565540061184,"id_str":"1370107565540061184","text":"Please - share this far & wide. Feel so sad about the #SarahEverard news and can\u2019t - even begin to imagine how her fami\u2026 https:\/\/t.co\/ZCuNplnLXM","truncated":true,"entities":{"hashtags":[{"text":"SarahEverard","indices":[56,69]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZCuNplnLXM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1370107565540061184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9389,"favorite_count":14170,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9389,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489140196173422592\/oitVpZPc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489140196173422592\/oitVpZPc_normal.jpeg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274425647897722880,"id_str":"1274425647897722880","name":"Todd - DeMoss","screen_name":"ToddDeMoss2","location":"Marseilles, IL","description":"proud - husband, father, and grandfather. proud conservative","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":500,"listed_count":0,"created_at":"Sat - Jun 20 19:35:38 +0000 2020","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":766,"lang":null,"status":{"created_at":"Sat - Apr 17 13:39:51 +0000 2021","id":1383414908209930251,"id_str":"1383414908209930251","text":"@MLBNetwork - @PresidentPerine https:\/\/t.co\/E1e7vRMCJQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MLBNetwork","name":"MLB - Network","id":20710218,"id_str":"20710218","indices":[0,11]},{"screen_name":"PresidentPerine","name":"Austin - Perine \ud83d\udc8e","id":980703501440487424,"id_str":"980703501440487424","indices":[12,28]}],"urls":[],"media":[{"id":1383414899737464846,"id_str":"1383414899737464846","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EzLghYvVkA4Uebu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EzLghYvVkA4Uebu.jpg","url":"https:\/\/t.co\/E1e7vRMCJQ","display_url":"pic.twitter.com\/E1e7vRMCJQ","expanded_url":"https:\/\/twitter.com\/ToddDeMoss2\/status\/1383414908209930251\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":494,"h":278,"resize":"fit"},"large":{"w":494,"h":278,"resize":"fit"},"small":{"w":494,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1383414899737464846,"id_str":"1383414899737464846","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EzLghYvVkA4Uebu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EzLghYvVkA4Uebu.jpg","url":"https:\/\/t.co\/E1e7vRMCJQ","display_url":"pic.twitter.com\/E1e7vRMCJQ","expanded_url":"https:\/\/twitter.com\/ToddDeMoss2\/status\/1383414908209930251\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":494,"h":278,"resize":"fit"},"large":{"w":494,"h":278,"resize":"fit"},"small":{"w":494,"h":278,"resize":"fit"}},"video_info":{"aspect_ratio":[247,139],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EzLghYvVkA4Uebu.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1383411673822760961,"in_reply_to_status_id_str":"1383411673822760961","in_reply_to_user_id":20710218,"in_reply_to_user_id_str":"20710218","in_reply_to_screen_name":"MLBNetwork","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274425776134402051\/msZ-iLZ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274425776134402051\/msZ-iLZ9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889843399091769344,"id_str":"889843399091769344","name":"Audrey - Clifford","screen_name":"audcli","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":270,"listed_count":0,"created_at":"Tue - Jul 25 13:42:53 +0000 2017","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Feb 16 01:39:43 +0000 2018","id":964313308705771521,"id_str":"964313308705771521","text":"Kyle - a great teacher.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"0811cf61cd9ea52f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0811cf61cd9ea52f.json","place_type":"city","name":"Winnipeg","full_name":"Winnipeg, - Manitoba","country_code":"CA","country":"Canada","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.350366,49.713679],[-96.954987,49.713679],[-96.954987,49.993932],[-97.350366,49.993932]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276302870,"id_str":"1276302870","name":"Susan - Wilkens","screen_name":"Swilkens3Susan","location":"Birmingham, Alabama","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":767,"listed_count":1,"created_at":"Sun - Mar 17 23:55:32 +0000 2013","favourites_count":5136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":668,"lang":null,"status":{"created_at":"Fri - Sep 10 00:25:45 +0000 2021","id":1436123696926806030,"id_str":"1436123696926806030","text":"Lawsuits - are coming that way! https:\/\/t.co\/zSGUxrnRSU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zSGUxrnRSU","expanded_url":"https:\/\/twitter.com\/WVTM13\/status\/1436122806505418756","display_url":"twitter.com\/WVTM13\/status\/\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1436122806505418756,"quoted_status_id_str":"1436122806505418756","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3394260316\/f5f34e3e3e440e8af64de5f3bde6f05a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3394260316\/f5f34e3e3e440e8af64de5f3bde6f05a_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1662448142,"id_str":"1662448142","name":"Sagar","screen_name":"SarangMundhe","location":"osmanabad, - maharashtra","description":"Bsc Agri. M A U Parbhani","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":81,"friends_count":1592,"listed_count":1,"created_at":"Sun - Aug 11 12:28:57 +0000 2013","favourites_count":5659,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":971,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000274237802\/72d066651855de1dd07f078cd1732e33_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000274237802\/72d066651855de1dd07f078cd1732e33_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":224875757,"id_str":"224875757","name":"Kamei - Kippei","screen_name":"kippeicastor","location":"Chuo-ku, Tokyo","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":1093,"listed_count":42,"created_at":"Fri - Dec 10 02:49:27 +0000 2010","favourites_count":45746,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3815,"lang":null,"status":{"created_at":"Fri - Mar 25 14:41:44 +0000 2022","id":1507367130668634112,"id_str":"1507367130668634112","text":"@nao_yoshida9 - \u304a\u3084\u3059\u307f\u306a\u3055\u3044\u2665\u2665\u2665","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nao_yoshida9","name":"Nao","id":1230417227221848064,"id_str":"1230417227221848064","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507345625783803904,"in_reply_to_status_id_str":"1507345625783803904","in_reply_to_user_id":1230417227221848064,"in_reply_to_user_id_str":"1230417227221848064","in_reply_to_screen_name":"nao_yoshida9","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/964814910575136768\/rVslm18H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/964814910575136768\/rVslm18H_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":152046184,"id_str":"152046184","name":"RJWManagement","screen_name":"RJWManagement","location":"SEDONA","description":"Sedona - AZ Hospitality & Audio Consulting at https:\/\/t.co\/ObkcdnY7gr View the - website and confirm","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/ObkcdnY7gr","expanded_url":"http:\/\/www.FHGI.com","display_url":"FHGI.com","indices":[47,70]}]}},"protected":false,"followers_count":2140,"friends_count":4128,"listed_count":95,"created_at":"Fri - Jun 04 23:14:44 +0000 2010","favourites_count":6573,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17015,"lang":null,"status":{"created_at":"Sun - Mar 06 00:00:20 +0000 2022","id":1500259951029063681,"id_str":"1500259951029063681","text":"RT - @RJWManagement: Look what I found on @eBay! https:\/\/t.co\/69s6YLIhnW via - @eBay","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RJWManagement","name":"RJWManagement","id":152046184,"id_str":"152046184","indices":[3,17]},{"screen_name":"eBay","name":"eBay","id":19709040,"id_str":"19709040","indices":[40,45]},{"screen_name":"eBay","name":"eBay","id":19709040,"id_str":"19709040","indices":[75,80]}],"urls":[{"url":"https:\/\/t.co\/69s6YLIhnW","expanded_url":"https:\/\/www.ebay.com\/itm\/124930757847?mkevt=1&mkcid=16&mkrid=711-127632-2357-0&media=TWITTER&sojTags=media%3Dmedia","display_url":"ebay.com\/itm\/1249307578\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 00:00:10 +0000 2022","id":1500259909262188545,"id_str":"1500259909262188545","text":"Look - what I found on @eBay! https:\/\/t.co\/69s6YLIhnW via @eBay","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eBay","name":"eBay","id":19709040,"id_str":"19709040","indices":[21,26]},{"screen_name":"eBay","name":"eBay","id":19709040,"id_str":"19709040","indices":[56,61]}],"urls":[{"url":"https:\/\/t.co\/69s6YLIhnW","expanded_url":"https:\/\/www.ebay.com\/itm\/124930757847?mkevt=1&mkcid=16&mkrid=711-127632-2357-0&media=TWITTER&sojTags=media%3Dmedia","display_url":"ebay.com\/itm\/1249307578\u2026","indices":[28,51]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A3C1D1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366345134\/dog-view_RRX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366345134\/dog-view_RRX_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"F00943","profile_sidebar_fill_color":"F2E9F2","profile_text_color":"3821E8","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300180345791315969,"id_str":"1300180345791315969","name":"WTUCKER1991","screen_name":"wtucker1991","location":"","description":"Married - Gigi with two kids and three grandchildren. Farmer who loves animals.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":279,"listed_count":0,"created_at":"Sun - Aug 30 21:15:35 +0000 2020","favourites_count":11553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311285595910610944\/oB6wAgfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311285595910610944\/oB6wAgfW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1224082970207715328,"id_str":"1224082970207715328","name":"Kim - Woody","screen_name":"KimWoody_","location":"Maryland, USA","description":"Always - treat others the way you want to be treated.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":105,"listed_count":0,"created_at":"Sun - Feb 02 21:31:58 +0000 2020","favourites_count":12411,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":317,"lang":null,"status":{"created_at":"Sat - Mar 19 15:16:20 +0000 2022","id":1505201512443691018,"id_str":"1505201512443691018","text":"@briantylercohen - Yes..making racist comments and threatening to destroy BLM boulevard. What - did we ever do to them? Absolutely nothing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"briantylercohen","name":"Brian - Tyler Cohen","id":455684839,"id_str":"455684839","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504960941741457408,"in_reply_to_status_id_str":"1504960941741457408","in_reply_to_user_id":455684839,"in_reply_to_user_id_str":"455684839","in_reply_to_screen_name":"briantylercohen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1224091783400849409\/IyMkrLgH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1224091783400849409\/IyMkrLgH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":827731618731278337,"id_str":"827731618731278337","name":"Paula - Telmosse","screen_name":"PTelmosse","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":384,"listed_count":0,"created_at":"Sat - Feb 04 04:12:51 +0000 2017","favourites_count":154885,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269976213705154570,"id_str":"1269976213705154570","name":"Lois - \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"loieandstella","location":"Iowa - City, IA","description":"Bird watcher, gardener, retired psych nurse, loves - outdoors, loves cats, BLM, hates tRump, \ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":2150,"listed_count":0,"created_at":"Mon - Jun 08 12:55:18 +0000 2020","favourites_count":1353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":364,"lang":null,"status":{"created_at":"Sat - Mar 12 18:45:38 +0000 2022","id":1502717470465052682,"id_str":"1502717470465052682","text":"@AZ_Brittney - Dusting","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AZ_Brittney","name":"\ud83d\udc99Brittney\ud83d\udc99","id":1424033022,"id_str":"1424033022","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502672642469339137,"in_reply_to_status_id_str":"1502672642469339137","in_reply_to_user_id":1424033022,"in_reply_to_user_id_str":"1424033022","in_reply_to_screen_name":"AZ_Brittney","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270005455486701569\/nyVprYb3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270005455486701569\/nyVprYb3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2934477285,"id_str":"2934477285","name":"candace - parr-haase","screen_name":"ParrCandace","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":210,"listed_count":0,"created_at":"Sun - Dec 21 01:11:27 +0000 2014","favourites_count":7371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Fri - Mar 18 20:48:54 +0000 2022","id":1504922819410411532,"id_str":"1504922819410411532","text":"RT - @Edelman11: Great teammate, great person. Congrats on the new deal bubs.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Edelman11","name":"Julian - Edelman","id":272250951,"id_str":"272250951","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 15:26:32 +0000 2022","id":1504841693308272653,"id_str":"1504841693308272653","text":"Great - teammate, great person. Congrats on the new deal bubs. https:\/\/t.co\/kB6grDhCua","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kB6grDhCua","expanded_url":"https:\/\/twitter.com\/ShaqDiesel_70\/status\/1504600993052430349","display_url":"twitter.com\/ShaqDiesel_70\/\u2026","indices":[61,84]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"67b98f17fdcf20be","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/67b98f17fdcf20be.json","place_type":"city","name":"Boston","full_name":"Boston, - MA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-71.191421,42.227797],[-70.986004,42.227797],[-70.986004,42.399542],[-71.191421,42.399542]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1504600993052430349,"quoted_status_id_str":"1504600993052430349","retweet_count":69,"favorite_count":2195,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504600993052430349,"quoted_status_id_str":"1504600993052430349","retweet_count":69,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3029879854,"id_str":"3029879854","name":"Justice - Pao","screen_name":"hieutu2011","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":2336,"listed_count":1,"created_at":"Wed - Feb 11 08:32:11 +0000 2015","favourites_count":3765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":181,"lang":null,"status":{"created_at":"Fri - Mar 18 07:46:57 +0000 2022","id":1504726032712347655,"id_str":"1504726032712347655","text":"RT - @Babu_IRPS: Lovely.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Babu_IRPS","name":"M. - Babu Abdul Khadeer, IRPS","id":136704256,"id_str":"136704256","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 03:35:17 +0000 2022","id":1504662698541608960,"id_str":"1504662698541608960","text":"Lovely. - https:\/\/t.co\/Lxz8Pn32Za","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Lxz8Pn32Za","expanded_url":"https:\/\/twitter.com\/SuryahSG\/status\/1504644632025591810","display_url":"twitter.com\/SuryahSG\/statu\u2026","indices":[8,31]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504644632025591810,"quoted_status_id_str":"1504644632025591810","retweet_count":293,"favorite_count":301,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504644632025591810,"quoted_status_id_str":"1504644632025591810","retweet_count":293,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565428693879631872\/FCkZ_z_T_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565428693879631872\/FCkZ_z_T_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2880128937,"id_str":"2880128937","name":"Pangu","screen_name":"kurtrobertson","location":"Black - Earth","description":"alien waiting for the mothership","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":1437,"listed_count":0,"created_at":"Sun - Nov 16 22:34:18 +0000 2014","favourites_count":3631,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1984,"lang":null,"status":{"created_at":"Mon - Mar 21 01:47:56 +0000 2022","id":1505722848752586753,"id_str":"1505722848752586753","text":"@PlutoTV - Mr. Furley","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PlutoTV","name":"Pluto - TV","id":2295012080,"id_str":"2295012080","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505664237175119872,"in_reply_to_status_id_str":"1505664237175119872","in_reply_to_user_id":2295012080,"in_reply_to_user_id_str":"2295012080","in_reply_to_screen_name":"PlutoTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347975848759087105\/15B0yHr0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347975848759087105\/15B0yHr0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2880128937\/1578267995","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1129195859437150208,"id_str":"1129195859437150208","name":"Monawwar - syed hasnain","screen_name":"HasnainMonawwar","location":"DOMINICAN REP\u00daBLIC","description":"ACADEMIC - INVESTIGATOR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":512,"friends_count":4795,"listed_count":0,"created_at":"Fri - May 17 01:24:07 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11119,"lang":null,"status":{"created_at":"Sat - Dec 11 22:25:35 +0000 2021","id":1469795527890026500,"id_str":"1469795527890026500","text":"@wikileaks - IT''S A GREAT ABUSE JUDICIAL SYSTEM OF U.K. TO BE EXTRADITED FAMOUS & - HISTORICAL INNOCENTS JULIAN ASSANGE TO U.S.A","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wikileaks","name":"WikiLeaks","id":16589206,"id_str":"16589206","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1469791896268587011,"in_reply_to_status_id_str":"1469791896268587011","in_reply_to_user_id":16589206,"in_reply_to_user_id_str":"16589206","in_reply_to_screen_name":"wikileaks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1203272921449451522\/M6O9KqCv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1203272921449451522\/M6O9KqCv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1129195859437150208\/1582848736","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21820551,"id_str":"21820551","name":"health - care semi-professional","screen_name":"Goofydad","location":"hunting the great - beast! ","description":"* Dad, husband, step-asshole, gamer and NP\n* no, - I will not look at your rash...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1432,"friends_count":2395,"listed_count":7,"created_at":"Wed - Feb 25 01:15:14 +0000 2009","favourites_count":163591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35361,"lang":null,"status":{"created_at":"Sat - Mar 26 07:42:03 +0000 2022","id":1507623904960987136,"id_str":"1507623904960987136","text":"@IHideFromMyKids - @ju_floripa I hope your kids aren''t allergic to\n.\n.\n.\nNuts.\nThank you! - Three shows daily! Remember\u2026 https:\/\/t.co\/YirzUfJmqy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IHideFromMyKids","name":"I - Hide From My Kids","id":1452699706325413894,"id_str":"1452699706325413894","indices":[0,16]},{"screen_name":"ju_floripa","name":"Jules\ud83d\udc8e","id":801024738906820608,"id_str":"801024738906820608","indices":[17,28]}],"urls":[{"url":"https:\/\/t.co\/YirzUfJmqy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507623904960987136","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506978221413306369,"in_reply_to_status_id_str":"1506978221413306369","in_reply_to_user_id":1452699706325413894,"in_reply_to_user_id_str":"1452699706325413894","in_reply_to_screen_name":"IHideFromMyKids","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389644884181766152\/zSXJ2pyK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389644884181766152\/zSXJ2pyK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21820551\/1647291325","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":799284130982887426,"id_str":"799284130982887426","name":"Paul - Noumba Um","screen_name":"paul_noumba","location":"Washington, DC","description":"World - Bank Director of #Infrastructure in #MENA region. Passionate about: |#Energy, - #Digital Technology, #transport, & #PrivateSectorDevt.| All views are mine","url":"https:\/\/t.co\/62qw9m9FUL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/62qw9m9FUL","expanded_url":"http:\/\/www.worldbank.org\/mena","display_url":"worldbank.org\/mena","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":539,"listed_count":2,"created_at":"Thu - Nov 17 16:12:41 +0000 2016","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":224,"lang":null,"status":{"created_at":"Tue - Mar 22 12:34:47 +0000 2022","id":1506248019632603137,"id_str":"1506248019632603137","text":"RT - @DavidMalpassWBG: Glad to visit the @WBG_IDA financed Dakar Bus Rapid Transit - (BRT) project this morning.\n\nThis project aims to provide\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DavidMalpassWBG","name":"David - Malpass","id":1113157792125386752,"id_str":"1113157792125386752","indices":[3,19]},{"screen_name":"WBG_IDA","name":"IDA - - World Bank Group","id":730057211565748224,"id_str":"730057211565748224","indices":[39,47]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 11:40:07 +0000 2022","id":1506234263972241410,"id_str":"1506234263972241410","text":"Glad - to visit the @WBG_IDA financed Dakar Bus Rapid Transit (BRT) project this - morning.\n\nThis project aims to provi\u2026 https:\/\/t.co\/EseVJBSMbu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WBG_IDA","name":"IDA - - World Bank Group","id":730057211565748224,"id_str":"730057211565748224","indices":[18,26]}],"urls":[{"url":"https:\/\/t.co\/EseVJBSMbu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506234263972241410","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":115,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":41,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/840638293377200128\/nxayY89V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/840638293377200128\/nxayY89V_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1080547679107731462,"id_str":"1080547679107731462","name":"avarro - nice","screen_name":"AvarroNice","location":"Central, Ghana","description":"Love - my God","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":91,"listed_count":0,"created_at":"Wed - Jan 02 19:33:37 +0000 2019","favourites_count":10918,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Wed - Oct 21 07:33:38 +0000 2020","id":1318817708050403328,"id_str":"1318817708050403328","text":"@jidesanwoolu - See this one when dem still put for post madam man with glasses fuck","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jidesanwoolu","name":"Babajide - Sanwo-Olu","id":198084264,"id_str":"198084264","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1318746879836999680,"in_reply_to_status_id_str":"1318746879836999680","in_reply_to_user_id":198084264,"in_reply_to_user_id_str":"198084264","in_reply_to_screen_name":"jidesanwoolu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250062566535188484\/oa9quZaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250062566535188484\/oa9quZaZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818197736,"id_str":"818197736","name":"Vinay","screen_name":"vinay_1337","location":"Madison","description":"A - paranoid android","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":117,"listed_count":0,"created_at":"Tue - Sep 11 21:11:18 +0000 2012","favourites_count":75,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Mon - Nov 22 23:08:59 +0000 2021","id":1462921078263660546,"id_str":"1462921078263660546","text":"RT - @hasanthehun: mario party should be illegal","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hasanthehun","name":"hasanabi","id":326756275,"id_str":"326756275","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 22 15:23:37 +0000 2021","id":1462803965209313282,"id_str":"1462803965209313282","text":"mario - party should be illegal","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":581,"favorite_count":19184,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":581,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/957373044783116288\/QpiBMZfF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/957373044783116288\/QpiBMZfF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3063269848,"id_str":"3063269848","name":"Josh - Ziegler","screen_name":"gofaster1320","location":"Small Town USA","description":"When - the rich wage war it''s the poor who die...Kenji","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":982,"listed_count":0,"created_at":"Wed - Feb 25 20:27:44 +0000 2015","favourites_count":2398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6801,"lang":null,"status":{"created_at":"Sun - Oct 17 23:24:46 +0000 2021","id":1449879087263232002,"id_str":"1449879087263232002","text":"@TheRealGresh - .....holy Shite....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRealGresh","name":"Andy - Gresh","id":59475498,"id_str":"59475498","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1449878915271565313,"in_reply_to_status_id_str":"1449878915271565313","in_reply_to_user_id":59475498,"in_reply_to_user_id_str":"59475498","in_reply_to_screen_name":"TheRealGresh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399906430048681984\/PhiYFs3x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399906430048681984\/PhiYFs3x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3063269848\/1617028511","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":920120111268335616,"id_str":"920120111268335616","name":"Dede","screen_name":"Dede20117118","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":521,"listed_count":0,"created_at":"Tue - Oct 17 02:51:44 +0000 2017","favourites_count":44978,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10458,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":760226957636272128,"id_str":"760226957636272128","name":"Boatdock","screen_name":"marinaiorourke","location":"Orlando, - FL","description":"IT geek, foodie and fitness lover, franchising fanatic. - All opinions are my own and do not represent any current, past or future employer.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":380,"listed_count":0,"created_at":"Mon - Aug 01 21:33:25 +0000 2016","favourites_count":7864,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2446,"lang":null,"status":{"created_at":"Fri - Mar 25 21:40:13 +0000 2022","id":1507472444986175496,"id_str":"1507472444986175496","text":"@GovRonDeSantis - #DontSayGay gay gay gay gay gay gay gay gay gay gay gay gay","truncated":false,"entities":{"hashtags":[{"text":"DontSayGay","indices":[16,27]}],"symbols":[],"user_mentions":[{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507471087466164226,"in_reply_to_status_id_str":"1507471087466164226","in_reply_to_user_id":1058807868,"in_reply_to_user_id_str":"1058807868","in_reply_to_screen_name":"GovRonDeSantis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477004607809282051\/inf4TevX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477004607809282051\/inf4TevX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760226957636272128\/1598557252","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2755353138,"id_str":"2755353138","name":"Joanne - Zucker","screen_name":"Joanne_writes","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":426,"listed_count":0,"created_at":"Fri - Aug 22 15:41:13 +0000 2014","favourites_count":10716,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Feb 27 14:54:12 +0000 2015","id":571322410596765696,"id_str":"571322410596765696","text":"@FSResidential - Job of the Day: Community Assoc Mgr, Altamonte Springs, FL - Manage maintenance\/operations - http:\/\/t.co\/axyLynVx7E req#2630","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/axyLynVx7E","expanded_url":"http:\/\/bit.ly\/1nSWGFR","display_url":"bit.ly\/1nSWGFR","indices":[107,129]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460425064197853186\/WRlK1Qph_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460425064197853186\/WRlK1Qph_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56614310,"id_str":"56614310","name":"Jim - Robinson","screen_name":"Jim48Robinson","location":"Columbus, OH","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1187,"friends_count":2610,"listed_count":0,"created_at":"Tue - Jul 14 05:13:28 +0000 2009","favourites_count":127385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61378,"lang":null,"status":{"created_at":"Sat - Mar 26 10:28:12 +0000 2022","id":1507665716006338565,"id_str":"1507665716006338565","text":"RT - @D_jeneration: Stephen Colbert being absolutely right as usual https:\/\/t.co\/9GI5YpfjFM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"D_jeneration","name":"Henry - Djoutsa \ud83c\udde8\ud83c\uddf2\ud83c\uddfa\ud83c\uddf8 Supports\ud83c\uddfa\ud83c\udde6","id":59862199,"id_str":"59862199","indices":[3,16]}],"urls":[],"media":[{"id":1507503978497527809,"id_str":"1507503978497527809","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","url":"https:\/\/t.co\/9GI5YpfjFM","display_url":"pic.twitter.com\/9GI5YpfjFM","expanded_url":"https:\/\/twitter.com\/D_jeneration\/status\/1507503984277217280\/photo\/1","type":"photo","sizes":{"small":{"w":662,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1168,"h":1200,"resize":"fit"},"large":{"w":1242,"h":1276,"resize":"fit"}},"source_status_id":1507503984277217280,"source_status_id_str":"1507503984277217280","source_user_id":59862199,"source_user_id_str":"59862199"}]},"extended_entities":{"media":[{"id":1507503978497527809,"id_str":"1507503978497527809","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","url":"https:\/\/t.co\/9GI5YpfjFM","display_url":"pic.twitter.com\/9GI5YpfjFM","expanded_url":"https:\/\/twitter.com\/D_jeneration\/status\/1507503984277217280\/photo\/1","type":"photo","sizes":{"small":{"w":662,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1168,"h":1200,"resize":"fit"},"large":{"w":1242,"h":1276,"resize":"fit"}},"source_status_id":1507503984277217280,"source_status_id_str":"1507503984277217280","source_user_id":59862199,"source_user_id_str":"59862199"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:45:32 +0000 2022","id":1507503984277217280,"id_str":"1507503984277217280","text":"Stephen - Colbert being absolutely right as usual https:\/\/t.co\/9GI5YpfjFM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507503978497527809,"id_str":"1507503978497527809","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","url":"https:\/\/t.co\/9GI5YpfjFM","display_url":"pic.twitter.com\/9GI5YpfjFM","expanded_url":"https:\/\/twitter.com\/D_jeneration\/status\/1507503984277217280\/photo\/1","type":"photo","sizes":{"small":{"w":662,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1168,"h":1200,"resize":"fit"},"large":{"w":1242,"h":1276,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507503978497527809,"id_str":"1507503978497527809","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOu64Z_VUAE-8uK.jpg","url":"https:\/\/t.co\/9GI5YpfjFM","display_url":"pic.twitter.com\/9GI5YpfjFM","expanded_url":"https:\/\/twitter.com\/D_jeneration\/status\/1507503984277217280\/photo\/1","type":"photo","sizes":{"small":{"w":662,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1168,"h":1200,"resize":"fit"},"large":{"w":1242,"h":1276,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":539,"favorite_count":3392,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":539,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517573102596022272\/QvjOHDR4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517573102596022272\/QvjOHDR4_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261398664662016000,"id_str":"1261398664662016000","name":"Joy","screen_name":"joy24543463_joy","location":"Grand - Coulee, WA","description":"Joyce from the block\ud83d\ude1c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":753,"listed_count":1,"created_at":"Fri - May 15 20:51:29 +0000 2020","favourites_count":66630,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65150,"lang":null,"status":{"created_at":"Sat - Mar 26 05:21:53 +0000 2022","id":1507588628364488707,"id_str":"1507588628364488707","text":"RT - @KellyO: President Biden worked the room going from table to table to chat - with soldiers from the 82nd Airborne sent to serve here in Po\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KellyO","name":"Kelly - O''Donnell","id":224320485,"id_str":"224320485","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:53:20 +0000 2022","id":1507370050126237698,"id_str":"1507370050126237698","text":"President - Biden worked the room going from table to table to chat with soldiers from - the 82nd Airborne sent to serv\u2026 https:\/\/t.co\/ShPl0mbl4n","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ShPl0mbl4n","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507370050126237698","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2842,"favorite_count":21142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2842,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265989957916688384,"id_str":"1265989957916688384","name":"andrew - kimmel","screen_name":"andrewkimmel8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":160,"listed_count":0,"created_at":"Thu - May 28 12:56:17 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Sun - Sep 26 16:27:47 +0000 2021","id":1442164003426508801,"id_str":"1442164003426508801","text":"@HallieJackson - I know Dawkins was just as lucky to have you!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HallieJackson","name":"Hallie - Jackson","id":37590426,"id_str":"37590426","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1441373148448964611,"in_reply_to_status_id_str":"1441373148448964611","in_reply_to_user_id":37590426,"in_reply_to_user_id_str":"37590426","in_reply_to_screen_name":"HallieJackson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21461330,"id_str":"21461330","name":"Joseph - Wekselblatt","screen_name":"surfsup123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":2556,"listed_count":1,"created_at":"Sat - Feb 21 03:46:23 +0000 2009","favourites_count":327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Sat - Jan 08 03:24:46 +0000 2022","id":1479655288202530816,"id_str":"1479655288202530816","text":"@HowieRose - Beltran was perhaps the best defensive center fielder the Mets ever had until - he hurt his knees.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HowieRose","name":"Howie - Rose","id":1247542263699214336,"id_str":"1247542263699214336","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1479643963711791105,"in_reply_to_status_id_str":"1479643963711791105","in_reply_to_user_id":1247542263699214336,"in_reply_to_user_id_str":"1247542263699214336","in_reply_to_screen_name":"HowieRose","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17770184,"id_str":"17770184","name":"Stu - Berlowitz","screen_name":"stuberlowitz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":139,"listed_count":2,"created_at":"Mon - Dec 01 03:26:29 +0000 2008","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":205,"lang":null,"status":{"created_at":"Wed - Mar 09 17:32:57 +0000 2022","id":1501612012568207363,"id_str":"1501612012568207363","text":"@JayAshMACP - Maybe I\u2019ll come to Foxboro or vice versa and we\u2019ll catch it together!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JayAshMACP","name":"Jay - Ash","id":311812323,"id_str":"311812323","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1501611648657891338,"in_reply_to_status_id_str":"1501611648657891338","in_reply_to_user_id":311812323,"in_reply_to_user_id_str":"311812323","in_reply_to_screen_name":"JayAshMACP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512903593079209984\/L03EGJPb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512903593079209984\/L03EGJPb_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3051923051,"id_str":"3051923051","name":"Honishka - Adish","screen_name":"Honishk","location":"","description":"UVA, Georgetown, - and Mercyhursy alumnus. Consultant - change management and organization transformation; - proud father of two; multilingual; opinions are my own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":162,"listed_count":0,"created_at":"Sun - Feb 22 05:53:21 +0000 2015","favourites_count":346,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":null,"status":{"created_at":"Tue - Jun 15 01:36:17 +0000 2021","id":1404613699621490689,"id_str":"1404613699621490689","text":"@blaireerskine - Genius! Thanks for the laughter.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"blaireerskine","name":"blaire - erskine","id":1001285146392383489,"id_str":"1001285146392383489","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1404557073376071681,"in_reply_to_status_id_str":"1404557073376071681","in_reply_to_user_id":1001285146392383489,"in_reply_to_user_id_str":"1001285146392383489","in_reply_to_screen_name":"blaireerskine","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299675738455650304\/OEieik8X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299675738455650304\/OEieik8X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051923051\/1424938223","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48089877,"id_str":"48089877","name":"Ben - Hoke","screen_name":"benhoke","location":"Charlotte, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":428,"friends_count":2032,"listed_count":3,"created_at":"Wed - Jun 17 19:50:57 +0000 2009","favourites_count":2107,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2215,"lang":null,"status":{"created_at":"Fri - Mar 25 22:50:49 +0000 2022","id":1507490212703879177,"id_str":"1507490212703879177","text":"@sspressert - Dear Mom, I hope you''ll be heading to Davidson on June 10-12 for the 25th - Reunion. Would make your ole\u2026 https:\/\/t.co\/uJbELXaIlK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sspressert","name":"SuseS","id":11545152,"id_str":"11545152","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/uJbELXaIlK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507490212703879177","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507317599985676289,"in_reply_to_status_id_str":"1507317599985676289","in_reply_to_user_id":11545152,"in_reply_to_user_id_str":"11545152","in_reply_to_screen_name":"sspressert","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293270843867439104\/5b0HyICp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293270843867439104\/5b0HyICp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48089877\/1562889493","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288949001094561794,"id_str":"1288949001094561794","name":"lucy - 56","screen_name":"lucy5640124977","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":464,"listed_count":0,"created_at":"Thu - Jul 30 21:26:45 +0000 2020","favourites_count":4171,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Jan 07 18:22:10 +0000 2022","id":1479518738898735104,"id_str":"1479518738898735104","text":"@WhoopiGoldberg - He was my first crush I was 10 years old and I was in Syria many many years - ago. May God rest in\u2026 https:\/\/t.co\/GfOXPXD3PT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhoopiGoldberg","name":"Whoopi - Goldberg","id":284602545,"id_str":"284602545","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/GfOXPXD3PT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1479518738898735104","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1479479201350791169,"in_reply_to_status_id_str":"1479479201350791169","in_reply_to_user_id":284602545,"in_reply_to_user_id_str":"284602545","in_reply_to_screen_name":"WhoopiGoldberg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288949472362467328\/9ZLOcvAO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288949472362467328\/9ZLOcvAO_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":937523686927749120,"id_str":"937523686927749120","name":"Yolanda - Kilbride","screen_name":"yolykilly","location":"","description":"proud wife - of a USMC Vet.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":171,"friends_count":319,"listed_count":0,"created_at":"Mon - Dec 04 03:27:20 +0000 2017","favourites_count":59220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4755,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1135321974216036353\/-i9zsXg9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1135321974216036353\/-i9zsXg9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937523686927749120\/1527115113","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":307504605,"id_str":"307504605","name":"Kdee","screen_name":"AditMan2050","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":568,"listed_count":0,"created_at":"Sun - May 29 19:16:28 +0000 2011","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Fri - Oct 16 19:47:22 +0000 2020","id":1317190416593203201,"id_str":"1317190416593203201","text":"@KaleighRogers - @FiveThirtyEight @realDonaldTrump Odd the support that Q has shown for Trump - as he hasn''t yet got to\u2026 https:\/\/t.co\/hZKVNJSsZo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KaleighRogers","name":"Kaleigh - Rogers","id":192248791,"id_str":"192248791","indices":[0,14]},{"screen_name":"FiveThirtyEight","name":"FiveThirtyEight","id":2303751216,"id_str":"2303751216","indices":[15,31]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[32,48]}],"urls":[{"url":"https:\/\/t.co\/hZKVNJSsZo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1317190416593203201","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1317114924569665541,"in_reply_to_status_id_str":"1317114924569665541","in_reply_to_user_id":192248791,"in_reply_to_user_id_str":"192248791","in_reply_to_screen_name":"KaleighRogers","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/930934395418169347\/GWanuAJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/930934395418169347\/GWanuAJw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213610273883316224,"id_str":"1213610273883316224","name":"Susan - Dellaporte Weiss","screen_name":"SusanMWeiss","location":"Philadelphia, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":55,"listed_count":1,"created_at":"Sat - Jan 04 23:57:32 +0000 2020","favourites_count":8440,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Thu - Feb 18 15:12:28 +0000 2021","id":1362419718582321159,"id_str":"1362419718582321159","text":"@MattPetrillo - @CBSPhilly It\u2019s been very difficult getting an appt for the 1st vaccine - for my 71yr old husband. Back\u2026 https:\/\/t.co\/yScPCNgA4j","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MattPetrillo","name":"Matt - Petrillo","id":17549521,"id_str":"17549521","indices":[0,13]},{"screen_name":"CBSPhilly","name":"CBS - Philly","id":16083576,"id_str":"16083576","indices":[14,24]}],"urls":[{"url":"https:\/\/t.co\/yScPCNgA4j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1362419718582321159","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1362416890614870020,"in_reply_to_status_id_str":"1362416890614870020","in_reply_to_user_id":17549521,"in_reply_to_user_id_str":"17549521","in_reply_to_screen_name":"MattPetrillo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213613841164189696\/7zucMOkn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213613841164189696\/7zucMOkn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213610273883316224\/1578183063","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":846062147285237761,"id_str":"846062147285237761","name":"Terri","screen_name":"Scalpemnoles","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":510,"listed_count":0,"created_at":"Sun - Mar 26 18:11:49 +0000 2017","favourites_count":224,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":131,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276670652121055234\/L-411r5__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276670652121055234\/L-411r5__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846062147285237761\/1593217053","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3224767140,"id_str":"3224767140","name":"Zohar - Golan\ud83d\udea9\ud83d\udea9\ud83d\udea9\ud83d\udc1d","screen_name":"zohargolan","location":"","description":"\u05d9\u05d6\u05dd, - \u05d0\u05d9\u05e9 \u05d3\u05d9\u05d2\u05d9\u05d8\u05dc. \u05d7\u05e8\u05d3 - \u05dc\u05de\u05d3\u05d9\u05e0\u05d4 \u05e9\u05dc\u05e0\u05d5. \u05d1\u05d0 - \u05d1\u05d8\u05d5\u05d1.\nSimiose - Premium CBD & CBG products.\n\nCosmic - O Vibes - STORE. GRIND. ROLL.\nON THE GO.\n\n5 in 1 pocket grinder.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":937,"friends_count":3335,"listed_count":6,"created_at":"Sun - May 24 04:15:40 +0000 2015","favourites_count":48072,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21180,"lang":null,"status":{"created_at":"Sat - Mar 26 00:30:15 +0000 2022","id":1507515237506990080,"id_str":"1507515237506990080","text":"@INegbi - @RealNewsIL \ud83d\ude3b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"INegbi","name":"Irit - Negbi \u05e2\u05d9\u05e8\u05d9\u05ea \u05e0\u05d2\u05d1\u05d9","id":1287475958501576704,"id_str":"1287475958501576704","indices":[0,7]},{"screen_name":"RealNewsIL","name":"Real - News IL","id":1235631080931299329,"id_str":"1235631080931299329","indices":[8,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507513430072348684,"in_reply_to_status_id_str":"1507513430072348684","in_reply_to_user_id":1287475958501576704,"in_reply_to_user_id_str":"1287475958501576704","in_reply_to_screen_name":"INegbi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347541962673500161\/2JkEt0DT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347541962673500161\/2JkEt0DT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224767140\/1607113622","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":553966436,"id_str":"553966436","name":"Stephaknee","screen_name":"SteponmeStoix","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":300,"friends_count":383,"listed_count":0,"created_at":"Sun - Apr 15 01:19:14 +0000 2012","favourites_count":7629,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2627,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192260322427592704\/FrGalTWF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192260322427592704\/FrGalTWF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553966436\/1573091988","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28566054,"id_str":"28566054","name":"Craig - Emrick","screen_name":"cremrick","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":596,"listed_count":0,"created_at":"Fri - Apr 03 13:51:41 +0000 2009","favourites_count":723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Thu - Jan 27 02:27:19 +0000 2022","id":1486526200507944960,"id_str":"1486526200507944960","text":"@Taiwii - That\u2019s the tweet I mentioned earlier.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Taiwii","name":"Taiwii","id":228784253,"id_str":"228784253","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1486523287475826690,"in_reply_to_status_id_str":"1486523287475826690","in_reply_to_user_id":28566054,"in_reply_to_user_id_str":"28566054","in_reply_to_screen_name":"cremrick","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133094065\/35030016_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133094065\/35030016_2_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":918439531749302275,"id_str":"918439531749302275","name":"CECIL - DEE","screen_name":"CECILPYLE2","location":"","description":"Retired,Relaxed,& - observing the World as it rotates daily without worrying about it.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1106,"friends_count":1368,"listed_count":1,"created_at":"Thu - Oct 12 11:33:42 +0000 2017","favourites_count":1683,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5198,"lang":null,"status":{"created_at":"Sat - Feb 26 07:48:10 +0000 2022","id":1497478580502241281,"id_str":"1497478580502241281","text":"@MysterySolvent - Please Big Pussy I have a wife and 3 litters to feed. \u263a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MysterySolvent","name":"Mystery - Solvent","id":1094713876132872192,"id_str":"1094713876132872192","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497456510565339141,"in_reply_to_status_id_str":"1497456510565339141","in_reply_to_user_id":1094713876132872192,"in_reply_to_user_id_str":"1094713876132872192","in_reply_to_screen_name":"MysterySolvent","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/994002850215878657\/7Kwmxx48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/994002850215878657\/7Kwmxx48_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918439531749302275\/1527423205","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":67082909,"id_str":"67082909","name":"Roberto - Cipriani \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83c\uddea\ud83c\uddfa\ud83c\uddfb\ud83c\uddea","screen_name":"cipriani_rob","location":"Los - Angeles, CA","description":"Data scientist, BioEvol MSc, PhD UofChicago, 20 - yrs in NatSci research, mentor, consultant, 11 yrs in tech. Facts, science, - and history matter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":484,"listed_count":1,"created_at":"Wed - Aug 19 18:45:49 +0000 2009","favourites_count":16212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1563,"lang":null,"status":{"created_at":"Fri - Mar 25 02:51:20 +0000 2022","id":1507188355154423808,"id_str":"1507188355154423808","text":"@RadioFreeTom - Thank you for this thread. Your technical opinions about these issues are - a source of intellectual peace.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507184611608080385,"in_reply_to_status_id_str":"1507184611608080385","in_reply_to_user_id":459872442,"in_reply_to_user_id_str":"459872442","in_reply_to_screen_name":"RadioFreeTom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307058976236941312\/p4JWVbPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307058976236941312\/p4JWVbPC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67082909\/1355420429","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1209049146910478336,"id_str":"1209049146910478336","name":"\u03a3\u03c4\u03b1\u03cd\u03c1\u03bf\u03c2 - \u039c\u03bf\u03c5\u03c3\u03bb\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c2 | - SHARIRAH \u00a9","screen_name":"wG7Z4hvi74yYtT9","location":"\u03a8\u03cd\u03c7\u03c9\u03c3\u03b7 - \u03a3\u03c7\u03b9\u03b6\u03bf\u03b5\u03b9\u03b4\u03ae\u03c2 - \u039a\u03b9\u03ac\u03c4\u03bf - -","description":"75% \u03a0\u03c1\u03ce\u03c4\u03bf\u03c2 \u03a3\u03c4\u03b7\u03bd - \u03a0\u03b1\u03bd\u03b5\u03bb\u03bb\u03ae\u03bd\u03b9\u03b1 \u03a8\u03b7\u03c6\u03bf\u03c6\u03bf\u03c1\u03af\u03b1 - \u039a\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 - \u03c4\u03bf\u03c5 \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03bf\u03cd - \u0394\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 Gr Net \u039c\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf - \u039a\u03b1\u03bd\u03ac\u03bb\u03b9 #Hellas 1994 2015 - Prime Minister Principal - - Producer -","url":"https:\/\/t.co\/dlC5Wo6FGP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dlC5Wo6FGP","expanded_url":"https:\/\/www.youtube.com\/channel\/UCi6oWNB3eGVlbUA9YZrZ92w\/videos","display_url":"youtube.com\/channel\/UCi6oW\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":944,"listed_count":0,"created_at":"Mon - Dec 23 09:52:47 +0000 2019","favourites_count":2195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10170,"lang":null,"status":{"created_at":"Sat - Mar 19 16:56:24 +0000 2022","id":1505226694663286788,"id_str":"1505226694663286788","text":"@KBakoyannis - https:\/\/t.co\/kp2ncgcUiL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KBakoyannis","name":"Kostas - Bakoyannis","id":427630189,"id_str":"427630189","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/kp2ncgcUiL","expanded_url":"https:\/\/www.youtube.com\/watch?v=BgkuytI4fDE","display_url":"youtube.com\/watch?v=Bgkuyt\u2026","indices":[13,36]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1493163218730110978,"in_reply_to_status_id_str":"1493163218730110978","in_reply_to_user_id":427630189,"in_reply_to_user_id_str":"427630189","in_reply_to_screen_name":"KBakoyannis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491650932656021506\/h7qgbJhA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491650932656021506\/h7qgbJhA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1209049146910478336\/1609242149","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3291228935,"id_str":"3291228935","name":"David - Hynes","screen_name":"dh5711","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":40,"listed_count":0,"created_at":"Wed - May 20 12:23:44 +0000 2015","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - May 04 07:34:45 +0000 2016","id":727763379805392896,"id_str":"727763379805392896","text":"@TrafficWalesS - stuck on x4 inside lane bottom half of Manor Way Why always inside lane??","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrafficWalesS","name":"Traffic - Wales South","id":369967094,"id_str":"369967094","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":727757811447439364,"in_reply_to_status_id_str":"727757811447439364","in_reply_to_user_id":369967094,"in_reply_to_user_id_str":"369967094","in_reply_to_screen_name":"TrafficWalesS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34248380,"id_str":"34248380","name":"Pat - Moran","screen_name":"msclsu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":898,"listed_count":0,"created_at":"Wed - Apr 22 11:47:17 +0000 2009","favourites_count":5115,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5434,"lang":null,"status":{"created_at":"Sat - Mar 26 04:28:17 +0000 2022","id":1507575141953384450,"id_str":"1507575141953384450","text":"RT - @JYSexton: The Ginni Thomas story is bigger than Clarence Thomas or his position - on the Supreme Court.\n\nIt reveals what a lot of us have\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JYSexton","name":"Jared - Yates Sexton","id":325385270,"id_str":"325385270","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:25:25 +0000 2022","id":1507453624607195138,"id_str":"1507453624607195138","text":"The - Ginni Thomas story is bigger than Clarence Thomas or his position on the Supreme - Court.\n\nIt reveals what a lot\u2026 https:\/\/t.co\/OmQ5mc2oYP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OmQ5mc2oYP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507453624607195138","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7528,"favorite_count":31529,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7528,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307661968430505985\/IFX6G6wI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307661968430505985\/IFX6G6wI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":482466308,"id_str":"482466308","name":"Jim - Isaacs","screen_name":"JimIsaacs1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":191,"listed_count":0,"created_at":"Fri - Feb 03 23:12:29 +0000 2012","favourites_count":33760,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Feb 25 19:57:30 +0000 2022","id":1497299738227470337,"id_str":"1497299738227470337","text":"RT - @MarshaBlackburn: Why did Joe Biden give Xi Jinping intel on Putin\u2019s - plans?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 19:45:22 +0000 2022","id":1497296684312940558,"id_str":"1497296684312940558","text":"Why - did Joe Biden give Xi Jinping intel on Putin\u2019s plans?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1976,"favorite_count":7474,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1976,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":940512481163739136,"id_str":"940512481163739136","name":"David - Blake \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddfa\ud83c\udde6","screen_name":"Davidwblake52","location":"Edinburgh, - Scotland","description":"Opiniated, Stubborn and fiercely Scottish! interests - are Travel, Books Entertainment General News History Politics Science & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":596,"listed_count":7,"created_at":"Tue - Dec 12 09:23:44 +0000 2017","favourites_count":39459,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18356,"lang":null,"status":{"created_at":"Fri - Mar 25 20:59:09 +0000 2022","id":1507462110212767748,"id_str":"1507462110212767748","text":"RT - @PeterStefanovi2: Boris Johnson has called for P&O boss to resign after - admitting sackings broke the law\n\nIt\u2019s time the PM followed his\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeterStefanovi2","name":"Peter - Stefanovic","id":2441666255,"id_str":"2441666255","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:00:58 +0000 2022","id":1507447469197692962,"id_str":"1507447469197692962","text":"Boris - Johnson has called for P&O boss to resign after admitting sackings broke - the law\n\nIt\u2019s time the PM followed h\u2026 https:\/\/t.co\/EgPdz1OV10","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EgPdz1OV10","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507447469197692962","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1138,"favorite_count":3627,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1138,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452752004422451201\/xAMexDCO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452752004422451201\/xAMexDCO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940512481163739136\/1646318711","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1063228415300517888,"id_str":"1063228415300517888","name":"Phyllis - Young","screen_name":"Phyllis75000260","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":85,"listed_count":0,"created_at":"Fri - Nov 16 00:33:02 +0000 2018","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Oct 13 22:51:59 +0000 2020","id":1316149714132381697,"id_str":"1316149714132381697","text":"RT - @NicolleDWallace: Jesus this is good","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NicolleDWallace","name":"Nicolle - Wallace","id":860555190,"id_str":"860555190","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Oct 13 19:32:17 +0000 2020","id":1316099457369468928,"id_str":"1316099457369468928","text":"Jesus - this is good https:\/\/t.co\/EvvQ71dp4R","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EvvQ71dp4R","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1316058801456308224","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1316058801456308224,"quoted_status_id_str":"1316058801456308224","retweet_count":20106,"favorite_count":44295,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1316058801456308224,"quoted_status_id_str":"1316058801456308224","retweet_count":20106,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303997478346223617,"id_str":"1303997478346223617","name":"\ud83c\udf39SZ_ume - sakura\ud83c\udf38","screen_name":"umesakura13","location":"","description":"\u5927\u4eba\u30bb\u30af\u30e9\u30d0\u3067\u3059\u30025\u4eba\u3092\u5fdc\u63f4\u3057\u3066\u307e\u3059\ud83c\udf39","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":122,"friends_count":1401,"listed_count":0,"created_at":"Thu - Sep 10 10:03:30 +0000 2020","favourites_count":13303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":530,"lang":null,"status":{"created_at":"Sat - Mar 26 08:44:57 +0000 2022","id":1507639734231007234,"id_str":"1507639734231007234","text":"RT - @matsuhonon: \u8001\u5316\u5f8c\u306e\u59ff\u3067\u9854\u3092\u5408\u308f\u305b\u306a\u3044\u3088\u3046\u306b\u914d\u616e\u3057\u3066\u304f\u308c\u305f\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306e\u611b\ud83d\ude0a - https:\/\/t.co\/49RaDPCuSo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matsuhonon","name":"\u677e\u672c\u7a42\u9999","id":846301266623946752,"id_str":"846301266623946752","indices":[3,14]}],"urls":[],"media":[{"id":1507618528601411590,"id_str":"1507618528601411590","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","url":"https:\/\/t.co\/49RaDPCuSo","display_url":"pic.twitter.com\/49RaDPCuSo","expanded_url":"https:\/\/twitter.com\/matsuhonon\/status\/1507618533231902724\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":1706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1507618533231902724,"source_status_id_str":"1507618533231902724","source_user_id":846301266623946752,"source_user_id_str":"846301266623946752"}]},"extended_entities":{"media":[{"id":1507618528601411590,"id_str":"1507618528601411590","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","url":"https:\/\/t.co\/49RaDPCuSo","display_url":"pic.twitter.com\/49RaDPCuSo","expanded_url":"https:\/\/twitter.com\/matsuhonon\/status\/1507618533231902724\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":1706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1507618533231902724,"source_status_id_str":"1507618533231902724","source_user_id":846301266623946752,"source_user_id_str":"846301266623946752"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:20:43 +0000 2022","id":1507618533231902724,"id_str":"1507618533231902724","text":"\u8001\u5316\u5f8c\u306e\u59ff\u3067\u9854\u3092\u5408\u308f\u305b\u306a\u3044\u3088\u3046\u306b\u914d\u616e\u3057\u3066\u304f\u308c\u305f\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306e\u611b\ud83d\ude0a - https:\/\/t.co\/49RaDPCuSo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507618528601411590,"id_str":"1507618528601411590","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","url":"https:\/\/t.co\/49RaDPCuSo","display_url":"pic.twitter.com\/49RaDPCuSo","expanded_url":"https:\/\/twitter.com\/matsuhonon\/status\/1507618533231902724\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":1706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507618528601411590,"id_str":"1507618528601411590","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwjEGYVkAYfh7Y.jpg","url":"https:\/\/t.co\/49RaDPCuSo","display_url":"pic.twitter.com\/49RaDPCuSo","expanded_url":"https:\/\/twitter.com\/matsuhonon\/status\/1507618533231902724\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":1706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1051,"favorite_count":5640,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":1051,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347464714402422791\/FVbXbR81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347464714402422791\/FVbXbR81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1303997478346223617\/1624699078","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":963133818478780417,"id_str":"963133818478780417","name":"Tinker - Bubba","screen_name":"nanamanu123","location":"Cape Coast, Ghana","description":"A - True Manchester United fan. Entrepreneur","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":2074,"listed_count":0,"created_at":"Mon - Feb 12 19:32:51 +0000 2018","favourites_count":128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1067,"lang":null,"status":{"created_at":"Sat - Oct 31 06:35:27 +0000 2020","id":1322426944156303360,"id_str":"1322426944156303360","text":"RT - @CNN: An 85-year-old primary school in Shanghai has been lifted off the ground - \u2014 in its entirety \u2014 and relocated using new technology du\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 31 06:30:00 +0000 2020","id":1322425571008106497,"id_str":"1322425571008106497","text":"An - 85-year-old primary school in Shanghai has been lifted off the ground \u2014 - in its entirety \u2014 and relocated using ne\u2026 https:\/\/t.co\/CXy6Xy0Hlv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CXy6Xy0Hlv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1322425571008106497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1042,"favorite_count":3665,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1042,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/995579671382282240\/CX1HInyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/995579671382282240\/CX1HInyZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875763212,"id_str":"875763212","name":"Rebecca - Doolin","screen_name":"BexDoolin","location":"Ireland","description":"Maynooth - Uni Director of External Relations. Mom of 2 young hooligans. Ex-Pat American. - Mainer for life. Views are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":306,"friends_count":855,"listed_count":3,"created_at":"Fri - Oct 12 14:39:23 +0000 2012","favourites_count":3838,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1147,"lang":null,"status":{"created_at":"Thu - Mar 17 13:43:36 +0000 2022","id":1504453398208393218,"id_str":"1504453398208393218","text":"Happy - St Patrick\u2019s Day from Boston! Many thanks to \u2066@Irishaporg\u2069 - for their generous support of the \u2066@MU_Business\u2069 L\u2026 https:\/\/t.co\/ETGGy9z6Qn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Irishaporg","name":"Irish - American Partnership","id":516075618,"id_str":"516075618","indices":[52,63]},{"screen_name":"MU_Business","name":"Maynooth - Business","id":479616093,"id_str":"479616093","indices":[100,112]}],"urls":[{"url":"https:\/\/t.co\/ETGGy9z6Qn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504453398208393218","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059735446878588928\/iY-HH42l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059735446878588928\/iY-HH42l_normal.jpg","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":617451462,"id_str":"617451462","name":"Amy - Comer","screen_name":"sullafausta","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":1117,"listed_count":0,"created_at":"Sun - Jun 24 18:51:34 +0000 2012","favourites_count":41098,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":211,"lang":null,"status":{"created_at":"Wed - Mar 23 17:55:39 +0000 2022","id":1506691158294118401,"id_str":"1506691158294118401","text":"Fantastic! - https:\/\/t.co\/MJBbn9Kpmt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MJBbn9Kpmt","expanded_url":"https:\/\/twitter.com\/RebcatC\/status\/1506680348050087944","display_url":"twitter.com\/RebcatC\/status\u2026","indices":[11,34]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506680348050087944,"quoted_status_id_str":"1506680348050087944","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505484121589620741\/G1wM3M6w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505484121589620741\/G1wM3M6w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1161296793398890496,"id_str":"1161296793398890496","name":"Temmy - runsewe\ud83c\udfa3","screen_name":"TemmyRunsewe","location":"Lagos, Nigeria","description":"follow - mi , I will follow back immediately @chelseafc\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f\n\n\nFootball - fans \u26bd\/tennis fans\ud83c\udfbe \/Titan''s observer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4414,"friends_count":4694,"listed_count":4,"created_at":"Tue - Aug 13 15:21:46 +0000 2019","favourites_count":13268,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13309,"lang":null,"status":{"created_at":"Fri - Mar 25 21:51:00 +0000 2022","id":1507475159774552071,"id_str":"1507475159774552071","text":"@90sSophie - @coacheguavoen Thanking for what @90sSophie \nFor getting a draw","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"90sSophie","name":"sophia","id":719570209393156097,"id_str":"719570209393156097","indices":[0,10]},{"screen_name":"coacheguavoen","name":"Austin - Eguavoen","id":1410058333143318530,"id_str":"1410058333143318530","indices":[11,25]},{"screen_name":"90sSophie","name":"sophia","id":719570209393156097,"id_str":"719570209393156097","indices":[45,55]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507472135224184834,"in_reply_to_status_id_str":"1507472135224184834","in_reply_to_user_id":719570209393156097,"in_reply_to_user_id_str":"719570209393156097","in_reply_to_screen_name":"90sSophie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235938825383350272\/cEnR03HX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235938825383350272\/cEnR03HX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161296793398890496\/1622406888","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1209117347602194432,"id_str":"1209117347602194432","name":"Andrew","screen_name":"Andrew73837752","location":"","description":"good - person","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":118,"friends_count":1348,"listed_count":0,"created_at":"Mon - Dec 23 14:23:49 +0000 2019","favourites_count":6350,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":174,"lang":null,"status":{"created_at":"Wed - Jan 13 19:51:16 +0000 2021","id":1349443919914946567,"id_str":"1349443919914946567","text":"@MarcusRashford - THE GOVERNMENT. MUST. SPEND \u00a330 ON EACH CHILD FOOD RATION WITH FREE. - LAPTOP FOR ALL. POOR FAMILIES. NOW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcusRashford","name":"Marcus - Rashford MBE","id":734492654755577858,"id_str":"734492654755577858","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":734492654755577858,"in_reply_to_user_id_str":"734492654755577858","in_reply_to_screen_name":"MarcusRashford","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1209117640213639170\/duhejo_s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1209117640213639170\/duhejo_s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":928638532608057344,"id_str":"928638532608057344","name":"Vita - Salna","screen_name":"salna_vita","location":"Charlotte, NC","description":"Elementary - 4th Grade German teacher, Charlotte, NC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":549,"listed_count":0,"created_at":"Thu - Nov 09 15:00:54 +0000 2017","favourites_count":8724,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":171,"lang":null,"status":{"created_at":"Mon - Feb 21 23:50:40 +0000 2022","id":1495908864235122691,"id_str":"1495908864235122691","text":"RT - @mercola: These people have gone too far, freeze their assets.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mercola","name":"Dr. - Joseph Mercola","id":12524522,"id_str":"12524522","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 21 13:17:31 +0000 2022","id":1495749527822872577,"id_str":"1495749527822872577","text":"These - people have gone too far, freeze their assets. https:\/\/t.co\/m4qwxO3WZR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m4qwxO3WZR","expanded_url":"https:\/\/twitter.com\/JamesMelville\/status\/1495337157615140867","display_url":"twitter.com\/JamesMelville\/\u2026","indices":[53,76]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1495337157615140867,"quoted_status_id_str":"1495337157615140867","retweet_count":85,"favorite_count":318,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1495337157615140867,"quoted_status_id_str":"1495337157615140867","retweet_count":85,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/928977230121918465\/-1XXk59G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/928977230121918465\/-1XXk59G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/928638532608057344\/1598262829","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2778662314,"id_str":"2778662314","name":"Millzzzz","screen_name":"jmillzzzz94","location":"Charleston, - SC","description":"i was working as a waitress in a cocktail bar.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":456,"listed_count":0,"created_at":"Sun - Sep 21 06:30:12 +0000 2014","favourites_count":124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Fri - Oct 30 04:17:22 +0000 2020","id":1322029806792355841,"id_str":"1322029806792355841","text":"@RealSkipBayless - I introduce you to the fair weather fan! https:\/\/t.co\/QZWGd8G6Gz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealSkipBayless","name":"Skip - Bayless","id":43139414,"id_str":"43139414","indices":[0,16]}],"urls":[],"media":[{"id":1322029800316379136,"id_str":"1322029800316379136","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EljLGVZWoAAo0A-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EljLGVZWoAAo0A-.jpg","url":"https:\/\/t.co\/QZWGd8G6Gz","display_url":"pic.twitter.com\/QZWGd8G6Gz","expanded_url":"https:\/\/twitter.com\/jmillzzzz94\/status\/1322029806792355841\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1322029800316379136,"id_str":"1322029800316379136","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EljLGVZWoAAo0A-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EljLGVZWoAAo0A-.jpg","url":"https:\/\/t.co\/QZWGd8G6Gz","display_url":"pic.twitter.com\/QZWGd8G6Gz","expanded_url":"https:\/\/twitter.com\/jmillzzzz94\/status\/1322029806792355841\/photo\/1","type":"animated_gif","sizes":{"small":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EljLGVZWoAAo0A-.mp4"}]}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1321997457153167361,"in_reply_to_status_id_str":"1321997457153167361","in_reply_to_user_id":43139414,"in_reply_to_user_id_str":"43139414","in_reply_to_screen_name":"RealSkipBayless","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242303236071133184\/LkfLcmeZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242303236071133184\/LkfLcmeZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778662314\/1585023147","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":593916616,"id_str":"593916616","name":"Icecream - fanatic","screen_name":"IceScream_Wolf","location":"Canada ","description":"Here - for the news and a heads up on the worlds end","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":1538,"listed_count":0,"created_at":"Tue - May 29 18:04:54 +0000 2012","favourites_count":5364,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Tue - May 11 04:00:54 +0000 2021","id":1391966521518395396,"id_str":"1391966521518395396","text":"@AshaRangappa_ - Nah","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AshaRangappa_","name":"Asha - Rangappa","id":510464011,"id_str":"510464011","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1391950712095920129,"in_reply_to_status_id_str":"1391950712095920129","in_reply_to_user_id":510464011,"in_reply_to_user_id_str":"510464011","in_reply_to_screen_name":"AshaRangappa_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159516459351052289\/Zlw_2xxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159516459351052289\/Zlw_2xxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/593916616\/1565285242","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205888951233531905,"id_str":"1205888951233531905","name":"From_the_road","screen_name":"bealfeirsteabu","location":"","description":"Aim - to challenge crass politicians who r curse of the community like landlordism, - church n modern carpetbaggers.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":113,"listed_count":0,"created_at":"Sat - Dec 14 16:35:19 +0000 2019","favourites_count":188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2408,"lang":null,"status":{"created_at":"Wed - Dec 15 14:35:33 +0000 2021","id":1471126787975434253,"id_str":"1471126787975434253","text":"RT - @brehonisbest: I have no doubt that the media will now rush to former top - PSNI intelligence commander (DCC) and present head of An Garda\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brehonisbest","name":"Paul - Larkin","id":100735669,"id_str":"100735669","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 15 10:25:54 +0000 2021","id":1471063961655201796,"id_str":"1471063961655201796","text":"I - have no doubt that the media will now rush to former top PSNI intelligence - commander (DCC) and present head of An\u2026 https:\/\/t.co\/FvnOQEef3z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FvnOQEef3z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471063961655201796","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"39c050dc294a9763","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/39c050dc294a9763.json","place_type":"city","name":"Donegal","full_name":"Donegal, - Ireland","country_code":"IE","country":"Ireland","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-8.8049977,54.4592109],[-6.9275837,54.4592109],[-6.9275837,55.3828521],[-8.8049977,55.3828521]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":184,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":77,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380880725600313344\/wLQX_9FF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380880725600313344\/wLQX_9FF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":300984861,"id_str":"300984861","name":"Vernon - Tapalla","screen_name":"VernonTapalla","location":"Makati City, Philippines","description":"I - am a Corporate Trainer and Motivational Speaker (my firm is called Communications - Specialists). I love shopping, eating out, and European travel. :-)","url":"https:\/\/t.co\/IQ5JAevFQD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IQ5JAevFQD","expanded_url":"http:\/\/vernontapalla.com","display_url":"vernontapalla.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":176,"friends_count":155,"listed_count":2,"created_at":"Wed - May 18 17:45:02 +0000 2011","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":397,"lang":null,"status":{"created_at":"Wed - Jan 27 18:16:04 +0000 2021","id":1354493392277757952,"id_str":"1354493392277757952","text":"@sunny - Only two people I care about on The View - Sunny and Joy.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sunny","name":"Sunny - Hostin","id":139847909,"id_str":"139847909","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1354473333044240389,"in_reply_to_status_id_str":"1354473333044240389","in_reply_to_user_id":139847909,"in_reply_to_user_id_str":"139847909","in_reply_to_screen_name":"sunny","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359988241\/VERNON_TAPALLA_REVISION_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359988241\/VERNON_TAPALLA_REVISION_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300984861\/1412860491","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276171885248745472,"id_str":"1276171885248745472","name":"Nicholas - Rodr\u00edguez","screen_name":"NicholasRodrgu4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":51,"listed_count":0,"created_at":"Thu - Jun 25 15:14:32 +0000 2020","favourites_count":67,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Sat - May 22 23:59:15 +0000 2021","id":1396254360892551168,"id_str":"1396254360892551168","text":"RT - @latinus_us: La agrupaci\u00f3n italiana Maneskin gana el Festival de Eurovisi\u00f3n - 2021.\n#Latinus #Informaci\u00f3nParaTi\nhttps:\/\/t.co\/RQ3uIvsGYn","truncated":false,"entities":{"hashtags":[{"text":"Latinus","indices":[85,93]},{"text":"Informaci\u00f3nParaTi","indices":[94,112]}],"symbols":[],"user_mentions":[{"screen_name":"latinus_us","name":"Latinus","id":1209183944807272448,"id_str":"1209183944807272448","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/RQ3uIvsGYn","expanded_url":"https:\/\/latinus.us\/2021\/05\/22\/agrupacion-italiana-maneskin-gana-festival-eurovision-2021\/","display_url":"latinus.us\/2021\/05\/22\/agr\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - May 22 23:56:40 +0000 2021","id":1396253712214003717,"id_str":"1396253712214003717","text":"La - agrupaci\u00f3n italiana Maneskin gana el Festival de Eurovisi\u00f3n 2021.\n#Latinus - #Informaci\u00f3nParaTi\nhttps:\/\/t.co\/RQ3uIvsGYn","truncated":false,"entities":{"hashtags":[{"text":"Latinus","indices":[69,77]},{"text":"Informaci\u00f3nParaTi","indices":[78,96]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RQ3uIvsGYn","expanded_url":"https:\/\/latinus.us\/2021\/05\/22\/agrupacion-italiana-maneskin-gana-festival-eurovision-2021\/","display_url":"latinus.us\/2021\/05\/22\/agr\u2026","indices":[97,120]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276172052303618049\/txulpyOT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276172052303618049\/txulpyOT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2831913636,"id_str":"2831913636","name":"Sheri - Owen","screen_name":"mezsop","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":70,"friends_count":1716,"listed_count":1,"created_at":"Thu - Sep 25 15:14:58 +0000 2014","favourites_count":220,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":211,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629793858512121857\/hBlXHWRj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629793858512121857\/hBlXHWRj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":600259502,"id_str":"600259502","name":"Steve - Bundred","screen_name":"SBundred","location":"","description":"Ex CEO of the - Audit Commission, Improvement and Development Agency for Local Government - and Camden Council. Ex chair of NHS regulator Monitor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":483,"listed_count":2,"created_at":"Tue - Jun 05 17:13:26 +0000 2012","favourites_count":777,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":856,"lang":null,"status":{"created_at":"Fri - Mar 25 23:52:56 +0000 2022","id":1507505848041586691,"id_str":"1507505848041586691","text":"Seeing - shows like the wonderful #smallisland @NationalTheatre is what makes London - such a great place to live. Lond\u2026 https:\/\/t.co\/bJL1sa1Oui","truncated":true,"entities":{"hashtags":[{"text":"smallisland","indices":[32,44]}],"symbols":[],"user_mentions":[{"screen_name":"NationalTheatre","name":"National - Theatre","id":23056885,"id_str":"23056885","indices":[45,61]}],"urls":[{"url":"https:\/\/t.co\/bJL1sa1Oui","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507505848041586691","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452245110515773440\/MwY1ceo0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452245110515773440\/MwY1ceo0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1147017356700528641,"id_str":"1147017356700528641","name":"Ibrahim - H. Bashir","screen_name":"ibraahimBashir","location":"Cairo, Egypt","description":"","url":"https:\/\/t.co\/RG5C5EMTE9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RG5C5EMTE9","expanded_url":"https:\/\/www.facebook.com\/ibraahim.samir.3","display_url":"facebook.com\/ibraahim.samir\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":415,"friends_count":183,"listed_count":1,"created_at":"Fri - Jul 05 05:40:23 +0000 2019","favourites_count":2313,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":352,"lang":null,"status":{"created_at":"Fri - Mar 18 11:30:04 +0000 2022","id":1504782181310345251,"id_str":"1504782181310345251","text":"@alihwarsame - Jimce wanaagsan.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alihwarsame","name":"Ali - H. Warsame","id":2771239073,"id_str":"2771239073","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504745249129836545,"in_reply_to_status_id_str":"1504745249129836545","in_reply_to_user_id":2771239073,"in_reply_to_user_id_str":"2771239073","in_reply_to_screen_name":"alihwarsame","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493231804333109251\/z6YUTUfg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493231804333109251\/z6YUTUfg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1147017356700528641\/1562379010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25045038,"id_str":"25045038","name":"Elissa - Kriesman","screen_name":"elissakk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":4511,"listed_count":0,"created_at":"Wed - Mar 18 08:13:28 +0000 2009","favourites_count":297,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Tue - May 12 13:14:53 +0000 2020","id":1260196750083710981,"id_str":"1260196750083710981","text":"RT - @disneyplus: Surprise! The original Broadway production of Hamilton, filmed - LIVE onstage at the Richard Rodgers Theatre, is now coming e\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"disneyplus","name":"Disney+","id":985916593065476096,"id_str":"985916593065476096","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - May 12 12:17:30 +0000 2020","id":1260182310512549888,"id_str":"1260182310512549888","text":"Surprise! - The original Broadway production of Hamilton, filmed LIVE onstage at the Richard - Rodgers Theatre, is now\u2026 https:\/\/t.co\/Bfq0s7T6Xq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Bfq0s7T6Xq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1260182310512549888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4823,"favorite_count":21457,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4823,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":899737780988805124,"id_str":"899737780988805124","name":"Ed - Gallagher","screen_name":"EdGalla63801933","location":"Hermitage, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":750,"listed_count":0,"created_at":"Mon - Aug 21 20:59:38 +0000 2017","favourites_count":461,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":68,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/899825880385687552\/LNaw8nCn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/899825880385687552\/LNaw8nCn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17300124,"id_str":"17300124","name":"revfritz","screen_name":"revfritz","location":"Hanover - PA","description":"Christian Pastor","url":"https:\/\/t.co\/SPnCmQNmeO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SPnCmQNmeO","expanded_url":"http:\/\/www.redeemersucc.com","display_url":"redeemersucc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":1539,"listed_count":2,"created_at":"Tue - Nov 11 01:36:23 +0000 2008","favourites_count":4404,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499673911853076480\/loPLLnpF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499673911853076480\/loPLLnpF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17300124\/1407966518","profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288581546853752837,"id_str":"1288581546853752837","name":"Austine - Chelsy","screen_name":"AustineChelsy","location":"Edo, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":196,"listed_count":0,"created_at":"Wed - Jul 29 21:06:15 +0000 2020","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Sun - Nov 21 10:08:34 +0000 2021","id":1462362291563810818,"id_str":"1462362291563810818","text":"@Naija_PR - 24\nInto the badlands\nGame of thrones\nMoney heist\nNikita","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Naija_PR","name":"Naija","id":1901298962,"id_str":"1901298962","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1462179707420651523,"in_reply_to_status_id_str":"1462179707420651523","in_reply_to_user_id":1901298962,"in_reply_to_user_id_str":"1901298962","in_reply_to_screen_name":"Naija_PR","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1495879476420485122\/lBdyNQLn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1495879476420485122\/lBdyNQLn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2892947607,"id_str":"2892947607","name":"Giuseppe - Pollara","screen_name":"pollaragiusepp1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":95,"listed_count":0,"created_at":"Wed - Nov 26 05:12:54 +0000 2014","favourites_count":3324,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Sun - Mar 06 23:28:28 +0000 2022","id":1500614321088335872,"id_str":"1500614321088335872","text":"RT - @nytimes: A New York Times team witnessed the moment that civilians were fired - upon in Irpin, Ukraine, just outside Kyiv. (This video co\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 22:00:08 +0000 2022","id":1500592088555360257,"id_str":"1500592088555360257","text":"A - New York Times team witnessed the moment that civilians were fired upon in - Irpin, Ukraine, just outside Kyiv. (Th\u2026 https:\/\/t.co\/RY7gkM6Yua","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RY7gkM6Yua","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500592088555360257","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3788,"favorite_count":7727,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3788,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1411774422772379652\/noriETqT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1411774422772379652\/noriETqT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282767692508868613,"id_str":"1282767692508868613","name":"Al - Ola","screen_name":"lasadeit","location":"England, United Kingdom","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":399,"listed_count":0,"created_at":"Mon - Jul 13 20:04:02 +0000 2020","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Mar 08 12:28:46 +0000 2021","id":1368901504824995840,"id_str":"1368901504824995840","text":"@KodydKodyNator - Who is Dr Shola?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KodydKodyNator","name":"KODY","id":356728120,"id_str":"356728120","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1368882456921800711,"in_reply_to_status_id_str":"1368882456921800711","in_reply_to_user_id":356728120,"in_reply_to_user_id_str":"356728120","in_reply_to_screen_name":"KodydKodyNator","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1284088947954659330\/HxRvIe9P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1284088947954659330\/HxRvIe9P_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":197146088,"id_str":"197146088","name":"ETS","screen_name":"2punny","location":"","description":"Always - On and Slightly Off. Passionate about Tech and Helping People Smile.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1176,"friends_count":1649,"listed_count":3,"created_at":"Thu - Sep 30 19:21:00 +0000 2010","favourites_count":951,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2465,"lang":null,"status":{"created_at":"Fri - Mar 25 17:35:53 +0000 2022","id":1507410959983329281,"id_str":"1507410959983329281","text":"@BrightsidesWife - You call that a nose, sister you are minor league\u2026be proud of your schnoz\u2026..","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrightsidesWife","name":"MissyB","id":1491686828164120577,"id_str":"1491686828164120577","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506993873956270080,"in_reply_to_status_id_str":"1506993873956270080","in_reply_to_user_id":1491686828164120577,"in_reply_to_user_id_str":"1491686828164120577","in_reply_to_screen_name":"BrightsidesWife","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320879238015340544\/CCMEnS9O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320879238015340544\/CCMEnS9O_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":801465707905089536,"id_str":"801465707905089536","name":"Starryyohnny","screen_name":"starryyohnny","location":"Zaria\/Kaduna","description":"I - remain resolute to my dreams","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":568,"listed_count":0,"created_at":"Wed - Nov 23 16:41:30 +0000 2016","favourites_count":1320,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":441,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":156229278,"id_str":"156229278","name":"Kim - Munson","screen_name":"Kimm1963","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":744,"listed_count":1,"created_at":"Wed - Jun 16 10:37:50 +0000 2010","favourites_count":19039,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8031,"lang":null,"status":{"created_at":"Wed - Mar 02 20:47:52 +0000 2022","id":1499124352645746690,"id_str":"1499124352645746690","text":"RT - @ananavarro: Any resemblance is purely coincidental.\n\n(Apologies to screeching - hyenas) https:\/\/t.co\/PVKTfmkgOj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ananavarro","name":"Ana - Navarro-C\u00e1rdenas","id":19568591,"id_str":"19568591","indices":[3,14]}],"urls":[],"media":[{"id":1499056473808244740,"id_str":"1499056473808244740","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","url":"https:\/\/t.co\/PVKTfmkgOj","display_url":"pic.twitter.com\/PVKTfmkgOj","expanded_url":"https:\/\/twitter.com\/ananavarro\/status\/1499056477025275912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"},"large":{"w":1245,"h":1244,"resize":"fit"}},"source_status_id":1499056477025275912,"source_status_id_str":"1499056477025275912","source_user_id":19568591,"source_user_id_str":"19568591"}]},"extended_entities":{"media":[{"id":1499056473808244740,"id_str":"1499056473808244740","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","url":"https:\/\/t.co\/PVKTfmkgOj","display_url":"pic.twitter.com\/PVKTfmkgOj","expanded_url":"https:\/\/twitter.com\/ananavarro\/status\/1499056477025275912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"},"large":{"w":1245,"h":1244,"resize":"fit"}},"source_status_id":1499056477025275912,"source_status_id_str":"1499056477025275912","source_user_id":19568591,"source_user_id_str":"19568591"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 16:18:09 +0000 2022","id":1499056477025275912,"id_str":"1499056477025275912","text":"Any - resemblance is purely coincidental.\n\n(Apologies to screeching hyenas) https:\/\/t.co\/PVKTfmkgOj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1499056473808244740,"id_str":"1499056473808244740","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","url":"https:\/\/t.co\/PVKTfmkgOj","display_url":"pic.twitter.com\/PVKTfmkgOj","expanded_url":"https:\/\/twitter.com\/ananavarro\/status\/1499056477025275912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"},"large":{"w":1245,"h":1244,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1499056473808244740,"id_str":"1499056473808244740","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FM2366uXEAQJ5Dg.jpg","url":"https:\/\/t.co\/PVKTfmkgOj","display_url":"pic.twitter.com\/PVKTfmkgOj","expanded_url":"https:\/\/twitter.com\/ananavarro\/status\/1499056477025275912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":679,"resize":"fit"},"medium":{"w":1200,"h":1199,"resize":"fit"},"large":{"w":1245,"h":1244,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5810,"favorite_count":43165,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5810,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18650059,"id_str":"18650059","name":"Daniel - Chu","screen_name":"chudetat","location":"Los Angeles, CA","description":"Brand - and growth leader and innovator","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":108,"friends_count":558,"listed_count":3,"created_at":"Mon - Jan 05 22:53:02 +0000 2009","favourites_count":10025,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3099,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1482550141437427713\/vlH9ldxB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1482550141437427713\/vlH9ldxB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18650059\/1621732487","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":464158240,"id_str":"464158240","name":"MsRevwa","screen_name":"Prevwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":377,"listed_count":0,"created_at":"Sat - Jan 14 22:35:00 +0000 2012","favourites_count":1066,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207533198889996288\/39ObVmno_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207533198889996288\/39ObVmno_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/464158240\/1576733325","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244884820993417218,"id_str":"1244884820993417218","name":"Angiechirombo1","screen_name":"Chirombo82","location":"","description":"Blessed","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":128,"listed_count":0,"created_at":"Tue - Mar 31 07:11:42 +0000 2020","favourites_count":163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244885831715782663\/KUF1sGMb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244885831715782663\/KUF1sGMb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1244884820993417218\/1603841341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1016434292669538304,"id_str":"1016434292669538304","name":"gerald - brennan","screen_name":"geraldb33041873","location":"Alabama, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1996,"friends_count":3506,"listed_count":0,"created_at":"Mon - Jul 09 21:29:54 +0000 2018","favourites_count":185262,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19510,"lang":null,"status":{"created_at":"Sat - Mar 26 10:04:48 +0000 2022","id":1507659825806782466,"id_str":"1507659825806782466","text":"RT - @BraveHeartZe: \ud83e\udd37\ud83c\udffe\u200d\u2642\ufe0fOur Rigged Reality - https:\/\/t.co\/1GQfd0cTfj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BraveHeartZe","name":"Zerkee\ud83d\udca5","id":1484748831485014021,"id_str":"1484748831485014021","indices":[3,16]}],"urls":[],"media":[{"id":1506937030525263875,"id_str":"1506937030525263875","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","url":"https:\/\/t.co\/1GQfd0cTfj","display_url":"pic.twitter.com\/1GQfd0cTfj","expanded_url":"https:\/\/twitter.com\/BraveHeartZe\/status\/1506937181578969090\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506937181578969090,"source_status_id_str":"1506937181578969090","source_user_id":1484748831485014021,"source_user_id_str":"1484748831485014021"}]},"extended_entities":{"media":[{"id":1506937030525263875,"id_str":"1506937030525263875","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","url":"https:\/\/t.co\/1GQfd0cTfj","display_url":"pic.twitter.com\/1GQfd0cTfj","expanded_url":"https:\/\/twitter.com\/BraveHeartZe\/status\/1506937181578969090\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506937181578969090,"source_status_id_str":"1506937181578969090","source_user_id":1484748831485014021,"source_user_id_str":"1484748831485014021","video_info":{"aspect_ratio":[9,16],"duration_millis":60032,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/320x568\/egf_Xwn3J9pe1eNv.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/480x852\/qn0gslGwQM1L2Zg8.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/720x1280\/cpgnlD6OYa3roTHZ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/pl\/O0lJJpNZn-0VFwPH.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 10:13:16 +0000 2022","id":1506937181578969090,"id_str":"1506937181578969090","text":"\ud83e\udd37\ud83c\udffe\u200d\u2642\ufe0fOur - Rigged Reality https:\/\/t.co\/1GQfd0cTfj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506937030525263875,"id_str":"1506937030525263875","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","url":"https:\/\/t.co\/1GQfd0cTfj","display_url":"pic.twitter.com\/1GQfd0cTfj","expanded_url":"https:\/\/twitter.com\/BraveHeartZe\/status\/1506937181578969090\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506937030525263875,"id_str":"1506937030525263875","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506937030525263875\/pu\/img\/93CKwCr6x30q8AP5.jpg","url":"https:\/\/t.co\/1GQfd0cTfj","display_url":"pic.twitter.com\/1GQfd0cTfj","expanded_url":"https:\/\/twitter.com\/BraveHeartZe\/status\/1506937181578969090\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":60032,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/320x568\/egf_Xwn3J9pe1eNv.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/480x852\/qn0gslGwQM1L2Zg8.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/vid\/720x1280\/cpgnlD6OYa3roTHZ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506937030525263875\/pu\/pl\/O0lJJpNZn-0VFwPH.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":153,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":87,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483613284750266373\/VBA8O-8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483613284750266373\/VBA8O-8V_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248355485490843655,"id_str":"1248355485490843655","name":"Love - Elshaddai","screen_name":"AhavaQueen","location":"Ghana","description":"Prophetic - Messenger Of God''s Agape Love, Mother & Grandmother, Godly-Rights Advocate, - Author, Love Revolutionary, CEO & Founder of Ahavah-Agape Nations.","url":"https:\/\/t.co\/v7tLiEqynE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/v7tLiEqynE","expanded_url":"http:\/\/www.pricelesslovenations.org","display_url":"pricelesslovenations.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":1114,"listed_count":0,"created_at":"Thu - Apr 09 21:03:00 +0000 2020","favourites_count":1640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":930,"lang":null,"status":{"created_at":"Fri - Dec 03 13:13:07 +0000 2021","id":1466757390867517452,"id_str":"1466757390867517452","text":"This - is the Love we were made to have in our hearts for each other!!! \ud83d\udc9e\ud83d\udc9e\ud83d\udc9e - https:\/\/t.co\/dtr7M9pPV1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1466757140568326147,"id_str":"1466757140568326147","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FFr32R9XwAMo-uv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFr32R9XwAMo-uv.jpg","url":"https:\/\/t.co\/dtr7M9pPV1","display_url":"pic.twitter.com\/dtr7M9pPV1","expanded_url":"https:\/\/twitter.com\/AhavaQueen\/status\/1466757390867517452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":631,"resize":"fit"},"large":{"w":828,"h":768,"resize":"fit"},"medium":{"w":828,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1466757140568326147,"id_str":"1466757140568326147","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/FFr32R9XwAMo-uv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFr32R9XwAMo-uv.jpg","url":"https:\/\/t.co\/dtr7M9pPV1","display_url":"pic.twitter.com\/dtr7M9pPV1","expanded_url":"https:\/\/twitter.com\/AhavaQueen\/status\/1466757390867517452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":631,"resize":"fit"},"large":{"w":828,"h":768,"resize":"fit"},"medium":{"w":828,"h":768,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427632985315102738\/HnEv00ey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427632985315102738\/HnEv00ey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248355485490843655\/1629139187","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723215376016916480,"id_str":"723215376016916480","name":"Deborah - Kiefaber","screen_name":"DKiefaber","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":304,"listed_count":0,"created_at":"Thu - Apr 21 18:22:37 +0000 2016","favourites_count":21811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13841,"lang":null,"status":{"created_at":"Fri - Mar 25 22:12:03 +0000 2022","id":1507480460141772800,"id_str":"1507480460141772800","text":"RT - @oskywosky: @djrothkopf @PrincessBravato @AlonPinkas @POTUS \ud83d\udc4a\ud83d\ude09 - https:\/\/t.co\/ZUTlLqSPtt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oskywosky","name":"\ud83d\udef9\u25e6\u2022\u25cf\u25c9\u273f\ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6 - \u0e4f\u0e23\u043a\u05e5\u0e2c\u0e4f\u0e23\u043a\u05e5 \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6 - \u273f\u25c9\u25cf\u2022\u25e6\ud83d\udef9","id":14127420,"id_str":"14127420","indices":[3,13]},{"screen_name":"djrothkopf","name":"David - Rothkopf","id":402888514,"id_str":"402888514","indices":[15,26]},{"screen_name":"PrincessBravato","name":"WeThePeople\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","id":752621952322318337,"id_str":"752621952322318337","indices":[27,43]},{"screen_name":"AlonPinkas","name":"Alon - Pinkas","id":885386329,"id_str":"885386329","indices":[44,55]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[56,62]}],"urls":[],"media":[{"id":1507341608362123265,"id_str":"1507341608362123265","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","url":"https:\/\/t.co\/ZUTlLqSPtt","display_url":"pic.twitter.com\/ZUTlLqSPtt","expanded_url":"https:\/\/twitter.com\/oskywosky\/status\/1507341690935390210\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":327,"resize":"fit"},"large":{"w":319,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":319,"h":327,"resize":"fit"}},"source_status_id":1507341690935390210,"source_status_id_str":"1507341690935390210","source_user_id":14127420,"source_user_id_str":"14127420"}]},"extended_entities":{"media":[{"id":1507341608362123265,"id_str":"1507341608362123265","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","url":"https:\/\/t.co\/ZUTlLqSPtt","display_url":"pic.twitter.com\/ZUTlLqSPtt","expanded_url":"https:\/\/twitter.com\/oskywosky\/status\/1507341690935390210\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":327,"resize":"fit"},"large":{"w":319,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":319,"h":327,"resize":"fit"}},"source_status_id":1507341690935390210,"source_status_id_str":"1507341690935390210","source_user_id":14127420,"source_user_id_str":"14127420"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:00:38 +0000 2022","id":1507341690935390210,"id_str":"1507341690935390210","text":"@djrothkopf - @PrincessBravato @AlonPinkas @POTUS \ud83d\udc4a\ud83d\ude09 https:\/\/t.co\/ZUTlLqSPtt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"djrothkopf","name":"David - Rothkopf","id":402888514,"id_str":"402888514","indices":[0,11]},{"screen_name":"PrincessBravato","name":"WeThePeople\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","id":752621952322318337,"id_str":"752621952322318337","indices":[12,28]},{"screen_name":"AlonPinkas","name":"Alon - Pinkas","id":885386329,"id_str":"885386329","indices":[29,40]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[41,47]}],"urls":[],"media":[{"id":1507341608362123265,"id_str":"1507341608362123265","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","url":"https:\/\/t.co\/ZUTlLqSPtt","display_url":"pic.twitter.com\/ZUTlLqSPtt","expanded_url":"https:\/\/twitter.com\/oskywosky\/status\/1507341690935390210\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":327,"resize":"fit"},"large":{"w":319,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":319,"h":327,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507341608362123265,"id_str":"1507341608362123265","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsnNOGXIAErjjp.png","url":"https:\/\/t.co\/ZUTlLqSPtt","display_url":"pic.twitter.com\/ZUTlLqSPtt","expanded_url":"https:\/\/twitter.com\/oskywosky\/status\/1507341690935390210\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":327,"resize":"fit"},"large":{"w":319,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":319,"h":327,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507331432053723140,"in_reply_to_status_id_str":"1507331432053723140","in_reply_to_user_id":402888514,"in_reply_to_user_id_str":"402888514","in_reply_to_screen_name":"djrothkopf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1144234828109365248,"id_str":"1144234828109365248","name":"Shehu - Ahmed","screen_name":"ShehuAh37402704","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":101,"listed_count":0,"created_at":"Thu - Jun 27 13:23:36 +0000 2019","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307338732765360130,"id_str":"1307338732765360130","name":"akinwande - amos","screen_name":"akinwandeamos5","location":"","description":"Grace","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":76,"listed_count":0,"created_at":"Sat - Sep 19 15:20:33 +0000 2020","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":195676049,"id_str":"195676049","name":"Hussaini - Umar","screen_name":"Bolankasea","location":"GOMBE STATE","description":"zikiri","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":89,"friends_count":1652,"listed_count":0,"created_at":"Mon - Sep 27 09:18:39 +0000 2010","favourites_count":588,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":328,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1011730747068223488\/urPzWDD0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011730747068223488\/urPzWDD0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2412650785,"id_str":"2412650785","name":"HAL9000","screen_name":"Tsipouro44","location":"Hadar, - Ethopia","description":"Homo Sapiens Sapiens. Twitto ergo sum. Quis custodiet - ipsos custodes? Takes perverse pleasure in trolling.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":418,"friends_count":2627,"listed_count":9,"created_at":"Wed - Mar 26 13:53:09 +0000 2014","favourites_count":22513,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33054,"lang":null,"status":{"created_at":"Fri - Mar 25 18:10:50 +0000 2022","id":1507419754025340930,"id_str":"1507419754025340930","text":"@nadirfotograf - @yelizimsevinim Tokat Tav\u015fan\u0131 \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/imQw8QS7Nv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nadirfotograf","name":"Nadir - Tarihi Foto\u011fraflar","id":902291736202006533,"id_str":"902291736202006533","indices":[0,14]},{"screen_name":"yelizimsevinim","name":"yelizimsevinim","id":873206497651589125,"id_str":"873206497651589125","indices":[15,30]}],"urls":[],"media":[{"id":1507419663688478720,"id_str":"1507419663688478720","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtuMo2XMAAeQfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtuMo2XMAAeQfM.jpg","url":"https:\/\/t.co\/imQw8QS7Nv","display_url":"pic.twitter.com\/imQw8QS7Nv","expanded_url":"https:\/\/twitter.com\/Tsipouro44\/status\/1507419754025340930\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":533,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507419663688478720,"id_str":"1507419663688478720","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FOtuMo2XMAAeQfM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOtuMo2XMAAeQfM.jpg","url":"https:\/\/t.co\/imQw8QS7Nv","display_url":"pic.twitter.com\/imQw8QS7Nv","expanded_url":"https:\/\/twitter.com\/Tsipouro44\/status\/1507419754025340930\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":533,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507409551745859599,"in_reply_to_status_id_str":"1507409551745859599","in_reply_to_user_id":902291736202006533,"in_reply_to_user_id_str":"902291736202006533","in_reply_to_screen_name":"nadirfotograf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497919877704818697\/PNu6_Oyi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497919877704818697\/PNu6_Oyi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2412650785\/1645917020","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":471589647,"id_str":"471589647","name":"Judy - Kaplan","screen_name":"JudyTatel","location":"Chicago, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":988,"listed_count":0,"created_at":"Mon - Jan 23 01:44:27 +0000 2012","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Nov 27 19:15:33 +0000 2021","id":1464674274313179149,"id_str":"1464674274313179149","text":"@AskTSA - What if I take a 6 oz package of white fish in its original plastic packing - wrap. And can I take that into Mexico","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AskTSA","name":"AskTSA","id":3292337961,"id_str":"3292337961","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1464668014608064512,"in_reply_to_status_id_str":"1464668014608064512","in_reply_to_user_id":3292337961,"in_reply_to_user_id_str":"3292337961","in_reply_to_screen_name":"AskTSA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":83047099,"id_str":"83047099","name":"george - waters","screen_name":"gwaters85","location":"long island ny","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":315,"friends_count":5008,"listed_count":1,"created_at":"Sat - Oct 17 03:37:32 +0000 2009","favourites_count":1055,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":246,"lang":null,"status":{"created_at":"Fri - Mar 25 00:58:46 +0000 2022","id":1507160024757547016,"id_str":"1507160024757547016","text":"@TheRealLatriceW - Thank God","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRealLatriceW","name":"Latrice - Walker","id":4025202275,"id_str":"4025202275","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507132579748716552,"in_reply_to_status_id_str":"1507132579748716552","in_reply_to_user_id":4025202275,"in_reply_to_user_id_str":"4025202275","in_reply_to_screen_name":"TheRealLatriceW","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1729601588,"id_str":"1729601588","name":"Suzanne - Q. Burke","screen_name":"SuzanneQBurke","location":"","description":"","url":"https:\/\/t.co\/2hd5wcKWxJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2hd5wcKWxJ","expanded_url":"http:\/\/www.hbhesq.com","display_url":"hbhesq.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":357,"listed_count":0,"created_at":"Wed - Sep 04 18:50:49 +0000 2013","favourites_count":5597,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Fri - Apr 02 11:46:01 +0000 2021","id":1377950445260451841,"id_str":"1377950445260451841","text":"RT - @laurenpeikoff: Never thought I would write something so personal publicly. - But the onus has fallen on me to be my own advocate for my #\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"laurenpeikoff","name":"Lauren - Peikoff","id":17773367,"id_str":"17773367","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 31 12:09:02 +0000 2021","id":1377231460751581184,"id_str":"1377231460751581184","text":"Never - thought I would write something so personal publicly. But the onus has fallen - on me to be my own advocate for\u2026 https:\/\/t.co\/kmJFUGRu5i","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kmJFUGRu5i","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1377231460751581184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":1713,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":445,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1059923640416956416\/DFJxGwg9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1059923640416956416\/DFJxGwg9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":488123722,"id_str":"488123722","name":"Leslie - Phelps","screen_name":"Lovejusticeunit","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":254,"listed_count":1,"created_at":"Fri - Feb 10 03:25:24 +0000 2012","favourites_count":13167,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5314,"lang":null,"status":{"created_at":"Fri - Mar 25 22:19:57 +0000 2022","id":1507482445486112770,"id_str":"1507482445486112770","text":"@seanhannity - Please resign. You broke your Oath of office. #ResignClarence","truncated":false,"entities":{"hashtags":[{"text":"ResignClarence","indices":[59,74]}],"symbols":[],"user_mentions":[{"screen_name":"seanhannity","name":"Sean - Hannity","id":41634520,"id_str":"41634520","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507390301601779714,"in_reply_to_status_id_str":"1507390301601779714","in_reply_to_user_id":41634520,"in_reply_to_user_id_str":"41634520","in_reply_to_screen_name":"seanhannity","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372969693682733056\/FS2GdJ19_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372969693682733056\/FS2GdJ19_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52258330,"id_str":"52258330","name":"ImeldaGarc\u00eda\ud83c\udf1f","screen_name":"imegarcia","location":"Dallas, - Texas","description":"Reportera de @AlDiaDallas, peri\u00f3dico en Espa\u00f1ol - de @DallasNews | Proudly @DallasNewsGuild |\ud83c\uddfa\ud83c\uddf8\ud83c\uddf2\ud83c\uddfd\ud83c\udff3\ufe0f\u200d\ud83c\udf08| - Cu\u00e9ntame tu historia \ud83d\udce9 imelda.garcia@aldiadallas.com","url":"https:\/\/t.co\/e35WPlNHRM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/e35WPlNHRM","expanded_url":"https:\/\/www.dallasnews.com\/author\/imelda-garcia\/","display_url":"dallasnews.com\/author\/imelda-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6046,"friends_count":5480,"listed_count":77,"created_at":"Tue - Jun 30 01:26:11 +0000 2009","favourites_count":9232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":13072,"lang":null,"status":{"created_at":"Fri - Mar 25 23:09:47 +0000 2022","id":1507494988996874241,"id_str":"1507494988996874241","text":"En - qu\u00e9 momento????\ud83e\udd2f https:\/\/t.co\/Kyi6Fykriy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kyi6Fykriy","expanded_url":"https:\/\/twitter.com\/year_progress\/status\/1507492540542562304","display_url":"twitter.com\/year_progress\/\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507492540542562304,"quoted_status_id_str":"1507492540542562304","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1438254768821047303\/GUUS3FRt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1438254768821047303\/GUUS3FRt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52258330\/1607552396","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1104138479414493186,"id_str":"1104138479414493186","name":"Suzyw","screen_name":"Suzyw27936136","location":"Chicago, - IL","description":"be kind \nlife long Democrat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":664,"friends_count":2585,"listed_count":1,"created_at":"Fri - Mar 08 21:55:02 +0000 2019","favourites_count":35460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27916,"lang":null,"status":{"created_at":"Fri - Mar 25 17:11:16 +0000 2022","id":1507404762236530694,"id_str":"1507404762236530694","text":"@ByronNoe6 - @seanlconnelly @fake_biden @AlsoWonderWoman @Out5p0ken @jsdpharmd Those that - just came in after the door\u2026 https:\/\/t.co\/BLOWfuYHBQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ByronNoe6","name":"Byron - Noe","id":1384322063389896705,"id_str":"1384322063389896705","indices":[0,10]},{"screen_name":"seanlconnelly","name":"Space - Pirate \u270c\ud83e\udd1f\ud83e\udd18 \ud83d\udc7d\u2620","id":53113527,"id_str":"53113527","indices":[11,25]},{"screen_name":"fake_biden","name":"FakeJoeBiden","id":1262456293157003272,"id_str":"1262456293157003272","indices":[26,37]},{"screen_name":"AlsoWonderWoman","name":"Wonder - Woman \ud83d\udc1d Demands Justice","id":57419364,"id_str":"57419364","indices":[38,54]},{"screen_name":"Out5p0ken","name":"Outspoken\u2122\ufe0f","id":3930472251,"id_str":"3930472251","indices":[55,65]},{"screen_name":"jsdpharmd","name":"Defund - Politics - Campaign Finance Reform","id":154322248,"id_str":"154322248","indices":[66,76]}],"urls":[{"url":"https:\/\/t.co\/BLOWfuYHBQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507404762236530694","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507399797099143228,"in_reply_to_status_id_str":"1507399797099143228","in_reply_to_user_id":1384322063389896705,"in_reply_to_user_id_str":"1384322063389896705","in_reply_to_screen_name":"ByronNoe6","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449103228377911298\/gPkRSDCD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449103228377911298\/gPkRSDCD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1104138479414493186\/1634327743","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":75387859,"id_str":"75387859","name":"Barbara - A. Genco","screen_name":"BarbaraAGenco","location":"Brooklyn NY","description":"Brooklyn - via Buffalo. Librarian, Reader, Reviewer, Salmagundian. Views are my own. - Lover of a NOLA-born LSU grad, King Cake, and Louisiana.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2206,"friends_count":4280,"listed_count":145,"created_at":"Fri - Sep 18 21:15:33 +0000 2009","favourites_count":83955,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42926,"lang":null,"status":{"created_at":"Sun - Mar 20 22:01:59 +0000 2022","id":1505665984987811843,"id_str":"1505665984987811843","text":"RT - @sljournal: Sunday night blues? Get ready for Monday! \n\nResources and Lesson - Plans for Women\u2019s History Month 2022\nhttps:\/\/t.co\/qQJXPMitm\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sljournal","name":"SchoolLibraryJournal","id":15740502,"id_str":"15740502","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 22:00:34 +0000 2022","id":1505665627180179464,"id_str":"1505665627180179464","text":"Sunday - night blues? Get ready for Monday! \n\nResources and Lesson Plans for Women\u2019s - History Month 2022\u2026 https:\/\/t.co\/MzB1Q7AulU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MzB1Q7AulU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505665627180179464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[103,126]}]},"source":"\u003ca - href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/844619765339439104\/haQovJw6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/844619765339439104\/haQovJw6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75387859\/1486871976","profile_link_color":"1B95E0","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87338497,"id_str":"87338497","name":"Gina - Maria Cohen","screen_name":"ginabirmcohen","location":"wellesley","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":1013,"listed_count":0,"created_at":"Wed - Nov 04 01:55:45 +0000 2009","favourites_count":22269,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":540,"lang":null,"status":{"created_at":"Tue - Feb 15 21:18:11 +0000 2022","id":1493696164939636742,"id_str":"1493696164939636742","text":"RT - @SarahBurris: So you \"accidentally\" took 3 performance-enhancing drugs? - Please...\n\nhttps:\/\/t.co\/jxzbsXJERd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SarahBurris","name":"Sarah - Burris \ud83c\uddfa\ud83c\udde6","id":40711129,"id_str":"40711129","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/jxzbsXJERd","expanded_url":"https:\/\/www.nytimes.com\/2022\/02\/14\/sports\/olympics\/valieva-drug-test-heart-medications.html","display_url":"nytimes.com\/2022\/02\/14\/spo\u2026","indices":[86,109]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 15 20:55:29 +0000 2022","id":1493690448598155264,"id_str":"1493690448598155264","text":"So - you \"accidentally\" took 3 performance-enhancing drugs? Please...\n\nhttps:\/\/t.co\/jxzbsXJERd","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jxzbsXJERd","expanded_url":"https:\/\/www.nytimes.com\/2022\/02\/14\/sports\/olympics\/valieva-drug-test-heart-medications.html","display_url":"nytimes.com\/2022\/02\/14\/spo\u2026","indices":[69,92]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":300,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":68,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584502650181386240\/e4spH8do_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584502650181386240\/e4spH8do_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":967659498134474752,"id_str":"967659498134474752","name":"TC","screen_name":"CraigTa48596266","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":1385,"listed_count":0,"created_at":"Sun - Feb 25 07:16:17 +0000 2018","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479864870594129922\/I3ph78Qs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479864870594129922\/I3ph78Qs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967659498134474752\/1641662255","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3083504580,"id_str":"3083504580","name":"Barb - B","screen_name":"Barb01089016","location":"Boston","description":"Looking - to learn about treatments for #CRPS #RSD & spread awareness 4 this disease - that has robbed my daughter''s independence & tortured her with pain","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":205,"listed_count":0,"created_at":"Sun - Mar 15 05:18:34 +0000 2015","favourites_count":441,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":86,"lang":null,"status":{"created_at":"Thu - Feb 17 03:18:25 +0000 2022","id":1494149205794996226,"id_str":"1494149205794996226","text":"@SteveHofstetter - Any other doctor","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SteveHofstetter","name":"Steve - Hofstetter","id":15978244,"id_str":"15978244","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1493586832201764875,"in_reply_to_status_id_str":"1493586832201764875","in_reply_to_user_id":15978244,"in_reply_to_user_id_str":"15978244","in_reply_to_screen_name":"SteveHofstetter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":870538670,"id_str":"870538670","name":"Abdirashid - mohamed \ud83c\uddf0\ud83c\uddea","screen_name":"Abdirashidmoha9","location":"Namanga, - Kenya","description":"Don''t lose what you can''t replace...\ud83d\ude02","url":"https:\/\/t.co\/kK9td0yvPb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kK9td0yvPb","expanded_url":"http:\/\/www.Shakscankey.com","display_url":"Shakscankey.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":407,"friends_count":3833,"listed_count":0,"created_at":"Tue - Oct 09 20:19:45 +0000 2012","favourites_count":1104,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":544,"lang":null,"status":{"created_at":"Fri - Mar 25 22:44:34 +0000 2022","id":1507488642817839105,"id_str":"1507488642817839105","text":"God - save the people of kenya... https:\/\/t.co\/oTmnebwW33","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507488615055642625,"id_str":"1507488615055642625","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOus6ItWUAE5J6z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOus6ItWUAE5J6z.jpg","url":"https:\/\/t.co\/oTmnebwW33","display_url":"pic.twitter.com\/oTmnebwW33","expanded_url":"https:\/\/twitter.com\/Abdirashidmoha9\/status\/1507488642817839105\/photo\/1","type":"photo","sizes":{"large":{"w":1023,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":959,"h":1200,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507488615055642625,"id_str":"1507488615055642625","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOus6ItWUAE5J6z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOus6ItWUAE5J6z.jpg","url":"https:\/\/t.co\/oTmnebwW33","display_url":"pic.twitter.com\/oTmnebwW33","expanded_url":"https:\/\/twitter.com\/Abdirashidmoha9\/status\/1507488642817839105\/photo\/1","type":"photo","sizes":{"large":{"w":1023,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":959,"h":1200,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444045539994124292\/ZTLkX1hP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444045539994124292\/ZTLkX1hP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/870538670\/1568990758","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":108616742,"id_str":"108616742","name":"Jodie - Luciano","screen_name":"jlkubu","location":"","description":"RN, Clinical - Data Specialist, UK grad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":207,"listed_count":1,"created_at":"Tue - Jan 26 14:20:06 +0000 2010","favourites_count":2628,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":530,"lang":null,"status":{"created_at":"Thu - Mar 24 00:50:20 +0000 2022","id":1506795516734095366,"id_str":"1506795516734095366","text":"@BlueTx3 - Oh no! No mansplaining especially when you are fourteen! I have a 7 year old - who tries.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BlueTx3","name":"Ellen","id":32573259,"id_str":"32573259","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506776763552174083,"in_reply_to_status_id_str":"1506776763552174083","in_reply_to_user_id":32573259,"in_reply_to_user_id_str":"32573259","in_reply_to_screen_name":"BlueTx3","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2603617395\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2603617395\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298313930679308288,"id_str":"1298313930679308288","name":"Lonnie - Gilbreath","screen_name":"LonnieGilbreat2","location":"","description":"Old","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":219,"listed_count":0,"created_at":"Tue - Aug 25 17:39:51 +0000 2020","favourites_count":801,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Fri - Apr 09 17:56:52 +0000 2021","id":1380580488004268034,"id_str":"1380580488004268034","text":"@RetireMarco - Shouldn''t a Trump endorsement be the KISS OF DEATH?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RetireMarco","name":"Retire - Rubio","id":1123972801520656385,"id_str":"1123972801520656385","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1380544885779017731,"in_reply_to_status_id_str":"1380544885779017731","in_reply_to_user_id":1123972801520656385,"in_reply_to_user_id_str":"1123972801520656385","in_reply_to_screen_name":"RetireMarco","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1173260740633026560,"id_str":"1173260740633026560","name":"Aruna - Koroma","screen_name":"ArunaKoroma17","location":"Freetown","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":1511,"listed_count":0,"created_at":"Sun - Sep 15 15:42:29 +0000 2019","favourites_count":249,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Mon - Jan 25 11:35:43 +0000 2021","id":1353667864864169984,"id_str":"1353667864864169984","text":"RT - @muftimenk: When you feel broken, \nWhen you\u2019re in a dark place with - no glimmer of hope, \nWhen your world seems to be crumbling, crashing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"muftimenk","name":"Mufti - Menk","id":247653244,"id_str":"247653244","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 21 14:08:52 +0000 2021","id":1352256855230328835,"id_str":"1352256855230328835","text":"When - you feel broken, \nWhen you\u2019re in a dark place with no glimmer of hope, - \nWhen your world seems to be crumbling,\u2026 https:\/\/t.co\/IrSZAeVQcU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IrSZAeVQcU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1352256855230328835","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13392,"favorite_count":39459,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":13392,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302501096951287808\/VS1ZSrqF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302501096951287808\/VS1ZSrqF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173260740633026560\/1599375550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3384511204,"id_str":"3384511204","name":"Fareed - Qabile","screen_name":"FariidQ","location":"Hargaisa somaliland","description":"Accountant - #like movies \ud83c\udfa5 #reading and TV series Student @CSI \ud83c\udf93 - _father''s axlaam","url":"https:\/\/t.co\/TOhmwcAegE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TOhmwcAegE","expanded_url":"http:\/\/facebook.com\/abuaxlaam","display_url":"facebook.com\/abuaxlaam","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":461,"friends_count":1084,"listed_count":0,"created_at":"Mon - Jul 20 12:25:18 +0000 2015","favourites_count":1133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1103,"lang":null,"status":{"created_at":"Sun - Mar 06 17:33:40 +0000 2022","id":1500525032602279941,"id_str":"1500525032602279941","text":"RT - @Chaouali1970: \u0627\u0644\u0645\u064a\u0632\u0627\u0646 \u0627\u0644\u0623\u0639\u0631\u062c - \u064a\u0633\u0645\u062d \u0644\u0645\u064e \u064a\u0634\u062a\u0647\u0648\u0646 - \u0648\u064a\u0645\u0646\u0639 \u0645\u0627 \u064a\u0643\u0631\u0647\u0648\u0646.\n\u0639\u0627\u0634\u062a - \u0627\u0644\u0642\u0636\u064a\u0629 \u0627\u0644\u0641\u0644\u0633\u0637\u064a\u0646\u064a\u0629 - \u060c \u063a\u0627\u0644\u0637\u0648\u0643 \u0641\u0642\u0627\u0644\u0648\u0627 - \u0627\u0644\u0633\u064a\u0627\u0633\u0629 \u0648\u0627\u0644\u0631\u064a\u0627\u0636\u0629 - \u0645\u0646\u0641\u0635\u0644\u062a\u0627\u0646.\n\u270c\ud83c\udffb\ud83c\uddf5\ud83c\uddf8\u270c\ud83c\udffb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chaouali1970","name":"\u2111\ud835\udd30\ud835\udd30\ud835\udd1e\ud835\udd2a - \u212d\ud835\udd25\ud835\udd1e\ud835\udd2c\ud835\udd32\ud835\udd1e\ud835\udd29\ud835\udd26","id":554534767,"id_str":"554534767","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 17:32:15 +0000 2022","id":1500524676149387269,"id_str":"1500524676149387269","text":"\u0627\u0644\u0645\u064a\u0632\u0627\u0646 - \u0627\u0644\u0623\u0639\u0631\u062c \u064a\u0633\u0645\u062d \u0644\u0645\u064e - \u064a\u0634\u062a\u0647\u0648\u0646 \u0648\u064a\u0645\u0646\u0639 \u0645\u0627 - \u064a\u0643\u0631\u0647\u0648\u0646.\n\u0639\u0627\u0634\u062a \u0627\u0644\u0642\u0636\u064a\u0629 - \u0627\u0644\u0641\u0644\u0633\u0637\u064a\u0646\u064a\u0629 \u060c \u063a\u0627\u0644\u0637\u0648\u0643 - \u0641\u0642\u0627\u0644\u0648\u0627 \u0627\u0644\u0633\u064a\u0627\u0633\u0629 - \u0648\u0627\u0644\u0631\u064a\u0627\u0636\u0629 \u0645\u0646\u0641\u0635\u0644\u062a\u0627\u0646.\n\u270c\ud83c\udffb\ud83c\uddf5\ud83c\uddf8\u270c\ud83c\udffb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2801,"favorite_count":19149,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":2801,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396107613667008516\/WuM2546j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396107613667008516\/WuM2546j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3384511204\/1621692989","profile_link_color":"122121","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2591551951,"id_str":"2591551951","name":"scott - mccullough","screen_name":"ScottMcculloug","location":"nashua ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":954,"friends_count":4764,"listed_count":1,"created_at":"Fri - Jun 27 15:19:16 +0000 2014","favourites_count":11398,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48,"lang":null,"status":{"created_at":"Wed - Mar 23 03:37:46 +0000 2022","id":1506475262778785794,"id_str":"1506475262778785794","text":"https:\/\/t.co\/HBogkDWSWQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HBogkDWSWQ","expanded_url":"https:\/\/www.bestbuddiesfriendshipwalk.org\/newhampshire\/supporting\/#Bangor","display_url":"bestbuddiesfriendshipwalk.org\/newhampshire\/s\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183938813636366337\/ZOXzdnKL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183938813636366337\/ZOXzdnKL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2591551951\/1571108015","profile_link_color":"1B95E0","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1898426233,"id_str":"1898426233","name":"Anna-Rae - Fishman","screen_name":"AnnaRae200","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":173,"listed_count":0,"created_at":"Mon - Sep 23 20:56:47 +0000 2013","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304044309885452291,"id_str":"1304044309885452291","name":"Jodi","screen_name":"Jodi91908409","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":629,"listed_count":0,"created_at":"Thu - Sep 10 13:09:38 +0000 2020","favourites_count":2481,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":843613241192407043,"id_str":"843613241192407043","name":"Deborah - Thompson","screen_name":"Deborah81338411","location":"Fort Wayne, IN","description":"Forever - a rebel and liberal.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2922,"friends_count":4971,"listed_count":2,"created_at":"Mon - Mar 20 00:00:45 +0000 2017","favourites_count":106188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43489,"lang":null,"status":{"created_at":"Sat - Mar 26 03:17:01 +0000 2022","id":1507557205788311552,"id_str":"1507557205788311552","text":"Check - out Bernie Sanders''s video! #TikTok https:\/\/t.co\/1jVzVR1ThJ","truncated":false,"entities":{"hashtags":[{"text":"TikTok","indices":[34,41]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1jVzVR1ThJ","expanded_url":"https:\/\/vm.tiktok.com\/TTPda6uS7R\/","display_url":"vm.tiktok.com\/TTPda6uS7R\/","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181066979756695552\/o9ieHRO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181066979756695552\/o9ieHRO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843613241192407043\/1489969240","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883805105979482113,"id_str":"883805105979482113","name":"MiChael - d Stewart","screen_name":"MiChaeldStewar3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":559,"listed_count":4,"created_at":"Sat - Jul 08 21:48:52 +0000 2017","favourites_count":140,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sat - Mar 13 03:14:03 +0000 2021","id":1370573844277198853,"id_str":"1370573844277198853","text":"Zegras - is the new Magic Man.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":404731895,"id_str":"404731895","name":"Howard - Lightman","screen_name":"HLightman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":504,"listed_count":0,"created_at":"Fri - Nov 04 10:18:40 +0000 2011","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303884871908159488\/d6PoJfUC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303884871908159488\/d6PoJfUC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404731895\/1599705396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048351870538924032,"id_str":"1048351870538924032","name":"Red - Rhinoceros","screen_name":"rhinoceros_red","location":"","description":"Sure, - but it\u2019s only a draft","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":76,"friends_count":1595,"listed_count":0,"created_at":"Fri - Oct 05 23:18:58 +0000 2018","favourites_count":86062,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25115,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1151565749951115266\/y9i9oIHi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151565749951115266\/y9i9oIHi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048351870538924032\/1613444183","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1050345861128032259,"id_str":"1050345861128032259","name":"Chineme","screen_name":"Agu_gbaOla","location":"Igbo - land","description":"Igbo\u25aaCitizen\u25aaFreedom\ud83d\udcaf\u25aaLand - of the Rising Sun \u2600\ufe0f \ud83d\udd34\u26ab\ufe0f\ud83d\udfe2 #GGMU","url":"https:\/\/t.co\/CGHuT5MaIP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CGHuT5MaIP","expanded_url":"http:\/\/crowd1.com\/signup\/chinaeme007","display_url":"crowd1.com\/signup\/chinaem\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":468,"friends_count":451,"listed_count":0,"created_at":"Thu - Oct 11 11:22:22 +0000 2018","favourites_count":17539,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6489,"lang":null,"status":{"created_at":"Sat - Mar 26 08:27:22 +0000 2022","id":1507635306505379843,"id_str":"1507635306505379843","text":"RT - @ElochukwuOhagi: Face the politicians. Face Nigeriaa system. Face the corruption - in her. Face the evils going on. Start exposing them. S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElochukwuOhagi","name":"Elochukwu - Ohagi","id":135520892,"id_str":"135520892","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 06:22:24 +0000 2022","id":1507603859044278276,"id_str":"1507603859044278276","text":"Face - the politicians. Face Nigeriaa system. Face the corruption in her. Face the - evils going on. Start exposing the\u2026 https:\/\/t.co\/R6GSoNqlIy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/R6GSoNqlIy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507603859044278276","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":154,"favorite_count":151,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":154,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490736390350508040\/PiuI3F8S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490736390350508040\/PiuI3F8S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050345861128032259\/1644244229","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":360701173,"id_str":"360701173","name":"Megan - Myers","screen_name":"meglmyers","location":"New York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":615,"friends_count":3239,"listed_count":3,"created_at":"Tue - Aug 23 16:39:52 +0000 2011","favourites_count":7280,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269979609921175555\/SXHvdYuK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269979609921175555\/SXHvdYuK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360701173\/1520862527","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273404719432523776,"id_str":"1273404719432523776","name":"Janie - Kirsch","screen_name":"KirschJanie","location":"","description":"Retired. - #Resister, #BLM, Biden\/Harris. Cancer Sucks! DubNation. \u26d4\ufe0fDMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1221,"friends_count":1609,"listed_count":0,"created_at":"Wed - Jun 17 23:58:57 +0000 2020","favourites_count":31837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3433,"lang":null,"status":{"created_at":"Sat - Jan 15 18:27:06 +0000 2022","id":1482419085434441730,"id_str":"1482419085434441730","text":"RT - @BerniceKing: A favorite photo of my parents. What a genuine, joyful smile. - And I wanted to share it with you on Daddy\u2019s 93rd birthday.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BerniceKing","name":"Be - A King","id":54617733,"id_str":"54617733","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 15 15:19:29 +0000 2022","id":1482371868665520129,"id_str":"1482371868665520129","text":"A - favorite photo of my parents. What a genuine, joyful smile. And I wanted to - share it with you on Daddy\u2019s 93rd bir\u2026 https:\/\/t.co\/o129qXElwR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/o129qXElwR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1482371868665520129","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13391,"favorite_count":120608,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13391,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1440834891508183048\/2VJdCY2w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1440834891508183048\/2VJdCY2w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309082286508445697,"id_str":"1309082286508445697","name":"Nolan","screen_name":"Nolankevin254","location":"Kisumu","description":"Passionate - about my doings","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":1191,"listed_count":0,"created_at":"Thu - Sep 24 10:48:51 +0000 2020","favourites_count":705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Dec 31 00:22:40 +0000 2021","id":1476710362137378819,"id_str":"1476710362137378819","text":"@BenChilwell - @ChelseaFC Time span for the recovery bruh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BenChilwell","name":"Ben - Chilwell","id":599523621,"id_str":"599523621","indices":[0,12]},{"screen_name":"ChelseaFC","name":"Chelsea - FC","id":22910295,"id_str":"22910295","indices":[13,23]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1476552102667337734,"in_reply_to_status_id_str":"1476552102667337734","in_reply_to_user_id":599523621,"in_reply_to_user_id_str":"599523621","in_reply_to_screen_name":"BenChilwell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488602343822221314\/Z9lXJGvl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488602343822221314\/Z9lXJGvl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1309082286508445697\/1601624519","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":986677746041540608,"id_str":"986677746041540608","name":"ITITA - EKPE - Ph.D","screen_name":"ItitaEkpe","location":"","description":"True Nigerian - -Ph.D Climate Change Studies. Pastor, Husband, University Teacher, Manager - & Advocate for True Democracy in Nigeria","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":461,"friends_count":1471,"listed_count":0,"created_at":"Wed - Apr 18 18:48:01 +0000 2018","favourites_count":1083,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3676,"lang":null,"status":{"created_at":"Mon - Mar 14 14:25:16 +0000 2022","id":1503376721357283333,"id_str":"1503376721357283333","text":"RT - @renoomokri: The whole idea of prayer is that it is a communication. A conversation. - Not a soliloquy, or monologue. For communication to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"renoomokri","name":"Reno - Omokri","id":264248576,"id_str":"264248576","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 13:27:41 +0000 2022","id":1502999844167815170,"id_str":"1502999844167815170","text":"The - whole idea of prayer is that it is a communication. A conversation. Not a - soliloquy, or monologue. For communic\u2026 https:\/\/t.co\/j7NqoMAf6W","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j7NqoMAf6W","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502999844167815170","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":821,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":148,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122449841345454081\/JXRW7Ar0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122449841345454081\/JXRW7Ar0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/986677746041540608\/1546345298","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2733341044,"id_str":"2733341044","name":"Jennifer - Gross","screen_name":"jenngrosspsyd","location":"Washington, USA","description":"Jennifer - Gross(she, her), PsyD, has been in private practice in Washington since 2007. - Her tweets are not therapy. No DM\u2019s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":393,"friends_count":1240,"listed_count":2,"created_at":"Mon - Aug 04 14:13:12 +0000 2014","favourites_count":69879,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1736,"lang":null,"status":{"created_at":"Fri - Feb 04 18:40:18 +0000 2022","id":1489670162596859904,"id_str":"1489670162596859904","text":"@Verbigeni - @NE1Honest 9,555,500 is 2.9% of the 329500000 usa population.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Verbigeni","name":"Dolores - S. Sweets","id":125732577,"id_str":"125732577","indices":[0,10]},{"screen_name":"NE1Honest","name":"Man - In the Middle","id":1431032561963208705,"id_str":"1431032561963208705","indices":[11,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1489362778007687168,"in_reply_to_status_id_str":"1489362778007687168","in_reply_to_user_id":125732577,"in_reply_to_user_id_str":"125732577","in_reply_to_screen_name":"Verbigeni","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1340023915528122368\/rrB9idqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1340023915528122368\/rrB9idqG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1078460567373971456,"id_str":"1078460567373971456","name":"Okyere - Darko","screen_name":"OkyereD83328260","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":837,"listed_count":0,"created_at":"Fri - Dec 28 01:20:10 +0000 2018","favourites_count":37643,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Thu - Sep 23 17:23:25 +0000 2021","id":1441090843666833417,"id_str":"1441090843666833417","text":"@ManUtd - #Ole out","truncated":false,"entities":{"hashtags":[{"text":"Ole","indices":[8,12]}],"symbols":[],"user_mentions":[{"screen_name":"ManUtd","name":"Manchester - United","id":558797310,"id_str":"558797310","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1440777645571010560,"in_reply_to_status_id_str":"1440777645571010560","in_reply_to_user_id":558797310,"in_reply_to_user_id_str":"558797310","in_reply_to_screen_name":"ManUtd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082585375955140608\/W92S8MTs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082585375955140608\/W92S8MTs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1061144756707704832,"id_str":"1061144756707704832","name":"Alec - Lavine","screen_name":"alec_lavine","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":664,"listed_count":0,"created_at":"Sat - Nov 10 06:33:19 +0000 2018","favourites_count":219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75,"lang":null,"status":{"created_at":"Thu - Dec 09 19:31:46 +0000 2021","id":1469027005974810624,"id_str":"1469027005974810624","text":"AstraZeneca''s - Evusheld becomes first FDA-authorized COVID antibody to protect the immunocompromised - before exposure\nhttps:\/\/t.co\/FkZaa7zZDK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FkZaa7zZDK","expanded_url":"https:\/\/www.fiercepharma.com\/pharma\/astrazeneca-scores-approval-for-its-covid-19-antibody-cocktail-a-substitute-for-vaccination","display_url":"fiercepharma.com\/pharma\/astraze\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252354080426520577\/GPJia88m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252354080426520577\/GPJia88m_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1256075746725867522,"id_str":"1256075746725867522","name":"Steve - Buchanan","screen_name":"WHardliner","location":"Los Angeles, CA","description":"Stellar - reply guy; stereo equipment enthusiast; Pro single payer health care system","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":338,"listed_count":0,"created_at":"Fri - May 01 04:20:16 +0000 2020","favourites_count":3126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":906,"lang":null,"status":{"created_at":"Sun - Mar 06 18:42:15 +0000 2022","id":1500542290204397569,"id_str":"1500542290204397569","text":"@tonyposnanski - For the fourth time. Watch Le Bureau. \n\nSomebody flag this to Tony!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonyposnanski","name":"Tony - Posnanski","id":17642747,"id_str":"17642747","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500525281311965187,"in_reply_to_status_id_str":"1500525281311965187","in_reply_to_user_id":17642747,"in_reply_to_user_id_str":"17642747","in_reply_to_screen_name":"tonyposnanski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256080907703685120\/haDMoVHY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256080907703685120\/haDMoVHY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256075746725867522\/1588308002","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311820922802835457,"id_str":"1311820922802835457","name":"zuzu - b","screen_name":"hexelnutt","location":"United States","description":"she\/her| - auntie |cat whisperer | CHI | NC | #mecfs since 1998 #ehlersdanlos #cci #neurodivergent - #longcovid ally","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":871,"listed_count":0,"created_at":"Fri - Oct 02 00:11:07 +0000 2020","favourites_count":18705,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1174,"lang":null,"status":{"created_at":"Sat - Mar 26 00:08:28 +0000 2022","id":1507509755270635524,"id_str":"1507509755270635524","text":"@SpiritofHo - sure thing troll","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpiritofHo","name":"Danny - Haiphong","id":2300716447,"id_str":"2300716447","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507447581508608011,"in_reply_to_status_id_str":"1507447581508608011","in_reply_to_user_id":2300716447,"in_reply_to_user_id_str":"2300716447","in_reply_to_screen_name":"SpiritofHo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502467013918310402\/iguE7FEp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502467013918310402\/iguE7FEp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311820922802835457\/1642985010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883278541,"id_str":"883278541","name":"Ted - Lewis","screen_name":"LewisAdvocate","location":"New Orleans, La. ","description":"","url":"http:\/\/t.co\/5g8rx6Lejh","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5g8rx6Lejh","expanded_url":"http:\/\/theadvocate.com","display_url":"theadvocate.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":790,"friends_count":4021,"listed_count":21,"created_at":"Mon - Oct 15 22:50:27 +0000 2012","favourites_count":4971,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14111,"lang":null,"status":{"created_at":"Mon - Mar 21 03:22:58 +0000 2022","id":1505746764241977347,"id_str":"1505746764241977347","text":"@JaeMargal - Nothing but air.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JaeMargal","name":"Jae - Margal","id":257716376,"id_str":"257716376","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505351397595705344,"in_reply_to_status_id_str":"1505351397595705344","in_reply_to_user_id":257716376,"in_reply_to_user_id_str":"257716376","in_reply_to_screen_name":"JaeMargal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2726573944\/1518b0d08e4ade668c207fee15166fe3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2726573944\/1518b0d08e4ade668c207fee15166fe3_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":300318893,"id_str":"300318893","name":"Phil - Christiano","screen_name":"phil_christiano","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":217,"listed_count":0,"created_at":"Tue - May 17 15:26:48 +0000 2011","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":491641816,"id_str":"491641816","name":"Sandra - Wilson","screen_name":"WilsSanw","location":"North Carolina, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":836,"listed_count":0,"created_at":"Mon - Feb 13 21:20:51 +0000 2012","favourites_count":66214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":162,"lang":null,"status":{"created_at":"Thu - Mar 24 16:18:49 +0000 2022","id":1507029176884342786,"id_str":"1507029176884342786","text":"@Dumspirospero67 - With little knowledge of Outlander at the time. Found Outlander on the recommendations - of friends\u2026 https:\/\/t.co\/18mTvXtEer","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dumspirospero67","name":"Elizabeth - Smith","id":3305512909,"id_str":"3305512909","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/18mTvXtEer","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507029176884342786","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506999713148465155,"in_reply_to_status_id_str":"1506999713148465155","in_reply_to_user_id":3305512909,"in_reply_to_user_id_str":"3305512909","in_reply_to_screen_name":"Dumspirospero67","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503799582949584903\/c6txDr8b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503799582949584903\/c6txDr8b_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":898083234403295233,"id_str":"898083234403295233","name":"francis - Von Hammerstein","screen_name":"umeania_frank","location":"","description":"A - Microbiologist (Recombinant DNA Technologist), a Cisco Certified Network Associate - on Router and Switches. Founder and CEO of Scottisdvale & Frahmtin Inc.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":679,"listed_count":3,"created_at":"Thu - Aug 17 07:25:03 +0000 2017","favourites_count":523,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":680,"lang":null,"status":{"created_at":"Wed - Jun 02 11:35:04 +0000 2021","id":1400053346803892225,"id_str":"1400053346803892225","text":"RT - @JoyceWhiteVance: @ThatEricAlper We have a dog named Trouble. She grew into - the name.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyceWhiteVance","name":"Joyce - Alene","id":548384458,"id_str":"548384458","indices":[3,19]},{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[21,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - May 30 00:53:26 +0000 2021","id":1398804713588527105,"id_str":"1398804713588527105","text":"@ThatEricAlper - We have a dog named Trouble. She grew into the name.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThatEricAlper","name":"Eric - Alper \ud83c\udfa7","id":22018221,"id_str":"22018221","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1398761113622396929,"in_reply_to_status_id_str":"1398761113622396929","in_reply_to_user_id":22018221,"in_reply_to_user_id_str":"22018221","in_reply_to_screen_name":"ThatEricAlper","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":1336,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898084806310932480\/lpB6XrRi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898084806310932480\/lpB6XrRi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":726314257,"id_str":"726314257","name":"Ellen - Reid","screen_name":"EllenReid11","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":1384,"listed_count":0,"created_at":"Mon - Jul 30 15:49:08 +0000 2012","favourites_count":813,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Fri - Nov 13 00:43:45 +0000 2020","id":1327049476377251840,"id_str":"1327049476377251840","text":"@chrisherstam - @dougducey He left town.... seriously","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chrisherstam","name":"Chris - Herstam","id":2214247592,"id_str":"2214247592","indices":[0,13]},{"screen_name":"DougDucey","name":"Doug - Ducey","id":20217019,"id_str":"20217019","indices":[14,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1327034473368739841,"in_reply_to_status_id_str":"1327034473368739841","in_reply_to_user_id":2214247592,"in_reply_to_user_id_str":"2214247592","in_reply_to_screen_name":"chrisherstam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302704297763897344,"id_str":"1302704297763897344","name":"Jake - Torres","screen_name":"sjaketorres","location":"Dallas, TX","description":"West - Texan living in West Dallas. Latino lawyer. I owe a lot of money because of - @SMU and @SMULawSchool","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":308,"listed_count":0,"created_at":"Sun - Sep 06 20:24:51 +0000 2020","favourites_count":6853,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":474,"lang":null,"status":{"created_at":"Thu - Mar 24 16:56:47 +0000 2022","id":1507038728929296389,"id_str":"1507038728929296389","text":"RT - @VinsonandElkins: Let''s #ThrowbackThursday to this spirited photo of Sarah - Morgan and her daughter standing adjacent to the #FearlessGir\u2026","truncated":false,"entities":{"hashtags":[{"text":"ThrowbackThursday","indices":[27,45]}],"symbols":[],"user_mentions":[{"screen_name":"VinsonandElkins","name":"Vinson - & Elkins","id":19408274,"id_str":"19408274","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:30:01 +0000 2022","id":1507001793850585094,"id_str":"1507001793850585094","text":"Let''s - #ThrowbackThursday to this spirited photo of Sarah Morgan and her daughter - standing adjacent to the\u2026 https:\/\/t.co\/zedUqYPl7V","truncated":true,"entities":{"hashtags":[{"text":"ThrowbackThursday","indices":[6,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zedUqYPl7V","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507001793850585094","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319447449145049095\/0tQ8g7rc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319447449145049095\/0tQ8g7rc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1302704297763897344\/1604372675","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":919947127861792773,"id_str":"919947127861792773","name":"Regina - Sanfey","screen_name":"regina_rosie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":230,"listed_count":0,"created_at":"Mon - Oct 16 15:24:21 +0000 2017","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245051798554992640,"id_str":"1245051798554992640","name":"Omar - Little","screen_name":"omarlittle12345","location":"Baltimore","description":"All - in the game yo, all in the game...","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":1430,"listed_count":0,"created_at":"Tue - Mar 31 18:14:28 +0000 2020","favourites_count":800,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1387604405860589570\/E42mTfrt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1387604405860589570\/E42mTfrt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245051798554992640\/1619665646","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2814424059,"id_str":"2814424059","name":"Jeanette","screen_name":"jw2nc","location":"","description":"I - retweet political tweets, funny tweets and cute animal stuff.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":1236,"listed_count":0,"created_at":"Tue - Oct 07 15:43:27 +0000 2014","favourites_count":24851,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4409,"lang":null,"status":{"created_at":"Fri - Mar 25 14:01:17 +0000 2022","id":1507356953114259467,"id_str":"1507356953114259467","text":"@LeeAnneDale - I love this game. \n\nWordle 279 4\/6*\n\n\u2b1b\u2b1b\u2b1b\u2b1b\ud83d\udfe8\n\u2b1b\ud83d\udfe9\u2b1b\u2b1b\u2b1b\n\ud83d\udfe8\ud83d\udfe9\u2b1b\ud83d\udfe8\ud83d\udfe8\n\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9\ud83d\udfe9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeeAnneDale","name":"LeeAnne - Dale","id":1362895009,"id_str":"1362895009","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507341494251933720,"in_reply_to_status_id_str":"1507341494251933720","in_reply_to_user_id":1362895009,"in_reply_to_user_id_str":"1362895009","in_reply_to_screen_name":"LeeAnneDale","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851117078585257984\/joz3H0O0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851117078585257984\/joz3H0O0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814424059\/1491757293","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":74647135,"id_str":"74647135","name":"Shannon - Lucas","screen_name":"sglucas","location":"San Francisco","description":"My - passion is cultivating more catalytic leaders and developing a global network - of catalysts to accelerate positive change.","url":"https:\/\/t.co\/61bvylLRPB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/61bvylLRPB","expanded_url":"http:\/\/catalystconstellations.com\/quiz\/","display_url":"catalystconstellations.com\/quiz\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":614,"friends_count":815,"listed_count":54,"created_at":"Wed - Sep 16 03:58:23 +0000 2009","favourites_count":18893,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5073,"lang":null,"status":{"created_at":"Sat - Mar 26 05:41:01 +0000 2022","id":1507593442246889479,"id_str":"1507593442246889479","text":"RT - @JuliePace: Many of you have asked about our brave @AP team in Mariupol. This - is the story of how they covered a city under siege, and h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JuliePace","name":"Julie - Pace","id":28181835,"id_str":"28181835","indices":[3,13]},{"screen_name":"AP","name":"The - Associated Press","id":51241574,"id_str":"51241574","indices":[54,57]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 10:17:43 +0000 2022","id":1505851140856074242,"id_str":"1505851140856074242","text":"Many - of you have asked about our brave @AP team in Mariupol. This is the story - of how they covered a city under sie\u2026 https:\/\/t.co\/EGKVtU7PUP","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AP","name":"The - Associated Press","id":51241574,"id_str":"51241574","indices":[39,42]}],"urls":[{"url":"https:\/\/t.co\/EGKVtU7PUP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505851140856074242","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1287,"favorite_count":2602,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"716BD1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307407977708548096\/xqlccLI8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307407977708548096\/xqlccLI8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74647135\/1600369427","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267059715038760966,"id_str":"1267059715038760966","name":"Bontango","screen_name":"bontango1","location":"Cypress, - Tx","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":188,"friends_count":353,"listed_count":1,"created_at":"Sun - May 31 11:46:09 +0000 2020","favourites_count":26704,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47914,"lang":null,"status":{"created_at":"Fri - Mar 25 21:59:48 +0000 2022","id":1507477374799073286,"id_str":"1507477374799073286","text":"RT - @thehill: Jamaica wants to be independent, prime minister tells Prince William - and Duchess Kate https:\/\/t.co\/GW5DdpBGE3 https:\/\/t.co\/HTD\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/GW5DdpBGE3","expanded_url":"http:\/\/hill.cm\/Krd0OzY","display_url":"hill.cm\/Krd0OzY","indices":[99,122]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:16:05 +0000 2022","id":1507194581942681605,"id_str":"1507194581942681605","text":"Jamaica - wants to be independent, prime minister tells Prince William and Duchess Kate - https:\/\/t.co\/GW5DdpBGE3 https:\/\/t.co\/HTDELA0yCy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GW5DdpBGE3","expanded_url":"http:\/\/hill.cm\/Krd0OzY","display_url":"hill.cm\/Krd0OzY","indices":[86,109]}],"media":[{"id":1507194580428640256,"id_str":"1507194580428640256","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqhfEXX0AAWnq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqhfEXX0AAWnq7.jpg","url":"https:\/\/t.co\/HTDELA0yCy","display_url":"pic.twitter.com\/HTDELA0yCy","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507194581942681605\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":645,"resize":"fit"},"large":{"w":980,"h":645,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507194580428640256,"id_str":"1507194580428640256","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqhfEXX0AAWnq7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqhfEXX0AAWnq7.jpg","url":"https:\/\/t.co\/HTDELA0yCy","display_url":"pic.twitter.com\/HTDELA0yCy","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507194581942681605\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":645,"resize":"fit"},"large":{"w":980,"h":645,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":87,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298927074829365248\/DW_VnLs7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298927074829365248\/DW_VnLs7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21916560,"id_str":"21916560","name":"Lara - Carlson Hollingsworth","screen_name":"carlsongirl2","location":"Garrett County, - Maryland","description":"I''m a big fan of Common Sense.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":92,"friends_count":767,"listed_count":1,"created_at":"Wed - Feb 25 20:48:21 +0000 2009","favourites_count":2023,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":268,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2784896813\/0d6dc879125d8cb57aa03ec23b89481c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2784896813\/0d6dc879125d8cb57aa03ec23b89481c_normal.jpeg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":734745465627906048,"id_str":"734745465627906048","name":"Awlad - Hossain","screen_name":"shawpan80","location":"Dhaka, Bangladesh","description":"Struggling - with the life","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":277,"listed_count":0,"created_at":"Mon - May 23 13:59:04 +0000 2016","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Oct 31 14:22:20 +0000 2019","id":1189910481026174979,"id_str":"1189910481026174979","text":"RT - @AJEnglish: The Pentagon has released footage of the raid in which ISIL leader - Abu Bakr al-Baghdadi was killed. \n\nRead more: https:\/\/t.c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AJEnglish","name":"Al - Jazeera English","id":4970411,"id_str":"4970411","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 31 05:19:25 +0000 2019","id":1189773852164984832,"id_str":"1189773852164984832","text":"The - Pentagon has released footage of the raid in which ISIL leader Abu Bakr al-Baghdadi - was killed. \n\nRead more:\u2026 https:\/\/t.co\/t268bn3zVi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t268bn3zVi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1189773852164984832","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":438,"favorite_count":738,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":438,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189568174695432192\/zjhZilY3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189568174695432192\/zjhZilY3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308382378159607808,"id_str":"1308382378159607808","name":"codelljewelry@gmail.com","screen_name":"codelljewelry","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":643,"listed_count":0,"created_at":"Tue - Sep 22 12:27:41 +0000 2020","favourites_count":10967,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2276,"lang":null,"status":{"created_at":"Mon - Apr 19 19:29:21 +0000 2021","id":1384227640588963844,"id_str":"1384227640588963844","text":"Change - cannot happen without consequences https:\/\/t.co\/NuYibdFrrv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NuYibdFrrv","expanded_url":"https:\/\/twitter.com\/CalltoActivism\/status\/1375620736929435648","display_url":"twitter.com\/CalltoActivism\u2026","indices":[42,65]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1375620736929435648,"quoted_status_id_str":"1375620736929435648","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308382761586049024\/fbD17BW5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308382761586049024\/fbD17BW5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34995348,"id_str":"34995348","name":"Rick - N.","screen_name":"Rick24N","location":"Berlin","description":"Marketing & - Comms @GlblCtznDe Views are my own. \ud83d\udc9b\ud83d\udda4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":216,"friends_count":1705,"listed_count":2,"created_at":"Fri - Apr 24 18:16:55 +0000 2009","favourites_count":25133,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2657,"lang":null,"status":{"created_at":"Fri - Mar 18 11:29:24 +0000 2022","id":1504782016407035905,"id_str":"1504782016407035905","text":"RT - @rshereme: The faint hearted should not read this.\n\nYesterday, at our own - risk, we left Mariupol under gunfire. We stayed overnight in a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rshereme","name":"Roman - \ud83c\uddfa\ud83c\udde6 Sheremeta","id":3044772544,"id_str":"3044772544","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 22:05:42 +0000 2022","id":1504579756221558792,"id_str":"1504579756221558792","text":"The - faint hearted should not read this.\n\nYesterday, at our own risk, we left - Mariupol under gunfire. We stayed over\u2026 https:\/\/t.co\/BHaHjdfLds","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BHaHjdfLds","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504579756221558792","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32430,"favorite_count":94301,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":32430,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852991753418403840\/jxcxjKu2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852991753418403840\/jxcxjKu2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34995348\/1626419678","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3033138620,"id_str":"3033138620","name":"Can''t - say","screen_name":"i_am_mohit_soni","location":"Bhopal, India","description":".","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":1196,"listed_count":0,"created_at":"Fri - Feb 20 17:51:13 +0000 2015","favourites_count":7597,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Wed - Jan 26 21:17:17 +0000 2022","id":1486448179566739457,"id_str":"1486448179566739457","text":"@Kushanarchy - You should pitch this idea on Shark Tank! Also, I get 5% equity for I just - wanted to banter at this time of the night.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kushanarchy","name":"Kushan - Patel","id":82545278,"id_str":"82545278","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1486197046394912772,"in_reply_to_status_id_str":"1486197046394912772","in_reply_to_user_id":82545278,"in_reply_to_user_id_str":"82545278","in_reply_to_screen_name":"Kushanarchy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251824252061470720\/-ZoDfie4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251824252061470720\/-ZoDfie4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":253211463,"id_str":"253211463","name":"Jeff - Young","screen_name":"JeffYoung2000","location":"Miami Beach","description":"I - am a 35 year Music Industry veteran who was born and bred in The Bronx. I - love my Country, Family, Friends and Music.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":126,"listed_count":0,"created_at":"Wed - Feb 16 19:49:11 +0000 2011","favourites_count":1030,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":315,"lang":null,"status":{"created_at":"Wed - Mar 09 11:52:48 +0000 2022","id":1501526414406955012,"id_str":"1501526414406955012","text":"@Tom_ncfc1902 - @visegrad24 Proud","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tom_ncfc1902","name":"Sir - Tom","id":1326268964884926465,"id_str":"1326268964884926465","indices":[0,13]},{"screen_name":"visegrad24","name":"Visegr\u00e1d - 24","id":1222773302441148416,"id_str":"1222773302441148416","indices":[14,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501275509942067200,"in_reply_to_status_id_str":"1501275509942067200","in_reply_to_user_id":1326268964884926465,"in_reply_to_user_id_str":"1326268964884926465","in_reply_to_screen_name":"Tom_ncfc1902","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D19214","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321106739916320768\/285oo87o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321106739916320768\/285oo87o_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":853232062056235008,"id_str":"853232062056235008","name":"akintomide - ogunduyile","screen_name":"akinogunduyile3","location":"Lagos, Nigeria","description":"I - am a security seals expert iron\/plastic and container seals for oil tankers - contact SWIPEWIRE VENTURE''S 08029551254 O7064615898","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":316,"friends_count":4951,"listed_count":2,"created_at":"Sat - Apr 15 13:02:30 +0000 2017","favourites_count":491,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17906,"lang":null,"status":{"created_at":"Fri - Mar 25 09:13:59 +0000 2022","id":1507284649915170822,"id_str":"1507284649915170822","text":"RT - @ruffydfire: Just got a message from the navy that the officer that shot Dr - Owen has been arrested and investigations are ongoing.I push\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ruffydfire","name":"oseni - rufai","id":52849126,"id_str":"52849126","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:58:05 +0000 2022","id":1507069255468077066,"id_str":"1507069255468077066","text":"Just - got a message from the navy that the officer that shot Dr Owen has been arrested - and investigations are ongoin\u2026 https:\/\/t.co\/S5gsUQRnE2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/S5gsUQRnE2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507069255468077066","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":190,"favorite_count":815,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":190,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398254346572382211\/7thYabsF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398254346572382211\/7thYabsF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853232062056235008\/1567056968","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1046535414079574017,"id_str":"1046535414079574017","name":"novarova","screen_name":"novarova1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":616,"listed_count":5,"created_at":"Sun - Sep 30 23:01:01 +0000 2018","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Fri - Dec 31 19:33:47 +0000 2021","id":1477000049355722755,"id_str":"1477000049355722755","text":"@fundstrat - Tom , as an FSI member I could not be more pleased. Your service has brought - more context, more discipl\u2026 https:\/\/t.co\/4E7pnZPIue","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fundstrat","name":"Thomas - (Tom) Lee (not the drummer) FSInsight","id":2648357839,"id_str":"2648357839","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/4E7pnZPIue","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1477000049355722755","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1476946057498087424,"in_reply_to_status_id_str":"1476946057498087424","in_reply_to_user_id":2648357839,"in_reply_to_user_id_str":"2648357839","in_reply_to_screen_name":"fundstrat","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":70939429,"id_str":"70939429","name":"Martin - Kjendlie","screen_name":"mkjendlie","location":"Copenhagen","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":403,"listed_count":0,"created_at":"Wed - Sep 02 11:16:59 +0000 2009","favourites_count":905,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":255,"lang":null,"status":{"created_at":"Sun - Mar 20 08:56:18 +0000 2022","id":1505468263731449862,"id_str":"1505468263731449862","text":"@Tobias_MUFC - Tobias, people will tell you all the bad results 0-5 liverpool 1-4 watford - 1-6 spurs bla bla, however\u2026 https:\/\/t.co\/6CfYq6eVol","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Tobias_MUFC","name":"Tobias","id":866256500523765760,"id_str":"866256500523765760","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/6CfYq6eVol","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505468263731449862","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505451396547633153,"in_reply_to_status_id_str":"1505451396547633153","in_reply_to_user_id":866256500523765760,"in_reply_to_user_id_str":"866256500523765760","in_reply_to_screen_name":"Tobias_MUFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1070268981259321349,"id_str":"1070268981259321349","name":"Richard - Sorge RS","screen_name":"AlexSayeem","location":"Dhaka, Bangladesh","description":"Take - over myself ....... Passionate debater... Strong root searcher..... Hardcore - wing believer Proud to be a Bangladeshi\ud83c\udde7\ud83c\udde9\ud83c\udde7\ud83c\udde9 - \u2694\ufe0f\u2693\ud83c\udff9\ud83c\udfaf\ud83d\udee1\ufe0f\ud83d\udde1\ufe0f\u2694\ufe0f\u2693\ud83c\udfaf\ud83d\udee1\ufe0f\ud83d\udcff...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":122,"friends_count":2779,"listed_count":1,"created_at":"Wed - Dec 05 10:49:44 +0000 2018","favourites_count":17068,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3289,"lang":null,"status":{"created_at":"Sat - Mar 19 09:25:03 +0000 2022","id":1505113108783984646,"id_str":"1505113108783984646","text":"RT - @BBCWorld: Sri Lanka tests UN''s patience on human rights https:\/\/t.co\/eddmwKlEAH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BBCWorld","name":"BBC - News (World)","id":742143,"id_str":"742143","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/eddmwKlEAH","expanded_url":"https:\/\/bbc.in\/34SWVgD","display_url":"bbc.in\/34SWVgD","indices":[60,83]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 09:17:01 +0000 2022","id":1505111087531835394,"id_str":"1505111087531835394","text":"Sri - Lanka tests UN''s patience on human rights https:\/\/t.co\/eddmwKlEAH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/eddmwKlEAH","expanded_url":"https:\/\/bbc.in\/34SWVgD","display_url":"bbc.in\/34SWVgD","indices":[46,69]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":271,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":76,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483543818796695553\/mp4ttfqE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483543818796695553\/mp4ttfqE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1070268981259321349\/1642539385","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":937857096997064705,"id_str":"937857096997064705","name":"Donna - Pisano","screen_name":"pisano_donna","location":"Agawam, MA","description":"Retired - from Springfield Technical Community College, Wife of retired Fire Chief in - our town, Mom, Grandmother of seven, love animals and most humans!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":315,"listed_count":0,"created_at":"Tue - Dec 05 01:32:11 +0000 2017","favourites_count":13096,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":362,"lang":null,"status":{"created_at":"Thu - Mar 24 14:41:33 +0000 2022","id":1507004698242523140,"id_str":"1507004698242523140","text":"@DemocraticDaisy - @DrOz \u270b\ud83c\udffc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DemocraticDaisy","name":"Britt - Nessie","id":1444378380267229185,"id_str":"1444378380267229185","indices":[0,16]},{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[17,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506774425135247362,"in_reply_to_status_id_str":"1506774425135247362","in_reply_to_user_id":1444378380267229185,"in_reply_to_user_id_str":"1444378380267229185","in_reply_to_screen_name":"DemocraticDaisy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299013480314478598\/2tIKKFMn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299013480314478598\/2tIKKFMn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937857096997064705\/1598544219","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":293627847,"id_str":"293627847","name":"Duzz - Destruction","screen_name":"duzzdestruction","location":"Santa Cruz, CA","description":"Please - wear a mask.","url":"https:\/\/t.co\/AqKG2T7PkL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AqKG2T7PkL","expanded_url":"http:\/\/theactuallydoes.com","display_url":"theactuallydoes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":4551,"listed_count":8,"created_at":"Thu - May 05 17:49:37 +0000 2011","favourites_count":1838,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6523,"lang":null,"status":{"created_at":"Fri - Mar 04 02:49:05 +0000 2022","id":1499577640893566977,"id_str":"1499577640893566977","text":"Seriously - though, fuck this guy https:\/\/t.co\/TQbM5lba7E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TQbM5lba7E","expanded_url":"https:\/\/twitter.com\/mattgaetz\/status\/1499516984643526657","display_url":"twitter.com\/mattgaetz\/stat\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1499516984643526657,"quoted_status_id_str":"1499516984643526657","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307515116322136064\/GFVJZPTR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307515116322136064\/GFVJZPTR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293627847\/1474546093","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":466773529,"id_str":"466773529","name":"Carmine - Mastromarino","screen_name":"counterpane43","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":321,"listed_count":0,"created_at":"Tue - Jan 17 19:38:49 +0000 2012","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/958796988006436865\/h4ecjRMq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/958796988006436865\/h4ecjRMq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1147628702223818752,"id_str":"1147628702223818752","name":"Carolyn","screen_name":"Carolyn40911932","location":"Rochester, - NY","description":"Retired teacher, artist, and writer, Charter member of - Rock the Vote. card carrying ASPCA, ACLU\/SPLC & Theosophist. BLM! Me Too! - Wear a mask! vote Blue.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2203,"friends_count":3239,"listed_count":1,"created_at":"Sat - Jul 06 22:09:39 +0000 2019","favourites_count":64560,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45932,"lang":null,"status":{"created_at":"Sat - Mar 26 10:33:16 +0000 2022","id":1507666990999158791,"id_str":"1507666990999158791","text":"@shillman1 - Ice hockey, imo.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"shillman1","name":"Ron - Shillman","id":19846330,"id_str":"19846330","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507547725839151111,"in_reply_to_status_id_str":"1507547725839151111","in_reply_to_user_id":19846330,"in_reply_to_user_id_str":"19846330","in_reply_to_screen_name":"shillman1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506728152256724992\/LCZrZ3LX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506728152256724992\/LCZrZ3LX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1147628702223818752\/1647789676","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293185550669631490,"id_str":"1293185550669631490","name":"Taofeeq - Bello","screen_name":"TaofeeqBello6","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":586,"listed_count":0,"created_at":"Tue - Aug 11 14:01:48 +0000 2020","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Sat - May 08 03:57:59 +0000 2021","id":1390878621280112641,"id_str":"1390878621280112641","text":"@Ango31142 - Ameen","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ango31142","name":"AS.ANGO","id":2225634975,"id_str":"2225634975","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1390785429142650885,"in_reply_to_status_id_str":"1390785429142650885","in_reply_to_user_id":2225634975,"in_reply_to_user_id_str":"2225634975","in_reply_to_screen_name":"Ango31142","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293186220244180994\/br0OeJnm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293186220244180994\/br0OeJnm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156928893800128512,"id_str":"1156928893800128512","name":"Williamspa10","screen_name":"williamspa10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":336,"listed_count":0,"created_at":"Thu - Aug 01 14:05:17 +0000 2019","favourites_count":684,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Dec 30 13:38:31 +0000 2021","id":1476548255345524740,"id_str":"1476548255345524740","text":"RT - @SurpriseSparrow: @OwenJones84 Frankly, nobody should be traveling right now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SurpriseSparrow","name":"Sara - \ud83d\udc1d","id":95843758,"id_str":"95843758","indices":[3,19]},{"screen_name":"OwenJones84","name":"Owen - Jones \ud83c\udf39","id":65045121,"id_str":"65045121","indices":[21,33]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 30 12:49:10 +0000 2021","id":1476535835545812994,"id_str":"1476535835545812994","text":"@OwenJones84 - Frankly, nobody should be traveling right now.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OwenJones84","name":"Owen - Jones \ud83c\udf39","id":65045121,"id_str":"65045121","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1476535646651142145,"in_reply_to_status_id_str":"1476535646651142145","in_reply_to_user_id":65045121,"in_reply_to_user_id_str":"65045121","in_reply_to_screen_name":"OwenJones84","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":40,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89763218,"id_str":"89763218","name":"Neal - Conan","screen_name":"nealconan","location":"Hawi, Hawaii","description":"Hosts - Truth, Politics and Power Mac Nut Farmer, The Pacific News Minute on Hawaii - Public Radio Former Host, Talk of the Nation NPR News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5825,"friends_count":3101,"listed_count":238,"created_at":"Fri - Nov 13 18:38:30 +0000 2009","favourites_count":16087,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1706,"lang":null,"status":{"created_at":"Wed - Feb 03 03:28:32 +0000 2021","id":1356806753439080455,"id_str":"1356806753439080455","text":"RT - @Bruce100: @nealconan Hello Farmer Neal. Just wanted you to know I\u2019m - reading Greta\u2019s new book and it\u2019s a real treasure.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Bruce100","name":"bruce100","id":15611843,"id_str":"15611843","indices":[3,12]},{"screen_name":"nealconan","name":"Neal - Conan","id":89763218,"id_str":"89763218","indices":[14,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Jan 31 16:41:44 +0000 2021","id":1355919204537524230,"id_str":"1355919204537524230","text":"@nealconan - Hello Farmer Neal. Just wanted you to know I\u2019m reading Greta\u2019s new - book and it\u2019s a real treasure.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nealconan","name":"Neal - Conan","id":89763218,"id_str":"89763218","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":89763218,"in_reply_to_user_id_str":"89763218","in_reply_to_screen_name":"nealconan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/857788152\/Neal_Fenway_normal.JPEG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/857788152\/Neal_Fenway_normal.JPEG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823305358835859457,"id_str":"823305358835859457","name":"Emma","screen_name":"_emmaacostaa","location":"Tampa, - FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":79,"listed_count":0,"created_at":"Sun - Jan 22 23:04:28 +0000 2017","favourites_count":4744,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":398,"lang":null,"status":{"created_at":"Thu - Nov 11 00:38:17 +0000 2021","id":1458594898714804225,"id_str":"1458594898714804225","text":"RT - @danielaflorezz_: A man changing his ways to keep you is a big FLEX.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"danielaflorezz_","name":"\ud835\udc6b.","id":1369459769535197188,"id_str":"1369459769535197188","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 09 09:20:20 +0000 2021","id":1458001497828966400,"id_str":"1458001497828966400","text":"A - man changing his ways to keep you is a big FLEX.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4145,"favorite_count":17329,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4145,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364834956078428161\/OxTZBAey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364834956078428161\/OxTZBAey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823305358835859457\/1614236986","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276252387209076752,"id_str":"1276252387209076752","name":"Wise - Man Tz","screen_name":"WiseManTz2","location":"","description":"wisdom pean","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":754,"listed_count":0,"created_at":"Thu - Jun 25 20:35:13 +0000 2020","favourites_count":132,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Sat - Jun 05 11:57:53 +0000 2021","id":1401146255213010946,"id_str":"1401146255213010946","text":"True - https:\/\/t.co\/7ZHNAYtA0O","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7ZHNAYtA0O","expanded_url":"https:\/\/twitter.com\/_SuccessMinded_\/status\/1400998306512130050","display_url":"twitter.com\/_SuccessMinded\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1400998306512130050,"quoted_status_id_str":"1400998306512130050","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322990761600757765\/dSB1OElT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322990761600757765\/dSB1OElT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":808971675484176384,"id_str":"808971675484176384","name":"Mephisto","screen_name":"mephistoadvocat","location":"Lebanon","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":1085,"listed_count":0,"created_at":"Wed - Dec 14 09:47:32 +0000 2016","favourites_count":3918,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":645,"lang":null,"status":{"created_at":"Fri - Oct 29 10:37:17 +0000 2021","id":1454034599005364228,"id_str":"1454034599005364228","text":"@drmohamadalhdla - \u064a\u064e\u0627 \u0623\u064e\u064a\u064f\u0651\u0647\u064e\u0627 \u0627\u0644\u064e\u0651\u0630\u0650\u064a\u0646\u064e - \u0622\u0645\u064e\u0646\u064f\u0648\u0627 \u0644\u064e\u0627 \u062a\u064f\u0628\u0652\u0637\u0650\u0644\u064f\u0648\u0627 - \u0635\u064e\u062f\u064e\u0642\u064e\u0627\u062a\u0650\u0643\u064f\u0645 \u0628\u0650\u0627\u0644\u0652\u0645\u064e\u0646\u0650\u0651 - \u0648\u064e\u0627\u0644\u0652\u0623\u064e\u0630\u064e\u0649\u0670 \u0643\u064e\u0627\u0644\u064e\u0651\u0630\u0650\u064a - \u064a\u064f\u0646\u0641\u0650\u2026 https:\/\/t.co\/DoMQ8bJnr4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drmohamadalhdla","name":"\ud83c\uddf8\ud83c\udde6 - DR.Mohamad ALHdla","id":253531543,"id_str":"253531543","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/DoMQ8bJnr4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1454034599005364228","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1454031001898962945,"in_reply_to_status_id_str":"1454031001898962945","in_reply_to_user_id":253531543,"in_reply_to_user_id_str":"253531543","in_reply_to_screen_name":"drmohamadalhdla","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809053148761440256\/lTTkefWC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809053148761440256\/lTTkefWC_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1163749316680249344,"id_str":"1163749316680249344","name":"alibaba","screen_name":"alibaba76335244","location":"World","description":"Wise","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":215,"friends_count":3777,"listed_count":2,"created_at":"Tue - Aug 20 09:47:28 +0000 2019","favourites_count":180195,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1860,"lang":null,"status":{"created_at":"Sat - Mar 26 08:25:04 +0000 2022","id":1507634728639217664,"id_str":"1507634728639217664","text":"RT - @a__virologist: Omicron can enter the cell directly by the endosomal route - without ACE2 and TMPRSS2. \nThis ability was almost non-existe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"a__virologist","name":"Abdulkadir - YILMAZ","id":901062039816339456,"id_str":"901062039816339456","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:18:41 +0000 2022","id":1507467028394881025,"id_str":"1507467028394881025","text":"Omicron - can enter the cell directly by the endosomal route without ACE2 and TMPRSS2. - \nThis ability was almost non-e\u2026 https:\/\/t.co\/vkbK6cGDRU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vkbK6cGDRU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507467028394881025","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":343,"favorite_count":993,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":343,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312793555748954112,"id_str":"1312793555748954112","name":"Stephanie - Smith Huggins","screen_name":"huggins_smith","location":"Kansas City, MO","description":"Proud - Mom of 2, US Army Veteran \ud83c\uddfa\ud83c\uddf8, \ud83d\udc36Pup Mom of - 5, Opinionated, Open-minded Free Thinker, BS Caller, & \u2764 for all People, - \ud83c\udf40Clover Collector \ud83c\udf0a\ud83c\udf0a#Resist \ud83c\udf0a\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1531,"friends_count":3753,"listed_count":1,"created_at":"Sun - Oct 04 16:36:03 +0000 2020","favourites_count":22670,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13933,"lang":null,"status":{"created_at":"Sat - Mar 26 01:28:14 +0000 2022","id":1507529828366438403,"id_str":"1507529828366438403","text":"RT - @AaronParnas: To every Senator that votes NO on Ketanji Brown Jackson\u2019s - nomination, know that we are going to vote NO when you\u2019re up for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AaronParnas","name":"Aaron - Parnas","id":3103505578,"id_str":"3103505578","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:29:33 +0000 2022","id":1507515060507357189,"id_str":"1507515060507357189","text":"To - every Senator that votes NO on Ketanji Brown Jackson\u2019s nomination, know - that we are going to vote NO when you\u2019re up for reelection.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3294,"favorite_count":20719,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3294,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1365514274811043841\/Z18f4XfC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1365514274811043841\/Z18f4XfC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312793555748954112\/1613496862","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2261659987,"id_str":"2261659987","name":"Jerushambolic","screen_name":"civilcerberus","location":"\ud83c\uddf1\ud83c\uddf0. - \ud83c\udde7\ud83c\udde9. \ud83c\uddec\ud83c\udde7 ","description":"jerusha\/ - 22\/ she\/her - Journalism & Screenwriting student. follow @giantgeeko for - very specific ramblings on webtoon, anime, manga etc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":685,"friends_count":1433,"listed_count":9,"created_at":"Wed - Dec 25 16:33:23 +0000 2013","favourites_count":31600,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25041,"lang":null,"status":{"created_at":"Fri - Mar 25 19:12:40 +0000 2022","id":1507435315279061001,"id_str":"1507435315279061001","text":"RT - @alucarddaily: https:\/\/t.co\/V4dg0aJl7Y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alucarddaily","name":"daily - alucard \u26b0\ufe0f","id":1363898990840991753,"id_str":"1363898990840991753","indices":[3,16]}],"urls":[],"media":[{"id":1507175464976191499,"id_str":"1507175464976191499","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","url":"https:\/\/t.co\/V4dg0aJl7Y","display_url":"pic.twitter.com\/V4dg0aJl7Y","expanded_url":"https:\/\/twitter.com\/alucarddaily\/status\/1507417034249814017\/photo\/1","type":"photo","sizes":{"medium":{"w":639,"h":644,"resize":"fit"},"small":{"w":639,"h":644,"resize":"fit"},"large":{"w":639,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507417034249814017,"source_status_id_str":"1507417034249814017","source_user_id":1363898990840991753,"source_user_id_str":"1363898990840991753"}]},"extended_entities":{"media":[{"id":1507175464976191499,"id_str":"1507175464976191499","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","url":"https:\/\/t.co\/V4dg0aJl7Y","display_url":"pic.twitter.com\/V4dg0aJl7Y","expanded_url":"https:\/\/twitter.com\/alucarddaily\/status\/1507417034249814017\/photo\/1","type":"photo","sizes":{"medium":{"w":639,"h":644,"resize":"fit"},"small":{"w":639,"h":644,"resize":"fit"},"large":{"w":639,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1507417034249814017,"source_status_id_str":"1507417034249814017","source_user_id":1363898990840991753,"source_user_id_str":"1363898990840991753"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:00:02 +0000 2022","id":1507417034249814017,"id_str":"1507417034249814017","text":"https:\/\/t.co\/V4dg0aJl7Y","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507175464976191499,"id_str":"1507175464976191499","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","url":"https:\/\/t.co\/V4dg0aJl7Y","display_url":"pic.twitter.com\/V4dg0aJl7Y","expanded_url":"https:\/\/twitter.com\/alucarddaily\/status\/1507417034249814017\/photo\/1","type":"photo","sizes":{"medium":{"w":639,"h":644,"resize":"fit"},"small":{"w":639,"h":644,"resize":"fit"},"large":{"w":639,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1507175464976191499,"id_str":"1507175464976191499","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOqQGZwXEAs32zb.png","url":"https:\/\/t.co\/V4dg0aJl7Y","display_url":"pic.twitter.com\/V4dg0aJl7Y","expanded_url":"https:\/\/twitter.com\/alucarddaily\/status\/1507417034249814017\/photo\/1","type":"photo","sizes":{"medium":{"w":639,"h":644,"resize":"fit"},"small":{"w":639,"h":644,"resize":"fit"},"large":{"w":639,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":854,"favorite_count":4576,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":854,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319962664244813825\/xkccXj-5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319962664244813825\/xkccXj-5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261659987\/1590580508","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3091121246,"id_str":"3091121246","name":"Caffeine - Driven Development","screen_name":"cjm4189","location":"Boston, MA","description":"Best - Uncle Ever. Under the Influencer. Software engineer working primarily with - the Microsoft stack. Humbled to have served via USMC. Extreme Moderate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":258,"friends_count":2928,"listed_count":11,"created_at":"Mon - Mar 16 21:28:05 +0000 2015","favourites_count":31002,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5523,"lang":null,"status":{"created_at":"Sat - Mar 26 01:18:02 +0000 2022","id":1507527263364997123,"id_str":"1507527263364997123","text":"RT - @pmarca: NO BIDET, NO PEACE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pmarca","name":"Marc - Andreessen","id":5943622,"id_str":"5943622","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:28:47 +0000 2022","id":1507514869435691008,"id_str":"1507514869435691008","text":"NO - BIDET, NO PEACE https:\/\/t.co\/H9H8YDQRGo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H9H8YDQRGo","expanded_url":"https:\/\/twitter.com\/professordunn\/status\/1507511213541904384","display_url":"twitter.com\/professordunn\/\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507511213541904384,"quoted_status_id_str":"1507511213541904384","retweet_count":7,"favorite_count":112,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507511213541904384,"quoted_status_id_str":"1507511213541904384","retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232469593723228160\/JcgjcC-L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232469593723228160\/JcgjcC-L_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3875181195,"id_str":"3875181195","name":"Yisu","screen_name":"jroscast","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":853,"listed_count":0,"created_at":"Mon - Oct 05 23:07:19 +0000 2015","favourites_count":376,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - Oct 20 14:30:16 +0000 2021","id":1450831740432523265,"id_str":"1450831740432523265","text":"RT - @san_jonel: Yo soy ese polvito","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"san_jonel","name":"jonel","id":3312893940,"id_str":"3312893940","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 20 02:11:41 +0000 2021","id":1450645867892035588,"id_str":"1450645867892035588","text":"Yo - soy ese polvito https:\/\/t.co\/oPZAwu0ilb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oPZAwu0ilb","expanded_url":"https:\/\/twitter.com\/aurielitoo\/status\/1450603563605012481","display_url":"twitter.com\/aurielitoo\/sta\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1450603563605012481,"quoted_status_id_str":"1450603563605012481","retweet_count":6,"favorite_count":26,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":true,"quoted_status_id":1450603563605012481,"quoted_status_id_str":"1450603563605012481","retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1338174256715358214\/n2aqEvhv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1338174256715358214\/n2aqEvhv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957836826554888192,"id_str":"957836826554888192","name":"Erdal","screen_name":"Erdal56933915","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":1555,"listed_count":0,"created_at":"Mon - Jan 29 04:44:29 +0000 2018","favourites_count":18740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":992,"lang":null,"status":{"created_at":"Sat - Mar 26 03:55:09 +0000 2022","id":1507566801508614144,"id_str":"1507566801508614144","text":"Mesut - olayi kimin basinin altindan ciktiysa.. halt yemis.. yazik.. uzucu..\n4 yil - icinde binlerce futbolcu, onlarca\u2026 https:\/\/t.co\/fOFPmjxyfd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fOFPmjxyfd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507566801508614144","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/957848273527681024\/zvLXCIow_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/957848273527681024\/zvLXCIow_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225274469041655808,"id_str":"1225274469041655808","name":"Nigel - de Unamuno","screen_name":"DrakeSantayana","location":"Los Angeles","description":"Legal - Counsel @ Postmodern Neo-Marxist Kapital Investments, LLC \n(\u2649\u2652\u264a)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":995,"friends_count":4687,"listed_count":1,"created_at":"Thu - Feb 06 04:26:25 +0000 2020","favourites_count":16546,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1491,"lang":null,"status":{"created_at":"Sat - Mar 26 06:07:32 +0000 2022","id":1507600117993377802,"id_str":"1507600117993377802","text":"RT - @NJGuitarBoy: @cher Patriot. https:\/\/t.co\/r4LUPH28h1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NJGuitarBoy","name":"David - F.","id":1400531060845391877,"id_str":"1400531060845391877","indices":[3,15]},{"screen_name":"cher","name":"Cher","id":124003770,"id_str":"124003770","indices":[17,22]}],"urls":[],"media":[{"id":1507511361869422599,"id_str":"1507511361869422599","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","url":"https:\/\/t.co\/r4LUPH28h1","display_url":"pic.twitter.com\/r4LUPH28h1","expanded_url":"https:\/\/twitter.com\/NJGuitarBoy\/status\/1507511368580280320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":565,"h":680,"resize":"fit"},"large":{"w":1259,"h":1514,"resize":"fit"},"medium":{"w":998,"h":1200,"resize":"fit"}},"source_status_id":1507511368580280320,"source_status_id_str":"1507511368580280320","source_user_id":1400531060845391877,"source_user_id_str":"1400531060845391877"}]},"extended_entities":{"media":[{"id":1507511361869422599,"id_str":"1507511361869422599","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","url":"https:\/\/t.co\/r4LUPH28h1","display_url":"pic.twitter.com\/r4LUPH28h1","expanded_url":"https:\/\/twitter.com\/NJGuitarBoy\/status\/1507511368580280320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":565,"h":680,"resize":"fit"},"large":{"w":1259,"h":1514,"resize":"fit"},"medium":{"w":998,"h":1200,"resize":"fit"}},"source_status_id":1507511368580280320,"source_status_id_str":"1507511368580280320","source_user_id":1400531060845391877,"source_user_id_str":"1400531060845391877"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:14:53 +0000 2022","id":1507511368580280320,"id_str":"1507511368580280320","text":"@cher - Patriot. https:\/\/t.co\/r4LUPH28h1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cher","name":"Cher","id":124003770,"id_str":"124003770","indices":[0,5]}],"urls":[],"media":[{"id":1507511361869422599,"id_str":"1507511361869422599","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","url":"https:\/\/t.co\/r4LUPH28h1","display_url":"pic.twitter.com\/r4LUPH28h1","expanded_url":"https:\/\/twitter.com\/NJGuitarBoy\/status\/1507511368580280320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":565,"h":680,"resize":"fit"},"large":{"w":1259,"h":1514,"resize":"fit"},"medium":{"w":998,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507511361869422599,"id_str":"1507511361869422599","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvBmLMXoAc28el.jpg","url":"https:\/\/t.co\/r4LUPH28h1","display_url":"pic.twitter.com\/r4LUPH28h1","expanded_url":"https:\/\/twitter.com\/NJGuitarBoy\/status\/1507511368580280320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":565,"h":680,"resize":"fit"},"large":{"w":1259,"h":1514,"resize":"fit"},"medium":{"w":998,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507507922598723586,"in_reply_to_status_id_str":"1507507922598723586","in_reply_to_user_id":124003770,"in_reply_to_user_id_str":"124003770","in_reply_to_screen_name":"cher","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":311,"favorite_count":1540,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"is_quote_status":false,"retweet_count":311,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"lv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348483645024059392\/flPh0n45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348483645024059392\/flPh0n45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1225274469041655808\/1610574549","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":360712765,"id_str":"360712765","name":"Phillip - Scott","screen_name":"PhillipScott3","location":"Bakersfield, CA.","description":"I - am the Webmaster of the Bakersfield Community Concert Association. The Association - presents 5 concerts a year at Harvey Auditorium in Bakersfield, CA.","url":"http:\/\/t.co\/BUQj8uFW2x","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/BUQj8uFW2x","expanded_url":"http:\/\/www.bakersfieldcca.org","display_url":"bakersfieldcca.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":604,"friends_count":4048,"listed_count":8,"created_at":"Tue - Aug 23 17:02:01 +0000 2011","favourites_count":161,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9229,"lang":null,"status":{"created_at":"Mon - Mar 29 01:59:49 +0000 2021","id":1376353368587702273,"id_str":"1376353368587702273","text":"RT - @UCLAMBB: FINAL\/OT: UCLA 88, Alabama 78\n\n#GoBruins | #MarchMadness https:\/\/t.co\/hmAyd4d2u6","truncated":false,"entities":{"hashtags":[{"text":"GoBruins","indices":[44,53]},{"text":"MarchMadness","indices":[56,69]}],"symbols":[],"user_mentions":[{"screen_name":"UCLAMBB","name":"UCLA - Men\u2019s Basketball","id":524643600,"id_str":"524643600","indices":[3,11]}],"urls":[],"media":[{"id":1376352102004314115,"id_str":"1376352102004314115","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","url":"https:\/\/t.co\/hmAyd4d2u6","display_url":"pic.twitter.com\/hmAyd4d2u6","expanded_url":"https:\/\/twitter.com\/UCLAMBB\/status\/1376352135894290434\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1376352135894290434,"source_status_id_str":"1376352135894290434","source_user_id":524643600,"source_user_id_str":"524643600"}]},"extended_entities":{"media":[{"id":1376352102004314115,"id_str":"1376352102004314115","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","url":"https:\/\/t.co\/hmAyd4d2u6","display_url":"pic.twitter.com\/hmAyd4d2u6","expanded_url":"https:\/\/twitter.com\/UCLAMBB\/status\/1376352135894290434\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1376352135894290434,"source_status_id_str":"1376352135894290434","source_user_id":524643600,"source_user_id_str":"524643600"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 29 01:54:55 +0000 2021","id":1376352135894290434,"id_str":"1376352135894290434","text":"FINAL\/OT: - UCLA 88, Alabama 78\n\n#GoBruins | #MarchMadness https:\/\/t.co\/hmAyd4d2u6","truncated":false,"entities":{"hashtags":[{"text":"GoBruins","indices":[31,40]},{"text":"MarchMadness","indices":[43,56]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1376352102004314115,"id_str":"1376352102004314115","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","url":"https:\/\/t.co\/hmAyd4d2u6","display_url":"pic.twitter.com\/hmAyd4d2u6","expanded_url":"https:\/\/twitter.com\/UCLAMBB\/status\/1376352135894290434\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1376352102004314115,"id_str":"1376352102004314115","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExnI8c3UUAMhDhG.jpg","url":"https:\/\/t.co\/hmAyd4d2u6","display_url":"pic.twitter.com\/hmAyd4d2u6","expanded_url":"https:\/\/twitter.com\/UCLAMBB\/status\/1376352135894290434\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":969,"favorite_count":3664,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":969,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/803704473814085632\/efUlJ-zV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/803704473814085632\/efUlJ-zV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360712765\/1583185626","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28721954,"id_str":"28721954","name":"Lynn - Cornell","screen_name":"LynnCorCO","location":"\u00dcT: 39.664255,-104.769558","description":"Music - Saves Me! Springsteen, Dead, JRAD, Goose and Slightly Stoopid to name a few. Still - waking up on the correct side of the dirt. Be Happy!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":292,"friends_count":4403,"listed_count":4,"created_at":"Sat - Apr 04 02:42:53 +0000 2009","favourites_count":5821,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Wed - Feb 09 23:36:55 +0000 2022","id":1491556748746010629,"id_str":"1491556748746010629","text":"RT - @bebopnana: I don\u2019t get a lot of traction with my tweets, but please - read and retweet this excellent letter. I\u2019m in Iowa, and the Republ\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bebopnana","name":"Bebopnana","id":1333101385,"id_str":"1333101385","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 23:46:50 +0000 2022","id":1491196856046854145,"id_str":"1491196856046854145","text":"I - don\u2019t get a lot of traction with my tweets, but please read and retweet - this excellent letter. I\u2019m in Iowa, and t\u2026 https:\/\/t.co\/BlTTO97Sdx","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BlTTO97Sdx","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491196856046854145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":969,"favorite_count":1479,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":969,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2841305454\/dbe2dcfdf46d04a917732ac6a95d6e16_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2841305454\/dbe2dcfdf46d04a917732ac6a95d6e16_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28721954\/1356455120","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1395813602,"id_str":"1395813602","name":"Jim - Miller","screen_name":"jmiller_seattle","location":"Mercer Island, WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":75,"listed_count":0,"created_at":"Wed - May 01 23:37:40 +0000 2013","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Sep 14 02:16:54 +0000 2021","id":1437601218591821828,"id_str":"1437601218591821828","text":"@mikepompeo - Well Mike, you\u2019re not the judge.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mikepompeo","name":"Mike - Pompeo","id":1163992520252153857,"id_str":"1163992520252153857","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1437405206598328320,"in_reply_to_status_id_str":"1437405206598328320","in_reply_to_user_id":1163992520252153857,"in_reply_to_user_id_str":"1163992520252153857","in_reply_to_screen_name":"mikepompeo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057276869437878272\/9WG5oEfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057276869437878272\/9WG5oEfR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2578879722,"id_str":"2578879722","name":"Margaret - Mills","screen_name":"mspegmills","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":281,"listed_count":0,"created_at":"Fri - Jun 20 16:04:49 +0000 2014","favourites_count":14521,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1052,"lang":null,"status":{"created_at":"Mon - Feb 07 20:11:55 +0000 2022","id":1490780381922004994,"id_str":"1490780381922004994","text":"@ABCPolitics - No ASl?? No captions!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABCPolitics","name":"ABC - News Politics","id":16815644,"id_str":"16815644","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1490777904925528067,"in_reply_to_status_id_str":"1490777904925528067","in_reply_to_user_id":16815644,"in_reply_to_user_id_str":"16815644","in_reply_to_screen_name":"ABCPolitics","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3290577872,"id_str":"3290577872","name":"Sailor","screen_name":"trimthemain","location":"","description":"Navy - Veteran, Retired Health Care Operations and Policy Executive. #resister,Biden\/Harris, - proudly served on Obama Transition Team, \ud83d\udc99 No DMs please Vote - Blue","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1662,"friends_count":2483,"listed_count":1,"created_at":"Fri - Jul 24 17:30:38 +0000 2015","favourites_count":10314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10965,"lang":null,"status":{"created_at":"Sat - Mar 26 03:10:38 +0000 2022","id":1507555597016727552,"id_str":"1507555597016727552","text":"@yeawelltoldu - Susan Collins voting clone.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yeawelltoldu","name":"p - wolfla","id":1242488032231653377,"id_str":"1242488032231653377","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507516962544496642,"in_reply_to_status_id_str":"1507516962544496642","in_reply_to_user_id":1242488032231653377,"in_reply_to_user_id_str":"1242488032231653377","in_reply_to_screen_name":"yeawelltoldu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624638538420654080\/UfErIRqI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624638538420654080\/UfErIRqI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290577872\/1437761804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1070747131755950080,"id_str":"1070747131755950080","name":"ewanroddie@gmail.com","screen_name":"ewanroddie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":575,"listed_count":0,"created_at":"Thu - Dec 06 18:29:44 +0000 2018","favourites_count":9217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":238441642,"id_str":"238441642","name":"pamela - passmore","screen_name":"passmorep","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":668,"listed_count":0,"created_at":"Sat - Jan 15 05:12:52 +0000 2011","favourites_count":2557,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Wed - Apr 07 12:24:24 +0000 2021","id":1379772040685748227,"id_str":"1379772040685748227","text":"@breakfastclubam - Wyu f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"breakfastclubam","name":"The - Breakfast Club","id":222436278,"id_str":"222436278","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1379758273235193859,"in_reply_to_status_id_str":"1379758273235193859","in_reply_to_user_id":222436278,"in_reply_to_user_id_str":"222436278","in_reply_to_screen_name":"breakfastclubam","geo":null,"coordinates":null,"place":{"id":"610a668f55d64af2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/610a668f55d64af2.json","place_type":"city","name":"Cloverleaf","full_name":"Cloverleaf, - TX","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-95.193084,29.755365],[-95.14658,29.755365],[-95.14658,29.8266404],[-95.193084,29.8266404]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463699984886411264\/7bumQ0Ld_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463699984886411264\/7bumQ0Ld_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238441642\/1403142250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1188403505226272769,"id_str":"1188403505226272769","name":"Rob - Villa","screen_name":"RobVill09875049","location":"Manzini","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":407,"listed_count":0,"created_at":"Sun - Oct 27 10:34:23 +0000 2019","favourites_count":65,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sat - Oct 24 12:28:20 +0000 2020","id":1319979036010041345,"id_str":"1319979036010041345","text":"Happy - bday Waza\ud83c\udf89\ud83c\udf81\ud83c\udf8a https:\/\/t.co\/uGyJbAaFK6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uGyJbAaFK6","expanded_url":"https:\/\/twitter.com\/UnitedsUpdate\/status\/1319875357110132738","display_url":"twitter.com\/UnitedsUpdate\/\u2026","indices":[19,42]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1319875357110132738,"quoted_status_id_str":"1319875357110132738","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1299615258332598273\/4GoMD-3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1299615258332598273\/4GoMD-3A_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1179168944755625985,"id_str":"1179168944755625985","name":"Richard - Hill","screen_name":"Richard93408478","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":621,"listed_count":0,"created_at":"Tue - Oct 01 22:59:38 +0000 2019","favourites_count":79,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1196936808476622849,"id_str":"1196936808476622849","name":"Leo - G. Aubel","screen_name":"g_aubel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":290,"listed_count":0,"created_at":"Tue - Nov 19 23:42:51 +0000 2019","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Dec 20 16:28:56 +0000 2021","id":1472967264278306819,"id_str":"1472967264278306819","text":"Bo - Jackson, 2-Sport Legend, Surprises South Chicago Family With Home Makeover - https:\/\/t.co\/vfpdAXOqMD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vfpdAXOqMD","expanded_url":"https:\/\/blockclubchicago.org\/2021\/12\/20\/bo-jackson-2-sport-legend-surprises-south-chicago-family-with-home-makeover\/","display_url":"blockclubchicago.org\/2021\/12\/20\/bo-\u2026","indices":[78,101]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1196936968648691712\/Ik3WIb_C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1196936968648691712\/Ik3WIb_C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286663839010959362,"id_str":"1286663839010959362","name":"Enyi","screen_name":"Enyi722204","location":"Lagos, - Nigeria","description":"I don\u2019t know what I want until I don\u2019t get - it","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":1919,"listed_count":0,"created_at":"Fri - Jul 24 14:06:13 +0000 2020","favourites_count":528,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":601,"lang":null,"status":{"created_at":"Wed - Apr 21 11:41:36 +0000 2021","id":1384834703576928260,"id_str":"1384834703576928260","text":"@realFFK - Yesooo. I believe they will take their biometrics and DNA and use to identify - every cow when their rights\u2026 https:\/\/t.co\/UhyQQHYifd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realFFK","name":"Femi - Fani-Kayode","id":597224882,"id_str":"597224882","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/UhyQQHYifd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1384834703576928260","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1384805648777547778,"in_reply_to_status_id_str":"1384805648777547778","in_reply_to_user_id":597224882,"in_reply_to_user_id_str":"597224882","in_reply_to_screen_name":"realFFK","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317394802644844544\/zuUbziJB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317394802644844544\/zuUbziJB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286663839010959362\/1602926454","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":523871316,"id_str":"523871316","name":"Mark - Cashion","screen_name":"cash89mc","location":"716","description":"1st Team - All Gratwick","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":3252,"listed_count":4,"created_at":"Wed - Mar 14 01:04:54 +0000 2012","favourites_count":1229,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1076,"lang":null,"status":{"created_at":"Fri - Mar 18 15:37:46 +0000 2022","id":1504844516292968454,"id_str":"1504844516292968454","text":"@andycomplains - @BladeofBuffalo @AEW @AEWonTV All of gratwick will be watching","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andycomplains","name":"Bunkhouse - Butch","id":50789545,"id_str":"50789545","indices":[0,14]},{"screen_name":"BladeofBuffalo","name":"The - Blade","id":278836755,"id_str":"278836755","indices":[15,30]},{"screen_name":"AEW","name":"All - Elite Wrestling","id":1054863627029598208,"id_str":"1054863627029598208","indices":[31,35]},{"screen_name":"AEWonTV","name":"AEW - on TV","id":1128707845589876736,"id_str":"1128707845589876736","indices":[36,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504797151032975363,"in_reply_to_status_id_str":"1504797151032975363","in_reply_to_user_id":50789545,"in_reply_to_user_id_str":"50789545","in_reply_to_screen_name":"andycomplains","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/735919841631215617\/NdkyWVnK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/735919841631215617\/NdkyWVnK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/523871316\/1564606809","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156931593929416707,"id_str":"1156931593929416707","name":"Steph - Stoddart","screen_name":"steph_stoddart","location":"","description":"Jail - Trump","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":94,"listed_count":0,"created_at":"Thu - Aug 01 14:16:01 +0000 2019","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Thu - Dec 24 18:30:54 +0000 2020","id":1342175938440810499,"id_str":"1342175938440810499","text":"@601Gary - @therubbersole @Jacob_Rees_Mogg Corrupt EU? Have you seen what the tories - have been up to recently","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"601Gary","name":"gary","id":2749124949,"id_str":"2749124949","indices":[0,8]},{"screen_name":"therubbersole","name":"Alexander - Brown","id":153519509,"id_str":"153519509","indices":[9,23]},{"screen_name":"Jacob_Rees_Mogg","name":"Jacob - Rees-Mogg","id":885838630928994304,"id_str":"885838630928994304","indices":[24,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1342158093900247041,"in_reply_to_status_id_str":"1342158093900247041","in_reply_to_user_id":2749124949,"in_reply_to_user_id_str":"2749124949","in_reply_to_screen_name":"601Gary","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1079028456015437830,"id_str":"1079028456015437830","name":"Sara - Hunt","screen_name":"SaraHun65530661","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":276,"listed_count":0,"created_at":"Sat - Dec 29 14:56:46 +0000 2018","favourites_count":32004,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":327,"lang":null,"status":{"created_at":"Fri - Mar 25 23:47:09 +0000 2022","id":1507504389073915907,"id_str":"1507504389073915907","text":"RT - @OccupyDemocrats: BREAKING: Senator John Manchin sides with Democrats for - once, announces that he will support the nomination of Judge K\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:16:25 +0000 2022","id":1507390958047936516,"id_str":"1507390958047936516","text":"BREAKING: - Senator John Manchin sides with Democrats for once, announces that he will - support the nomination of Judg\u2026 https:\/\/t.co\/f6mrZ3UWT6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f6mrZ3UWT6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507390958047936516","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1618,"favorite_count":4836,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1618,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":479734236,"id_str":"479734236","name":"gsingh45","screen_name":"gsingh45","location":"Gurnee, - IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":45,"listed_count":0,"created_at":"Tue - Jan 31 18:16:03 +0000 2012","favourites_count":549,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Sat - Jan 30 22:41:45 +0000 2021","id":1355647417891352580,"id_str":"1355647417891352580","text":"RT - @TheHinduYoddha: @rohini_sgh We live in a country where a journalist for 2BHK - sells her journalism and yet preach others about morality.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheHinduYoddha","name":"Rajeev - Singh Rathore\ud83c\uddee\ud83c\uddf3","id":455214576,"id_str":"455214576","indices":[3,18]},{"screen_name":"rohini_sgh","name":"Rohini - Singh","id":267861878,"id_str":"267861878","indices":[20,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 30 19:26:23 +0000 2021","id":1355598250833805312,"id_str":"1355598250833805312","text":"@rohini_sgh - We live in a country where a journalist for 2BHK sells her journalism and - yet preach others about morality.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rohini_sgh","name":"Rohini - Singh","id":267861878,"id_str":"267861878","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1355593628408664067,"in_reply_to_status_id_str":"1355593628408664067","in_reply_to_user_id":267861878,"in_reply_to_user_id_str":"267861878","in_reply_to_screen_name":"rohini_sgh","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":162,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":21,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154811287706017792,"id_str":"1154811287706017792","name":"Wetheunhoused","screen_name":"TheoHen95302259","location":"Los - Angeles","description":"Martial arts and social justice \nhttps:\/\/t.co\/avBwyHLxs0\n\n\n\nhttps:\/\/t.co\/ygwOZ7sozL?amp=1","url":"https:\/\/t.co\/avBwyHLxs0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/avBwyHLxs0","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5025,"friends_count":4961,"listed_count":45,"created_at":"Fri - Jul 26 17:50:41 +0000 2019","favourites_count":42797,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37274,"lang":null,"status":{"created_at":"Sat - Mar 26 05:58:15 +0000 2022","id":1507597779656318995,"id_str":"1507597779656318995","text":"RT - @RoofLesser: @HouselessGamer They get fucked over too though @TheoHen95302259 - did an investigation","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoofLesser","name":"\u26fa\ufe0f\ud83d\uded2Profane, - Poor Plebe\ud83c\udf3b\ud83c\udff3\ufe0f\ud83d\udda4 Sits in 41.18 Zones","id":1320247997851004928,"id_str":"1320247997851004928","indices":[3,14]},{"screen_name":"HouselessGamer","name":"Matthew - \"House\" Luna \uea00\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":1446967982,"id_str":"1446967982","indices":[16,31]},{"screen_name":"TheoHen95302259","name":"Wetheunhoused","id":1154811287706017792,"id_str":"1154811287706017792","indices":[64,80]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:57:20 +0000 2022","id":1507582449085140994,"id_str":"1507582449085140994","text":"@HouselessGamer - They get fucked over too though @TheoHen95302259 did an investigation","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HouselessGamer","name":"Matthew - \"House\" Luna \uea00\ud83c\udf3b\ud83c\uddfa\ud83c\udde6","id":1446967982,"id_str":"1446967982","indices":[0,15]},{"screen_name":"TheoHen95302259","name":"Wetheunhoused","id":1154811287706017792,"id_str":"1154811287706017792","indices":[48,64]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507582145149083651,"in_reply_to_status_id_str":"1507582145149083651","in_reply_to_user_id":1446967982,"in_reply_to_user_id_str":"1446967982","in_reply_to_screen_name":"HouselessGamer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319516533450629120\/EotFmkMb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319516533450629120\/EotFmkMb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154811287706017792\/1575347340","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":746550859425783808,"id_str":"746550859425783808","name":"margaret - apina","screen_name":"MargaretApina","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":269,"listed_count":0,"created_at":"Sat - Jun 25 03:49:30 +0000 2016","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"status":{"created_at":"Wed - Oct 27 20:25:24 +0000 2021","id":1453457824999256066,"id_str":"1453457824999256066","text":"RT - @donwinslow: https:\/\/t.co\/SBrcU2qVYr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[3,14]}],"urls":[],"media":[{"id":1453069725492203526,"id_str":"1453069725492203526","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","url":"https:\/\/t.co\/SBrcU2qVYr","display_url":"pic.twitter.com\/SBrcU2qVYr","expanded_url":"https:\/\/twitter.com\/Women2Dc\/status\/1453069784141254664\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1453069784141254664,"source_status_id_str":"1453069784141254664","source_user_id":1046573464604291073,"source_user_id_str":"1046573464604291073"}]},"extended_entities":{"media":[{"id":1453069725492203526,"id_str":"1453069725492203526","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","url":"https:\/\/t.co\/SBrcU2qVYr","display_url":"pic.twitter.com\/SBrcU2qVYr","expanded_url":"https:\/\/twitter.com\/Women2Dc\/status\/1453069784141254664\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1453069784141254664,"source_status_id_str":"1453069784141254664","source_user_id":1046573464604291073,"source_user_id_str":"1046573464604291073","video_info":{"aspect_ratio":[9,16],"duration_millis":92600,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/vid\/360x640\/VysL-WQyweiELtua.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/vid\/320x568\/51Y5Naom1XtvYas-.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/pl\/XpRS-nMMnE23e5rt.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Oct 26 20:31:33 +0000 2021","id":1453096985968275457,"id_str":"1453096985968275457","text":"https:\/\/t.co\/SBrcU2qVYr","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1453069725492203526,"id_str":"1453069725492203526","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","url":"https:\/\/t.co\/SBrcU2qVYr","display_url":"pic.twitter.com\/SBrcU2qVYr","expanded_url":"https:\/\/twitter.com\/Women2Dc\/status\/1453069784141254664\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1453069784141254664,"source_status_id_str":"1453069784141254664","source_user_id":1046573464604291073,"source_user_id_str":"1046573464604291073"}]},"extended_entities":{"media":[{"id":1453069725492203526,"id_str":"1453069725492203526","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1453069725492203526\/pu\/img\/bwllL6LYBZgtw9RL.jpg","url":"https:\/\/t.co\/SBrcU2qVYr","display_url":"pic.twitter.com\/SBrcU2qVYr","expanded_url":"https:\/\/twitter.com\/Women2Dc\/status\/1453069784141254664\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"small":{"w":360,"h":640,"resize":"fit"}},"source_status_id":1453069784141254664,"source_status_id_str":"1453069784141254664","source_user_id":1046573464604291073,"source_user_id_str":"1046573464604291073","video_info":{"aspect_ratio":[9,16],"duration_millis":92600,"variants":[{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/vid\/360x640\/VysL-WQyweiELtua.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/vid\/320x568\/51Y5Naom1XtvYas-.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1453069725492203526\/pu\/pl\/XpRS-nMMnE23e5rt.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3929,"favorite_count":9310,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":3929,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":622983542,"id_str":"622983542","name":"balancing","screen_name":"Aimeeeerobinson","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":2846,"listed_count":0,"created_at":"Sat - Jun 30 17:23:22 +0000 2012","favourites_count":11102,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7812,"lang":null,"status":{"created_at":"Sat - Mar 26 01:20:10 +0000 2022","id":1507527801217290243,"id_str":"1507527801217290243","text":"RT - @jackeparrock: This really is quite something. Wait for the total admonishment - of Hungary\u2019s Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jackeparrock","name":"Jack - Parrock","id":218901217,"id_str":"218901217","indices":[3,16]}],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:00:35 +0000 2022","id":1507386974851805194,"id_str":"1507386974851805194","text":"This - really is quite something. Wait for the total admonishment of Hungary\u2019s - Viktor Orban. https:\/\/t.co\/zVrkwNY1eL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253"}]},"extended_entities":{"media":[{"id":1507385086517432329,"id_str":"1507385086517432329","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1507385086517432329\/img\/DnZ2Nwqv0rX69o5J.jpg","url":"https:\/\/t.co\/zVrkwNY1eL","display_url":"pic.twitter.com\/zVrkwNY1eL","expanded_url":"https:\/\/twitter.com\/lugaricano\/status\/1507386011080400925\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":832,"h":464,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"},"medium":{"w":832,"h":464,"resize":"fit"}},"source_status_id":1507386011080400925,"source_status_id_str":"1507386011080400925","source_user_id":117773253,"source_user_id_str":"117773253","video_info":{"aspect_ratio":[52,29],"duration_millis":193584,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/pl\/n_KsbFnGtKAw3FVi.m3u8?tag=14&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/832x464\/FwFvuuGUGxt1_xP3.mp4?tag=14"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1507385086517432329\/vid\/484x270\/c9KYnvquDt2mcLtN.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"0653bb913c88c1ea","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0653bb913c88c1ea.json","place_type":"city","name":"Brussels","full_name":"Brussels, - Belgium","country_code":"BE","country":"Belgium","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[4.3139889,50.7963282],[4.4369472,50.7963282],[4.4369472,50.9137064],[4.3139889,50.9137064]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12530,"favorite_count":50566,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12530,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232465472001458176\/p5lijksv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232465472001458176\/p5lijksv_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307695497642082305,"id_str":"1307695497642082305","name":"karan - singh","screen_name":"karannikki2015","location":"Ghaziabad, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":159,"listed_count":0,"created_at":"Sun - Sep 20 14:58:17 +0000 2020","favourites_count":1102,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Oct 28 11:23:54 +0000 2021","id":1453683939709624321,"id_str":"1453683939709624321","text":"RT - @FoxNews: NFL Power Rankings 2021: Top 10 teams ahead of Week 8\n\nhttps:\/\/t.co\/RKw4otpTWe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/RKw4otpTWe","expanded_url":"https:\/\/www.foxnews.com\/sports\/nfl-power-rankings-2021-top-10-teams-week-8","display_url":"foxnews.com\/sports\/nfl-pow\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 28 11:23:08 +0000 2021","id":1453683748319416322,"id_str":"1453683748319416322","text":"NFL - Power Rankings 2021: Top 10 teams ahead of Week 8\n\nhttps:\/\/t.co\/RKw4otpTWe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RKw4otpTWe","expanded_url":"https:\/\/www.foxnews.com\/sports\/nfl-power-rankings-2021-top-10-teams-week-8","display_url":"foxnews.com\/sports\/nfl-pow\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":47,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":878031493389578240,"id_str":"878031493389578240","name":"Jay;","screen_name":"Jasonda25915030","location":"Earth\ud83c\udf0d","description":"If - a man begins with certainties, he shall end in doubts; but if he will begin - with doubts, he shall end in certainties.\nFrancis Bacon","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":1770,"listed_count":1,"created_at":"Thu - Jun 22 23:26:35 +0000 2017","favourites_count":3491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2472,"lang":null,"status":{"created_at":"Tue - Mar 22 13:06:26 +0000 2022","id":1506255986750857222,"id_str":"1506255986750857222","text":"@talkRADIO - @Iromg Isn''t the wef pro big business and anti human? No conspiracy needed.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"talkRADIO","name":"talkRADIO","id":3380282686,"id_str":"3380282686","indices":[0,10]},{"screen_name":"Iromg","name":"Mike - Graham \ud83c\uddec\ud83c\udde7","id":207739658,"id_str":"207739658","indices":[11,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506242913679945732,"in_reply_to_status_id_str":"1506242913679945732","in_reply_to_user_id":3380282686,"in_reply_to_user_id_str":"3380282686","in_reply_to_screen_name":"talkRADIO","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427300968991973380\/qM-_Cd9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427300968991973380\/qM-_Cd9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878031493389578240\/1626532722","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":167430989,"id_str":"167430989","name":"Tim - Winstead","screen_name":"TOW2059","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":278,"listed_count":0,"created_at":"Fri - Jul 16 15:36:16 +0000 2010","favourites_count":2304,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2636,"lang":null,"status":{"created_at":"Wed - Oct 06 18:12:17 +0000 2021","id":1445814182381641734,"id_str":"1445814182381641734","text":"RT - @OccupyDemocrats: BREAKING NEWS: Biden responds to the Trumpers who chant - and hold signs saying \u201cF*ck Joe Biden,\u201d reminding them that he\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 06 01:58:42 +0000 2021","id":1445569173057204233,"id_str":"1445569173057204233","text":"BREAKING - NEWS: Biden responds to the Trumpers who chant and hold signs saying \u201cF*ck - Joe Biden,\u201d reminding them that\u2026 https:\/\/t.co\/c0EsGlOUor","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c0EsGlOUor","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1445569173057204233","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4646,"favorite_count":9900,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4646,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1337742595548721152\/O4rC7BPH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1337742595548721152\/O4rC7BPH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167430989\/1607777771","profile_link_color":"0084B4","profile_sidebar_border_color":"4182A3","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"945F94","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219498660251127809,"id_str":"1219498660251127809","name":"alex","screen_name":"alex01960830","location":"","description":"Like - music and nature.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":154,"listed_count":0,"created_at":"Tue - Jan 21 05:55:34 +0000 2020","favourites_count":1836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"status":{"created_at":"Thu - Nov 25 06:36:03 +0000 2021","id":1463758362202435590,"id_str":"1463758362202435590","text":"@Msdesignerlady - He has low ratings because people believe the mainstream media about how bad - things are.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Msdesignerlady","name":"Holly - \ud83c\udf3b","id":32467167,"id_str":"32467167","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1463352613605412864,"in_reply_to_status_id_str":"1463352613605412864","in_reply_to_user_id":32467167,"in_reply_to_user_id_str":"32467167","in_reply_to_screen_name":"Msdesignerlady","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219499123088355328\/1mGFTXDx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219499123088355328\/1mGFTXDx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219498660251127809\/1630043593","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1691697590,"id_str":"1691697590","name":"Annytoolz\ud83c\uddf3\ud83c\uddec\ud83c\uddfa\ud83c\uddf8","screen_name":"AnnytoolzDavid","location":"abuja","description":"Entrepreneur - | blogger & gist lover| Barcelona fc \u2764 Davido \u2661\u2661\u2661\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1731,"friends_count":4900,"listed_count":4,"created_at":"Thu - Aug 22 17:48:32 +0000 2013","favourites_count":210156,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2065,"lang":null,"status":{"created_at":"Fri - Mar 25 02:09:47 +0000 2022","id":1507177897089449993,"id_str":"1507177897089449993","text":"RAVE - AND ROSES \ud83d\udc99","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503520405356793856\/TH77e-uN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503520405356793856\/TH77e-uN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":961296122,"id_str":"961296122","name":"Robbie - Bartlett","screen_name":"rbrtbrtltt","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":802,"listed_count":0,"created_at":"Tue - Nov 20 22:04:51 +0000 2012","favourites_count":9475,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":844,"lang":null,"status":{"created_at":"Mon - Nov 29 03:07:25 +0000 2021","id":1465155408952270849,"id_str":"1465155408952270849","text":"@chipfranklin - Absolutely!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1465049078841159688,"in_reply_to_status_id_str":"1465049078841159688","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2650655240,"id_str":"2650655240","name":"#DefundTheBBC - #GSBOUT","screen_name":"Dave49Hammer","location":"England","description":"Dad, - Cockney, West Ham, Comedy, Acting, Voiceovers, Maths Tutor, Reggae, SKA, - \nThe The, Mark King.\nRT means I pressed RT.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":767,"friends_count":911,"listed_count":0,"created_at":"Wed - Jul 16 10:23:47 +0000 2014","favourites_count":40442,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40208,"lang":null,"status":{"created_at":"Sat - Nov 27 18:20:48 +0000 2021","id":1464660494380326920,"id_str":"1464660494380326920","text":"@Danjsalt - @marsman1258 So true.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Danjsalt","name":"Dan - Salt","id":1355266428874731526,"id_str":"1355266428874731526","indices":[0,9]},{"screen_name":"marsman1258","name":"Marius","id":468372806,"id_str":"468372806","indices":[10,22]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1464613515524771847,"in_reply_to_status_id_str":"1464613515524771847","in_reply_to_user_id":1355266428874731526,"in_reply_to_user_id_str":"1355266428874731526","in_reply_to_screen_name":"Danjsalt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1431978709297336324\/cpWQfTPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1431978709297336324\/cpWQfTPv_normal.jpg","profile_link_color":"B3005F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301029141,"id_str":"1301029141","name":"Marie - Alagia Cull","screen_name":"CullMarie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":941,"listed_count":1,"created_at":"Mon - Mar 25 20:35:39 +0000 2013","favourites_count":918,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Fri - Dec 17 18:24:33 +0000 2021","id":1471909193007386628,"id_str":"1471909193007386628","text":"RT - @BGPolitics: Ky Bar Assn: We have activated our disaster response plan. It''s - a Class A misdemeanor for lawyers or lawyer referral servic\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BGPolitics","name":"Bluegrass - Politics","id":21233325,"id_str":"21233325","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 16:59:31 +0000 2021","id":1471887794012311560,"id_str":"1471887794012311560","text":"Ky - Bar Assn: We have activated our disaster response plan. It''s a Class A misdemeanor - for lawyers or lawyer referra\u2026 https:\/\/t.co\/IYCNBtDlu2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IYCNBtDlu2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471887794012311560","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":41,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1190709363897458694,"id_str":"1190709363897458694","name":"Isabel","screen_name":"Isabel03632778","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":745,"listed_count":0,"created_at":"Sat - Nov 02 19:17:10 +0000 2019","favourites_count":21235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":247,"lang":null,"status":{"created_at":"Thu - Mar 24 17:00:35 +0000 2022","id":1507039686241538049,"id_str":"1507039686241538049","text":"@CalltoActivism - Grrrreat","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalltoActivism","name":"CALL - TO ACTIVISM","id":819994707061248001,"id_str":"819994707061248001","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506775288482770944,"in_reply_to_status_id_str":"1506775288482770944","in_reply_to_user_id":819994707061248001,"in_reply_to_user_id_str":"819994707061248001","in_reply_to_screen_name":"CalltoActivism","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274444838637887488,"id_str":"1274444838637887488","name":"Superior","screen_name":"S85887535","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":62,"listed_count":0,"created_at":"Sat - Jun 20 20:51:57 +0000 2020","favourites_count":54440,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Mon - Jan 10 19:26:15 +0000 2022","id":1480622029883813896,"id_str":"1480622029883813896","text":"@ChauSidara - Blackchocobites","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChauSidara","name":"\ud83d\udc2f\u1d2e\u1d31 - Yourself \ud83d\udc30","id":1252047426334142465,"id_str":"1252047426334142465","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1480314597886279683,"in_reply_to_status_id_str":"1480314597886279683","in_reply_to_user_id":1252047426334142465,"in_reply_to_user_id_str":"1252047426334142465","in_reply_to_screen_name":"ChauSidara","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445955676753350656\/20TQZfsF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445955676753350656\/20TQZfsF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1084607320083042305,"id_str":"1084607320083042305","name":"Donna - Sprague","screen_name":"DonnaSprague13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":309,"listed_count":0,"created_at":"Mon - Jan 14 00:25:10 +0000 2019","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Mon - Jan 03 22:10:27 +0000 2022","id":1478126636386205705,"id_str":"1478126636386205705","text":"@HardballChris - You were so right!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HardballChris","name":"Chris - Matthews","id":48802204,"id_str":"48802204","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1477787775529144321,"in_reply_to_status_id_str":"1477787775529144321","in_reply_to_user_id":48802204,"in_reply_to_user_id_str":"48802204","in_reply_to_screen_name":"HardballChris","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":469514221,"id_str":"469514221","name":"F. - Rachel Magdalene","screen_name":"FRMagdalene","location":"Ohio, USA","description":"Democratic - Campaign Manager; retired biblical\/Mesopotamian legal scholar, attorney - & pastor; mom, true blue life-long Democrat","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":515,"friends_count":2156,"listed_count":7,"created_at":"Fri - Jan 20 17:41:46 +0000 2012","favourites_count":7934,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4524,"lang":null,"status":{"created_at":"Wed - Mar 23 19:34:23 +0000 2022","id":1506716003597787139,"id_str":"1506716003597787139","text":"RT - @garci32: \u2018It\u2019s a Sh*tshow\u2019: Russian Troops Are Now Turning - on Each Other\nhttps:\/\/t.co\/y6j0IHLHvo\nDevastating losses reportedly led - one\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"garci32","name":"Jaime - Garcia","id":251306865,"id_str":"251306865","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/y6j0IHLHvo","expanded_url":"https:\/\/www.thedailybeast.com\/russian-troops-are-now-turning-on-each-other-its-a-shtshow-one-soldier-is-recorded-telling-another?ref=home&utm_source=web_push","display_url":"thedailybeast.com\/russian-troops\u2026","indices":[77,100]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 14:58:19 +0000 2022","id":1506646528122929159,"id_str":"1506646528122929159","text":"\u2018It\u2019s - a Sh*tshow\u2019: Russian Troops Are Now Turning on Each Other\nhttps:\/\/t.co\/y6j0IHLHvo\nDevastating - losses reported\u2026 https:\/\/t.co\/m0RsXG8H2T","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y6j0IHLHvo","expanded_url":"https:\/\/www.thedailybeast.com\/russian-troops-are-now-turning-on-each-other-its-a-shtshow-one-soldier-is-recorded-telling-another?ref=home&utm_source=web_push","display_url":"thedailybeast.com\/russian-troops\u2026","indices":[64,87]},{"url":"https:\/\/t.co\/m0RsXG8H2T","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506646528122929159","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":34,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/832728294122455042\/MTJ9wp9e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/832728294122455042\/MTJ9wp9e_normal.jpg","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243711336904658944,"id_str":"1243711336904658944","name":"Onesgman","screen_name":"RainLi18082307","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":183,"listed_count":0,"created_at":"Sat - Mar 28 01:27:58 +0000 2020","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sun - Mar 20 10:25:23 +0000 2022","id":1505490679929380866,"id_str":"1505490679929380866","text":"@Zhanglihualois - \u4f53\u80b2\u573a\u91cc\u6700\u591a\u4e5f\u5c3120\u4e07\u4eba\uff0c\u666e\u4eac\u8fd9\u70b9\u7c89\u4e1d\u8fd8\u662f\u6709\u7684","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Zhanglihualois","name":"Lois - \ud83d\udc9c\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d","id":858424977095221248,"id_str":"858424977095221248","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504929685007855616,"in_reply_to_status_id_str":"1504929685007855616","in_reply_to_user_id":858424977095221248,"in_reply_to_user_id_str":"858424977095221248","in_reply_to_screen_name":"Zhanglihualois","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"zh"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424976290080120832\/hVE-HJm5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424976290080120832\/hVE-HJm5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1197756940564287488,"id_str":"1197756940564287488","name":"Ilma - Abagadaa","screen_name":"IAbagadaa","location":"","description":"bright face","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1126,"friends_count":2360,"listed_count":0,"created_at":"Fri - Nov 22 06:01:59 +0000 2019","favourites_count":925,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Fri - Mar 25 14:41:03 +0000 2022","id":1507366962317471754,"id_str":"1507366962317471754","text":"RT - @AwalAda43872161: While HR6600 is a timely resolution, the US should recognize - the affected people''s right to self-determination. Territ\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AwalAda43872161","name":"Galgaloo - Guyyo Didaa","id":1488120652024451072,"id_str":"1488120652024451072","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:29:28 +0000 2022","id":1507258346927181835,"id_str":"1507258346927181835","text":"While - HR6600 is a timely resolution, the US should recognize the affected people''s - right to self-determination. Ter\u2026 https:\/\/t.co\/r1VC3sOMDv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r1VC3sOMDv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507258346927181835","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469053863818928134\/brYD2tKa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469053863818928134\/brYD2tKa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":849238382404395013,"id_str":"849238382404395013","name":"Emma.O - Akpasubi","screen_name":"AkpasubiO","location":"Benin-City, Nigeria","description":"Minister - of the Gospel and Writer, who is also committed to upholding the tenets of - good governance and social justice.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":673,"friends_count":2942,"listed_count":0,"created_at":"Tue - Apr 04 12:33:03 +0000 2017","favourites_count":15541,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2541,"lang":null,"status":{"created_at":"Wed - Mar 23 08:48:10 +0000 2022","id":1506553377056075777,"id_str":"1506553377056075777","text":"@SaharaReporters - The dynamism of security operations doesn''t allow for personal or group sentiments - to be influenci\u2026 https:\/\/t.co\/LJnF9FmbpH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaharaReporters","name":"Sahara - Reporters","id":17409452,"id_str":"17409452","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/LJnF9FmbpH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506553377056075777","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506544941543178241,"in_reply_to_status_id_str":"1506544941543178241","in_reply_to_user_id":17409452,"in_reply_to_user_id_str":"17409452","in_reply_to_screen_name":"SaharaReporters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898914784741031937\/aiT9JCl6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898914784741031937\/aiT9JCl6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291635176326533120,"id_str":"1291635176326533120","name":"Sam - K","screen_name":"SamK98209573","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":486,"listed_count":0,"created_at":"Fri - Aug 07 07:20:14 +0000 2020","favourites_count":431,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Feb 09 17:48:07 +0000 2022","id":1491468971865956358,"id_str":"1491468971865956358","text":"RT - @KakwenzaRukira: Superannuated dictator Museveni and your pachydamatous curmudgeon - son, you touched a wrong person. I promise you that y\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KakwenzaRukira","name":"Kakwenza - Rukirabashaija","id":1076402943686033408,"id_str":"1076402943686033408","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 09 17:18:12 +0000 2022","id":1491461440754049027,"id_str":"1491461440754049027","text":"Superannuated - dictator Museveni and your pachydamatous curmudgeon son, you touched a wrong - person. I promise you th\u2026 https:\/\/t.co\/qSDS4wfLzE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qSDS4wfLzE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491461440754049027","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":726,"favorite_count":3231,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":726,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1384242590267023369\/1pwJ05NZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1384242590267023369\/1pwJ05NZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":363720773,"id_str":"363720773","name":"Zak - Ferrari","screen_name":"ZakFerrari","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":284,"listed_count":0,"created_at":"Sun - Aug 28 15:41:50 +0000 2011","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911939369350701062\/cBoM9HIA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911939369350701062\/cBoM9HIA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363720773\/1506258250","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":390152633,"id_str":"390152633","name":"Ginger - Queen GB Booker","screen_name":"servicesbygb","location":"Fort Worth, TX","description":"Business - Woman Wife Mother Sister Aunt Daughter! Blessed w\/ the Most Amazing Husband - Son & Fur-Son! https:\/\/t.co\/uzi2sq59eH https:\/\/t.co\/1B7oENEAmY?amp=1","url":"https:\/\/t.co\/8lGs8mCYzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8lGs8mCYzA","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":2899,"listed_count":5,"created_at":"Thu - Oct 13 14:59:10 +0000 2011","favourites_count":3590,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5479,"lang":null,"status":{"created_at":"Fri - Mar 25 23:03:43 +0000 2022","id":1507493459841667081,"id_str":"1507493459841667081","text":"RT - @TheJHigh: I genuinely like giving compliments. Like to da homies or a random - shorty ion even care lol be like \u201cdamn bro i fw that shirt\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheJHigh","name":"KingSluu\ud83d\udc51\ud83d\ude4c\ud83c\udffc","id":545711239,"id_str":"545711239","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:02:38 +0000 2022","id":1507357294270558209,"id_str":"1507357294270558209","text":"I - genuinely like giving compliments. Like to da homies or a random shorty ion - even care lol be like \u201cdamn bro i fw\u2026 https:\/\/t.co\/dJqTmVVRJ5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dJqTmVVRJ5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507357294270558209","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179986946652884998\/LindLY8n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179986946652884998\/LindLY8n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390152633\/1634725419","profile_link_color":"19CF86","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":57897876,"id_str":"57897876","name":"stephen - izzard","screen_name":"sji33","location":"UK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":44,"friends_count":1292,"listed_count":1,"created_at":"Sat - Jul 18 09:34:13 +0000 2009","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342936401931886592\/Dykl1g4d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342936401931886592\/Dykl1g4d_normal.jpg","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291062731018252288,"id_str":"1291062731018252288","name":"Anwar - Abdel Khalek MD","screen_name":"AnwarAbdelKhal2","location":"","description":"Docteur - en m\u00e9decine (USJ) _dipl\u00f4me d''\u00e9tat (m\u00e9decine interne _Paris) - _C. E. S. m\u00e9decine pr\u00e9ventive, sant\u00e9 publique et hygi\u00e8ne - (Paris) _dipl\u00f4me ultrasonographie..","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":1218,"listed_count":0,"created_at":"Wed - Aug 05 17:25:50 +0000 2020","favourites_count":8386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2552,"lang":null,"status":{"created_at":"Fri - Mar 25 13:17:41 +0000 2022","id":1507345978717839361,"id_str":"1507345978717839361","text":"@UltherapyliftRj - \u062f\u063a\u0631\u064a \u062e\u062a\u0645\u062a\u064a \u0627\u0644\u062a\u062d\u0642\u064a\u0642 - \u061f\u061f \u0645\u0627 \u0645\u0639\u0648 \u0634\u0631\u0643\u0627\u0621\u061f - \u0648\u0642\u062f \u062a\u062d\u0635\u0644 \u0645\u0641\u0627\u062c\u0623\u062a - \u0644\u064a\u0633\u062a \u0628\u0627\u0644\u062d\u0633\u0628\u0627\u0646...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UltherapyliftRj","name":"sofia","id":2193840483,"id_str":"2193840483","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507345450495582213,"in_reply_to_status_id_str":"1507345450495582213","in_reply_to_user_id":2193840483,"in_reply_to_user_id_str":"2193840483","in_reply_to_screen_name":"UltherapyliftRj","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292884497332142080\/h5X1003R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292884497332142080\/h5X1003R_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":763036430708932609,"id_str":"763036430708932609","name":"Miranda - winston","screen_name":"Mirandawinston3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":64,"listed_count":0,"created_at":"Tue - Aug 09 15:37:16 +0000 2016","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":745041735357587456,"id_str":"745041735357587456","name":"abby - weizer\ud83c\udf19\ud83c\udf38\u264f\ufe0f\u2764\ufe0f\ud83d\udd2e","screen_name":"abbyweizer","location":"\"radiant, - carefree, dreamy\"","description":"she\/her \u2022 just your slocal \u263c - \u264f\ufe0e \u263e \u2651\ufe0e \u2191 \u2648\ufe0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":408,"listed_count":0,"created_at":"Mon - Jun 20 23:52:46 +0000 2016","favourites_count":8760,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":998,"lang":null,"status":{"created_at":"Tue - Aug 03 03:07:15 +0000 2021","id":1422393598666891266,"id_str":"1422393598666891266","text":"RT - @_scorpihoe13: other women r not competition I will never understand that - mindset \u2026 yall r so weird 4 dat","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_scorpihoe13","name":"\u2734\ufe0e - erika \u2734\ufe0e","id":1137839816278544384,"id_str":"1137839816278544384","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Aug 03 02:37:01 +0000 2021","id":1422385991612993537,"id_str":"1422385991612993537","text":"other - women r not competition I will never understand that mindset \u2026 yall r - so weird 4 dat","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443705296275206152\/-FfeHB4G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443705296275206152\/-FfeHB4G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/745041735357587456\/1633023454","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1036827757,"id_str":"1036827757","name":"russell - mcclelland","screen_name":"stjohn543","location":"Clydebank, Scotland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":23,"friends_count":1,"listed_count":0,"created_at":"Wed - Dec 26 10:28:04 +0000 2012","favourites_count":482,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":318,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3047404341\/63bcbd64f9c6e2731e61316e658042c1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3047404341\/63bcbd64f9c6e2731e61316e658042c1_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":473618423,"id_str":"473618423","name":"ya - fucking guy","screen_name":"jackassIsaac","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":269,"friends_count":203,"listed_count":2,"created_at":"Wed - Jan 25 04:56:06 +0000 2012","favourites_count":3924,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10720,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1226933158022533120\/h4PbxPzL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1226933158022533120\/h4PbxPzL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473618423\/1633387476","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":618268404,"id_str":"618268404","name":"radhika","screen_name":"radmehl","location":"San - Francisco, CA","description":"ZTFO","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":1719,"listed_count":1,"created_at":"Mon - Jun 25 15:32:51 +0000 2012","favourites_count":11591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2781,"lang":null,"status":{"created_at":"Wed - Feb 16 16:22:09 +0000 2022","id":1493984053367738370,"id_str":"1493984053367738370","text":"RT - @nhannahjones: If you blame progressives for the murder rate while ignoring - conservatives on guns, then you\u2019re not really that concerned\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nhannahjones","name":"Ida - Bae Wells","id":25598396,"id_str":"25598396","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 16 14:48:03 +0000 2022","id":1493960369068515331,"id_str":"1493960369068515331","text":"If - you blame progressives for the murder rate while ignoring conservatives on - guns, then you\u2019re not really that con\u2026 https:\/\/t.co\/jxi5VTMsog","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jxi5VTMsog","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1493960369068515331","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2635,"favorite_count":19306,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2635,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348676269429309442\/wqsQLFMF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348676269429309442\/wqsQLFMF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618268404\/1610384455","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":135436674,"id_str":"135436674","name":"Prithvi - Karpoor","screen_name":"smartdude3773","location":"Bengaluru South, India","description":"seriously - Tweeting in personal capacity,\ud83d\ude0ecool & go getter friendly but a - bit complicated personality \u270c\ud83d\udc4d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":168,"listed_count":8,"created_at":"Wed - Apr 21 08:58:27 +0000 2010","favourites_count":4016,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3755,"lang":null,"status":{"created_at":"Wed - Mar 23 16:26:13 +0000 2022","id":1506668651532849160,"id_str":"1506668651532849160","text":"Yogi - Adityanath and why the media loves to hate him https:\/\/t.co\/gfidXkIabj - via OpIndia_com","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gfidXkIabj","expanded_url":"https:\/\/www.opindia.com\/2020\/10\/media-doorstep-journalism-why-it-hates-yogi-adityanath-hathras\/","display_url":"opindia.com\/2020\/10\/media-\u2026","indices":[52,75]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457038107740553219\/Mpxboq7r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457038107740553219\/Mpxboq7r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135436674\/1542469390","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1272615221304188930,"id_str":"1272615221304188930","name":"A.T.L","screen_name":"nana_notorious1","location":"Greater - Accra, Ghana","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":4222,"listed_count":1,"created_at":"Mon - Jun 15 19:41:49 +0000 2020","favourites_count":31784,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1022,"lang":null,"status":{"created_at":"Fri - Feb 11 22:12:33 +0000 2022","id":1492260291807227906,"id_str":"1492260291807227906","text":"RT - @_unclegabe: This video will always make me laugh \ud83d\ude02\ud83d\ude02... - I hope to do this to someone''s daughter someday \ud83d\ude05\n#oxlaid | Ikoyi - | Nairaland |\u2026","truncated":false,"entities":{"hashtags":[{"text":"oxlaid","indices":[109,116]}],"symbols":[],"user_mentions":[{"screen_name":"_unclegabe","name":"Gabson","id":2800788465,"id_str":"2800788465","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 11 15:44:53 +0000 2022","id":1492162732942147593,"id_str":"1492162732942147593","text":"This - video will always make me laugh \ud83d\ude02\ud83d\ude02... I hope to do this - to someone''s daughter someday \ud83d\ude05\n#oxlaid | Ikoyi | Nair\u2026 - https:\/\/t.co\/0ACdr49vmQ","truncated":true,"entities":{"hashtags":[{"text":"oxlaid","indices":[93,100]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0ACdr49vmQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492162732942147593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":154,"favorite_count":580,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":154,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285927234444951552\/FFQ0v8oD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285927234444951552\/FFQ0v8oD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1272615221304188930\/1595423919","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":313242261,"id_str":"313242261","name":"Cindy - Pinson","screen_name":"cpinson10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":515,"listed_count":1,"created_at":"Wed - Jun 08 10:52:14 +0000 2011","favourites_count":13858,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":460,"lang":null,"status":{"created_at":"Fri - Mar 18 14:54:03 +0000 2022","id":1504833516260966400,"id_str":"1504833516260966400","text":"@Logically_JC - Tennessee is a very scary place if you, like me, live here and aren\u2019t - in the cult. The people here ha\u2026 https:\/\/t.co\/Y5j0bCRBba","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Logically_JC","name":"John - Collins","id":1271162030393896968,"id_str":"1271162030393896968","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/Y5j0bCRBba","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504833516260966400","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504271950843105285,"in_reply_to_status_id_str":"1504271950843105285","in_reply_to_user_id":1271162030393896968,"in_reply_to_user_id_str":"1271162030393896968","in_reply_to_screen_name":"Logically_JC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174353295852363778,"id_str":"1174353295852363778","name":"Karen - Staub","screen_name":"KarenStaub8","location":"","description":"Blessed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":186,"listed_count":0,"created_at":"Wed - Sep 18 16:04:06 +0000 2019","favourites_count":2245,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2716,"lang":null,"status":{"created_at":"Fri - Jan 22 16:15:28 +0000 2021","id":1352651100315414531,"id_str":"1352651100315414531","text":"RT - @JackPosobiec: SCOOP: Trump has given permission for the troops to stay at - Trump Hotel DC if any of them need, per advisor @OANN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JackPosobiec","name":"Jack - Posobiec \ud83c\uddfa\ud83c\uddf8","id":592730371,"id_str":"592730371","indices":[3,16]},{"screen_name":"OANN","name":"One - America News","id":1209936918,"id_str":"1209936918","indices":[126,131]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 22 14:39:40 +0000 2021","id":1352626995146985473,"id_str":"1352626995146985473","text":"SCOOP: - Trump has given permission for the troops to stay at Trump Hotel DC if any - of them need, per advisor @OANN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OANN","name":"One - America News","id":1209936918,"id_str":"1209936918","indices":[108,113]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26356,"favorite_count":111083,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":26356,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1700836056,"id_str":"1700836056","name":"DONALD - J TRUMP THE REAL POTUS 46","screen_name":"GlennKathan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":241,"listed_count":3,"created_at":"Mon - Aug 26 03:52:45 +0000 2013","favourites_count":1779,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"status":{"created_at":"Mon - Jan 10 13:50:51 +0000 2022","id":1480537626180476932,"id_str":"1480537626180476932","text":"@ashleyb121384 - We got the patriots Saturday night !!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1480337851430707208,"in_reply_to_status_id_str":"1480337851430707208","in_reply_to_user_id":21919498,"in_reply_to_user_id_str":"21919498","in_reply_to_screen_name":"ashleysviews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/824356508527902721\/EbowXpb1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/824356508527902721\/EbowXpb1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1700836056\/1484837298","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4325804717,"id_str":"4325804717","name":"PJ - Chesterfield","screen_name":"pj_chesterfield","location":"Brooklyn, NY","description":"Don\u2019t - be sad as we dance the apocalypso. He\/him","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":332,"listed_count":0,"created_at":"Mon - Nov 30 05:50:05 +0000 2015","favourites_count":15454,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":318,"lang":null,"status":{"created_at":"Sat - Mar 26 01:30:41 +0000 2022","id":1507530444581056519,"id_str":"1507530444581056519","text":"@KSulton - How about that local sports team?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KSulton","name":"Kasim - Sulton","id":15590463,"id_str":"15590463","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507528505910779914,"in_reply_to_status_id_str":"1507528505910779914","in_reply_to_user_id":15590463,"in_reply_to_user_id_str":"15590463","in_reply_to_screen_name":"KSulton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265321128651886592\/LBxASmNd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265321128651886592\/LBxASmNd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3682051155,"id_str":"3682051155","name":"Maggie - merrill","screen_name":"merrill_maggie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":287,"listed_count":0,"created_at":"Thu - Sep 17 04:44:56 +0000 2015","favourites_count":388,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Wed - Jul 15 05:08:07 +0000 2020","id":1283267077701328898,"id_str":"1283267077701328898","text":"RT - @DonMcPherson: PLEASE READ...from my first blog post: \u201cI had to use - a privilege I did not know I had to address an issue I did not know\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DonMcPherson","name":"Don - McPherson","id":133026477,"id_str":"133026477","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 13 23:09:54 +0000 2020","id":1282814541055787008,"id_str":"1282814541055787008","text":"PLEASE - READ...from my first blog post: \u201cI had to use a privilege I did not - know I had to address an issue I did no\u2026 https:\/\/t.co\/ARX22ZGKfw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ARX22ZGKfw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1282814541055787008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47731980,"id_str":"47731980","name":"Susan: - Get-Vaxxed","screen_name":"Susan_M_Kim","location":"Baltimore","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":1102,"listed_count":0,"created_at":"Tue - Jun 16 20:13:21 +0000 2009","favourites_count":47698,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1269,"lang":null,"status":{"created_at":"Wed - Mar 02 03:35:23 +0000 2022","id":1498864517375307782,"id_str":"1498864517375307782","text":"RT - @ElieNYC: Gov Kim Reynolds (Republican) says that Biden is sending us back - in time to the 80s... WHICH IF I RECALL WAS WHEN RONALD REAGA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElieNYC","name":"Elie - Mystal","id":40353407,"id_str":"40353407","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 02 03:34:26 +0000 2022","id":1498864280279654404,"id_str":"1498864280279654404","text":"Gov - Kim Reynolds (Republican) says that Biden is sending us back in time to the - 80s... WHICH IF I RECALL WAS WHEN R\u2026 https:\/\/t.co\/00qx6dHFJ5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/00qx6dHFJ5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498864280279654404","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4003,"favorite_count":34822,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4003,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207763438\/SusanMarieKim_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207763438\/SusanMarieKim_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1149255250429321216,"id_str":"1149255250429321216","name":"James - Fisher","screen_name":"JamesFi21103344","location":"Bury Saint Edmunds, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":103,"listed_count":0,"created_at":"Thu - Jul 11 09:52:58 +0000 2019","favourites_count":2082,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Jan 27 19:24:00 +0000 2021","id":1354510488881782794,"id_str":"1354510488881782794","text":"If - money talks, why isn''t every millionaire\/billionaire getting vaccinated - first? Worlds deadliest virus if I had a\u2026 https:\/\/t.co\/lqy4gHWzHq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lqy4gHWzHq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1354510488881782794","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163323136378658816\/SwyJlSAT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163323136378658816\/SwyJlSAT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279620410141601792,"id_str":"1279620410141601792","name":"DOTORINKUSURE","screen_name":"bandekar_unmesh","location":"Pune","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":690,"friends_count":4058,"listed_count":2,"created_at":"Sun - Jul 05 03:38:06 +0000 2020","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2294,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357210771919429633\/F4rRbPOS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357210771919429633\/F4rRbPOS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1279620410141601792\/1612418822","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":86799510,"id_str":"86799510","name":"Phil - Palumbo","screen_name":"pjpalumbo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":286,"listed_count":0,"created_at":"Sun - Nov 01 20:50:11 +0000 2009","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Nov 18 12:50:02 +0000 2021","id":1461315764279984134,"id_str":"1461315764279984134","text":"@mitchellreports - S Ass fx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mitchellreports","name":"Andrea - Mitchell","id":89820928,"id_str":"89820928","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1461023881859325964,"in_reply_to_status_id_str":"1461023881859325964","in_reply_to_user_id":89820928,"in_reply_to_user_id_str":"89820928","in_reply_to_screen_name":"mitchellreports","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723233734191775744,"id_str":"723233734191775744","name":"Gracieanderson","screen_name":"bretta1941","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":107,"listed_count":0,"created_at":"Thu - Apr 21 19:35:34 +0000 2016","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Jul 03 14:28:43 +0000 2017","id":881882401319731200,"id_str":"881882401319731200","text":"\u2018Morning - Joe\u2019 Row Is Fresh Sign of TV\u2019s Iron Grip on Trump https:\/\/t.co\/zIxA4BNQJB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zIxA4BNQJB","expanded_url":"https:\/\/nyti.ms\/2tvwWqx","display_url":"nyti.ms\/2tvwWqx","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/723235338328494081\/jdVCXB02_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/723235338328494081\/jdVCXB02_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1379788603,"id_str":"1379788603","name":"\u064b","screen_name":"aujdxp","location":"","description":"not - lighter than an eiderdown","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":275,"friends_count":291,"listed_count":3,"created_at":"Thu - Apr 25 15:56:09 +0000 2013","favourites_count":115869,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":67343,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"41E4FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426529508849426437\/VrOx-T2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426529508849426437\/VrOx-T2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1379788603\/1628946925","profile_link_color":"2C84C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A8A8A8","profile_text_color":"D8D8C0","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":395647254,"id_str":"395647254","name":"\u0280\u1d0f\u0299\u1d07\u0280\u1d1b - \u0280. \u0280\u1d0f\u1d05\u0280\u026a\u0262\u1d1c\u1d07\u1d22 \u1d0a\u0280. - \u026a\u026a \ud83c\uddf5\ud83c\uddf7\ud83c\udfae\ud83c\udfa7","screen_name":"Rattpackk_96","location":"long - island, ny","description":"Places of the unknown. 25.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":1653,"listed_count":0,"created_at":"Sat - Oct 22 00:52:38 +0000 2011","favourites_count":12637,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3828,"lang":null,"status":{"created_at":"Thu - Mar 24 03:30:58 +0000 2022","id":1506835941251588096,"id_str":"1506835941251588096","text":"@AeroSkies15 - Oh this is too good lmao \ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AeroSkies15","name":"Aero_Michael","id":1460556246,"id_str":"1460556246","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506583975812341762,"in_reply_to_status_id_str":"1506583975812341762","in_reply_to_user_id":1460556246,"in_reply_to_user_id_str":"1460556246","in_reply_to_screen_name":"AeroSkies15","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1348051890496548868\/VpgmqPHn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1348051890496548868\/VpgmqPHn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395647254\/1521644426","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":43687804,"id_str":"43687804","name":"orlatty","screen_name":"orlandoatty1","location":"","description":"voter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":3423,"listed_count":0,"created_at":"Sun - May 31 13:32:28 +0000 2009","favourites_count":10697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Sun - Apr 11 17:44:22 +0000 2021","id":1381302117076508687,"id_str":"1381302117076508687","text":"@ProjectLincoln - https:\/\/t.co\/RbggAoDcg9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[0,15]}],"urls":[],"media":[{"id":1381302112873775106,"id_str":"1381302112873775106","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/Eyte9AVWgAIuSTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Eyte9AVWgAIuSTw.jpg","url":"https:\/\/t.co\/RbggAoDcg9","display_url":"pic.twitter.com\/RbggAoDcg9","expanded_url":"https:\/\/twitter.com\/orlandoatty1\/status\/1381302117076508687\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1381302112873775106,"id_str":"1381302112873775106","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/Eyte9AVWgAIuSTw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Eyte9AVWgAIuSTw.jpg","url":"https:\/\/t.co\/RbggAoDcg9","display_url":"pic.twitter.com\/RbggAoDcg9","expanded_url":"https:\/\/twitter.com\/orlandoatty1\/status\/1381302117076508687\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1381258626543796226,"in_reply_to_status_id_str":"1381258626543796226","in_reply_to_user_id":1205226529455632385,"in_reply_to_user_id_str":"1205226529455632385","in_reply_to_screen_name":"ProjectLincoln","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223354660616097792\/gmJQsfPL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223354660616097792\/gmJQsfPL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43687804\/1580505455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307509866370494464,"id_str":"1307509866370494464","name":"U.S.RenewNews","screen_name":"USRenewNews","location":"San - Francisco","description":"https:\/\/t.co\/gqvCKMfrXB offers news and insightful - analyses on federal politics and policies impacting Americans.","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/gqvCKMfrXB","expanded_url":"http:\/\/U.S.RenewNews.org","display_url":"U.S.RenewNews.org","indices":[0,23]}]}},"protected":false,"followers_count":9,"friends_count":306,"listed_count":0,"created_at":"Sun - Sep 20 02:40:32 +0000 2020","favourites_count":1496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2697,"lang":null,"status":{"created_at":"Sat - Apr 17 17:27:57 +0000 2021","id":1383472312238755851,"id_str":"1383472312238755851","text":"RT - @Billbrowder: More details from Navalny\u2019s doctors on his dangerously - low potassium levels and the risk of an imminent heart attack https\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Billbrowder","name":"Bill - Browder","id":29769998,"id_str":"29769998","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Apr 17 17:19:56 +0000 2021","id":1383470294698926086,"id_str":"1383470294698926086","text":"More - details from Navalny\u2019s doctors on his dangerously low potassium levels - and the risk of an imminent heart attack https:\/\/t.co\/7j4F2K0gH6","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7j4F2K0gH6","expanded_url":"https:\/\/www.rferl.org\/a\/russia-navalny-health-cardiac-arrest\/31209000.html","display_url":"rferl.org\/a\/russia-naval\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1383468794643828743,"in_reply_to_status_id_str":"1383468794643828743","in_reply_to_user_id":29769998,"in_reply_to_user_id_str":"29769998","in_reply_to_screen_name":"Billbrowder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":703,"favorite_count":1266,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":703,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1366768722275352578\/xp6Xt8EY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1366768722275352578\/xp6Xt8EY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307509866370494464\/1617495803","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311313931839905795,"id_str":"1311313931839905795","name":"Gabriel - Senquiz \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf7","screen_name":"GabrielSenquiz","location":"Canton, - GA","description":"it\u2019s Me","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":497,"friends_count":3643,"listed_count":1,"created_at":"Wed - Sep 30 14:36:29 +0000 2020","favourites_count":25522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7546,"lang":null,"status":{"created_at":"Sun - Mar 20 21:12:05 +0000 2022","id":1505653428298596361,"id_str":"1505653428298596361","text":"@tonypa22 - Well on the bright side at least we loss now instead of losing to Michigan - because let\u2019s face it this tea\u2026 https:\/\/t.co\/tLVzBzYigZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tonypa22","name":"Tonycassano","id":2847681850,"id_str":"2847681850","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/tLVzBzYigZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505653428298596361","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505652736834129938,"in_reply_to_status_id_str":"1505652736834129938","in_reply_to_user_id":2847681850,"in_reply_to_user_id_str":"2847681850","in_reply_to_screen_name":"tonypa22","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391212485374586882\/r3zYG5Pc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391212485374586882\/r3zYG5Pc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311313931839905795\/1644105682","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":307511999,"id_str":"307511999","name":"Staline - Gomes","screen_name":"stalinegomes1","location":"London, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":14,"friends_count":1181,"listed_count":0,"created_at":"Sun - May 29 19:32:55 +0000 2011","favourites_count":4514,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"373DB8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438804853276418048\/ABbC6DhF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438804853276418048\/ABbC6DhF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307511999\/1393453077","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2954035586,"id_str":"2954035586","name":"Billy - Vesley","screen_name":"bbe08bdcff494ff","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":311,"listed_count":0,"created_at":"Wed - Dec 31 21:18:06 +0000 2014","favourites_count":2682,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Fri - Oct 22 15:41:42 +0000 2021","id":1451574490563895301,"id_str":"1451574490563895301","text":"@loulouminidachs - Love Lulu and Coco Thank you for sharing!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"loulouminidachs","name":"loulouminidachshund","id":1103362810027929602,"id_str":"1103362810027929602","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1450522762678788101,"in_reply_to_status_id_str":"1450522762678788101","in_reply_to_user_id":1103362810027929602,"in_reply_to_user_id_str":"1103362810027929602","in_reply_to_screen_name":"loulouminidachs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550400857447989248\/67-1A0qo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550400857447989248\/67-1A0qo_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":66859363,"id_str":"66859363","name":"May - Espena","screen_name":"mespena","location":"Oakland, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":429,"listed_count":1,"created_at":"Wed - Aug 19 00:51:53 +0000 2009","favourites_count":15967,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1270127125656297472\/oJXKSLfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1270127125656297472\/oJXKSLfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66859363\/1591656883","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1030172566030352384,"id_str":"1030172566030352384","name":"Susan - Schraft","screen_name":"SusanSchraft","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":441,"listed_count":0,"created_at":"Thu - Aug 16 19:20:54 +0000 2018","favourites_count":7361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":63,"lang":null,"status":{"created_at":"Sat - Mar 05 17:49:24 +0000 2022","id":1500166603387904001,"id_str":"1500166603387904001","text":"@scottyandsimone - Odin the Lion King! https:\/\/t.co\/YwfyYrv7iX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"scottyandsimone","name":"Scotty - & Simone","id":1014949564833517579,"id_str":"1014949564833517579","indices":[0,16]}],"urls":[],"media":[{"id":1500166600741244933,"id_str":"1500166600741244933","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGpkz0WUAUHFHw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGpkz0WUAUHFHw.jpg","url":"https:\/\/t.co\/YwfyYrv7iX","display_url":"pic.twitter.com\/YwfyYrv7iX","expanded_url":"https:\/\/twitter.com\/SusanSchraft\/status\/1500166603387904001\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500166600741244933,"id_str":"1500166600741244933","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGpkz0WUAUHFHw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGpkz0WUAUHFHw.jpg","url":"https:\/\/t.co\/YwfyYrv7iX","display_url":"pic.twitter.com\/YwfyYrv7iX","expanded_url":"https:\/\/twitter.com\/SusanSchraft\/status\/1500166603387904001\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499836817172008965,"in_reply_to_status_id_str":"1499836817172008965","in_reply_to_user_id":1014949564833517579,"in_reply_to_user_id_str":"1014949564833517579","in_reply_to_screen_name":"scottyandsimone","geo":null,"coordinates":null,"place":{"id":"018c7487414ba078","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/018c7487414ba078.json","place_type":"city","name":"Fernandina - Beach","full_name":"Fernandina Beach, FL","country_code":"US","country":"United - States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.483315,30.598822],[-81.426432,30.598822],[-81.426432,30.705597],[-81.483315,30.705597]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273617976986566661\/c-OYxV2A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273617976986566661\/c-OYxV2A_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":318088112,"id_str":"318088112","name":"hope - baumholtz","screen_name":"hopebaumholtz","location":"nj","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":80,"listed_count":0,"created_at":"Wed - Jun 15 23:19:58 +0000 2011","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Feb 10 22:32:51 +0000 2021","id":1359631442272284673,"id_str":"1359631442272284673","text":"@jimmykimmel - FOX NEWS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jimmykimmel","name":"Jimmy - Kimmel","id":26053643,"id_str":"26053643","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1359625103764451328,"in_reply_to_status_id_str":"1359625103764451328","in_reply_to_user_id":26053643,"in_reply_to_user_id_str":"26053643","in_reply_to_screen_name":"jimmykimmel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128411372939649024,"id_str":"1128411372939649024","name":"Emily","screen_name":"Emily21036210","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":74,"listed_count":0,"created_at":"Tue - May 14 21:26:50 +0000 2019","favourites_count":5357,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1897020038,"id_str":"1897020038","name":"\u264c\ufe0e","screen_name":"ycelaniceto","location":"philippines","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":445,"friends_count":1401,"listed_count":2,"created_at":"Mon - Sep 23 11:25:03 +0000 2013","favourites_count":11367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25272,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478746215185412100\/POWUtKzf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478746215185412100\/POWUtKzf_normal.jpg","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1226818166128619522,"id_str":"1226818166128619522","name":"Endalk - Wedaje","screen_name":"WedajeEndalk","location":"","description":"I like politics","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":230,"listed_count":0,"created_at":"Mon - Feb 10 10:40:42 +0000 2020","favourites_count":22322,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2333,"lang":null,"status":{"created_at":"Thu - Jan 27 18:44:50 +0000 2022","id":1486772201063739394,"id_str":"1486772201063739394","text":"@MOusmanova - \u12e8\u12a2\u1275\u12ee\u1335\u12eb \u1356\u1208\u1272\u12ab\u121b \u12e8\u120d\u1305 - \u1328\u12cb\u1273 \u1290\u12cd \u12e8\u1206\u1290\u12cd \u1362 \u120d\u1305 - \u12eb\u1266\u12ab\u12cd \u1208\u122b\u1275 \u12a0\u12ed\u1260\u1243\u121d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MOusmanova","name":"Muktarovich - Ousmanova","id":1330111367110684672,"id_str":"1330111367110684672","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486607966665158656,"in_reply_to_status_id_str":"1486607966665158656","in_reply_to_user_id":1330111367110684672,"in_reply_to_user_id_str":"1330111367110684672","in_reply_to_screen_name":"MOusmanova","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"am"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1236796114327699457,"id_str":"1236796114327699457","name":"LaniBird","screen_name":"LaniBeeBird","location":"","description":"Book - Loving Mother of 3","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":1092,"listed_count":0,"created_at":"Sun - Mar 08 23:29:20 +0000 2020","favourites_count":3723,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":504,"lang":null,"status":{"created_at":"Thu - Mar 24 15:49:02 +0000 2022","id":1507021679201075204,"id_str":"1507021679201075204","text":"@marcorubio - No, man made up crap try to control the masses","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marcorubio","name":"Marco - Rubio","id":15745368,"id_str":"15745368","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506971381975687169,"in_reply_to_status_id_str":"1506971381975687169","in_reply_to_user_id":15745368,"in_reply_to_user_id_str":"15745368","in_reply_to_screen_name":"marcorubio","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1236796383547580420\/Nd2kkupH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1236796383547580420\/Nd2kkupH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189254310686842880,"id_str":"1189254310686842880","name":"umar - yaron mama","screen_name":"YaronMama8","location":"Kaduna, Nigeria","description":"my - life will be better future tomorrow","url":"https:\/\/t.co\/C511kWogIi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C511kWogIi","expanded_url":"http:\/\/www.umarharuna.com","display_url":"umarharuna.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":346,"listed_count":0,"created_at":"Tue - Oct 29 18:55:25 +0000 2019","favourites_count":188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Tue - Jan 18 18:53:17 +0000 2022","id":1483512837205069829,"id_str":"1483512837205069829","text":"Think - about success https:\/\/t.co\/GoF5qKEPvy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1483512418621956100,"id_str":"1483512418621956100","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FJZ-r0vXoAQw0nJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJZ-r0vXoAQw0nJ.jpg","url":"https:\/\/t.co\/GoF5qKEPvy","display_url":"pic.twitter.com\/GoF5qKEPvy","expanded_url":"https:\/\/twitter.com\/YaronMama8\/status\/1483512837205069829\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":756,"h":1008,"resize":"fit"},"large":{"w":756,"h":1008,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1483512418621956100,"id_str":"1483512418621956100","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FJZ-r0vXoAQw0nJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FJZ-r0vXoAQw0nJ.jpg","url":"https:\/\/t.co\/GoF5qKEPvy","display_url":"pic.twitter.com\/GoF5qKEPvy","expanded_url":"https:\/\/twitter.com\/YaronMama8\/status\/1483512837205069829\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":756,"h":1008,"resize":"fit"},"large":{"w":756,"h":1008,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286642376308645888\/mYsOj2SH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286642376308645888\/mYsOj2SH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":217804474,"id_str":"217804474","name":"richard - feinberg","screen_name":"rfeinberg2012","location":"San Diego","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":963,"friends_count":662,"listed_count":28,"created_at":"Sat - Nov 20 15:46:56 +0000 2010","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":544,"lang":null,"status":{"created_at":"Thu - Mar 24 22:56:33 +0000 2022","id":1507129268542664708,"id_str":"1507129268542664708","text":"RT - @josemtorresr: @State_E @WHAAsstSecty @usembassysjo @CRcancilleria @CR_embassy - @HaciendaCR @MICIPMA @EmbajadaUSAenRD @USEmbPAN @Embpanam\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"josemtorresr","name":"Jos\u00e9 - Manuel Torres","id":422117992,"id_str":"422117992","indices":[3,16]},{"screen_name":"State_E","name":"Under - Secretary Jose W. Fernandez","id":2546833752,"id_str":"2546833752","indices":[18,26]},{"screen_name":"WHAAsstSecty","name":"Brian - A. Nichols","id":97190495,"id_str":"97190495","indices":[27,40]},{"screen_name":"usembassysjo","name":"US - Embassy San Jose","id":19738801,"id_str":"19738801","indices":[41,54]},{"screen_name":"CRcancilleria","name":"Canciller\u00eda - Costa Rica \ud83c\udde8\ud83c\uddf7","id":2851561095,"id_str":"2851561095","indices":[55,69]},{"screen_name":"CR_embassy","name":"Embassy - of Costa Rica in the United States","id":2862809649,"id_str":"2862809649","indices":[70,81]},{"screen_name":"HaciendaCR","name":"Ministerio - Hacienda de Costa Rica","id":221183361,"id_str":"221183361","indices":[82,93]},{"screen_name":"MICIPMA","name":"Ministerio - de Comercio e Industrias de Panam\u00e1","id":553037517,"id_str":"553037517","indices":[94,102]},{"screen_name":"EmbajadaUSAenRD","name":"EmbajadaUSAenRD","id":35727265,"id_str":"35727265","indices":[103,119]},{"screen_name":"USEmbPAN","name":"U.S. - Embassy Panama","id":177553367,"id_str":"177553367","indices":[120,129]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 21:12:20 +0000 2022","id":1506740653799223300,"id_str":"1506740653799223300","text":"@State_E - @WHAAsstSecty @usembassysjo @CRcancilleria @CR_embassy @HaciendaCR @MICIPMA - @EmbajadaUSAenRD @USEmbPAN\u2026 https:\/\/t.co\/tSM3MCSXW7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"State_E","name":"Under - Secretary Jose W. Fernandez","id":2546833752,"id_str":"2546833752","indices":[0,8]},{"screen_name":"WHAAsstSecty","name":"Brian - A. Nichols","id":97190495,"id_str":"97190495","indices":[9,22]},{"screen_name":"usembassysjo","name":"US - Embassy San Jose","id":19738801,"id_str":"19738801","indices":[23,36]},{"screen_name":"CRcancilleria","name":"Canciller\u00eda - Costa Rica \ud83c\udde8\ud83c\uddf7","id":2851561095,"id_str":"2851561095","indices":[37,51]},{"screen_name":"CR_embassy","name":"Embassy - of Costa Rica in the United States","id":2862809649,"id_str":"2862809649","indices":[52,63]},{"screen_name":"HaciendaCR","name":"Ministerio - Hacienda de Costa Rica","id":221183361,"id_str":"221183361","indices":[64,75]},{"screen_name":"MICIPMA","name":"Ministerio - de Comercio e Industrias de Panam\u00e1","id":553037517,"id_str":"553037517","indices":[76,84]},{"screen_name":"EmbajadaUSAenRD","name":"EmbajadaUSAenRD","id":35727265,"id_str":"35727265","indices":[85,101]},{"screen_name":"USEmbPAN","name":"U.S. - Embassy Panama","id":177553367,"id_str":"177553367","indices":[102,111]}],"urls":[{"url":"https:\/\/t.co\/tSM3MCSXW7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506740653799223300","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[113,136]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506714154782150670,"in_reply_to_status_id_str":"1506714154782150670","in_reply_to_user_id":2546833752,"in_reply_to_user_id_str":"2546833752","in_reply_to_screen_name":"State_E","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1337431743234596864\/smDlpGp0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1337431743234596864\/smDlpGp0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217804474\/1607704564","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":128738196,"id_str":"128738196","name":"OLINSKY\ud83c\uddf3\ud83c\uddec","screen_name":"Iam2cerebral","location":"Port - Harcourt, Nigeria","description":"GOD LOVER, VORACIOUS FOR KNOWLEDGE AND UNAPOLOGETIC - FOR THE VALUES I STAND FOR.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":364,"friends_count":4996,"listed_count":0,"created_at":"Fri - Apr 02 02:05:03 +0000 2010","favourites_count":85,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":240,"lang":null,"status":{"created_at":"Wed - Jun 09 23:52:59 +0000 2021","id":1402775766350315520,"id_str":"1402775766350315520","text":"RT - @the_davidatta: Retweet when you see it.. https:\/\/t.co\/7wsHLkywzO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"the_davidatta","name":"David - Abdulrazak Atta","id":943215716,"id_str":"943215716","indices":[3,17]}],"urls":[],"media":[{"id":1402742778438770689,"id_str":"1402742778438770689","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","url":"https:\/\/t.co\/7wsHLkywzO","display_url":"pic.twitter.com\/7wsHLkywzO","expanded_url":"https:\/\/twitter.com\/the_davidatta\/status\/1402742788173840392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":606,"h":1080,"resize":"fit"},"large":{"w":606,"h":1080,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}},"source_status_id":1402742788173840392,"source_status_id_str":"1402742788173840392","source_user_id":943215716,"source_user_id_str":"943215716"}]},"extended_entities":{"media":[{"id":1402742778438770689,"id_str":"1402742778438770689","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","url":"https:\/\/t.co\/7wsHLkywzO","display_url":"pic.twitter.com\/7wsHLkywzO","expanded_url":"https:\/\/twitter.com\/the_davidatta\/status\/1402742788173840392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":606,"h":1080,"resize":"fit"},"large":{"w":606,"h":1080,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}},"source_status_id":1402742788173840392,"source_status_id_str":"1402742788173840392","source_user_id":943215716,"source_user_id_str":"943215716"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 09 21:41:57 +0000 2021","id":1402742788173840392,"id_str":"1402742788173840392","text":"Retweet - when you see it.. https:\/\/t.co\/7wsHLkywzO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1402742778438770689,"id_str":"1402742778438770689","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","url":"https:\/\/t.co\/7wsHLkywzO","display_url":"pic.twitter.com\/7wsHLkywzO","expanded_url":"https:\/\/twitter.com\/the_davidatta\/status\/1402742788173840392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":606,"h":1080,"resize":"fit"},"large":{"w":606,"h":1080,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1402742778438770689,"id_str":"1402742778438770689","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E3eLH_wWYAEXUpj.jpg","url":"https:\/\/t.co\/7wsHLkywzO","display_url":"pic.twitter.com\/7wsHLkywzO","expanded_url":"https:\/\/twitter.com\/the_davidatta\/status\/1402742788173840392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":606,"h":1080,"resize":"fit"},"large":{"w":606,"h":1080,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":179,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":158,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335953298923417601\/4VsMlNTj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335953298923417601\/4VsMlNTj_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25917039,"id_str":"25917039","name":"Stefanie - Ambro","screen_name":"s_ambro50","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":345,"listed_count":1,"created_at":"Mon - Mar 23 00:36:20 +0000 2009","favourites_count":26755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Thu - Mar 10 13:42:26 +0000 2022","id":1501916389312974850,"id_str":"1501916389312974850","text":"RT - @moneyries: @axios https:\/\/t.co\/VZgZXtGF1I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"moneyries","name":"Brian - Ries","id":9507342,"id_str":"9507342","indices":[3,13]},{"screen_name":"axios","name":"Axios","id":800707492346925056,"id_str":"800707492346925056","indices":[15,21]}],"urls":[],"media":[{"id":1501583470694445059,"id_str":"1501583470694445059","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","url":"https:\/\/t.co\/VZgZXtGF1I","display_url":"pic.twitter.com\/VZgZXtGF1I","expanded_url":"https:\/\/twitter.com\/moneyries\/status\/1501583614697431042\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}},"source_status_id":1501583614697431042,"source_status_id_str":"1501583614697431042","source_user_id":9507342,"source_user_id_str":"9507342"}]},"extended_entities":{"media":[{"id":1501583470694445059,"id_str":"1501583470694445059","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","url":"https:\/\/t.co\/VZgZXtGF1I","display_url":"pic.twitter.com\/VZgZXtGF1I","expanded_url":"https:\/\/twitter.com\/moneyries\/status\/1501583614697431042\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}},"source_status_id":1501583614697431042,"source_status_id_str":"1501583614697431042","source_user_id":9507342,"source_user_id_str":"9507342"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 15:40:06 +0000 2022","id":1501583614697431042,"id_str":"1501583614697431042","text":"@axios - https:\/\/t.co\/VZgZXtGF1I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"axios","name":"Axios","id":800707492346925056,"id_str":"800707492346925056","indices":[0,6]}],"urls":[],"media":[{"id":1501583470694445059,"id_str":"1501583470694445059","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","url":"https:\/\/t.co\/VZgZXtGF1I","display_url":"pic.twitter.com\/VZgZXtGF1I","expanded_url":"https:\/\/twitter.com\/moneyries\/status\/1501583614697431042\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1501583470694445059,"id_str":"1501583470694445059","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNayNftXMAMzeQv.jpg","url":"https:\/\/t.co\/VZgZXtGF1I","display_url":"pic.twitter.com\/VZgZXtGF1I","expanded_url":"https:\/\/twitter.com\/moneyries\/status\/1501583614697431042\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1000,"h":1000,"resize":"fit"},"large":{"w":1000,"h":1000,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501562236690644992,"in_reply_to_status_id_str":"1501562236690644992","in_reply_to_user_id":800707492346925056,"in_reply_to_user_id_str":"800707492346925056","in_reply_to_screen_name":"axios","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1277,"favorite_count":11397,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1277,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300413142825132032\/fORpvh3c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300413142825132032\/fORpvh3c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25917039\/1599070098","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2851109474,"id_str":"2851109474","name":"yvonneslat","screen_name":"YvonneSlat","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":294,"listed_count":0,"created_at":"Fri - Oct 10 20:31:01 +0000 2014","favourites_count":14824,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sat - Jun 27 18:24:51 +0000 2020","id":1276944599123099650,"id_str":"1276944599123099650","text":"Colson - Whitehead: \u2018I lacked imagination to conceive how terrible Trump would - be\u2019 https:\/\/t.co\/J73DQ71YqM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J73DQ71YqM","expanded_url":"https:\/\/www-irishtimes-com.cdn.ampproject.org\/v\/s\/www.irishtimes.com\/culture\/books\/colson-whitehead-i-lacked-imagination-to-conceive-how-terrible-trump-would-be-1.4276760?amp_js_v=a3&_gsa=1&mode=amp&usqp=mq331AQFKAGwASA%3D#aoh=15932822095595&csi=1&referrer=https%3A%2F%2Fwww.google.com&_tf=From%20%251%24s&share=https%3A%2F%2Fwww.irishtimes.com%2Fculture%2Fbooks%2Fcolson-whitehead-i-lacked-imagination-to-conceive-how-terrible-trump-would-be-1.4276760","display_url":"www-irishtimes-com.cdn.ampproject.org\/v\/s\/www.irisht\u2026","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520676042990968832\/hWiAI85k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520676042990968832\/hWiAI85k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851109474\/1412973783","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291121918561705987,"id_str":"1291121918561705987","name":"katekahan","screen_name":"katekahan","location":"Montana, - USA","description":"twitter skeptic. lifelong activist, midwife, mama to an - adult child.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":739,"listed_count":3,"created_at":"Wed - Aug 05 21:21:14 +0000 2020","favourites_count":843,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"status":{"created_at":"Wed - Oct 13 15:28:06 +0000 2021","id":1448309577896759297,"id_str":"1448309577896759297","text":"RT - @Howell4HD95: I am excited to announce my campaign for HD 95! After years - of working as an advocate, I am ready to bring my experience a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Howell4HD95","name":"SJ - Howell","id":1446544936011120641,"id_str":"1446544936011120641","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 13 00:33:33 +0000 2021","id":1448084456863113216,"id_str":"1448084456863113216","text":"I - am excited to announce my campaign for HD 95! After years of working as an - advocate, I am ready to bring my exper\u2026 https:\/\/t.co\/HrJyf7RcFF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HrJyf7RcFF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1448084456863113216","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":78,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291122432552718336\/5eQKITvT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291122432552718336\/5eQKITvT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1154591292,"id_str":"1154591292","name":"Pwrhauss","screen_name":"jack_pwrhauss","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":4838,"listed_count":0,"created_at":"Wed - Feb 06 17:28:04 +0000 2013","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":152,"lang":null,"status":{"created_at":"Wed - Mar 10 16:15:04 +0000 2021","id":1369683231084318729,"id_str":"1369683231084318729","text":"RT - @Mets: If this gets 5,000 RTs we\u2019ll make this our profile pic. https:\/\/t.co\/V0EAzoSJVa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Mets","name":"New - York Mets","id":39367703,"id_str":"39367703","indices":[3,8]}],"urls":[],"media":[{"id":1369681662292983809,"id_str":"1369681662292983809","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","url":"https:\/\/t.co\/V0EAzoSJVa","display_url":"pic.twitter.com\/V0EAzoSJVa","expanded_url":"https:\/\/twitter.com\/Mets\/status\/1369681665233129472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":395,"resize":"fit"},"large":{"w":395,"h":395,"resize":"fit"},"small":{"w":395,"h":395,"resize":"fit"}},"source_status_id":1369681665233129472,"source_status_id_str":"1369681665233129472","source_user_id":39367703,"source_user_id_str":"39367703"}]},"extended_entities":{"media":[{"id":1369681662292983809,"id_str":"1369681662292983809","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","url":"https:\/\/t.co\/V0EAzoSJVa","display_url":"pic.twitter.com\/V0EAzoSJVa","expanded_url":"https:\/\/twitter.com\/Mets\/status\/1369681665233129472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":395,"resize":"fit"},"large":{"w":395,"h":395,"resize":"fit"},"small":{"w":395,"h":395,"resize":"fit"}},"source_status_id":1369681665233129472,"source_status_id_str":"1369681665233129472","source_user_id":39367703,"source_user_id_str":"39367703"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 10 16:08:51 +0000 2021","id":1369681665233129472,"id_str":"1369681665233129472","text":"If - this gets 5,000 RTs we\u2019ll make this our profile pic. https:\/\/t.co\/V0EAzoSJVa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1369681662292983809,"id_str":"1369681662292983809","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","url":"https:\/\/t.co\/V0EAzoSJVa","display_url":"pic.twitter.com\/V0EAzoSJVa","expanded_url":"https:\/\/twitter.com\/Mets\/status\/1369681665233129472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":395,"resize":"fit"},"large":{"w":395,"h":395,"resize":"fit"},"small":{"w":395,"h":395,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1369681662292983809,"id_str":"1369681662292983809","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EwIWNwhXAAENr9S.jpg","url":"https:\/\/t.co\/V0EAzoSJVa","display_url":"pic.twitter.com\/V0EAzoSJVa","expanded_url":"https:\/\/twitter.com\/Mets\/status\/1369681665233129472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":395,"resize":"fit"},"large":{"w":395,"h":395,"resize":"fit"},"small":{"w":395,"h":395,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5604,"favorite_count":4779,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5604,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597838755714756608\/MJWEksJe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597838755714756608\/MJWEksJe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280610571013050370,"id_str":"1280610571013050370","name":"Black - wurld engineer","screen_name":"PNanman","location":"\ud83c\uddf3\ud83c\uddec\ud83c\uddf3\ud83c\uddec#nigeria - plateau# jos ","description":"Etihad airwet","url":"https:\/\/t.co\/JKy5aYMWKL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JKy5aYMWKL","expanded_url":"http:\/\/Www.pelnanman.com","display_url":"pelnanman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":781,"listed_count":0,"created_at":"Tue - Jul 07 21:12:38 +0000 2020","favourites_count":522,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Fri - Mar 25 09:56:12 +0000 2022","id":1507295274196209667,"id_str":"1507295274196209667","text":"@urPapaDeyCraze - Hi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"urPapaDeyCraze","name":"\u209c\u2092\u1d63\u2099\u2090d\u2092\ud83c\udf2a\ufe0f","id":4083658661,"id_str":"4083658661","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507283547027091457,"in_reply_to_status_id_str":"1507283547027091457","in_reply_to_user_id":4083658661,"in_reply_to_user_id_str":"4083658661","in_reply_to_screen_name":"urPapaDeyCraze","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481217004900077569\/zUHlq2eF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481217004900077569\/zUHlq2eF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280610571013050370\/1596575087","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28757989,"id_str":"28757989","name":"sandy - b","screen_name":"bernsteintravel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":737,"listed_count":1,"created_at":"Sat - Apr 04 07:15:49 +0000 2009","favourites_count":255,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1175,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2282734657\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2282734657\/image_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2470104384,"id_str":"2470104384","name":"William - Sullivan","screen_name":"wtsulli","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":648,"listed_count":0,"created_at":"Wed - Apr 30 00:57:13 +0000 2014","favourites_count":231,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":332,"lang":null,"status":{"created_at":"Tue - Mar 22 00:02:19 +0000 2022","id":1506058654142894080,"id_str":"1506058654142894080","text":"\ud83e\udd1a\ud83e\udd1a - https:\/\/t.co\/22bKZ8EfLq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/22bKZ8EfLq","expanded_url":"https:\/\/twitter.com\/CalltoActivism\/status\/1505929352969609219","display_url":"twitter.com\/CalltoActivism\u2026","indices":[3,26]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505929352969609219,"quoted_status_id_str":"1505929352969609219","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570692492551389184\/1z7R2Kup_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570692492551389184\/1z7R2Kup_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":72336410,"id_str":"72336410","name":"Social - Stability","screen_name":"socialstability","location":"USA","description":"Spoonie - since 2012..","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":465,"friends_count":1902,"listed_count":5,"created_at":"Mon - Sep 07 17:40:13 +0000 2009","favourites_count":3447,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5037,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435212064147001345\/S6LYoAb1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435212064147001345\/S6LYoAb1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72336410\/1631016196","profile_link_color":"9D582E","profile_sidebar_border_color":"E0B682","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245562021279498241,"id_str":"1245562021279498241","name":"amelia - sherman","screen_name":"amelias69294367","location":"","description":"Life-long - learner, traveler, mom, wife, metal design artist.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":244,"listed_count":0,"created_at":"Thu - Apr 02 04:01:54 +0000 2020","favourites_count":9777,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":167,"lang":null,"status":{"created_at":"Fri - Aug 27 15:07:30 +0000 2021","id":1431272165609918465,"id_str":"1431272165609918465","text":"@MeghanMcCain - Meghan,\nI thought you should have resigned every day you were on the View! - Only reason you garner att\u2026 https:\/\/t.co\/axvy2ZcbWK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeghanMcCain","name":"Meghan - McCain","id":23176276,"id_str":"23176276","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/axvy2ZcbWK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1431272165609918465","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1430957522836393988,"in_reply_to_status_id_str":"1430957522836393988","in_reply_to_user_id":23176276,"in_reply_to_user_id_str":"23176276","in_reply_to_screen_name":"MeghanMcCain","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1655990520,"id_str":"1655990520","name":"Teghan","screen_name":"teghane","location":"","description":"live - love","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":127,"friends_count":300,"listed_count":0,"created_at":"Thu - Aug 08 19:11:47 +0000 2013","favourites_count":16351,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":664,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484661778164469765\/t4zCXZOy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484661778164469765\/t4zCXZOy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1655990520\/1590959818","profile_link_color":"B300AD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1045394558819991553,"id_str":"1045394558819991553","name":"Lee - Ann","screen_name":"LeeAnn92391785","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":134,"listed_count":0,"created_at":"Thu - Sep 27 19:27:40 +0000 2018","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Nov 06 00:06:20 +0000 2020","id":1324503346976346112,"id_str":"1324503346976346112","text":"@Timodc - Yes!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Timodc","name":"Tim - Miller","id":21348880,"id_str":"21348880","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1324498979409731586,"in_reply_to_status_id_str":"1324498979409731586","in_reply_to_user_id":21348880,"in_reply_to_user_id_str":"21348880","in_reply_to_screen_name":"Timodc","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23767718,"id_str":"23767718","name":"rakeshkant","screen_name":"rockykant","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":140,"friends_count":1940,"listed_count":1,"created_at":"Wed - Mar 11 14:13:51 +0000 2009","favourites_count":3745,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Sun - May 24 13:14:50 +0000 2020","id":1264545391778754560,"id_str":"1264545391778754560","text":"Kya - yeh log rakshahsh hai??? https:\/\/t.co\/Xx3U4wacWT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Xx3U4wacWT","expanded_url":"https:\/\/twitter.com\/iamdevv23\/status\/1264121291365216256","display_url":"twitter.com\/iamdevv23\/stat\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1264121291365216256,"quoted_status_id_str":"1264121291365216256","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1105678296300380160\/AtiDmpHM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1105678296300380160\/AtiDmpHM_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":828440468824453124,"id_str":"828440468824453124","name":"Local - Heathen","screen_name":"HeathenLocal","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":981,"listed_count":0,"created_at":"Mon - Feb 06 03:09:34 +0000 2017","favourites_count":44223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3560,"lang":null,"status":{"created_at":"Sat - Mar 26 10:43:07 +0000 2022","id":1507669471762264064,"id_str":"1507669471762264064","text":"I - am one of those folks who has believed for weeks that this was just a reprieve... - Keep telling my housemate, we w\u2026 https:\/\/t.co\/Vq9KOYwdUO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Vq9KOYwdUO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507669471762264064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507656988154605569,"quoted_status_id_str":"1507656988154605569","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507460061878263812\/NA5FuPbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507460061878263812\/NA5FuPbv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/828440468824453124\/1645979021","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1166101802712018949,"id_str":"1166101802712018949","name":"Metamorphosis\ud83e\udd8b\ud83c\udf2c\ud83c\uddee\ud83c\uddea\u264b\ud83d\udd49\ud83d\udcb1\ud83d\udcb0","screen_name":"Alankilkenny5","location":"ATHLONE","description":"It''s - not over until you win","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":783,"listed_count":2,"created_at":"Mon - Aug 26 21:35:24 +0000 2019","favourites_count":1297,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1075,"lang":null,"status":{"created_at":"Mon - Mar 22 21:37:01 +0000 2021","id":1374112908276334595,"id_str":"1374112908276334595","text":"@dpakman - \ud83d\ude02\ud83d\ude04","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dpakman","name":"David - Pakman","id":21514744,"id_str":"21514744","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1374031963623936007,"in_reply_to_status_id_str":"1374031963623936007","in_reply_to_user_id":21514744,"in_reply_to_user_id_str":"21514744","in_reply_to_screen_name":"dpakman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1373677065044684800\/QTjBK38H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1373677065044684800\/QTjBK38H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166101802712018949\/1598222865","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4352477301,"id_str":"4352477301","name":"cey","screen_name":"cey_raa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":78,"friends_count":73,"listed_count":21,"created_at":"Wed - Dec 02 17:02:33 +0000 2015","favourites_count":93,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Tue - Feb 22 18:31:31 +0000 2022","id":1496190936224874500,"id_str":"1496190936224874500","text":"@cz_binance - \u2639\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cz_binance","name":"CZ - \ud83d\udd36 Binance","id":902926941413453824,"id_str":"902926941413453824","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1496117877451423744,"in_reply_to_status_id_str":"1496117877451423744","in_reply_to_user_id":902926941413453824,"in_reply_to_user_id_str":"902926941413453824","in_reply_to_screen_name":"cz_binance","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329369672458903554\/tMRP0_jQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329369672458903554\/tMRP0_jQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4352477301\/1605781404","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":379967028,"id_str":"379967028","name":"Anne - Tidwell","screen_name":"AnneTidwellRN","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":806,"listed_count":0,"created_at":"Sun - Sep 25 21:14:33 +0000 2011","favourites_count":2863,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Fri - Mar 25 22:32:28 +0000 2022","id":1507485596171874313,"id_str":"1507485596171874313","text":"@SenTedCruz - Democrats are not pushing critical race theory. If you\u2019ll notice it\u2019s - republicans who are talking about\u2026 https:\/\/t.co\/cczoAYO2Il","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenTedCruz","name":"Senator - Ted Cruz","id":1074480192,"id_str":"1074480192","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/cczoAYO2Il","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507485596171874313","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506690192102641664,"in_reply_to_status_id_str":"1506690192102641664","in_reply_to_user_id":1074480192,"in_reply_to_user_id_str":"1074480192","in_reply_to_screen_name":"SenTedCruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233523247045586944\/yqYX828f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233523247045586944\/yqYX828f_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":186619932,"id_str":"186619932","name":"Sharon - McGuire Evans","screen_name":"sharilee66","location":"Madisonville, KY","description":"Baylor - University, University of Kentucky grad, teacher, avid reader, needle pointer, - and Wildcat fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1211,"friends_count":3374,"listed_count":1,"created_at":"Fri - Sep 03 23:13:15 +0000 2010","favourites_count":21908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":925,"lang":null,"status":{"created_at":"Fri - Mar 25 01:45:01 +0000 2022","id":1507171664848691209,"id_str":"1507171664848691209","text":"RT - @KyDems: The murky connections between corporate charter school developers - and the Republican legislators who voted this week to funnel\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyDems","name":"Kentucky - Democrats","id":58500736,"id_str":"58500736","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:45:46 +0000 2022","id":1507156752416006152,"id_str":"1507156752416006152","text":"The - murky connections between corporate charter school developers and the Republican - legislators who voted this wee\u2026 https:\/\/t.co\/X87aYMn4AT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X87aYMn4AT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507156752416006152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121,"favorite_count":281,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":121,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388295364650934275\/ErwphXuV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388295364650934275\/ErwphXuV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186619932\/1463260906","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":418314862,"id_str":"418314862","name":"Nate","screen_name":"nathandabarett","location":"","description":"Let\u2019s - all be kind, ok? :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":1478,"listed_count":1,"created_at":"Tue - Nov 22 01:11:41 +0000 2011","favourites_count":535,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":110,"lang":null,"status":{"created_at":"Sat - Dec 18 21:45:13 +0000 2021","id":1472322084223205382,"id_str":"1472322084223205382","text":"RT - @REALMizkif: GIVING AWAY 3 ANIMAL CROSSING NINTENDO SWITCHES FOR THE HOLIDAYS - \ud83c\udf81\ud83c\udf81\ud83c\udf81\n\nALL YOU HAVE TO DO IS:\n\u267b\ufe0f - RETWEET \n\ud83e\udd1d FOLLOW @REALMizk\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"REALMizkif","name":"Mizkif","id":4699719036,"id_str":"4699719036","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Dec 18 21:26:56 +0000 2021","id":1472317481339568130,"id_str":"1472317481339568130","text":"GIVING - AWAY 3 ANIMAL CROSSING NINTENDO SWITCHES FOR THE HOLIDAYS \ud83c\udf81\ud83c\udf81\ud83c\udf81\n\nALL - YOU HAVE TO DO IS:\n\u267b\ufe0f RETWEET \n\ud83e\udd1d FOLLOW\u2026 https:\/\/t.co\/hWAcGco612","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hWAcGco612","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1472317481339568130","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33835,"favorite_count":25782,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":33835,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"04046B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1372257025409880066\/V7SbmTiO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1372257025409880066\/V7SbmTiO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418314862\/1602280104","profile_link_color":"07ADBF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1455550280,"id_str":"1455550280","name":"Nathan","screen_name":"nathankonchak","location":"","description":"Follow - me on instagram @nathankonchak","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":31,"friends_count":469,"listed_count":0,"created_at":"Fri - May 24 23:51:18 +0000 2013","favourites_count":12099,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329888848961220609\/BUXyHI3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329888848961220609\/BUXyHI3A_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":850090457686298624,"id_str":"850090457686298624","name":"Corey - VB","screen_name":"CoreyB522","location":"Arkansas","description":"Just a - wife & mom of 2 boys living in the South.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1162,"listed_count":1,"created_at":"Thu - Apr 06 20:58:53 +0000 2017","favourites_count":3089,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":369,"lang":null,"status":{"created_at":"Fri - Sep 03 13:16:18 +0000 2021","id":1433780895568252932,"id_str":"1433780895568252932","text":"RT - @mkraju: Senate Judiciary announces it will hold a hearing on Supreme Court\u2019s - shadow docket in wake of Texas ruling in abortion case","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mkraju","name":"Manu - Raju","id":39155029,"id_str":"39155029","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 03 13:15:37 +0000 2021","id":1433780724499365890,"id_str":"1433780724499365890","text":"Senate - Judiciary announces it will hold a hearing on Supreme Court\u2019s shadow - docket in wake of Texas ruling in abortion case","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":357,"favorite_count":2447,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":357,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271098288905879553\/coph2B12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271098288905879553\/coph2B12_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249065363859369984,"id_str":"1249065363859369984","name":"Coco1951","screen_name":"Coco19513","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":202,"listed_count":0,"created_at":"Sat - Apr 11 20:03:09 +0000 2020","favourites_count":1917,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Fri - Jan 22 06:57:32 +0000 2021","id":1352510695791726593,"id_str":"1352510695791726593","text":"@Muaddibisme - @DC_Draino I Don''t Remember Lions being in question? Lol You were so articulate - there too. Too Bad You\u2026 https:\/\/t.co\/ulsJyGmlE0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Muaddibisme","name":"MuadDib - - Maybe it''s time for a general strike","id":384974783,"id_str":"384974783","indices":[0,12]},{"screen_name":"DC_Draino","name":"Rogan - O\u2019Handley \ud83c\uddfa\ud83c\uddf8","id":875856268056969216,"id_str":"875856268056969216","indices":[13,23]}],"urls":[{"url":"https:\/\/t.co\/ulsJyGmlE0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1352510695791726593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1352210125872881665,"in_reply_to_status_id_str":"1352210125872881665","in_reply_to_user_id":384974783,"in_reply_to_user_id_str":"384974783","in_reply_to_screen_name":"Muaddibisme","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4014964954,"id_str":"4014964954","name":"Areola - Temitope","screen_name":"TemitopeAreola","location":"Akure","description":"The most - blessed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":246,"listed_count":0,"created_at":"Thu - Oct 22 06:05:39 +0000 2015","favourites_count":27,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Thu - May 27 20:50:27 +0000 2021","id":1398018788549971975,"id_str":"1398018788549971975","text":"Environment - and climate change @unicef https:\/\/t.co\/u3bNwv5lEo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UNICEF","name":"UNICEF","id":33933259,"id_str":"33933259","indices":[31,38]}],"urls":[{"url":"https:\/\/t.co\/u3bNwv5lEo","expanded_url":"https:\/\/shar.es\/aoLP7e","display_url":"shar.es\/aoLP7e","indices":[39,62]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375412506554994697\/gpeQZvrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375412506554994697\/gpeQZvrh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4014964954\/1518212028","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3341753285,"id_str":"3341753285","name":"Trisha - Mulligan","screen_name":"domesticCEO32","location":"Carmel, IN","description":"Ruler - of the house, kickass wife & humble mother because I have to admit I don\u2019t - know what I\u2019m doing. Always working to ensure my existence is for good. - #Resist","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2727,"friends_count":3614,"listed_count":0,"created_at":"Mon - Jun 22 17:29:02 +0000 2015","favourites_count":26551,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8280,"lang":null,"status":{"created_at":"Sat - Mar 26 04:08:48 +0000 2022","id":1507570236442165249,"id_str":"1507570236442165249","text":"RT - @theliamnissan: Even if you were raised by wolves, discovered at age 20, and - then educated on absolutely nothing but reruns of pro wrest\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"theliamnissan","name":"Liam - Nissan\u2122","id":1413628042698797059,"id_str":"1413628042698797059","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:01:35 +0000 2022","id":1507145636461826049,"id_str":"1507145636461826049","text":"Even - if you were raised by wolves, discovered at age 20, and then educated on absolutely - nothing but reruns of pro\u2026 https:\/\/t.co\/roJCzV4hDn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/roJCzV4hDn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507145636461826049","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3218,"favorite_count":19656,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3218,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225172670691651589\/HOCdyl6W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225172670691651589\/HOCdyl6W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3341753285\/1648094396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24667990,"id_str":"24667990","name":"Cindy - Moore","screen_name":"Madcat68","location":"Kentucky, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":57,"friends_count":4810,"listed_count":2,"created_at":"Mon - Mar 16 08:47:37 +0000 2009","favourites_count":16661,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":707,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2346959091,"id_str":"2346959091","name":"jill - adelus","screen_name":"jillladelus1","location":"","description":"\u26d4Rev13:16-18\u26d4\nDon''t - let any1 microchip ur body-Rev14:9-11\nComing2 supermarkets\/petrol stations\/clubs\/pubs\/off - licenses (u can see where i hang out\ud83c\udf79\ud83c\udf77\ud83c\udf7a)soon\ud83d\ude1c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2820,"friends_count":4749,"listed_count":63,"created_at":"Sun - Feb 16 15:05:18 +0000 2014","favourites_count":16386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42810,"lang":null,"status":{"created_at":"Fri - Mar 25 22:20:23 +0000 2022","id":1507482555414634504,"id_str":"1507482555414634504","text":"@Liz_Wheeler - Satanic agenda.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Liz_Wheeler","name":"Liz - Wheeler","id":264361128,"id_str":"264361128","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506631892942077955,"in_reply_to_status_id_str":"1506631892942077955","in_reply_to_user_id":264361128,"in_reply_to_user_id_str":"264361128","in_reply_to_screen_name":"Liz_Wheeler","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491916471097769986\/VYiTAWht_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491916471097769986\/VYiTAWht_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2346959091\/1630150808","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108399464304308224,"id_str":"1108399464304308224","name":"BBCoach","screen_name":"BBCoach9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":485,"listed_count":0,"created_at":"Wed - Mar 20 16:06:40 +0000 2019","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24,"lang":null,"status":{"created_at":"Fri - Mar 11 17:41:08 +0000 2022","id":1502338849703354375,"id_str":"1502338849703354375","text":"RT - @NFL: Chargers trading for pass-rusher Khalil Mack (via @RapSheet) https:\/\/t.co\/38Am4SBFzA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NFL","name":"NFL","id":19426551,"id_str":"19426551","indices":[3,7]},{"screen_name":"RapSheet","name":"Ian - Rapoport","id":16403943,"id_str":"16403943","indices":[59,68]}],"urls":[],"media":[{"id":1502039704014921733,"id_str":"1502039704014921733","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","url":"https:\/\/t.co\/38Am4SBFzA","display_url":"pic.twitter.com\/38Am4SBFzA","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1502042360494137349\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1502042360494137349,"source_status_id_str":"1502042360494137349","source_user_id":19426551,"source_user_id_str":"19426551"}]},"extended_entities":{"media":[{"id":1502039704014921733,"id_str":"1502039704014921733","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","url":"https:\/\/t.co\/38Am4SBFzA","display_url":"pic.twitter.com\/38Am4SBFzA","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1502042360494137349\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"}},"source_status_id":1502042360494137349,"source_status_id_str":"1502042360494137349","source_user_id":19426551,"source_user_id_str":"19426551"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 22:02:59 +0000 2022","id":1502042360494137349,"id_str":"1502042360494137349","text":"Chargers - trading for pass-rusher Khalil Mack (via @RapSheet) https:\/\/t.co\/38Am4SBFzA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RapSheet","name":"Ian - Rapoport","id":16403943,"id_str":"16403943","indices":[50,59]}],"urls":[],"media":[{"id":1502039704014921733,"id_str":"1502039704014921733","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","url":"https:\/\/t.co\/38Am4SBFzA","display_url":"pic.twitter.com\/38Am4SBFzA","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1502042360494137349\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1502039704014921733,"id_str":"1502039704014921733","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNhRJxRXoAUMxl3.jpg","url":"https:\/\/t.co\/38Am4SBFzA","display_url":"pic.twitter.com\/38Am4SBFzA","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1502042360494137349\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1200,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4323,"favorite_count":33890,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4323,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19025667,"id_str":"19025667","name":"Harris","screen_name":"3under3","location":"","description":"Never - voting Republican again! #Resist I will never forget that the Republicans - tried to install a dictator.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1212,"friends_count":5002,"listed_count":1,"created_at":"Thu - Jan 15 15:38:56 +0000 2009","favourites_count":72995,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49117,"lang":null,"status":{"created_at":"Fri - Mar 25 21:27:55 +0000 2022","id":1507469349837279237,"id_str":"1507469349837279237","text":"RT - @cynjtorres: https:\/\/t.co\/ttgRJ8Y41M","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cynjtorres","name":"Cynthia - Torres\ud83c\udfc3\ud83c\udffb\u200d\u2640\ufe0f\ud83c\udf0a\ud83d\udc6a\ud83c\udffb","id":920058990,"id_str":"920058990","indices":[3,14]}],"urls":[],"media":[{"id":1507354593776263171,"id_str":"1507354593776263171","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","url":"https:\/\/t.co\/ttgRJ8Y41M","display_url":"pic.twitter.com\/ttgRJ8Y41M","expanded_url":"https:\/\/twitter.com\/cynjtorres\/status\/1507354595319820293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":861,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"},"large":{"w":1080,"h":861,"resize":"fit"}},"source_status_id":1507354595319820293,"source_status_id_str":"1507354595319820293","source_user_id":920058990,"source_user_id_str":"920058990"}]},"extended_entities":{"media":[{"id":1507354593776263171,"id_str":"1507354593776263171","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","url":"https:\/\/t.co\/ttgRJ8Y41M","display_url":"pic.twitter.com\/ttgRJ8Y41M","expanded_url":"https:\/\/twitter.com\/cynjtorres\/status\/1507354595319820293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":861,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"},"large":{"w":1080,"h":861,"resize":"fit"}},"source_status_id":1507354595319820293,"source_status_id_str":"1507354595319820293","source_user_id":920058990,"source_user_id_str":"920058990"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:51:55 +0000 2022","id":1507354595319820293,"id_str":"1507354595319820293","text":"https:\/\/t.co\/ttgRJ8Y41M","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507354593776263171,"id_str":"1507354593776263171","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","url":"https:\/\/t.co\/ttgRJ8Y41M","display_url":"pic.twitter.com\/ttgRJ8Y41M","expanded_url":"https:\/\/twitter.com\/cynjtorres\/status\/1507354595319820293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":861,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"},"large":{"w":1080,"h":861,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507354593776263171,"id_str":"1507354593776263171","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOszBEiWYAMvosZ.jpg","url":"https:\/\/t.co\/ttgRJ8Y41M","display_url":"pic.twitter.com\/ttgRJ8Y41M","expanded_url":"https:\/\/twitter.com\/cynjtorres\/status\/1507354595319820293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":861,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"},"large":{"w":1080,"h":861,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":740,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":275,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":777304601808687104,"id_str":"777304601808687104","name":"Natalie","screen_name":"nataliebbranch","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":601,"listed_count":0,"created_at":"Sun - Sep 18 00:33:53 +0000 2016","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Wed - Mar 16 14:17:49 +0000 2022","id":1504099623278891012,"id_str":"1504099623278891012","text":"@garden_chamber - There are not enough words just feelings to describe what you have shared - with us\u2763\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"garden_chamber","name":"Fair","id":1004957005830918144,"id_str":"1004957005830918144","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1369235601325776898,"in_reply_to_status_id_str":"1369235601325776898","in_reply_to_user_id":1004957005830918144,"in_reply_to_user_id_str":"1004957005830918144","in_reply_to_screen_name":"garden_chamber","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292769748485382144,"id_str":"1292769748485382144","name":"Junior - Olamide","screen_name":"JuniorOlamide19","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":2467,"listed_count":0,"created_at":"Mon - Aug 10 10:28:31 +0000 2020","favourites_count":22286,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sun - Jan 24 19:38:49 +0000 2021","id":1353427053022855174,"id_str":"1353427053022855174","text":"U - aaa legend wate \ud83d\ude03\ud83d\ude03\ud83d\ude03. Love u bunch https:\/\/t.co\/bVnY9zztdI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bVnY9zztdI","expanded_url":"https:\/\/twitter.com\/Abena_b1\/status\/1353419968617054208","display_url":"twitter.com\/Abena_b1\/statu\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1353419968617054208,"quoted_status_id_str":"1353419968617054208","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345094788085911552\/EGWy6-sT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345094788085911552\/EGWy6-sT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296649783,"id_str":"1296649783","name":"Aytac - Alsan","screen_name":"aytacalsan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":174,"friends_count":3851,"listed_count":1,"created_at":"Sun - Mar 24 21:06:45 +0000 2013","favourites_count":4466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sun - Aug 02 13:35:24 +0000 2020","id":1289917718943211520,"id_str":"1289917718943211520","text":"RT - @Kaleagasi: @t24comtr https:\/\/t.co\/6m3TLbRmoj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kaleagasi","name":"Bahad\u0131r - Kalea\u011fas\u0131","id":22412070,"id_str":"22412070","indices":[3,13]},{"screen_name":"t24comtr","name":"T24","id":80549263,"id_str":"80549263","indices":[15,24]}],"urls":[],"media":[{"id":1289853089969774593,"id_str":"1289853089969774593","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","url":"https:\/\/t.co\/6m3TLbRmoj","display_url":"pic.twitter.com\/6m3TLbRmoj","expanded_url":"https:\/\/twitter.com\/Kaleagasi\/status\/1289853092360417285\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1017,"h":1024,"resize":"fit"},"medium":{"w":1017,"h":1024,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}},"source_status_id":1289853092360417285,"source_status_id_str":"1289853092360417285","source_user_id":22412070,"source_user_id_str":"22412070"}]},"extended_entities":{"media":[{"id":1289853089969774593,"id_str":"1289853089969774593","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","url":"https:\/\/t.co\/6m3TLbRmoj","display_url":"pic.twitter.com\/6m3TLbRmoj","expanded_url":"https:\/\/twitter.com\/Kaleagasi\/status\/1289853092360417285\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1017,"h":1024,"resize":"fit"},"medium":{"w":1017,"h":1024,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}},"source_status_id":1289853092360417285,"source_status_id_str":"1289853092360417285","source_user_id":22412070,"source_user_id_str":"22412070"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 02 09:18:36 +0000 2020","id":1289853092360417285,"id_str":"1289853092360417285","text":"@t24comtr - https:\/\/t.co\/6m3TLbRmoj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"t24comtr","name":"T24","id":80549263,"id_str":"80549263","indices":[0,9]}],"urls":[],"media":[{"id":1289853089969774593,"id_str":"1289853089969774593","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","url":"https:\/\/t.co\/6m3TLbRmoj","display_url":"pic.twitter.com\/6m3TLbRmoj","expanded_url":"https:\/\/twitter.com\/Kaleagasi\/status\/1289853092360417285\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1017,"h":1024,"resize":"fit"},"medium":{"w":1017,"h":1024,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1289853089969774593,"id_str":"1289853089969774593","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EeZ6jSgWoAEshJo.jpg","url":"https:\/\/t.co\/6m3TLbRmoj","display_url":"pic.twitter.com\/6m3TLbRmoj","expanded_url":"https:\/\/twitter.com\/Kaleagasi\/status\/1289853092360417285\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1017,"h":1024,"resize":"fit"},"medium":{"w":1017,"h":1024,"resize":"fit"},"small":{"w":675,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1289093659896565761,"in_reply_to_status_id_str":"1289093659896565761","in_reply_to_user_id":22412070,"in_reply_to_user_id_str":"22412070","in_reply_to_screen_name":"Kaleagasi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460537185935294464\/4eftr22Q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460537185935294464\/4eftr22Q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1296649783\/1409065639","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244062721114505216,"id_str":"1244062721114505216","name":"Anthony - Russell","screen_name":"Anthony99516278","location":"Wexford, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":179,"listed_count":0,"created_at":"Sun - Mar 29 00:44:25 +0000 2020","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"status":{"created_at":"Fri - Mar 25 10:02:20 +0000 2022","id":1507296818278846466,"id_str":"1507296818278846466","text":"@DubFireBrigade - P&t","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DubFireBrigade","name":"Dublin - Fire Brigade","id":2798058029,"id_str":"2798058029","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507105018595483651,"in_reply_to_status_id_str":"1507105018595483651","in_reply_to_user_id":2798058029,"in_reply_to_user_id_str":"2798058029","in_reply_to_screen_name":"DubFireBrigade","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402737218159104003\/JPd1BmE8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402737218159104003\/JPd1BmE8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306106010,"id_str":"1306106010","name":"James - Martinez","screen_name":"JMartinez6425","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":4999,"listed_count":1,"created_at":"Wed - Mar 27 01:06:44 +0000 2013","favourites_count":65481,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Sun - Dec 26 14:10:33 +0000 2021","id":1475106763422658560,"id_str":"1475106763422658560","text":"@MikeTrout - Garden Grove!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikeTrout","name":"Mike - Trout","id":145107843,"id_str":"145107843","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1474860906269974530,"in_reply_to_status_id_str":"1474860906269974530","in_reply_to_user_id":145107843,"in_reply_to_user_id_str":"145107843","in_reply_to_screen_name":"MikeTrout","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":872107167620444162,"id_str":"872107167620444162","name":"Brad - Arbuckle","screen_name":"BradArbuckle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":79,"listed_count":0,"created_at":"Tue - Jun 06 15:05:26 +0000 2017","favourites_count":16,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":219,"lang":null,"status":{"created_at":"Fri - Mar 25 15:25:06 +0000 2022","id":1507378046927581188,"id_str":"1507378046927581188","text":"@stillgray - Grow up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stillgray","name":"Ian - Miles Cheong","id":16106584,"id_str":"16106584","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507192121605861382,"in_reply_to_status_id_str":"1507192121605861382","in_reply_to_user_id":16106584,"in_reply_to_user_id_str":"16106584","in_reply_to_screen_name":"stillgray","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2176969314,"id_str":"2176969314","name":"Seaweed","screen_name":"SeductivSeaweed","location":"Pornhub","description":"He\/They|Anti-military-military - club, mediocre Ivy League student, constant mouth mover. Film, media,& politics - dude who streams on https:\/\/t.co\/2qVCdOpVKM","url":"https:\/\/t.co\/9iIjRNY7T3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9iIjRNY7T3","expanded_url":"https:\/\/linktr.ee\/SeductiveSeaweed","display_url":"linktr.ee\/SeductiveSeawe\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2qVCdOpVKM","expanded_url":"http:\/\/twitch.tv\/seductivesea","display_url":"twitch.tv\/seductivesea","indices":[131,154]}]}},"protected":false,"followers_count":413,"friends_count":1020,"listed_count":2,"created_at":"Tue - Nov 05 23:03:44 +0000 2013","favourites_count":72968,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11707,"lang":null,"status":{"created_at":"Sat - Mar 26 04:29:16 +0000 2022","id":1507575387148193792,"id_str":"1507575387148193792","text":"RT - @RayyvanaTTV: @Timcast Imagine if Tim Pool didn\u2019t exist","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RayyvanaTTV","name":"Rayyvana\ud83d\ude80","id":962331519594397696,"id_str":"962331519594397696","indices":[3,15]},{"screen_name":"Timcast","name":"Tim - Pool","id":27000730,"id_str":"27000730","indices":[17,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:53:30 +0000 2022","id":1507490890809499656,"id_str":"1507490890809499656","text":"@Timcast - Imagine if Tim Pool didn\u2019t exist","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Timcast","name":"Tim - Pool","id":27000730,"id_str":"27000730","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507365413931397123,"in_reply_to_status_id_str":"1507365413931397123","in_reply_to_user_id":27000730,"in_reply_to_user_id_str":"27000730","in_reply_to_screen_name":"Timcast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":60,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478439245937266697\/WlcbRoT-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478439245937266697\/WlcbRoT-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176969314\/1644977053","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17652065,"id_str":"17652065","name":"karimketchum","screen_name":"karimketchum","location":"Ketchum, - Idaho","description":"Website Developer","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":310,"listed_count":0,"created_at":"Wed - Nov 26 15:43:38 +0000 2008","favourites_count":703,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1051678575340867584\/LkB8Lpyy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1051678575340867584\/LkB8Lpyy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17652065\/1539574688","profile_link_color":"41C720","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":901531610230685696,"id_str":"901531610230685696","name":"Liz - borthwick","screen_name":"grandmablizb","location":"Waterloo, Ontario","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":80,"listed_count":0,"created_at":"Sat - Aug 26 19:47:40 +0000 2017","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Aug 12 15:18:32 +0000 2020","id":1293567552166273024,"id_str":"1293567552166273024","text":"RT - @CTVNews: Dr. Sanjay Gupta: Why I am not sending my kids back to school https:\/\/t.co\/POXTpCH3wN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CTVNews","name":"CTV - News","id":203123011,"id_str":"203123011","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/POXTpCH3wN","expanded_url":"https:\/\/www.ctvnews.ca\/health\/coronavirus\/dr-sanjay-gupta-why-i-am-not-sending-my-kids-back-to-school-1.5061042","display_url":"ctvnews.ca\/health\/coronav\u2026","indices":[75,98]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Aug 12 14:24:09 +0000 2020","id":1293553866148061184,"id_str":"1293553866148061184","text":"Dr. - Sanjay Gupta: Why I am not sending my kids back to school https:\/\/t.co\/POXTpCH3wN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/POXTpCH3wN","expanded_url":"https:\/\/www.ctvnews.ca\/health\/coronavirus\/dr-sanjay-gupta-why-i-am-not-sending-my-kids-back-to-school-1.5061042","display_url":"ctvnews.ca\/health\/coronav\u2026","indices":[62,85]}]},"source":"\u003ca - href=\"http:\/\/www.socialnewsdesk.com\" rel=\"nofollow\"\u003eSocialNewsDesk\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":239,"favorite_count":693,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":239,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":396101667,"id_str":"396101667","name":"Michael - Hunt","screen_name":"mhunt1967","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":2507,"listed_count":0,"created_at":"Sat - Oct 22 19:03:18 +0000 2011","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Thu - Sep 23 21:31:25 +0000 2021","id":1441153254579081222,"id_str":"1441153254579081222","text":"@YukonHPW - .Dr\nmg3ey\n2 .w","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YukonHPW","name":"Yukon - Highways and Public Works","id":1166845316760555521,"id_str":"1166845316760555521","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1440743479160688646,"in_reply_to_status_id_str":"1440743479160688646","in_reply_to_user_id":1166845316760555521,"in_reply_to_user_id_str":"1166845316760555521","in_reply_to_screen_name":"YukonHPW","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1556639472,"id_str":"1556639472","name":"Holly - Dog","screen_name":"hollytheterrier","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":1641,"listed_count":0,"created_at":"Sat - Jun 29 22:29:19 +0000 2013","favourites_count":41959,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11246,"lang":null,"status":{"created_at":"Fri - Mar 25 23:30:04 +0000 2022","id":1507500092248391682,"id_str":"1507500092248391682","text":"@jesflres - Me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507440919578034181,"in_reply_to_status_id_str":"1507440919578034181","in_reply_to_user_id":1494693992591724550,"in_reply_to_user_id_str":"1494693992591724550","in_reply_to_screen_name":"jesflres","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000065553796\/9ab51201f50dd7a2f1f9d8f0e6096aed_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000065553796\/9ab51201f50dd7a2f1f9d8f0e6096aed_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2219689826,"id_str":"2219689826","name":"Diego - Freitas Surtado","screen_name":"freitasfurtado","location":"","description":"Coach - qu\u00e2ntico, crossfiter, astr\u00f3logo, trader e mentiroso.\n\nLinks: https:\/\/t.co\/DvAJnf4Ay8","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/DvAJnf4Ay8","expanded_url":"http:\/\/bit.ly\/freitasfurtado","display_url":"bit.ly\/freitasfurtado","indices":[67,90]}]}},"protected":false,"followers_count":140,"friends_count":768,"listed_count":0,"created_at":"Thu - Nov 28 13:10:50 +0000 2013","favourites_count":28304,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3254,"lang":null,"status":{"created_at":"Fri - Mar 25 19:48:47 +0000 2022","id":1507444402280611840,"id_str":"1507444402280611840","text":"RT - @startupdareal: T\u00e1 todo mundo fingindo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"startupdareal","name":"Startupdareal","id":932675351913926656,"id_str":"932675351913926656","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:31:07 +0000 2022","id":1507304061644726314,"id_str":"1507304061644726314","text":"T\u00e1 - todo mundo fingindo https:\/\/t.co\/Va8XwxGh10","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Va8XwxGh10","expanded_url":"https:\/\/twitter.com\/faxinaboa\/status\/1507192858163437569","display_url":"twitter.com\/faxinaboa\/stat\u2026","indices":[23,46]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507192858163437569,"quoted_status_id_str":"1507192858163437569","retweet_count":583,"favorite_count":5147,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":true,"quoted_status_id":1507192858163437569,"quoted_status_id_str":"1507192858163437569","retweet_count":583,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396510795211681803\/SLCLBWpp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396510795211681803\/SLCLBWpp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2219689826\/1623757948","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2206036140,"id_str":"2206036140","name":"Cheryl - Russell","screen_name":"carn31565","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":310,"listed_count":0,"created_at":"Thu - Nov 21 01:42:57 +0000 2013","favourites_count":11603,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":425,"lang":null,"status":{"created_at":"Sat - Mar 26 02:20:04 +0000 2022","id":1507542871531995137,"id_str":"1507542871531995137","text":"RT - @GordoS6565: My how some folks forget !! https:\/\/t.co\/itKg6adYL9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GordoS6565","name":"G - \ud83c\udf4a\ud83e\ude78\ud83c\uddfa\ud83c\uddf8\ud83e\udd4b","id":1427656792276885508,"id_str":"1427656792276885508","indices":[3,14]}],"urls":[],"media":[{"id":1507233873398312963,"id_str":"1507233873398312963","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","url":"https:\/\/t.co\/itKg6adYL9","display_url":"pic.twitter.com\/itKg6adYL9","expanded_url":"https:\/\/twitter.com\/GordoS6565\/status\/1507233878955765761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":828,"h":1035,"resize":"fit"},"medium":{"w":828,"h":1035,"resize":"fit"}},"source_status_id":1507233878955765761,"source_status_id_str":"1507233878955765761","source_user_id":1427656792276885508,"source_user_id_str":"1427656792276885508"}]},"extended_entities":{"media":[{"id":1507233873398312963,"id_str":"1507233873398312963","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","url":"https:\/\/t.co\/itKg6adYL9","display_url":"pic.twitter.com\/itKg6adYL9","expanded_url":"https:\/\/twitter.com\/GordoS6565\/status\/1507233878955765761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":828,"h":1035,"resize":"fit"},"medium":{"w":828,"h":1035,"resize":"fit"}},"source_status_id":1507233878955765761,"source_status_id_str":"1507233878955765761","source_user_id":1427656792276885508,"source_user_id_str":"1427656792276885508"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 05:52:14 +0000 2022","id":1507233878955765761,"id_str":"1507233878955765761","text":"My - how some folks forget !! https:\/\/t.co\/itKg6adYL9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507233873398312963,"id_str":"1507233873398312963","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","url":"https:\/\/t.co\/itKg6adYL9","display_url":"pic.twitter.com\/itKg6adYL9","expanded_url":"https:\/\/twitter.com\/GordoS6565\/status\/1507233878955765761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":828,"h":1035,"resize":"fit"},"medium":{"w":828,"h":1035,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507233873398312963,"id_str":"1507233873398312963","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOrFOOFXsAMHMs5.jpg","url":"https:\/\/t.co\/itKg6adYL9","display_url":"pic.twitter.com\/itKg6adYL9","expanded_url":"https:\/\/twitter.com\/GordoS6565\/status\/1507233878955765761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":828,"h":1035,"resize":"fit"},"medium":{"w":828,"h":1035,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3893,"favorite_count":8249,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3893,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":760901350557224960,"id_str":"760901350557224960","name":"Norma - Blanton","screen_name":"norma_blanton","location":"Orlando, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":347,"listed_count":0,"created_at":"Wed - Aug 03 18:13:13 +0000 2016","favourites_count":91,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1204617928643137538,"id_str":"1204617928643137538","name":"Nicole\u2019s - Wonderland","screen_name":"NicolesWonderl1","location":"Taylor, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":44,"friends_count":1422,"listed_count":0,"created_at":"Wed - Dec 11 04:24:43 +0000 2019","favourites_count":128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289510907375161345\/DLF-Dp6Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289510907375161345\/DLF-Dp6Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204617928643137538\/1596278334","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":765621,"id_str":"765621","name":"zenera","screen_name":"zenera","location":"","description":"\u0388\u03c7\u03bf\u03bd\u03c4\u03b1\u03c2 - \u03c3\u03c5\u03bd\u03b5\u03b9\u03b4\u03b7\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 - \u03b1\u03c5\u03c4\u03cc \ud83c\udfdbHiis rebus cognitis... #FBPE\ud83c\uddea\ud83c\uddfa\ud83c\uddec\ud83c\udde7Gettr - @zenera","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1123,"friends_count":3486,"listed_count":1,"created_at":"Sun - Feb 11 21:50:20 +0000 2007","favourites_count":1805,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41052,"lang":null,"status":{"created_at":"Sat - Mar 26 00:14:35 +0000 2022","id":1507511293590360066,"id_str":"1507511293590360066","text":"RT - @Michael54451402: Interesting video here about the colours we''ve seen throughout - the last 2 years. Blue and yellow were predominant thro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Michael54451402","name":"Michael - Millington","id":1500243320404070404,"id_str":"1500243320404070404","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:16:06 +0000 2022","id":1506983194578624514,"id_str":"1506983194578624514","text":"Interesting - video here about the colours we''ve seen throughout the last 2 years. Blue - and yellow were predominant t\u2026 https:\/\/t.co\/RgGAMv6FSt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RgGAMv6FSt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506983194578624514","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":53,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E6F2FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580812136\/DSCN0013_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580812136\/DSCN0013_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/765621\/1539780797","profile_link_color":"91D2FA","profile_sidebar_border_color":"AAD6E6","profile_sidebar_fill_color":"DEEDF7","profile_text_color":"3A4B7A","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":765914777348665344,"id_str":"765914777348665344","name":"Siddharth - Negandhi","screen_name":"Mr_Negandhi","location":"Mumbai, Maharashtra","description":"I - am from the 90''s and early 2000''s.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":4986,"listed_count":1,"created_at":"Wed - Aug 17 14:14:47 +0000 2016","favourites_count":40,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Mar 07 10:36:34 +0000 2019","id":1103605351641952256,"id_str":"1103605351641952256","text":"@Nike - Inspiring!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nike","name":"Nike","id":415859364,"id_str":"415859364","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1099723184369152001,"in_reply_to_status_id_str":"1099723184369152001","in_reply_to_user_id":415859364,"in_reply_to_user_id_str":"415859364","in_reply_to_screen_name":"Nike","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481275592217542656\/uf-jwQMa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481275592217542656\/uf-jwQMa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/765914777348665344\/1543253769","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300667128685748225,"id_str":"1300667128685748225","name":"Jama - Hashi","screen_name":"JamaHashi12","location":"Ypres, Belgium","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":113,"listed_count":0,"created_at":"Tue - Sep 01 05:30:01 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Nov 14 17:44:26 +0000 2020","id":1327668729728151554,"id_str":"1327668729728151554","text":"Ha - loo soo duceeyo,Gen.Khalif Isse in Ilaahay caafimaad siiyo,si uu halkeedi - uga Wado hawshi wadanka u Hayley.Allha caafiyo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ht"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305734311,"id_str":"1305734311","name":"SOH\u25b2IL_S\u25b2YED","screen_name":"sohail__sayed","location":"BOMBAY\u2764\ufe0f","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":1011,"listed_count":0,"created_at":"Tue - Mar 26 22:04:18 +0000 2013","favourites_count":208601,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5693,"lang":null,"status":{"created_at":"Sat - Mar 19 11:35:55 +0000 2022","id":1505146042353807360,"id_str":"1505146042353807360","text":"RT - @RahulGandhi: Hunger Rank: 101\nFreedom Rank: 119\nHappiness Rank: 136\n\nBut, - we may soon top the Hate and Anger charts! https:\/\/t.co\/pJxB4\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RahulGandhi","name":"Rahul - Gandhi","id":3171712086,"id_str":"3171712086","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 11:29:37 +0000 2022","id":1505144455820632070,"id_str":"1505144455820632070","text":"Hunger - Rank: 101\nFreedom Rank: 119\nHappiness Rank: 136\n\nBut, we may soon top - the Hate and Anger charts! https:\/\/t.co\/pJxB4p8DEt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505144375537512449,"id_str":"1505144375537512449","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FONY1b-XMAEw3Cc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONY1b-XMAEw3Cc.jpg","url":"https:\/\/t.co\/pJxB4p8DEt","display_url":"pic.twitter.com\/pJxB4p8DEt","expanded_url":"https:\/\/twitter.com\/RahulGandhi\/status\/1505144455820632070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":750,"h":750,"resize":"fit"},"medium":{"w":750,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505144375537512449,"id_str":"1505144375537512449","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FONY1b-XMAEw3Cc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONY1b-XMAEw3Cc.jpg","url":"https:\/\/t.co\/pJxB4p8DEt","display_url":"pic.twitter.com\/pJxB4p8DEt","expanded_url":"https:\/\/twitter.com\/RahulGandhi\/status\/1505144455820632070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":750,"h":750,"resize":"fit"},"medium":{"w":750,"h":750,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16890,"favorite_count":62044,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16890,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502958041750142978\/xIEdz7oD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502958041750142978\/xIEdz7oD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305734311\/1647080851","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261967396,"id_str":"1261967396","name":"Michelle - Jacoby","screen_name":"jacoby_michelle","location":"","description":"Iowa - State University Class of 2018 #gocyclones","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":352,"listed_count":0,"created_at":"Tue - Mar 12 13:19:54 +0000 2013","favourites_count":21201,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":631,"lang":null,"status":{"created_at":"Sun - Sep 26 20:33:18 +0000 2021","id":1442225792008720384,"id_str":"1442225792008720384","text":"RT - @KHayhoe: \"We spent a long time thinking we were engaged in an argument about - data and reason,\" @billmckibben says about the climate mov\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KHayhoe","name":"Prof. - Katharine Hayhoe","id":34317032,"id_str":"34317032","indices":[3,11]},{"screen_name":"billmckibben","name":"Bill - McKibben","id":21786618,"id_str":"21786618","indices":[99,112]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Sep 26 19:20:33 +0000 2021","id":1442207481330114567,"id_str":"1442207481330114567","text":"\"We - spent a long time thinking we were engaged in an argument about data and reason,\" - @billmckibben says about the\u2026 https:\/\/t.co\/4zXVEpN0I3","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"billmckibben","name":"Bill - McKibben","id":21786618,"id_str":"21786618","indices":[86,99]}],"urls":[{"url":"https:\/\/t.co\/4zXVEpN0I3","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1442207481330114567","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1735,"favorite_count":5369,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1735,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230257103421530112\/GcYxZOCI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230257103421530112\/GcYxZOCI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261967396\/1601134087","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":705176944724348928,"id_str":"705176944724348928","name":"Fatima - Afia","screen_name":"fatimaesq88","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":151,"friends_count":736,"listed_count":0,"created_at":"Wed - Mar 02 23:44:19 +0000 2016","favourites_count":56458,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7240,"lang":null,"status":{"created_at":"Thu - Mar 10 03:03:23 +0000 2022","id":1501755568284909570,"id_str":"1501755568284909570","text":"RT - @aliashaban_: vanessa lachey, u are a fucking QUEEN for saying this instead - of keeping the typical \u2018host\u2019 decorum and staying silent. \ud83d\udc51\ud83d\udc51\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aliashaban_","name":"Alia","id":986878498559193088,"id_str":"986878498559193088","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 22:36:58 +0000 2022","id":1499876582629990404,"id_str":"1499876582629990404","text":"vanessa - lachey, u are a fucking QUEEN for saying this instead of keeping the typical - \u2018host\u2019 decorum and staying sil\u2026 https:\/\/t.co\/M8nTHNY0WK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M8nTHNY0WK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499876582629990404","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":318,"favorite_count":3160,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":318,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705178178617217024\/5spXdtt5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705178178617217024\/5spXdtt5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306861700,"id_str":"1306861700","name":"Lawrence - Amable ","screen_name":"elorm_larry","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":359,"listed_count":0,"created_at":"Wed - Mar 27 08:06:16 +0000 2013","favourites_count":153,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":114,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/990633527359262720\/BSmuCIW3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/990633527359262720\/BSmuCIW3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831339893959819264,"id_str":"831339893959819264","name":"Li - wang","screen_name":"Lizzywangli","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":299,"listed_count":0,"created_at":"Tue - Feb 14 03:10:51 +0000 2017","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Dec 15 19:15:02 +0000 2021","id":1471197125535055873,"id_str":"1471197125535055873","text":"Business","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40870537,"id_str":"40870537","name":"Dr. - John LaValle","screen_name":"drjlavalle","location":"New York - Chelsea","description":"Psychoanalyst - in private practice in Manhattan, College Instructor - Ex-Chief and Father - of a beautiful girl. https:\/\/t.co\/qamaDwNiqd","url":"https:\/\/t.co\/ADXqffVyfG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ADXqffVyfG","expanded_url":"http:\/\/drlavalle.com","display_url":"drlavalle.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qamaDwNiqd","expanded_url":"http:\/\/drjlavalle.blog.com","display_url":"drjlavalle.blog.com","indices":[110,133]}]}},"protected":false,"followers_count":150,"friends_count":530,"listed_count":4,"created_at":"Mon - May 18 13:16:56 +0000 2009","favourites_count":4876,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5152,"lang":null,"status":{"created_at":"Wed - Mar 23 16:07:42 +0000 2022","id":1506663990381920261,"id_str":"1506663990381920261","text":"#LindseyGraham - should be ashamed of his dramatics at the Jackson confirmation. Tho doesn''t - protest too much. How\u2026 https:\/\/t.co\/CnS1Ly3MUe","truncated":true,"entities":{"hashtags":[{"text":"LindseyGraham","indices":[0,14]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CnS1Ly3MUe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506663990381920261","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336715365695545346\/-7auWOGC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336715365695545346\/-7auWOGC_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218560108365516800,"id_str":"1218560108365516800","name":"Bettynutely","screen_name":"bettynutely","location":"","description":"SI - TU TE SENS MAL,FAIS TOI SENTIR PAR UN AUTRE.\nSIDA RESEARCH\/CIV.USA\/\nMARVEL\/NUTELLA\/G.PHILIPPE\/ - BOWIE\/DALTREY\/AMICALEMENTVOTRE\/\nANTIRACISME\/\nPEINTREPIANISTE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":1719,"listed_count":5,"created_at":"Sat - Jan 18 15:47:11 +0000 2020","favourites_count":53704,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61183,"lang":null,"status":{"created_at":"Sat - Mar 26 10:37:18 +0000 2022","id":1507668005941039104,"id_str":"1507668005941039104","text":"RT - @CNEWS: Philippines : le volcan Taal est entr\u00e9 en \u00e9ruption, des - milliers de personnes \u00e9vacu\u00e9es https:\/\/t.co\/Y7UQVc0ms1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNEWS","name":"CNEWS","id":18396319,"id_str":"18396319","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/Y7UQVc0ms1","expanded_url":"https:\/\/www.cnews.fr\/monde\/2022-03-26\/philippines-le-volcan-taal-en-eruption-des-milliers-de-personnes-evacuees-1197225","display_url":"cnews.fr\/monde\/2022-03-\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 10:26:14 +0000 2022","id":1507665220398989318,"id_str":"1507665220398989318","text":"Philippines - : le volcan Taal est entr\u00e9 en \u00e9ruption, des milliers de personnes - \u00e9vacu\u00e9es https:\/\/t.co\/Y7UQVc0ms1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y7UQVc0ms1","expanded_url":"https:\/\/www.cnews.fr\/monde\/2022-03-26\/philippines-le-volcan-taal-en-eruption-des-milliers-de-personnes-evacuees-1197225","display_url":"cnews.fr\/monde\/2022-03-\u2026","indices":[87,110]}]},"source":"\u003ca - href=\"https:\/\/www.cnews.fr\" rel=\"nofollow\"\u003ecnews_twitter_production\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229191153666461696\/_KteBzO1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229191153666461696\/_KteBzO1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218560108365516800\/1580141321","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3622341073,"id_str":"3622341073","name":"Karen","screen_name":"kkinsbca","location":"Santa - Barbara, CA","description":"Enjoy History, Art, Music, Football, Gardening - and Family. I believe in Democracy, a woman\u2019s right to choose and vaccinations. - \ud83c\udf0a\ud83d\udc99\ud83c\udf0a","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2064,"friends_count":3384,"listed_count":0,"created_at":"Sun - Sep 20 02:35:13 +0000 2015","favourites_count":30215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309572959128887297\/8iPqpWFI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309572959128887297\/8iPqpWFI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3622341073\/1610920861","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2738862562,"id_str":"2738862562","name":"Sara - B Rimer","screen_name":"rimer_b","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":103,"listed_count":0,"created_at":"Sun - Aug 10 08:47:31 +0000 2014","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Mon - Jun 07 02:43:55 +0000 2021","id":1401731620919468035,"id_str":"1401731620919468035","text":"@patriottakes - Isn\u2019t that Charlie Manson Jesus?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patriottakes","name":"PatriotTakes - \ud83c\uddfa\ud83c\uddf8","id":978265628426432512,"id_str":"978265628426432512","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1401675272345337858,"in_reply_to_status_id_str":"1401675272345337858","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498394840129089536\/YCbt3dbf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498394840129089536\/YCbt3dbf_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":367865474,"id_str":"367865474","name":"Mehrdad - Sharif","screen_name":"MehrdadSharif","location":"Vancouver, British Columbia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":4991,"listed_count":6,"created_at":"Sun - Sep 04 18:02:12 +0000 2011","favourites_count":1298,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":299,"lang":null,"status":{"created_at":"Thu - Mar 17 03:29:50 +0000 2022","id":1504298938840494080,"id_str":"1504298938840494080","text":"Best - day in my life ever #ripple #xrp https:\/\/t.co\/9iBuO31nuy","truncated":false,"entities":{"hashtags":[{"text":"ripple","indices":[25,32]},{"text":"xrp","indices":[33,37]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9iBuO31nuy","expanded_url":"http:\/\/xrp-giveaway.net\/?548943458","display_url":"xrp-giveaway.net\/?548943458","indices":[38,61]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477635408737546244\/PB1JZsDs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477635408737546244\/PB1JZsDs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":492935110,"id_str":"492935110","name":"Clarisse - Viray","screen_name":"saycheeseCayiz","location":"The Batcave","description":"i - use oxford comma everytime & i dunno y. i just have to","url":"https:\/\/t.co\/0RbI0rlFEw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0RbI0rlFEw","expanded_url":"http:\/\/Instagram.com\/clarissegraphy","display_url":"Instagram.com\/clarissegraphy","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":375,"friends_count":384,"listed_count":1,"created_at":"Wed - Feb 15 08:37:22 +0000 2012","favourites_count":6407,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10861,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494526117474041858\/duwcFlJe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494526117474041858\/duwcFlJe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492935110\/1642721756","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFF200","profile_text_color":"FF385F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":199719276,"id_str":"199719276","name":"aba_Ajao","screen_name":"bambillo1","location":"Abuja","description":"Engineer - | Software Developer | AI\/ML entrepreneur.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":318,"friends_count":3380,"listed_count":3,"created_at":"Thu - Oct 07 15:41:42 +0000 2010","favourites_count":809,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":598,"lang":null,"status":{"created_at":"Mon - Mar 14 04:53:01 +0000 2022","id":1503232708750761988,"id_str":"1503232708750761988","text":"@AndrewYNg - Is there any successful model for predicting rain attenuation in ku- band - and ka-band yet, Sir?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AndrewYNg","name":"Andrew - Ng","id":216939636,"id_str":"216939636","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":216939636,"in_reply_to_user_id_str":"216939636","in_reply_to_screen_name":"AndrewYNg","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/736226713672286208\/SCUsHYmq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/736226713672286208\/SCUsHYmq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270202583815159809,"id_str":"1270202583815159809","name":"Rald","screen_name":"Rald56429403","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1096,"listed_count":0,"created_at":"Tue - Jun 09 03:57:37 +0000 2020","favourites_count":6229,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":962822576547532800,"id_str":"962822576547532800","name":"Laura - Perry","screen_name":"LauraPe14718353","location":"Florida, USA","description":"Politics - Politics NFL General News Weather","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":179,"listed_count":0,"created_at":"Sun - Feb 11 22:56:05 +0000 2018","favourites_count":13572,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3029,"lang":null,"status":{"created_at":"Tue - Mar 15 12:41:13 +0000 2022","id":1503712923117572096,"id_str":"1503712923117572096","text":"RT - @RSBNetwork: Statement by Donald J. Trump, 45th President of the United States - of America https:\/\/t.co\/cXEOuUc155","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RSBNetwork","name":"RSBN - \ud83c\uddfa\ud83c\uddf8","id":4041824789,"id_str":"4041824789","indices":[3,14]}],"urls":[],"media":[{"id":1503459929486770185,"id_str":"1503459929486770185","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","url":"https:\/\/t.co\/cXEOuUc155","display_url":"pic.twitter.com\/cXEOuUc155","expanded_url":"https:\/\/twitter.com\/RSBNetwork\/status\/1503459934909968385\/photo\/1","type":"photo","sizes":{"small":{"w":438,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":774,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1815,"resize":"fit"}},"source_status_id":1503459934909968385,"source_status_id_str":"1503459934909968385","source_user_id":4041824789,"source_user_id_str":"4041824789"}]},"extended_entities":{"media":[{"id":1503459929486770185,"id_str":"1503459929486770185","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","url":"https:\/\/t.co\/cXEOuUc155","display_url":"pic.twitter.com\/cXEOuUc155","expanded_url":"https:\/\/twitter.com\/RSBNetwork\/status\/1503459934909968385\/photo\/1","type":"photo","sizes":{"small":{"w":438,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":774,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1815,"resize":"fit"}},"source_status_id":1503459934909968385,"source_status_id_str":"1503459934909968385","source_user_id":4041824789,"source_user_id_str":"4041824789"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 14 19:55:56 +0000 2022","id":1503459934909968385,"id_str":"1503459934909968385","text":"Statement - by Donald J. Trump, 45th President of the United States of America https:\/\/t.co\/cXEOuUc155","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1503459929486770185,"id_str":"1503459929486770185","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","url":"https:\/\/t.co\/cXEOuUc155","display_url":"pic.twitter.com\/cXEOuUc155","expanded_url":"https:\/\/twitter.com\/RSBNetwork\/status\/1503459934909968385\/photo\/1","type":"photo","sizes":{"small":{"w":438,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":774,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1815,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503459929486770185,"id_str":"1503459929486770185","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN1c1xcXwAkPMcT.jpg","url":"https:\/\/t.co\/cXEOuUc155","display_url":"pic.twitter.com\/cXEOuUc155","expanded_url":"https:\/\/twitter.com\/RSBNetwork\/status\/1503459934909968385\/photo\/1","type":"photo","sizes":{"small":{"w":438,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":774,"h":1200,"resize":"fit"},"large":{"w":1170,"h":1815,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2512,"favorite_count":8170,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2512,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041361740410355712\/owWELibj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041361740410355712\/owWELibj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2420057312,"id_str":"2420057312","name":"Linda","screen_name":"FancyLinda76","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":305,"listed_count":0,"created_at":"Mon - Mar 31 05:43:05 +0000 2014","favourites_count":775,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Thu - Mar 26 01:25:07 +0000 2015","id":580903273894297601,"id_str":"580903273894297601","text":"@noelitaux - @FancyLinda76 yes I am! Will be in So Cal this Friday where you at text me - 5057104782","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FancyLinda76","name":"Linda","id":2420057312,"id_str":"2420057312","indices":[11,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":580902844628213760,"in_reply_to_status_id_str":"580902844628213760","in_reply_to_user_id":212447118,"in_reply_to_user_id_str":"212447118","in_reply_to_screen_name":"meximof","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450510097207144450\/Q0wWmK0V_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450510097207144450\/Q0wWmK0V_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292746658229432320,"id_str":"1292746658229432320","name":"Oppressed - Nigerian","screen_name":"gman29244126","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":894,"listed_count":0,"created_at":"Mon - Aug 10 08:57:08 +0000 2020","favourites_count":8010,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1760,"lang":null,"status":{"created_at":"Mon - Jul 19 16:49:39 +0000 2021","id":1417164745300488205,"id_str":"1417164745300488205","text":"RT - @YeleSowore: Nigerians are tired of tyranny, oppression and corruption of - the @mbuhari regime! #August5th join massively, join globally!\u2026","truncated":false,"entities":{"hashtags":[{"text":"August5th","indices":[98,108]}],"symbols":[],"user_mentions":[{"screen_name":"YeleSowore","name":"Omoyele - Sowore","id":1051795722,"id_str":"1051795722","indices":[3,14]},{"screen_name":"MBuhari","name":"Muhammadu - Buhari","id":2936714848,"id_str":"2936714848","indices":[81,89]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 19 06:47:19 +0000 2021","id":1417013161375543297,"id_str":"1417013161375543297","text":"Nigerians - are tired of tyranny, oppression and corruption of the @mbuhari regime! #August5th - join massively, join g\u2026 https:\/\/t.co\/InhnZGzxcG","truncated":true,"entities":{"hashtags":[{"text":"August5th","indices":[82,92]}],"symbols":[],"user_mentions":[{"screen_name":"MBuhari","name":"Muhammadu - Buhari","id":2936714848,"id_str":"2936714848","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/InhnZGzxcG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1417013161375543297","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":498,"favorite_count":508,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":498,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344342205419368448\/nX4SZRUj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344342205419368448\/nX4SZRUj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":436916606,"id_str":"436916606","name":"Onwuemene - kenneth","screen_name":"Kenovski","location":"Abuja","description":"Scala - developer, aspiring trucks owner","url":"https:\/\/t.co\/aJLu2e92Hh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aJLu2e92Hh","expanded_url":"http:\/\/www.autosparesconnect.com","display_url":"autosparesconnect.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":202,"listed_count":0,"created_at":"Wed - Dec 14 18:51:44 +0000 2011","favourites_count":393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Fri - May 14 20:26:01 +0000 2021","id":1393301596977643521,"id_str":"1393301596977643521","text":"@pastorpoju - Pastor, please how do I access your messages online or offline.\nThanks.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pastorpoju","name":"POJU - OYEMADE","id":27829672,"id_str":"27829672","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1393131809383362562,"in_reply_to_status_id_str":"1393131809383362562","in_reply_to_user_id":27829672,"in_reply_to_user_id_str":"27829672","in_reply_to_screen_name":"pastorpoju","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307462327550304258,"id_str":"1307462327550304258","name":"Dude","screen_name":"usa_2020_1234","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":447,"listed_count":0,"created_at":"Sat - Sep 19 23:31:45 +0000 2020","favourites_count":6656,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"status":{"created_at":"Wed - Mar 23 11:53:46 +0000 2022","id":1506600085865574407,"id_str":"1506600085865574407","text":"@SenSanders - Send people welfare money and let them take it and do no work......time for - you to retire man...socialism is dying here","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenSanders","name":"Bernie - Sanders","id":29442313,"id_str":"29442313","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506338666473529344,"in_reply_to_status_id_str":"1506338666473529344","in_reply_to_user_id":29442313,"in_reply_to_user_id_str":"29442313","in_reply_to_screen_name":"SenSanders","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313293963059752961\/bvN7NxWR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313293963059752961\/bvN7NxWR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1047617311006502912,"id_str":"1047617311006502912","name":"Kelli - King66","screen_name":"kelli_king66","location":"Ohio","description":"Just - a political junkie. I\u2019m a grandma to an amazing Granddaughter\ud83d\ude0d - I am a Marine Mom..try me...I''m allergic to any Maga bullshit! MMA fan. No - DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2965,"friends_count":5001,"listed_count":5,"created_at":"Wed - Oct 03 22:40:05 +0000 2018","favourites_count":119017,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56609,"lang":null,"status":{"created_at":"Sat - Mar 26 10:33:36 +0000 2022","id":1507667074419728389,"id_str":"1507667074419728389","text":"RT - @LatestAnonPress: BREAKING NEWS: Anonymous publishes leak of the Central Bank - of the Russian Federation\n\nVia: @Thblckrbbtworld https:\/\/t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LatestAnonPress","name":"Anonymous","id":939486738543796224,"id_str":"939486738543796224","indices":[3,19]},{"screen_name":"Thblckrbbtworld","name":"The - Black Rabbit World","id":1472286672444403712,"id_str":"1472286672444403712","indices":[113,129]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 21:59:37 +0000 2022","id":1507477329689387008,"id_str":"1507477329689387008","text":"BREAKING - NEWS: Anonymous publishes leak of the Central Bank of the Russian Federation\n\nVia: - @Thblckrbbtworld https:\/\/t.co\/tYyU3GOFqy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Thblckrbbtworld","name":"The - Black Rabbit World","id":1472286672444403712,"id_str":"1472286672444403712","indices":[92,108]}],"urls":[],"media":[{"id":1507474174599733251,"id_str":"1507474174599733251","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507474174599733251\/pu\/img\/24O6TEzImXIlabo9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507474174599733251\/pu\/img\/24O6TEzImXIlabo9.jpg","url":"https:\/\/t.co\/tYyU3GOFqy","display_url":"pic.twitter.com\/tYyU3GOFqy","expanded_url":"https:\/\/twitter.com\/LatestAnonPress\/status\/1507477329689387008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507474174599733251,"id_str":"1507474174599733251","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507474174599733251\/pu\/img\/24O6TEzImXIlabo9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507474174599733251\/pu\/img\/24O6TEzImXIlabo9.jpg","url":"https:\/\/t.co\/tYyU3GOFqy","display_url":"pic.twitter.com\/tYyU3GOFqy","expanded_url":"https:\/\/twitter.com\/LatestAnonPress\/status\/1507477329689387008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":134167,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507474174599733251\/pu\/vid\/640x360\/FS8qIwy4CXHnL4WW.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507474174599733251\/pu\/pl\/GxbW_fZsWILL5UBm.m3u8?tag=12"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507474174599733251\/pu\/vid\/480x270\/zHKCdJOxFM4d30BY.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3833,"favorite_count":14076,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3833,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410717712905555974\/R8QPSxz8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410717712905555974\/R8QPSxz8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1047617311006502912\/1607954633","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1221742372880633856,"id_str":"1221742372880633856","name":"Jenie - Trinidad","screen_name":"TrinidadJenie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":83,"listed_count":0,"created_at":"Mon - Jan 27 10:31:09 +0000 2020","favourites_count":317,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221742785910530050\/tTPEWzRE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221742785910530050\/tTPEWzRE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26070628,"id_str":"26070628","name":"Kaitlin - Handler","screen_name":"hellokait","location":"New York","description":"a - lover and a fighter.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":2728,"listed_count":2,"created_at":"Mon - Mar 23 19:30:53 +0000 2009","favourites_count":32159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":742,"lang":null,"status":{"created_at":"Tue - Mar 22 09:09:41 +0000 2022","id":1506196403898437632,"id_str":"1506196403898437632","text":"@PepinLachance - @HellKatMaggie @jbqueru @fatnutritionist I bring it up in nearly every casual - conversation I have, a\u2026 https:\/\/t.co\/PPf3WOaTL4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PepinLachance","name":"Diesel - Bug (life finds a way)","id":3295594702,"id_str":"3295594702","indices":[0,14]},{"screen_name":"HellKatMaggie","name":"Capitalism - Is Rotting Your Brain","id":2488845146,"id_str":"2488845146","indices":[15,29]},{"screen_name":"jbqueru","name":"Jean-Baptiste - Queru","id":40904148,"id_str":"40904148","indices":[30,38]},{"screen_name":"fatnutritionist","name":"Michelle - Allison","id":32303435,"id_str":"32303435","indices":[39,55]}],"urls":[{"url":"https:\/\/t.co\/PPf3WOaTL4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506196403898437632","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506089742705774608,"in_reply_to_status_id_str":"1506089742705774608","in_reply_to_user_id":3295594702,"in_reply_to_user_id_str":"3295594702","in_reply_to_screen_name":"PepinLachance","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491987076154277888\/u2tubnPH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491987076154277888\/u2tubnPH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26070628\/1472648955","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1196931277993267201,"id_str":"1196931277993267201","name":"Showellbros - Publishing","screen_name":"Showellbros1","location":"United States","description":"Community - Cooperation $1x44,000,000x365=$1,606,000,000 #BlackCommunity Economic Development, - Technical Advancement, Industrialization & Digital Monetization \ud83d\udcb5","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":161,"friends_count":2080,"listed_count":1,"created_at":"Tue - Nov 19 23:20:41 +0000 2019","favourites_count":2462,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1234,"lang":null,"status":{"created_at":"Tue - Dec 01 01:48:12 +0000 2020","id":1333588677478518785,"id_str":"1333588677478518785","text":"Gotta - be honest with yourself \u270c\ud83c\udfff https:\/\/t.co\/dsAnWADvrD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dsAnWADvrD","expanded_url":"https:\/\/twitter.com\/ayay_ron69\/status\/1333582714264580099","display_url":"twitter.com\/ayay_ron69\/sta\u2026","indices":[33,56]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231302516551364613\/_s1NxVYs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231302516551364613\/_s1NxVYs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1196931277993267201\/1579222247","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1589179214,"id_str":"1589179214","name":"imran - Pasha","screen_name":"imranpasha1970","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":3181,"listed_count":0,"created_at":"Fri - Jul 12 19:01:21 +0000 2013","favourites_count":1268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":907210512747950080,"id_str":"907210512747950080","name":"Marsela - braho","screen_name":"MarselaBraho","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":533,"listed_count":0,"created_at":"Mon - Sep 11 11:53:36 +0000 2017","favourites_count":3701,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1132363612754980869,"id_str":"1132363612754980869","name":"Katie - O''Hara","screen_name":"KatieOH36462055","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":696,"listed_count":3,"created_at":"Sat - May 25 19:11:38 +0000 2019","favourites_count":3644,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - Nov 15 15:08:45 +0000 2021","id":1460263508126412805,"id_str":"1460263508126412805","text":"RT - @TheBridge1859: It''s that time again... #MatchDaySorted for Ireland VS Argentina - this Sunday!\n2 Tickets to the game\n4 Pints of @Heineken\u2026","truncated":false,"entities":{"hashtags":[{"text":"MatchDaySorted","indices":[43,58]}],"symbols":[],"user_mentions":[{"screen_name":"TheBridge1859","name":"The - Bridge 1859","id":2696081424,"id_str":"2696081424","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 15 12:55:42 +0000 2021","id":1460230023672119303,"id_str":"1460230023672119303","text":"It''s - that time again... #MatchDaySorted for Ireland VS Argentina this Sunday!\n2 - Tickets to the game\n4 Pints of\u2026 https:\/\/t.co\/I7DWEA8njD","truncated":true,"entities":{"hashtags":[{"text":"MatchDaySorted","indices":[24,39]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I7DWEA8njD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1460230023672119303","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1218,"favorite_count":579,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1218,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1132367425155096576\/x47fVqfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1132367425155096576\/x47fVqfR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":81341439,"id_str":"81341439","name":"deborah - conley","screen_name":"dwinsor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":242,"listed_count":0,"created_at":"Sat - Oct 10 12:11:55 +0000 2009","favourites_count":72,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Sat - Nov 14 12:43:44 +0000 2020","id":1327593053570396161,"id_str":"1327593053570396161","text":"@GovMikeHuckabee - Then again software engineers have brains, so if anything it\u2019s surprising - it\u2019s not 100%","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GovMikeHuckabee","name":"Gov. - Mike Huckabee","id":15416505,"id_str":"15416505","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1327316768491180033,"in_reply_to_status_id_str":"1327316768491180033","in_reply_to_user_id":15416505,"in_reply_to_user_id_str":"15416505","in_reply_to_screen_name":"GovMikeHuckabee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":590894405,"id_str":"590894405","name":"Suleiman - Zailani","screen_name":"SZailaniIsah","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":130,"listed_count":0,"created_at":"Sat - May 26 12:57:05 +0000 2012","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Mon - May 03 17:12:17 +0000 2021","id":1389266573924372481,"id_str":"1389266573924372481","text":"@SaharaReporters - @MaziNnamdiKanu Fear of ESN\/IPOB is now the beginning of wisdom in the Southeast!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaharaReporters","name":"Sahara - Reporters","id":17409452,"id_str":"17409452","indices":[0,16]},{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[17,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1389087255038398464,"in_reply_to_status_id_str":"1389087255038398464","in_reply_to_user_id":17409452,"in_reply_to_user_id_str":"17409452","in_reply_to_screen_name":"SaharaReporters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1608229885,"id_str":"1608229885","name":"Suzanne - Heath","screen_name":"SuzanneHeath17","location":"South Carolina, USA","description":"USA - Swimming, NCAA and NCHSAA, SCHSL official","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":191,"listed_count":0,"created_at":"Sat - Jul 20 13:01:29 +0000 2013","favourites_count":15191,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":157,"lang":null,"status":{"created_at":"Sun - Mar 06 15:16:39 +0000 2022","id":1500490548519616513,"id_str":"1500490548519616513","text":"I - just voted for Oscar Tshiebwe for the @Wendys #WoodenAward. Cast your vote - here! https:\/\/t.co\/sUbRdDc7T4","truncated":false,"entities":{"hashtags":[{"text":"WoodenAward","indices":[48,60]}],"symbols":[],"user_mentions":[{"screen_name":"Wendys","name":"Wendy\u2019s","id":59553554,"id_str":"59553554","indices":[40,47]}],"urls":[{"url":"https:\/\/t.co\/sUbRdDc7T4","expanded_url":"https:\/\/www.wendys.com\/oscar-tshiebwe","display_url":"wendys.com\/oscar-tshiebwe","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000160832265\/05b3d8cb6606bab6933e152e6618595c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000160832265\/05b3d8cb6606bab6933e152e6618595c_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":393048881,"id_str":"393048881","name":"Werner - Andersen","screen_name":"WernerAndersen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":587,"listed_count":2,"created_at":"Mon - Oct 17 23:18:32 +0000 2011","favourites_count":635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":746,"lang":null,"status":{"created_at":"Thu - Mar 24 18:37:30 +0000 2022","id":1507064077188751363,"id_str":"1507064077188751363","text":"Same - here. N95. https:\/\/t.co\/W9mMU1oy9W","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W9mMU1oy9W","expanded_url":"https:\/\/twitter.com\/PascualEugenia\/status\/1507061876080857118","display_url":"twitter.com\/PascualEugenia\u2026","indices":[16,39]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507061876080857118,"quoted_status_id_str":"1507061876080857118","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1132427052215353345\/VHXWMYub_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1132427052215353345\/VHXWMYub_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128073351136718849,"id_str":"1128073351136718849","name":"Osuolale - Folorunso-Olumofin","screen_name":"OsuolaleOlumof1","location":"","description":"a - liberal conservative Christian that wants the best for everyone","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":305,"listed_count":0,"created_at":"Mon - May 13 23:03:40 +0000 2019","favourites_count":9829,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":163,"lang":null,"status":{"created_at":"Mon - Feb 15 13:36:13 +0000 2021","id":1361308334981345285,"id_str":"1361308334981345285","text":"@ProfOsinbajo - Thank you Sir. You are a man of peace. Unlike that piece of garbage from Bauchi - state saying Fulani h\u2026 https:\/\/t.co\/LRxcslnhKj","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProfOsinbajo","name":"Prof - Yemi Osinbajo","id":2914442873,"id_str":"2914442873","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/LRxcslnhKj","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1361308334981345285","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1361293240834658304,"in_reply_to_status_id_str":"1361293240834658304","in_reply_to_user_id":2914442873,"in_reply_to_user_id_str":"2914442873","in_reply_to_screen_name":"ProfOsinbajo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159067971039440896\/6oawl1cb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159067971039440896\/6oawl1cb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4269973535,"id_str":"4269973535","name":"\ud835\udc14\ud835\udc1f\ud835\udc1a\ud835\udc22\ud835\udc2b - \ud835\udc0f\ud835\udc2e\ud835\udc2b\ud835\udc1d\ud835\udc22\ud835\udc25 \u2625","screen_name":"nanaxero_","location":"\ud835\udc77\ud835\udc82\ud835\udc95\ud835\udc8a\ud835\udc8f\ud835\udc82 - \ud835\udc75\ud835\udc8a\ud835\udc8e\ud835\udc83\ud835\udc96\ud835\udc94","description":"\ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc82\ud835\udc91\ud835\udc89\ud835\udc8a\ud835\udc84\ud835\udc82\ud835\udc8d\ud835\udc8d\ud835\udc9a - \ud835\udc93\ud835\udc86\ud835\udc94\ud835\udc86\ud835\udc93\ud835\udc97\ud835\udc86\ud835\udc85","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":727,"listed_count":1,"created_at":"Wed - Nov 25 02:47:37 +0000 2015","favourites_count":2888,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":77,"lang":null,"status":{"created_at":"Sat - Dec 25 06:20:18 +0000 2021","id":1474626034414796800,"id_str":"1474626034414796800","text":"RT - @mysticalmalone: The law of equivalent advantage states that, anything that - has the ability to bring you down has an equivalent ability\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mysticalmalone","name":"mystical\ud83c\uddec\ud83c\udded\ud83c\uddec\ud83c\udde7\ud83c\uddfa\ud83c\uddf8\ud83c\udde9\ud83c\uddea","id":1291856134719115265,"id_str":"1291856134719115265","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 24 16:45:17 +0000 2021","id":1474420930210324487,"id_str":"1474420930210324487","text":"The - law of equivalent advantage states that, anything that has the ability to - bring you down has an equivalent ability to bring you up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398948578995884034\/mubacaYM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398948578995884034\/mubacaYM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4269973535\/1633860499","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47496922,"id_str":"47496922","name":"nycnyc","screen_name":"lsaan2588","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":927,"listed_count":0,"created_at":"Tue - Jun 16 00:54:51 +0000 2009","favourites_count":2983,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Sat - Mar 05 18:25:10 +0000 2022","id":1500175601973481478,"id_str":"1500175601973481478","text":"@MeidasTouch - another selfish C! https:\/\/t.co\/ySOjGf6zOF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[0,12]}],"urls":[],"media":[{"id":1500175597221429249,"id_str":"1500175597221429249","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGxweUXwAEsJcx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGxweUXwAEsJcx.jpg","url":"https:\/\/t.co\/ySOjGf6zOF","display_url":"pic.twitter.com\/ySOjGf6zOF","expanded_url":"https:\/\/twitter.com\/lsaan2588\/status\/1500175601973481478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500175597221429249,"id_str":"1500175597221429249","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FNGxweUXwAEsJcx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNGxweUXwAEsJcx.jpg","url":"https:\/\/t.co\/ySOjGf6zOF","display_url":"pic.twitter.com\/ySOjGf6zOF","expanded_url":"https:\/\/twitter.com\/lsaan2588\/status\/1500175601973481478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":946,"h":2048,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500140589437751296,"in_reply_to_status_id_str":"1500140589437751296","in_reply_to_user_id":1243560408025198593,"in_reply_to_user_id_str":"1243560408025198593","in_reply_to_screen_name":"MeidasTouch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":987330792840941573,"id_str":"987330792840941573","name":"JAY - THE ERNESTO","screen_name":"muhammadjuma301","location":"Nairobi, Kenya","description":"Simple - Kamba guy","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":78,"friends_count":702,"listed_count":0,"created_at":"Fri - Apr 20 14:02:59 +0000 2018","favourites_count":1529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":752,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350035596127981570\/BfsCMALA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350035596127981570\/BfsCMALA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/987330792840941573\/1525314756","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1105482497012449280,"id_str":"1105482497012449280","name":"Irishguy","screen_name":"Irishgu87874097","location":"Ireland","description":"On - my fifth decade. Software engineer. I''m interested in the recent explosion - of the Dunning-Krugger effect. Nowhere is that more clear than on here. Irascible.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":668,"listed_count":0,"created_at":"Tue - Mar 12 14:55:40 +0000 2019","favourites_count":27136,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16068,"lang":null,"status":{"created_at":"Sat - Oct 09 17:39:23 +0000 2021","id":1446893065910824960,"id_str":"1446893065910824960","text":"RT - @BoneyardDem: Oh my\u2026.help, I can\u2019t find the words","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BoneyardDem","name":"\u15f7oneyardDEM - Voting matters","id":993953903849885696,"id_str":"993953903849885696","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 09 17:34:03 +0000 2021","id":1446891722940633089,"id_str":"1446891722940633089","text":"Oh - my\u2026.help, I can\u2019t find the words https:\/\/t.co\/hQjU4jZ1Tu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hQjU4jZ1Tu","expanded_url":"https:\/\/twitter.com\/AccountableGOP\/status\/1446873271639674895","display_url":"twitter.com\/AccountableGOP\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1446873271639674895,"quoted_status_id_str":"1446873271639674895","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1446873271639674895,"quoted_status_id_str":"1446873271639674895","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1395504028579155968\/FU4q76Jo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1395504028579155968\/FU4q76Jo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105482497012449280\/1630408537","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":760791714,"id_str":"760791714","name":"Said - D. Sheikh(don) #staysafe#","screen_name":"shiikhdoon1","location":"","description":"passionate - about peace, security, and \ndevelopments. always \u201cBE + (POSITIVE)\u201d","url":"https:\/\/t.co\/V9MqKL1uSb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/V9MqKL1uSb","expanded_url":"https:\/\/youtube.com\/channel\/UCuWCBS0a4pfkTRev8DHFtmw","display_url":"youtube.com\/channel\/UCuWCB\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":4998,"listed_count":6,"created_at":"Thu - Aug 16 04:17:50 +0000 2012","favourites_count":23394,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6103,"lang":null,"status":{"created_at":"Wed - Mar 23 21:58:32 +0000 2022","id":1506752282402164736,"id_str":"1506752282402164736","text":"one - person followed me and one person unfollowed me \/\/ automatically checked - by https:\/\/t.co\/VDqpVE4oMM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VDqpVE4oMM","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[80,103]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1438188927870017544\/lKtJ1V8K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1438188927870017544\/lKtJ1V8K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760791714\/1578938128","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1075538971013406722,"id_str":"1075538971013406722","name":"Jessica","screen_name":"JustJessKS","location":"Kansas - City, MO","description":"Amateur foodie. Professional bookworm.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":429,"listed_count":0,"created_at":"Wed - Dec 19 23:50:48 +0000 2018","favourites_count":25894,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1075542468576215040\/4EaBgxiV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075542468576215040\/4EaBgxiV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158338622132649985,"id_str":"1158338622132649985","name":"p","screen_name":"hourlypeach","location":"Indonesia","description":"live - a life without regrets-Jaehyun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":484,"listed_count":0,"created_at":"Mon - Aug 05 11:27:03 +0000 2019","favourites_count":28781,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24533,"lang":null,"status":{"created_at":"Sun - Feb 13 16:02:06 +0000 2022","id":1492891840441647105,"id_str":"1492891840441647105","text":"RT - @jaehyunfluffyy: Happy birthday to the man who lights up my world\ud83c\udf88 - Thank you for being the best part of my happiness and joy & for alway\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jaehyunfluffyy","name":"nayyo\ud83c\udf37","id":1268930468709359616,"id_str":"1268930468709359616","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 13 15:00:00 +0000 2022","id":1492876216118005765,"id_str":"1492876216118005765","text":"Happy - birthday to the man who lights up my world\ud83c\udf88 Thank you for being - the best part of my happiness and joy & for a\u2026 https:\/\/t.co\/wB3DDRgcCw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wB3DDRgcCw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492876216118005765","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435957748487770117\/BKdFV6iV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435957748487770117\/BKdFV6iV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158338622132649985\/1630338183","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1146497663027875840,"id_str":"1146497663027875840","name":"Good - Ova Evil","screen_name":"evil_ova","location":"Takoradi and Tema","description":"Alhamdulilahi - Rabil Alameen \ud83d\ude4f\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2105,"friends_count":5007,"listed_count":1,"created_at":"Wed - Jul 03 19:15:18 +0000 2019","favourites_count":486607,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1826,"lang":null,"status":{"created_at":"Mon - Mar 21 14:59:15 +0000 2022","id":1505921988895940618,"id_str":"1505921988895940618","text":"RT - @JMComps1224: Pedri Gonzalez vs Real Madrid https:\/\/t.co\/nmmb3sPGMF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JMComps1224","name":"JM - Comps","id":1446265856682512387,"id_str":"1446265856682512387","indices":[3,15]}],"urls":[],"media":[{"id":1505781247364186113,"id_str":"1505781247364186113","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","url":"https:\/\/t.co\/nmmb3sPGMF","display_url":"pic.twitter.com\/nmmb3sPGMF","expanded_url":"https:\/\/twitter.com\/jmvids1224\/status\/1505781361688383491\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1505781361688383491,"source_status_id_str":"1505781361688383491","source_user_id":1505779684893679620,"source_user_id_str":"1505779684893679620"}]},"extended_entities":{"media":[{"id":1505781247364186113,"id_str":"1505781247364186113","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","url":"https:\/\/t.co\/nmmb3sPGMF","display_url":"pic.twitter.com\/nmmb3sPGMF","expanded_url":"https:\/\/twitter.com\/jmvids1224\/status\/1505781361688383491\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1505781361688383491,"source_status_id_str":"1505781361688383491","source_user_id":1505779684893679620,"source_user_id_str":"1505779684893679620","video_info":{"aspect_ratio":[16,9],"duration_millis":140000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/480x270\/KCyGlHCDM5BEU-t8.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/640x360\/8pAyiqlPoN_5V-b_.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/1280x720\/T1mwlzQgYqJMUxj9.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/pl\/wPkXgdpgFdbfMIQ_.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 05:53:20 +0000 2022","id":1505784604699021315,"id_str":"1505784604699021315","text":"Pedri - Gonzalez vs Real Madrid https:\/\/t.co\/nmmb3sPGMF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1505781247364186113,"id_str":"1505781247364186113","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","url":"https:\/\/t.co\/nmmb3sPGMF","display_url":"pic.twitter.com\/nmmb3sPGMF","expanded_url":"https:\/\/twitter.com\/jmvids1224\/status\/1505781361688383491\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1505781361688383491,"source_status_id_str":"1505781361688383491","source_user_id":1505779684893679620,"source_user_id_str":"1505779684893679620"}]},"extended_entities":{"media":[{"id":1505781247364186113,"id_str":"1505781247364186113","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1505781247364186113\/pu\/img\/6Sac65dhkeIVsOF0.jpg","url":"https:\/\/t.co\/nmmb3sPGMF","display_url":"pic.twitter.com\/nmmb3sPGMF","expanded_url":"https:\/\/twitter.com\/jmvids1224\/status\/1505781361688383491\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1505781361688383491,"source_status_id_str":"1505781361688383491","source_user_id":1505779684893679620,"source_user_id_str":"1505779684893679620","video_info":{"aspect_ratio":[16,9],"duration_millis":140000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/480x270\/KCyGlHCDM5BEU-t8.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/640x360\/8pAyiqlPoN_5V-b_.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/vid\/1280x720\/T1mwlzQgYqJMUxj9.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1505781247364186113\/pu\/pl\/wPkXgdpgFdbfMIQ_.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2873,"favorite_count":18014,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":2873,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275930093056114688\/bR0FYX3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275930093056114688\/bR0FYX3-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1146497663027875840\/1562562687","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1079453321323253767,"id_str":"1079453321323253767","name":"Eggman","screen_name":"Eggman99082716","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":454,"listed_count":0,"created_at":"Sun - Dec 30 19:05:01 +0000 2018","favourites_count":6073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1921,"lang":null,"status":{"created_at":"Sat - Mar 26 10:40:01 +0000 2022","id":1507668690971639809,"id_str":"1507668690971639809","text":"@lofcr1 - The last resort \ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lofcr1","name":"Legends - Of Classic Rock","id":879568426011897858,"id_str":"879568426011897858","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507445733020082177,"in_reply_to_status_id_str":"1507445733020082177","in_reply_to_user_id":879568426011897858,"in_reply_to_user_id_str":"879568426011897858","in_reply_to_screen_name":"lofcr1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237343864861712384,"id_str":"1237343864861712384","name":"polly","screen_name":"polly02971339","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":1503,"listed_count":0,"created_at":"Tue - Mar 10 11:45:54 +0000 2020","favourites_count":252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123,"lang":null,"status":{"created_at":"Wed - Feb 09 20:58:56 +0000 2022","id":1491516990296662022,"id_str":"1491516990296662022","text":"RT - @NafeezAhmed: BREAKING: Govt advisor accuses officials of potential ''corporate - manslaughter'' over failure to provide respiratory protect\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NafeezAhmed","name":"Dr - Nafeez Ahmed FRSA","id":110692399,"id_str":"110692399","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 09 12:15:04 +0000 2022","id":1491385156795760643,"id_str":"1491385156795760643","text":"BREAKING: - Govt advisor accuses officials of potential ''corporate manslaughter'' over - failure to provide respiratory\u2026 https:\/\/t.co\/pJpxgdG9Ac","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pJpxgdG9Ac","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1491385156795760643","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1103,"favorite_count":2028,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1103,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24593312,"id_str":"24593312","name":"SA - Whitfield","screen_name":"whitf5888","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":458,"listed_count":2,"created_at":"Sun - Mar 15 21:53:28 +0000 2009","favourites_count":509,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Wed - Feb 23 00:49:50 +0000 2022","id":1496286139807850498,"id_str":"1496286139807850498","text":"RT - @RpsAgainstTrump: Liz Cheney: \u201cFormer President Trump\u2019s adulation - of Putin today - including calling him a \u201cgenius\u201d - aids our enemies.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RpsAgainstTrump","name":"Republicans - against Trumpism","id":1221462414744596483,"id_str":"1221462414744596483","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 23 00:39:02 +0000 2022","id":1496283422960066573,"id_str":"1496283422960066573","text":"Liz - Cheney: \u201cFormer President Trump\u2019s adulation of Putin today - including - calling him a \u201cgenius\u201d - aids our enemie\u2026 https:\/\/t.co\/kBmtC9lU04","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kBmtC9lU04","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496283422960066573","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2557,"favorite_count":8706,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2557,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1855470148\/122089839868181781_cxmH7dWd_t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1855470148\/122089839868181781_cxmH7dWd_t_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":551952884,"id_str":"551952884","name":"Connie - Brown","screen_name":"Brown6464Brown","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":78,"listed_count":0,"created_at":"Thu - Apr 12 15:41:42 +0000 2012","favourites_count":500,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Mon - Oct 11 10:39:55 +0000 2021","id":1447512279117877255,"id_str":"1447512279117877255","text":"RT - @CalltoActivism: BREAKING \u2014 Adam Schiff JUST NOW: \nWe will URGE the - Justice Department to CRIMINALLY PROSECUTE ANYONE who defies subpoen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalltoActivism","name":"CALL - TO ACTIVISM","id":819994707061248001,"id_str":"819994707061248001","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Oct 10 18:51:22 +0000 2021","id":1447273567658389506,"id_str":"1447273567658389506","text":"BREAKING - \u2014 Adam Schiff JUST NOW: \nWe will URGE the Justice Department to CRIMINALLY - PROSECUTE ANYONE who defies sub\u2026 https:\/\/t.co\/jQAVnMZzVL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jQAVnMZzVL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1447273567658389506","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5257,"favorite_count":9900,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5257,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2930406423,"id_str":"2930406423","name":"A.D","screen_name":"AD151025","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":88,"friends_count":783,"listed_count":0,"created_at":"Thu - Dec 18 18:55:02 +0000 2014","favourites_count":3960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":541,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1073902238043648000\/tUYF90gs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1073902238043648000\/tUYF90gs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2930406423\/1591098754","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":134845460,"id_str":"134845460","name":"Robert - A. Salvatelli","screen_name":"rsalvat","location":"Leominster, MA","description":"Former - School Principal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":297,"listed_count":1,"created_at":"Mon - Apr 19 16:21:48 +0000 2010","favourites_count":486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":255,"lang":null,"status":{"created_at":"Wed - Mar 23 20:14:12 +0000 2022","id":1506726026440810499,"id_str":"1506726026440810499","text":"@nathaliejacoby1 - Nuts","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506699909692629015,"in_reply_to_status_id_str":"1506699909692629015","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188859518517727233\/Pdncgej1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188859518517727233\/Pdncgej1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14960207,"id_str":"14960207","name":"joobeebloo","screen_name":"joobeebloo","location":"Whitestone, - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":144,"friends_count":961,"listed_count":0,"created_at":"Sat - May 31 03:02:23 +0000 2008","favourites_count":38344,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3956,"lang":null,"status":{"created_at":"Fri - Mar 25 10:50:01 +0000 2022","id":1507308818413375488,"id_str":"1507308818413375488","text":"RT - @OccupyDemocrats: BREAKING: Iconic Watergate lawyer John Dean demands that - federal prosecutors from the Southern District of New York ta\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 13:22:46 +0000 2022","id":1506984873394851855,"id_str":"1506984873394851855","text":"BREAKING: - Iconic Watergate lawyer John Dean demands that federal prosecutors from the - Southern District of New York\u2026 https:\/\/t.co\/QQBdIQyja9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QQBdIQyja9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506984873394851855","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12519,"favorite_count":30751,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12519,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234616778539618312\/-4-wGRsA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234616778539618312\/-4-wGRsA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":909654085078360065,"id_str":"909654085078360065","name":"Dr - Harshad Sharma","screen_name":"DrMehtaOfficial","location":"Amer Jaipur Rajasthan - (303701)","description":"State Executive Member @ IMA \n\nBRAND AMBASSADOR - AT AIIMS DELHI(\ud83e\udd47 medalist) & DNA\n\n\u2695\ufe0fMBBS \u27a1\ufe0fSNMC\ud83c\udf93","url":"https:\/\/t.co\/3STFRLuiIF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3STFRLuiIF","expanded_url":"http:\/\/www.drmehtaofficial.com","display_url":"drmehtaofficial.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":910,"friends_count":292,"listed_count":0,"created_at":"Mon - Sep 18 05:43:29 +0000 2017","favourites_count":17049,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1344,"lang":null,"status":{"created_at":"Mon - Mar 21 20:42:04 +0000 2022","id":1506008263116083200,"id_str":"1506008263116083200","text":"one - person followed me and one person unfollowed me \/\/ automatically checked - by https:\/\/t.co\/UkAF8ZImfF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UkAF8ZImfF","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[80,103]}]},"source":"\u003ca - href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480573637467918336\/A2Z4PrV4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480573637467918336\/A2Z4PrV4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/909654085078360065\/1645964082","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270461173612281857,"id_str":"1270461173612281857","name":"teresa - adams","screen_name":"TeresaofMadison","location":"Middleton, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":157,"listed_count":0,"created_at":"Tue - Jun 09 21:02:52 +0000 2020","favourites_count":178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Thu - Mar 17 14:49:29 +0000 2022","id":1504469979843891210,"id_str":"1504469979843891210","text":"@JasonSCampbell - Candace was not a thing until 1989. What\u2019s her point?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JasonSCampbell","name":"Jason - Campbell","id":325716763,"id_str":"325716763","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504098626007674888,"in_reply_to_status_id_str":"1504098626007674888","in_reply_to_user_id":325716763,"in_reply_to_user_id_str":"325716763","in_reply_to_screen_name":"JasonSCampbell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2895283575,"id_str":"2895283575","name":"Marianne - Brond","screen_name":"mebrond","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":214,"listed_count":0,"created_at":"Thu - Nov 27 23:46:56 +0000 2014","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4428636803,"id_str":"4428636803","name":"Ellsear - Graves","screen_name":"lchuckrube","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":492,"listed_count":0,"created_at":"Wed - Dec 09 17:05:20 +0000 2015","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"status":{"created_at":"Tue - Nov 09 14:22:06 +0000 2021","id":1458077440388091906,"id_str":"1458077440388091906","text":"@Therapists_C - I rely on the clients metaphors","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Therapists_C","name":"#TherapistsConnect","id":1251798949356359681,"id_str":"1251798949356359681","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1458015917057748999,"in_reply_to_status_id_str":"1458015917057748999","in_reply_to_user_id":1251798949356359681,"in_reply_to_user_id_str":"1251798949356359681","in_reply_to_screen_name":"Therapists_C","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/674637228983885824\/uCk2D3_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/674637228983885824\/uCk2D3_y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1143933983694082048,"id_str":"1143933983694082048","name":"Kevinmil","screen_name":"Kevinmil5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":621,"listed_count":0,"created_at":"Wed - Jun 26 17:28:09 +0000 2019","favourites_count":1000,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":443,"lang":null,"status":{"created_at":"Fri - Mar 18 10:44:12 +0000 2022","id":1504770638069870594,"id_str":"1504770638069870594","text":"@DTWillingham - Thank you for the model you\u2019ve set of how to cheerfully parent a child - who required extra parental ca\u2026 https:\/\/t.co\/eknbVoOmzd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DTWillingham","name":"Daniel - Willingham","id":84619537,"id_str":"84619537","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/eknbVoOmzd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504770638069870594","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504738311843295232,"in_reply_to_status_id_str":"1504738311843295232","in_reply_to_user_id":84619537,"in_reply_to_user_id_str":"84619537","in_reply_to_screen_name":"DTWillingham","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335991232598847494\/hy6Fp0pM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335991232598847494\/hy6Fp0pM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2786152127,"id_str":"2786152127","name":"krista - stokes","screen_name":"kristadstokes","location":"Kennebunkport, ME","description":"Chock - full of unrealistic expectations.","url":"https:\/\/t.co\/C9ivYn2U4u","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C9ivYn2U4u","expanded_url":"http:\/\/kristastokes.com","display_url":"kristastokes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":255,"friends_count":3378,"listed_count":0,"created_at":"Fri - Sep 26 19:12:05 +0000 2014","favourites_count":12694,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1366,"lang":null,"status":{"created_at":"Sat - Dec 18 00:24:33 +0000 2021","id":1471999792935055362,"id_str":"1471999792935055362","text":"RT - @MichellCClark: sometimes self-love shows up as the willingness to release - people who have no interest in learning how to love you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MichellCClark","name":"let - my people glo \u2728","id":72118738,"id_str":"72118738","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 17 04:11:00 +0000 2021","id":1471694390879866880,"id_str":"1471694390879866880","text":"sometimes - self-love shows up as the willingness to release people who have no interest - in learning how to love you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4262,"favorite_count":15401,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4262,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515585502074785793\/JLRS8wbj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515585502074785793\/JLRS8wbj_normal.jpeg","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":802388982,"id_str":"802388982","name":"Lees46","screen_name":"Lisa1ford","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":440,"listed_count":0,"created_at":"Tue - Sep 04 13:12:36 +0000 2012","favourites_count":1351,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317056616823402496\/TQYsFoFQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317056616823402496\/TQYsFoFQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/802388982\/1602869534","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303802617353719808,"id_str":"1303802617353719808","name":"Pearl","screen_name":"Pearl46834419","location":"","description":"loving, - carring and hardworker person","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":206,"listed_count":2,"created_at":"Wed - Sep 09 21:09:24 +0000 2020","favourites_count":538,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Tue - Dec 08 03:15:53 +0000 2020","id":1336147458360037376,"id_str":"1336147458360037376","text":"@SE_Cebekhulu - @winnie_Malemela @Natasha_Thahane ute nalemali uhlupheka njengami bindza . - ncono nami ngiyezama\n\nout of my way devil","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SE_Cebekhulu","name":"PorryLand\ud83d\udc51","id":3425373879,"id_str":"3425373879","indices":[0,13]},{"screen_name":"winnie_Malemela","name":"Winnie","id":1074659208191193088,"id_str":"1074659208191193088","indices":[14,30]},{"screen_name":"Natasha_Thahane","name":"Natasha - Thahane","id":258207583,"id_str":"258207583","indices":[31,47]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1309474206703390721,"in_reply_to_status_id_str":"1309474206703390721","in_reply_to_user_id":3425373879,"in_reply_to_user_id_str":"3425373879","in_reply_to_screen_name":"SE_Cebekhulu","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1029734201770143744,"id_str":"1029734201770143744","name":"Bharath - simha reddy Katta","screen_name":"bharath___15","location":"Vododara, India","description":"@msdhoni - \ud83d\udcaa\u2764\ufe0f\nManiratnam \ud83d\ude4c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":310,"listed_count":4,"created_at":"Wed - Aug 15 14:19:00 +0000 2018","favourites_count":3223,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6446,"lang":null,"status":{"created_at":"Sat - Mar 26 08:42:34 +0000 2022","id":1507639133426139144,"id_str":"1507639133426139144","text":"RT - @Iam_Jathu: #BEAST \u00d7 Thuppakki ! \ud83d\udd25 https:\/\/t.co\/3KXro8wxGt","truncated":false,"entities":{"hashtags":[{"text":"BEAST","indices":[15,21]}],"symbols":[],"user_mentions":[{"screen_name":"Iam_Jathu","name":"J\u1d00\u1d1b\u029c\u1d1c - \u30c4","id":1107474447055745024,"id_str":"1107474447055745024","indices":[3,13]}],"urls":[],"media":[{"id":1507621493928513536,"id_str":"1507621493928513536","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","url":"https:\/\/t.co\/3KXro8wxGt","display_url":"pic.twitter.com\/3KXro8wxGt","expanded_url":"https:\/\/twitter.com\/Iam_Jathu\/status\/1507621526627094528\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2048,"h":1024,"resize":"fit"}},"source_status_id":1507621526627094528,"source_status_id_str":"1507621526627094528","source_user_id":1107474447055745024,"source_user_id_str":"1107474447055745024"}]},"extended_entities":{"media":[{"id":1507621493928513536,"id_str":"1507621493928513536","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","url":"https:\/\/t.co\/3KXro8wxGt","display_url":"pic.twitter.com\/3KXro8wxGt","expanded_url":"https:\/\/twitter.com\/Iam_Jathu\/status\/1507621526627094528\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2048,"h":1024,"resize":"fit"}},"source_status_id":1507621526627094528,"source_status_id_str":"1507621526627094528","source_user_id":1107474447055745024,"source_user_id_str":"1107474447055745024"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:32:36 +0000 2022","id":1507621526627094528,"id_str":"1507621526627094528","text":"#BEAST \u00d7 - Thuppakki ! \ud83d\udd25 https:\/\/t.co\/3KXro8wxGt","truncated":false,"entities":{"hashtags":[{"text":"BEAST","indices":[0,6]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507621493928513536,"id_str":"1507621493928513536","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","url":"https:\/\/t.co\/3KXro8wxGt","display_url":"pic.twitter.com\/3KXro8wxGt","expanded_url":"https:\/\/twitter.com\/Iam_Jathu\/status\/1507621526627094528\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2048,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507621493928513536,"id_str":"1507621493928513536","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwlwtFaUAAm6bC.jpg","url":"https:\/\/t.co\/3KXro8wxGt","display_url":"pic.twitter.com\/3KXro8wxGt","expanded_url":"https:\/\/twitter.com\/Iam_Jathu\/status\/1507621526627094528\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2048,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":383,"favorite_count":936,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":383,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424807285449125888\/Q94aFlSr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424807285449125888\/Q94aFlSr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029734201770143744\/1628535529","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2466544909,"id_str":"2466544909","name":"Shirley - Hay McMillan","screen_name":"hay_mcmillan","location":"Edinburgh, Scotland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":348,"listed_count":0,"created_at":"Sun - Apr 27 19:15:45 +0000 2014","favourites_count":2971,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":979,"lang":null,"status":{"created_at":"Sun - Feb 27 10:14:12 +0000 2022","id":1497877719635353602,"id_str":"1497877719635353602","text":"RT - @mrdanwalker: I know it\u2019s from a couple of days ago but this is the most - extraordinary speech from the Ukrainian leader @ZelenskyyUa \nht\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrdanwalker","name":"Dan - Walker","id":47945492,"id_str":"47945492","indices":[3,15]},{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[123,135]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 21:39:26 +0000 2022","id":1497687778817155077,"id_str":"1497687778817155077","text":"I - know it\u2019s from a couple of days ago but this is the most extraordinary - speech from the Ukrainian leader\u2026 https:\/\/t.co\/xqQjEMbNWW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xqQjEMbNWW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497687778817155077","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[107,130]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":828,"favorite_count":6723,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":828,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/799517886838636544\/zFOo9fSe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/799517886838636544\/zFOo9fSe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3290135639,"id_str":"3290135639","name":"\u201cBambiSellsNewYork\u201d","screen_name":"Res_Hunters","location":"Manhattan, - NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":855,"listed_count":0,"created_at":"Tue - May 19 15:32:38 +0000 2015","favourites_count":318,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":238,"lang":null,"status":{"created_at":"Tue - Mar 01 05:34:19 +0000 2022","id":1498532060788633603,"id_str":"1498532060788633603","text":"RT - @ReallyAmerican1: Malcolm Nance tells Warning Shot that the miscalculating - Putin is sweating bullets. https:\/\/t.co\/ZWbYn1nDc0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/ZWbYn1nDc0","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1MYxNnYrdypxw","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 21:00:01 +0000 2022","id":1498402631785476104,"id_str":"1498402631785476104","text":"Malcolm - Nance tells Warning Shot that the miscalculating Putin is sweating bullets. - https:\/\/t.co\/ZWbYn1nDc0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZWbYn1nDc0","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1MYxNnYrdypxw","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[84,107]}]},"source":"\u003ca - href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":559,"favorite_count":1120,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":559,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1088607556052893696\/lnl6Cjxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1088607556052893696\/lnl6Cjxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290135639\/1548379305","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1283712176738447361,"id_str":"1283712176738447361","name":"Roy - Jackson","screen_name":"jacksun925","location":"Dallas, Texas (Suburbs)","description":"Optimist, - Realist, Fighter and Survivor! I still believe in this experiment, for now.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":124,"listed_count":0,"created_at":"Thu - Jul 16 10:37:18 +0000 2020","favourites_count":1815,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":372,"lang":null,"status":{"created_at":"Tue - Sep 28 13:23:39 +0000 2021","id":1442842443813113856,"id_str":"1442842443813113856","text":"@LeaderMcConnell - Probably the only thing I''ve ever agreed with him about.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LeaderMcConnell","name":"Leader - McConnell","id":1249982359,"id_str":"1249982359","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1442580119634132995,"in_reply_to_status_id_str":"1442580119634132995","in_reply_to_user_id":1249982359,"in_reply_to_user_id_str":"1249982359","in_reply_to_screen_name":"LeaderMcConnell","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329388557262270465\/BexrdXv3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329388557262270465\/BexrdXv3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":989054704557658112,"id_str":"989054704557658112","name":"Zion - Ryan Cruz","screen_name":"zryanverse","location":"127.0.0.1","description":"Being - Batman isn\u2019t a choice. It is about enduring pain. It is a means to channel - pain. It is about being *the* outcast to make choices no one else can.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2305,"friends_count":1414,"listed_count":7,"created_at":"Wed - Apr 25 08:13:12 +0000 2018","favourites_count":159268,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":99278,"lang":null,"status":{"created_at":"Sat - Mar 26 09:37:29 +0000 2022","id":1507652954752688130,"id_str":"1507652954752688130","text":"RT - @dumidyeypee: @citizenjaneph https:\/\/t.co\/QeVHiX0EGJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dumidyeypee","name":"JP - \uea00","id":1124692538,"id_str":"1124692538","indices":[3,15]},{"screen_name":"citizenjaneph","name":"Citizen - Jane","id":819079014862073856,"id_str":"819079014862073856","indices":[17,31]}],"urls":[{"url":"https:\/\/t.co\/QeVHiX0EGJ","expanded_url":"https:\/\/youtu.be\/B8h1wU5BkhA","display_url":"youtu.be\/B8h1wU5BkhA","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 09:21:02 +0000 2022","id":1507648812382560256,"id_str":"1507648812382560256","text":"@citizenjaneph - https:\/\/t.co\/QeVHiX0EGJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"citizenjaneph","name":"Citizen - Jane","id":819079014862073856,"id_str":"819079014862073856","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/QeVHiX0EGJ","expanded_url":"https:\/\/youtu.be\/B8h1wU5BkhA","display_url":"youtu.be\/B8h1wU5BkhA","indices":[15,38]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507648241868816384,"in_reply_to_status_id_str":"1507648241868816384","in_reply_to_user_id":819079014862073856,"in_reply_to_user_id_str":"819079014862073856","in_reply_to_screen_name":"citizenjaneph","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490645599527395332\/LjAJDOoM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490645599527395332\/LjAJDOoM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/989054704557658112\/1644231129","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271591965080068099,"id_str":"1271591965080068099","name":"J\u00edbaro - Loco","screen_name":"JibaroL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":4992,"listed_count":0,"created_at":"Fri - Jun 12 23:56:17 +0000 2020","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":761936192430419968,"id_str":"761936192430419968","name":"Subrata - Chakrabarti","screen_name":"SubrataKol29","location":"Kolkata-700029 , WB - , India ","description":"A Hindu Brahmin CU Commerce Graduate Male aged about - 55 yrs.Bengali , women friendly .","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":988,"listed_count":0,"created_at":"Sat - Aug 06 14:45:19 +0000 2016","favourites_count":174355,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":98580,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907515531611185152\/-SVrMCqo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907515531611185152\/-SVrMCqo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3281705012,"id_str":"3281705012","name":"Joel - Jose","screen_name":"80joeljose","location":"","description":"Republica Dominicana\/ - Houston Texas\/ Construction\/ Me gusta viajar y ect...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":72,"friends_count":1132,"listed_count":0,"created_at":"Thu - Jul 16 15:17:53 +0000 2015","favourites_count":5863,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":175,"lang":null,"status":{"created_at":"Sat - Mar 19 04:13:45 +0000 2022","id":1505034769083650057,"id_str":"1505034769083650057","text":"@caaaapellan - Camino al aeropuerto","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caaaapellan","name":"ashleyyyy\u2728","id":832271712,"id_str":"832271712","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505016382186037250,"in_reply_to_status_id_str":"1505016382186037250","in_reply_to_user_id":832271712,"in_reply_to_user_id_str":"832271712","in_reply_to_screen_name":"caaaapellan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186715903884480514\/-lF_8X7Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186715903884480514\/-lF_8X7Y_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":997441446390087680,"id_str":"997441446390087680","name":"","screen_name":"ray_rabbitoh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":252,"listed_count":0,"created_at":"Fri - May 18 11:39:07 +0000 2018","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Aug 23 04:26:24 +0000 2019","id":1164755746375921664,"id_str":"1164755746375921664","text":"@nytimes - Future generations of Americans should not have to live with such uncertainty. - Those who have the influenc\u2026 https:\/\/t.co\/JyI3u7RB6j","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimes","name":"The - New York Times","id":807095,"id_str":"807095","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/JyI3u7RB6j","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1164755746375921664","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1164734032971784192,"in_reply_to_status_id_str":"1164734032971784192","in_reply_to_user_id":807095,"in_reply_to_user_id_str":"807095","in_reply_to_screen_name":"nytimes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":294084486,"id_str":"294084486","name":"Gordon - Haynes \ud83d\udc99","screen_name":"gph500","location":"York, UK","description":"currently - I''m researching Egyptology. Previous interests in Philosophy, Theology, Law - and Politics","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":26,"friends_count":963,"listed_count":0,"created_at":"Fri - May 06 14:11:30 +0000 2011","favourites_count":6756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4137,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/972087432672960513\/qspY9imU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972087432672960513\/qspY9imU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33449306,"id_str":"33449306","name":"Dale - Briggs","screen_name":"DaleVBriggs","location":"Austin, TX","description":"Dale - Briggs is a two-footed primate. His outstanding characteristics include forward-facing - eyes, opposable thumbs, and a solid inner skeleton.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":57,"friends_count":1898,"listed_count":1,"created_at":"Mon - Apr 20 06:50:10 +0000 2009","favourites_count":3648,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2337206640\/mp41n2y9f3wkk6t0lhwv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2337206640\/mp41n2y9f3wkk6t0lhwv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33449306\/1411408191","profile_link_color":"04AE08","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":718092861309210633,"id_str":"718092861309210633","name":"\u13a5\u13c9\u13aa\u13c1 - mu\u13b6\u13aa\u13d2u\u13d2\u13aa","screen_name":"ivanmugarura256","location":"Uganda","description":"\u13aa\u13c1 - \u13a5\u13c1f\u13a5\u13c1\u13a5\u13c6\u13ac \u13b6\u13be\u13a0 \u13df\u13aa\u13c1\u13c1\u13be\u13c6 - b\u13ac fu\u13de\u13de\u13bd \u13a0\u13ac\u13de\u13a5\u13c1\u13ac\u13aa\u13c6\u13ac\u13a0 - \u13a5\u13c1 \u13aa f\u13a5\u13c1\u13a5\u13c6\u13ac \u13a5\u13de\u13deus\u13c6\u13d2\u13aa\u13c6\u13a5\u13be\u13c1.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":576,"friends_count":4816,"listed_count":3,"created_at":"Thu - Apr 07 15:07:34 +0000 2016","favourites_count":3986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2378,"lang":null,"status":{"created_at":"Sat - Mar 26 05:49:28 +0000 2022","id":1507595572777213962,"id_str":"1507595572777213962","text":"RT - @drkasenene: It''s true coffee has some negative effects in some people and - in certain body states like stress or lack of sleep.\n\nBut tha\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drkasenene","name":"Dr - Paul Kasenene","id":368883443,"id_str":"368883443","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 06:45:01 +0000 2022","id":1507247164174438400,"id_str":"1507247164174438400","text":"It''s - true coffee has some negative effects in some people and in certain body states - like stress or lack of sleep.\u2026 https:\/\/t.co\/JZ2Xoe1X5T","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JZ2Xoe1X5T","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507247164174438400","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/social.zoho.com\" rel=\"nofollow\"\u003eZoho Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":105,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227950470699728901\/mRubp8Gh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227950470699728901\/mRubp8Gh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718092861309210633\/1627960060","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1233735659300544512,"id_str":"1233735659300544512","name":"@davis1","screen_name":"davis100001710","location":"","description":"Male - simple en caring","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":93,"listed_count":0,"created_at":"Sat - Feb 29 12:48:26 +0000 2020","favourites_count":403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Sun - Jan 17 17:43:29 +0000 2021","id":1350861312902000640,"id_str":"1350861312902000640","text":"@Virginchk - Why not","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Virginchk","name":"Hannah\ud83d\udc60\ud83d\udc59","id":1268618550014627840,"id_str":"1268618550014627840","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1350831706291494912,"in_reply_to_status_id_str":"1350831706291494912","in_reply_to_user_id":1268618550014627840,"in_reply_to_user_id_str":"1268618550014627840","in_reply_to_screen_name":"Virginchk","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45520275,"id_str":"45520275","name":"Catty","screen_name":"cattitude808","location":"Hawaii","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":569,"listed_count":0,"created_at":"Mon - Jun 08 07:29:23 +0000 2009","favourites_count":749,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Wed - Mar 16 07:33:43 +0000 2022","id":1503997929274544131,"id_str":"1503997929274544131","text":"@ChameleonPod - Did I miss something between part 7 and 8? How did they get into Canada? Was - the cliffhanger at the\u2026 https:\/\/t.co\/JX8c4bFQ7a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChameleonPod","name":"Chameleon: - Wild Boys","id":1207035542342266880,"id_str":"1207035542342266880","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/JX8c4bFQ7a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503997929274544131","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503754481061830658,"in_reply_to_status_id_str":"1503754481061830658","in_reply_to_user_id":1207035542342266880,"in_reply_to_user_id_str":"1207035542342266880","in_reply_to_screen_name":"ChameleonPod","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1060049379162120192\/0OkHW-Gk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1060049379162120192\/0OkHW-Gk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45520275\/1603384964","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":27001612,"id_str":"27001612","name":"Lisa - Church","screen_name":"eMecc","location":"NYC","description":"Director, investor, - speaker, mother of sons, mentor, lover of opera, hot sauce, traveler, reader, - incorrigible optimist, former President of eMarketer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":381,"friends_count":1191,"listed_count":39,"created_at":"Fri - Mar 27 13:22:05 +0000 2009","favourites_count":5415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2980,"lang":null,"status":{"created_at":"Wed - Mar 23 04:07:27 +0000 2022","id":1506482733828263941,"id_str":"1506482733828263941","text":"RT - @cooltxchick: By simply existing, Dolly Parton represents TN better than Marsha - Blackburn ever could\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cooltxchick","name":"Ty - Ross","id":22803269,"id_str":"22803269","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 23:45:18 +0000 2022","id":1506416760068755462,"id_str":"1506416760068755462","text":"By - simply existing, Dolly Parton represents TN better than Marsha Blackburn ever - could\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8964,"favorite_count":78412,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8964,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272225408604426246\/zW_aGkqx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272225408604426246\/zW_aGkqx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4840924038,"id_str":"4840924038","name":"Laura - Kroth","screen_name":"LauraKroth4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":995,"listed_count":0,"created_at":"Sun - Jan 31 18:23:53 +0000 2016","favourites_count":502,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":494,"lang":null,"status":{"created_at":"Fri - Mar 25 21:07:43 +0000 2022","id":1507464266877526016,"id_str":"1507464266877526016","text":"RT - @OccupyDemocrats: BREAKING: The Women''s March officially calls for Justice - Clarence Thomas to be impeached after his wife Ginni\u2019s texts\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:24:02 +0000 2022","id":1507423075398168581,"id_str":"1507423075398168581","text":"BREAKING: - The Women''s March officially calls for Justice Clarence Thomas to be impeached - after his wife Ginni\u2019s tex\u2026 https:\/\/t.co\/1Mxk8zBE09","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1Mxk8zBE09","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507423075398168581","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9322,"favorite_count":26525,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9322,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":947218256145911810,"id_str":"947218256145911810","name":"Daveed_sunday","screen_name":"DaveedSunday","location":"Lagos, - Nigeria","description":"I love what I like","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":811,"friends_count":1617,"listed_count":0,"created_at":"Sat - Dec 30 21:30:05 +0000 2017","favourites_count":96512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7401,"lang":null,"status":{"created_at":"Fri - Mar 25 22:16:38 +0000 2022","id":1507481611918528513,"id_str":"1507481611918528513","text":"RT - @IndyArts: Why Jane Campion\u2019s startling, simmering The Power of the Dog - should win Best Picture https:\/\/t.co\/j2ttAGFH9J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IndyArts","name":"Independent - Arts","id":145648706,"id_str":"145648706","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/j2ttAGFH9J","expanded_url":"https:\/\/www.independent.co.uk\/arts-entertainment\/films\/features\/power-of-the-dog-oscars-2022-best-picture-b2042170.html?utm_medium=Social&utm_source=Twitter#Echobox=1648192175","display_url":"independent.co.uk\/arts-entertain\u2026","indices":[99,122]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:16:28 +0000 2022","id":1507255076116647949,"id_str":"1507255076116647949","text":"Why - Jane Campion\u2019s startling, simmering The Power of the Dog should win Best - Picture https:\/\/t.co\/j2ttAGFH9J","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j2ttAGFH9J","expanded_url":"https:\/\/www.independent.co.uk\/arts-entertainment\/films\/features\/power-of-the-dog-oscars-2022-best-picture-b2042170.html?utm_medium=Social&utm_source=Twitter#Echobox=1648192175","display_url":"independent.co.uk\/arts-entertain\u2026","indices":[85,108]}]},"source":"\u003ca - href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":88,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":30,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474533109177753604\/wwXO8WId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474533109177753604\/wwXO8WId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947218256145911810\/1595784474","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":52531259,"id_str":"52531259","name":"kristen - hohman","screen_name":"kjhohman","location":"Washington DC","description":"Mom, - wife, dog lover, happiest when I''m swimming","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":795,"listed_count":1,"created_at":"Tue - Jun 30 21:43:15 +0000 2009","favourites_count":2229,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"11EEF2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3667106731\/768dbd6e7beaae410fc2c9995f92106c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3667106731\/768dbd6e7beaae410fc2c9995f92106c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52531259\/1368707143","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"1B1C17","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56155149,"id_str":"56155149","name":"James - Stewart","screen_name":"Jimmy_Stew","location":"London, England","description":"''baby-faced - spin-doctor'' - Private Eye","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":901,"listed_count":0,"created_at":"Sun - Jul 12 18:27:39 +0000 2009","favourites_count":77,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":null,"status":{"created_at":"Mon - Apr 15 04:06:13 +0000 2019","id":1117640242260004864,"id_str":"1117640242260004864","text":"@HeathrowAirport - is there a passport photo booth at t5, either departures or before check in? - Thanks!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HeathrowAirport","name":"Heathrow - Airport","id":20823928,"id_str":"20823928","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":20823928,"in_reply_to_user_id_str":"20823928","in_reply_to_screen_name":"HeathrowAirport","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2391817866\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2391817866\/image_normal.jpg","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302855889775407106,"id_str":"1302855889775407106","name":"\ud83d\udd73","screen_name":"hrj670_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":1066,"listed_count":1,"created_at":"Mon - Sep 07 06:27:13 +0000 2020","favourites_count":3688,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Mar 24 11:15:41 +0000 2022","id":1506952888840560640,"id_str":"1506952888840560640","text":"@drprops - @RussianEmbassy I guess this should\u2019ve been called \u201cwars Russia - were indirectly involved in\u201d and if you we\u2026 https:\/\/t.co\/rAwAyyywJR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"drprops","name":"DrProps - \ud83c\uddfa\ud83c\udde6","id":894605351403827200,"id_str":"894605351403827200","indices":[0,8]},{"screen_name":"RussianEmbassy","name":"Russian - Embassy, UK","id":114718372,"id_str":"114718372","indices":[9,24]}],"urls":[{"url":"https:\/\/t.co\/rAwAyyywJR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506952888840560640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506952650595737603,"in_reply_to_status_id_str":"1506952650595737603","in_reply_to_user_id":1302855889775407106,"in_reply_to_user_id_str":"1302855889775407106","in_reply_to_screen_name":"hrj670_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417136630092152835\/QlXPQmS1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417136630092152835\/QlXPQmS1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2902716189,"id_str":"2902716189","name":"Patricia - M Weber","screen_name":"pmweber11","location":"Mesa, AZ","description":"Homemaker","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":1896,"listed_count":0,"created_at":"Tue - Dec 02 19:31:30 +0000 2014","favourites_count":9210,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1464,"lang":null,"status":{"created_at":"Thu - Nov 19 05:33:09 +0000 2020","id":1329296633201188865,"id_str":"1329296633201188865","text":"RT - @thomson_sherrie: I love @SusanBoyle in the Christmas candle!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thomson_sherrie","name":"sherrie - thomson","id":892299732,"id_str":"892299732","indices":[3,19]},{"screen_name":"SusanBoyle","name":"Susan - Boyle","id":70729202,"id_str":"70729202","indices":[28,39]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 18 19:06:14 +0000 2020","id":1329138866809233409,"id_str":"1329138866809233409","text":"I - love @SusanBoyle in the Christmas candle!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SusanBoyle","name":"Susan - Boyle","id":70729202,"id_str":"70729202","indices":[7,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539864893613035520\/4XIq9SMq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539864893613035520\/4XIq9SMq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2902716189\/1561255394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":357642831,"id_str":"357642831","name":"selo - keles","screen_name":"selo_jr","location":"","description":"the man who sold - the world","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":76,"friends_count":662,"listed_count":0,"created_at":"Thu - Aug 18 17:49:55 +0000 2011","favourites_count":2391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":823,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396397009184206853\/gXet6bfQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396397009184206853\/gXet6bfQ_normal.jpg","profile_link_color":"996600","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":25352130,"id_str":"25352130","name":"LCBC","screen_name":"lauracbryan","location":"","description":"#WPS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":191,"listed_count":4,"created_at":"Thu - Mar 19 18:10:43 +0000 2009","favourites_count":36149,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3419,"lang":null,"status":{"created_at":"Fri - Mar 25 03:51:31 +0000 2022","id":1507203499486060546,"id_str":"1507203499486060546","text":"@LargeElyphants - @espn @RazorbackMBB What in the actual hell are you trying to say??","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LargeElyphants","name":"Horace","id":986076858784591875,"id_str":"986076858784591875","indices":[0,15]},{"screen_name":"espn","name":"ESPN","id":2557521,"id_str":"2557521","indices":[16,21]},{"screen_name":"RazorbackMBB","name":"ELITE - EIGHT HOGS \ud83d\udc17","id":621254841,"id_str":"621254841","indices":[22,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507170911790809089,"in_reply_to_status_id_str":"1507170911790809089","in_reply_to_user_id":986076858784591875,"in_reply_to_user_id_str":"986076858784591875","in_reply_to_screen_name":"LargeElyphants","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1330339668160868352\/9o8JjU4h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1330339668160868352\/9o8JjU4h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25352130\/1606011774","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292509040686387201,"id_str":"1292509040686387201","name":"KIFARU\ud83e\udd8f\ud83c\uddf9\ud83c\uddff","screen_name":"Tumajnr","location":"Tanzania","description":"\ud83c\udf7d\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":761,"friends_count":236,"listed_count":0,"created_at":"Sun - Aug 09 17:12:34 +0000 2020","favourites_count":37583,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4113,"lang":null,"status":{"created_at":"Sat - Mar 26 01:48:28 +0000 2022","id":1507534921044221958,"id_str":"1507534921044221958","text":"RT - @TheEuropeanLad: That was the definition of a performance you will only see - from one player.\n\nBuenas noches. https:\/\/t.co\/ewSJqheWeO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheEuropeanLad","name":"\ud835\udc00\ud835\udc05\ud835\udc02 - \ud835\udc00\ud835\udc09\ud835\udc00\ud835\udc17 \ud83d\udc8e","id":3324689194,"id_str":"3324689194","indices":[3,18]}],"urls":[],"media":[{"id":1507530248631595011,"id_str":"1507530248631595011","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","url":"https:\/\/t.co\/ewSJqheWeO","display_url":"pic.twitter.com\/ewSJqheWeO","expanded_url":"https:\/\/twitter.com\/TheEuropeanLad\/status\/1507530253232656394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":667,"h":680,"resize":"fit"},"large":{"w":1202,"h":1225,"resize":"fit"},"medium":{"w":1177,"h":1200,"resize":"fit"}},"source_status_id":1507530253232656394,"source_status_id_str":"1507530253232656394","source_user_id":3324689194,"source_user_id_str":"3324689194"}]},"extended_entities":{"media":[{"id":1507530248631595011,"id_str":"1507530248631595011","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","url":"https:\/\/t.co\/ewSJqheWeO","display_url":"pic.twitter.com\/ewSJqheWeO","expanded_url":"https:\/\/twitter.com\/TheEuropeanLad\/status\/1507530253232656394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":667,"h":680,"resize":"fit"},"large":{"w":1202,"h":1225,"resize":"fit"},"medium":{"w":1177,"h":1200,"resize":"fit"}},"source_status_id":1507530253232656394,"source_status_id_str":"1507530253232656394","source_user_id":3324689194,"source_user_id_str":"3324689194"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:29:55 +0000 2022","id":1507530253232656394,"id_str":"1507530253232656394","text":"That - was the definition of a performance you will only see from one player.\n\nBuenas - noches. https:\/\/t.co\/ewSJqheWeO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507530248631595011,"id_str":"1507530248631595011","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","url":"https:\/\/t.co\/ewSJqheWeO","display_url":"pic.twitter.com\/ewSJqheWeO","expanded_url":"https:\/\/twitter.com\/TheEuropeanLad\/status\/1507530253232656394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":667,"h":680,"resize":"fit"},"large":{"w":1202,"h":1225,"resize":"fit"},"medium":{"w":1177,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507530248631595011,"id_str":"1507530248631595011","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOvSxh3XsAMLz_I.jpg","url":"https:\/\/t.co\/ewSJqheWeO","display_url":"pic.twitter.com\/ewSJqheWeO","expanded_url":"https:\/\/twitter.com\/TheEuropeanLad\/status\/1507530253232656394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":667,"h":680,"resize":"fit"},"large":{"w":1202,"h":1225,"resize":"fit"},"medium":{"w":1177,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1150,"favorite_count":13946,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1150,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1436763711469916163\/w5KnTCtD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1436763711469916163\/w5KnTCtD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1292509040686387201\/1603988726","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2437920265,"id_str":"2437920265","name":"marian","screen_name":"marian71151473","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":84,"listed_count":0,"created_at":"Fri - Apr 11 04:11:00 +0000 2014","favourites_count":23724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":236,"lang":null,"status":{"created_at":"Mon - Mar 21 18:45:04 +0000 2022","id":1505978816174329858,"id_str":"1505978816174329858","text":"@m_crouton - @abc13houston Uhhhh\u2026what happens to the cattle when they are bought ?\ud83d\ude2c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"m_crouton","name":"Crouton\ud83c\udf3b","id":1074423603268079618,"id_str":"1074423603268079618","indices":[0,10]},{"screen_name":"abc13houston","name":"ABC13 - Houston","id":16247383,"id_str":"16247383","indices":[11,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505920003060736003,"in_reply_to_status_id_str":"1505920003060736003","in_reply_to_user_id":1074423603268079618,"in_reply_to_user_id_str":"1074423603268079618","in_reply_to_screen_name":"m_crouton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1155008235700535296,"id_str":"1155008235700535296","name":"Terri","screen_name":"Terri56652981","location":"","description":"I - am me\nLike it or not","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":212,"listed_count":0,"created_at":"Sat - Jul 27 06:53:17 +0000 2019","favourites_count":5899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":203,"lang":null,"status":{"created_at":"Sun - Jan 24 05:29:26 +0000 2021","id":1353213299677032449,"id_str":"1353213299677032449","text":"RT - @RBReich: The filibuster must go. \n\nThere\u2019s no time to waste. \n\nThe - stakes are too high.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 23 22:48:10 +0000 2021","id":1353112315185524736,"id_str":"1353112315185524736","text":"The - filibuster must go. \n\nThere\u2019s no time to waste. \n\nThe stakes are - too high.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4641,"favorite_count":28909,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4641,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1155008748324134914\/fJQWEng1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1155008748324134914\/fJQWEng1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89597983,"id_str":"89597983","name":"surapol","screen_name":"prakin1515","location":"Bangkok,Thailand","description":"male,married,marketing - officer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":256,"listed_count":0,"created_at":"Fri - Nov 13 01:48:26 +0000 2009","favourites_count":33493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35368,"lang":null,"status":{"created_at":"Sat - Mar 26 05:59:28 +0000 2022","id":1507598086818140161,"id_str":"1507598086818140161","text":"RT - @ThaiPBSNews: #\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e19\u0e19\u0e35\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e40\u0e08\u0e49\u0e32 - \u0e44\u0e17\u0e22-\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 \u0e1c\u0e38\u0e14 - \"\u0e1a\u0e38\u0e1e\u0e40\u0e1e\u0e2a\u0e31\u0e19\u0e19\u0e34\u0e27\u0e32\u0e2a\" - \u0e09\u0e1a\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e39\u0e19 #ThaiPBSnews - https:\/\/t.co\/sOSsSVA0Iw","truncated":false,"entities":{"hashtags":[{"text":"\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e19\u0e19\u0e35\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e40\u0e08\u0e49\u0e32","indices":[17,44]},{"text":"ThaiPBSnews","indices":[89,101]}],"symbols":[],"user_mentions":[{"screen_name":"ThaiPBSNews","name":"Thai - PBS News","id":2294029646,"id_str":"2294029646","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/sOSsSVA0Iw","expanded_url":"https:\/\/news.thaipbs.or.th\/content\/313992","display_url":"news.thaipbs.or.th\/content\/313992","indices":[102,125]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:50:45 +0000 2022","id":1507595891976245248,"id_str":"1507595891976245248","text":"#\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e19\u0e19\u0e35\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e40\u0e08\u0e49\u0e32 - \u0e44\u0e17\u0e22-\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 \u0e1c\u0e38\u0e14 - \"\u0e1a\u0e38\u0e1e\u0e40\u0e1e\u0e2a\u0e31\u0e19\u0e19\u0e34\u0e27\u0e32\u0e2a\" - \u0e09\u0e1a\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e39\u0e19 #ThaiPBSnews - https:\/\/t.co\/sOSsSVA0Iw","truncated":false,"entities":{"hashtags":[{"text":"\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e19\u0e19\u0e35\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e2d\u0e40\u0e08\u0e49\u0e32","indices":[0,27]},{"text":"ThaiPBSnews","indices":[72,84]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sOSsSVA0Iw","expanded_url":"https:\/\/news.thaipbs.or.th\/content\/313992","display_url":"news.thaipbs.or.th\/content\/313992","indices":[85,108]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"th"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463699841298620417\/OY57uP5y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463699841298620417\/OY57uP5y_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1091469809840058368,"id_str":"1091469809840058368","name":"Greenlancer","screen_name":"Greenlancer3","location":"","description":"Unique","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":419,"listed_count":0,"created_at":"Fri - Feb 01 22:54:15 +0000 2019","favourites_count":176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Fri - Feb 11 16:43:08 +0000 2022","id":1492177394173497344,"id_str":"1492177394173497344","text":"@News5PH - Discussing such issue is senseless \ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"News5PH","name":"News5","id":133152120,"id_str":"133152120","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1489885220174057474,"in_reply_to_status_id_str":"1489885220174057474","in_reply_to_user_id":133152120,"in_reply_to_user_id_str":"133152120","in_reply_to_screen_name":"News5PH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322288140715925504\/FUcMPCU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322288140715925504\/FUcMPCU6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":900813334592618496,"id_str":"900813334592618496","name":"Greg - Fritz","screen_name":"Fritz6Fritz","location":"Palmer, AK","description":"Gulf - War Veteran, Retired Army, Paratrooper, 82nd Airborne, Husband and Father - of a great son, Grandad, Lover of Dog\u2019s","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":514,"friends_count":1713,"listed_count":1,"created_at":"Thu - Aug 24 20:13:30 +0000 2017","favourites_count":18753,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11241,"lang":null,"status":{"created_at":"Sat - Feb 05 02:42:08 +0000 2022","id":1489791422547083266,"id_str":"1489791422547083266","text":"H&R - Block took care of me. They can help you too. Follow this link to get a discount - on tax prep, and let me know h\u2026 https:\/\/t.co\/vbE71urPyb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vbE71urPyb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1489791422547083266","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/getambassador.com\" rel=\"nofollow\"\u003eAmbassador Refer - A Friend\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342005339852480515\/1tAWr7lv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342005339852480515\/1tAWr7lv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/900813334592618496\/1518390056","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246797328259964930,"id_str":"1246797328259964930","name":"Miller - Moore","screen_name":"MillerMoore14","location":"","description":"Lives in - Monrovia, Liberia","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":163,"listed_count":0,"created_at":"Sun - Apr 05 13:51:05 +0000 2020","favourites_count":675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71,"lang":null,"status":{"created_at":"Tue - Oct 26 20:26:49 +0000 2021","id":1453095796434419712,"id_str":"1453095796434419712","text":"@WilliamsRuto - Happy birthday your Excellency","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilliamsRuto","name":"William - Samoei Ruto, PhD","id":333935142,"id_str":"333935142","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1452905965037162496,"in_reply_to_status_id_str":"1452905965037162496","in_reply_to_user_id":333935142,"in_reply_to_user_id_str":"333935142","in_reply_to_screen_name":"WilliamsRuto","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246797762714390528\/0-a69xFq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246797762714390528\/0-a69xFq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3320817722,"id_str":"3320817722","name":"Tracy - \ud83c\udde8\ud83c\udde6 Tunstall","screen_name":"thatsmstracy","location":"Powell - River, British Columbia","description":"Mom, partner, daughter, sister, mental - health professional, advocate for education, science, justice, kindness, courage, - and awareness","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":914,"listed_count":0,"created_at":"Thu - Aug 20 02:31:57 +0000 2015","favourites_count":13126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":601,"lang":null,"status":{"created_at":"Sat - Mar 26 02:22:35 +0000 2022","id":1507543505618411520,"id_str":"1507543505618411520","text":"RT - @pressprogress: The European parliamentarians who defended the Ottawa convoy - also promote anti-vaccine and anti-immigrant policies.\n\nSev\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pressprogress","name":"PressProgress","id":1900566776,"id_str":"1900566776","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:55:03 +0000 2022","id":1507445980429492231,"id_str":"1507445980429492231","text":"The - European parliamentarians who defended the Ottawa convoy also promote anti-vaccine - and anti-immigrant policies.\u2026 https:\/\/t.co\/pztCGp3l2q","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pztCGp3l2q","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507445980429492231","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":401,"favorite_count":575,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":401,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322556410199076865\/QWx9NF7R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322556410199076865\/QWx9NF7R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320817722\/1604158071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1281840470,"id_str":"1281840470","name":"walter - butler","screen_name":"Walterpaltey","location":"Latrobe, Tasmania","description":"I - am a retired psychologist and engineer and a strong political guru","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":323,"listed_count":0,"created_at":"Tue - Mar 19 23:57:20 +0000 2013","favourites_count":11512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":309,"lang":null,"status":{"created_at":"Sun - Nov 15 01:26:53 +0000 2020","id":1327785108456108035,"id_str":"1327785108456108035","text":"@MarthaThomas20 - There is no doubt Dan is a communist under nobodies thumb except China, notice - when all goes quiet\u2026 https:\/\/t.co\/IKI1XdIlQz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarthaThomas20","name":"\ud83c\udde6\ud83c\uddfaMarth - from SlugGate \ud83d\udc0c Stasi Central, Vic \ud83c\udf38\ud83c\udf38","id":749256032,"id_str":"749256032","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/IKI1XdIlQz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1327785108456108035","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1327057000421752833,"in_reply_to_status_id_str":"1327057000421752833","in_reply_to_user_id":749256032,"in_reply_to_user_id_str":"749256032","in_reply_to_screen_name":"MarthaThomas20","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298143880328523777\/v48BKMdl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298143880328523777\/v48BKMdl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1137217473319768065,"id_str":"1137217473319768065","name":"ted - white","screen_name":"tedwhit40569385","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":44,"listed_count":0,"created_at":"Sat - Jun 08 04:39:08 +0000 2019","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218511676452024320,"id_str":"1218511676452024320","name":"@Daisy","screen_name":"DaisyEurope","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":107,"friends_count":395,"listed_count":0,"created_at":"Sat - Jan 18 12:33:26 +0000 2020","favourites_count":146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"status":{"created_at":"Tue - Mar 22 05:18:02 +0000 2022","id":1506138109003640834,"id_str":"1506138109003640834","text":"@RobertAlai - @ketercharles Anakaa mwizi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RobertAlai","name":"Robert - ALAI","id":16712223,"id_str":"16712223","indices":[0,11]},{"screen_name":"ketercharles","name":"Hon. - Charles Keter, EGH","id":869293772,"id_str":"869293772","indices":[12,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505932787454558209,"in_reply_to_status_id_str":"1505932787454558209","in_reply_to_user_id":16712223,"in_reply_to_user_id_str":"16712223","in_reply_to_screen_name":"RobertAlai","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218511866936406019\/bV5OqUJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218511866936406019\/bV5OqUJ8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35602936,"id_str":"35602936","name":"Pat - Gut","screen_name":"Patmaestas","location":"New Mexico ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":265,"listed_count":0,"created_at":"Sun - Apr 26 23:44:54 +0000 2009","favourites_count":106,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Sun - Sep 12 22:28:11 +0000 2021","id":1437181273739436032,"id_str":"1437181273739436032","text":"@gmincy - @JoeBidenWon @MarshaBlackburn Still living!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gmincy","name":"Appalachian - Son","id":637110364,"id_str":"637110364","indices":[0,7]},{"screen_name":"JoeBidenWon","name":"JoeIsYourPresident\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","id":1359394952380350464,"id_str":"1359394952380350464","indices":[8,20]},{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[21,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1437180531150663682,"in_reply_to_status_id_str":"1437180531150663682","in_reply_to_user_id":637110364,"in_reply_to_user_id_str":"637110364","in_reply_to_screen_name":"gmincy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1377116729839546375\/ZT2ei1sR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1377116729839546375\/ZT2ei1sR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":752207902224551936,"id_str":"752207902224551936","name":"kingsman","screen_name":"hunteths","location":"Eastern, - Kingdom of Saudi Arab","description":"AM UNIQUE BECAUSE THERE IS NO ONE ELSE - LIKE ME IN THE WHOLE WORLD.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":46,"friends_count":518,"listed_count":0,"created_at":"Sun - Jul 10 18:28:34 +0000 2016","favourites_count":128,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":990,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1261352948543770628\/qKoaVZbW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1261352948543770628\/qKoaVZbW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752207902224551936\/1589564956","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243646535352680448,"id_str":"1243646535352680448","name":"pamkan","screen_name":"pamkan1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":693,"listed_count":0,"created_at":"Fri - Mar 27 21:10:48 +0000 2020","favourites_count":40,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Apr 18 18:35:38 +0000 2021","id":1383851731449090051,"id_str":"1383851731449090051","text":"@buitengebieden_ - @tomerporian thought of u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"buitengebieden_","name":"Buitengebieden","id":1130021685351079938,"id_str":"1130021685351079938","indices":[0,16]},{"screen_name":"tomerporian","name":"\u05ea\u05d5\u05de\u05e8 - \u05e4\u05d5\u05e8\u05d9\u05d0\u05df","id":974532044,"id_str":"974532044","indices":[17,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1383680492310982657,"in_reply_to_status_id_str":"1383680492310982657","in_reply_to_user_id":1130021685351079938,"in_reply_to_user_id_str":"1130021685351079938","in_reply_to_screen_name":"buitengebieden_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23383226,"id_str":"23383226","name":"Michael - Parisse","screen_name":"MichaelParisse","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":131,"listed_count":0,"created_at":"Mon - Mar 09 01:25:37 +0000 2009","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":95,"lang":null,"status":{"created_at":"Tue - Nov 03 21:14:50 +0000 2020","id":1323735409776500736,"id_str":"1323735409776500736","text":"Election - day turkey going in the Barrel! https:\/\/t.co\/CqkuWqMk0d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1323735360333996032,"id_str":"1323735360333996032","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/El7aS_lU4AAFsM_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/El7aS_lU4AAFsM_.jpg","url":"https:\/\/t.co\/CqkuWqMk0d","display_url":"pic.twitter.com\/CqkuWqMk0d","expanded_url":"https:\/\/twitter.com\/JstVote4Someone\/status\/1323735409776500736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1323735360333996032,"id_str":"1323735360333996032","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/El7aS_lU4AAFsM_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/El7aS_lU4AAFsM_.jpg","url":"https:\/\/t.co\/CqkuWqMk0d","display_url":"pic.twitter.com\/CqkuWqMk0d","expanded_url":"https:\/\/twitter.com\/JstVote4Someone\/status\/1323735409776500736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":814569278267621377,"id_str":"814569278267621377","name":"Harry - Otimos","screen_name":"HarryOtimos","location":"London, UK | Athens, GR","description":"International - Relations student at King''s College London and Johns Hopkins University | - Schilizzi Scholar","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":269,"listed_count":2,"created_at":"Thu - Dec 29 20:30:24 +0000 2016","favourites_count":1362,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":367,"lang":null,"status":{"created_at":"Thu - Mar 10 21:55:43 +0000 2022","id":1502040528031944707,"id_str":"1502040528031944707","text":"RT - @adiamantopoulou: \u03a6\u03b9\u03bb\u03b1\u03bd\u03b4\u03b9\u03b1,\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1 - \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03b6\u03bf\u03c5\u03bd \u03c3\u03c4\u03b7\u03bd - \u0395\u0395 \u03c4\u03b7 \u03c1\u03ae\u03c4\u03c1\u03b1 \u03b1\u03bc\u03bf\u03b9\u03b2\u03b1\u03af\u03b1\u03c2 - \u03ac\u03bc\u03c5\u03bd\u03b1\u03c2.\u0386\u03c1\u03b8\u03c1\u03bf 42 \u03c4\u03b7\u03c2 - \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2.\u03a4\u03bf \u03af\u03b4\u03b9\u03bf - \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b5 \u03ba\u03b1\u03b9 - \u03b7 \u03a0\u03c1\u03cc\u03b5\u03b4\u03c1\u03bf\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adiamantopoulou","name":"Anna - Diamantopoulou","id":43532755,"id_str":"43532755","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter - for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 08:21:35 +0000 2022","id":1501835647006433283,"id_str":"1501835647006433283","text":"\u03a6\u03b9\u03bb\u03b1\u03bd\u03b4\u03b9\u03b1,\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1 - \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03b6\u03bf\u03c5\u03bd \u03c3\u03c4\u03b7\u03bd - \u0395\u0395 \u03c4\u03b7 \u03c1\u03ae\u03c4\u03c1\u03b1 \u03b1\u03bc\u03bf\u03b9\u03b2\u03b1\u03af\u03b1\u03c2 - \u03ac\u03bc\u03c5\u03bd\u03b1\u03c2.\u0386\u03c1\u03b8\u03c1\u03bf 42 \u03c4\u03b7\u03c2 - \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2.\u03a4\u03bf \u03af\u03b4\u03b9\u03bf - \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b5 \u03ba\u03b1\u03b9 - \u03b7 \u03a0\u03c1\u03cc\u03b5\u2026 https:\/\/t.co\/7HUpd0ZY2P","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7HUpd0ZY2P","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501835647006433283","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":164,"favorited":false,"retweeted":false,"lang":"el"},"is_quote_status":false,"retweet_count":23,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"el"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265836987380097024\/AEbf-uQe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265836987380097024\/AEbf-uQe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/814569278267621377\/1590636942","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301224355142283267,"id_str":"1301224355142283267","name":"Joseph - owino","screen_name":"Josepho74548981","location":"","description":"Football","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":422,"listed_count":0,"created_at":"Wed - Sep 02 18:24:12 +0000 2020","favourites_count":95,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Mon - Oct 18 15:38:27 +0000 2021","id":1450124122487496705,"id_str":"1450124122487496705","text":"@MillicentOmanga - Wacha wivu mama","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MillicentOmanga","name":"Millicent - Omanga","id":1005535676,"id_str":"1005535676","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1450121272214622210,"in_reply_to_status_id_str":"1450121272214622210","in_reply_to_user_id":1005535676,"in_reply_to_user_id_str":"1005535676","in_reply_to_screen_name":"MillicentOmanga","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322768153420664833\/G74GgdSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322768153420664833\/G74GgdSH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301224355142283267\/1604207512","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":134974755,"id_str":"134974755","name":"June","screen_name":"JNPMIT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":961,"listed_count":0,"created_at":"Tue - Apr 20 00:32:56 +0000 2010","favourites_count":31318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4293427097,"id_str":"4293427097","name":"Vera - Hotrum","screen_name":"verahotrum","location":"Indiana, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":238,"listed_count":0,"created_at":"Fri - Nov 27 06:28:52 +0000 2015","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sun - Jan 10 11:15:58 +0000 2021","id":1348227078102142976,"id_str":"1348227078102142976","text":"He\u2019s - Admitting Everything! https:\/\/t.co\/L3CsqbTNI8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L3CsqbTNI8","expanded_url":"https:\/\/rumble.com\/vclx4f-hes-admitting-everything.html","display_url":"rumble.com\/vclx4f-hes-adm\u2026","indices":[27,50]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1215207747186196480\/FaGcoIyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1215207747186196480\/FaGcoIyv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1149273638601940993,"id_str":"1149273638601940993","name":"luo - \ud83d\udcaf%","screen_name":"sonofawoman01","location":"Pader, Uganda","description":"love - friends","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":144,"friends_count":368,"listed_count":0,"created_at":"Thu - Jul 11 11:06:02 +0000 2019","favourites_count":822,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":292,"lang":null,"status":{"created_at":"Mon - Feb 21 18:07:28 +0000 2022","id":1495822496439881733,"id_str":"1495822496439881733","text":"@Latigi_Lamaro - \ud83d\ude01\ud83d\ude01\ud83d\ude01imito timo dano nining","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Latigi_Lamaro","name":"Tigi\ud83d\udcab","id":1054872865173057537,"id_str":"1054872865173057537","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495771726634000389,"in_reply_to_status_id_str":"1495771726634000389","in_reply_to_user_id":1054872865173057537,"in_reply_to_user_id_str":"1054872865173057537","in_reply_to_screen_name":"Latigi_Lamaro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396743961998409728\/4AiE-6K6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396743961998409728\/4AiE-6K6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149273638601940993\/1622871863","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":940199386918813697,"id_str":"940199386918813697","name":"Evelyn\u2019s - Daughter","screen_name":"MomOfKayne","location":"","description":"Fashion - & Beauty Gov Officials & Agencies Government & Politics Lifestyle","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":350,"listed_count":0,"created_at":"Mon - Dec 11 12:39:36 +0000 2017","favourites_count":1869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Wed - Mar 23 01:57:37 +0000 2022","id":1506450060292276227,"id_str":"1506450060292276227","text":"@ElieNYC - This is an embarrassment\u2026. I can\u2019t believe this is Congress.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElieNYC","name":"Elie - Mystal","id":40353407,"id_str":"40353407","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506449704971907073,"in_reply_to_status_id_str":"1506449704971907073","in_reply_to_user_id":40353407,"in_reply_to_user_id_str":"40353407","in_reply_to_screen_name":"ElieNYC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400296174343659521\/KXhjtKft_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400296174343659521\/KXhjtKft_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940199386918813697\/1565206831","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2817349341,"id_str":"2817349341","name":"Herb - Lewis.","screen_name":"GhlewisJr","location":"Palm Springs, CA\/ Stamford - CT","description":"\ud83c\udf3fInspirationalInfluencer. \ud83d\udc95 Dog lover Dog - \ud83d\udc15 Genius comedian \ud83d\ude1c \ud83d\ude06 Lover of Bliss. \ud83d\udc67 - Adoration for Jesus & The Divine Goddess \ud83d\udc7c.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":837,"friends_count":4999,"listed_count":6,"created_at":"Wed - Oct 08 22:59:44 +0000 2014","favourites_count":153413,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75934,"lang":null,"status":{"created_at":"Sat - Mar 26 05:37:47 +0000 2022","id":1507592631773061120,"id_str":"1507592631773061120","text":"RT - @OlgaNYC1211: Not only has Shoigu disappeared from the public space, but also - other key security officials - Zolotov, Bortnikov, and Kos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OlgaNYC1211","name":"Olga - Lautman \ud83c\uddfa\ud83c\udde6","id":751283435382067202,"id_str":"751283435382067202","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 04:01:46 +0000 2022","id":1507568468278849537,"id_str":"1507568468278849537","text":"Not - only has Shoigu disappeared from the public space, but also other key security - officials - Zolotov, Bortnikov,\u2026 https:\/\/t.co\/wzMOzaNqRa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wzMOzaNqRa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507568468278849537","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":746,"favorite_count":1822,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":746,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258609434835615745\/T_RNOYTC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258609434835615745\/T_RNOYTC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2817349341\/1588910849","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301560624258977793,"id_str":"1301560624258977793","name":"Sanda - Jones","screen_name":"SandaJo00321681","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":1150,"listed_count":0,"created_at":"Thu - Sep 03 16:41:00 +0000 2020","favourites_count":5004,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":833,"lang":null,"status":{"created_at":"Sat - Nov 20 04:28:18 +0000 2021","id":1461914273630797826,"id_str":"1461914273630797826","text":"@SicilianOchi1 - My \ud83d\ude4f\ud83c\udffeare with your family.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SicilianOchi1","name":"\"I - AM SPARTACUS!!\"","id":1404788715872944131,"id_str":"1404788715872944131","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1461555612580388869,"in_reply_to_status_id_str":"1461555612580388869","in_reply_to_user_id":1404788715872944131,"in_reply_to_user_id_str":"1404788715872944131","in_reply_to_screen_name":"SicilianOchi1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301560988500623360\/YFdQqWYY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301560988500623360\/YFdQqWYY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269664069000232960,"id_str":"1269664069000232960","name":"Patrick - Phillips","screen_name":"patphillips108","location":"","description":"a loud - gay | he\/him","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":510,"listed_count":0,"created_at":"Sun - Jun 07 16:14:48 +0000 2020","favourites_count":7562,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":851,"lang":null,"status":{"created_at":"Thu - Mar 17 22:30:19 +0000 2022","id":1504585953712566284,"id_str":"1504585953712566284","text":"RT - @nytimesarts: \u201cRaised by Wolves\u201d is hard to understand and entrancing - to watch, our TV critic says. https:\/\/t.co\/BnFwaHBsJs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nytimesarts","name":"New - York Times Arts","id":1440641,"id_str":"1440641","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/BnFwaHBsJs","expanded_url":"https:\/\/nyti.ms\/3u2ZG7G","display_url":"nyti.ms\/3u2ZG7G","indices":[103,126]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 21:03:17 +0000 2022","id":1504564047601094658,"id_str":"1504564047601094658","text":"\u201cRaised - by Wolves\u201d is hard to understand and entrancing to watch, our TV critic - says. https:\/\/t.co\/BnFwaHBsJs","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BnFwaHBsJs","expanded_url":"https:\/\/nyti.ms\/3u2ZG7G","display_url":"nyti.ms\/3u2ZG7G","indices":[86,109]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":249,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":44,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310411941979074560\/xXsWiqbL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310411941979074560\/xXsWiqbL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269664069000232960\/1606708725","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267864534154383361,"id_str":"1267864534154383361","name":"kathy - lichter","screen_name":"KathyLichter","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":438,"listed_count":0,"created_at":"Tue - Jun 02 17:04:04 +0000 2020","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Wed - Dec 29 03:32:28 +0000 2021","id":1476033349856727041,"id_str":"1476033349856727041","text":"@AvengerResister - @LanceUSA70 he is wearing a rug\u2026..why doesn\u2019t anyone just say that?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AvengerResister","name":"Avenger - Resister","id":1334688905929613312,"id_str":"1334688905929613312","indices":[0,16]},{"screen_name":"LanceUSA70","name":"\u14aa\u15e9\u144e\u1455\u15f4 - \ud83c\udff3\ufe0f\u200d\ud83c\udf08","id":1033751995184762880,"id_str":"1033751995184762880","indices":[17,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1475873631460859912,"in_reply_to_status_id_str":"1475873631460859912","in_reply_to_user_id":1334688905929613312,"in_reply_to_user_id_str":"1334688905929613312","in_reply_to_screen_name":"AvengerResister","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":263299832,"id_str":"263299832","name":"Laetizio - DuMorgaine\ud83c\udf0a\ud83c\uddea\ud83c\uddfa\ud83c\uddf3\ud83c\uddff\ud83c\uddf3\ud83c\uddf4\ud83c\uddee\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8","screen_name":"laetizio","location":"Zagreb, - Croatia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":1529,"listed_count":0,"created_at":"Wed - Mar 09 19:46:46 +0000 2011","favourites_count":2919,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Sun - Nov 15 19:26:45 +0000 2020","id":1328056866790891520,"id_str":"1328056866790891520","text":"@funder - #TrumpConceded","truncated":false,"entities":{"hashtags":[{"text":"TrumpConceded","indices":[8,22]}],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1327981841274564608,"in_reply_to_status_id_str":"1327981841274564608","in_reply_to_user_id":14247236,"in_reply_to_user_id_str":"14247236","in_reply_to_screen_name":"funder","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315310469389975557\/TaVe4Gtq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315310469389975557\/TaVe4Gtq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263299832\/1602429427","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":480237278,"id_str":"480237278","name":"Jerry - Yan","screen_name":"jerry_yan_","location":"Stanford, CA","description":"Now: - @stanfordlaw. Then: @rulesdemocrats, @nvdems, @pomonacollege. Views are mine - only and retweets \u2260 endorsements.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":324,"friends_count":1780,"listed_count":1,"created_at":"Wed - Feb 01 08:22:41 +0000 2012","favourites_count":650,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":91,"lang":null,"status":{"created_at":"Fri - Mar 06 21:54:32 +0000 2020","id":1236047539368906753,"id_str":"1236047539368906753","text":"RT - @RepBobbyRush: In 2012, I wore a hoodie on the House Floor to make a statement - about the deadly consequences of racial profiling. On Wed\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepBobbyRush","name":"Bobby - L. Rush","id":305216911,"id_str":"305216911","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 06 12:35:42 +0000 2020","id":1235906902032355328,"id_str":"1235906902032355328","text":"In - 2012, I wore a hoodie on the House Floor to make a statement about the deadly - consequences of racial profiling.\u2026 https:\/\/t.co\/RzENlWBalq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RzENlWBalq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1235906902032355328","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50803,"favorite_count":177767,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":50803,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/888257629528637443\/qTeDOn-X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888257629528637443\/qTeDOn-X_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":37726575,"id_str":"37726575","name":"Toddmun","screen_name":"asananik","location":"Washington, - DC ","description":"Politics and sports junkie, DC teams fan (Commanders, - Caps, Nats, Wiz, DC United, Mystics) former 808er","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":704,"friends_count":4008,"listed_count":10,"created_at":"Mon - May 04 18:56:14 +0000 2009","favourites_count":6995,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7321,"lang":null,"status":{"created_at":"Fri - Mar 25 22:41:13 +0000 2022","id":1507487796377931776,"id_str":"1507487796377931776","text":"@HawaiiDelilah - A more extreme version of friendly fire during paintball...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HawaiiDelilah","name":"HawaiiDelilah\u2122 - stands with Ukraine","id":164554364,"id_str":"164554364","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507486166437687300,"in_reply_to_status_id_str":"1507486166437687300","in_reply_to_user_id":164554364,"in_reply_to_user_id_str":"164554364","in_reply_to_screen_name":"HawaiiDelilah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504112028801196039\/6_t51UaD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504112028801196039\/6_t51UaD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37726575\/1647402775","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":486879818,"id_str":"486879818","name":"Diane - Hill","screen_name":"dianehill87","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":220,"listed_count":0,"created_at":"Wed - Feb 08 19:28:31 +0000 2012","favourites_count":1059,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Thu - Sep 09 03:28:27 +0000 2021","id":1435807287151501316,"id_str":"1435807287151501316","text":"@chrislhayes - Erin Mendenhall in SLC Utah, look her up!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chrislhayes","name":"Chris - Hayes","id":4207961,"id_str":"4207961","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1435727093556518916,"in_reply_to_status_id_str":"1435727093556518916","in_reply_to_user_id":4207961,"in_reply_to_user_id_str":"4207961","in_reply_to_screen_name":"chrislhayes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165894280,"id_str":"1165894280","name":"Sandy","screen_name":"hanovernh","location":"Hanover, - NH","description":"","url":"https:\/\/t.co\/dTHKqN9U22","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dTHKqN9U22","expanded_url":"http:\/\/www.cblifestylesre.com\/agents\/28085-Sandy-Allen","display_url":"cblifestylesre.com\/agents\/28085-S\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":451,"listed_count":0,"created_at":"Sun - Feb 10 13:15:55 +0000 2013","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":332,"lang":null,"status":{"created_at":"Wed - Jun 23 19:13:37 +0000 2021","id":1407778892329390081,"id_str":"1407778892329390081","text":"RT - @BradBeauregardJ: @joncoopertweets Republicans will be adamantly opposed to - bringing back the talking filibuster because they don''t have\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BradBeauregardJ","name":"Brad - Beauregard Jr \ud83c\uddfa\ud83c\uddf8","id":385162111,"id_str":"385162111","indices":[3,19]},{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[21,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 23 18:34:51 +0000 2021","id":1407769135656931334,"id_str":"1407769135656931334","text":"@joncoopertweets - Republicans will be adamantly opposed to bringing back the talking filibuster - because they don''t h\u2026 https:\/\/t.co\/eL7JRKQdOo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/eL7JRKQdOo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1407769135656931334","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1407757919760928776,"in_reply_to_status_id_str":"1407757919760928776","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":84,"favorite_count":389,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":84,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927306681784131584\/cEkybiDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927306681784131584\/cEkybiDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1165894280\/1515268372","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":341636089,"id_str":"341636089","name":"Dee - Nitu","screen_name":"ghosh_na","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":195,"listed_count":0,"created_at":"Sun - Jul 24 18:08:32 +0000 2011","favourites_count":817,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266381537454567426\/0XGVHjxh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266381537454567426\/0XGVHjxh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307796442908680192,"id_str":"1307796442908680192","name":"JAMES - 1111","screen_name":"CoryCash13","location":"Toronto Canada \ud83c\udde8\ud83c\udde6 - ","description":"I''m christian who loves God \ud83d\udc98\n\nPhilippians - 4:4 Rejoice \n\n Put God first \ud83d\ude4f\nGod loves you all\nHelping you - seek God\nGod''s timing is perfect remember that \ud83d\ude4f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":723,"friends_count":4914,"listed_count":1,"created_at":"Sun - Sep 20 21:40:06 +0000 2020","favourites_count":3046,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2941,"lang":null,"status":{"created_at":"Thu - Sep 02 00:02:52 +0000 2021","id":1433218831967834118,"id_str":"1433218831967834118","text":"@josephisrael21 - Have faith in God everything will work out for you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1420903993849663493\/A6_fwDMG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1420903993849663493\/A6_fwDMG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307796442908680192\/1625969015","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":620510977,"id_str":"620510977","name":"ABernal","screen_name":"a_bernal_j","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":24,"friends_count":350,"listed_count":0,"created_at":"Thu - Jun 28 01:17:12 +0000 2012","favourites_count":390,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392233891784765444\/Ip8RSL37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392233891784765444\/Ip8RSL37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620510977\/1519536415","profile_link_color":"2FC2EF","profile_sidebar_border_color":"BCB302","profile_sidebar_fill_color":"171106","profile_text_color":"8A7302","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90047188,"id_str":"90047188","name":"Valdemar - Malovics","screen_name":"valdemarius","location":"","description":"\ud83c\udf0a\ud83c\uddfa\ud83c\udde6\ud83c\uddea\ud83c\uddfa\ud83c\udde8\ud83c\udde6\ud83c\uddee\ud83c\uddf1\ud83c\uddf3\ud83c\uddf4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":1337,"listed_count":0,"created_at":"Sat - Nov 14 23:36:18 +0000 2009","favourites_count":4734,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"status":{"created_at":"Tue - Mar 15 01:39:33 +0000 2022","id":1503546410041552897,"id_str":"1503546410041552897","text":"@AZ_Brittney - No. How many doses more? 10? 50? And no, it''s not like flu vaccine. Flu vaccine - is once a year, Pfizer\u2026 https:\/\/t.co\/KGZKPrbhg1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AZ_Brittney","name":"\ud83d\udc99Brittney\ud83d\udc99","id":1424033022,"id_str":"1424033022","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/KGZKPrbhg1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503546410041552897","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1503384582871126019,"in_reply_to_status_id_str":"1503384582871126019","in_reply_to_user_id":1424033022,"in_reply_to_user_id_str":"1424033022","in_reply_to_screen_name":"AZ_Brittney","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310828125266358272\/tZcRAXA9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310828125266358272\/tZcRAXA9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90047188\/1601360755","profile_link_color":"827972","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"061127","profile_text_color":"52555C","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16741800,"id_str":"16741800","name":"Neil - Jaehnert","screen_name":"neiljaeh","location":"Milwaukee, WI USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":572,"listed_count":0,"created_at":"Tue - Oct 14 17:07:31 +0000 2008","favourites_count":652,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":324,"lang":null,"status":{"created_at":"Sun - Feb 27 19:22:54 +0000 2022","id":1498015807195865090,"id_str":"1498015807195865090","text":"RT - @macjaeh: Operation Dumpling Drop 2: Return to Richland\n\nMacKenzie and @emilyjaeh - take to the skies again, flying out of Seattle, over t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"macjaeh","name":"mac - jaehnert","id":12914062,"id_str":"12914062","indices":[3,11]},{"screen_name":"emilyjaeh","name":"Emily - Jaehnert","id":25146855,"id_str":"25146855","indices":[74,84]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 18:15:26 +0000 2022","id":1497998827294367745,"id_str":"1497998827294367745","text":"Operation - Dumpling Drop 2: Return to Richland\n\nMacKenzie and @emilyjaeh take to the - skies again, flying out of Seat\u2026 https:\/\/t.co\/O0cqU9UkEX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emilyjaeh","name":"Emily - Jaehnert","id":25146855,"id_str":"25146855","indices":[61,71]}],"urls":[{"url":"https:\/\/t.co\/O0cqU9UkEX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497998827294367745","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256203168259735553\/BygqBuXP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256203168259735553\/BygqBuXP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1031541256172625922,"id_str":"1031541256172625922","name":"Sheila - Kramer","screen_name":"SheilaK74889349","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":233,"listed_count":0,"created_at":"Mon - Aug 20 13:59:35 +0000 2018","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Mon - Mar 07 19:02:31 +0000 2022","id":1500909778171686912,"id_str":"1500909778171686912","text":"@EvanMcMullin - @gtconway3d Korean War","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EvanMcMullin","name":"Evan - McMullin \ud83c\uddfa\ud83c\uddf8","id":1051396218,"id_str":"1051396218","indices":[0,13]},{"screen_name":"gtconway3d","name":"George - Conway\ud83c\udf3b","id":471677441,"id_str":"471677441","indices":[14,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500888511079137285,"in_reply_to_status_id_str":"1500888511079137285","in_reply_to_user_id":1051396218,"in_reply_to_user_id_str":"1051396218","in_reply_to_screen_name":"EvanMcMullin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":219408161,"id_str":"219408161","name":"Spiro - Apostolopoulos","screen_name":"spirona","location":"Raleigh, NC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":1623,"listed_count":0,"created_at":"Wed - Nov 24 19:48:21 +0000 2010","favourites_count":7756,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":110,"lang":null,"status":{"created_at":"Wed - Dec 29 22:05:29 +0000 2021","id":1476313450116694024,"id_str":"1476313450116694024","text":"\u2066@lthomasnews\u2069 - \u2066@BCampbell\u2069 \u2066@morningkombat\u2069 You guys have taken over - Belk!! \ud83d\ude0f#mkallday #michaelwho https:\/\/t.co\/1SQnCPzlNG","truncated":false,"entities":{"hashtags":[{"text":"mkallday","indices":[78,87]},{"text":"michaelwho","indices":[88,99]}],"symbols":[],"user_mentions":[{"screen_name":"lthomasnews","name":"Luke - Thomas","id":43334982,"id_str":"43334982","indices":[1,13]},{"screen_name":"BCampbell","name":"Brian - Campbell","id":251868327,"id_str":"251868327","indices":[16,26]},{"screen_name":"morningkombat","name":"Morning - Kombat","id":911042442006327296,"id_str":"911042442006327296","indices":[29,43]}],"urls":[],"media":[{"id":1476313435906392069,"id_str":"1476313435906392069","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FHzrP4RWQAUK4TV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHzrP4RWQAUK4TV.jpg","url":"https:\/\/t.co\/1SQnCPzlNG","display_url":"pic.twitter.com\/1SQnCPzlNG","expanded_url":"https:\/\/twitter.com\/spirona\/status\/1476313450116694024\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2016,"h":1512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1476313435906392069,"id_str":"1476313435906392069","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/FHzrP4RWQAUK4TV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHzrP4RWQAUK4TV.jpg","url":"https:\/\/t.co\/1SQnCPzlNG","display_url":"pic.twitter.com\/1SQnCPzlNG","expanded_url":"https:\/\/twitter.com\/spirona\/status\/1476313450116694024\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2016,"h":1512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313169431116292098\/r3rpUcyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313169431116292098\/r3rpUcyv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198011448573747202,"id_str":"1198011448573747202","name":"ChaoticGov","screen_name":"GovChaotic","location":"","description":"Public - policy professional; political economics; patriot; #BidenHarris Southern by - birth & ancestry family line to Abolitionists.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2009,"friends_count":4986,"listed_count":2,"created_at":"Fri - Nov 22 22:54:33 +0000 2019","favourites_count":11870,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1201,"lang":null,"status":{"created_at":"Sun - Mar 20 14:42:51 +0000 2022","id":1505555473600327681,"id_str":"1505555473600327681","text":"Why - are they still on Twitter? Block ''em up! https:\/\/t.co\/FEDLFnAyTu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FEDLFnAyTu","expanded_url":"https:\/\/twitter.com\/KremlinTrolls\/status\/1505493902811410436","display_url":"twitter.com\/KremlinTrolls\/\u2026","indices":[45,68]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505493902811410436,"quoted_status_id_str":"1505493902811410436","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1198018989986856960\/pTljvmAI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1198018989986856960\/pTljvmAI_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29377866,"id_str":"29377866","name":"Mark - Juvinall","screen_name":"mjuvinall","location":"Danville Illinois","description":"Danville - High School 1983\r\nEastern Illinois University","url":"http:\/\/t.co\/nVdyXdozfB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/nVdyXdozfB","expanded_url":"http:\/\/www.juvinall.net","display_url":"juvinall.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":1286,"listed_count":1,"created_at":"Tue - Apr 07 04:06:20 +0000 2009","favourites_count":817,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4088,"lang":null,"status":{"created_at":"Fri - Mar 25 04:04:01 +0000 2022","id":1507206645226647553,"id_str":"1507206645226647553","text":"@kayleighmcenany - K. He was a drug addict who was nearly convicted of doctor shopping to feed - his habit. It is a LIE\u2026 https:\/\/t.co\/CowwfDpfC4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kayleighmcenany","name":"Kayleigh - McEnany","id":259001548,"id_str":"259001548","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/CowwfDpfC4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507206645226647553","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507148973454340105,"in_reply_to_status_id_str":"1507148973454340105","in_reply_to_user_id":259001548,"in_reply_to_user_id_str":"259001548","in_reply_to_screen_name":"kayleighmcenany","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502146726744956928\/Yk-EPTO3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502146726744956928\/Yk-EPTO3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29377866\/1353535589","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215184298145468416,"id_str":"1215184298145468416","name":"Patricia - Mbougue","screen_name":"PMbougue","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":149,"listed_count":0,"created_at":"Thu - Jan 09 08:12:03 +0000 2020","favourites_count":2957,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":977,"lang":null,"status":{"created_at":"Mon - Apr 05 12:48:03 +0000 2021","id":1379053217389154312,"id_str":"1379053217389154312","text":"RT - @OfficialMLK3: 53 years ago today, my father was taken from this world. \ud83d\udc94\n\nI - was only 10 years old when my father was killed, but at the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OfficialMLK3","name":"Martin - Luther King III","id":2732591676,"id_str":"2732591676","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Apr 04 14:20:04 +0000 2021","id":1378713985311256579,"id_str":"1378713985311256579","text":"53 - years ago today, my father was taken from this world. \ud83d\udc94\n\nI was - only 10 years old when my father was killed, but\u2026 https:\/\/t.co\/xSpKig9zLa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/xSpKig9zLa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1378713985311256579","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18579,"favorite_count":152644,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18579,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352636845675442177\/6IDgaG8s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352636845675442177\/6IDgaG8s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215184298145468416\/1611328592","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30576155,"id_str":"30576155","name":"Dennis - Box","screen_name":"dbox5219","location":"Enumclaw","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":500,"listed_count":5,"created_at":"Sun - Apr 12 01:55:36 +0000 2009","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2390,"lang":null,"status":{"created_at":"Wed - Mar 10 04:51:09 +0000 2021","id":1369511120105443329,"id_str":"1369511120105443329","text":"RT - @ProjectLincoln: In case you missed it live, watch Lincoln Project Executive - Director @FPWellman join @TaraSetmayer and @TheRickWilson o\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProjectLincoln","name":"The - Lincoln Project","id":1205226529455632385,"id_str":"1205226529455632385","indices":[3,18]},{"screen_name":"FPWellman","name":"Fred - Wellman","id":42518865,"id_str":"42518865","indices":[89,99]},{"screen_name":"TaraSetmayer","name":"Tara - Setmayer \ud83c\udf3b","id":1591400760,"id_str":"1591400760","indices":[105,118]},{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[123,137]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 10 04:29:31 +0000 2021","id":1369505673138950144,"id_str":"1369505673138950144","text":"In - case you missed it live, watch Lincoln Project Executive Director @FPWellman - join @TaraSetmayer and\u2026 https:\/\/t.co\/yeUtykJPgc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FPWellman","name":"Fred - Wellman","id":42518865,"id_str":"42518865","indices":[69,79]},{"screen_name":"TaraSetmayer","name":"Tara - Setmayer \ud83c\udf3b","id":1591400760,"id_str":"1591400760","indices":[85,98]}],"urls":[{"url":"https:\/\/t.co\/yeUtykJPgc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1369505673138950144","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":189,"favorite_count":923,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":189,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/305955980\/SillyFillersWEB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/305955980\/SillyFillersWEB_normal.jpg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":10527092,"id_str":"10527092","name":"Laetitio - Thor DeFrey","screen_name":"laetitio","location":"Zagreb, Croatia","description":"\u0421\u043b\u0430\u0432\u0430 - \u0423\u043a\u0440\u0430\u0457\u043d\u0456! \u0413\u0435\u0440\u043e\u044f\u043c - \u0441\u043b\u0430\u0432\u0430!\nOnce upon a time conservative, now proud - liberal. \ud83c\udf0a,\ud83c\uddfa\ud83c\udde6\ud83c\uddea\ud83c\uddfa\ud83c\udded\ud83c\uddf7\ud83c\uddfa\ud83c\uddf8\ud83c\uddf3\ud83c\uddf4\ud83c\uddf3\ud83c\uddff\ud83c\udde8\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":261,"friends_count":4538,"listed_count":0,"created_at":"Sat - Nov 24 17:05:06 +0000 2007","favourites_count":89056,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":779,"lang":null,"status":{"created_at":"Fri - Mar 25 07:13:10 +0000 2022","id":1507254246449811457,"id_str":"1507254246449811457","text":"@AuschwitzMuseum - \ud83d\udc94\ud83d\udc94\ud83d\udc94","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AuschwitzMuseum","name":"Auschwitz - Memorial","id":586291040,"id_str":"586291040","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507235850484129793,"in_reply_to_status_id_str":"1507235850484129793","in_reply_to_user_id":586291040,"in_reply_to_user_id_str":"586291040","in_reply_to_screen_name":"AuschwitzMuseum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"001500","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302565586912907264\/VHhhpyUv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302565586912907264\/VHhhpyUv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10527092\/1599390812","profile_link_color":"006B46","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"142200","profile_text_color":"506C49","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1284332499913502720,"id_str":"1284332499913502720","name":"COORVALIS","screen_name":"JEsfandiar","location":"","description":"\u200f\u200f\u200f\u062f\u0631 - \u0646\u0638\u0631 \u0628\u0627\u0632\u06cc \u0645\u0627 \u0628\u06cc\u062e\u0628\u0631\u0627\u0646 - \u062d\u06cc\u0631\u0627\u0646\u0646\u062f.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":264,"listed_count":0,"created_at":"Sat - Jul 18 03:42:09 +0000 2020","favourites_count":92,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358154810130800640\/z-4zr7Ii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358154810130800640\/z-4zr7Ii_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309540060187037700,"id_str":"1309540060187037700","name":"Silvamarrymarty","screen_name":"silvamarrymarty","location":"Miami - Beach, FL","description":"I''m simple easy cool going","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":161,"listed_count":0,"created_at":"Fri - Sep 25 17:07:45 +0000 2020","favourites_count":82,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":null,"status":{"created_at":"Sat - Nov 28 14:05:57 +0000 2020","id":1332687176728010752,"id_str":"1332687176728010752","text":"RT - @tompfunder: Great work Brit gotta a lot of work to contain and eradicate - this pestilence of the left all aspects of versions including\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tompfunder","name":"Tom - Pfunder","id":19601568,"id_str":"19601568","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 26 23:53:39 +0000 2020","id":1332110300909330432,"id_str":"1332110300909330432","text":"Great - work Brit gotta a lot of work to contain and eradicate this pestilence of - the left all aspects of versions in\u2026 https:\/\/t.co\/9fQ5T0mplM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9fQ5T0mplM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1332110300909330432","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1331600790759370753,"quoted_status_id_str":"1331600790759370753","retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1331600790759370753,"quoted_status_id_str":"1331600790759370753","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309540379868508165\/TL0kbw99_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309540379868508165\/TL0kbw99_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1202908318873849857,"id_str":"1202908318873849857","name":"Peter - Gladwin","screen_name":"PeterGladwin4","location":"","description":"Humanist - loves music art poetry history","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":108,"listed_count":0,"created_at":"Fri - Dec 06 11:14:09 +0000 2019","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Tue - Nov 03 04:27:00 +0000 2020","id":1323481783258763265,"id_str":"1323481783258763265","text":"@StephenGrootes - @SAfmRadio Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenGrootes","name":"Stephen - Grootes","id":89149050,"id_str":"89149050","indices":[0,15]},{"screen_name":"SAfmRadio","name":"SAfmRadio - \ud83d\udcfb","id":84503659,"id_str":"84503659","indices":[16,26]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1323475740864749569,"in_reply_to_status_id_str":"1323475740864749569","in_reply_to_user_id":89149050,"in_reply_to_user_id_str":"89149050","in_reply_to_screen_name":"StephenGrootes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297887046036529152\/f2QBuBqB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297887046036529152\/f2QBuBqB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":335382357,"id_str":"335382357","name":"Anytime - Fitness","screen_name":"AnytimeBolton","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":192,"listed_count":0,"created_at":"Thu - Jul 14 16:07:57 +0000 2011","favourites_count":4759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":126,"lang":null,"status":{"created_at":"Tue - Mar 22 22:56:13 +0000 2022","id":1506404408908779520,"id_str":"1506404408908779520","text":"@Travisdhanraj - @JustinTrudeau Is there a dislike button \u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Travisdhanraj","name":"Travis - Dhanraj","id":67805368,"id_str":"67805368","indices":[0,14]},{"screen_name":"JustinTrudeau","name":"Justin - Trudeau","id":14260960,"id_str":"14260960","indices":[15,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506259123364630531,"in_reply_to_status_id_str":"1506259123364630531","in_reply_to_user_id":67805368,"in_reply_to_user_id_str":"67805368","in_reply_to_screen_name":"Travisdhanraj","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232463619931037697,"id_str":"1232463619931037697","name":"PayetteforCO8","screen_name":"MrMattPayette","location":"Longmont, - CO","description":"Independent candidate for Congress.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":58,"listed_count":0,"created_at":"Wed - Feb 26 00:33:35 +0000 2020","favourites_count":154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":230,"lang":null,"status":{"created_at":"Mon - Mar 21 15:38:44 +0000 2022","id":1505931923259998210,"id_str":"1505931923259998210","text":"@colatinosvote - Don''t just look at the two parties either. Vote in an independent that lives - and works in the area. #Payette2022","truncated":false,"entities":{"hashtags":[{"text":"Payette2022","indices":[115,127]}],"symbols":[],"user_mentions":[{"screen_name":"colatinosvote","name":"COLatinosVote","id":1337772411500949506,"id_str":"1337772411500949506","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505741714849361925,"in_reply_to_status_id_str":"1505741714849361925","in_reply_to_user_id":1337772411500949506,"in_reply_to_user_id_str":"1337772411500949506","in_reply_to_screen_name":"colatinosvote","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234154514602577920\/YiqbUCS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234154514602577920\/YiqbUCS9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250493190651576320,"id_str":"1250493190651576320","name":"shantomiabd\ud83c\udde7\ud83c\udde9","screen_name":"shantomiabd2","location":"Dhaka, - Bangladesh","description":"Product Photo Editing,Professional clipping Path,Image - hair masking,Photo retouching,Recolor,Color Correction Services.","url":"https:\/\/t.co\/0WCy3jqJkP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0WCy3jqJkP","expanded_url":"http:\/\/www.fiverr.com\/shantomiabd","display_url":"fiverr.com\/shantomiabd","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1362,"friends_count":4993,"listed_count":6,"created_at":"Wed - Apr 15 18:36:34 +0000 2020","favourites_count":1215,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":490,"lang":null,"status":{"created_at":"Mon - Mar 14 18:46:27 +0000 2022","id":1503442449490137088,"id_str":"1503442449490137088","text":"photoshop - hair masking\nlink: https:\/\/t.co\/j5L15lBDPH\n\n#hair_masking #photoshop - #background_removal #clipping_path\u2026 https:\/\/t.co\/AQSOIqy9ab","truncated":true,"entities":{"hashtags":[{"text":"hair_masking","indices":[54,67]},{"text":"photoshop","indices":[68,78]},{"text":"background_removal","indices":[79,98]},{"text":"clipping_path","indices":[99,113]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j5L15lBDPH","expanded_url":"https:\/\/www.fiverr.com\/s2\/19aca7efc5","display_url":"fiverr.com\/s2\/19aca7efc5","indices":[29,52]},{"url":"https:\/\/t.co\/AQSOIqy9ab","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503442449490137088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1275110111074119680\/RxMpYzYA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1275110111074119680\/RxMpYzYA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250493190651576320\/1595839540","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":396588575,"id_str":"396588575","name":"madison - gross","screen_name":"madisong113","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":728,"listed_count":0,"created_at":"Sun - Oct 23 13:56:07 +0000 2011","favourites_count":50,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Wed - Mar 04 12:09:07 +0000 2020","id":1235175439473266688,"id_str":"1235175439473266688","text":"https:\/\/t.co\/OURMF5yNjR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1235024148935696384,"id_str":"1235024148935696384","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1235024148935696384\/img\/Qzqc8wMrXzV2iTgf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1235024148935696384\/img\/Qzqc8wMrXzV2iTgf.jpg","url":"https:\/\/t.co\/OURMF5yNjR","display_url":"pic.twitter.com\/OURMF5yNjR","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1235063671161860096\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1235063671161860096,"source_status_id_str":"1235063671161860096","source_user_id":1917731,"source_user_id_str":"1917731"}]},"extended_entities":{"media":[{"id":1235024148935696384,"id_str":"1235024148935696384","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1235024148935696384\/img\/Qzqc8wMrXzV2iTgf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1235024148935696384\/img\/Qzqc8wMrXzV2iTgf.jpg","url":"https:\/\/t.co\/OURMF5yNjR","display_url":"pic.twitter.com\/OURMF5yNjR","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1235063671161860096\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1235063671161860096,"source_status_id_str":"1235063671161860096","source_user_id":1917731,"source_user_id_str":"1917731","video_info":{"aspect_ratio":[16,9],"duration_millis":33467,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1235024148935696384\/pl\/r0brvtqtLctQUynz.m3u8?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235024148935696384\/vid\/1280x720\/iAETLQq9NpXG2I5-.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235024148935696384\/vid\/640x360\/5fYrFu01jraZpxDv.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1235024148935696384\/vid\/480x270\/TZNELAOX-kOPyFJF.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":true}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825779924,"id_str":"825779924","name":"guywhomountains","screen_name":"johnba17","location":"Colorado, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":1171,"listed_count":0,"created_at":"Sat - Sep 15 18:54:19 +0000 2012","favourites_count":5822,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1184,"lang":null,"status":{"created_at":"Sun - Mar 20 05:39:49 +0000 2022","id":1505418815638683649,"id_str":"1505418815638683649","text":"RT - @donie: Damn John C. Reilly can sing.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donie","name":"Donie - O''Sullivan","id":230787751,"id_str":"230787751","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 20 02:59:39 +0000 2022","id":1505378506166915074,"id_str":"1505378506166915074","text":"Damn - John C. Reilly can sing. https:\/\/t.co\/w3bE0CqvUi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/w3bE0CqvUi","expanded_url":"https:\/\/twitter.com\/rtelatelateshow\/status\/1504579880851226634","display_url":"twitter.com\/rtelatelatesho\u2026","indices":[30,53]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504579880851226634,"quoted_status_id_str":"1504579880851226634","retweet_count":136,"favorite_count":2110,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1504579880851226634,"quoted_status_id_str":"1504579880851226634","retweet_count":136,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979221445246033920\/ZVhWaElT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979221445246033920\/ZVhWaElT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/825779924\/1520973549","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249952076,"id_str":"1249952076","name":"j","screen_name":"FLYINGPICKEL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":92,"listed_count":0,"created_at":"Thu - Mar 07 20:16:52 +0000 2013","favourites_count":5509,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":536,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780419479947743232,"id_str":"780419479947743232","name":"Elaine - Gray","screen_name":"IMRAeag","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":1602,"listed_count":0,"created_at":"Mon - Sep 26 14:51:18 +0000 2016","favourites_count":32455,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3903,"lang":null,"status":{"created_at":"Thu - Mar 24 15:21:57 +0000 2022","id":1507014865205952520,"id_str":"1507014865205952520","text":"@DrOz - You\u2019re not burnishing your image with this tweet","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506747211257978889,"in_reply_to_status_id_str":"1506747211257978889","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":625510209,"id_str":"625510209","name":"Be - a voice\u00b6","screen_name":"austinbanks22","location":"Oude Meer, Haarlemmermeer","description":"confident,ambitious - and charming\nAcu-therapist,writer,copywriter, Nutritionist, Ayurvedic..\ud83d\udc9a\ud83c\udf31\ud83e\udd1d\ud83c\udf40\ud83d\ude80","url":"https:\/\/t.co\/mkNAL7Ae9j","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mkNAL7Ae9j","expanded_url":"http:\/\/www.linkedinpulse-austinkaymaz.com","display_url":"linkedinpulse-austinkaymaz.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1233,"friends_count":5002,"listed_count":0,"created_at":"Tue - Jul 03 09:57:40 +0000 2012","favourites_count":42799,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21577,"lang":null,"status":{"created_at":"Sat - Mar 26 08:22:47 +0000 2022","id":1507634154611134464,"id_str":"1507634154611134464","text":"RT - @MaryMungai72: Drop Handles \ud83d\uddfdlet''s follow you Now \u2764\ufe0f.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryMungai72","name":"Mary - - Mungai \u2728","id":1187054822001913861,"id_str":"1187054822001913861","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:00:38 +0000 2022","id":1507628581182128128,"id_str":"1507628581182128128","text":"Drop - Handles \ud83d\uddfdlet''s follow you Now \u2764\ufe0f.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":163,"favorite_count":342,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":163,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1405359447665381376\/1ov-KmX6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1405359447665381376\/1ov-KmX6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625510209\/1610344124","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":173969595,"id_str":"173969595","name":"Shelly - Watson","screen_name":"Shelly53005","location":"","description":"Beer lawyer, - avid Jayhawks & Chiefs fan, mom.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":953,"listed_count":0,"created_at":"Mon - Aug 02 20:13:10 +0000 2010","favourites_count":12497,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":99,"lang":null,"status":{"created_at":"Thu - Dec 16 23:56:42 +0000 2021","id":1471630394160304133,"id_str":"1471630394160304133","text":"@Zimmerino - TaskRabbit","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Zimmerino","name":"Lisa - Zimmer","id":28232449,"id_str":"28232449","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1471618205902901253,"in_reply_to_status_id_str":"1471618205902901253","in_reply_to_user_id":28232449,"in_reply_to_user_id_str":"28232449","in_reply_to_screen_name":"Zimmerino","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"sv"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319074531336736768\/1dtp1rVz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319074531336736768\/1dtp1rVz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173969595\/1603326964","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":563737564,"id_str":"563737564","name":"bharatkumar - patni","screen_name":"patnipinky72","location":"Lasur, India","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":930,"listed_count":0,"created_at":"Thu - Apr 26 13:45:03 +0000 2012","favourites_count":10175,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":34,"lang":null,"status":{"created_at":"Sun - May 16 02:59:32 +0000 2021","id":1393763014722002953,"id_str":"1393763014722002953","text":"@Abhishekkar_ - Sugar corn cotton yarn and infra stock","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Abhishekkar_","name":"Abhishek - Kar","id":2391945348,"id_str":"2391945348","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1393588481474113539,"in_reply_to_status_id_str":"1393588481474113539","in_reply_to_user_id":2391945348,"in_reply_to_user_id_str":"2391945348","in_reply_to_screen_name":"Abhishekkar_","geo":null,"coordinates":null,"place":{"id":"4c6bf2b7c14c8f88","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4c6bf2b7c14c8f88.json","place_type":"admin","name":"Maharashtra","full_name":"Maharashtra, - India","country_code":"IN","country":"India","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[72.64293,15.606794],[80.899558,15.606794],[80.899558,22.029028],[72.64293,22.029028]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":228492818,"id_str":"228492818","name":"Linda - Evans","screen_name":"grnyof2","location":"Tennessee, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":351,"listed_count":0,"created_at":"Sun - Dec 19 21:56:47 +0000 2010","favourites_count":10541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":310,"lang":null,"status":{"created_at":"Thu - Dec 16 13:11:34 +0000 2021","id":1471468043834478595,"id_str":"1471468043834478595","text":"Please - stop talking over each other. Steve and Ansley always interrupt. So annoying. Can\u2019t - watch","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219980003393273856\/YYNfpqnH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219980003393273856\/YYNfpqnH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":98456258,"id_str":"98456258","name":"Susan - Silverman","screen_name":"sistergoldfinch","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":953,"listed_count":0,"created_at":"Mon - Dec 21 19:48:17 +0000 2009","favourites_count":36778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":255,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":944939831687131138,"id_str":"944939831687131138","name":"WinklerScott7","screen_name":"Scott7Winkler","location":"Bakersfield, - CA","description":"I\u2019m not that fat","url":"https:\/\/t.co\/8C9g76Yfjo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8C9g76Yfjo","expanded_url":"http:\/\/theshafterlawyer.com","display_url":"theshafterlawyer.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":257,"listed_count":0,"created_at":"Sun - Dec 24 14:36:26 +0000 2017","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Wed - Mar 24 05:31:27 +0000 2021","id":1374594688527659018,"id_str":"1374594688527659018","text":"RT - @Scott7Winkler: Will Deshaun ever take another snap in the NFL?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Scott7Winkler","name":"WinklerScott7","id":944939831687131138,"id_str":"944939831687131138","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 24 05:20:47 +0000 2021","id":1374592007285264384,"id_str":"1374592007285264384","text":"Will - Deshaun ever take another snap in the NFL?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317718274952458240\/qP4iJRHR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317718274952458240\/qP4iJRHR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16745234,"id_str":"16745234","name":"madre - marianne","screen_name":"mgillian","location":"california","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":220,"listed_count":0,"created_at":"Tue - Oct 14 20:30:56 +0000 2008","favourites_count":4751,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":156,"lang":null,"status":{"created_at":"Mon - Mar 21 15:10:10 +0000 2022","id":1505924736131366916,"id_str":"1505924736131366916","text":"RT - @Enphase: Q: Does getting solar make sense with an old roof?\n \nA: The short - answer is yes! Keep in mind how much you\u2019ll save when you in\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Enphase","name":"Enphase - Energy","id":250395496,"id_str":"250395496","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 14:11:23 +0000 2022","id":1505909943047798789,"id_str":"1505909943047798789","text":"Q: - Does getting solar make sense with an old roof?\n \nA: The short answer is - yes! Keep in mind how much you\u2019ll save\u2026 https:\/\/t.co\/fksoL4l3kw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fksoL4l3kw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505909943047798789","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":28,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347993461987831808\/JAkfkYEg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347993461987831808\/JAkfkYEg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45116434,"id_str":"45116434","name":"Joy - Anzalone","screen_name":"joypeacebliss","location":"Baywood Park, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":425,"listed_count":0,"created_at":"Sat - Jun 06 11:59:15 +0000 2009","favourites_count":3683,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Tue - Mar 15 23:39:39 +0000 2022","id":1503878623794659329,"id_str":"1503878623794659329","text":"RT - @NewsHour: The Senate unanimously approved a measure that would make daylight - saving time permanent across the United States next year.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NewsHour","name":"PBS - NewsHour","id":14437914,"id_str":"14437914","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 23:02:00 +0000 2022","id":1503869150485229573,"id_str":"1503869150485229573","text":"The - Senate unanimously approved a measure that would make daylight saving time - permanent across the United States n\u2026 https:\/\/t.co\/4Gvzl93BHa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4Gvzl93BHa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503869150485229573","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":77,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304822357656125440\/N23ioXIg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304822357656125440\/N23ioXIg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45116434\/1599928869","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2304416916,"id_str":"2304416916","name":"Ceren - UYSAL","screen_name":"ceren_senem","location":"Budapest, Hungary","description":"Business - & Diplomacy","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":129,"friends_count":504,"listed_count":1,"created_at":"Wed - Jan 22 07:41:17 +0000 2014","favourites_count":1361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":549,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1283934144872030210\/ktUQeYRY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1283934144872030210\/ktUQeYRY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304416916\/1492612086","profile_link_color":"00ADB3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4248851654,"id_str":"4248851654","name":"johnbollocks - the rag man","screen_name":"hbsurfpch","location":"Huntington Beach, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":349,"listed_count":0,"created_at":"Sun - Nov 15 19:43:13 +0000 2015","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Sat - Feb 19 17:10:59 +0000 2022","id":1495083504639492100,"id_str":"1495083504639492100","text":"@AOC - My only advice is to keep living in his head, Rent Free. And hold your head - up high and be proud of your accom\u2026 https:\/\/t.co\/TyndQr40UZ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AOC","name":"Alexandria - Ocasio-Cortez","id":138203134,"id_str":"138203134","indices":[0,4]}],"urls":[{"url":"https:\/\/t.co\/TyndQr40UZ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495083504639492100","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495077033201872904,"in_reply_to_status_id_str":"1495077033201872904","in_reply_to_user_id":138203134,"in_reply_to_user_id_str":"138203134","in_reply_to_screen_name":"AOC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/665980087351676928\/YuMs2NkE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/665980087351676928\/YuMs2NkE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4248851654\/1453843521","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":949467897591672832,"id_str":"949467897591672832","name":"Wellmaybe","screen_name":"Wellmaybe2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":81,"listed_count":0,"created_at":"Sat - Jan 06 02:29:21 +0000 2018","favourites_count":241,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":127,"lang":null,"status":{"created_at":"Mon - Mar 21 19:31:10 +0000 2022","id":1505990421045993482,"id_str":"1505990421045993482","text":"RT - @SpenceTaxGeek: @imillhiser \u201cFalsehood flies, and the Truth comes limping - after it; so that when Men come to be undeceiv\u2019d, it is too la\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpenceTaxGeek","name":"David - Spence","id":133368738,"id_str":"133368738","indices":[3,17]},{"screen_name":"imillhiser","name":"Ian - Millhiser","id":26165922,"id_str":"26165922","indices":[19,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 18:42:36 +0000 2022","id":1505978196252004352,"id_str":"1505978196252004352","text":"@imillhiser - \u201cFalsehood flies, and the Truth comes limping after it; so that when - Men come to be undeceiv\u2019d, it is t\u2026 https:\/\/t.co\/jRCWJ8gGiq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"imillhiser","name":"Ian - Millhiser","id":26165922,"id_str":"26165922","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/jRCWJ8gGiq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505978196252004352","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505941313446981632,"in_reply_to_status_id_str":"1505941313446981632","in_reply_to_user_id":26165922,"in_reply_to_user_id_str":"26165922","in_reply_to_screen_name":"imillhiser","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":34,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2177445879,"id_str":"2177445879","name":"Mike - Bencal","screen_name":"mikebencal","location":"Anytown, USA","description":"Lawyer, - sports fan, knucklehead","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":179,"listed_count":0,"created_at":"Mon - Nov 11 22:41:31 +0000 2013","favourites_count":7719,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":500,"lang":null,"status":{"created_at":"Tue - Mar 22 21:44:53 +0000 2022","id":1506386458835308545,"id_str":"1506386458835308545","text":"I - just want to know if Judge Jackson likes beer!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481842134290513932\/czof3z5a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481842134290513932\/czof3z5a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2177445879\/1642133671","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":103580129,"id_str":"103580129","name":"Mike - Schelstrate","screen_name":"mschelstrate","location":"Austin, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":3615,"listed_count":0,"created_at":"Sun - Jan 10 14:24:49 +0000 2010","favourites_count":45779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1110722392387715074,"id_str":"1110722392387715074","name":"Jim","screen_name":"Jim97594656","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":882,"listed_count":0,"created_at":"Wed - Mar 27 01:57:09 +0000 2019","favourites_count":7486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":309782605,"id_str":"309782605","name":"Woodwardea","screen_name":"WoodwardWilliam","location":"2s","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":42,"listed_count":0,"created_at":"Thu - Jun 02 17:20:34 +0000 2011","favourites_count":822,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Tue - Jun 29 22:29:51 +0000 2021","id":1410002602381639683,"id_str":"1410002602381639683","text":"RT - @donwinslow: BREAKING! I am excited today to announce:\n\n#DonWinslowBookClub\n\n*NO - FEE* \n\nJUST GREAT BOOKS and GREAT AUTHORS.\n\nAs the s\u2026","truncated":false,"entities":{"hashtags":[{"text":"DonWinslowBookClub","indices":[60,79]}],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 29 15:57:49 +0000 2021","id":1409903942746591243,"id_str":"1409903942746591243","text":"BREAKING! I - am excited today to announce:\n\n#DonWinslowBookClub\n\n*NO FEE* \n\nJUST - GREAT BOOKS and GREAT AUTHORS.\u2026 https:\/\/t.co\/ktVuuB9yBL","truncated":true,"entities":{"hashtags":[{"text":"DonWinslowBookClub","indices":[44,63]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ktVuuB9yBL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1409903942746591243","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1552,"favorite_count":8534,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1552,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379600176\/227_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379600176\/227_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":728776810301808640,"id_str":"728776810301808640","name":"Dana - Corbo","screen_name":"danacorbo","location":"Scottsdale, AZ","description":"#Election2016","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":486,"listed_count":0,"created_at":"Sat - May 07 02:41:46 +0000 2016","favourites_count":217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Fri - Aug 20 01:54:18 +0000 2021","id":1428535836472135680,"id_str":"1428535836472135680","text":"@btrcalltyrone - I\u2019ll circle back on this","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"btrcalltyrone","name":"miesje - corbo","id":537943167,"id_str":"537943167","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1428532312308916225,"in_reply_to_status_id_str":"1428532312308916225","in_reply_to_user_id":537943167,"in_reply_to_user_id_str":"537943167","in_reply_to_screen_name":"btrcalltyrone","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/728789813919260672\/8sQ1RQ4H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/728789813919260672\/8sQ1RQ4H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/728776810301808640\/1462592110","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2233600069,"id_str":"2233600069","name":"lhdsk","screen_name":"lhdsk","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":61,"listed_count":0,"created_at":"Fri - Dec 06 22:18:36 +0000 2013","favourites_count":2277,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74,"lang":null,"status":{"created_at":"Sun - Nov 15 14:25:26 +0000 2020","id":1327981035813036032,"id_str":"1327981035813036032","text":"@NickAdamsinUSA - And you live in my city, perfect...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NickAdamsinUSA","name":"Nick - Adams","id":91583544,"id_str":"91583544","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1327411473073774593,"in_reply_to_status_id_str":"1327411473073774593","in_reply_to_user_id":91583544,"in_reply_to_user_id_str":"91583544","in_reply_to_screen_name":"NickAdamsinUSA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2202143846,"id_str":"2202143846","name":"Luis - E. Ocando B. #SocialDistancing","screen_name":"LuisOcando12","location":"Panam\u00e1","description":"Country - Managing Partner and Tax&Legal Leader EY Panam\u00e1 \/ Tax Policy Leader - Latam North. Nac\u00ed en Venezuela en 1964, nacionalizado Paname\u00f1o en - 2014.","url":"https:\/\/t.co\/svwg9Q1p7N","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/svwg9Q1p7N","expanded_url":"http:\/\/www.ey.com","display_url":"ey.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":765,"friends_count":2349,"listed_count":3,"created_at":"Mon - Nov 18 23:29:13 +0000 2013","favourites_count":981,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3190,"lang":null,"status":{"created_at":"Fri - Jul 09 19:43:50 +0000 2021","id":1413584702607351812,"id_str":"1413584702607351812","text":"@alejandraoraa - Yo alzo mi mano.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alejandraoraa","name":"Alejandra - Oraa","id":18303002,"id_str":"18303002","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1413465428668653569,"in_reply_to_status_id_str":"1413465428668653569","in_reply_to_user_id":18303002,"in_reply_to_user_id_str":"18303002","in_reply_to_screen_name":"alejandraoraa","geo":null,"coordinates":null,"place":{"id":"010fd77520d2d48a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/010fd77520d2d48a.json","place_type":"city","name":"Cartagena","full_name":"Cartagena, - Colombia","country_code":"CO","country":"Colombia","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-75.7963995991266,10.084246948495],[-75.3028709985244,10.084246948495],[-75.3028709985244,10.6966503541964],[-75.7963995991266,10.6966503541964]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278763833566339072\/bxRktTSe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278763833566339072\/bxRktTSe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2202143846\/1585060236","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240085097753251842,"id_str":"1240085097753251842","name":"Robert - Graves","screen_name":"RobertG55001317","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":415,"listed_count":0,"created_at":"Wed - Mar 18 01:19:00 +0000 2020","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312443187814903813,"id_str":"1312443187814903813","name":"Jordan - Bellings","screen_name":"BellingsJordan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":267,"listed_count":0,"created_at":"Sat - Oct 03 17:23:42 +0000 2020","favourites_count":1275,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Sun - Jan 31 16:29:53 +0000 2021","id":1355916223138181120,"id_str":"1355916223138181120","text":"Jeff - Bezos: Doge4Amazon - Accept Dogecoin as a payment method - Sign the Petition! - https:\/\/t.co\/EpDiohOtiR via\u2026 https:\/\/t.co\/5zgftsGZZW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EpDiohOtiR","expanded_url":"http:\/\/chng.it\/8bmDzqPN","display_url":"chng.it\/8bmDzqPN","indices":[83,106]},{"url":"https:\/\/t.co\/5zgftsGZZW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1355916223138181120","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314277236493647874\/XUiYrI4h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314277236493647874\/XUiYrI4h_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":380130074,"id_str":"380130074","name":"First8176","screen_name":"ReaganMpadi","location":"United - States ","description":"Don''t let fear hold you back. Be willing to take - a risk as you pursue your dreams and goals.","url":"https:\/\/t.co\/SXlltGnvgd","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SXlltGnvgd","expanded_url":"https:\/\/www.twitch.tv\/regankkb","display_url":"twitch.tv\/regankkb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":1129,"listed_count":1,"created_at":"Mon - Sep 26 03:44:39 +0000 2011","favourites_count":282,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":504,"lang":null,"status":{"created_at":"Sat - Jun 19 18:15:40 +0000 2021","id":1406314755124600834,"id_str":"1406314755124600834","text":"@brfootball - Water only!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brfootball","name":"B\/R - Football","id":1561123663,"id_str":"1561123663","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1406301571344961540,"in_reply_to_status_id_str":"1406301571344961540","in_reply_to_user_id":1561123663,"in_reply_to_user_id_str":"1561123663","in_reply_to_screen_name":"brfootball","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500959500211208193\/8uQ-RUjQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500959500211208193\/8uQ-RUjQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380130074\/1646691646","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":856541402,"id_str":"856541402","name":"Linda - Aldrich","screen_name":"LindaAldrich3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":249,"listed_count":0,"created_at":"Mon - Oct 01 15:21:40 +0000 2012","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Sun - Oct 14 17:22:52 +0000 2012","id":257531932190060544,"id_str":"257531932190060544","text":"@FreemanShackled - @WhoopiGoldberg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WhoopiGoldberg","name":"Whoopi - Goldberg","id":284602545,"id_str":"284602545","indices":[17,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1595998633,"id_str":"1595998633","name":"Guy - Gugliotta","screen_name":"guygugliotta","location":"New York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":244,"listed_count":1,"created_at":"Mon - Jul 15 14:29:18 +0000 2013","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12,"lang":null,"status":{"created_at":"Fri - Jul 17 01:32:13 +0000 2020","id":1283937520636624896,"id_str":"1283937520636624896","text":"@thedailybeast - Terrible news to lose @csdickey. A wonderful friend and reporter. From all - of us in Cebtral America\u2026 https:\/\/t.co\/tU736NJ2JC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thedailybeast","name":"The - Daily Beast","id":16012783,"id_str":"16012783","indices":[0,14]},{"screen_name":"csdickey","name":"csdickey","id":17645400,"id_str":"17645400","indices":[37,46]}],"urls":[{"url":"https:\/\/t.co\/tU736NJ2JC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1283937520636624896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1283931031683231744,"in_reply_to_status_id_str":"1283931031683231744","in_reply_to_user_id":16012783,"in_reply_to_user_id_str":"16012783","in_reply_to_screen_name":"thedailybeast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/811275716910137344\/kwFHNvGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/811275716910137344\/kwFHNvGG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307863710271111168,"id_str":"1307863710271111168","name":"Oland - Panick","screen_name":"oland_panick","location":"Mesa Arizona","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":65,"listed_count":0,"created_at":"Mon - Sep 21 02:06:43 +0000 2020","favourites_count":792,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":111,"lang":null,"status":{"created_at":"Sun - Nov 08 00:05:05 +0000 2020","id":1325227808386215936,"id_str":"1325227808386215936","text":"@chelliebeach954 - @JasonStealth The moron has spoken","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chelliebeach954","name":"Michelle","id":2663584345,"id_str":"2663584345","indices":[0,16]},{"screen_name":"JasonStealth","name":"Jason - Stealth","id":318821327,"id_str":"318821327","indices":[17,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1325204612312301568,"in_reply_to_status_id_str":"1325204612312301568","in_reply_to_user_id":2663584345,"in_reply_to_user_id_str":"2663584345","in_reply_to_screen_name":"chelliebeach954","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308836174610329600\/kT_DFHNQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308836174610329600\/kT_DFHNQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":118119798,"id_str":"118119798","name":"Daniel - Acelas","screen_name":"dacelas","location":"Colombia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":2012,"listed_count":0,"created_at":"Sat - Feb 27 17:21:08 +0000 2010","favourites_count":28030,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":337,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20713253,"id_str":"20713253","name":"Duane - Oakes","screen_name":"drjkb","location":"Downingtown, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":1639,"listed_count":1,"created_at":"Thu - Feb 12 20:20:17 +0000 2009","favourites_count":32011,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":871,"lang":null,"status":{"created_at":"Sat - Feb 19 18:16:09 +0000 2022","id":1495099903621611522,"id_str":"1495099903621611522","text":"@KeeleyFox29 - @SEPTA @PhillyPolice @FOX29philly \ud83e\udd26\u200d\u2642\ufe0f\ud83e\udd37\u200d\u2642\ufe0f\ud83d\ude1e","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeeleyFox29","name":"Steve - Keeley","id":603155306,"id_str":"603155306","indices":[0,12]},{"screen_name":"SEPTA","name":"SEPTA","id":16358930,"id_str":"16358930","indices":[13,19]},{"screen_name":"PhillyPolice","name":"Philadelphia - Police","id":73491087,"id_str":"73491087","indices":[20,33]},{"screen_name":"FOX29philly","name":"FOX - 29","id":14787713,"id_str":"14787713","indices":[34,46]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495086880857427969,"in_reply_to_status_id_str":"1495086880857427969","in_reply_to_user_id":603155306,"in_reply_to_user_id_str":"603155306","in_reply_to_screen_name":"KeeleyFox29","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":111918590,"id_str":"111918590","name":"M - Perry","screen_name":"MrsPerfectPerry","location":"","description":"Married - to Mr. Perfect Perry","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":28,"friends_count":818,"listed_count":0,"created_at":"Sat - Feb 06 16:00:34 +0000 2010","favourites_count":491,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263046997457674240\/iMx9cPo9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263046997457674240\/iMx9cPo9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111918590\/1589968847","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1979552144,"id_str":"1979552144","name":"Chonker","screen_name":"zakarayya","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":559,"listed_count":2,"created_at":"Mon - Oct 21 18:07:36 +0000 2013","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Nov 10 01:28:50 +0000 2018","id":1061068130431070208,"id_str":"1061068130431070208","text":"@elonmusk - Make the seat heaters more powerful please. They\u2019re super weak. Thanks.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1060759329039515648,"in_reply_to_status_id_str":"1060759329039515648","in_reply_to_user_id":44196397,"in_reply_to_user_id_str":"44196397","in_reply_to_screen_name":"elonmusk","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":936901645245431809,"id_str":"936901645245431809","name":"Neam","screen_name":"chhayne4m","location":"Cambodia","description":"\u2764\ufe0flove\u2764\ufe0f\u26bd\ufe0ffootball\u26bd\ufe0f\u2696\ufe0flaw\u2696\ufe0f\ud83c\udf0fpolitics\ud83c\udf0f\ud83c\udfb6music\ud83c\udfb6\ud83d\udddenews\ud83d\uddde\ud83c\udfaegame\ud83c\udfae","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":691,"listed_count":0,"created_at":"Sat - Dec 02 10:15:34 +0000 2017","favourites_count":2343,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57,"lang":null,"status":{"created_at":"Sun - Nov 28 04:31:57 +0000 2021","id":1464814294726430726,"id_str":"1464814294726430726","text":"#CHEMUN - via @premierleague https:\/\/t.co\/0Z1XbAUxkv","truncated":false,"entities":{"hashtags":[{"text":"CHEMUN","indices":[0,7]}],"symbols":[],"user_mentions":[{"screen_name":"premierleague","name":"Premier - League","id":343627165,"id_str":"343627165","indices":[12,26]}],"urls":[{"url":"https:\/\/t.co\/0Z1XbAUxkv","expanded_url":"http:\/\/www.premierleague.com\/match\/66466","display_url":"premierleague.com\/match\/66466","indices":[27,50]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1434155337351712768\/-WrzNU6D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1434155337351712768\/-WrzNU6D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936901645245431809\/1643056813","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302341454677893120,"id_str":"1302341454677893120","name":"Arzell","screen_name":"Arzell38548852","location":"Detroit, - MI","description":"why the fuck is my account suspended???","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":669,"listed_count":0,"created_at":"Sat - Sep 05 20:23:16 +0000 2020","favourites_count":20921,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23195,"lang":null,"status":{"created_at":"Wed - Dec 29 03:56:15 +0000 2021","id":1476039333090111499,"id_str":"1476039333090111499","text":"RT - @JYSexton: With the thirtieth anniversary of the fall of the Soviet Union, - we have to face a hard truth: everyone lost the Cold War.\n\nDe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JYSexton","name":"Jared - Yates Sexton","id":325385270,"id_str":"325385270","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Dec 27 16:15:58 +0000 2021","id":1475500715753807892,"id_str":"1475500715753807892","text":"With - the thirtieth anniversary of the fall of the Soviet Union, we have to face - a hard truth: everyone lost the Col\u2026 https:\/\/t.co\/zBswywrRhm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zBswywrRhm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1475500715753807892","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":224,"favorite_count":757,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":224,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464635660753674243\/DULlFndF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464635660753674243\/DULlFndF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1302341454677893120\/1604857215","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1175563207185973249,"id_str":"1175563207185973249","name":"Jill - Berner","screen_name":"berner_jill","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":508,"listed_count":0,"created_at":"Sun - Sep 22 00:11:48 +0000 2019","favourites_count":5135,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sat - Mar 06 00:46:19 +0000 2021","id":1367999953927278593,"id_str":"1367999953927278593","text":"@nicholas_bagley - Amazing story!! My 16 year old daughter was diagnosed with T1D at 14 months - old. Haven\u2019t slept through the night yet!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicholas_bagley","name":"Nicholas - Bagley","id":2191120380,"id_str":"2191120380","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1367843865038839808,"in_reply_to_status_id_str":"1367843865038839808","in_reply_to_user_id":2191120380,"in_reply_to_user_id_str":"2191120380","in_reply_to_screen_name":"nicholas_bagley","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":955178308785836038,"id_str":"955178308785836038","name":"Jay - Dowd","screen_name":"JayDowd13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":330,"listed_count":0,"created_at":"Sun - Jan 21 20:40:29 +0000 2018","favourites_count":67,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"status":{"created_at":"Sun - Feb 27 10:50:05 +0000 2022","id":1497886752756965382,"id_str":"1497886752756965382","text":"It - is time to say it out loud. Donald Trump has earned his actual title \u201cQuisling\u201d.\n\nLook - it up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161371851236564992\/97ewmAtT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161371851236564992\/97ewmAtT_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":994437127,"id_str":"994437127","name":"Charles - Craton","screen_name":"chazcraton3","location":"Rome, Georgia","description":"Dad, - Entrepreneur, promotional products dude, Marketing Guru, and all around nice - guy...most of the time.","url":"https:\/\/t.co\/GyeEOhs9oB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GyeEOhs9oB","expanded_url":"http:\/\/www.cratonpromotions.com","display_url":"cratonpromotions.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":1210,"listed_count":11,"created_at":"Fri - Dec 07 05:41:35 +0000 2012","favourites_count":4500,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4125,"lang":null,"status":{"created_at":"Fri - Mar 25 17:31:12 +0000 2022","id":1507409779630944256,"id_str":"1507409779630944256","text":"RT - @matthewjdowd: Let this sink in: a gop president, gop senators, gop representatives, - and the wife of a supreme court justice were direct\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"matthewjdowd","name":"Matthew - Dowd","id":288363743,"id_str":"288363743","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:04:11 +0000 2022","id":1507387881278611497,"id_str":"1507387881278611497","text":"Let - this sink in: a gop president, gop senators, gop representatives, and the - wife of a supreme court justice were\u2026 https:\/\/t.co\/2oFVYMRYMb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2oFVYMRYMb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507387881278611497","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16678,"favorite_count":60486,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16678,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604447390008012801\/QCaZBS_v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604447390008012801\/QCaZBS_v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/994437127\/1355415470","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33790642,"id_str":"33790642","name":"Tim - williams","screen_name":"TimWilliamsLI","location":"Long Island New York","description":"RTs - don''t imply agreement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":557,"friends_count":4488,"listed_count":2,"created_at":"Tue - Apr 21 03:16:12 +0000 2009","favourites_count":251,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2856,"lang":null,"status":{"created_at":"Mon - Mar 21 22:24:17 +0000 2022","id":1506033986505695241,"id_str":"1506033986505695241","text":"RT - @WrestleOps: I will always take the opportunity during Mania season to show - appreciation for my favorite #WrestleMania stage of all time\u2026","truncated":false,"entities":{"hashtags":[{"text":"WrestleMania","indices":[108,121]}],"symbols":[],"user_mentions":[{"screen_name":"WrestleOps","name":"Wrestle - Ops","id":1327630782035341314,"id_str":"1327630782035341314","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 15:38:08 +0000 2022","id":1505931773028577280,"id_str":"1505931773028577280","text":"I - will always take the opportunity during Mania season to show appreciation - for my favorite #WrestleMania stage of\u2026 https:\/\/t.co\/4kFKF2Io7O","truncated":true,"entities":{"hashtags":[{"text":"WrestleMania","indices":[92,105]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4kFKF2Io7O","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505931773028577280","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":492,"favorite_count":5413,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":492,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329309829974945792\/6FO6Jzeh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329309829974945792\/6FO6Jzeh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33790642\/1604885292","profile_link_color":"ABB8C2","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":44945092,"id_str":"44945092","name":"kathy - chase","screen_name":"chawk28","location":"orange co.ny","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":120,"listed_count":0,"created_at":"Fri - Jun 05 17:28:54 +0000 2009","favourites_count":6601,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":129,"lang":null,"status":{"created_at":"Wed - Mar 23 02:55:45 +0000 2022","id":1506464690989412356,"id_str":"1506464690989412356","text":"@MSNBC - @MaddowBlog She is so much smarter than 90 percent of all who are listening....sad","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[0,6]},{"screen_name":"MaddowBlog","name":"Maddow - Blog","id":91180720,"id_str":"91180720","indices":[7,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506461998678261761,"in_reply_to_status_id_str":"1506461998678261761","in_reply_to_user_id":2836421,"in_reply_to_user_id_str":"2836421","in_reply_to_screen_name":"MSNBC","geo":null,"coordinates":null,"place":{"id":"94965b2c45386f87","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/94965b2c45386f87.json","place_type":"admin","name":"New - York","full_name":"New York, USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.76259,40.477383],[-71.777492,40.477383],[-71.777492,45.015851],[-79.76259,45.015851]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":18,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3011956621,"id_str":"3011956621","name":"Nadine - Sestich","screen_name":"SestichNadine","location":"Los Angeles, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":387,"listed_count":0,"created_at":"Sat - Feb 07 04:32:15 +0000 2015","favourites_count":2432,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":311,"lang":null,"status":{"created_at":"Thu - Mar 24 01:39:36 +0000 2022","id":1506807915335720967,"id_str":"1506807915335720967","text":"@tedcruz - Coming from the man who screams \u201cdo you know who I am at an airport counter\u201d - \u203c\ufe0f All that drama to ask thos\u2026 https:\/\/t.co\/bedqJIi41g","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/bedqJIi41g","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506807915335720967","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1506787807880265732,"in_reply_to_status_id_str":"1506787807880265732","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294427077878284288\/GUBlJlhb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294427077878284288\/GUBlJlhb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3011956621\/1597450458","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":445329294,"id_str":"445329294","name":"Zsa - Zsa","screen_name":"Tazitiara","location":"Earth","description":"Remember - the holocaust didn\u2019t start with gas chambers. It started with politicians - dividing us with \u201cus vs them\u201d. It started with intolerance & hate - speech...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1008,"friends_count":1485,"listed_count":12,"created_at":"Sat - Dec 24 08:22:47 +0000 2011","favourites_count":84933,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":50710,"lang":null,"status":{"created_at":"Sat - Mar 26 02:09:51 +0000 2022","id":1507540304013971457,"id_str":"1507540304013971457","text":"RT - @jmvasquez1974: This village has been Russian occupied for a month, they terrorized - the people and took their food. Today we entered, to\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jmvasquez1974","name":"James - Vasquez","id":1496985907139956741,"id_str":"1496985907139956741","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 17:59:08 +0000 2022","id":1507054421334757382,"id_str":"1507054421334757382","text":"This - village has been Russian occupied for a month, they terrorized the people - and took their food. Today we entere\u2026 https:\/\/t.co\/ZIr1jF7NwW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZIr1jF7NwW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507054421334757382","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16705,"favorite_count":105483,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16705,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1422689651995947015\/GoOy4trc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1422689651995947015\/GoOy4trc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445329294\/1561737109","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313940895822217216,"id_str":"1313940895822217216","name":"Linda1133","screen_name":"Linda11331","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":332,"listed_count":0,"created_at":"Wed - Oct 07 20:35:37 +0000 2020","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Fri - Mar 18 14:45:35 +0000 2022","id":1504831387534303242,"id_str":"1504831387534303242","text":"https:\/\/t.co\/iZzacTcwlB","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iZzacTcwlB","expanded_url":"https:\/\/m.facebook.com\/story.php?story_fbid=5318686538163983&id=100000680671668&sfnsn=mo","display_url":"m.facebook.com\/story.php?stor\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048360300586651650,"id_str":"1048360300586651650","name":"Southern - Blue","screen_name":"SouthernBlue2","location":"Kentucky, USA","description":"believeingodhonestyjusticetruthloyaltyequalrightsphotographygoodbooksgoodbourbonandstrongcoffee. - donotbelieveinjudgementracismhatefulpeople.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":203,"friends_count":846,"listed_count":0,"created_at":"Fri - Oct 05 23:52:28 +0000 2018","favourites_count":19108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18726,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1048366102143815680\/hst7zmZC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1048366102143815680\/hst7zmZC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048360300586651650\/1538784933","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":409982894,"id_str":"409982894","name":"elise","screen_name":"ethompsonbowers","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":857,"listed_count":1,"created_at":"Fri - Nov 11 13:43:53 +0000 2011","favourites_count":1547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Sat - Mar 19 19:16:59 +0000 2022","id":1505262074422771716,"id_str":"1505262074422771716","text":"@KullVeda - @BetoORourke Great to spend time with you today!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KullVeda","name":"Veda - Kull\ud83d\udccb","id":1091106767306661888,"id_str":"1091106767306661888","indices":[0,9]},{"screen_name":"BetoORourke","name":"Beto - O''Rourke","id":342863309,"id_str":"342863309","indices":[10,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505014827017805825,"in_reply_to_status_id_str":"1505014827017805825","in_reply_to_user_id":1091106767306661888,"in_reply_to_user_id_str":"1091106767306661888","in_reply_to_screen_name":"KullVeda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479220020056047626\/ge8D1kmH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479220020056047626\/ge8D1kmH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1251679278326067201,"id_str":"1251679278326067201","name":"Nancy - Wigginton","screen_name":"wigginton_nancy","location":"","description":"Grandma","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":308,"friends_count":1791,"listed_count":0,"created_at":"Sun - Apr 19 01:09:57 +0000 2020","favourites_count":120635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Mar 14 00:15:59 +0000 2022","id":1503162993202409478,"id_str":"1503162993202409478","text":"Twitter - reacts: Tom Brady not retiring, coming back to NFL https:\/\/t.co\/11veOPEEpA - via @wolverineswire","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wolverineswire","name":"WolverinesWire","id":1001846739505221632,"id_str":"1001846739505221632","indices":[87,102]}],"urls":[{"url":"https:\/\/t.co\/11veOPEEpA","expanded_url":"https:\/\/wolverineswire.usatoday.com\/lists\/twitter-reacts-tom-brady-not-retiring-coming-back-to-nfl\/","display_url":"wolverineswire.usatoday.com\/lists\/twitter-\u2026","indices":[59,82]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":888407685967859714,"id_str":"888407685967859714","name":"Exsundayoner","screen_name":"Exsundayoner1","location":"Toronto, - Ontario","description":"Canada News Canada News Health Local News Entertainment - History Movies","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":354,"listed_count":0,"created_at":"Fri - Jul 21 14:37:52 +0000 2017","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Dec 25 03:21:03 +0000 2017","id":945132252253503488,"id_str":"945132252253503488","text":"@alanners - hi Alana. It\u2019s uncle Paul. Merry Christmas! Stay safe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alanners","name":"Alana - G","id":190912883,"id_str":"190912883","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":190912883,"in_reply_to_user_id_str":"190912883","in_reply_to_screen_name":"alanners","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/945129710891044864\/rFBknwbf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/945129710891044864\/rFBknwbf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1038007423905062912,"id_str":"1038007423905062912","name":"~HriDiGul - \ud83d\udd4a\ud83d\udd4a\ud83d\udd4a\u2764\ufe0f\ud83c\udf3a\ud83e\udd9a","screen_name":"hridigul","location":"","description":"Politically - aware, musically inclined, humanity above all, equitable justice for all. - Born a South Asian- by choice citizen of the world \ud83d\uddfa.\nA Sagittarius - \u2650\ufe0f.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":676,"listed_count":0,"created_at":"Fri - Sep 07 10:13:49 +0000 2018","favourites_count":83073,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83417,"lang":null,"status":{"created_at":"Sat - Mar 26 06:46:18 +0000 2022","id":1507609873537662986,"id_str":"1507609873537662986","text":"RT - @DaakVaak: In honour of the bond we share with our readers :) https:\/\/t.co\/tyjMfUOpB8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DaakVaak","name":"Daak","id":1055346189732888576,"id_str":"1055346189732888576","indices":[3,12]}],"urls":[],"media":[{"id":1507583773348700166,"id_str":"1507583773348700166","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","url":"https:\/\/t.co\/tyjMfUOpB8","display_url":"pic.twitter.com\/tyjMfUOpB8","expanded_url":"https:\/\/twitter.com\/DaakVaak\/status\/1507583837743812614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1507583837743812614,"source_status_id_str":"1507583837743812614","source_user_id":1055346189732888576,"source_user_id_str":"1055346189732888576"}]},"extended_entities":{"media":[{"id":1507583773348700166,"id_str":"1507583773348700166","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","url":"https:\/\/t.co\/tyjMfUOpB8","display_url":"pic.twitter.com\/tyjMfUOpB8","expanded_url":"https:\/\/twitter.com\/DaakVaak\/status\/1507583837743812614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1507583837743812614,"source_status_id_str":"1507583837743812614","source_user_id":1055346189732888576,"source_user_id_str":"1055346189732888576"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 05:02:51 +0000 2022","id":1507583837743812614,"id_str":"1507583837743812614","text":"In - honour of the bond we share with our readers :) https:\/\/t.co\/tyjMfUOpB8","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507583773348700166,"id_str":"1507583773348700166","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","url":"https:\/\/t.co\/tyjMfUOpB8","display_url":"pic.twitter.com\/tyjMfUOpB8","expanded_url":"https:\/\/twitter.com\/DaakVaak\/status\/1507583837743812614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507583773348700166,"id_str":"1507583773348700166","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOwDdE-XoAY_OZG.jpg","url":"https:\/\/t.co\/tyjMfUOpB8","display_url":"pic.twitter.com\/tyjMfUOpB8","expanded_url":"https:\/\/twitter.com\/DaakVaak\/status\/1507583837743812614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":1200,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1467741769253068802\/pxm24j41_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1467741769253068802\/pxm24j41_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":515434563,"id_str":"515434563","name":"Patricia - Mansfield","screen_name":"PatriciaMansfi1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":951,"listed_count":0,"created_at":"Mon - Mar 05 12:47:11 +0000 2012","favourites_count":25124,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Fri - Mar 25 00:30:52 +0000 2022","id":1507153006189498368,"id_str":"1507153006189498368","text":"@NoLieWithBTC - @peace1 @PunchbowlNews Need to vote like our life depends on. It because - it does\ud83d\ude21","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[0,13]},{"screen_name":"peace1","name":"peace1 - \ud83d\udc99\ud83c\uddfa\ud83c\uddf8","id":16993219,"id_str":"16993219","indices":[14,21]},{"screen_name":"PunchbowlNews","name":"Punchbowl - News","id":1322868572113297410,"id_str":"1322868572113297410","indices":[22,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507122690901131274,"in_reply_to_status_id_str":"1507122690901131274","in_reply_to_user_id":1268223690480615424,"in_reply_to_user_id_str":"1268223690480615424","in_reply_to_screen_name":"NoLieWithBTC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313235461192769542,"id_str":"1313235461192769542","name":"Stephanieyelverton146@gmail.com","screen_name":"Stephanieyelve8","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":823,"listed_count":2,"created_at":"Mon - Oct 05 21:52:40 +0000 2020","favourites_count":3084,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - May 14 00:34:03 +0000 2021","id":1393001627267866629,"id_str":"1393001627267866629","text":"RT - @wonderofscience: New images of Jupiter in visible, infrared, and ultraviolet - light from Gemini North and Hubble Telescope, showcasing f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"wonderofscience","name":"Wonder - of Science","id":3101588527,"id_str":"3101588527","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - May 14 00:24:23 +0000 2021","id":1392999196400111616,"id_str":"1392999196400111616","text":"New - images of Jupiter in visible, infrared, and ultraviolet light from Gemini - North and Hubble Telescope, showcasin\u2026 https:\/\/t.co\/i9GXuTgrqR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i9GXuTgrqR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1392999196400111616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":490,"favorite_count":2983,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":490,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225852032403243014,"id_str":"1225852032403243014","name":"Lynn - Deal","screen_name":"LynnDeal11","location":"Virginia, USA","description":"Mom, - Interior Designer, California Babe, Jersey Girl, Love the USA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":278,"listed_count":0,"created_at":"Fri - Feb 07 18:41:24 +0000 2020","favourites_count":575,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":348,"lang":null,"status":{"created_at":"Wed - Nov 17 05:40:17 +0000 2021","id":1460845225426010112,"id_str":"1460845225426010112","text":"@thedailybeast - He","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thedailybeast","name":"The - Daily Beast","id":16012783,"id_str":"16012783","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1460840704993808389,"in_reply_to_status_id_str":"1460840704993808389","in_reply_to_user_id":16012783,"in_reply_to_user_id_str":"16012783","in_reply_to_screen_name":"thedailybeast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335234710302318597\/dWQziYmA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335234710302318597\/dWQziYmA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2966463425,"id_str":"2966463425","name":"Adriana - Vasquez","screen_name":"Rockertoobregon","location":"Bogot\u00e1, D.C., Colombia","description":"Rockera - frustrada, amante de la buena mesa, el buen cine, la m\u00fasica y los viajes","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":293,"friends_count":2588,"listed_count":1,"created_at":"Wed - Jan 07 18:46:40 +0000 2015","favourites_count":65484,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9794,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/843299525716512768\/f6fIzywW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/843299525716512768\/f6fIzywW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":762804122,"id_str":"762804122","name":"Diana - Finn","screen_name":"_rhsguidance","location":"Revere High School","description":"Director - of Guidance and Testing","url":"https:\/\/t.co\/qS9Kt3NhTt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qS9Kt3NhTt","expanded_url":"https:\/\/revereps.mec.edu","display_url":"revereps.mec.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":431,"friends_count":1141,"listed_count":2,"created_at":"Fri - Aug 17 02:24:22 +0000 2012","favourites_count":1209,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":446,"lang":null,"status":{"created_at":"Sat - Mar 05 01:07:20 +0000 2022","id":1499914422755770373,"id_str":"1499914422755770373","text":"RT - @RevereHoops: Congrats to our senior tri-captain Carolina Bettero for winning - the 2021-2022 GBL Most Valuable Player!! Thank you to the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RevereHoops","name":"Coach - Porrazzo","id":1464405893114703881,"id_str":"1464405893114703881","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 17:04:09 +0000 2022","id":1499792829287219201,"id_str":"1499792829287219201","text":"Congrats - to our senior tri-captain Carolina Bettero for winning the 2021-2022 GBL Most - Valuable Player!! Thank you\u2026 https:\/\/t.co\/8WDw1dk5LX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8WDw1dk5LX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499792829287219201","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":49,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763547192917422080\/3_1kYIC-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763547192917422080\/3_1kYIC-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/762804122\/1518142448","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":91006241,"id_str":"91006241","name":"Don - Eastman","screen_name":"doneastman","location":"Sebastopol, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":140,"listed_count":1,"created_at":"Thu - Nov 19 01:21:20 +0000 2009","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":278,"lang":null,"status":{"created_at":"Wed - Feb 23 01:23:29 +0000 2022","id":1496294610662211586,"id_str":"1496294610662211586","text":"@MaiselTV - What does Midge want revenge for? Joel? Shy?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaiselTV","name":"The - Marvelous Mrs. Maisel","id":847154816593752064,"id_str":"847154816593752064","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1496270056061390848,"in_reply_to_status_id_str":"1496270056061390848","in_reply_to_user_id":847154816593752064,"in_reply_to_user_id_str":"847154816593752064","in_reply_to_screen_name":"MaiselTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3612164716\/bceb2775d7a7c99681898cf4c384babc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3612164716\/bceb2775d7a7c99681898cf4c384babc_normal.jpeg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266425932354486272,"id_str":"1266425932354486272","name":"Runs - with Scissors","screen_name":"pissedoffchick5","location":"","description":"It - was The Former Guy, in the Oval Office, with the Pandemic #GoodTrouble **NO - LISTS\/NO DMs**","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":830,"friends_count":2091,"listed_count":0,"created_at":"Fri - May 29 17:47:44 +0000 2020","favourites_count":53471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22088,"lang":null,"status":{"created_at":"Fri - Mar 25 14:10:01 +0000 2022","id":1507359151126577154,"id_str":"1507359151126577154","text":"RT - @CREWcrew: ICYMI: GOP Rep. Jeff Fortenberry was found guilty yesterday on - three felony charges related to lying to investigators and con\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CREWcrew","name":"Citizens - for Ethics","id":22187085,"id_str":"22187085","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:51:21 +0000 2022","id":1507354452260540416,"id_str":"1507354452260540416","text":"ICYMI: - GOP Rep. Jeff Fortenberry was found guilty yesterday on three felony charges - related to lying to investigato\u2026 https:\/\/t.co\/h7b5JCoUpS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/h7b5JCoUpS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507354452260540416","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":124,"favorite_count":321,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":124,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1334333124394643456\/JJRbtDCN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1334333124394643456\/JJRbtDCN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266425932354486272\/1601154475","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":320236074,"id_str":"320236074","name":"AtoOcran","screen_name":"AtoOcran","location":"In - the Light.","description":"Barrister, Solicitor and Notary Public. Lover of - Social Justice and Fairness. Advocate for Rule of Law.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2117,"friends_count":3953,"listed_count":4,"created_at":"Sun - Jun 19 15:13:49 +0000 2011","favourites_count":5960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20010,"lang":null,"status":{"created_at":"Thu - Mar 24 15:12:46 +0000 2022","id":1507012552210874377,"id_str":"1507012552210874377","text":"@DrOz - @POTUS Mehmet Oz, a quack doctor, who has made a lot of money peddling fake - recipes, adores, idolises and wo\u2026 https:\/\/t.co\/EPOQok0Fo6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]},{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[6,12]}],"urls":[{"url":"https:\/\/t.co\/EPOQok0Fo6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507012552210874377","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506785090994638850,"in_reply_to_status_id_str":"1506785090994638850","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397983216489934853\/5UpFq4jY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397983216489934853\/5UpFq4jY_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":798140128552026112,"id_str":"798140128552026112","name":"Nancy","screen_name":"nancy6254","location":"Sebastopol, - CA","description":"Registered Nurse, support health care for all, free press - and a government for the people.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1018,"friends_count":2744,"listed_count":4,"created_at":"Mon - Nov 14 12:26:50 +0000 2016","favourites_count":96290,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62591,"lang":null,"status":{"created_at":"Sat - Mar 26 06:51:33 +0000 2022","id":1507611193954897921,"id_str":"1507611193954897921","text":"RT - @ASlavitt: OK, let me make sure I have it right. We have a well-qualified - Supreme Court nominee who has to listen blowhards like Ted Cru\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ASlavitt","name":"Andy - Slavitt \ud83d\udc99\ud83d\udc9b","id":1383272101,"id_str":"1383272101","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 01:26:20 +0000 2022","id":1507529349121028098,"id_str":"1507529349121028098","text":"OK, - let me make sure I have it right. We have a well-qualified Supreme Court nominee - who has to listen blowhards li\u2026 https:\/\/t.co\/6W7r5U1JEt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6W7r5U1JEt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507529349121028098","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"a3c0ae863771d69e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a3c0ae863771d69e.json","place_type":"city","name":"Oxnard","full_name":"Oxnard, - CA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-119.248624,34.101755],[-119.082154,34.101755],[-119.082154,34.262157],[-119.248624,34.262157]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1965,"favorite_count":10400,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1965,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046626875802411008\/3EziPCVz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046626875802411008\/3EziPCVz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/798140128552026112\/1485152533","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":983273029823152128,"id_str":"983273029823152128","name":"Britt - Michelle","screen_name":"Britt_Babe13","location":"Buffalo, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":1042,"listed_count":0,"created_at":"Mon - Apr 09 09:18:53 +0000 2018","favourites_count":2392,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1319,"lang":null,"status":{"created_at":"Wed - Mar 24 14:15:48 +0000 2021","id":1374726648394829830,"id_str":"1374726648394829830","text":"\u201cOne - thing have I desired of the Lord, that will I seek after; that I may dwell - in the house of the Lord all the da\u2026 https:\/\/t.co\/CricdCpwVG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CricdCpwVG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1374726648394829830","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1192383191631446016\/io_nFow6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1192383191631446016\/io_nFow6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983273029823152128\/1571128853","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174734575655948288,"id_str":"1174734575655948288","name":"Tom - Luce","screen_name":"TomLuceTX","location":"","description":"Native Texan. - Loving Husband. Proud Father & Grandfather. Founder\/Chairman @Texas2036. - Focused on how Texas can remain #1 place to live and do business.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":615,"friends_count":1055,"listed_count":2,"created_at":"Thu - Sep 19 17:18:57 +0000 2019","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1174,"lang":null,"status":{"created_at":"Sun - Mar 13 15:00:14 +0000 2022","id":1503023134672396291,"id_str":"1503023134672396291","text":"Thanks - for having Texas 2036 Dell Tech https:\/\/t.co\/okuxDWRF0i","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/okuxDWRF0i","expanded_url":"https:\/\/twitter.com\/JohnLHAtDell\/status\/1502743391406276617","display_url":"twitter.com\/JohnLHAtDell\/s\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502743391406276617,"quoted_status_id_str":"1502743391406276617","retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174734886462267393\/PZeDxDRm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174734886462267393\/PZeDxDRm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1108804249272483840,"id_str":"1108804249272483840","name":"Let - The Women Do The Work","screen_name":"NikkiFo92777970","location":"Hawaii, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":10,"friends_count":284,"listed_count":0,"created_at":"Thu - Mar 21 18:55:08 +0000 2019","favourites_count":897,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":281,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123498031456735232\/gaxI7VkE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123498031456735232\/gaxI7VkE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1108804249272483840\/1556697889","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2181730144,"id_str":"2181730144","name":"Elena - Bryan","screen_name":"elenabryan23","location":"Washington, DC","description":"Tradie, - Sr Fellow at @ECIPE, Visiting Senior Fellow at @GMFUS, Consulting, ex-USTR. - RT is not an endorsement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":418,"friends_count":2097,"listed_count":6,"created_at":"Fri - Nov 15 09:10:36 +0000 2013","favourites_count":1111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Wed - Jul 21 09:57:34 +0000 2021","id":1417785814612779011,"id_str":"1417785814612779011","text":"@bueti - Locarno","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bueti","name":"Reinhard - B\u00fctikofer","id":20610385,"id_str":"20610385","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1417770429738102784,"in_reply_to_status_id_str":"1417770429738102784","in_reply_to_user_id":20610385,"in_reply_to_user_id_str":"20610385","in_reply_to_screen_name":"bueti","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207385082178093056\/71mf2-7v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207385082178093056\/71mf2-7v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2181730144\/1486782074","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":843995979045060608,"id_str":"843995979045060608","name":"Keith - Wenzel","screen_name":"stowdynoman","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":854,"listed_count":1,"created_at":"Tue - Mar 21 01:21:36 +0000 2017","favourites_count":871,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12375,"lang":null,"status":{"created_at":"Sat - Mar 26 01:39:04 +0000 2022","id":1507532555117121539,"id_str":"1507532555117121539","text":"@sandibachom - We are broken because of all the Jan6 talk democrats won\u2019t ask Pelosi, - Mayor Bowser or Pentagon why th\u2026 https:\/\/t.co\/7EEQQiZ4mq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sandibachom","name":"Sandi - Bachom","id":17027632,"id_str":"17027632","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/7EEQQiZ4mq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507532555117121539","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507504995498926090,"in_reply_to_status_id_str":"1507504995498926090","in_reply_to_user_id":17027632,"in_reply_to_user_id_str":"17027632","in_reply_to_screen_name":"sandibachom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1098331451928514569,"id_str":"1098331451928514569","name":"Kathy - Warren","screen_name":"KathyWa65116601","location":"","description":"Outgoing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":605,"listed_count":0,"created_at":"Wed - Feb 20 21:19:58 +0000 2019","favourites_count":8149,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":955,"lang":null,"status":{"created_at":"Fri - Mar 18 20:29:58 +0000 2022","id":1504918051040505860,"id_str":"1504918051040505860","text":"So - glad to hear! https:\/\/t.co\/qC9FkE3Uqx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qC9FkE3Uqx","expanded_url":"https:\/\/twitter.com\/KyleBusch\/status\/1504250548194840578","display_url":"twitter.com\/KyleBusch\/stat\u2026","indices":[17,40]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1504250548194840578,"quoted_status_id_str":"1504250548194840578","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1098331926459572224\/wqg7CAYg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1098331926459572224\/wqg7CAYg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3183515126,"id_str":"3183515126","name":"Richard - Jaspar","screen_name":"jasparrich","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":811,"listed_count":0,"created_at":"Sun - May 03 01:40:44 +0000 2015","favourites_count":6677,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Sun - Feb 27 23:46:36 +0000 2022","id":1498082169515696130,"id_str":"1498082169515696130","text":"@annkillion - Put this statement in context, no one has any idea what you are talking about. - I\u2019m assuming it\u2019s the Oakland A\u2019s stadium issues\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"annkillion","name":"Ann - Killion","id":37861681,"id_str":"37861681","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498005689628708864,"in_reply_to_status_id_str":"1498005689628708864","in_reply_to_user_id":37861681,"in_reply_to_user_id_str":"37861681","in_reply_to_screen_name":"annkillion","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2968950305,"id_str":"2968950305","name":"Evan - Christian","screen_name":"evanchristian86","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":455,"listed_count":0,"created_at":"Fri - Jan 09 01:24:51 +0000 2015","favourites_count":26,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Tue - Aug 21 01:19:24 +0000 2018","id":1031712339316359169,"id_str":"1031712339316359169","text":"@OWLSCoachA - Browns","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OWLSCoachA","name":"Sam - Angelotta","id":1040321442,"id_str":"1040321442","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1031711285803663360,"in_reply_to_status_id_str":"1031711285803663360","in_reply_to_user_id":1040321442,"in_reply_to_user_id_str":"1040321442","in_reply_to_screen_name":"OWLSCoachA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198699815087083522,"id_str":"1198699815087083522","name":"Ted - Thomas","screen_name":"TedThom75064966","location":"","description":"lots - of fun in all things","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":229,"listed_count":0,"created_at":"Sun - Nov 24 20:28:42 +0000 2019","favourites_count":330,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93,"lang":null,"status":{"created_at":"Wed - Jan 06 02:06:58 +0000 2021","id":1346639363275448321,"id_str":"1346639363275448321","text":"Here\u2019s - a song for you\u2026 Mood Swings (feat. Lil Tjay & Summer Walker) - Remix - by Pop Smoke\nhttps:\/\/t.co\/CmLrCrGtWg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CmLrCrGtWg","expanded_url":"https:\/\/open.spotify.com\/track\/5JYsU2yRoQ6utiLW7Owvjc?si=D-TuG0pIT2KaiYh-TMfZ_Q","display_url":"open.spotify.com\/track\/5JYsU2yR\u2026","indices":[93,116]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231240244919439362\/uBgadY1Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231240244919439362\/uBgadY1Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198699815087083522\/1582411372","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297683816316915724,"id_str":"1297683816316915724","name":"milmax","screen_name":"milmax15","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":1385,"listed_count":0,"created_at":"Sun - Aug 23 23:56:47 +0000 2020","favourites_count":117,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Tue - Jun 01 10:58:03 +0000 2021","id":1399681642411724801,"id_str":"1399681642411724801","text":"@ZenithBank - So many","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZenithBank","name":"Zenith - Bank","id":2668909476,"id_str":"2668909476","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1399380832331124744,"in_reply_to_status_id_str":"1399380832331124744","in_reply_to_user_id":2668909476,"in_reply_to_user_id_str":"2668909476","in_reply_to_screen_name":"ZenithBank","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":795162048,"id_str":"795162048","name":"Husky - Coug","screen_name":"huskycoug","location":"Seattle, WA","description":"Retired - business owner, attorney, policy\/political analyst. Husband, father, liberal, - animal\/nature lover, news junkie.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":593,"listed_count":0,"created_at":"Sat - Sep 01 02:42:43 +0000 2012","favourites_count":20117,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1174,"lang":null,"status":{"created_at":"Sat - Mar 26 01:53:51 +0000 2022","id":1507536276160868352,"id_str":"1507536276160868352","text":"RT - @OccupyDemocrats: BREAKING: The Women''s March officially calls for Justice - Clarence Thomas to be impeached after his wife Ginni\u2019s texts\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:24:02 +0000 2022","id":1507423075398168581,"id_str":"1507423075398168581","text":"BREAKING: - The Women''s March officially calls for Justice Clarence Thomas to be impeached - after his wife Ginni\u2019s tex\u2026 https:\/\/t.co\/1Mxk8zBE09","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1Mxk8zBE09","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507423075398168581","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9322,"favorite_count":26525,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9322,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498902696627113985\/TwMXBEDs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498902696627113985\/TwMXBEDs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/795162048\/1646201237","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":995920868898291713,"id_str":"995920868898291713","name":"gwyneth","screen_name":"gwynpoetsch","location":"","description":"she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":176,"listed_count":0,"created_at":"Mon - May 14 06:56:53 +0000 2018","favourites_count":1997,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":236,"lang":null,"status":{"created_at":"Fri - Mar 25 22:49:32 +0000 2022","id":1507489889310449664,"id_str":"1507489889310449664","text":"RT - @nicole_hanson11: Just realizing that I pretty much only like\/RT things about - movies and Nathan Fielder\u2026 sorry y\u2019all. \ud83d\ude43\n\n(I\u2019m - not going\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicole_hanson11","name":"Nicole - Hanson","id":23492731,"id_str":"23492731","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:47:28 +0000 2022","id":1507066584275300358,"id_str":"1507066584275300358","text":"Just - realizing that I pretty much only like\/RT things about movies and Nathan - Fielder\u2026 sorry y\u2019all. \ud83d\ude43\n\n(I\u2019m not goi\u2026 https:\/\/t.co\/LWqTCfhsV6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LWqTCfhsV6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507066584275300358","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1410811636638617602\/PSaG7Duu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1410811636638617602\/PSaG7Duu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995920868898291713\/1617340741","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1021330088,"id_str":"1021330088","name":"Dan","screen_name":"dandhk26","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":419,"listed_count":0,"created_at":"Wed - Dec 19 04:39:52 +0000 2012","favourites_count":51,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24735795,"id_str":"24735795","name":"Katie - H","screen_name":"kmh1281","location":"\u00dcT: 41.418276,-73.431116","description":"I''m - overwhelmed.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":952,"listed_count":1,"created_at":"Mon - Mar 16 17:56:30 +0000 2009","favourites_count":1447,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":139,"lang":null,"status":{"created_at":"Fri - Feb 25 19:00:35 +0000 2022","id":1497285411936391172,"id_str":"1497285411936391172","text":"RT - @johnpavlovitz: I care more about human lives than cheap gas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnpavlovitz","name":"John - Pavlovitz","id":493714995,"id_str":"493714995","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 00:54:51 +0000 2022","id":1497012178016436224,"id_str":"1497012178016436224","text":"I - care more about human lives than cheap gas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9677,"favorite_count":76460,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":9677,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3697008298\/ab81ba8cb060f39a1867930e60f91c7b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3697008298\/ab81ba8cb060f39a1867930e60f91c7b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24735795\/1408277823","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223411053108834304,"id_str":"1223411053108834304","name":"Jen - Pilla Taylor","screen_name":"JenPillaTaylor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":145,"friends_count":2685,"listed_count":0,"created_at":"Sat - Feb 01 01:01:57 +0000 2020","favourites_count":29237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":424,"lang":null,"status":{"created_at":"Fri - Mar 25 18:53:03 +0000 2022","id":1507430379522867205,"id_str":"1507430379522867205","text":"RT - @DallasWoodhouse: Signs your re-election, may be in trouble. You are a well - known Democrat Justice on the Supreme Court and you are runn\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DallasWoodhouse","name":"Dallas - Woodhouse","id":2212644640,"id_str":"2212644640","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:16:23 +0000 2022","id":1507179560424640518,"id_str":"1507179560424640518","text":"Signs - your re-election, may be in trouble. You are a well known Democrat Justice - on the Supreme Court and you are r\u2026 https:\/\/t.co\/6NkgjYTZzJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6NkgjYTZzJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507179560424640518","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223412282379657217\/VaoJ3pqH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223412282379657217\/VaoJ3pqH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307674614873677825,"id_str":"1307674614873677825","name":"West","screen_name":"West03399004","location":"North - Carolina, USA","description":"wife, mother, love my country","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":103,"friends_count":1132,"listed_count":0,"created_at":"Sun - Sep 20 13:35:29 +0000 2020","favourites_count":1128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":662,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325095539298406402\/IgKvog0x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325095539298406402\/IgKvog0x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307674614873677825\/1604762488","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":332543427,"id_str":"332543427","name":"kenzie","screen_name":"k3nzieeeee","location":"WV","description":"who - knows","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":560,"friends_count":837,"listed_count":2,"created_at":"Sun - Jul 10 00:42:20 +0000 2011","favourites_count":92287,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":48169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491549745663328260\/04iYkqPR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491549745663328260\/04iYkqPR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/332543427\/1627264025","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238709883454840832,"id_str":"1238709883454840832","name":"\ud80c\udc80","screen_name":"KiNGxMiDAS","location":"","description":"CS - Student \u2022 Passionately curious","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":69,"listed_count":0,"created_at":"Sat - Mar 14 06:13:58 +0000 2020","favourites_count":4550,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":759,"lang":null,"status":{"created_at":"Wed - Mar 23 18:51:01 +0000 2022","id":1506705091990073344,"id_str":"1506705091990073344","text":"RT - @jennplusplus: Looks like I''m back on the job market. If you want to work - with me, let me know.\n\nThings I''m looking for:\n\ud83d\udcdcStaff SWE or - s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jennplusplus","name":"Jenniferplusplus","id":1071210037610209280,"id_str":"1071210037610209280","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 15:13:45 +0000 2022","id":1506650414866960387,"id_str":"1506650414866960387","text":"Looks - like I''m back on the job market. If you want to work with me, let me know.\n\nThings - I''m looking for:\n\ud83d\udcdcStaff SW\u2026 https:\/\/t.co\/kIc8v2F42O","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kIc8v2F42O","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506650414866960387","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":317,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":114,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465154105551339528\/OgJ4NMWv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465154105551339528\/OgJ4NMWv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238709883454840832\/1645203588","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4877512492,"id_str":"4877512492","name":"Brendan - Byrne","screen_name":"Brendan69720136","location":"carrick","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":416,"listed_count":0,"created_at":"Fri - Feb 05 08:14:28 +0000 2016","favourites_count":1222,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"status":{"created_at":"Sun - Oct 31 08:56:20 +0000 2021","id":1454733970361528320,"id_str":"1454733970361528320","text":"https:\/\/t.co\/XjrT2UQl0L","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XjrT2UQl0L","expanded_url":"https:\/\/www.facebook.com\/107949734797712\/videos\/316428236799864\/","display_url":"facebook.com\/10794973479771\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":781982019735683072,"id_str":"781982019735683072","name":"24\/7 - Property Pres","screen_name":"24_7proppres","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":4875,"listed_count":0,"created_at":"Fri - Sep 30 22:20:16 +0000 2016","favourites_count":678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Jan 04 22:46:27 +0000 2021","id":1346226516494049281,"id_str":"1346226516494049281","text":"@RealSkipBayless - .mean","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealSkipBayless","name":"Skip - Bayless","id":43139414,"id_str":"43139414","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1345941269005041665,"in_reply_to_status_id_str":"1345941269005041665","in_reply_to_user_id":43139414,"in_reply_to_user_id_str":"43139414","in_reply_to_screen_name":"RealSkipBayless","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"eu"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":64508958,"id_str":"64508958","name":"mark - harris","screen_name":"coldawg","location":"","description":"Lawyer, Democrat, - Chiefs\/Royals\/Nuggets\/Dawgs Fan.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":35,"friends_count":1620,"listed_count":0,"created_at":"Mon - Aug 10 20:42:51 +0000 2009","favourites_count":112074,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1710,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852232940394303488\/ZFzoQ1nW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852232940394303488\/ZFzoQ1nW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64508958\/1492023143","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":913864643944132608,"id_str":"913864643944132608","name":"Barbara - Evans","screen_name":"Barbara77256607","location":"","description":"Basketball - Basketball Business & Finance Basketball Basketball Basketball Basketball - Basketball Basketball Business & Finance Car Culture Weather World News","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":1302,"listed_count":1,"created_at":"Fri - Sep 29 20:34:44 +0000 2017","favourites_count":220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Mon - Jan 27 06:30:15 +0000 2020","id":1221681807168606208,"id_str":"1221681807168606208","text":"RT - @VirginiaLottery: While it may not be a million, these 5 Virginia''s New Year - Millionaire Raffle winners are grinning ear to ear as they\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VirginiaLottery","name":"Virginia - Lottery","id":54645649,"id_str":"54645649","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 17 13:00:09 +0000 2020","id":1218156051410890752,"id_str":"1218156051410890752","text":"While - it may not be a million, these 5 Virginia''s New Year Millionaire Raffle winners - are grinning ear to ear as th\u2026 https:\/\/t.co\/L3bI00y0xH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L3bI00y0xH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1218156051410890752","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":43,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3438537706,"id_str":"3438537706","name":"Angela - Tracy","screen_name":"AngelaTracy1021","location":"Southcentral PA","description":"BA-Com - Retired- John Fetterman\/Senator & Josh Shapiro\/Governor. Remember ALL Republicans - who disgraced Constitution, & vote OUT. Turn all blue in \u201822!! \ud83d\udeabDMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2981,"friends_count":5000,"listed_count":0,"created_at":"Mon - Aug 24 21:29:13 +0000 2015","favourites_count":21538,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8548,"lang":null,"status":{"created_at":"Sat - Mar 26 02:47:07 +0000 2022","id":1507549681743798275,"id_str":"1507549681743798275","text":"@SamintheH - I am so sorry.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SamintheH","name":"SamintheHinterlands","id":1122996495026929665,"id_str":"1122996495026929665","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507462257835659267,"in_reply_to_status_id_str":"1507462257835659267","in_reply_to_user_id":1122996495026929665,"in_reply_to_user_id_str":"1122996495026929665","in_reply_to_screen_name":"SamintheH","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388549315619180547\/MbdQm7FX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388549315619180547\/MbdQm7FX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":83659256,"id_str":"83659256","name":"Bea - Saban","screen_name":"beasaban","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":314,"listed_count":0,"created_at":"Mon - Oct 19 18:31:08 +0000 2009","favourites_count":214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167762434,"id_str":"1167762434","name":"@windsorGrace","screen_name":"_windsorgrace","location":"California, - USA","description":"Cared for Veterans for 34 yrs. love of my life Will. enjoy - music jazz. news hound.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":954,"friends_count":1911,"listed_count":1,"created_at":"Mon - Feb 11 03:54:13 +0000 2013","favourites_count":59411,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":60603,"lang":null,"status":{"created_at":"Sat - Mar 26 00:39:04 +0000 2022","id":1507517457384108033,"id_str":"1507517457384108033","text":"RT - @KyivIndependent: \u26a1\ufe0fUkraine destroyed Russian three airplanes, five - cruise missiles, three UAVs, and a helicopter on March 25, according\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:38:01 +0000 2022","id":1507517190739800064,"id_str":"1507517190739800064","text":"\u26a1\ufe0fUkraine - destroyed Russian three airplanes, five cruise missiles, three UAVs, and a - helicopter on March 25, accord\u2026 https:\/\/t.co\/7mqtlo7brf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7mqtlo7brf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507517190739800064","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4354,"favorite_count":28728,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4354,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1500538441389404160\/Lx79v-tV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1500538441389404160\/Lx79v-tV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1167762434\/1596205563","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29358150,"id_str":"29358150","name":"Dana - \ud83e\ude78\ud83e\uddb7\u2640\ufe0f","screen_name":"DanaJMonster","location":"","description":"burn - it all down.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":1013,"listed_count":0,"created_at":"Tue - Apr 07 02:31:06 +0000 2009","favourites_count":41907,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4224,"lang":null,"status":{"created_at":"Fri - Mar 04 03:21:29 +0000 2022","id":1499585796327755801,"id_str":"1499585796327755801","text":"@patriottakes - So we know everyone participating...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patriottakes","name":"PatriotTakes - \ud83c\uddfa\ud83c\uddf8","id":978265628426432512,"id_str":"978265628426432512","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499577421535879169,"in_reply_to_status_id_str":"1499577421535879169","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225933921684250625\/rmKycIu6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225933921684250625\/rmKycIu6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29358150\/1581120398","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1197315692158234624,"id_str":"1197315692158234624","name":"Jeffrey","screen_name":"Jeffrey26211038","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":757,"listed_count":0,"created_at":"Thu - Nov 21 00:48:21 +0000 2019","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sun - Nov 24 22:30:53 +0000 2019","id":1198730737593262086,"id_str":"1198730737593262086","text":"@TracyE47332946","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TracyE47332946","name":"Tracy.E","id":1195010094888636418,"id_str":"1195010094888636418","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1195010094888636418,"in_reply_to_user_id_str":"1195010094888636418","in_reply_to_screen_name":"TracyE47332946","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":103616288,"id_str":"103616288","name":"Chall","screen_name":"suganana123","location":"Pittsburgh, - PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":230,"friends_count":800,"listed_count":5,"created_at":"Sun - Jan 10 17:12:55 +0000 2010","favourites_count":12486,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18963,"lang":null,"status":{"created_at":"Fri - Feb 25 22:36:34 +0000 2022","id":1497339766811074567,"id_str":"1497339766811074567","text":"@stillgray - Sounds good though that\u2019s why he said it","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stillgray","name":"Ian - Miles Cheong","id":16106584,"id_str":"16106584","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1497338158136004611,"in_reply_to_status_id_str":"1497338158136004611","in_reply_to_user_id":16106584,"in_reply_to_user_id_str":"16106584","in_reply_to_screen_name":"stillgray","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288960947747422214\/pFh_es_V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288960947747422214\/pFh_es_V_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21380170,"id_str":"21380170","name":"Rich - the Click","screen_name":"rdclick","location":"Northwest USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":752,"listed_count":1,"created_at":"Fri - Feb 20 06:41:44 +0000 2009","favourites_count":1370,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":989,"lang":null,"status":{"created_at":"Fri - Mar 25 14:52:02 +0000 2022","id":1507369724027449351,"id_str":"1507369724027449351","text":"@_AriesFacts - Correct","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_AriesFacts","name":"MIND - OF ARIES","id":1322065553612247040,"id_str":"1322065553612247040","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507301290287718413,"in_reply_to_status_id_str":"1507301290287718413","in_reply_to_user_id":1322065553612247040,"in_reply_to_user_id_str":"1322065553612247040","in_reply_to_screen_name":"_AriesFacts","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"030302","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1221575009316950018\/Jsj2wXUA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1221575009316950018\/Jsj2wXUA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21380170\/1580081197","profile_link_color":"C90808","profile_sidebar_border_color":"A4AB9B","profile_sidebar_fill_color":"051129","profile_text_color":"90985D","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2174251,"id_str":"2174251","name":"Tony - Wilkie","screen_name":"jedijoe","location":"Marietta, GA","description":"Our - job is to raise and enrich each other. The government''s job is to raise us - all. By and for the people-","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":679,"listed_count":2,"created_at":"Sun - Mar 25 13:30:11 +0000 2007","favourites_count":32522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10243,"lang":null,"status":{"created_at":"Sun - Feb 27 19:04:30 +0000 2022","id":1498011174503391239,"id_str":"1498011174503391239","text":"RT - @SethAbramson: (BOOK EXCERPT) Trump is lying about supporting sending Javelin - missiles to Ukraine in 2018. I can\u2019t abide this, as I wrot\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SethAbramson","name":"Seth - Abramson","id":3223426134,"id_str":"3223426134","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 17:10:35 +0000 2022","id":1497982507031146499,"id_str":"1497982507031146499","text":"(BOOK - EXCERPT) Trump is lying about supporting sending Javelin missiles to Ukraine - in 2018. I can\u2019t abide this, as\u2026 https:\/\/t.co\/UQvg6bZnUk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UQvg6bZnUk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1497982507031146499","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1803,"favorite_count":2782,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1803,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/811076469975699456\/Lb5PuB2g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/811076469975699456\/Lb5PuB2g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2174251\/1486504188","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":898617776,"id_str":"898617776","name":"Paul","screen_name":"PaulKnowsStuff","location":"Beverly - Hills, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":208,"listed_count":0,"created_at":"Mon - Oct 22 22:57:54 +0000 2012","favourites_count":223,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1286881598,"id_str":"1286881598","name":"Murph - \ud83c\udf0a\u2618\ufe0f\ud83c\uddee\ud83c\uddea\ud83c\uddfa\ud83c\uddf8","screen_name":"gerryamurphy","location":"USA","description":"Irish - | American | road biker | squash | Nordic skier | programmer | cyber professional - | #LFC #YNWA | #voteblue","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6825,"friends_count":6362,"listed_count":9,"created_at":"Thu - Mar 21 20:23:30 +0000 2013","favourites_count":428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1551,"lang":null,"status":{"created_at":"Sat - Mar 19 14:55:32 +0000 2022","id":1505196277025312769,"id_str":"1505196277025312769","text":"RT - @Ronaldo_uber: @KyivIndependent https:\/\/t.co\/qg0nOvY0WV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ronaldo_uber","name":"Ronaldo - Almeida","id":163172654,"id_str":"163172654","indices":[3,16]},{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[18,34]}],"urls":[],"media":[{"id":1505124897575653383,"id_str":"1505124897575653383","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","url":"https:\/\/t.co\/qg0nOvY0WV","display_url":"pic.twitter.com\/qg0nOvY0WV","expanded_url":"https:\/\/twitter.com\/Ronaldo_uber\/status\/1505124900062773251\/photo\/1","type":"photo","sizes":{"large":{"w":1283,"h":1227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1148,"resize":"fit"},"small":{"w":680,"h":650,"resize":"fit"}},"source_status_id":1505124900062773251,"source_status_id_str":"1505124900062773251","source_user_id":163172654,"source_user_id_str":"163172654"}]},"extended_entities":{"media":[{"id":1505124897575653383,"id_str":"1505124897575653383","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","url":"https:\/\/t.co\/qg0nOvY0WV","display_url":"pic.twitter.com\/qg0nOvY0WV","expanded_url":"https:\/\/twitter.com\/Ronaldo_uber\/status\/1505124900062773251\/photo\/1","type":"photo","sizes":{"large":{"w":1283,"h":1227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1148,"resize":"fit"},"small":{"w":680,"h":650,"resize":"fit"}},"source_status_id":1505124900062773251,"source_status_id_str":"1505124900062773251","source_user_id":163172654,"source_user_id_str":"163172654"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 10:11:54 +0000 2022","id":1505124900062773251,"id_str":"1505124900062773251","text":"@KyivIndependent - https:\/\/t.co\/qg0nOvY0WV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[0,16]}],"urls":[],"media":[{"id":1505124897575653383,"id_str":"1505124897575653383","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","url":"https:\/\/t.co\/qg0nOvY0WV","display_url":"pic.twitter.com\/qg0nOvY0WV","expanded_url":"https:\/\/twitter.com\/Ronaldo_uber\/status\/1505124900062773251\/photo\/1","type":"photo","sizes":{"large":{"w":1283,"h":1227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1148,"resize":"fit"},"small":{"w":680,"h":650,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1505124897575653383,"id_str":"1505124897575653383","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FONHHq6X0Ac-ytm.jpg","url":"https:\/\/t.co\/qg0nOvY0WV","display_url":"pic.twitter.com\/qg0nOvY0WV","expanded_url":"https:\/\/twitter.com\/Ronaldo_uber\/status\/1505124900062773251\/photo\/1","type":"photo","sizes":{"large":{"w":1283,"h":1227,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1148,"resize":"fit"},"small":{"w":680,"h":650,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505121417553137668,"in_reply_to_status_id_str":"1505121417553137668","in_reply_to_user_id":1462548977367359490,"in_reply_to_user_id_str":"1462548977367359490","in_reply_to_screen_name":"KyivIndependent","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":265,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":31,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497719470483132418\/1lvXrWRv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497719470483132418\/1lvXrWRv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1286881598\/1645919134","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17434950,"id_str":"17434950","name":"Kevin - McKenney \ud83c\uddfa\ud83c\udde6","screen_name":"krmckenney","location":"\u00dcT: - 40.26925,-75.23206","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1845,"listed_count":1,"created_at":"Mon - Nov 17 04:54:34 +0000 2008","favourites_count":8189,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1391,"lang":null,"status":{"created_at":"Fri - Mar 25 17:25:59 +0000 2022","id":1507408465219575809,"id_str":"1507408465219575809","text":"@MarkHertling - @gtconway3d @threadreaderapp unroll","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarkHertling","name":"Mark - Hertling","id":4484115214,"id_str":"4484115214","indices":[0,13]},{"screen_name":"gtconway3d","name":"George - Conway\ud83c\udf3b","id":471677441,"id_str":"471677441","indices":[14,25]},{"screen_name":"threadreaderapp","name":"Thread - Reader App","id":895814938995957760,"id_str":"895814938995957760","indices":[26,42]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507366306466734080,"in_reply_to_status_id_str":"1507366306466734080","in_reply_to_user_id":4484115214,"in_reply_to_user_id_str":"4484115214","in_reply_to_screen_name":"MarkHertling","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353693766608183296\/98RuH9r2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353693766608183296\/98RuH9r2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17434950\/1361730147","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1236437077472038912,"id_str":"1236437077472038912","name":"Mgk","screen_name":"Mgk84822319","location":"","description":"RTs - do not imply endorsement.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":203,"friends_count":1774,"listed_count":0,"created_at":"Sat - Mar 07 23:42:45 +0000 2020","favourites_count":38098,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1802,"lang":null,"status":{"created_at":"Fri - Mar 25 15:39:49 +0000 2022","id":1507381747880710147,"id_str":"1507381747880710147","text":"@PghPotter - Lovely flooftasticness Potter!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PghPotter","name":"Potter","id":1085261935518666752,"id_str":"1085261935518666752","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507302717273817089,"in_reply_to_status_id_str":"1507302717273817089","in_reply_to_user_id":1085261935518666752,"in_reply_to_user_id_str":"1085261935518666752","in_reply_to_screen_name":"PghPotter","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245893928487976962\/-RiPZmxG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245893928487976962\/-RiPZmxG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2277966479,"id_str":"2277966479","name":"EReyes","screen_name":"isabelbaker62","location":"New - York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":747,"listed_count":0,"created_at":"Mon - Jan 13 00:14:23 +0000 2014","favourites_count":33371,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1011,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422522888005361664\/oYmWWJ5U_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422522888005361664\/oYmWWJ5U_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47406062,"id_str":"47406062","name":"Gavin - Hornbuckle","screen_name":"gavinhornbuckle","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":1912,"listed_count":0,"created_at":"Mon - Jun 15 18:34:46 +0000 2009","favourites_count":7131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":200,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":248572210,"id_str":"248572210","name":"FL\/MS - Blue dot\u270c\ufe0f\ud83c\uddfa\ud83c\uddf8 \ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83d\ude37","screen_name":"Janey39120","location":"Florida\/Mississippi, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":655,"friends_count":3326,"listed_count":0,"created_at":"Mon - Feb 07 08:37:18 +0000 2011","favourites_count":78160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16870,"lang":null,"status":{"created_at":"Fri - Mar 25 22:40:40 +0000 2022","id":1507487661346406403,"id_str":"1507487661346406403","text":"RT - @IAStartingLine: One attendee complained about Republican senators\u2019 treatment - of Judge Ketanji Brown Jackson in the hearings.\n\nGrassley\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAStartingLine","name":"Iowa - Starting Line","id":2940964728,"id_str":"2940964728","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:23:55 +0000 2022","id":1507438147894116353,"id_str":"1507438147894116353","text":"One - attendee complained about Republican senators\u2019 treatment of Judge Ketanji - Brown Jackson in the hearings.\n\nGrass\u2026 https:\/\/t.co\/IRVDrpXvkf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRVDrpXvkf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507438147894116353","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507435286036418572,"in_reply_to_status_id_str":"1507435286036418572","in_reply_to_user_id":2940964728,"in_reply_to_user_id_str":"2940964728","in_reply_to_screen_name":"IAStartingLine","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":333,"favorite_count":1264,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":333,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501383161355321353\/JEydU6yL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501383161355321353\/JEydU6yL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248572210\/1646589397","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":156382757,"id_str":"156382757","name":"Isaac - Arnsdorf","screen_name":"iarnsdorf","location":"Washington, DC","description":"Covering - national politics for @ProPublica. Previously @POLITICO, @Bloomberg. ''''Cool-headed - pro'''' -The Washington Post, 6\/17\/06","url":"https:\/\/t.co\/v7t4bdz4iA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/v7t4bdz4iA","expanded_url":"https:\/\/www.propublica.org\/","display_url":"propublica.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14763,"friends_count":1579,"listed_count":330,"created_at":"Wed - Jun 16 20:09:52 +0000 2010","favourites_count":1156,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":2460,"lang":null,"status":{"created_at":"Wed - Mar 02 23:51:38 +0000 2022","id":1499170598307696640,"id_str":"1499170598307696640","text":"BREAKING: - Trump officially endorsed a strategy to take over the Republican Party. I\u2019ve - been reporting on this movem\u2026 https:\/\/t.co\/x4uzQsh6LR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/x4uzQsh6LR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499170598307696640","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":228,"favorite_count":338,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/964230836051521536\/R_WOWpSc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/964230836051521536\/R_WOWpSc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156382757\/1576097086","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274695790091554816,"id_str":"1274695790091554816","name":"Ihsan - Qadir","screen_name":"ihsanqadir_","location":"","description":"Advocate for - unity of Kurdish regions","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":755,"listed_count":0,"created_at":"Sun - Jun 21 13:29:32 +0000 2020","favourites_count":3940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1529,"lang":null,"status":{"created_at":"Wed - Mar 02 09:50:28 +0000 2022","id":1498958909675028480,"id_str":"1498958909675028480","text":"@KaliMamand - Zor ciwane. Selamet bijin","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KaliMamand","name":"kali - mamand","id":915271018008207360,"id_str":"915271018008207360","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1498706104200704000,"in_reply_to_status_id_str":"1498706104200704000","in_reply_to_user_id":915271018008207360,"in_reply_to_user_id_str":"915271018008207360","in_reply_to_screen_name":"KaliMamand","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303143577585889280,"id_str":"1303143577585889280","name":"Joe-to-Joe","screen_name":"endemann_joseph","location":"","description":"No - longer about left and right. it''s about right and wrong","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":427,"friends_count":713,"listed_count":0,"created_at":"Tue - Sep 08 01:30:25 +0000 2020","favourites_count":435,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1420,"lang":null,"status":{"created_at":"Wed - Feb 24 16:06:51 +0000 2021","id":1364607735380254731,"id_str":"1364607735380254731","text":"RT - @DannyDeraney: Because you want to see a lost doggy screaming with joy after - being reunited with its owner. \n\nCredit: @dodo https:\/\/t.co\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DannyDeraney","name":"Danny - Deraney","id":18309553,"id_str":"18309553","indices":[3,16]},{"screen_name":"dodo","name":"The - Dodo","id":1604444052,"id_str":"1604444052","indices":[121,126]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 04 23:07:57 +0000 2021","id":1357465949893394433,"id_str":"1357465949893394433","text":"Because - you want to see a lost doggy screaming with joy after being reunited with - its owner. \n\nCredit: @dodo https:\/\/t.co\/3jwrTlM4jE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dodo","name":"The - Dodo","id":1604444052,"id_str":"1604444052","indices":[103,108]}],"urls":[],"media":[{"id":1357465864165941248,"id_str":"1357465864165941248","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1357465864165941248\/pu\/img\/CfL0Qq-iWYp6x9Td.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1357465864165941248\/pu\/img\/CfL0Qq-iWYp6x9Td.jpg","url":"https:\/\/t.co\/3jwrTlM4jE","display_url":"pic.twitter.com\/3jwrTlM4jE","expanded_url":"https:\/\/twitter.com\/DannyDeraney\/status\/1357465949893394433\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1357465864165941248,"id_str":"1357465864165941248","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1357465864165941248\/pu\/img\/CfL0Qq-iWYp6x9Td.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1357465864165941248\/pu\/img\/CfL0Qq-iWYp6x9Td.jpg","url":"https:\/\/t.co\/3jwrTlM4jE","display_url":"pic.twitter.com\/3jwrTlM4jE","expanded_url":"https:\/\/twitter.com\/DannyDeraney\/status\/1357465949893394433\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":43334,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1357465864165941248\/pu\/vid\/320x320\/JLsKTG2lWsTCQjBg.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1357465864165941248\/pu\/vid\/540x540\/hH2IEdnTF-ot3HJA.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1357465864165941248\/pu\/pl\/4h-j_nYPQ2CzAVQs.m3u8?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1357465864165941248\/pu\/vid\/640x640\/jZTIadGE2FyuT_7Q.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8636,"favorite_count":43090,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8636,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303143703436029960\/rArTFoZi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303143703436029960\/rArTFoZi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2395079286,"id_str":"2395079286","name":"John - Walsh","screen_name":"jwalsh1011","location":"Petaluma Gap","description":"Growing - Pinot and Chardonnay in the Petaluma Gap and learning to turn the fruit into - wine.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":283,"listed_count":0,"created_at":"Mon - Mar 17 20:49:39 +0000 2014","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2395079286\/1415645284","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248518044550299651,"id_str":"1248518044550299651","name":"Steve - Malone","screen_name":"SteveMa56855317","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":269,"listed_count":0,"created_at":"Fri - Apr 10 07:48:04 +0000 2020","favourites_count":328,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":262,"lang":null,"status":{"created_at":"Sun - Feb 13 03:59:27 +0000 2022","id":1492709982244122630,"id_str":"1492709982244122630","text":"@PhoenixDelorean - Check out Recovery Dharma. Buddhist based recovery. I could not deal with - the God concepts of the 12 steps.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PhoenixDelorean","name":"Jelian","id":49965256,"id_str":"49965256","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1492547438799986691,"in_reply_to_status_id_str":"1492547438799986691","in_reply_to_user_id":49965256,"in_reply_to_user_id_str":"49965256","in_reply_to_screen_name":"PhoenixDelorean","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248518229384781824\/WXbfC442_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248518229384781824\/WXbfC442_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":846635211882450944,"id_str":"846635211882450944","name":"john - paul Otieno","screen_name":"JohnPaulOtieno9","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":103,"friends_count":402,"listed_count":0,"created_at":"Tue - Mar 28 08:08:59 +0000 2017","favourites_count":26447,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Mon - Mar 01 11:09:12 +0000 2021","id":1366344768318488576,"id_str":"1366344768318488576","text":"@UnitedStandMUFC - \ud83d\ude02\ud83d\ude02\ud83d\ude02lol the government of Congo does not even - represent the entire country","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnitedStandMUFC","name":"The - United Stand","id":2613992689,"id_str":"2613992689","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1366320555578843139,"in_reply_to_status_id_str":"1366320555578843139","in_reply_to_user_id":2613992689,"in_reply_to_user_id_str":"2613992689","in_reply_to_screen_name":"UnitedStandMUFC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986572841138171904\/lVKbhJv7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986572841138171904\/lVKbhJv7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846635211882450944\/1524052215","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":533242667,"id_str":"533242667","name":"Angela - Mauney PhD","screen_name":"amauney28","location":"Georgia, USA","description":"Family - First, Army Veteran, Black Lives Matter!!\ud83c\uddfa\ud83c\uddf8\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83c\uddef\ud83c\uddf2","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1490,"friends_count":4925,"listed_count":0,"created_at":"Thu - Mar 22 15:41:55 +0000 2012","favourites_count":18159,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5894,"lang":null,"status":{"created_at":"Tue - Mar 22 14:49:17 +0000 2022","id":1506281868915879938,"id_str":"1506281868915879938","text":"RT - @OccupyDemocrats: BREAKING NEWS: A brave Texas librarian is fired after refusing - to remove dozens of banned books from her library, decl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:30:02 +0000 2022","id":1506065630759370753,"id_str":"1506065630759370753","text":"BREAKING - NEWS: A brave Texas librarian is fired after refusing to remove dozens of - banned books from her library, d\u2026 https:\/\/t.co\/KtfmQ5cgaQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KtfmQ5cgaQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506065630759370753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22038,"favorite_count":70659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22038,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1246083667111358468\/PTlXHlGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1246083667111358468\/PTlXHlGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/533242667\/1606791829","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2432691594,"id_str":"2432691594","name":"Drnm\ud83d\ude4f\ud83c\udffc\ud83d\udc9e","screen_name":"nogueda_dalia","location":"San - Diego Ca","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":342,"listed_count":0,"created_at":"Mon - Apr 07 23:00:19 +0000 2014","favourites_count":1148,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"status":{"created_at":"Thu - Apr 29 03:46:57 +0000 2021","id":1387614356842549248,"id_str":"1387614356842549248","text":"@dr0lst0n - Moderna fully vaxed (75 yo Mom, daughter, son and me) all good. Few hours - of flu like discomfort after second. San Diego Ca","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dr0lst0n","name":"David - R\u2022lst\u2022n","id":18650281,"id_str":"18650281","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1387564760019849222,"in_reply_to_status_id_str":"1387564760019849222","in_reply_to_user_id":18650281,"in_reply_to_user_id_str":"18650281","in_reply_to_screen_name":"dr0lst0n","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351655513839177730\/AhOE-02r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351655513839177730\/AhOE-02r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2432691594\/1611094762","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182481910,"id_str":"1182481910","name":"Kelly - de Castro","screen_name":"kdcpeace","location":"Columbus, OH","description":"Changing, - always. I like serial commas, both sides of the story and writers.","url":"https:\/\/t.co\/SvHovIJw24","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SvHovIJw24","expanded_url":"http:\/\/kdcskon.com","display_url":"kdcskon.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":342,"listed_count":0,"created_at":"Fri - Feb 15 13:00:12 +0000 2013","favourites_count":252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Oct 08 16:42:54 +0000 2020","id":1314244893737472001,"id_str":"1314244893737472001","text":"RT - @ConnieSchultz: You see, when we talk about \u201cMidwestern nice,\u201d what - we mean is we will scorch your hypocrisy into smoldering piles of as\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ConnieSchultz","name":"Connie - Schultz","id":20715936,"id_str":"20715936","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Oct 08 14:18:48 +0000 2020","id":1314208628052647947,"id_str":"1314208628052647947","text":"You - see, when we talk about \u201cMidwestern nice,\u201d what we mean is we will - scorch your hypocrisy into smoldering piles\u2026 https:\/\/t.co\/slCT5NoawS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/slCT5NoawS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1314208628052647947","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"0eb9676d24b211f1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0eb9676d24b211f1.json","place_type":"city","name":"Cleveland","full_name":"Cleveland, - OH","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.877771,41.392684],[-81.5331634,41.392684],[-81.5331634,41.599195],[-81.877771,41.599195]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1314156225572024320,"quoted_status_id_str":"1314156225572024320","retweet_count":7369,"favorite_count":60989,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1314156225572024320,"quoted_status_id_str":"1314156225572024320","retweet_count":7369,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBC744","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1214011889836949504\/xuTCghgO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1214011889836949504\/xuTCghgO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1182481910\/1360934497","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":157819251,"id_str":"157819251","name":"Jam - Master J","screen_name":"jthyren","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":503,"listed_count":0,"created_at":"Mon - Jun 21 00:25:56 +0000 2010","favourites_count":10356,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":331,"lang":null,"status":{"created_at":"Sat - Mar 26 03:01:31 +0000 2022","id":1507553304305352713,"id_str":"1507553304305352713","text":"@MysterySolvent - Massengill deplorable douche","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MysterySolvent","name":"Mystery - Solvent","id":1094713876132872192,"id_str":"1094713876132872192","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507504803143991299,"in_reply_to_status_id_str":"1507504803143991299","in_reply_to_user_id":1094713876132872192,"in_reply_to_user_id_str":"1094713876132872192","in_reply_to_screen_name":"MysterySolvent","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/823206388851769345\/2owgjYPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/823206388851769345\/2owgjYPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157819251\/1485102674","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":750055498792132608,"id_str":"750055498792132608","name":"mary12345@msn.com","screen_name":"lizvale3836539","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":582,"listed_count":0,"created_at":"Mon - Jul 04 19:55:41 +0000 2016","favourites_count":32357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24727,"lang":null,"status":{"created_at":"Fri - Mar 25 05:07:06 +0000 2022","id":1507222519790538754,"id_str":"1507222519790538754","text":"RT - @B52Malmet: As a prosecutor, Josh Hawley agreed to only probation in plea - deal for sexual abuser. Josh Hawley is a terrible human being.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:56:26 +0000 2022","id":1507189636128460813,"id_str":"1507189636128460813","text":"As - a prosecutor, Josh Hawley agreed to only probation in plea deal for sexual - abuser. Josh Hawley is a terrible hum\u2026 https:\/\/t.co\/zp5LFd3AW1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zp5LFd3AW1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507189636128460813","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507189063798997000,"quoted_status_id_str":"1507189063798997000","retweet_count":94,"favorite_count":200,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507189063798997000,"quoted_status_id_str":"1507189063798997000","retweet_count":94,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2307737820,"id_str":"2307737820","name":"ChuckTavera","screen_name":"chuck_tavera","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":200,"listed_count":1,"created_at":"Fri - Jan 24 04:52:07 +0000 2014","favourites_count":1532,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Sun - Mar 20 20:44:32 +0000 2022","id":1505646495680262145,"id_str":"1505646495680262145","text":"Yesterday - I had only 10,000 #xrp... Today 25,000 YEAH! #XRPCommunity https:\/\/t.co\/C5ZwAI3SQw","truncated":false,"entities":{"hashtags":[{"text":"xrp","indices":[28,32]},{"text":"XRPCommunity","indices":[55,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/C5ZwAI3SQw","expanded_url":"http:\/\/xrpgiv.tech\/?228976868","display_url":"xrpgiv.tech\/?228976868","indices":[69,92]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417299433973190658\/kFtXSta3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417299433973190658\/kFtXSta3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307737820\/1626744513","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":242517293,"id_str":"242517293","name":"Jacquelyn - L. Hill","screen_name":"GetTheSkinE","location":"Sunny South Florida","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":1339,"listed_count":0,"created_at":"Mon - Jan 24 23:48:11 +0000 2011","favourites_count":11600,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5165,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445493075917168656\/j6hnQ9PW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445493075917168656\/j6hnQ9PW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242517293\/1633467380","profile_link_color":"D02B54","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":787409443,"id_str":"787409443","name":"tiala - brown","screen_name":"tialabrown","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":498,"listed_count":0,"created_at":"Tue - Aug 28 16:54:14 +0000 2012","favourites_count":867,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Fri - Feb 05 23:41:11 +0000 2021","id":1357836701360611334,"id_str":"1357836701360611334","text":"@TheRealHoarse - Catastrophe is the best","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRealHoarse","name":"The - Hoarse Whisperer","id":784575415457308672,"id_str":"784575415457308672","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1357819802891476993,"in_reply_to_status_id_str":"1357819802891476993","in_reply_to_user_id":784575415457308672,"in_reply_to_user_id_str":"784575415457308672","in_reply_to_screen_name":"TheRealHoarse","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1107785804,"id_str":"1107785804","name":"MoFo - Tweets","screen_name":"politictweeter","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":1283,"listed_count":0,"created_at":"Mon - Jan 21 01:47:34 +0000 2013","favourites_count":32712,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15908,"lang":null,"status":{"created_at":"Fri - Mar 25 05:41:35 +0000 2022","id":1507231197688213530,"id_str":"1507231197688213530","text":"Why - does she have so many cell numbers?? https:\/\/t.co\/Uj0vjloBsa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Uj0vjloBsa","expanded_url":"https:\/\/twitter.com\/duty2warn\/status\/1507166682522943488","display_url":"twitter.com\/duty2warn\/stat\u2026","indices":[41,64]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507166682522943488,"quoted_status_id_str":"1507166682522943488","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3142991432\/0ccc246ff350fbf6775497029bd86373_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3142991432\/0ccc246ff350fbf6775497029bd86373_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1107785804\/1645760753","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883373024967307265,"id_str":"883373024967307265","name":"I_am_booty_licious","screen_name":"MsLene6","location":"Quincy, - IL","description":"Snapchat @Bootyizdelish ... I\u2019m a mom(who believes - in family first),friends,love,inspiration, and motivation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":3460,"listed_count":0,"created_at":"Fri - Jul 07 17:11:56 +0000 2017","favourites_count":1089,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1326,"lang":null,"status":{"created_at":"Fri - Dec 10 06:01:09 +0000 2021","id":1469185395443499010,"id_str":"1469185395443499010","text":"RT - @jbm32753: JUST THIS\u2026\u2026\u2026!!!!!! https:\/\/t.co\/faMAQPb1Xt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jbm32753","name":"Jonathan\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a#WearAMask - #RESIST\ud83c\uddfa\ud83c\uddf8 #VOTEBLUE","id":820014675542806528,"id_str":"820014675542806528","indices":[3,12]}],"urls":[],"media":[{"id":1469011993445249033,"id_str":"1469011993445249033","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","url":"https:\/\/t.co\/faMAQPb1Xt","display_url":"pic.twitter.com\/faMAQPb1Xt","expanded_url":"https:\/\/twitter.com\/jbm32753\/status\/1469011998985928704\/photo\/1","type":"photo","sizes":{"large":{"w":1569,"h":1578,"resize":"fit"},"small":{"w":676,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1193,"h":1200,"resize":"fit"}},"source_status_id":1469011998985928704,"source_status_id_str":"1469011998985928704","source_user_id":820014675542806528,"source_user_id_str":"820014675542806528"}]},"extended_entities":{"media":[{"id":1469011993445249033,"id_str":"1469011993445249033","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","url":"https:\/\/t.co\/faMAQPb1Xt","display_url":"pic.twitter.com\/faMAQPb1Xt","expanded_url":"https:\/\/twitter.com\/jbm32753\/status\/1469011998985928704\/photo\/1","type":"photo","sizes":{"large":{"w":1569,"h":1578,"resize":"fit"},"small":{"w":676,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1193,"h":1200,"resize":"fit"}},"source_status_id":1469011998985928704,"source_status_id_str":"1469011998985928704","source_user_id":820014675542806528,"source_user_id_str":"820014675542806528"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 09 18:32:08 +0000 2021","id":1469011998985928704,"id_str":"1469011998985928704","text":"JUST - THIS\u2026\u2026\u2026!!!!!! https:\/\/t.co\/faMAQPb1Xt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1469011993445249033,"id_str":"1469011993445249033","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","url":"https:\/\/t.co\/faMAQPb1Xt","display_url":"pic.twitter.com\/faMAQPb1Xt","expanded_url":"https:\/\/twitter.com\/jbm32753\/status\/1469011998985928704\/photo\/1","type":"photo","sizes":{"large":{"w":1569,"h":1578,"resize":"fit"},"small":{"w":676,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1193,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1469011993445249033,"id_str":"1469011993445249033","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FGL6n_gXsAkO7gh.jpg","url":"https:\/\/t.co\/faMAQPb1Xt","display_url":"pic.twitter.com\/faMAQPb1Xt","expanded_url":"https:\/\/twitter.com\/jbm32753\/status\/1469011998985928704\/photo\/1","type":"photo","sizes":{"large":{"w":1569,"h":1578,"resize":"fit"},"small":{"w":676,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1193,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":352,"favorite_count":841,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":352,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435456770382630913\/1WvTTaxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435456770382630913\/1WvTTaxe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/883373024967307265\/1560053460","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":714535749392019456,"id_str":"714535749392019456","name":"margaret - \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","screen_name":"macilustr82","location":"Florida, - USA","description":"Graphic Designer and illustrator, Democrat who loves America - and Democracy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":380,"listed_count":0,"created_at":"Mon - Mar 28 19:32:52 +0000 2016","favourites_count":12799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3272,"lang":null,"status":{"created_at":"Fri - Mar 25 23:26:40 +0000 2022","id":1507499235738013703,"id_str":"1507499235738013703","text":"@queenofroadking - @GovRonDeSantis Guess it\u2019s time for us Democrats to start banning beloved - books of the right in pu\u2026 https:\/\/t.co\/bSNO2SXrgU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"queenofroadking","name":"Thats - Me \ud83d\ude22\ud83d\ude22\ud83d\ude22 \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6\ud83c\udf3b\ud83c\udf3b","id":63171997,"id_str":"63171997","indices":[0,16]},{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[17,32]}],"urls":[{"url":"https:\/\/t.co\/bSNO2SXrgU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507499235738013703","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507412603848597507,"in_reply_to_status_id_str":"1507412603848597507","in_reply_to_user_id":63171997,"in_reply_to_user_id_str":"63171997","in_reply_to_screen_name":"queenofroadking","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306441262136991744\/hKtIz2C7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306441262136991744\/hKtIz2C7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714535749392019456\/1600314845","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1153499555331227648,"id_str":"1153499555331227648","name":"Jason","screen_name":"jasonffea","location":"USA","description":"Writer, - educator, liberal, progressive Democrat, optometrist.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":47,"friends_count":2124,"listed_count":0,"created_at":"Tue - Jul 23 02:58:19 +0000 2019","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3972436817,"id_str":"3972436817","name":"Laura - Cole","screen_name":"LauraMarieCole","location":"Logan, OH","description":"Wife, - Mother, Grandmother. Devoted Christian,Trump Supporter","url":"https:\/\/t.co\/jh1n91C94M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jh1n91C94M","expanded_url":"http:\/\/ColeLaura.myitworks.com","display_url":"ColeLaura.myitworks.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":284,"listed_count":0,"created_at":"Fri - Oct 16 13:55:40 +0000 2015","favourites_count":4511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"status":{"created_at":"Fri - Jan 08 17:47:43 +0000 2021","id":1347600886042824705,"id_str":"1347600886042824705","text":"@mschlapp - It\u2019s called Parler","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mschlapp","name":"Matt - Schlapp","id":138809881,"id_str":"138809881","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1347579820822171648,"in_reply_to_status_id_str":"1347579820822171648","in_reply_to_user_id":138809881,"in_reply_to_user_id_str":"138809881","in_reply_to_screen_name":"mschlapp","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307773737308225537\/OIgqwnIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307773737308225537\/OIgqwnIP_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":43284696,"id_str":"43284696","name":"John - Weller","screen_name":"DarkHeliopause","location":"Florida, USA","description":"Gaming, - science fiction\/fantasy\/superhero movies","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":350,"listed_count":2,"created_at":"Fri - May 29 06:17:40 +0000 2009","favourites_count":558,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2179,"lang":null,"status":{"created_at":"Sat - Mar 26 02:35:14 +0000 2022","id":1507546689116114946,"id_str":"1507546689116114946","text":"@waltshaub - Isn\u2019t dictatorship 101 you have to keep the military happy.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"waltshaub","name":"Walter - Shaub","id":830908366377611266,"id_str":"830908366377611266","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507488449842065409,"in_reply_to_status_id_str":"1507488449842065409","in_reply_to_user_id":830908366377611266,"in_reply_to_user_id_str":"830908366377611266","in_reply_to_screen_name":"waltshaub","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/237668247\/Me_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/237668247\/Me_normal.JPG","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295387868223942656,"id_str":"1295387868223942656","name":"Ece - Ya\u015far \ud83d\udda4\u2728","screen_name":"AKarsfans","location":"","description":"Ece - Ya\u015far \ud83d\udda4\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":24,"listed_count":0,"created_at":"Mon - Aug 17 15:52:12 +0000 2020","favourites_count":21765,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":526,"lang":null,"status":{"created_at":"Mon - Mar 08 22:07:59 +0000 2021","id":1369047271980077058,"id_str":"1369047271980077058","text":"@bookswho_ - Ben anlamad\u0131m bu ne anlama geliyor?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bookswho_","name":"Hatice - \ud83e\udd42","id":1260286694168891401,"id_str":"1260286694168891401","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1368972693362667523,"in_reply_to_status_id_str":"1368972693362667523","in_reply_to_user_id":1260286694168891401,"in_reply_to_user_id_str":"1260286694168891401","in_reply_to_screen_name":"bookswho_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375731617340256259\/d27NFdeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375731617340256259\/d27NFdeA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295387868223942656\/1616834952","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1118477993247158272,"id_str":"1118477993247158272","name":"Walisoomro","screen_name":"Walisoomro3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":383,"listed_count":1,"created_at":"Wed - Apr 17 11:35:08 +0000 2019","favourites_count":4601,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":914,"lang":null,"status":{"created_at":"Sat - Mar 26 00:21:18 +0000 2022","id":1507512984612093955,"id_str":"1507512984612093955","text":"RT - @Aww_yaz: Me as a father: https:\/\/t.co\/buyt6SgflC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Aww_yaz","name":"Ayaz","id":4698537146,"id_str":"4698537146","indices":[3,11]}],"urls":[],"media":[{"id":1507374121809809415,"id_str":"1507374121809809415","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","url":"https:\/\/t.co\/buyt6SgflC","display_url":"pic.twitter.com\/buyt6SgflC","expanded_url":"https:\/\/twitter.com\/Aww_yaz\/status\/1507374213644099596\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":768,"resize":"fit"},"large":{"w":720,"h":768,"resize":"fit"},"small":{"w":638,"h":680,"resize":"fit"}},"source_status_id":1507374213644099596,"source_status_id_str":"1507374213644099596","source_user_id":4698537146,"source_user_id_str":"4698537146"}]},"extended_entities":{"media":[{"id":1507374121809809415,"id_str":"1507374121809809415","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","url":"https:\/\/t.co\/buyt6SgflC","display_url":"pic.twitter.com\/buyt6SgflC","expanded_url":"https:\/\/twitter.com\/Aww_yaz\/status\/1507374213644099596\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":768,"resize":"fit"},"large":{"w":720,"h":768,"resize":"fit"},"small":{"w":638,"h":680,"resize":"fit"}},"source_status_id":1507374213644099596,"source_status_id_str":"1507374213644099596","source_user_id":4698537146,"source_user_id_str":"4698537146","video_info":{"aspect_ratio":[15,16],"duration_millis":41980,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/320x340\/0oqTb_9HLSvxt0zC.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/480x512\/y-W0-7AZUxAJCOGO.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/720x768\/abRcbHwiSVYzZeVQ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/pl\/X8_GzxFIkYcf6EVx.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:09:52 +0000 2022","id":1507374213644099596,"id_str":"1507374213644099596","text":"Me - as a father: https:\/\/t.co\/buyt6SgflC","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507374121809809415,"id_str":"1507374121809809415","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","url":"https:\/\/t.co\/buyt6SgflC","display_url":"pic.twitter.com\/buyt6SgflC","expanded_url":"https:\/\/twitter.com\/Aww_yaz\/status\/1507374213644099596\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":768,"resize":"fit"},"large":{"w":720,"h":768,"resize":"fit"},"small":{"w":638,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507374121809809415,"id_str":"1507374121809809415","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507374121809809415\/pu\/img\/KLyMa0TRgAPxABjZ.jpg","url":"https:\/\/t.co\/buyt6SgflC","display_url":"pic.twitter.com\/buyt6SgflC","expanded_url":"https:\/\/twitter.com\/Aww_yaz\/status\/1507374213644099596\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":720,"h":768,"resize":"fit"},"large":{"w":720,"h":768,"resize":"fit"},"small":{"w":638,"h":680,"resize":"fit"}},"video_info":{"aspect_ratio":[15,16],"duration_millis":41980,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/320x340\/0oqTb_9HLSvxt0zC.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/480x512\/y-W0-7AZUxAJCOGO.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/vid\/720x768\/abRcbHwiSVYzZeVQ.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507374121809809415\/pu\/pl\/X8_GzxFIkYcf6EVx.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1442210400444067840\/5UzEf9pa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1442210400444067840\/5UzEf9pa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1118477993247158272\/1632684787","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2465788384,"id_str":"2465788384","name":"JUDY","screen_name":"judyk99","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":2245,"listed_count":0,"created_at":"Sun - Apr 06 21:01:32 +0000 2014","favourites_count":83257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35623,"lang":null,"status":{"created_at":"Sat - Mar 26 00:34:33 +0000 2022","id":1507516319092117511,"id_str":"1507516319092117511","text":"RT - @richsignorelli: For some reason, the number of Garland defenders appears - to be dwindling. Might have something to do w\/ the fact that h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richsignorelli","name":"Richard - Signorelli","id":1109045045649424386,"id_str":"1109045045649424386","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:37:01 +0000 2022","id":1507441442041511939,"id_str":"1507441442041511939","text":"For - some reason, the number of Garland defenders appears to be dwindling. Might - have something to do w\/ the fact th\u2026 https:\/\/t.co\/bxobLm6boG","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bxobLm6boG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507441442041511939","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":385,"favorite_count":1341,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":385,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498832491674746885\/UceVu8Ra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498832491674746885\/UceVu8Ra_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465788384\/1625450267","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180981887801659392,"id_str":"1180981887801659392","name":"\u262e\ufe0f - SunnydayK","screen_name":"KellyAn16604255","location":"","description":"Mom. - Restaurant Supervisor. Brand Ambassador. DJ. Trivia MC. Lover of Coffee, Marijuana, - and Music.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":434,"listed_count":0,"created_at":"Sun - Oct 06 23:04:09 +0000 2019","favourites_count":1326,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Fri - Mar 18 11:50:19 +0000 2022","id":1504787276764753938,"id_str":"1504787276764753938","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180982984276660224\/ohUcNalv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180982984276660224\/ohUcNalv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2364692629,"id_str":"2364692629","name":"Joel - Jacobson","screen_name":"JoelJacobson776","location":"Oconomowoc, WI","description":"Dad, - hubby, Crypto enthusiast, world traveler, Packer fan. HandCash username: - $Jake776","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":278,"listed_count":2,"created_at":"Thu - Feb 27 21:51:38 +0000 2014","favourites_count":4739,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2443,"lang":null,"status":{"created_at":"Thu - Mar 24 21:53:03 +0000 2022","id":1507113288659877894,"id_str":"1507113288659877894","text":"@patriottakes - Wait, is that JFK I see in the background? And why is that douche bag talking - holding a football? Tr\u2026 https:\/\/t.co\/fnNzaAVkZC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"patriottakes","name":"PatriotTakes - \ud83c\uddfa\ud83c\uddf8","id":978265628426432512,"id_str":"978265628426432512","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/fnNzaAVkZC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507113288659877894","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507097286983274510,"in_reply_to_status_id_str":"1507097286983274510","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315604163523497985\/LHIXqZLR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315604163523497985\/LHIXqZLR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1237450833526218753,"id_str":"1237450833526218753","name":"Buzz","screen_name":"Buzz26674206","location":"","description":"NFL - & MLB Fan","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":468,"listed_count":0,"created_at":"Tue - Mar 10 18:51:00 +0000 2020","favourites_count":6541,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12522,"lang":null,"status":{"created_at":"Tue - Feb 15 21:24:05 +0000 2022","id":1493697648020307977,"id_str":"1493697648020307977","text":"@SarahHuckabee - https:\/\/t.co\/tLIWlm4bbn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SarahHuckabee","name":"Sarah - Huckabee Sanders","id":5509762,"id_str":"5509762","indices":[0,14]}],"urls":[],"media":[{"id":1493697638394441735,"id_str":"1493697638394441735","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FLquFpJXMAckScg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLquFpJXMAckScg.png","url":"https:\/\/t.co\/tLIWlm4bbn","display_url":"pic.twitter.com\/tLIWlm4bbn","expanded_url":"https:\/\/twitter.com\/Buzz26674206\/status\/1493697648020307977\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":360,"resize":"fit"},"small":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1493697638394441735,"id_str":"1493697638394441735","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/FLquFpJXMAckScg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FLquFpJXMAckScg.png","url":"https:\/\/t.co\/tLIWlm4bbn","display_url":"pic.twitter.com\/tLIWlm4bbn","expanded_url":"https:\/\/twitter.com\/Buzz26674206\/status\/1493697648020307977\/photo\/1","type":"photo","sizes":{"medium":{"w":360,"h":360,"resize":"fit"},"small":{"w":360,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":360,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":5509762,"in_reply_to_user_id_str":"5509762","in_reply_to_screen_name":"SarahHuckabee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237451131959287809\/lqXtJ4Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237451131959287809\/lqXtJ4Qe_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1155487792312520705,"id_str":"1155487792312520705","name":"Daniella - Anane","screen_name":"AnaneDaniella","location":"United States","description":"Am - very serious on here Do not text me if you are in for online fun","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":470,"friends_count":1767,"listed_count":2,"created_at":"Sun - Jul 28 14:38:52 +0000 2019","favourites_count":1305,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":434,"lang":null,"status":{"created_at":"Tue - Nov 16 18:28:26 +0000 2021","id":1460676148053127171,"id_str":"1460676148053127171","text":"RT - @POTUS: I know folks are tired of the bickering in Washington. Frustrated - by the negativity.\n\nToday, I want you to know we hear you and\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"POTUS","name":"President - Biden","id":1349149096909668363,"id_str":"1349149096909668363","indices":[3,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 15 21:04:55 +0000 2021","id":1460353141912788996,"id_str":"1460353141912788996","text":"I - know folks are tired of the bickering in Washington. Frustrated by the negativity.\n\nToday, - I want you to know we\u2026 https:\/\/t.co\/TlFXVRr7SN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TlFXVRr7SN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1460353141912788996","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eThe White House\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3893,"favorite_count":27797,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3893,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287514497763225601\/x5PluanM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287514497763225601\/x5PluanM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1155487792312520705\/1595802353","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785636385269112832,"id_str":"785636385269112832","name":"Mark - Williams","screen_name":"Ieatpotroast","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":347,"listed_count":0,"created_at":"Tue - Oct 11 00:21:26 +0000 2016","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1099116604120580096,"id_str":"1099116604120580096","name":"Jovana - Vana Anic","screen_name":"wJovana_V_Anic","location":"","description":"@gratiavobisetpax","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":17,"friends_count":1270,"listed_count":0,"created_at":"Sat - Feb 23 01:19:53 +0000 2019","favourites_count":8071,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":137,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1099118157996978176\/9hIlSC3E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099118157996978176\/9hIlSC3E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1099116604120580096\/1550885194","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":619988358,"id_str":"619988358","name":"Jim - Meade","screen_name":"meadejp","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":32,"friends_count":798,"listed_count":0,"created_at":"Wed - Jun 27 11:27:17 +0000 2012","favourites_count":937,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":854259564887322625,"id_str":"854259564887322625","name":"David - Fennelly","screen_name":"DavidFennelly2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":266,"listed_count":0,"created_at":"Tue - Apr 18 09:05:26 +0000 2017","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Aug 20 14:50:17 +0000 2021","id":1428731118371627012,"id_str":"1428731118371627012","text":"@stephensfilms - @DeirdreOKane1 @HSELive @MercierBooks Happy birthday Stephen...\ud83d\ude01\ud83d\ude01","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"stephensfilms","name":"Stephen - Bradley","id":277437381,"id_str":"277437381","indices":[0,14]},{"screen_name":"DeirdreOKane1","name":"Deirdre - O''Kane","id":1082948990,"id_str":"1082948990","indices":[15,29]},{"screen_name":"HSELive","name":"HSE - Ireland","id":69298376,"id_str":"69298376","indices":[30,38]},{"screen_name":"MercierBooks","name":"Mercier - Press Books","id":76352785,"id_str":"76352785","indices":[39,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1428401469972156425,"in_reply_to_status_id_str":"1428401469972156425","in_reply_to_user_id":277437381,"in_reply_to_user_id_str":"277437381","in_reply_to_screen_name":"stephensfilms","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":707180671,"id_str":"707180671","name":"sam","screen_name":"sam80292746","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1361,"listed_count":0,"created_at":"Fri - Jul 20 13:54:50 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18719380,"id_str":"18719380","name":"Alfred - C. Ingram","screen_name":"conceptual2","location":"Chicago, IL","description":"","url":"http:\/\/t.co\/4vId11Qmnu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4vId11Qmnu","expanded_url":"http:\/\/conceptual.blogspot.com","display_url":"conceptual.blogspot.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":291,"listed_count":1,"created_at":"Wed - Jan 07 12:23:21 +0000 2009","favourites_count":1270,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2314,"lang":null,"status":{"created_at":"Wed - Nov 03 14:03:50 +0000 2021","id":1455898516203712522,"id_str":"1455898516203712522","text":"RT - @paulkrugman: Multiple reasons Dems are having a hard time right now. But - they''d surely be doing better if Joe Manchin hadn''t spent mont\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"paulkrugman","name":"Paul - Krugman","id":17006157,"id_str":"17006157","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 03 00:11:53 +0000 2021","id":1455689148807925766,"id_str":"1455689148807925766","text":"Multiple - reasons Dems are having a hard time right now. But they''d surely be doing - better if Joe Manchin hadn''t spe\u2026 https:\/\/t.co\/RSUb0UJtzh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RSUb0UJtzh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1455689148807925766","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3074,"favorite_count":23276,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3074,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069531387\/810e685f-0e42-4f01-92a3-876d7ab9c46d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069531387\/810e685f-0e42-4f01-92a3-876d7ab9c46d_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1162886733068943360,"id_str":"1162886733068943360","name":"sunu999","screen_name":"sunu9991","location":"New - York","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":3063,"listed_count":0,"created_at":"Sun - Aug 18 00:39:50 +0000 2019","favourites_count":5042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156994679508033537,"id_str":"1156994679508033537","name":"charlie - munroe","screen_name":"daddrops","location":"","description":"husband. father. - believer. significantly insignificant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":613,"listed_count":0,"created_at":"Thu - Aug 01 18:26:42 +0000 2019","favourites_count":434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Wed - Mar 23 00:28:02 +0000 2022","id":1506427514570387467,"id_str":"1506427514570387467","text":"@claymcleod - Blurbers gonna blurb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"claymcleod","name":"Clay - McLeod Chapman","id":200709173,"id_str":"200709173","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506382393598521353,"in_reply_to_status_id_str":"1506382393598521353","in_reply_to_user_id":200709173,"in_reply_to_user_id_str":"200709173","in_reply_to_screen_name":"claymcleod","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1156996125544669189\/tB9QUvV5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1156996125544669189\/tB9QUvV5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1043818566,"id_str":"1043818566","name":"helene - isabelle","screen_name":"helene_isabelle","location":"","description":"pianist - and artistic director Sapho records, cinema, and publisher Russian","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":1221,"listed_count":1,"created_at":"Sat - Dec 29 04:34:43 +0000 2012","favourites_count":703,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1579,"lang":null,"status":{"created_at":"Sat - Mar 12 03:10:36 +0000 2022","id":1502482160783081473,"id_str":"1502482160783081473","text":"@Jamesalfredo07 - @IQAir I am interested in it. Trade papers and some samples","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jamesalfredo07","name":"James - alfredo","id":1316412946457690112,"id_str":"1316412946457690112","indices":[0,15]},{"screen_name":"IQAir","name":"IQAir","id":386694967,"id_str":"386694967","indices":[16,22]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1480684971085815812,"in_reply_to_status_id_str":"1480684971085815812","in_reply_to_user_id":1316412946457690112,"in_reply_to_user_id_str":"1316412946457690112","in_reply_to_screen_name":"Jamesalfredo07","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3035851938\/838c05653b482ff3b1728d80901fa8e6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3035851938\/838c05653b482ff3b1728d80901fa8e6_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1219754914408214529,"id_str":"1219754914408214529","name":"william - mewis","screen_name":"WilliamMewis","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":134,"listed_count":0,"created_at":"Tue - Jan 21 22:53:50 +0000 2020","favourites_count":4369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6519,"lang":null,"status":{"created_at":"Fri - Feb 12 00:37:49 +0000 2021","id":1360025279142522881,"id_str":"1360025279142522881","text":"RT - @TimMurtaugh: Where is this covered in his book on leadership?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TimMurtaugh","name":"Tim - Murtaugh","id":45676731,"id_str":"45676731","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 12 00:30:40 +0000 2021","id":1360023481912594432,"id_str":"1360023481912594432","text":"Where - is this covered in his book on leadership? https:\/\/t.co\/IGRw2Zfz41","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IGRw2Zfz41","expanded_url":"https:\/\/twitter.com\/nypost\/status\/1360013921508347912","display_url":"twitter.com\/nypost\/status\/\u2026","indices":[49,72]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1360013921508347912,"quoted_status_id_str":"1360013921508347912","retweet_count":113,"favorite_count":377,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1360013921508347912,"quoted_status_id_str":"1360013921508347912","retweet_count":113,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3154524080,"id_str":"3154524080","name":"Iggy_T_Hippie","screen_name":"Iggy_T_Hippie","location":"Muskegon, - MI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":1804,"listed_count":0,"created_at":"Tue - Apr 14 04:02:30 +0000 2015","favourites_count":76,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"status":{"created_at":"Sat - Mar 26 06:46:29 +0000 2022","id":1507609920363012100,"id_str":"1507609920363012100","text":"@aaronleetasjan1 - @eltonofficial Best album?\nMine is; Don''t Shoot Me, I''m Just A Piano Player. - \u2665\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aaronleetasjan1","name":"Aaron - Lee Tasjan","id":21128309,"id_str":"21128309","indices":[0,16]},{"screen_name":"eltonofficial","name":"Elton - John","id":174593833,"id_str":"174593833","indices":[17,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507545460558471172,"in_reply_to_status_id_str":"1507545460558471172","in_reply_to_user_id":21128309,"in_reply_to_user_id_str":"21128309","in_reply_to_screen_name":"aaronleetasjan1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1005630258245263360\/gTDeTT9H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1005630258245263360\/gTDeTT9H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3154524080\/1528595918","profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":370111647,"id_str":"370111647","name":"Dan - McGough","screen_name":"dpmcgough","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":776,"listed_count":1,"created_at":"Thu - Sep 08 13:47:38 +0000 2011","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Mar 13 00:33:20 +0000 2020","id":1238261831094939648,"id_str":"1238261831094939648","text":"Gary - Cohn lashes out at ex-White House colleagues: ''Living in chaos'' https:\/\/t.co\/oW8uwHsh2u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oW8uwHsh2u","expanded_url":"https:\/\/www.cnbc.com\/2019\/03\/13\/gary-cohn-lashes-out-at-former-white-house-colleagues-living-in-chaos.html","display_url":"cnbc.com\/2019\/03\/13\/gar\u2026","indices":[69,92]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359163940970917888\/41Q1aDAl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359163940970917888\/41Q1aDAl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1026816612752674816,"id_str":"1026816612752674816","name":"\ud835\ude76\ud835\ude92\ud835\ude8d\ud835\ude8e\ud835\ude98\ud835\ude97 - \ud835\ude7a\ud835\ude92\ud835\ude8b\ud835\ude8e\ud835\ude9d \ud835\ude81\ud835\ude9e\ud835\ude9d\ud835\ude98 - \ud83e\udd34\ud83c\udffe","screen_name":"_gideonkibet_","location":"Nairobi, - Kenya","description":"|Travel enthusiast\u2022Law student\u2022Founder @GrowthevityA - \u2022Avid reader & Creative writer| \n 23|\ud83c\uddf0\ud83c\uddea","url":"https:\/\/t.co\/kJSYCsgW96","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kJSYCsgW96","expanded_url":"https:\/\/linktr.ee\/adventurouskibet","display_url":"linktr.ee\/adventurouskib\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":420,"friends_count":1099,"listed_count":2,"created_at":"Tue - Aug 07 13:05:32 +0000 2018","favourites_count":16796,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7672,"lang":null,"status":{"created_at":"Fri - Mar 25 21:36:16 +0000 2022","id":1507471454601986050,"id_str":"1507471454601986050","text":"RT - @Kalasinga_: It used to rain in March, right?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kalasinga_","name":"Kalamzinga","id":437457391,"id_str":"437457391","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:20:25 +0000 2022","id":1507074876355616784,"id_str":"1507074876355616784","text":"It - used to rain in March, right?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":989,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":119,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1363123863974993922\/yEqnPc1t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1363123863974993922\/yEqnPc1t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1026816612752674816\/1550215377","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2855980335,"id_str":"2855980335","name":"abigail","screen_name":"abigailherbst","location":"Washington, - DC","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":131,"listed_count":2,"created_at":"Sun - Nov 02 02:09:29 +0000 2014","favourites_count":5357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":86,"lang":null,"status":{"created_at":"Sat - Jul 31 15:38:05 +0000 2021","id":1421495387022630917,"id_str":"1421495387022630917","text":"the - shopping feature is the best thing instagram has ever done https:\/\/t.co\/Nb5Vke8C5q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1421495383264530432,"id_str":"1421495383264530432","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/E7oqhQlXEAA2F3n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7oqhQlXEAA2F3n.jpg","url":"https:\/\/t.co\/Nb5Vke8C5q","display_url":"pic.twitter.com\/Nb5Vke8C5q","expanded_url":"https:\/\/twitter.com\/abigailherbst\/status\/1421495387022630917\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1421495383264530432,"id_str":"1421495383264530432","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/E7oqhQlXEAA2F3n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7oqhQlXEAA2F3n.jpg","url":"https:\/\/t.co\/Nb5Vke8C5q","display_url":"pic.twitter.com\/Nb5Vke8C5q","expanded_url":"https:\/\/twitter.com\/abigailherbst\/status\/1421495387022630917\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"}}},{"id":1421495383256092674,"id_str":"1421495383256092674","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/E7oqhQjWUAICfpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E7oqhQjWUAICfpS.jpg","url":"https:\/\/t.co\/Nb5Vke8C5q","display_url":"pic.twitter.com\/Nb5Vke8C5q","expanded_url":"https:\/\/twitter.com\/abigailherbst\/status\/1421495387022630917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397262634093879299\/TNkSDLFR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397262634093879299\/TNkSDLFR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2855980335\/1591388380","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29072871,"id_str":"29072871","name":"Cinemom","screen_name":"Cinemom","location":"","description":"Devoted - wife & mom\n LA Film, TV, music, theatre arts enthusiast and advocate... What''s - in the frame of your life?","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":945,"friends_count":1284,"listed_count":2,"created_at":"Sun - Apr 05 21:39:27 +0000 2009","favourites_count":6086,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2596,"lang":null,"status":{"created_at":"Mon - Mar 07 15:35:06 +0000 2022","id":1500857581463486465,"id_str":"1500857581463486465","text":"AMERICAN - COMPANIES OPERATING IN RUSSIA https:\/\/t.co\/TdVEXJSEmm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TdVEXJSEmm","expanded_url":"http:\/\/www.aalep.eu\/american-companies-operating-russia","display_url":"aalep.eu\/american-compa\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/863458605957169152\/RPwpibIH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/863458605957169152\/RPwpibIH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29072871\/1543562980","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":896075918,"id_str":"896075918","name":"b - selimia","screen_name":"BSelimia","location":"london","description":"journaliste, - Londres.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":168,"friends_count":1856,"listed_count":2,"created_at":"Sun - Oct 21 20:12:02 +0000 2012","favourites_count":2135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1656,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3B98C7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462191399257923585\/EbDOLo2X_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462191399257923585\/EbDOLo2X_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896075918\/1427995156","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":417504491,"id_str":"417504491","name":"Mark - MacDougall","screen_name":"MacDougall93","location":"Manhattan, KS","description":"Former - Submariner and Nuclear Propulsion Mechanic, Cat daddy, and wannabe NatSec - expert. RT\u2260Endorsement.","url":"https:\/\/t.co\/i2rCgAdZJZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i2rCgAdZJZ","expanded_url":"https:\/\/www.facebook.com\/justthefactswithmark","display_url":"facebook.com\/justthefactswi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":905,"listed_count":0,"created_at":"Mon - Nov 21 01:16:20 +0000 2011","favourites_count":2957,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1563,"lang":null,"status":{"created_at":"Wed - Mar 23 15:15:59 +0000 2022","id":1506650976421355520,"id_str":"1506650976421355520","text":"RT - @mbk_center: The dump outside Luzhniki Stadium after that very concert. \nJust - the essence of it all in one photo. https:\/\/t.co\/NCZQOzn3Yq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mbk_center","name":"Mikhail - Khodorkovsky (English)","id":80653307,"id_str":"80653307","indices":[3,14]}],"urls":[],"media":[{"id":1506369430757986308,"id_str":"1506369430757986308","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","url":"https:\/\/t.co\/NCZQOzn3Yq","display_url":"pic.twitter.com\/NCZQOzn3Yq","expanded_url":"https:\/\/twitter.com\/mbk_center\/status\/1506369684945391624\/photo\/1","type":"photo","sizes":{"large":{"w":647,"h":649,"resize":"fit"},"small":{"w":647,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":647,"h":649,"resize":"fit"}},"source_status_id":1506369684945391624,"source_status_id_str":"1506369684945391624","source_user_id":80653307,"source_user_id_str":"80653307"}]},"extended_entities":{"media":[{"id":1506369430757986308,"id_str":"1506369430757986308","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","url":"https:\/\/t.co\/NCZQOzn3Yq","display_url":"pic.twitter.com\/NCZQOzn3Yq","expanded_url":"https:\/\/twitter.com\/mbk_center\/status\/1506369684945391624\/photo\/1","type":"photo","sizes":{"large":{"w":647,"h":649,"resize":"fit"},"small":{"w":647,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":647,"h":649,"resize":"fit"}},"source_status_id":1506369684945391624,"source_status_id_str":"1506369684945391624","source_user_id":80653307,"source_user_id_str":"80653307"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 20:38:14 +0000 2022","id":1506369684945391624,"id_str":"1506369684945391624","text":"The - dump outside Luzhniki Stadium after that very concert. \nJust the essence - of it all in one photo. https:\/\/t.co\/NCZQOzn3Yq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506369430757986308,"id_str":"1506369430757986308","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","url":"https:\/\/t.co\/NCZQOzn3Yq","display_url":"pic.twitter.com\/NCZQOzn3Yq","expanded_url":"https:\/\/twitter.com\/mbk_center\/status\/1506369684945391624\/photo\/1","type":"photo","sizes":{"large":{"w":647,"h":649,"resize":"fit"},"small":{"w":647,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":647,"h":649,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506369430757986308,"id_str":"1506369430757986308","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOezBCTWUAQUy_v.png","url":"https:\/\/t.co\/NCZQOzn3Yq","display_url":"pic.twitter.com\/NCZQOzn3Yq","expanded_url":"https:\/\/twitter.com\/mbk_center\/status\/1506369684945391624\/photo\/1","type":"photo","sizes":{"large":{"w":647,"h":649,"resize":"fit"},"small":{"w":647,"h":649,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":647,"h":649,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8283,"favorite_count":44547,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8283,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127108470824689665\/-zm-7yhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127108470824689665\/-zm-7yhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417504491\/1550032695","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":955766095,"id_str":"955766095","name":"Brian - Holt \ud83c\udff3\ufe0f\u200d\ud83c\udf08","screen_name":"radiobri","location":"Los - Angeles","description":"Husband. Hiker. Humanist. Motto: Keep the Faith. (he\/him)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":122,"listed_count":1,"created_at":"Sun - Nov 18 16:13:28 +0000 2012","favourites_count":8269,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3205,"lang":null,"status":{"created_at":"Thu - Mar 17 19:34:07 +0000 2022","id":1504541608523427851,"id_str":"1504541608523427851","text":"@RepMTG - Ignorant and traitorous #PutinPuppet","truncated":false,"entities":{"hashtags":[{"text":"PutinPuppet","indices":[32,44]}],"symbols":[],"user_mentions":[{"screen_name":"RepMTG","name":"Rep. - Marjorie Taylor Greene","id":1344356576786866176,"id_str":"1344356576786866176","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503858442892627974,"in_reply_to_status_id_str":"1503858442892627974","in_reply_to_user_id":1344356576786866176,"in_reply_to_user_id_str":"1344356576786866176","in_reply_to_screen_name":"RepMTG","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357805474616287233\/I3CCHWB7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357805474616287233\/I3CCHWB7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955766095\/1612561028","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3196510828,"id_str":"3196510828","name":"Dave - Vaal","screen_name":"dvaal64","location":"Indiana, USA","description":"Husband, - dad, and grandpa. Want to golf when I grow up, just golf.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":182,"listed_count":0,"created_at":"Thu - Apr 23 01:25:31 +0000 2015","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Mar 01 23:04:13 +0000 2021","id":1366524707785363458,"id_str":"1366524707785363458","text":"@JudiciaryDems - Just another instance of Cruz being an ass clown","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JudiciaryDems","name":"Senate - Judiciary Committee","id":818513652814843906,"id_str":"818513652814843906","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1366483927704227843,"in_reply_to_status_id_str":"1366483927704227843","in_reply_to_user_id":818513652814843906,"in_reply_to_user_id_str":"818513652814843906","in_reply_to_screen_name":"JudiciaryDems","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379048808793919493\/tUF-78zA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379048808793919493\/tUF-78zA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287671694191190018,"id_str":"1287671694191190018","name":"Azande - Amkelwa\ud83e\udd70\ud83d\ude18\ud83d\ude0d\ud83e\udd29","screen_name":"Amukelwa17","location":"South - Afica \ud83c\udf0d","description":"Humble, Innovative, optimistic and I I - problem solver, people liberator.Activist for good cause, opening people eyes - to not play by other people who have money.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1860,"friends_count":4999,"listed_count":0,"created_at":"Mon - Jul 27 08:51:06 +0000 2020","favourites_count":832,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8881,"lang":null,"status":{"created_at":"Fri - Mar 25 17:03:56 +0000 2022","id":1507402920093962251,"id_str":"1507402920093962251","text":"RT - @LindokuhlXulu1: We''ve just recieve news that Nhlanhla Lux Dlamini has been - arrested and that his associates and legal team is on their\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LindokuhlXulu1","name":"Lindokuhle - Xulu","id":3823332496,"id_str":"3823332496","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:24:50 +0000 2022","id":1507060888473374724,"id_str":"1507060888473374724","text":"We''ve - just recieve news that Nhlanhla Lux Dlamini has been arrested and that his - associates and legal team is on th\u2026 https:\/\/t.co\/J6i9vcVa20","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J6i9vcVa20","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507060888473374724","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":910,"favorite_count":3074,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":910,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476290680284667912\/MP4osmLO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476290680284667912\/MP4osmLO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287671694191190018\/1640809999","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":185742481,"id_str":"185742481","name":"michael - samach","screen_name":"msamach","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":790,"listed_count":0,"created_at":"Wed - Sep 01 18:43:17 +0000 2010","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89397379,"id_str":"89397379","name":"futoon","screen_name":"wtfutoon","location":"","description":"\ud83e\ude84\u2615\ud83e\udeb4\ud83d\udcd6\ud83e\uddda\ud83c\udffb\u200d\u2640\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1037,"friends_count":297,"listed_count":4,"created_at":"Thu - Nov 12 07:34:48 +0000 2009","favourites_count":6357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15950,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503711914525929475\/hA4N0-G1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503711914525929475\/hA4N0-G1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89397379\/1579622588","profile_link_color":"62B0CE","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":905212201237188608,"id_str":"905212201237188608","name":"Ujj","screen_name":"JeyteUbax","location":"Hawaii, - USA","description":"Mother, ones refugee, love my adopted country \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8, - #Theresistance, diehard Democrat and I\u2019M VOTING FOR JOE\ud83e\udd13","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":77,"friends_count":748,"listed_count":0,"created_at":"Tue - Sep 05 23:33:01 +0000 2017","favourites_count":12976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3373,"lang":null,"status":{"created_at":"Wed - Feb 17 06:33:52 +0000 2021","id":1361926821474951168,"id_str":"1361926821474951168","text":"@MikeJoPro - All the way to HELL!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikeJoPro","name":"MJP","id":846814508077256706,"id_str":"846814508077256706","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1361725498078998534,"in_reply_to_status_id_str":"1361725498078998534","in_reply_to_user_id":846814508077256706,"in_reply_to_user_id_str":"846814508077256706","in_reply_to_screen_name":"MikeJoPro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1307744088012320777\/RxpBPr0D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1307744088012320777\/RxpBPr0D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212201237188608\/1576476439","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1061387345625341953,"id_str":"1061387345625341953","name":"@ViewFromABroad318","screen_name":"LyonsPeri","location":"Brooklyn, - NY","description":"Writer\/presenter,, precog empath.(sic)MOONSTRUCK TV 9 - pm Weds EST,(Apple TV).Please,NO DMS.. Barbara Stanwyck wannabe.Singer, adopter - of old cats,actorish.","url":"https:\/\/t.co\/YCoF3h7vW4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YCoF3h7vW4","expanded_url":"https:\/\/perilyonsintuitive.wixsite.com\/perilyonshere","display_url":"perilyonsintuitive.wixsite.com\/perilyonshere","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":816,"friends_count":2511,"listed_count":2,"created_at":"Sat - Nov 10 22:37:17 +0000 2018","favourites_count":18496,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8083,"lang":null,"status":{"created_at":"Mon - Mar 21 08:53:18 +0000 2022","id":1505829896165154817,"id_str":"1505829896165154817","text":"Jakeytee77 - Thanks for following us ! https:\/\/t.co\/MTtN4am5g9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MTtN4am5g9","expanded_url":"https:\/\/twitter.com\/Jakeytee1","display_url":"twitter.com\/Jakeytee1","indices":[37,60]}]},"source":"\u003ca - href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1157798866445578243\/Ce0iUTDH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1157798866445578243\/Ce0iUTDH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061387345625341953\/1541896205","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1189053469157670912,"id_str":"1189053469157670912","name":"Chiukwuebukas","screen_name":"chiukwuebukas","location":"","description":"to - be a free man makes Happi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":58,"listed_count":0,"created_at":"Tue - Oct 29 05:37:44 +0000 2019","favourites_count":3753,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2493,"lang":null,"status":{"created_at":"Sun - Apr 18 08:14:42 +0000 2021","id":1383695468320858114,"id_str":"1383695468320858114","text":"RT - @ChinasaNworu: I sacrificed my parents for Biafra, I will sacrifice everything - \u2013 Nnamdi Kanu vows @MaziNnamdiKanu @StateDept @Europarl_E\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChinasaNworu","name":"Chinasa - Nworu","id":3252528612,"id_str":"3252528612","indices":[3,16]},{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[101,116]},{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[117,127]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Apr 18 02:15:23 +0000 2021","id":1383605045363499027,"id_str":"1383605045363499027","text":"I - sacrificed my parents for Biafra, I will sacrifice everything \u2013 Nnamdi - Kanu vows @MaziNnamdiKanu @StateDept\u2026 https:\/\/t.co\/fWnzoodmII","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaziNnamdiKanu","name":"Mazi - Nnamdi Kanu","id":1056922520199270401,"id_str":"1056922520199270401","indices":[83,98]},{"screen_name":"StateDept","name":"Department - of State","id":9624742,"id_str":"9624742","indices":[99,109]}],"urls":[{"url":"https:\/\/t.co\/fWnzoodmII","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1383605045363499027","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":383,"favorite_count":295,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":383,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1189054194000564224\/r8IvGtHh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1189054194000564224\/r8IvGtHh_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90466204,"id_str":"90466204","name":"Frank - DeMar","screen_name":"fdemar53","location":"Austin, TX","description":"Amateur - musician, foodie and F1 fanatic from Austin, TX.","url":"http:\/\/t.co\/DqqIoo9y15","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DqqIoo9y15","expanded_url":"http:\/\/www.myspace.com\/frankdemar","display_url":"myspace.com\/frankdemar","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":408,"listed_count":1,"created_at":"Mon - Nov 16 19:37:39 +0000 2009","favourites_count":2374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":684,"lang":null,"status":{"created_at":"Fri - Mar 18 20:12:16 +0000 2022","id":1504913597952147456,"id_str":"1504913597952147456","text":"@susandemar - Keep your friends close, your enemies closer.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susandemar","name":"Susan - DeMar","id":17077208,"id_str":"17077208","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504839543169638402,"in_reply_to_status_id_str":"1504839543169638402","in_reply_to_user_id":17077208,"in_reply_to_user_id_str":"17077208","in_reply_to_screen_name":"susandemar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000171352342\/d2dc46f9cfd1a067aab24a1f9f1d6f48_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000171352342\/d2dc46f9cfd1a067aab24a1f9f1d6f48_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":581524203,"id_str":"581524203","name":"Isaac - zaied","screen_name":"ZaiedIsaac","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":256,"listed_count":0,"created_at":"Wed - May 16 02:23:21 +0000 2012","favourites_count":818,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":218,"lang":null,"status":{"created_at":"Mon - Jul 12 20:12:42 +0000 2021","id":1414679128222015489,"id_str":"1414679128222015489","text":"RT - @totalcristiano: What England missed last night. The leader calling one of - the more experienced players to take the decisive penalty.\n h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"totalcristiano","name":"TC","id":1095417811801915392,"id_str":"1095417811801915392","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Jul 12 08:41:59 +0000 2021","id":1414505306487459845,"id_str":"1414505306487459845","text":"What - England missed last night. The leader calling one of the more experienced - players to take the decisive penalty\u2026 https:\/\/t.co\/nDwhA6SBBc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nDwhA6SBBc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1414505306487459845","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20015,"favorite_count":115561,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20015,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2222684457\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2222684457\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581524203\/1586711917","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296939990916763650,"id_str":"1296939990916763650","name":"Tareekh","screen_name":"TareekhAzeez","location":"Damaturu, - Nigeria","description":"EVERY DOG IS A LION AT HOME","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":289,"listed_count":0,"created_at":"Fri - Aug 21 22:39:45 +0000 2020","favourites_count":6299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":877,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498357389053018125\/M_VG0_-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498357389053018125\/M_VG0_-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1296939990916763650\/1642496048","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1096784521981091840,"id_str":"1096784521981091840","name":"Minoucherose","screen_name":"MinoucheRose","location":"","description":"I - Am","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":847,"listed_count":0,"created_at":"Sat - Feb 16 14:53:02 +0000 2019","favourites_count":4348,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":410,"lang":null,"status":{"created_at":"Tue - May 18 12:09:51 +0000 2021","id":1394626281287864322,"id_str":"1394626281287864322","text":"@ABC7NY - Hell No .....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ABC7NY","name":"Eyewitness - News","id":16715398,"id_str":"16715398","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1394610199391088642,"in_reply_to_status_id_str":"1394610199391088642","in_reply_to_user_id":16715398,"in_reply_to_user_id_str":"16715398","in_reply_to_screen_name":"ABC7NY","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242797574848950272\/NdKez3Wu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242797574848950272\/NdKez3Wu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096784521981091840\/1594226877","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1073364042377498625,"id_str":"1073364042377498625","name":"SA.","screen_name":"SAkabogu","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":495,"friends_count":417,"listed_count":0,"created_at":"Thu - Dec 13 23:48:24 +0000 2018","favourites_count":55385,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8115,"lang":null,"status":{"created_at":"Mon - Mar 21 21:02:24 +0000 2022","id":1506013379483164674,"id_str":"1506013379483164674","text":"@Uzochukwukwalu2 - Is Agulu a joke to you?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Uzochukwukwalu2","name":"Uzochukwukwalu - (Posh)","id":1384929927468929029,"id_str":"1384929927468929029","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505967007983980549,"in_reply_to_status_id_str":"1505967007983980549","in_reply_to_user_id":1384929927468929029,"in_reply_to_user_id_str":"1384929927468929029","in_reply_to_screen_name":"Uzochukwukwalu2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259398978682138626\/sDNLON37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259398978682138626\/sDNLON37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073364042377498625\/1603640142","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1013514573318705152,"id_str":"1013514573318705152","name":"Urn","screen_name":"UrnDernji","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":152,"friends_count":4779,"listed_count":0,"created_at":"Sun - Jul 01 20:07:59 +0000 2018","favourites_count":41511,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Mon - Jun 07 21:47:57 +0000 2021","id":1402019526070374402,"id_str":"1402019526070374402","text":"@DaysUntil21June - Quick, claim the handle!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1402018710798409731,"in_reply_to_status_id_str":"1402018710798409731","in_reply_to_user_id":1303046800513937414,"in_reply_to_user_id_str":"1303046800513937414","in_reply_to_screen_name":"tabtweets_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285503033145778177\/zVenFtxT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285503033145778177\/zVenFtxT_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":91453839,"id_str":"91453839","name":"QueenAnnePatti","screen_name":"queenannepatti","location":"Seattle - ","description":"Unapologetic Liberal Democrat. \ud83c\udf0a\ud83c\udf0aTraveling - the world and getting paid to do so. \u2708\ufe0f \u2708\ufe0f \ud83c\udf0e\ud83c\udf0eMom - to 2. Political junkie. Love my country \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\uddf8 - #AllBlueIn2022!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":436,"friends_count":1327,"listed_count":1,"created_at":"Fri - Nov 20 23:43:58 +0000 2009","favourites_count":48105,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6920,"lang":null,"status":{"created_at":"Sat - Mar 26 04:54:54 +0000 2022","id":1507581840193777667,"id_str":"1507581840193777667","text":"@taradublinrocks - @foofighters Hugs Tara.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taradublinrocks","name":"Tara - Dublin \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":51241418,"id_str":"51241418","indices":[0,16]},{"screen_name":"foofighters","name":"Foo - Fighters","id":19081001,"id_str":"19081001","indices":[17,29]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507578331209744384,"in_reply_to_status_id_str":"1507578331209744384","in_reply_to_user_id":51241418,"in_reply_to_user_id_str":"51241418","in_reply_to_screen_name":"taradublinrocks","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"is"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1434786210547785729\/ZRXX1kgW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1434786210547785729\/ZRXX1kgW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91453839\/1633138455","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":818437963,"id_str":"818437963","name":"Dori - A","screen_name":"doriemail","location":"California, USA","description":"\ud83c\uddfa\ud83c\udde6 - \ud83c\uddfa\ud83c\udde6 \ud83c\udf0a\u2696\ufe0f\ud83d\udc99lawyer, mom, - lifelong Proud Dem, #VoteBlue, #GetVaccinated, Prosecute Jan 6! #BidenIsMyPresident, - #StandwithUkraine, married, SF Bay Area\ud83c\udf09","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2034,"friends_count":2614,"listed_count":1,"created_at":"Tue - Sep 11 23:46:18 +0000 2012","favourites_count":13468,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3504,"lang":null,"status":{"created_at":"Fri - Mar 04 20:00:28 +0000 2022","id":1499837200858374144,"id_str":"1499837200858374144","text":"@people4kam - Yay!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"people4kam","name":"United - for The People \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":1108556325640757250,"id_str":"1108556325640757250","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1499794838090174466,"in_reply_to_status_id_str":"1499794838090174466","in_reply_to_user_id":1108556325640757250,"in_reply_to_user_id_str":"1108556325640757250","in_reply_to_screen_name":"people4kam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158455234206633984\/zEuQAIcL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158455234206633984\/zEuQAIcL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818437963\/1579657214","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2358519327,"id_str":"2358519327","name":"Jeff - Meckler","screen_name":"MecklerJeff","location":"NYC","description":"A writer - who stands for justice for all. \u2696\ufe0f.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":47,"friends_count":1683,"listed_count":0,"created_at":"Sat - Feb 22 12:27:53 +0000 2014","favourites_count":60391,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6419,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/918640004309676032\/xW8Fybso_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/918640004309676032\/xW8Fybso_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191276337,"id_str":"1191276337","name":"Mgazi","screen_name":"Masiphula_Mgazi","location":"Johannesburg","description":"Fly - me to the moon","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":208,"listed_count":0,"created_at":"Sun - Feb 17 21:53:41 +0000 2013","favourites_count":41,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":60,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/731943366997491712\/RJH3uc5C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/731943366997491712\/RJH3uc5C_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1199024288025759745,"id_str":"1199024288025759745","name":"Rabiata","screen_name":"RabiataArab","location":"Jos - ,NVRI VOM","description":"Am Arab ...\nmedical lab technician \nLiverpool - FC die heart","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1354,"friends_count":3470,"listed_count":0,"created_at":"Mon - Nov 25 17:57:53 +0000 2019","favourites_count":70154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8258,"lang":null,"status":{"created_at":"Wed - Jun 02 15:13:49 +0000 2021","id":1400108397157142529,"id_str":"1400108397157142529","text":"RT - @whitenigerian: A Woven Sacks Factory and a Shrink Laminate Plant have started - operations in Yola, Adamawa State. https:\/\/t.co\/Ft6CXXWc9u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"whitenigerian","name":"Mohammed - Jammal","id":196504255,"id_str":"196504255","indices":[3,17]}],"urls":[],"media":[{"id":1399846986237480960,"id_str":"1399846986237480960","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":512,"resize":"fit"},"large":{"w":768,"h":512,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1399846994496135169,"source_status_id_str":"1399846994496135169","source_user_id":196504255,"source_user_id_str":"196504255"}]},"extended_entities":{"media":[{"id":1399846986237480960,"id_str":"1399846986237480960","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":512,"resize":"fit"},"large":{"w":768,"h":512,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"source_status_id":1399846994496135169,"source_status_id_str":"1399846994496135169","source_user_id":196504255,"source_user_id_str":"196504255"},{"id":1399846986254258181,"id_str":"1399846986254258181","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatOWEAUmFCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatOWEAUmFCy.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":720,"h":480,"resize":"fit"},"medium":{"w":720,"h":480,"resize":"fit"}},"source_status_id":1399846994496135169,"source_status_id_str":"1399846994496135169","source_user_id":196504255,"source_user_id_str":"196504255"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 01 21:55:06 +0000 2021","id":1399846994496135169,"id_str":"1399846994496135169","text":"A - Woven Sacks Factory and a Shrink Laminate Plant have started operations in - Yola, Adamawa State. https:\/\/t.co\/Ft6CXXWc9u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1399846986237480960,"id_str":"1399846986237480960","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":512,"resize":"fit"},"large":{"w":768,"h":512,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1399846986237480960,"id_str":"1399846986237480960","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatKWEAAtlCx.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":512,"resize":"fit"},"large":{"w":768,"h":512,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}},{"id":1399846986254258181,"id_str":"1399846986254258181","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/E21BatOWEAUmFCy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E21BatOWEAUmFCy.jpg","url":"https:\/\/t.co\/Ft6CXXWc9u","display_url":"pic.twitter.com\/Ft6CXXWc9u","expanded_url":"https:\/\/twitter.com\/whitenigerian\/status\/1399846994496135169\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":720,"h":480,"resize":"fit"},"medium":{"w":720,"h":480,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"00e55e2b4c491c5f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00e55e2b4c491c5f.json","place_type":"city","name":"Abuja","full_name":"Abuja, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[7.3045544,8.961887],[7.5436339,8.961887],[7.5436339,9.1854407],[7.3045544,9.1854407]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":294,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":60,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277287123310333954\/4YtyaOcT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277287123310333954\/4YtyaOcT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1199024288025759745\/1575194759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":51028112,"id_str":"51028112","name":"Julian - Olive","screen_name":"Jno94","location":"New York, NY","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":265,"listed_count":1,"created_at":"Fri - Jun 26 11:56:03 +0000 2009","favourites_count":3371,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1002,"lang":null,"status":{"created_at":"Wed - Mar 09 18:47:59 +0000 2022","id":1501630896813740033,"id_str":"1501630896813740033","text":"RT - @MrDavidGordon: Comedy is all in the","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MrDavidGordon","name":"David - Gordon","id":16112966,"id_str":"16112966","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 12:03:37 +0000 2022","id":1501529136438951945,"id_str":"1501529136438951945","text":"Comedy - is all in the https:\/\/t.co\/GrJlY3spXa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GrJlY3spXa","expanded_url":"https:\/\/twitter.com\/daleevanns\/status\/1501481345767383041","display_url":"twitter.com\/daleevanns\/sta\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1501481345767383041,"quoted_status_id_str":"1501481345767383041","retweet_count":57,"favorite_count":949,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1501481345767383041,"quoted_status_id_str":"1501481345767383041","retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1117147299291885568\/55PgStd4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1117147299291885568\/55PgStd4_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252131244906893312,"id_str":"1252131244906893312","name":"ASK","screen_name":"trenditional_me","location":"India - ","description":"Traditional is the new Trend. \ud83d\ude4f\ud83c\udffc \u0938\u094d\u0935\u0938\u094d\u092e\u0948 - \u0938\u094d\u0935\u0932\u094d\u092a\u0902 \u0938\u092e\u093e\u091c\u093e\u092f - \u0938\u0930\u094d\u0935\u0938\u094d\u0935\u0902\u0964\ud83c\uddee\ud83c\uddf3","url":"https:\/\/t.co\/JUkEZCTHGP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JUkEZCTHGP","expanded_url":"https:\/\/instagram.com\/trenditional_me?utm_medium=copy_link","display_url":"instagram.com\/trenditional_m\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7173,"friends_count":186,"listed_count":2,"created_at":"Mon - Apr 20 07:05:45 +0000 2020","favourites_count":5340,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2891,"lang":null,"status":{"created_at":"Mon - Mar 21 14:52:58 +0000 2022","id":1505920408956325889,"id_str":"1505920408956325889","text":"@Keshu__11 - @greyyaar @iz_naaah \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Keshu__11","name":"keshu","id":1137243296831496197,"id_str":"1137243296831496197","indices":[0,10]},{"screen_name":"greyyaar","name":"Greyyappa\u2665\ufe0f","id":1214554868431458307,"id_str":"1214554868431458307","indices":[11,20]},{"screen_name":"iz_naaah","name":"izna","id":939190464070090752,"id_str":"939190464070090752","indices":[21,30]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505111216762630144,"in_reply_to_status_id_str":"1505111216762630144","in_reply_to_user_id":1137243296831496197,"in_reply_to_user_id_str":"1137243296831496197","in_reply_to_screen_name":"Keshu__11","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1493639200625012736\/lsICd4Ya_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1493639200625012736\/lsICd4Ya_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1252131244906893312\/1604069183","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1291905275285340161,"id_str":"1291905275285340161","name":"Richkard - Metellus","screen_name":"RichkardMetell2","location":"Norwalk, CT","description":"I''m - humble, energetic, and eager to learn something new everyday ps4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":589,"friends_count":5003,"listed_count":1,"created_at":"Sat - Aug 08 01:13:24 +0000 2020","favourites_count":2257,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Thu - Mar 03 20:39:10 +0000 2022","id":1499484549998428160,"id_str":"1499484549998428160","text":"James - Harden''s drop-off to Joel Embiid is the AT&T Fast Break of the Month!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291905392390352896\/efVky4vc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291905392390352896\/efVky4vc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1291905275285340161\/1596854062","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1263960800139661313,"id_str":"1263960800139661313","name":"danyal","screen_name":"danyal61057700","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":274,"friends_count":646,"listed_count":0,"created_at":"Fri - May 22 22:32:21 +0000 2020","favourites_count":18425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4557,"lang":null,"status":{"created_at":"Sat - Mar 26 09:11:26 +0000 2022","id":1507646396681306119,"id_str":"1507646396681306119","text":"@DDSBobby - \u0645\u064a\u062a\u0648\u0627\u0646\u0645 \u0627\u064a\u0646 \u0628\u06af\u0645 - \u062a\u0648 \u0647\u064a\u0686 \u0643\u0634\u0648\u0631\u064a \u0647\u064a\u0686 - \u0643\u0633 \u067e\u064a\u062f\u0627 \u0646\u0645\u064a\u062a\u0648\u0627\u0646\u064a\u062f - \u062f\u064a\u0643\u062a\u0627\u062a\u0648\u0631 \u0648 \u0627\u062f\u0645 - \u0643\u0634 \u062a\u0648\u062c\u064a\u062d \u0643\u0646\u0646\u062f \u0628\u062c\u0632 - \u0627\u064a\u0631\u0627\u0646\u064a \u062e\u0648\u062f \u0641\u0631\u0648\u062e\u062a\u0647 - \u0628\u0647 \u067e\u0648\u0644 \u0645\u0646\u0627\u0644","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DDSBobby","name":"\ud835\udc35\ud835\udc5c\ud835\udcb7\ud835\udcb7\ud835\udcce - \ud835\udc9c\ud835\udcbb\ud835\udcc7\ud835\udc5c\ud835\udc5c\ud835\udccf","id":470388164,"id_str":"470388164","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507514317914079232,"in_reply_to_status_id_str":"1507514317914079232","in_reply_to_user_id":470388164,"in_reply_to_user_id_str":"470388164","in_reply_to_screen_name":"DDSBobby","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267457017544880128\/Y70bQATq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267457017544880128\/Y70bQATq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263960800139661313\/1621808853","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":766484203,"id_str":"766484203","name":"Patty - Stone","screen_name":"stonepatty5","location":"Texas, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":389,"listed_count":0,"created_at":"Sat - Aug 18 22:25:30 +0000 2012","favourites_count":7168,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3625,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4181034979,"id_str":"4181034979","name":"Justin - Adams","screen_name":"AdamsJ1998","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":107,"friends_count":277,"listed_count":1,"created_at":"Mon - Nov 09 16:25:46 +0000 2015","favourites_count":2041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1425627967867088896\/AQ-PLoPX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1425627967867088896\/AQ-PLoPX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4181034979\/1532036397","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2367184475,"id_str":"2367184475","name":"Paula - Buck","screen_name":"pbuck13","location":"","description":"I''m so not good - at Twitter...I''m really just a follower! NASCAR fan. Early Care and Education - Advocate. I''m a delight, d*mnit.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":525,"listed_count":1,"created_at":"Wed - Feb 26 16:02:49 +0000 2014","favourites_count":443044,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":800,"lang":null,"status":{"created_at":"Thu - Mar 24 11:53:37 +0000 2022","id":1506962436787691530,"id_str":"1506962436787691530","text":"@nascarfankly - It\u2019s so true!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nascarfankly","name":"Kevin - from Va","id":1450402344,"id_str":"1450402344","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506954581154177028,"in_reply_to_status_id_str":"1506954581154177028","in_reply_to_user_id":1450402344,"in_reply_to_user_id_str":"1450402344","in_reply_to_screen_name":"nascarfankly","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487405564041760768\/8LtM-SNL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487405564041760768\/8LtM-SNL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2367184475\/1493598845","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":581323496,"id_str":"581323496","name":"John - F Levin","screen_name":"JohnFLevin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":162,"listed_count":1,"created_at":"Tue - May 15 23:02:46 +0000 2012","favourites_count":1509,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1062,"lang":null,"status":{"created_at":"Sat - Mar 05 04:40:28 +0000 2022","id":1499968062040068102,"id_str":"1499968062040068102","text":"RT - @Martina: Wow again!!!! \ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Martina","name":"Martina - Navratilova","id":506429053,"id_str":"506429053","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 03:51:59 +0000 2022","id":1499955861237772289,"id_str":"1499955861237772289","text":"Wow - again!!!! \ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffd\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffc - https:\/\/t.co\/E2I2zzba5u","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E2I2zzba5u","expanded_url":"https:\/\/twitter.com\/srodan\/status\/1499816010404220940","display_url":"twitter.com\/srodan\/status\/\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for - i\u039fS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1499816010404220940,"quoted_status_id_str":"1499816010404220940","retweet_count":97,"favorite_count":1311,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1499816010404220940,"quoted_status_id_str":"1499816010404220940","retweet_count":97,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2221876372\/CIMG0104_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2221876372\/CIMG0104_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2910631463,"id_str":"2910631463","name":"J","screen_name":"janfrandru","location":"Johannesburg, - South Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":101,"listed_count":0,"created_at":"Mon - Dec 08 08:45:36 +0000 2014","favourites_count":250,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Fri - Feb 04 17:04:50 +0000 2022","id":1489646139313999884,"id_str":"1489646139313999884","text":"Apologies, - we are on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1489643312256536579,"in_reply_to_status_id_str":"1489643312256536579","in_reply_to_user_id":2910631463,"in_reply_to_user_id_str":"2910631463","in_reply_to_screen_name":"janfrandru","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33730104,"id_str":"33730104","name":"Jack - Sloan","screen_name":"jsloanjr","location":"South Windsor, CT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":2350,"listed_count":3,"created_at":"Tue - Apr 21 00:15:25 +0000 2009","favourites_count":13826,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":17783,"lang":null,"status":{"created_at":"Sun - Feb 27 16:30:33 +0000 2022","id":1497972431679594500,"id_str":"1497972431679594500","text":"RT - @KeithOlbermann: Get this treasonous Russian cunt Trump off the stage","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KeithOlbermann","name":"Keith - Olbermann","id":130617778,"id_str":"130617778","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Feb 27 00:29:43 +0000 2022","id":1497730630225911819,"id_str":"1497730630225911819","text":"Get - this treasonous Russian cunt Trump off the stage https:\/\/t.co\/kf02AX8DVM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kf02AX8DVM","expanded_url":"https:\/\/twitter.com\/atrupar\/status\/1497726611600420874","display_url":"twitter.com\/atrupar\/status\u2026","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1497726611600420874,"quoted_status_id_str":"1497726611600420874","retweet_count":150,"favorite_count":1324,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1497726611600420874,"quoted_status_id_str":"1497726611600420874","retweet_count":150,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271312958\/gvfs..theeye.11192008_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271312958\/gvfs..theeye.11192008_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1051162456364642306,"id_str":"1051162456364642306","name":"Raven","screen_name":"ravenmartian","location":"Olympus - Mons","description":"Aspiring tony stark, a reader, a dreamer \u201cto - become immortal, and then die.\u201d","url":"https:\/\/t.co\/yNoIqqtR9y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yNoIqqtR9y","expanded_url":"https:\/\/issuesintheworld.carrd.co\/","display_url":"issuesintheworld.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":57,"friends_count":183,"listed_count":0,"created_at":"Sat - Oct 13 17:27:14 +0000 2018","favourites_count":6434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":406,"lang":null,"status":{"created_at":"Fri - Mar 11 14:42:35 +0000 2022","id":1502293916997099523,"id_str":"1502293916997099523","text":"RT - @obiwankenobi: Hello there.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"obiwankenobi","name":"Obi-Wan - Kenobi","id":1447711417944076289,"id_str":"1447711417944076289","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 09 13:00:16 +0000 2022","id":1501543392744189959,"id_str":"1501543392744189959","text":"Hello - there.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":103302,"favorite_count":657478,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":103302,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480258317989654529\/S9ozRq7R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480258317989654529\/S9ozRq7R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1051162456364642306\/1641756424","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311390211008458752,"id_str":"1311390211008458752","name":"Maria - Scott","screen_name":"fujibel345","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":285,"listed_count":0,"created_at":"Wed - Sep 30 19:39:37 +0000 2020","favourites_count":130,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311390429988843520\/CySTK_Mq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311390429988843520\/CySTK_Mq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1312035585037611008,"id_str":"1312035585037611008","name":"Ellen - Coleman","screen_name":"EllenCo98692749","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":153,"listed_count":0,"created_at":"Fri - Oct 02 14:24:26 +0000 2020","favourites_count":862,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Fri - Jan 08 03:01:29 +0000 2021","id":1347377861473267718,"id_str":"1347377861473267718","text":"@DoYouEvenLif - The security detail for Betsy DeVos has cost the tax payers 26 million dollars. DeVos - is one of the\u2026 https:\/\/t.co\/hP1k67mpZB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DoYouEvenLif","name":"Jesse - D.Lifson","id":780546876391067648,"id_str":"780546876391067648","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/hP1k67mpZB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1347377861473267718","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1347364402471854081,"in_reply_to_status_id_str":"1347364402471854081","in_reply_to_user_id":780546876391067648,"in_reply_to_user_id_str":"780546876391067648","in_reply_to_screen_name":"DoYouEvenLif","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4506783799,"id_str":"4506783799","name":"Mr.Nice - Guy","screen_name":"kamishkhan1","location":"San Francisco ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":42,"friends_count":887,"listed_count":0,"created_at":"Wed - Dec 09 11:16:24 +0000 2015","favourites_count":563,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":341,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1222075125782269953\/-GVdXeua_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1222075125782269953\/-GVdXeua_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4506783799\/1601496472","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":813788340248051712,"id_str":"813788340248051712","name":"Scope4Life","screen_name":"ScopeFl","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":88,"listed_count":0,"created_at":"Tue - Dec 27 16:47:14 +0000 2016","favourites_count":3608,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":268,"lang":null,"status":{"created_at":"Fri - Mar 18 19:35:42 +0000 2022","id":1504904394344648709,"id_str":"1504904394344648709","text":"@Truist - after 16 years with SunTrust it is time to go! Problem after problem and no - humans avail !!! You lost my business","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"truist","name":"Nathan - Arthur","id":14653444,"id_str":"14653444","indices":[0,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14653444,"in_reply_to_user_id_str":"14653444","in_reply_to_screen_name":"truist","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285632875346485255\/Srn9s3lU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285632875346485255\/Srn9s3lU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":94796458,"id_str":"94796458","name":"Dominic - Henshaw","screen_name":"Dommihenz","location":"Africa ","description":"Community - Worker","url":"https:\/\/t.co\/0HehHWFILU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0HehHWFILU","expanded_url":"http:\/\/www.facebook.com\/DominicEdetHenshaw","display_url":"facebook.com\/DominicEdetHen\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":4989,"listed_count":1,"created_at":"Sat - Dec 05 13:58:46 +0000 2009","favourites_count":393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1595,"lang":null,"status":{"created_at":"Thu - Mar 10 08:28:16 +0000 2022","id":1501837326317756420,"id_str":"1501837326317756420","text":"@ZelenskyyUa - @BorisJohnson Only Russia can end this war. Not NATO, Not USA. Dialogue with - Russia","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZelenskyyUa","name":"\u0412\u043e\u043b\u043e\u0434\u0438\u043c\u0438\u0440 - \u0417\u0435\u043b\u0435\u043d\u0441\u044c\u043a\u0438\u0439","id":1120633726478823425,"id_str":"1120633726478823425","indices":[0,12]},{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[13,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501677418641338369,"in_reply_to_status_id_str":"1501677418641338369","in_reply_to_user_id":1120633726478823425,"in_reply_to_user_id_str":"1120633726478823425","in_reply_to_screen_name":"ZelenskyyUa","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A6B1CF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364256578589888518\/yWF0V-Rc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364256578589888518\/yWF0V-Rc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94796458\/1414379078","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6D7172","profile_text_color":"B2A4A4","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262800559087579138,"id_str":"1262800559087579138","name":"mike","screen_name":"mike65289533","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":10,"listed_count":0,"created_at":"Tue - May 19 17:41:45 +0000 2020","favourites_count":22,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":89706307,"id_str":"89706307","name":"Cris - Breyland","screen_name":"CrosscreekFarm","location":"USA","description":"Veteran, - democrat, farmer","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":230,"listed_count":0,"created_at":"Fri - Nov 13 14:11:02 +0000 2009","favourites_count":4622,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2462,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353678987990589440\/R2CmjBxp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353678987990589440\/R2CmjBxp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89706307\/1611577204","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":835415252946800640,"id_str":"835415252946800640","name":"William - Douglas Harr","screen_name":"Harry5209163","location":"Ashland,Alabama.","description":"Southerners - have huge hearts and walnut sized brains.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":1307,"listed_count":1,"created_at":"Sat - Feb 25 09:04:52 +0000 2017","favourites_count":2307,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2475,"lang":null,"status":{"created_at":"Tue - Dec 14 02:51:57 +0000 2021","id":1470587336027164672,"id_str":"1470587336027164672","text":"M. - Kardashian: I am a 45 year California Lawyer who passed the Bar first try. Only - 31% overall passed that one\u2026 https:\/\/t.co\/4TKR1FpKl8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4TKR1FpKl8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1470587336027164672","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126879137308655616\/7Lsd8CGY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126879137308655616\/7Lsd8CGY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/835415252946800640\/1557503898","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1474644158,"id_str":"1474644158","name":"Robin - McLennan Hurst","screen_name":"chiefhurst","location":"ATL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1373,"friends_count":4521,"listed_count":1,"created_at":"Sat - Jun 01 12:49:53 +0000 2013","favourites_count":4674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33177,"lang":null,"status":{"created_at":"Tue - Nov 30 10:33:38 +0000 2021","id":1465630091552202756,"id_str":"1465630091552202756","text":"RT - @joncoopertweets: Who else thinks Dr. Jill Biden and Michelle Obama were two - of the BEST First Ladies we have ever had? \ud83e\udd1a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Nov 29 16:29:26 +0000 2021","id":1465357242857926664,"id_str":"1465357242857926664","text":"Who - else thinks Dr. Jill Biden and Michelle Obama were two of the BEST First Ladies - we have ever had? \ud83e\udd1a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2582,"favorite_count":30976,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2582,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1055923951065546752\/STMtYb72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1055923951065546752\/STMtYb72_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1474644158\/1540586864","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3323109728,"id_str":"3323109728","name":"Marcy - Grodin","screen_name":"marcy_grodin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":599,"friends_count":240,"listed_count":0,"created_at":"Sat - Aug 22 01:23:27 +0000 2015","favourites_count":58578,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9279,"lang":null,"status":{"created_at":"Thu - Mar 24 20:04:55 +0000 2022","id":1507086075235381248,"id_str":"1507086075235381248","text":"RT - @NikkiFried: I wish that @GovRonDeSantis went after Nazis the way he goes - after high school kids and college athletes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NikkiFried","name":"Nikki - Fried","id":37190669,"id_str":"37190669","indices":[3,14]},{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[28,43]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 19:57:25 +0000 2022","id":1507084190461931527,"id_str":"1507084190461931527","text":"I - wish that @GovRonDeSantis went after Nazis the way he goes after high school - kids and college athletes.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GovRonDeSantis","name":"Ron - DeSantis","id":1058807868,"id_str":"1058807868","indices":[12,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1499,"favorite_count":9289,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1499,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/758822201248264193\/t_yRIYEt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/758822201248264193\/t_yRIYEt_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2186402825,"id_str":"2186402825","name":"Treasure","screen_name":"treasure_mn7","location":"","description":"INFP\ud83e\udd0d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3315,"friends_count":4457,"listed_count":0,"created_at":"Mon - Nov 18 19:39:14 +0000 2013","favourites_count":70918,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16480,"lang":null,"status":{"created_at":"Sat - Mar 26 10:26:47 +0000 2022","id":1507665359138177024,"id_str":"1507665359138177024","text":"RT - @BonnieMbuli: Are SA\u2019ns going to get down to the semantics of what it - means to be a foreigner VS an illegal immigrant?Politicians must s\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BonnieMbuli","name":"Bonnie - Mbuli","id":167477172,"id_str":"167477172","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:10:18 +0000 2022","id":1507389420273606692,"id_str":"1507389420273606692","text":"Are - SA\u2019ns going to get down to the semantics of what it means to be a foreigner - VS an illegal immigrant?Politicians\u2026 https:\/\/t.co\/07veJY1xTp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/07veJY1xTp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507389420273606692","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1587,"favorite_count":4899,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1587,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1457328229694459908\/R7_VzECP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1457328229694459908\/R7_VzECP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186402825\/1638446018","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":740991701884375040,"id_str":"740991701884375040","name":"annie","screen_name":"anniej7626","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":941,"listed_count":0,"created_at":"Thu - Jun 09 19:39:23 +0000 2016","favourites_count":2768,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":170,"lang":null,"status":{"created_at":"Fri - Mar 11 09:04:29 +0000 2022","id":1502208831400591360,"id_str":"1502208831400591360","text":"@QuitePerry - Sun come up","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QuitePerry","name":"Rohan - Perry","id":37696756,"id_str":"37696756","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502155802332651520,"in_reply_to_status_id_str":"1502155802332651520","in_reply_to_user_id":37696756,"in_reply_to_user_id_str":"37696756","in_reply_to_screen_name":"QuitePerry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347626395451740163\/rKDGK7LU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347626395451740163\/rKDGK7LU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/740991701884375040\/1472959197","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":101571821,"id_str":"101571821","name":"Robert - Leach","screen_name":"ganeshdancing","location":"Colorado, USA","description":"\u201cI - am patient with stupidity but not with those who are proud of it\u201d. Edith - Sitwell","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":1384,"listed_count":1,"created_at":"Sun - Jan 03 21:01:27 +0000 2010","favourites_count":6661,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3611,"lang":null,"status":{"created_at":"Sat - Mar 26 02:00:11 +0000 2022","id":1507537868578729984,"id_str":"1507537868578729984","text":"@nathaliejacoby1 - Rocky Mountain Oysters","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507416410506604545,"in_reply_to_status_id_str":"1507416410506604545","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430997696010063872\/ySMTsvnV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430997696010063872\/ySMTsvnV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101571821\/1598643539","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1131248940203028480,"id_str":"1131248940203028480","name":"Felix","screen_name":"Felix20413116","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":366,"listed_count":0,"created_at":"Wed - May 22 17:22:19 +0000 2019","favourites_count":327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Wed - Dec 08 19:02:01 +0000 2021","id":1468657131826171909,"id_str":"1468657131826171909","text":"Ich - m\u00f6chte eine Mavic Air 2 Fly Combo um, so wie ich sonst auf andere hinunterschaue, - auch Mal auf mich hinuntersch\u2026 https:\/\/t.co\/FMmxXDC8G9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FMmxXDC8G9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1468657131826171909","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131249068485861377\/iAU7NDot_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131249068485861377\/iAU7NDot_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1045357197272608769,"id_str":"1045357197272608769","name":"\ud83c\uddfa\ud83c\udde6\ud83c\udf3b - Kelly \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","screen_name":"kellylynn62","location":"Montana, - USA","description":"\u201cThe opposite of love is not hate, it''s indifference.\u201d - ~ Elie Wiesel #GrievingMom #T1D #Insulin4All #LupusWarrior #FibromyalgiaSucks","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":480,"listed_count":0,"created_at":"Thu - Sep 27 16:59:12 +0000 2018","favourites_count":4011,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19374,"lang":null,"status":{"created_at":"Fri - Mar 25 18:50:50 +0000 2022","id":1507429818404536321,"id_str":"1507429818404536321","text":"@MarshaBlackburn - https:\/\/t.co\/VBJgd9Tp8s","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[0,16]}],"urls":[],"media":[{"id":1507429814789050372,"id_str":"1507429814789050372","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOt3bgpVkAQaRNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOt3bgpVkAQaRNi.jpg","url":"https:\/\/t.co\/VBJgd9Tp8s","display_url":"pic.twitter.com\/VBJgd9Tp8s","expanded_url":"https:\/\/twitter.com\/kellylynn62\/status\/1507429818404536321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":250,"resize":"fit"},"small":{"w":360,"h":250,"resize":"fit"},"medium":{"w":360,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507429814789050372,"id_str":"1507429814789050372","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FOt3bgpVkAQaRNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOt3bgpVkAQaRNi.jpg","url":"https:\/\/t.co\/VBJgd9Tp8s","display_url":"pic.twitter.com\/VBJgd9Tp8s","expanded_url":"https:\/\/twitter.com\/kellylynn62\/status\/1507429818404536321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":250,"resize":"fit"},"small":{"w":360,"h":250,"resize":"fit"},"medium":{"w":360,"h":250,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507407799000649739,"in_reply_to_status_id_str":"1507407799000649739","in_reply_to_user_id":278145569,"in_reply_to_user_id_str":"278145569","in_reply_to_screen_name":"MarshaBlackburn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506307782017884163\/GYRQiEdF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506307782017884163\/GYRQiEdF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1045357197272608769\/1648266673","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276272584,"id_str":"1276272584","name":"Alex - Evenson","screen_name":"evenson_alex","location":"Seattle, WA","description":"Foster - 21''","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":628,"listed_count":3,"created_at":"Sun - Mar 17 23:29:21 +0000 2013","favourites_count":16343,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":618,"lang":null,"status":{"created_at":"Sun - Mar 13 23:21:26 +0000 2022","id":1503149264620249089,"id_str":"1503149264620249089","text":"RT - @TomBrady: These past two months I\u2019ve realized my place is still on the - field and not in the stands. That time will come. But it\u2019s not n\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TomBrady","name":"Tom - Brady","id":1108050829393707008,"id_str":"1108050829393707008","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 23:13:00 +0000 2022","id":1503147141795045378,"id_str":"1503147141795045378","text":"These - past two months I\u2019ve realized my place is still on the field and not - in the stands. That time will come. But\u2026 https:\/\/t.co\/0NmWAew5Ew","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0NmWAew5Ew","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503147141795045378","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137314,"favorite_count":632605,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":137314,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1263683200343138304\/nGhyLqUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1263683200343138304\/nGhyLqUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276272584\/1553419007","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":903666180157825024,"id_str":"903666180157825024","name":"Dan - Voorhis","screen_name":"DVoo62","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":780,"listed_count":0,"created_at":"Fri - Sep 01 17:09:41 +0000 2017","favourites_count":717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Thu - May 06 20:09:34 +0000 2021","id":1390398352496513029,"id_str":"1390398352496513029","text":"RT - @byChanceSwaim: After closed national search, Wichita State keeps Rick Muma - as president https:\/\/t.co\/dWtgUDrtGU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"byChanceSwaim","name":"Chance - Swaim","id":1011692259635494914,"id_str":"1011692259635494914","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/dWtgUDrtGU","expanded_url":"https:\/\/www.kansas.com\/news\/politics-government\/article251209654.html","display_url":"kansas.com\/news\/politics-\u2026","indices":[92,115]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - May 06 19:19:16 +0000 2021","id":1390385697182388224,"id_str":"1390385697182388224","text":"After - closed national search, Wichita State keeps Rick Muma as president https:\/\/t.co\/dWtgUDrtGU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dWtgUDrtGU","expanded_url":"https:\/\/www.kansas.com\/news\/politics-government\/article251209654.html","display_url":"kansas.com\/news\/politics-\u2026","indices":[73,96]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":911213089730723840,"id_str":"911213089730723840","name":"Mr. - Quaj","screen_name":"Tommyslim92","location":"Greater Accra, Teshie Ghana - ","description":"Slim, Simple and Sociable","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2592,"friends_count":3058,"listed_count":0,"created_at":"Fri - Sep 22 12:58:24 +0000 2017","favourites_count":43012,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3585,"lang":null,"status":{"created_at":"Sat - Apr 10 15:37:54 +0000 2021","id":1380907902865653764,"id_str":"1380907902865653764","text":"@BEFTrick - @Tommyslim92","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BEFTrick","name":"\u2661 - \u1422..\u1422 \u2661","id":870765240648163333,"id_str":"870765240648163333","indices":[0,9]},{"screen_name":"Tommyslim92","name":"Mr. - Quaj","id":911213089730723840,"id_str":"911213089730723840","indices":[10,22]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1380905941328130048,"in_reply_to_status_id_str":"1380905941328130048","in_reply_to_user_id":870765240648163333,"in_reply_to_user_id_str":"870765240648163333","in_reply_to_screen_name":"BEFTrick","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304913488788287496\/byMNOoHR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304913488788287496\/byMNOoHR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/911213089730723840\/1554885540","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1011703215405092870,"id_str":"1011703215405092870","name":"Busan - Sibanda","screen_name":"BusanSibanda","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":105,"friends_count":719,"listed_count":0,"created_at":"Tue - Jun 26 20:10:17 +0000 2018","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1253024314183598083\/jldKwTjf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1253024314183598083\/jldKwTjf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011703215405092870\/1587579335","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":491535446,"id_str":"491535446","name":"Apon - Karim","screen_name":"aponkarim","location":"Dhaka, Azimpor","description":"If - you born poor,,,it''s not your mistake. But. If you die poor,,,it''s your - mistake.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":922,"friends_count":4302,"listed_count":1,"created_at":"Mon - Feb 13 18:58:22 +0000 2012","favourites_count":899,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Fri - Dec 31 18:35:25 +0000 2021","id":1476985361511292930,"id_str":"1476985361511292930","text":"Happy - new year 2022 https:\/\/t.co\/yn6wMRk61c","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1476985356637536260,"id_str":"1476985356637536260","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FH9OW0DVgAQyEHN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FH9OW0DVgAQyEHN.jpg","url":"https:\/\/t.co\/yn6wMRk61c","display_url":"pic.twitter.com\/yn6wMRk61c","expanded_url":"https:\/\/twitter.com\/aponkarim\/status\/1476985361511292930\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":501,"resize":"fit"},"medium":{"w":480,"h":501,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1476985356637536260,"id_str":"1476985356637536260","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/FH9OW0DVgAQyEHN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FH9OW0DVgAQyEHN.jpg","url":"https:\/\/t.co\/yn6wMRk61c","display_url":"pic.twitter.com\/yn6wMRk61c","expanded_url":"https:\/\/twitter.com\/aponkarim\/status\/1476985361511292930\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":501,"resize":"fit"},"medium":{"w":480,"h":501,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"001aff55522d96c9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/001aff55522d96c9.json","place_type":"admin","name":"Dhaka","full_name":"Dhaka, - Bangladesh","country_code":"BD","country":"Bangladesh","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[89.3488235,22.8894691],[91.3085938,22.8894691],[91.3085938,25.3072923],[89.3488235,25.3072923]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264261648929435648\/9vbX9b10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264261648929435648\/9vbX9b10_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/491535446\/1425652099","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1450990908,"id_str":"1450990908","name":"Pepsiumar","screen_name":"pepsiumar","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":288,"friends_count":811,"listed_count":1,"created_at":"Thu - May 23 09:34:29 +0000 2013","favourites_count":330,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":341,"lang":null,"status":{"created_at":"Fri - Sep 17 22:05:45 +0000 2021","id":1438987567215620102,"id_str":"1438987567215620102","text":"@ChrisLeeGregory - @SenatorRomney The confirmation of ACB would not have happened if not for - Democrats who keep chang\u2026 https:\/\/t.co\/U6xpRk83Zn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChrisLeeGregory","name":"Christopher - Gregory, ChFC","id":216417161,"id_str":"216417161","indices":[0,16]},{"screen_name":"SenatorRomney","name":"Senator - Mitt Romney","id":1078693601356509184,"id_str":"1078693601356509184","indices":[17,31]}],"urls":[{"url":"https:\/\/t.co\/U6xpRk83Zn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1438987567215620102","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1438968014179905544,"in_reply_to_status_id_str":"1438968014179905544","in_reply_to_user_id":216417161,"in_reply_to_user_id_str":"216417161","in_reply_to_screen_name":"ChrisLeeGregory","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488632484729352192\/iTuWmMzN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488632484729352192\/iTuWmMzN_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241344789381029888,"id_str":"1241344789381029888","name":"Onyedikachi","screen_name":"Onyedik51721384","location":"Biafra - ","description":"Ability to think fast","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":421,"listed_count":0,"created_at":"Sat - Mar 21 12:44:12 +0000 2020","favourites_count":3981,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5393,"lang":null,"status":{"created_at":"Fri - Feb 11 18:28:21 +0000 2022","id":1492203870247923723,"id_str":"1492203870247923723","text":"RT - @AloyEjimakor: In R v Horseferry Road Magistrate Court, the Court held: \u2018Where - a defendant was brought back to UK in disregard of extrad\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AloyEjimakor","name":"aloy - ejimakor","id":200921896,"id_str":"200921896","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 11 06:30:23 +0000 2022","id":1492023188141842441,"id_str":"1492023188141842441","text":"In - R v Horseferry Road Magistrate Court, the Court held: \u2018Where a defendant - was brought back to UK in disregard of\u2026 https:\/\/t.co\/yPBdwKqVE1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yPBdwKqVE1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1492023188141842441","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1698,"favorite_count":1606,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1698,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400442565141438464\/TXUqcaxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400442565141438464\/TXUqcaxo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41894028,"id_str":"41894028","name":"timg","screen_name":"snoacuse47","location":"Denver, - CO","description":"Syracuse and LeMoyne grad. The right to vote is an inalienable - right.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":1200,"listed_count":0,"created_at":"Fri - May 22 20:29:44 +0000 2009","favourites_count":590,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":544,"lang":null,"status":{"created_at":"Fri - Mar 25 22:12:21 +0000 2022","id":1507480535257522177,"id_str":"1507480535257522177","text":"@KellyMLacey - Asthma attack ? Would steam vs cold air be recommended? Good luck from someone - with asthma.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KellyMLacey","name":"Kelly - Lacey","id":1312005283,"id_str":"1312005283","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507460071554490368,"in_reply_to_status_id_str":"1507460071554490368","in_reply_to_user_id":1312005283,"in_reply_to_user_id_str":"1312005283","in_reply_to_screen_name":"KellyMLacey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477096014641303552\/UkiCLy9-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477096014641303552\/UkiCLy9-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41894028\/1641002018","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":298941361,"id_str":"298941361","name":"adeosun olugbenga","screen_name":"ohllexy","location":"4&6 - Demurin Road,off Ketu Alap","description":"Soil Scientist Graduates at Ooucas,A - loyal fan of Man.Utd.,Soft,endow wv subtle smile...Co-founder,Ohllexy proxy - world..08102612054...doctorwale4ever@yahoo.com","url":"https:\/\/t.co\/x0kq7pFl39","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/x0kq7pFl39","expanded_url":"http:\/\/www.flashconcept.com","display_url":"flashconcept.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":186,"friends_count":4289,"listed_count":0,"created_at":"Sun - May 15 06:48:10 +0000 2011","favourites_count":1111,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":269,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418510576230277122\/EiZ6W0J-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418510576230277122\/EiZ6W0J-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298941361\/1593664189","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":720054625202778113,"id_str":"720054625202778113","name":"Marina - Re","screen_name":"MarinaRe10","location":"New York City ","description":"","url":"https:\/\/t.co\/3bkyInf4V7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3bkyInf4V7","expanded_url":"http:\/\/Marinare.info","display_url":"Marinare.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":342,"listed_count":0,"created_at":"Wed - Apr 13 01:02:55 +0000 2016","favourites_count":86674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Sat - Jul 25 00:23:09 +0000 2020","id":1286819240763363328,"id_str":"1286819240763363328","text":"RT - @AdamParkhomenko: Don says 10,000 retweets in two hours so let\u2019s hit - 10,000 retweets in an hour https:\/\/t.co\/qS9Qaf8vCj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamParkhomenko","name":"Adam - Parkhomenko","id":18382184,"id_str":"18382184","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/qS9Qaf8vCj","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1286814475899662336","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[99,122]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jul 25 00:09:43 +0000 2020","id":1286815859286179843,"id_str":"1286815859286179843","text":"Don - says 10,000 retweets in two hours so let\u2019s hit 10,000 retweets in an - hour https:\/\/t.co\/qS9Qaf8vCj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qS9Qaf8vCj","expanded_url":"https:\/\/twitter.com\/donwinslow\/status\/1286814475899662336","display_url":"twitter.com\/donwinslow\/sta\u2026","indices":[78,101]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1286814475899662336,"quoted_status_id_str":"1286814475899662336","retweet_count":7502,"favorite_count":6328,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1286814475899662336,"quoted_status_id_str":"1286814475899662336","retweet_count":7502,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249738740848721925,"id_str":"1249738740848721925","name":"Andre","screen_name":"florespol21","location":"Lungsod - ng Cagayan de Oro, Reh","description":"\u2696","url":"https:\/\/t.co\/knNDBneRcO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/knNDBneRcO","expanded_url":"https:\/\/www.facebook.com\/pol.flores.965","display_url":"facebook.com\/pol.flores.965","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":227,"friends_count":223,"listed_count":0,"created_at":"Mon - Apr 13 16:38:37 +0000 2020","favourites_count":1279,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1204,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505213088328400898\/_OBiQy5J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505213088328400898\/_OBiQy5J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1249738740848721925\/1636176895","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":921621974,"id_str":"921621974","name":"Cal - Shields","screen_name":"CalShields","location":"Hua Hin, Thailand","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":134,"listed_count":0,"created_at":"Fri - Nov 02 19:26:23 +0000 2012","favourites_count":202,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"status":{"created_at":"Wed - Mar 02 16:00:04 +0000 2022","id":1499051926159511554,"id_str":"1499051926159511554","text":"@_emmactidxo - A very Happy Birthday to you, all the best from Cal \ud83d\ude3b\ud83d\ude3b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"_emmactidxo","name":"emma - \u2661","id":37994425,"id_str":"37994425","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1498997613391233035,"in_reply_to_status_id_str":"1498997613391233035","in_reply_to_user_id":37994425,"in_reply_to_user_id_str":"37994425","in_reply_to_screen_name":"_emmactidxo","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47175671,"id_str":"47175671","name":"Keith - Conklin","screen_name":"wyckedmystic","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":307,"listed_count":0,"created_at":"Sun - Jun 14 21:11:31 +0000 2009","favourites_count":374,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":97,"lang":null,"status":{"created_at":"Sat - Mar 05 13:34:44 +0000 2022","id":1500102514175356935,"id_str":"1500102514175356935","text":"@tednaiman - Add nonfat Greek yogurt and that''s basically my lunch 5 days a week.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tednaiman","name":"Ted - \u26a1\ufe0f Naiman","id":527156989,"id_str":"527156989","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1491299134401564674,"in_reply_to_status_id_str":"1491299134401564674","in_reply_to_user_id":527156989,"in_reply_to_user_id_str":"527156989","in_reply_to_screen_name":"tednaiman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780802647729147906,"id_str":"780802647729147906","name":"Cameron - Spurgeon","screen_name":"camnhardy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":130,"friends_count":448,"listed_count":1,"created_at":"Tue - Sep 27 16:13:52 +0000 2016","favourites_count":9133,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17247,"lang":null,"status":{"created_at":"Fri - Mar 25 21:29:59 +0000 2022","id":1507469873487749128,"id_str":"1507469873487749128","text":"@AccountableGOP - @suzannekeith71 Sick sick sick.... Vote in 2022","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AccountableGOP","name":"The - Republican Accountability Project","id":1265761679947771905,"id_str":"1265761679947771905","indices":[0,15]},{"screen_name":"suzannekeith71","name":"suzanne - keith","id":2677371627,"id_str":"2677371627","indices":[16,31]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507380303505018880,"in_reply_to_status_id_str":"1507380303505018880","in_reply_to_user_id":1265761679947771905,"in_reply_to_user_id_str":"1265761679947771905","in_reply_to_screen_name":"AccountableGOP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1031203406692511744,"id_str":"1031203406692511744","name":"Bronson","screen_name":"Bronson67699972","location":"Tacoma, - WA","description":"None of your business","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":146,"listed_count":0,"created_at":"Sun - Aug 19 15:37:05 +0000 2018","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11,"lang":null,"status":{"created_at":"Mon - Nov 09 03:30:36 +0000 2020","id":1325641916575182848,"id_str":"1325641916575182848","text":"https:\/\/t.co\/e3gT3A6Hwi","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/e3gT3A6Hwi","expanded_url":"https:\/\/www.youtube.com\/watch?v=WZWRhLW7Y8w","display_url":"youtube.com\/watch?v=WZWRhL\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1031204128158937088\/uDque-Q1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1031204128158937088\/uDque-Q1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031203406692511744\/1535066227","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":935532348564824067,"id_str":"935532348564824067","name":"Kristine - Yahna Todaro","screen_name":"MuhlenbergNews","location":"Allentown, PA","description":"@Muhlenberg - College director of news & media relations. #Oregon roots. Contact me for - great faculty experts & timely story ideas. kristinetodaro@muhlenberg.edu","url":"https:\/\/t.co\/xq4Q5sNrsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xq4Q5sNrsc","expanded_url":"https:\/\/www.muhlenberg.edu\/","display_url":"muhlenberg.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":534,"friends_count":1903,"listed_count":5,"created_at":"Tue - Nov 28 15:34:28 +0000 2017","favourites_count":6296,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3790,"lang":null,"status":{"created_at":"Fri - Mar 25 14:41:20 +0000 2022","id":1507367031439511552,"id_str":"1507367031439511552","text":"\u201cThey - are so recognizable \u2014 they are huge (3-4 inches in diameter, including - the legs) and have a large bright yell\u2026 https:\/\/t.co\/0zSHWNewq8","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0zSHWNewq8","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507367031439511552","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507367030030315520,"in_reply_to_status_id_str":"1507367030030315520","in_reply_to_user_id":935532348564824067,"in_reply_to_user_id_str":"935532348564824067","in_reply_to_screen_name":"MuhlenbergNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016682610095984641\/9GfpQKHN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016682610095984641\/9GfpQKHN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/935532348564824067\/1571064478","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243977978142318593,"id_str":"1243977978142318593","name":"wds","screen_name":"szwds16","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":39,"friends_count":1178,"listed_count":1,"created_at":"Sat - Mar 28 19:07:25 +0000 2020","favourites_count":111,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":855,"lang":null,"status":{"created_at":"Fri - Mar 25 16:30:00 +0000 2022","id":1507394379421712384,"id_str":"1507394379421712384","text":"RT - @hu_lalalalala: \u54c8\u54c8\u54c8\u3002 https:\/\/t.co\/geUsSiW3oS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hu_lalalalala","name":"\u51fa\u57c3\u53ca\u8bb0","id":48261647,"id_str":"48261647","indices":[3,17]}],"urls":[],"media":[{"id":1507323878590525448,"id_str":"1507323878590525448","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","url":"https:\/\/t.co\/geUsSiW3oS","display_url":"pic.twitter.com\/geUsSiW3oS","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1507323909682577411\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1507323909682577411,"source_status_id_str":"1507323909682577411","source_user_id":48261647,"source_user_id_str":"48261647"}]},"extended_entities":{"media":[{"id":1507323878590525448,"id_str":"1507323878590525448","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","url":"https:\/\/t.co\/geUsSiW3oS","display_url":"pic.twitter.com\/geUsSiW3oS","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1507323909682577411\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1507323909682577411,"source_status_id_str":"1507323909682577411","source_user_id":48261647,"source_user_id_str":"48261647","video_info":{"aspect_ratio":[9,16],"duration_millis":9683,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/pl\/wjMZQECthohmDdo9.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/480x852\/IFg58sQCU8SwkuL-.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/576x1024\/YR6G2zsdKjq59h2n.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/320x568\/rGh2wkgpIt_Qa_dX.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:49:59 +0000 2022","id":1507323909682577411,"id_str":"1507323909682577411","text":"\u54c8\u54c8\u54c8\u3002 - https:\/\/t.co\/geUsSiW3oS","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507323878590525448,"id_str":"1507323878590525448","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","url":"https:\/\/t.co\/geUsSiW3oS","display_url":"pic.twitter.com\/geUsSiW3oS","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1507323909682577411\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507323878590525448,"id_str":"1507323878590525448","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507323878590525448\/pu\/img\/06T-Qgm16nFIGhmK.jpg","url":"https:\/\/t.co\/geUsSiW3oS","display_url":"pic.twitter.com\/geUsSiW3oS","expanded_url":"https:\/\/twitter.com\/hu_lalalalala\/status\/1507323909682577411\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":9683,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/pl\/wjMZQECthohmDdo9.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/480x852\/IFg58sQCU8SwkuL-.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/576x1024\/YR6G2zsdKjq59h2n.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507323878590525448\/pu\/vid\/320x568\/rGh2wkgpIt_Qa_dX.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":412,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":120,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":989424820768137216,"id_str":"989424820768137216","name":"Peter - Mulaki","screen_name":"MulakiPeterz","location":"Eldoret","description":"Life - is a series of natural and spontaneous changes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":510,"listed_count":0,"created_at":"Thu - Apr 26 08:43:54 +0000 2018","favourites_count":20,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Wed - Jan 26 02:36:32 +0000 2022","id":1486166131601723395,"id_str":"1486166131601723395","text":"What - pity thing uliambiwa na jamaa ama dame wako ndio upigwe character development... - Let''s hear from legends","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1174384573880459264\/h6cmrDic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1174384573880459264\/h6cmrDic_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":373369674,"id_str":"373369674","name":"Lori - Nelson","screen_name":"lorinelsonart","location":"Brooklyn","description":"Painter - in Brooklyn. Making art so you don''t have to.","url":"https:\/\/t.co\/W7n1fDre4H","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/W7n1fDre4H","expanded_url":"http:\/\/www.lorinelson.com\/shoppe\/always-grab-back-4-sticker","display_url":"lorinelson.com\/shoppe\/always-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":233,"friends_count":326,"listed_count":0,"created_at":"Wed - Sep 14 13:19:59 +0000 2011","favourites_count":285,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":997,"lang":null,"status":{"created_at":"Wed - Feb 12 16:09:07 +0000 2020","id":1227625690490490880,"id_str":"1227625690490490880","text":"Thank - you @HighlarkMag @coreyhelford https:\/\/t.co\/ravELnYm0I","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HighlarkMag","name":"HIGHLARK","id":4883447867,"id_str":"4883447867","indices":[10,22]},{"screen_name":"coreyhelford","name":"Corey - Helford","id":43971278,"id_str":"43971278","indices":[23,36]}],"urls":[{"url":"https:\/\/t.co\/ravELnYm0I","expanded_url":"https:\/\/twitter.com\/HighlarkMag\/status\/1225496983005208576","display_url":"twitter.com\/HighlarkMag\/st\u2026","indices":[37,60]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1225496983005208576,"quoted_status_id_str":"1225496983005208576","retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481102457208987648\/JkI6lS2v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481102457208987648\/JkI6lS2v_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373369674\/1403538779","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1006906609375809536,"id_str":"1006906609375809536","name":"\ud83d\udc51CrOwNhOlDeR\ud83d\udc51\u2744","screen_name":"Raah_selemani","location":"Midlands, - Zimbabwe","description":"Certified G_Twn_#054 Hustler","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":477,"friends_count":1599,"listed_count":0,"created_at":"Wed - Jun 13 14:30:17 +0000 2018","favourites_count":1158,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"status":{"created_at":"Fri - Jan 28 07:52:01 +0000 2022","id":1486970302588354560,"id_str":"1486970302588354560","text":"This - current stage of my life wants me to pray more, work harder & say less - . BIRTHDAY on a #YellowFriday https:\/\/t.co\/HEGpLY7fTw","truncated":false,"entities":{"hashtags":[{"text":"YellowFriday","indices":[96,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1486970253154271232,"id_str":"1486970253154271232","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/FKLHkSLVQAAq_AB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKLHkSLVQAAq_AB.jpg","url":"https:\/\/t.co\/HEGpLY7fTw","display_url":"pic.twitter.com\/HEGpLY7fTw","expanded_url":"https:\/\/twitter.com\/Raah_selemani\/status\/1486970302588354560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1486970253154271232,"id_str":"1486970253154271232","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/FKLHkSLVQAAq_AB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKLHkSLVQAAq_AB.jpg","url":"https:\/\/t.co\/HEGpLY7fTw","display_url":"pic.twitter.com\/HEGpLY7fTw","expanded_url":"https:\/\/twitter.com\/Raah_selemani\/status\/1486970302588354560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291949104713674755\/W8Bps0XA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291949104713674755\/W8Bps0XA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1006906609375809536\/1584576066","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1777382678,"id_str":"1777382678","name":"Shorelady","screen_name":"NJshorelady","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":764,"listed_count":0,"created_at":"Sat - Sep 07 21:23:48 +0000 2013","favourites_count":31224,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31327,"lang":null,"status":{"created_at":"Fri - Mar 25 23:34:26 +0000 2022","id":1507501192561238024,"id_str":"1507501192561238024","text":"RT - @blueheartedly: Who thinks Clarence Thomas should be impeached from the Supreme - Court?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"blueheartedly","name":"\ud83d\uddf34fuxake!\ud83d\uddf3","id":702577251020382209,"id_str":"702577251020382209","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:30:09 +0000 2022","id":1507485014656696320,"id_str":"1507485014656696320","text":"Who - thinks Clarence Thomas should be impeached from the Supreme Court?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":1044,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":181,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590964753561849856\/H6Ee8eJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590964753561849856\/H6Ee8eJw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1009512599048806400,"id_str":"1009512599048806400","name":"Bill","screen_name":"BillplaysBall","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":214,"listed_count":0,"created_at":"Wed - Jun 20 19:05:34 +0000 2018","favourites_count":13848,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":624,"lang":null,"status":{"created_at":"Sat - Mar 12 05:59:33 +0000 2022","id":1502524679784833025,"id_str":"1502524679784833025","text":"@joncoopertweets - @MeidasTouch You sure?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[0,16]},{"screen_name":"MeidasTouch","name":"MeidasTouch.com","id":1243560408025198593,"id_str":"1243560408025198593","indices":[17,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502449375255142402,"in_reply_to_status_id_str":"1502449375255142402","in_reply_to_user_id":27493883,"in_reply_to_user_id_str":"27493883","in_reply_to_screen_name":"joncoopertweets","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1009514134453379072\/A9YAUYyf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009514134453379072\/A9YAUYyf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009512599048806400\/1529521874","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14138266,"id_str":"14138266","name":"jerry - stearns","screen_name":"Mexilingus","location":"Tucson, Arizona","description":"RN - wound specialist public health civil rights immigrants coyote","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":136,"friends_count":1404,"listed_count":0,"created_at":"Thu - Mar 13 08:38:27 +0000 2008","favourites_count":6853,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3588,"lang":null,"status":{"created_at":"Sat - Mar 26 01:44:41 +0000 2022","id":1507533969822142464,"id_str":"1507533969822142464","text":"This - is not a medication error case https:\/\/t.co\/LsyG8e99aO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LsyG8e99aO","expanded_url":"https:\/\/twitter.com\/fuzzymittens\/status\/1507355256455413760","display_url":"twitter.com\/fuzzymittens\/s\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507355256455413760,"quoted_status_id_str":"1507355256455413760","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309201007688073216\/aa-dkFRP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309201007688073216\/aa-dkFRP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14138266\/1616256840","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4064581601,"id_str":"4064581601","name":"Rosemary - DeCroce","screen_name":"Rosjon381","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":747,"listed_count":0,"created_at":"Thu - Oct 29 01:43:21 +0000 2015","favourites_count":4512,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Sun - Feb 06 17:17:41 +0000 2022","id":1490374147003846665,"id_str":"1490374147003846665","text":"@tomiahonen - A must must read!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tomiahonen","name":"Tomi - T Ahonen Stands With Ukraine","id":17477864,"id_str":"17477864","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1490352639099523074,"in_reply_to_status_id_str":"1490352639099523074","in_reply_to_user_id":17477864,"in_reply_to_user_id_str":"17477864","in_reply_to_screen_name":"tomiahonen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21612055,"id_str":"21612055","name":"martie","screen_name":"martie7692","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":613,"listed_count":0,"created_at":"Sun - Feb 22 23:44:47 +0000 2009","favourites_count":1274,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":284,"lang":null,"status":{"created_at":"Sun - Mar 06 19:54:04 +0000 2022","id":1500560365997813761,"id_str":"1500560365997813761","text":"RT - @Cobylefko: I don\u2019t think I\u2019ve ever felt such a palpable sense of - livability than in Greenville. It feels like I\u2019ve stepped into a comme\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Cobylefko","name":"Coby","id":1039703701584338947,"id_str":"1039703701584338947","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 16:05:01 +0000 2022","id":1499777946436911112,"id_str":"1499777946436911112","text":"I - don\u2019t think I\u2019ve ever felt such a palpable sense of livability than - in Greenville. It feels like I\u2019ve stepped int\u2026 https:\/\/t.co\/DrR4xLnm1v","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DrR4xLnm1v","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499777946436911112","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"8eb7d0abedc4817b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8eb7d0abedc4817b.json","place_type":"city","name":"Greenville","full_name":"Greenville, - SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-82.434848,34.687331],[-82.249689,34.687331],[-82.249689,34.904552],[-82.434848,34.904552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":343,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"200709","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473394686\/MTM046_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473394686\/MTM046_normal.jpg","profile_link_color":"C96D43","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"200709","profile_text_color":"6A4836","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":598429237,"id_str":"598429237","name":"Alex - Walker","screen_name":"alexswalker","location":"Derby","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":687,"listed_count":1,"created_at":"Sun - Jun 03 15:41:29 +0000 2012","favourites_count":104,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":710,"lang":null,"status":{"created_at":"Fri - Dec 03 11:30:41 +0000 2021","id":1466731611924348928,"id_str":"1466731611924348928","text":"@BeefeaterDave - Thanks @BeefeaterDave really enjoyed the tour yesterday. Masterful trip through - the ages \ud83d\udc4d https:\/\/t.co\/qCqCqAR09X","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BeefeaterDave","name":"Dave - Phillips \ud83c\uddec\ud83c\udde7 \ud83c\udff0 \ud83c\uddf4\ud83c\uddf2","id":2692106868,"id_str":"2692106868","indices":[0,14]},{"screen_name":"BeefeaterDave","name":"Dave - Phillips \ud83c\uddec\ud83c\udde7 \ud83c\udff0 \ud83c\uddf4\ud83c\uddf2","id":2692106868,"id_str":"2692106868","indices":[22,36]}],"urls":[],"media":[{"id":1466731401080889355,"id_str":"1466731401080889355","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FFrgcC5WYAsMbw-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFrgcC5WYAsMbw-.jpg","url":"https:\/\/t.co\/qCqCqAR09X","display_url":"pic.twitter.com\/qCqCqAR09X","expanded_url":"https:\/\/twitter.com\/alexswalker\/status\/1466731611924348928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1800,"h":1800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1466731401080889355,"id_str":"1466731401080889355","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/FFrgcC5WYAsMbw-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FFrgcC5WYAsMbw-.jpg","url":"https:\/\/t.co\/qCqCqAR09X","display_url":"pic.twitter.com\/qCqCqAR09X","expanded_url":"https:\/\/twitter.com\/alexswalker\/status\/1466731611924348928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1800,"h":1800,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1466421829535510532,"in_reply_to_status_id_str":"1466421829535510532","in_reply_to_user_id":2692106868,"in_reply_to_user_id_str":"2692106868","in_reply_to_screen_name":"BeefeaterDave","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451495224929398788\/JRhtTB8L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451495224929398788\/JRhtTB8L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598429237\/1634898406","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1217087063599783937,"id_str":"1217087063599783937","name":"richard - cunningham","screen_name":"rccunni","location":"Los Angeles, CA","description":"(he\/him) - \u2022 associate producer @marketplace \u2022 grad student @mujschool.","url":"https:\/\/t.co\/IhhsfxgtJc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IhhsfxgtJc","expanded_url":"http:\/\/seedisclaimer.com","display_url":"seedisclaimer.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":665,"friends_count":1031,"listed_count":8,"created_at":"Tue - Jan 14 14:12:50 +0000 2020","favourites_count":7428,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":1898,"lang":null,"status":{"created_at":"Fri - Mar 25 18:45:52 +0000 2022","id":1507428569726681090,"id_str":"1507428569726681090","text":"RT - @Phil_Lewis_: Wow Black News Channel is shutting down, effectively immediately. - 230 staff will be out of work as of today \n\nhttps:\/\/t.co\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Phil_Lewis_","name":"philip - lewis","id":286998245,"id_str":"286998245","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:29:56 +0000 2022","id":1507424560316047365,"id_str":"1507424560316047365","text":"Wow - Black News Channel is shutting down, effectively immediately. 230 staff will - be out of work as of today \n\nhttps:\/\/t.co\/epunpD1LcY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/epunpD1LcY","expanded_url":"https:\/\/www.latimes.com\/entertainment-arts\/business\/story\/2022-03-25\/black-news-channel-shad-kahn-shutting-down","display_url":"latimes.com\/entertainment-\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":265,"favorite_count":453,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":265,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507498603815714818\/e1kVem3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507498603815714818\/e1kVem3w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217087063599783937\/1637479466","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":911313727,"id_str":"911313727","name":"Dave, - RN, PA","screen_name":"Dfox68Fox","location":"","description":"","url":"https:\/\/t.co\/qeLuTKbatr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qeLuTKbatr","expanded_url":"http:\/\/www.inprnt.com\/gallery\/dfox68\/","display_url":"inprnt.com\/gallery\/dfox68\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":638,"listed_count":0,"created_at":"Sun - Oct 28 23:19:37 +0000 2012","favourites_count":5547,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":877,"lang":null,"status":{"created_at":"Sat - Mar 26 01:41:41 +0000 2022","id":1507533214541398020,"id_str":"1507533214541398020","text":"RT - @SheaSerrano: lifelong saint peters fan since three minutes ago when i turned - this game on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SheaSerrano","name":"Shea - Serrano","id":57162282,"id_str":"57162282","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 00:56:57 +0000 2022","id":1504622854821888001,"id_str":"1504622854821888001","text":"lifelong - saint peters fan since three minutes ago when i turned this game on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":222,"favorite_count":2428,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":222,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1374090560315789312\/LovdXUg8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1374090560315789312\/LovdXUg8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19982741,"id_str":"19982741","name":"PaigeHolland.eth\u2122\ufe0f\ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6\ud83c\udf3b","screen_name":"Paige_Holland","location":"Lubbock, - TX","description":"Don''t do dumb things. | When you know better, do better. - | Be excellent to one another! | #GenX #BLM | Web3 NFTs \ud83e\udd92 \ud83e\udd92Blockchain - Crypto \ud83d\ude80","url":"https:\/\/t.co\/2Fyk5Lord5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2Fyk5Lord5","expanded_url":"https:\/\/linktr.ee\/paigeholland","display_url":"linktr.ee\/paigeholland","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":1607,"listed_count":18,"created_at":"Tue - Feb 03 16:49:23 +0000 2009","favourites_count":6628,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":755,"lang":null,"status":{"created_at":"Tue - Mar 22 12:57:14 +0000 2022","id":1506253669032988683,"id_str":"1506253669032988683","text":"RT - @garyvee: #tuesdaymotivations \u2026 be kind to someone right now \u2764\ufe0f","truncated":false,"entities":{"hashtags":[{"text":"tuesdaymotivations","indices":[13,32]}],"symbols":[],"user_mentions":[{"screen_name":"garyvee","name":"Gary - Vaynerchuk","id":5768872,"id_str":"5768872","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 12:44:09 +0000 2022","id":1506250375942316037,"id_str":"1506250375942316037","text":"#tuesdaymotivations - \u2026 be kind to someone right now \u2764\ufe0f","truncated":false,"entities":{"hashtags":[{"text":"tuesdaymotivations","indices":[0,19]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":612,"favorite_count":4165,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":612,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507365283475959837\/scrL89Hc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507365283475959837\/scrL89Hc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19982741\/1610678417","profile_link_color":"024E61","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"5C5C5C","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1271303393210925057,"id_str":"1271303393210925057","name":"Nikola","screen_name":"Nikola37061137","location":"","description":"Dr - med, no","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":274,"listed_count":0,"created_at":"Fri - Jun 12 04:49:20 +0000 2020","favourites_count":5980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Sat - Jan 16 18:20:02 +0000 2021","id":1350508122964635648,"id_str":"1350508122964635648","text":"Slava - Herojinama mojim kolegama dr i ostalim medicinskim radnicima. https:\/\/t.co\/A8NHOSjpTt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A8NHOSjpTt","expanded_url":"https:\/\/twitter.com\/KurirVesti\/status\/1350495532691677185","display_url":"twitter.com\/KurirVesti\/sta\u2026","indices":[68,91]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1350495532691677185,"quoted_status_id_str":"1350495532691677185","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1287465738576461825\/EojcxYnZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1287465738576461825\/EojcxYnZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3807779661,"id_str":"3807779661","name":"Sarah - Wootton","screen_name":"SarahHJWootton","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":188,"listed_count":0,"created_at":"Mon - Sep 28 21:41:45 +0000 2015","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756289498971901952\/nflDOJSV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756289498971901952\/nflDOJSV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3807779661\/1469148444","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":880692321574166528,"id_str":"880692321574166528","name":"Wokie","screen_name":"bluerays38","location":"Mars","description":"Hotsexual - Pronoun: hot","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":1808,"listed_count":1,"created_at":"Fri - Jun 30 07:39:46 +0000 2017","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1784,"lang":null,"status":{"created_at":"Fri - Mar 25 23:43:54 +0000 2022","id":1507503572535050241,"id_str":"1507503572535050241","text":"RT - @ElijahSchaffer: Is there footage of an invasion like this in Ukraine? If - anyone has some please let me know\n\nhttps:\/\/t.co\/1QuwrQ5s7S","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ElijahSchaffer","name":"ELIJAH","id":350822109,"id_str":"350822109","indices":[3,18]}],"urls":[],"media":[{"id":1507205329020502022,"id_str":"1507205329020502022","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","url":"https:\/\/t.co\/1QuwrQ5s7S","display_url":"pic.twitter.com\/1QuwrQ5s7S","expanded_url":"https:\/\/twitter.com\/ShehabBawazeer2\/status\/1507207884450541571\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507207884450541571,"source_status_id_str":"1507207884450541571","source_user_id":1415305029221822464,"source_user_id_str":"1415305029221822464"}]},"extended_entities":{"media":[{"id":1507205329020502022,"id_str":"1507205329020502022","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","url":"https:\/\/t.co\/1QuwrQ5s7S","display_url":"pic.twitter.com\/1QuwrQ5s7S","expanded_url":"https:\/\/twitter.com\/ShehabBawazeer2\/status\/1507207884450541571\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507207884450541571,"source_status_id_str":"1507207884450541571","source_user_id":1415305029221822464,"source_user_id_str":"1415305029221822464","video_info":{"aspect_ratio":[16,9],"duration_millis":140008,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/pl\/QiszZIuaw5Vt7qor.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/vid\/480x270\/KdgGoWi5cbw5IB1q.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/vid\/640x360\/ymds11c4heLc7N6y.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 08:11:19 +0000 2022","id":1507268882448498688,"id_str":"1507268882448498688","text":"Is - there footage of an invasion like this in Ukraine? If anyone has some please - let me know\n\nhttps:\/\/t.co\/1QuwrQ5s7S","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507205329020502022,"id_str":"1507205329020502022","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","url":"https:\/\/t.co\/1QuwrQ5s7S","display_url":"pic.twitter.com\/1QuwrQ5s7S","expanded_url":"https:\/\/twitter.com\/ShehabBawazeer2\/status\/1507207884450541571\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507207884450541571,"source_status_id_str":"1507207884450541571","source_user_id":1415305029221822464,"source_user_id_str":"1415305029221822464"}]},"extended_entities":{"media":[{"id":1507205329020502022,"id_str":"1507205329020502022","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1507205329020502022\/pu\/img\/3LAcPkQx9ZChr6UL.jpg","url":"https:\/\/t.co\/1QuwrQ5s7S","display_url":"pic.twitter.com\/1QuwrQ5s7S","expanded_url":"https:\/\/twitter.com\/ShehabBawazeer2\/status\/1507207884450541571\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1507207884450541571,"source_status_id_str":"1507207884450541571","source_user_id":1415305029221822464,"source_user_id_str":"1415305029221822464","video_info":{"aspect_ratio":[16,9],"duration_millis":140008,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/pl\/QiszZIuaw5Vt7qor.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/vid\/480x270\/KdgGoWi5cbw5IB1q.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1507205329020502022\/pu\/vid\/640x360\/ymds11c4heLc7N6y.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":475,"favorite_count":1993,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":475,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358314646638260224\/RR6UpPjQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358314646638260224\/RR6UpPjQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880692321574166528\/1564876900","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":38944639,"id_str":"38944639","name":"R. - Ensiemada","screen_name":"rensiemada","location":"","description":"very stable - genius","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":45,"friends_count":958,"listed_count":4,"created_at":"Sat - May 09 22:47:07 +0000 2009","favourites_count":8048,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4806,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825329902253645825\/fgJdDv1t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825329902253645825\/fgJdDv1t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38944639\/1428429261","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1143563991471591424,"id_str":"1143563991471591424","name":"Michael","screen_name":"Michael72745620","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":1065,"listed_count":0,"created_at":"Tue - Jun 25 16:57:56 +0000 2019","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2543658080,"id_str":"2543658080","name":"Lynn - Ross","screen_name":"lynnmichelle19","location":"Cocoa, FL","description":"Native - Floridian. University of Central Florida Alum. BSBA (Accounting). MBA. Wife. - Mother. Educator. Book lover. Sports fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":349,"listed_count":1,"created_at":"Tue - Jun 03 14:34:07 +0000 2014","favourites_count":33513,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":322,"lang":null,"status":{"created_at":"Sat - Mar 05 14:17:54 +0000 2022","id":1500113377024172038,"id_str":"1500113377024172038","text":"@Emywinst - \ud83d\udc4d\ud83c\udffb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1500085583728754688,"in_reply_to_status_id_str":"1500085583728754688","in_reply_to_user_id":1424844847115079682,"in_reply_to_user_id_str":"1424844847115079682","in_reply_to_screen_name":"Emywinst","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473842746147758080\/jnzb3dqT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473842746147758080\/jnzb3dqT_normal.jpeg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1151804256632147968,"id_str":"1151804256632147968","name":"Towncrier70","screen_name":"towncrier70","location":"","description":"Proud - Catholic first and patriot always. Retired, conservative, husband, father - and grandfather. I follow back all patriots. Will not answer DM''s.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2901,"friends_count":3739,"listed_count":0,"created_at":"Thu - Jul 18 10:41:49 +0000 2019","favourites_count":28636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5715,"lang":null,"status":{"created_at":"Sat - Mar 26 03:19:41 +0000 2022","id":1507557878537850880,"id_str":"1507557878537850880","text":"@guatemayabyesi - @THOMASGOMEZ007 @Pontifex @Theo_Logica @1207go @sistervpaul_ @CatholicTroy - @DavidT66 @wlcarp1\u2026 https:\/\/t.co\/jCXjyv04cv","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"guatemayabyesi","name":"Yesi - Lemus +++","id":1022933180,"id_str":"1022933180","indices":[0,15]},{"screen_name":"THOMASGOMEZ007","name":"THOMAS - GOMEZ \u271d\ufe0f\ud83d\ude4f\ud83c\uddee\ud83c\uddf3\ud83d\ude4f","id":956517324843970560,"id_str":"956517324843970560","indices":[16,31]},{"screen_name":"Pontifex","name":"Pope - Francis","id":500704345,"id_str":"500704345","indices":[32,41]},{"screen_name":"Theo_Logica","name":"\ud83c\uddfa\ud83c\udde6\u0646 - THEO-LOGICA \u2627","id":958888823899000835,"id_str":"958888823899000835","indices":[42,54]},{"screen_name":"1207go","name":"Tom","id":272264494,"id_str":"272264494","indices":[55,62]},{"screen_name":"sistervpaul_","name":"Sr. - Veronica Paul","id":1736292218,"id_str":"1736292218","indices":[63,76]},{"screen_name":"CatholicTroy","name":"Troy - L. Guy","id":885327898172952576,"id_str":"885327898172952576","indices":[77,90]},{"screen_name":"DavidT66","name":"David - T","id":892532327078821889,"id_str":"892532327078821889","indices":[91,100]},{"screen_name":"wlcarp1","name":"Bill - Carpenter","id":2317766706,"id_str":"2317766706","indices":[101,109]}],"urls":[{"url":"https:\/\/t.co\/jCXjyv04cv","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507557878537850880","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507421377963376642,"in_reply_to_status_id_str":"1507421377963376642","in_reply_to_user_id":1022933180,"in_reply_to_user_id_str":"1022933180","in_reply_to_screen_name":"guatemayabyesi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371098776887250945\/unLDhYu9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371098776887250945\/unLDhYu9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151804256632147968\/1625400870","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48961815,"id_str":"48961815","name":"John - Moore","screen_name":"jake6419","location":"Saint Austell, England","description":"Walsall - Supporter?!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":469,"friends_count":2318,"listed_count":1,"created_at":"Sat - Jun 20 08:31:32 +0000 2009","favourites_count":1244,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":466,"lang":null,"status":{"created_at":"Fri - Mar 25 17:45:28 +0000 2022","id":1507413368491155465,"id_str":"1507413368491155465","text":"@Wat_the_deuce - 15","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Wat_the_deuce","name":"\ud83c\udf40\ud83c\uddee\ud83c\uddea\u2618\ufe0fWat_the_deuce\u2618\ufe0f\ud83c\uddee\ud83c\uddea\ud83c\udf40","id":1228649848171356160,"id_str":"1228649848171356160","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507299801355935764,"in_reply_to_status_id_str":"1507299801355935764","in_reply_to_user_id":1228649848171356160,"in_reply_to_user_id_str":"1228649848171356160","in_reply_to_screen_name":"Wat_the_deuce","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415301505587073026\/F6GfVg4O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415301505587073026\/F6GfVg4O_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21864479,"id_str":"21864479","name":"Corgi - custodian \ud83c\udde8\ud83c\uddff \ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\uddf9\ud83c\uddfa\ud83c\udde6","screen_name":"jhuitz","location":"Czech - Republic","description":"An accidental tourist, now Czech, usually tweeting - about Central and Eastern Europe, commercial banking, biking, an occasional rant... - some profanity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":401,"friends_count":697,"listed_count":22,"created_at":"Wed - Feb 25 13:25:17 +0000 2009","favourites_count":7668,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22636,"lang":null,"status":{"created_at":"Fri - Mar 25 18:21:30 +0000 2022","id":1507422437901754371,"id_str":"1507422437901754371","text":"@DanBilefsky - I\u2019d believe that if their goal had been to lose 10% of their army and - massacre civilians in the proces\u2026 https:\/\/t.co\/pBkYWr2xhN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanBilefsky","name":"Dan - Bilefsky","id":273581084,"id_str":"273581084","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/pBkYWr2xhN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507422437901754371","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507391632202735640,"in_reply_to_status_id_str":"1507391632202735640","in_reply_to_user_id":273581084,"in_reply_to_user_id_str":"273581084","in_reply_to_screen_name":"DanBilefsky","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485175218423357444\/SavVx0hq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485175218423357444\/SavVx0hq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21864479\/1609942718","profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7DA1B9","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":129873830,"id_str":"129873830","name":"Piyush - Chy","screen_name":"piyushchy","location":"Dhaka, Bangladesh","description":"A - civil servant, \nWorks under Ministry of Public Administration, Bangladesh","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":364,"listed_count":0,"created_at":"Mon - Apr 05 17:33:29 +0000 2010","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1451260012609736723\/bUSh4IRo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1451260012609736723\/bUSh4IRo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":327612515,"id_str":"327612515","name":"Tasja","screen_name":"mamag108","location":"","description":"....... - familiar stranger","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":479,"friends_count":1903,"listed_count":0,"created_at":"Fri - Jul 01 21:12:54 +0000 2011","favourites_count":3965,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1247,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486192386120290304\/UNqPpCtA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486192386120290304\/UNqPpCtA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327612515\/1643170852","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1694188195,"id_str":"1694188195","name":"Vincent","screen_name":"vincenttrapani","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":660,"listed_count":0,"created_at":"Fri - Aug 23 15:43:41 +0000 2013","favourites_count":13631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848568432132063232\/hO43070v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848568432132063232\/hO43070v_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":926754310028795904,"id_str":"926754310028795904","name":"RudyRiadi","screen_name":"rudy_riadi","location":"Indonesia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":4023,"listed_count":0,"created_at":"Sat - Nov 04 10:13:40 +0000 2017","favourites_count":21843,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22,"lang":null,"status":{"created_at":"Fri - May 14 05:34:47 +0000 2021","id":1393077308039188483,"id_str":"1393077308039188483","text":"\ud83e\udd32\ud83e\udd32\ud83e\udd32\ud83d\ude22\ud83d\ude13\ud83d\ude25 - https:\/\/t.co\/8Ny5c5CY9G","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1393077258236043264,"id_str":"1393077258236043264","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1393077258236043264\/pu\/img\/-kJEaTS0PTOlyIv9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1393077258236043264\/pu\/img\/-kJEaTS0PTOlyIv9.jpg","url":"https:\/\/t.co\/8Ny5c5CY9G","display_url":"pic.twitter.com\/8Ny5c5CY9G","expanded_url":"https:\/\/twitter.com\/rudy_riadi\/status\/1393077308039188483\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1393077258236043264,"id_str":"1393077258236043264","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1393077258236043264\/pu\/img\/-kJEaTS0PTOlyIv9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1393077258236043264\/pu\/img\/-kJEaTS0PTOlyIv9.jpg","url":"https:\/\/t.co\/8Ny5c5CY9G","display_url":"pic.twitter.com\/8Ny5c5CY9G","expanded_url":"https:\/\/twitter.com\/rudy_riadi\/status\/1393077308039188483\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":44933,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1393077258236043264\/pu\/vid\/480x270\/pcQQTrOTvMhuZg61.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1393077258236043264\/pu\/pl\/yOQTIRIfQQMuwd7m.m3u8?tag=12&container=fmp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1393077258236043264\/pu\/vid\/640x360\/NOGVY_ByEWN11SjQ.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172298705753407489\/iIoPLxS7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172298705753407489\/iIoPLxS7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":418755750,"id_str":"418755750","name":"Sherrie","screen_name":"SherrieCahn63","location":"Philadelphia, - PA","description":"July Leo. Lover of summer. Let\u2019s embrace our differences - & get along. Love conquers hate. Make a difference. #Resistance #StrongerTogether","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1582,"friends_count":1799,"listed_count":10,"created_at":"Tue - Nov 22 14:55:23 +0000 2011","favourites_count":191429,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":100821,"lang":null,"status":{"created_at":"Sat - Mar 26 10:48:31 +0000 2022","id":1507670829320003589,"id_str":"1507670829320003589","text":"RT - @antifaoperative: So..it turns out the \u201cracist baby\u201d book that Ted - Cruz was criticizing Judge Brown Jackson about isn\u2019t only in her chi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"antifaoperative","name":"\ud835\udc01\ud835\udc1e\ud835\udc24\ud835\udc2c - \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6","id":1432769984539893760,"id_str":"1432769984539893760","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:58:47 +0000 2022","id":1507416719991656450,"id_str":"1507416719991656450","text":"So..it - turns out the \u201cracist baby\u201d book that Ted Cruz was criticizing Judge - Brown Jackson about isn\u2019t only in her\u2026 https:\/\/t.co\/voMxFBFRqm","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/voMxFBFRqm","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507416719991656450","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2426,"favorite_count":11506,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2426,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204536946208452608\/Jdnd_im0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204536946208452608\/Jdnd_im0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875114853962272769,"id_str":"875114853962272769","name":"Vishal - Krishna Vatsa","screen_name":"VishalK20096764","location":"VIP A\/C genuine - 1, GLOBAL","description":"Chairman, World Human Rights Protection Council - Against Torture. RESEARCH & ANALYSIS, Principal Investigator,To Combat - Human Trafficking International Border","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":182,"friends_count":5,"listed_count":4,"created_at":"Wed - Jun 14 22:16:54 +0000 2017","favourites_count":31784,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29706,"lang":null,"status":{"created_at":"Fri - Mar 25 13:52:58 +0000 2022","id":1507354857631465475,"id_str":"1507354857631465475","text":"RT - @VishalK20096764: @myogiadityanath Congratulations Yogi ji , Wishing you all - the best for New innings ,People of Not Only UP but People\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VishalK20096764","name":"Vishal - Krishna Vatsa","id":875114853962272769,"id_str":"875114853962272769","indices":[3,19]},{"screen_name":"myogiadityanath","name":"Yogi - Adityanath","id":3437532637,"id_str":"3437532637","indices":[21,37]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 13:51:45 +0000 2022","id":1507354554135810051,"id_str":"1507354554135810051","text":"@myogiadityanath - Congratulations Yogi ji , Wishing you all the best for New innings ,People - of Not Only UP but Peop\u2026 https:\/\/t.co\/uEyEweEg3C","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"myogiadityanath","name":"Yogi - Adityanath","id":3437532637,"id_str":"3437532637","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/uEyEweEg3C","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507354554135810051","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3437532637,"in_reply_to_user_id_str":"3437532637","in_reply_to_screen_name":"myogiadityanath","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929827182691717120\/5HF8NVYL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929827182691717120\/5HF8NVYL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875114853962272769\/1510523976","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":972910374,"id_str":"972910374","name":"Angela - Lawson","screen_name":"CSKCproud","location":"","description":"Consultant","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":50,"friends_count":1047,"listed_count":1,"created_at":"Mon - Nov 26 23:45:51 +0000 2012","favourites_count":55016,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":379,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233023616842969089\/1wU7bDJc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233023616842969089\/1wU7bDJc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972910374\/1519137713","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1196115228804567040,"id_str":"1196115228804567040","name":"Ranjith - Sharma","screen_name":"Ranjith33067801","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":167,"friends_count":1150,"listed_count":1,"created_at":"Sun - Nov 17 17:18:31 +0000 2019","favourites_count":7840,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7895,"lang":null,"status":{"created_at":"Sat - Nov 14 14:48:37 +0000 2020","id":1327624484866539520,"id_str":"1327624484866539520","text":"RT - @Rajkuma13138595: #MustListen_Satsang","truncated":false,"entities":{"hashtags":[{"text":"MustListen_Satsang","indices":[21,40]}],"symbols":[],"user_mentions":[{"screen_name":"Rajkuma13138595","name":"Das - Rajkumar UP","id":939492182037118977,"id_str":"939492182037118977","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Nov 12 08:40:54 +0000 2020","id":1326807169560244224,"id_str":"1326807169560244224","text":"#MustListen_Satsang - https:\/\/t.co\/YbHBLlvVXp","truncated":false,"entities":{"hashtags":[{"text":"MustListen_Satsang","indices":[0,19]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YbHBLlvVXp","expanded_url":"https:\/\/twitter.com\/SaintRampalJiM\/status\/1326804520974737408","display_url":"twitter.com\/SaintRampalJiM\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1326804520974737408,"quoted_status_id_str":"1326804520974737408","retweet_count":64,"favorite_count":65,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":true,"quoted_status_id":1326804520974737408,"quoted_status_id_str":"1326804520974737408","retweet_count":64,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":316252848,"id_str":"316252848","name":"tp20117","screen_name":"tp20117","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":2009,"listed_count":0,"created_at":"Mon - Jun 13 05:06:56 +0000 2011","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041031321911533569\/liJEplqV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041031321911533569\/liJEplqV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":481720372,"id_str":"481720372","name":"Olga - Brezina","screen_name":"OBrezina","location":"Texas","description":"Open minded, - liberal soul who loves to travel the world!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":119,"listed_count":0,"created_at":"Fri - Feb 03 03:13:35 +0000 2012","favourites_count":839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Thu - Mar 10 05:14:30 +0000 2022","id":1501788564874481667,"id_str":"1501788564874481667","text":"@soledadobrien - I love to hear advice from a woman who hasn''t worked a single day in her - life!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"soledadobrien","name":"Soledad - O''Brien","id":26548315,"id_str":"26548315","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501634952336662531,"in_reply_to_status_id_str":"1501634952336662531","in_reply_to_user_id":26548315,"in_reply_to_user_id_str":"26548315","in_reply_to_screen_name":"soledadobrien","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1840026378\/IMAGE009_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1840026378\/IMAGE009_normal.JPG","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21987808,"id_str":"21987808","name":"Kathleen - Langdon","screen_name":"kathylangdon","location":"","description":"Thankful.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":1671,"listed_count":1,"created_at":"Thu - Feb 26 07:45:19 +0000 2009","favourites_count":6985,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":701,"lang":null,"status":{"created_at":"Sun - Jan 30 20:25:12 +0000 2022","id":1487884621983461385,"id_str":"1487884621983461385","text":"RT - @maggiesmithpoet: We\u2019ve lost our damn minds if we think that to keep - kids safe in school, we need to ban books, not assault weapons.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maggiesmithpoet","name":"Maggie - Smith","id":2871627629,"id_str":"2871627629","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 29 19:46:58 +0000 2022","id":1487512614695489536,"id_str":"1487512614695489536","text":"We\u2019ve - lost our damn minds if we think that to keep kids safe in school, we need - to ban books, not assault weapons.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24960,"favorite_count":147084,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":24960,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/201346780\/n749503217_1482916_6662404_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/201346780\/n749503217_1482916_6662404_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883390081549176832,"id_str":"883390081549176832","name":"bark - hansen","screen_name":"rak_fred","location":"Chester, NY","description":"Retired,Sikorsky - Aircraft. USAF Viet Nam War veteran\ud83c\uddfa\ud83c\uddf8Greatful papa!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":365,"friends_count":4973,"listed_count":0,"created_at":"Fri - Jul 07 18:19:42 +0000 2017","favourites_count":60804,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4141,"lang":null,"status":{"created_at":"Mon - Mar 21 23:55:35 +0000 2022","id":1506056961707683844,"id_str":"1506056961707683844","text":"RT - @HStarshot: @davenewworld_2 Hey @sonicdrivein, the garbage human cosplaying - a manager at your store fired a 16 y\/o girl after 4 of her f\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HStarshot","name":"Dan - \ud83c\uddfa\ud83c\uddf8","id":1334281932365029380,"id_str":"1334281932365029380","indices":[3,13]},{"screen_name":"davenewworld_2","name":"Fifty - Shades of Whey","id":886398296146706432,"id_str":"886398296146706432","indices":[15,30]},{"screen_name":"sonicdrivein","name":"Sonic - Drive-In","id":40349928,"id_str":"40349928","indices":[35,48]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 23:15:36 +0000 2022","id":1506046898603536387,"id_str":"1506046898603536387","text":"@davenewworld_2 - Hey @sonicdrivein, the garbage human cosplaying a manager at your store fired - a 16 y\/o girl after 4\u2026 https:\/\/t.co\/6L1LyuVV4a","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davenewworld_2","name":"Fifty - Shades of Whey","id":886398296146706432,"id_str":"886398296146706432","indices":[0,15]},{"screen_name":"sonicdrivein","name":"Sonic - Drive-In","id":40349928,"id_str":"40349928","indices":[20,33]}],"urls":[{"url":"https:\/\/t.co\/6L1LyuVV4a","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506046898603536387","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506041050560925705,"in_reply_to_status_id_str":"1506041050560925705","in_reply_to_user_id":886398296146706432,"in_reply_to_user_id_str":"886398296146706432","in_reply_to_screen_name":"davenewworld_2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":303,"favorite_count":707,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":303,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1402289352932216834\/MmnUYcC5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1402289352932216834\/MmnUYcC5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/883390081549176832\/1615521117","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":772463817909497856,"id_str":"772463817909497856","name":"Paul","screen_name":"3049prado","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":57,"listed_count":0,"created_at":"Sun - Sep 04 15:58:20 +0000 2016","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3023435975,"id_str":"3023435975","name":"mezxh.","screen_name":"mezxh","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":109,"friends_count":471,"listed_count":0,"created_at":"Sat - Feb 07 16:50:17 +0000 2015","favourites_count":2287,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643893595821490176\/C6bFUpcW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643893595821490176\/C6bFUpcW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927455066315018241,"id_str":"927455066315018241","name":"Ubong - Okure","screen_name":"Ubong_okure","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":470,"listed_count":0,"created_at":"Mon - Nov 06 08:38:13 +0000 2017","favourites_count":38,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":null,"status":{"created_at":"Sat - Dec 19 18:23:05 +0000 2020","id":1340362029798973441,"id_str":"1340362029798973441","text":"RT - @cuppymusic: RETWEET if you watched me DJ live at #PepsiTurnUpFriday \ud83c\udf89","truncated":false,"entities":{"hashtags":[{"text":"PepsiTurnUpFriday","indices":[53,71]}],"symbols":[],"user_mentions":[{"screen_name":"cuppymusic","name":"Cuppy","id":226944459,"id_str":"226944459","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 18 23:39:31 +0000 2020","id":1340079275945435143,"id_str":"1340079275945435143","text":"RETWEET - if you watched me DJ live at #PepsiTurnUpFriday \ud83c\udf89","truncated":false,"entities":{"hashtags":[{"text":"PepsiTurnUpFriday","indices":[37,55]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1144,"favorite_count":5789,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1144,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320428979262791682\/-3bJcrz0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320428979262791682\/-3bJcrz0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270412366069596160,"id_str":"1270412366069596160","name":"Haya - Panjwani","screen_name":"hayapanjw","location":"hpanjwani@kera.org","description":"she\/her - \u2022 pr: \"hi-yuh\" \u2022 news for @houstonpubmedia & @thedailycougar \u2022 - prev: tx @npr stations \u2022 \u0627\u0648\u0631 \u0627\u0631\u062f\u0648 - \u0645\u06cc\u06ba \u2022 rt\u2260endors \u2022 send tips & @britishbakeoff - memes","url":"https:\/\/t.co\/fqLOetn5Zl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fqLOetn5Zl","expanded_url":"http:\/\/hayapanjwani.com","display_url":"hayapanjwani.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":650,"friends_count":642,"listed_count":5,"created_at":"Tue - Jun 09 17:48:11 +0000 2020","favourites_count":1567,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1388,"lang":null,"status":{"created_at":"Fri - Mar 25 20:24:48 +0000 2022","id":1507453468893605889,"id_str":"1507453468893605889","text":"RT - @krbuckle: Let me try this one more time: \ud83d\udce2 WOMEN''S BASKETBALL - FANS IN HOUSTON, I want to chat with you for a story! Send me a DM or let\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"krbuckle","name":"Kyra - Buckley","id":17155859,"id_str":"17155859","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:39:39 +0000 2022","id":1507427007193309193,"id_str":"1507427007193309193","text":"Let - me try this one more time: \ud83d\udce2 WOMEN''S BASKETBALL FANS IN HOUSTON, - I want to chat with you for a story! Send me a\u2026 https:\/\/t.co\/2D7eNLzYLt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2D7eNLzYLt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507427007193309193","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507095498695581696,"quoted_status_id_str":"1507095498695581696","retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507095498695581696,"quoted_status_id_str":"1507095498695581696","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472725976123592706\/aq6i_Bca_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472725976123592706\/aq6i_Bca_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1270412366069596160\/1633536496","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1255127159376695296,"id_str":"1255127159376695296","name":"gul.rani13@yahoo.com","screen_name":"GulRani13","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":109,"listed_count":0,"created_at":"Tue - Apr 28 13:30:18 +0000 2020","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - May 25 09:50:58 +0000 2021","id":1397128047019626496,"id_str":"1397128047019626496","text":"RT - @MaleehaHashmey: Hun aaraam ay?\n\ud83d\ude02\ud83d\ude18\n\n\u062c\u0646 - \u062f\u0627\u0646\u0634\u0648\u0631\u0648\u06ba \u0633\u06d2 %3.94 \u06a9\u06cc - \u06af\u0631\u0648\u062a\u06be \u0631\u06cc\u0679 \u0628\u0631\u062f\u0627\u0634\u062a - \u0646\u06c1\u06cc\u06ba \u06c1\u0648 \u0631\u06c1\u06cc \u062a\u06be\u06cc\u060c - \u0627\u0646 \u06a9\u0648 Moody''s \u06a9\u0627 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 - \u06a9\u06d2 \u0644\u0626\u06d2 %4.4 \u062a\u0631\u0642\u06cc\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaleehaHashmey","name":"Maleeha - Hashmey","id":2987073216,"id_str":"2987073216","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 24 10:30:52 +0000 2021","id":1396775699504107525,"id_str":"1396775699504107525","text":"Hun - aaraam ay?\n\ud83d\ude02\ud83d\ude18\n\n\u062c\u0646 \u062f\u0627\u0646\u0634\u0648\u0631\u0648\u06ba - \u0633\u06d2 %3.94 \u06a9\u06cc \u06af\u0631\u0648\u062a\u06be \u0631\u06cc\u0679 - \u0628\u0631\u062f\u0627\u0634\u062a \u0646\u06c1\u06cc\u06ba \u06c1\u0648 - \u0631\u06c1\u06cc \u062a\u06be\u06cc\u060c \u0627\u0646 \u06a9\u0648 Moody''s - \u06a9\u0627 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646 \u06a9\u06d2 \u0644\u0626\u06d2 - %4.4 \u062a\u2026 https:\/\/t.co\/zQfw1QNrAQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zQfw1QNrAQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1396775699504107525","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1595,"favorite_count":6346,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":1595,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255127382983401474\/HE4Th4qF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255127382983401474\/HE4Th4qF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4633302552,"id_str":"4633302552","name":"Charles - Bailey","screen_name":"baltimorebailey","location":"Baltimore, MD","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":11,"friends_count":959,"listed_count":0,"created_at":"Tue - Dec 22 21:13:34 +0000 2015","favourites_count":28,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":84,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/831514720289042433\/LLurY4-8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/831514720289042433\/LLurY4-8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310688816,"id_str":"1310688816","name":"Enizibe - Victor Akenge","screen_name":"Eniakenge","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":389,"friends_count":672,"listed_count":7,"created_at":"Thu - Mar 28 14:01:48 +0000 2013","favourites_count":614,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":493,"lang":null,"status":{"created_at":"Thu - Mar 10 08:34:11 +0000 2022","id":1501838817644490754,"id_str":"1501838817644490754","text":"RT - @Naushad39613992: Don''t waste time being angry about your problems. Remember, - life is a series of tests. Instead, use that energy to fin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Naushad39613992","name":"lnvestor - Naushad Arjuna","id":1278346784369266694,"id_str":"1278346784369266694","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 04:44:20 +0000 2022","id":1498157094025023489,"id_str":"1498157094025023489","text":"Don''t - waste time being angry about your problems. Remember, life is a series of - tests. Instead, use that energy to\u2026 https:\/\/t.co\/TsIdU8ysyh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TsIdU8ysyh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1498157094025023489","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277185836593930241\/879uNl-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277185836593930241\/879uNl-f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1310688816\/1550581638","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":245885335,"id_str":"245885335","name":"Annabel - Vered","screen_name":"annabelvered","location":"","description":"Me in NYC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":328,"friends_count":4335,"listed_count":4,"created_at":"Tue - Feb 01 17:39:00 +0000 2011","favourites_count":110111,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19638,"lang":null,"status":{"created_at":"Fri - Mar 25 20:33:35 +0000 2022","id":1507455678583083010,"id_str":"1507455678583083010","text":"RT - @JimMFelton: When JK Rowling sat in that cafe all those years ago, there\u2019s - no way she could have known she\u2019d one day be endorsed by Vlad\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JimMFelton","name":"James - Felton","id":2904913023,"id_str":"2904913023","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:37:13 +0000 2022","id":1507365996201455638,"id_str":"1507365996201455638","text":"When - JK Rowling sat in that cafe all those years ago, there\u2019s no way she could - have known she\u2019d one day be endorsed\u2026 https:\/\/t.co\/Kzu90nsHAb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Kzu90nsHAb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507365996201455638","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7298,"favorite_count":74397,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7298,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259890521\/IMG_2924_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259890521\/IMG_2924_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":732736520554090498,"id_str":"732736520554090498","name":"angelica - montfort","screen_name":"angelicamaybe","location":"Dallas, TX","description":"Snarky - Texas Democrat, wife to @jmontforttx, mom, stepmom #Cornell #AdvancedSommelier\ud83c\udf77#FBR - #RESIST \ud83d\udeabDM\ud83d\udeab #AbortAbbott","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8474,"friends_count":9007,"listed_count":4,"created_at":"Wed - May 18 00:56:14 +0000 2016","favourites_count":1536,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":502,"lang":null,"status":{"created_at":"Thu - Mar 24 20:09:14 +0000 2022","id":1507087161912434689,"id_str":"1507087161912434689","text":"#HumansAgainstTedCruz - https:\/\/t.co\/lpCAY3FFA0","truncated":false,"entities":{"hashtags":[{"text":"HumansAgainstTedCruz","indices":[0,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lpCAY3FFA0","expanded_url":"https:\/\/twitter.com\/piyushmittal\/status\/1506850208956620801","display_url":"twitter.com\/piyushmittal\/s\u2026","indices":[22,45]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506850208956620801,"quoted_status_id_str":"1506850208956620801","retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1423625340140806148\/EdOjYuYV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1423625340140806148\/EdOjYuYV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732736520554090498\/1629518435","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1176186286991953920,"id_str":"1176186286991953920","name":"Love - USA","screen_name":"Purpleunity4ALL","location":"","description":"I\u2019m - on Twitter to express my views & comment on views. I\u2019m here to learn - & not rack up followers\u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":513,"listed_count":0,"created_at":"Mon - Sep 23 17:27:34 +0000 2019","favourites_count":118940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7163,"lang":null,"status":{"created_at":"Fri - Mar 25 14:57:59 +0000 2022","id":1507371221746438149,"id_str":"1507371221746438149","text":"RT - @NoLieWithBTC: NEW: In a text, Ginni Thomas told Mark Meadows that she was - having conversations with her \u201cbest friend\u201d as she urged the\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NoLieWithBTC","name":"No - Lie with Brian Tyler Cohen","id":1268223690480615424,"id_str":"1268223690480615424","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:05:52 +0000 2022","id":1507116515103019014,"id_str":"1507116515103019014","text":"NEW: - In a text, Ginni Thomas told Mark Meadows that she was having conversations - with her \u201cbest friend\u201d as she urge\u2026 https:\/\/t.co\/y805rdb6cS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/y805rdb6cS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507116515103019014","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2869,"favorite_count":8189,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2869,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176186455695249419\/CGFf6jIA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176186455695249419\/CGFf6jIA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1082026744515907584,"id_str":"1082026744515907584","name":"Appiah - Listowell","screen_name":"listowellappia2","location":"Bekwai, Ghana","description":"listowell","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":736,"listed_count":0,"created_at":"Sun - Jan 06 21:30:53 +0000 2019","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Fri - Jan 08 12:57:04 +0000 2021","id":1347527744876326912,"id_str":"1347527744876326912","text":"@Adomonline - These thinks Ghana is theirs anaa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Adomonline","name":"Adomonline","id":628448503,"id_str":"628448503","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1347500705242898432,"in_reply_to_status_id_str":"1347500705242898432","in_reply_to_user_id":628448503,"in_reply_to_user_id_str":"628448503","in_reply_to_screen_name":"Adomonline","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1319969042699112450\/Mnu_6VyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1319969042699112450\/Mnu_6VyZ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":112867894,"id_str":"112867894","name":"A. - AishaCelB\ud83c\udf0a\ud83c\udf0a\ud83c\udf0a","screen_name":"Aishacheikhel","location":"Kentucky, - USA","description":"I''m a Muslimah wife and mother.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":144,"friends_count":1683,"listed_count":0,"created_at":"Tue - Feb 09 23:45:51 +0000 2010","favourites_count":5759,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497899397283254274\/o2btXhwL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497899397283254274\/o2btXhwL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112867894\/1515916709","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2184054333,"id_str":"2184054333","name":"PGraham=Try - Jesus","screen_name":"mom2boy3s","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":3,"friends_count":208,"listed_count":0,"created_at":"Sun - Nov 17 03:45:49 +0000 2013","favourites_count":515,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567547989627904002\/Hz8d-xa3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567547989627904002\/Hz8d-xa3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2184054333\/1424149654","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823568573524103168,"id_str":"823568573524103168","name":"Sandra - Loveless","screen_name":"SandraLoveless7","location":"84057","description":"Retired - 27 year steelworker. Yes, it''s true harbor an unappetizing pocket of darkness - for current POTUS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":944,"friends_count":1947,"listed_count":4,"created_at":"Mon - Jan 23 16:30:23 +0000 2017","favourites_count":40388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21743,"lang":null,"status":{"created_at":"Fri - Mar 25 18:20:37 +0000 2022","id":1507422217662963713,"id_str":"1507422217662963713","text":"@nathaliejacoby1 - Yes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nathaliejacoby1","name":"Nathalie - Jacoby","id":1280478731874848769,"id_str":"1280478731874848769","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507373158470459401,"in_reply_to_status_id_str":"1507373158470459401","in_reply_to_user_id":1280478731874848769,"in_reply_to_user_id_str":"1280478731874848769","in_reply_to_screen_name":"nathaliejacoby1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/842765457081884672\/Gdu7HjM8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/842765457081884672\/Gdu7HjM8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":980491343398096897,"id_str":"980491343398096897","name":"Fatima - Mugabe","screen_name":"FatimaMugabe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":418,"listed_count":0,"created_at":"Sun - Apr 01 17:05:27 +0000 2018","favourites_count":194,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28,"lang":null,"status":{"created_at":"Tue - Nov 30 01:49:47 +0000 2021","id":1465498259661676544,"id_str":"1465498259661676544","text":"@Oofie76 - @daddyhope Thank you Ruth. We appreciate all your kind words as we process - this sad devastating heartbreaking news.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Oofie76","name":"Ruth - Cummings","id":21285854,"id_str":"21285854","indices":[0,8]},{"screen_name":"daddyhope","name":"Hopewell - Chin\u2019ono","id":73672445,"id_str":"73672445","indices":[9,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1465390539755470854,"in_reply_to_status_id_str":"1465390539755470854","in_reply_to_user_id":21285854,"in_reply_to_user_id_str":"21285854","in_reply_to_screen_name":"Oofie76","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23744843,"id_str":"23744843","name":"Tom - Hanley, APR","screen_name":"Hanleythomas","location":"Grand Rapids, MI","description":"PR - Strategist, Writer, https:\/\/t.co\/dhbXEGM6zU","url":"https:\/\/t.co\/wlq6VSoRF4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wlq6VSoRF4","expanded_url":"http:\/\/www.linkedin.com\/in\/tomhanley","display_url":"linkedin.com\/in\/tomhanley","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/dhbXEGM6zU","expanded_url":"http:\/\/HanleyStory.com","display_url":"HanleyStory.com","indices":[23,46]}]}},"protected":true,"followers_count":1328,"friends_count":3510,"listed_count":70,"created_at":"Wed - Mar 11 10:34:22 +0000 2009","favourites_count":12549,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7503,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1051124861077245952\/dzmDTvP2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1051124861077245952\/dzmDTvP2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23744843\/1539442604","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":117160074,"id_str":"117160074","name":"Carole - C. Reed","screen_name":"CaroleReedDsgn","location":"Digital Nomad in Bermuda - & NYC","description":"NYC Editor for Amazing Magazine, Curator, NFT\u2019s - obsessed - art and aesthetic branding, social media and the Moveable Feast. - SMU, Oxford University","url":"https:\/\/t.co\/rCOlF2ohmL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rCOlF2ohmL","expanded_url":"http:\/\/www.creedartanddesign.com","display_url":"creedartanddesign.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":333,"friends_count":1223,"listed_count":14,"created_at":"Wed - Feb 24 18:41:26 +0000 2010","favourites_count":6971,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3892,"lang":null,"status":{"created_at":"Fri - Mar 25 16:57:17 +0000 2022","id":1507401245828562944,"id_str":"1507401245828562944","text":"@Ypartnersbda - https:\/\/t.co\/C6x5gSRhWH","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ypartnersbda","name":"Your - Partners","id":1461041199830216708,"id_str":"1461041199830216708","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/C6x5gSRhWH","expanded_url":"https:\/\/twitter.com\/iternal8\/status\/1507400280152981510","display_url":"twitter.com\/iternal8\/statu\u2026","indices":[14,37]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1461041199830216708,"in_reply_to_user_id_str":"1461041199830216708","in_reply_to_screen_name":"Ypartnersbda","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507400280152981510,"quoted_status_id_str":"1507400280152981510","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8DCBBC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000250713768\/8376b86c224f855d2e76098bb7597766_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000250713768\/8376b86c224f855d2e76098bb7597766_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117160074\/1400258111","profile_link_color":"E39F58","profile_sidebar_border_color":"501A27","profile_sidebar_fill_color":"D82E55","profile_text_color":"FAE7AF","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":800065129,"id_str":"800065129","name":"Yuva - \ud83d\udd11","screen_name":"yuvaisowl_ing","location":"Singapore","description":"\ud83c\uddf8\ud83c\uddec|introvert|\u264c| - Biomedical\ud83e\uddea| I got it\ud83d\udcab","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":153,"friends_count":148,"listed_count":0,"created_at":"Mon - Sep 03 09:50:36 +0000 2012","favourites_count":4748,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16060,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502506947643277314\/LDu0BKEy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502506947643277314\/LDu0BKEy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800065129\/1646411615","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":478082915,"id_str":"478082915","name":"Brandon - Hill","screen_name":"HooplaHill","location":"Boston, MA","description":"Managing - editor & writer @central_sauce, bylines @okayplayer. Co-host In Search of - Sauce pod. MU BJJ 2018, Emerson MAJ student. Portfolio\/newsletter at link.","url":"https:\/\/t.co\/Il9Zp5EY68","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Il9Zp5EY68","expanded_url":"https:\/\/authory.com\/BrandonHill","display_url":"authory.com\/BrandonHill","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":882,"friends_count":1202,"listed_count":7,"created_at":"Sun - Jan 29 21:58:09 +0000 2012","favourites_count":21958,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11256,"lang":null,"status":{"created_at":"Sat - Mar 26 01:43:47 +0000 2022","id":1507533742277115908,"id_str":"1507533742277115908","text":"@TheJamikah - I was looking for Gang Starr or Jazzmatazz but this made for a great a nice - substitute. I know you love your Pete Rock haha","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheJamikah","name":"LL - Cool J(amikah)","id":2901318258,"id_str":"2901318258","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507527233136693249,"in_reply_to_status_id_str":"1507527233136693249","in_reply_to_user_id":2901318258,"in_reply_to_user_id_str":"2901318258","in_reply_to_screen_name":"TheJamikah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"800505","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488779531687239684\/l6it89YP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488779531687239684\/l6it89YP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478082915\/1643774135","profile_link_color":"9E0303","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":785507254841769984,"id_str":"785507254841769984","name":"Victoria - Stein","screen_name":"rhetorvick","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":83,"listed_count":0,"created_at":"Mon - Oct 10 15:48:18 +0000 2016","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Tue - Jul 21 20:57:33 +0000 2020","id":1285680337104916489,"id_str":"1285680337104916489","text":"Sutz - https:\/\/t.co\/hoWmtdmRIb xxvaign=RedBullFiresExecutiutzi8z8 tou","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hoWmtdmRIb","expanded_url":"https:\/\/www.businessinsider.com\/red-bull-fires-ceo-cmo-shakes-up-marketing-team-2020-7?utm_source=PaidTwitterQ3&utm_medium=CPC&utm_camp","display_url":"businessinsider.com\/red-bull-fires\u2026","indices":[5,28]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ca"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2536572890,"id_str":"2536572890","name":"John - E. Erickson","screen_name":"evan14er","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":329,"listed_count":0,"created_at":"Sat - May 31 04:22:07 +0000 2014","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":221,"lang":null,"status":{"created_at":"Fri - Feb 25 03:22:18 +0000 2022","id":1497049286730608644,"id_str":"1497049286730608644","text":"@FoxNews - How is that news?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1495518628107669504,"in_reply_to_status_id_str":"1495518628107669504","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584747310157967360\/NWrDKW3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584747310157967360\/NWrDKW3A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2536572890\/1557207242","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":247540908,"id_str":"247540908","name":"Bashar - Lulua","screen_name":"BasharLULUA","location":"Cambridge, England","description":"British - orchestra conductor & polyglot translator\/writer, of Palestinian-Iraqi descent, - born in Damascus, Syria. Serving Peace & Justice causes. YT & FB...","url":"https:\/\/t.co\/yLLK2brN1F","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yLLK2brN1F","expanded_url":"http:\/\/www.ur-performing-arts.com","display_url":"ur-performing-arts.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":707,"friends_count":4035,"listed_count":12,"created_at":"Sat - Feb 05 01:00:55 +0000 2011","favourites_count":5015,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4819,"lang":null,"status":{"created_at":"Sat - Mar 26 01:55:23 +0000 2022","id":1507536663219736581,"id_str":"1507536663219736581","text":"@niknowicki - Well done! \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"niknowicki","name":"Nik","id":1500272012757020677,"id_str":"1500272012757020677","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507355863308193797,"in_reply_to_status_id_str":"1507355863308193797","in_reply_to_user_id":1500272012757020677,"in_reply_to_user_id_str":"1500272012757020677","in_reply_to_screen_name":"niknowicki","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235109111\/240805_12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235109111\/240805_12_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247540908\/1583684041","profile_link_color":"999999","profile_sidebar_border_color":"333333","profile_sidebar_fill_color":"000000","profile_text_color":"404040","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":512421311,"id_str":"512421311","name":"vivian - friedman","screen_name":"v37862","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":289,"listed_count":0,"created_at":"Fri - Mar 02 20:32:40 +0000 2012","favourites_count":129,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":198,"lang":null,"status":{"created_at":"Wed - Mar 16 23:15:21 +0000 2022","id":1504234895941505027,"id_str":"1504234895941505027","text":"RT - @JoyceWhiteVance: Facts are stubborn things","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyceWhiteVance","name":"Joyce - Alene","id":548384458,"id_str":"548384458","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 16 22:41:04 +0000 2022","id":1504226270942478349,"id_str":"1504226270942478349","text":"Facts - are stubborn things https:\/\/t.co\/wzTXtuAWP4","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wzTXtuAWP4","expanded_url":"https:\/\/twitter.com\/ReallyAmerican1\/status\/1502045426333093896","display_url":"twitter.com\/ReallyAmerican\u2026","indices":[26,49]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1502045426333093896,"quoted_status_id_str":"1502045426333093896","retweet_count":6522,"favorite_count":15003,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1502045426333093896,"quoted_status_id_str":"1502045426333093896","retweet_count":6522,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3069232364,"id_str":"3069232364","name":"Bruce - Rubinstein","screen_name":"rubestheone","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":502,"listed_count":0,"created_at":"Mon - Mar 09 06:37:14 +0000 2015","favourites_count":2369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1046,"lang":null,"status":{"created_at":"Sat - Mar 12 08:46:59 +0000 2022","id":1502566814886207489,"id_str":"1502566814886207489","text":"@GOPLeader - #Moscowmccarthy","truncated":false,"entities":{"hashtags":[{"text":"Moscowmccarthy","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502368520532905996,"in_reply_to_status_id_str":"1502368520532905996","in_reply_to_user_id":19739126,"in_reply_to_user_id_str":"19739126","in_reply_to_screen_name":"GOPLeader","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265477177350541313,"id_str":"1265477177350541313","name":"\ud83d\udc26 - More","screen_name":"mertbirdwater57","location":"Zona Centro, Xalapa, Mexico","description":"Retired - Texican in a #Mexican cloud forest \ud83d\udcae\ntrying to keep my #orchids\nalive \ud83c\uddf2\ud83c\uddfd - grabbing some gusto \ud83c\udfbc\u263a\ufe0f\ud83c\udf1e\ud83c\udf3a\ud83c\udf40\ud83c\udf0a\ud83d\udc83","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":2516,"listed_count":0,"created_at":"Wed - May 27 02:57:46 +0000 2020","favourites_count":14003,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6504,"lang":null,"status":{"created_at":"Mon - Dec 20 15:56:14 +0000 2021","id":1472959034269519874,"id_str":"1472959034269519874","text":"#artesanal - shopping in #Xalapa yesterday and I found these pretty objects.\n#shoplocal - \n #supportlocalartists\u2026 https:\/\/t.co\/s9yKW0OwUM","truncated":true,"entities":{"hashtags":[{"text":"artesanal","indices":[0,10]},{"text":"Xalapa","indices":[23,30]},{"text":"shoplocal","indices":[76,86]},{"text":"supportlocalartists","indices":[89,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/s9yKW0OwUM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1472959034269519874","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"8b16d56e258b0278","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8b16d56e258b0278.json","place_type":"city","name":"Xalapa","full_name":"Xalapa, - Veracruz de Ignacio de la Llave","country_code":"MX","country":"Mexico","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-96.971524,19.48425],[-96.800642,19.48425],[-96.800642,19.599858],[-96.971524,19.599858]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322307668451753987\/AtMVgJHf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322307668451753987\/AtMVgJHf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1265477177350541313\/1637707748","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":48583507,"id_str":"48583507","name":"Harry - J. Lew","screen_name":"harryjohnCT","location":"Southington, CT","description":"Content - strategist, marketer, scribbler, photographer. I spend too much time in front - of my Mac and own way too many cameras. Isn''t life grand?","url":"http:\/\/t.co\/o2OQlifTKg","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o2OQlifTKg","expanded_url":"http:\/\/www.harryjohn.smugmug.com","display_url":"harryjohn.smugmug.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":245,"friends_count":2888,"listed_count":9,"created_at":"Fri - Jun 19 02:39:44 +0000 2009","favourites_count":2078,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2088,"lang":null,"status":{"created_at":"Thu - Mar 10 17:38:41 +0000 2022","id":1501975843937132550,"id_str":"1501975843937132550","text":"@RepCawthorn - Yeah, I know. You''d rather Biden let gas prices inflate wildly so you can - attack him for it.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepCawthorn","name":"Rep. - Madison Cawthorn","id":1344007696555663360,"id_str":"1344007696555663360","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1501705391037550592,"in_reply_to_status_id_str":"1501705391037550592","in_reply_to_user_id":1344007696555663360,"in_reply_to_user_id_str":"1344007696555663360","in_reply_to_screen_name":"RepCawthorn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910262150853283840\/UaARFrFf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910262150853283840\/UaARFrFf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48583507\/1498655951","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267464389306675201,"id_str":"1267464389306675201","name":"Robert - Antonucci","screen_name":"Noochimus","location":"La Mesa, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":1035,"listed_count":0,"created_at":"Mon - Jun 01 14:34:25 +0000 2020","favourites_count":20681,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Nov 07 18:15:34 +0000 2020","id":1325139850593357826,"id_str":"1325139850593357826","text":"@MalcolmNance - @JoeBiden @KamalaHarris @ArtAndResponse Hooyah!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MalcolmNance","name":"Malcolm - Nance","id":2573480784,"id_str":"2573480784","indices":[0,13]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[14,23]},{"screen_name":"KamalaHarris","name":"Kamala - Harris","id":30354991,"id_str":"30354991","indices":[24,37]},{"screen_name":"ArtAndResponse","name":"Michael - D","id":297727107,"id_str":"297727107","indices":[38,53]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1325138405232046084,"in_reply_to_status_id_str":"1325138405232046084","in_reply_to_user_id":2573480784,"in_reply_to_user_id_str":"2573480784","in_reply_to_screen_name":"MalcolmNance","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267615637620133889\/rUy1iBnS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267615637620133889\/rUy1iBnS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267464389306675201\/1591058187","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1905711606,"id_str":"1905711606","name":"Peggy755","screen_name":"PeggyWargo","location":"California, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1444,"friends_count":4973,"listed_count":0,"created_at":"Wed - Sep 25 23:29:47 +0000 2013","favourites_count":49075,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Fri - Mar 11 14:40:53 +0000 2022","id":1502293486212579330,"id_str":"1502293486212579330","text":"RT - @Emywinst: Give me thumbs up and retweet if you think Zelenskyy deserves a - Nobel Peace Prize.\n\n\ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Emywinst","name":"Emily - Winston","id":1424844847115079682,"id_str":"1424844847115079682","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 11 13:51:44 +0000 2022","id":1502281118812360706,"id_str":"1502281118812360706","text":"Give - me thumbs up and retweet if you think Zelenskyy deserves a Nobel Peace Prize.\n\n\ud83d\udc4d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":217,"favorite_count":702,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":217,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":394278254,"id_str":"394278254","name":"Biven - Alexander","screen_name":"biven4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":745,"listed_count":1,"created_at":"Wed - Oct 19 20:52:50 +0000 2011","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107,"lang":null,"status":{"created_at":"Wed - Feb 17 22:09:34 +0000 2021","id":1362162298144641024,"id_str":"1362162298144641024","text":"RT - @magiceldridge: Netflix''s Chaos Monkey tool, but instead of randomly killing - containers it randomly cancels meetings on my calendar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"magiceldridge","name":"Eldridge - Alexander","id":79306902,"id_str":"79306902","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 17 15:59:17 +0000 2021","id":1362069116148994051,"id_str":"1362069116148994051","text":"Netflix''s - Chaos Monkey tool, but instead of randomly killing containers it randomly - cancels meetings on my calendar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":597,"favorite_count":3609,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":597,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3742118411\/05e82182e83f86a374e649049a8b89ae_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3742118411\/05e82182e83f86a374e649049a8b89ae_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394278254\/1370121384","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":484341175,"id_str":"484341175","name":"Kevin - Bailey","screen_name":"kbailey1968","location":"Hickory, NC","description":"Dad, - husband, son, serial entrepreneur, small business owner, musician and rabid - progressive. \u201cJust a dude, inside a dude playing another dude.\u201d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":578,"listed_count":0,"created_at":"Mon - Feb 06 00:36:59 +0000 2012","favourites_count":923,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":470,"lang":null,"status":{"created_at":"Thu - Feb 17 19:08:43 +0000 2022","id":1494388358902173699,"id_str":"1494388358902173699","text":"@SenThomTillis - @EnesFreedom You? Protecting democracy? That\u2019s rich.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenThomTillis","name":"Senator - Thom Tillis","id":2964174789,"id_str":"2964174789","indices":[0,14]},{"screen_name":"EnesFreedom","name":"Enes - FREEDOM","id":302111485,"id_str":"302111485","indices":[15,27]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1494317947166277632,"in_reply_to_status_id_str":"1494317947166277632","in_reply_to_user_id":2964174789,"in_reply_to_user_id_str":"2964174789","in_reply_to_screen_name":"SenThomTillis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849039735569997824\/5KFmp4VE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849039735569997824\/5KFmp4VE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484341175\/1491261823","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083519344641036289,"id_str":"1083519344641036289","name":"dschwartz","screen_name":"dschwar73627185","location":"","description":"Very - much","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":249,"listed_count":0,"created_at":"Fri - Jan 11 00:21:57 +0000 2019","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Mon - Jul 26 21:33:10 +0000 2021","id":1419772810227032071,"id_str":"1419772810227032071","text":"@JCSchwartzProf - Yup","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCSchwartzProf","name":"Joanna - Schwartz","id":753951108213551108,"id_str":"753951108213551108","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1419759270648680484,"in_reply_to_status_id_str":"1419759270648680484","in_reply_to_user_id":753951108213551108,"in_reply_to_user_id_str":"753951108213551108","in_reply_to_screen_name":"JCSchwartzProf","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083519755821244417\/UgK7jMtm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083519755821244417\/UgK7jMtm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29417337,"id_str":"29417337","name":"Elizabeth - Westwood","screen_name":"erwestwood","location":"","description":"Rock n roll - singer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":551,"friends_count":459,"listed_count":7,"created_at":"Tue - Apr 07 09:39:10 +0000 2009","favourites_count":7836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":630,"lang":null,"status":{"created_at":"Thu - Mar 24 18:18:05 +0000 2022","id":1507059192552697859,"id_str":"1507059192552697859","text":"@alisonmartino - Chris Walken","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"alisonmartino","name":"Vintage - Los Angeles","id":23010860,"id_str":"23010860","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507057134717980698,"in_reply_to_status_id_str":"1507057134717980698","in_reply_to_user_id":23010860,"in_reply_to_user_id_str":"23010860","in_reply_to_screen_name":"alisonmartino","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1256950934\/cornel_lucas_smaller_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1256950934\/cornel_lucas_smaller_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29417337\/1635527309","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":584912320,"id_str":"584912320","name":"Lacy - Clay MO1st","screen_name":"LacyClayMO1","location":"St. Louis, MO","description":"Verified - Account of former Congressman Lacy Clay US Rep, Missouri 1st District. R\/Ts - & links are not endorsements.","url":"https:\/\/t.co\/M1086ZRPiT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/M1086ZRPiT","expanded_url":"http:\/\/www.lacyclay.org","display_url":"lacyclay.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11518,"friends_count":3619,"listed_count":0,"created_at":"Sat - May 19 16:41:06 +0000 2012","favourites_count":28165,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":27557,"lang":null,"status":{"created_at":"Fri - Mar 25 17:34:58 +0000 2022","id":1507410726503084032,"id_str":"1507410726503084032","text":"RT - @AFLCIO: Judge Ketanji Brown Jackson\u2019s exceptional record, credentials, - and character demonstrate that she is highly qualified and commi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AFLCIO","name":"AFL-CIO - \u270a","id":10069612,"id_str":"10069612","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 15:04:52 +0000 2022","id":1504473851803029513,"id_str":"1504473851803029513","text":"Judge - Ketanji Brown Jackson\u2019s exceptional record, credentials, and character - demonstrate that she is highly qualifi\u2026 https:\/\/t.co\/iEtwFd0uar","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iEtwFd0uar","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504473851803029513","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":243,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":117,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260431292505690112\/3PUqP1hm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260431292505690112\/3PUqP1hm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/584912320\/1600392215","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":751097368691474432,"id_str":"751097368691474432","name":"Preeves","screen_name":"preeves55","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":1048,"listed_count":0,"created_at":"Thu - Jul 07 16:55:42 +0000 2016","favourites_count":6466,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2048,"lang":null,"status":{"created_at":"Thu - Mar 17 14:13:42 +0000 2022","id":1504460975608578055,"id_str":"1504460975608578055","text":"RT - @RonFilipkowski: It\u2019s \u201cCommander-IN-Chief.\u201d Not a Commander - and a Chief. Pumpkin. https:\/\/t.co\/n7iOPaPzZY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonFilipkowski","name":"Ron - Filipkowski \ud83c\uddfa\ud83c\udde6","id":1298372735383605249,"id_str":"1298372735383605249","indices":[3,18]}],"urls":[],"media":[{"id":1504262842782040068,"id_str":"1504262842782040068","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","url":"https:\/\/t.co\/n7iOPaPzZY","display_url":"pic.twitter.com\/n7iOPaPzZY","expanded_url":"https:\/\/twitter.com\/RonFilipkowski\/status\/1504262845118271491\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1170,"h":469,"resize":"fit"},"large":{"w":1170,"h":469,"resize":"fit"}},"source_status_id":1504262845118271491,"source_status_id_str":"1504262845118271491","source_user_id":1298372735383605249,"source_user_id_str":"1298372735383605249"}]},"extended_entities":{"media":[{"id":1504262842782040068,"id_str":"1504262842782040068","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","url":"https:\/\/t.co\/n7iOPaPzZY","display_url":"pic.twitter.com\/n7iOPaPzZY","expanded_url":"https:\/\/twitter.com\/RonFilipkowski\/status\/1504262845118271491\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1170,"h":469,"resize":"fit"},"large":{"w":1170,"h":469,"resize":"fit"}},"source_status_id":1504262845118271491,"source_status_id_str":"1504262845118271491","source_user_id":1298372735383605249,"source_user_id_str":"1298372735383605249"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 01:06:24 +0000 2022","id":1504262845118271491,"id_str":"1504262845118271491","text":"It\u2019s - \u201cCommander-IN-Chief.\u201d Not a Commander and a Chief. Pumpkin. https:\/\/t.co\/n7iOPaPzZY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504262842782040068,"id_str":"1504262842782040068","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","url":"https:\/\/t.co\/n7iOPaPzZY","display_url":"pic.twitter.com\/n7iOPaPzZY","expanded_url":"https:\/\/twitter.com\/RonFilipkowski\/status\/1504262845118271491\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1170,"h":469,"resize":"fit"},"large":{"w":1170,"h":469,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504262842782040068,"id_str":"1504262842782040068","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOA3FejXwAQIKJR.jpg","url":"https:\/\/t.co\/n7iOPaPzZY","display_url":"pic.twitter.com\/n7iOPaPzZY","expanded_url":"https:\/\/twitter.com\/RonFilipkowski\/status\/1504262845118271491\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1170,"h":469,"resize":"fit"},"large":{"w":1170,"h":469,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5380,"favorite_count":51427,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5380,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":340663616,"id_str":"340663616","name":"lex","screen_name":"AL3XA6","location":"Seattle, - WA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":739,"listed_count":1,"created_at":"Sat - Jul 23 02:15:50 +0000 2011","favourites_count":8251,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5114,"lang":null,"status":{"created_at":"Wed - Feb 10 01:09:07 +0000 2021","id":1359308382176354306,"id_str":"1359308382176354306","text":"RT - @DanRather: I\u2019ve seen more clarity in a mud puddle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DanRather","name":"Dan - Rather","id":36711022,"id_str":"36711022","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 09 20:43:02 +0000 2021","id":1359241419458633729,"id_str":"1359241419458633729","text":"I\u2019ve - seen more clarity in a mud puddle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8998,"favorite_count":99968,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8998,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979410601284792325\/ryBp2WzP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979410601284792325\/ryBp2WzP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340663616\/1441974935","profile_link_color":"94D487","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1299633071994671104,"id_str":"1299633071994671104","name":"OWUSU\ud83d\ude0e","screen_name":"Phynest14","location":"Kumasi, - Ghana","description":"Your best iPhone\ud83d\udcf1 plug\ud83d\udd0c in town.\nDealer - in all ios devices\nWhatsApp me on 0542008513.\nWan on wan business \n@MeekMill - is my GOAT \ud83d\udc10 \ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\udded.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1359,"friends_count":4972,"listed_count":1,"created_at":"Sat - Aug 29 09:01:35 +0000 2020","favourites_count":32211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15972,"lang":null,"status":{"created_at":"Mon - Mar 21 16:42:23 +0000 2022","id":1505947943601414149,"id_str":"1505947943601414149","text":"RT - @AppleSupport: Next app please! \ud83d\udc49\n\nOn your Mac or iPad with a - keyboard connected, hold Command and press Tab to choose the app you want\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AppleSupport","name":"Apple - Support","id":3309375033,"id_str":"3309375033","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 16:30:44 +0000 2022","id":1505945012802142210,"id_str":"1505945012802142210","text":"Next - app please! \ud83d\udc49\n\nOn your Mac or iPad with a keyboard connected, - hold Command and press Tab to choose the app you\u2026 https:\/\/t.co\/nWc7SRhY8Y","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nWc7SRhY8Y","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505945012802142210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":778,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":92,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449058060362731520\/FaIoV_ko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449058060362731520\/FaIoV_ko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1299633071994671104\/1639132550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1290886812127211520,"id_str":"1290886812127211520","name":"Eric - Hogan","screen_name":"Eric_E_Hogan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":54,"listed_count":0,"created_at":"Wed - Aug 05 05:46:31 +0000 2020","favourites_count":178,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298346168381050881,"id_str":"1298346168381050881","name":"guillermo - raul radziwiluk","screen_name":"guiller84676035","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":298,"listed_count":0,"created_at":"Tue - Aug 25 19:49:58 +0000 2020","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":807632770025529344,"id_str":"807632770025529344","name":"Kelvin - Ambani","screen_name":"kelvin_ambani","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":306,"listed_count":0,"created_at":"Sat - Dec 10 17:07:12 +0000 2016","favourites_count":83,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Wed - Jun 09 01:23:41 +0000 2021","id":1402436203304165380,"id_str":"1402436203304165380","text":"@Kenyans - Parsseri","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kenyans","name":"Kenyans.co.ke","id":38737371,"id_str":"38737371","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1402255128229462021,"in_reply_to_status_id_str":"1402255128229462021","in_reply_to_user_id":38737371,"in_reply_to_user_id_str":"38737371","in_reply_to_screen_name":"Kenyans","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1285543175822745602,"id_str":"1285543175822745602","name":"Mitchell - DeRubis","screen_name":"bwbvm","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":138,"listed_count":0,"created_at":"Tue - Jul 21 11:52:53 +0000 2020","favourites_count":189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":735491114,"id_str":"735491114","name":"THE - SERVANT OF JESUS CHRIST","screen_name":"ObinnaObianyido","location":"Awka, - Nigeria","description":"ANAN Awardee.\ud83c\udf1f prize winner,NAUEC 2011.ProfessionalAccountant. - https:\/\/t.co\/w8tyFJeTvy","url":"https:\/\/t.co\/ZGdPFdSlf1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZGdPFdSlf1","expanded_url":"http:\/\/www.obianyidoobinna.wordpress.com","display_url":"obianyidoobinna.wordpress.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/w8tyFJeTvy","expanded_url":"http:\/\/www.lulu.com\/content\/e-book\/place-of-faith-in-christianity-in-defense-of-the-lord-jesus\/2","display_url":"lulu.com\/content\/e-book\u2026","indices":[63,86]}]}},"protected":false,"followers_count":831,"friends_count":1969,"listed_count":2,"created_at":"Fri - Aug 03 20:29:01 +0000 2012","favourites_count":29190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23054,"lang":null,"status":{"created_at":"Fri - Mar 25 21:23:44 +0000 2022","id":1507468299793096705,"id_str":"1507468299793096705","text":"Even - Jesus Christ said that it is not all who call him Lord, Lord knows Him: Stop - addressing criminals as Christians.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505908315695599621\/k0Wy3BlM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505908315695599621\/k0Wy3BlM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735491114\/1551694326","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":337996344,"id_str":"337996344","name":"Shots - & Goggles","screen_name":"PsAndCarets","location":"East coast","description":"peut-\u00eatre - un jour","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":439,"friends_count":865,"listed_count":1,"created_at":"Mon - Jul 18 22:27:32 +0000 2011","favourites_count":7750,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1899,"lang":null,"status":{"created_at":"Sat - Mar 26 09:01:07 +0000 2022","id":1507643803167080453,"id_str":"1507643803167080453","text":"@bunnyontherox - \ud83e\udd23\ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bunnyontherox","name":"Bunny - \ud83d\udc30 Vtuber","id":16507145,"id_str":"16507145","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507640888213835778,"in_reply_to_status_id_str":"1507640888213835778","in_reply_to_user_id":16507145,"in_reply_to_user_id_str":"16507145","in_reply_to_screen_name":"bunnyontherox","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496891320190779395\/-achYLjo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496891320190779395\/-achYLjo_normal.jpg","profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218234963029643264,"id_str":"1218234963029643264","name":"pete - lenchyshyn","screen_name":"PLenchyshyn","location":"","description":"socially - liberal fiscally conservative never trumper","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1364,"friends_count":4993,"listed_count":0,"created_at":"Fri - Jan 17 18:14:10 +0000 2020","favourites_count":2764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5890,"lang":null,"status":{"created_at":"Thu - Mar 24 21:13:47 +0000 2022","id":1507103406992904194,"id_str":"1507103406992904194","text":"gymmie....most - women could kick you ass https:\/\/t.co\/jYxmqq5KFM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jYxmqq5KFM","expanded_url":"https:\/\/twitter.com\/JoJoFromJerz\/status\/1507068017707995141","display_url":"twitter.com\/JoJoFromJerz\/s\u2026","indices":[40,63]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507068017707995141,"quoted_status_id_str":"1507068017707995141","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":487025468,"id_str":"487025468","name":"Goose","screen_name":"GuevaraGus11","location":"\ud83c\uddfa\ud83c\uddf8","description":"\ud83c\udde8\ud83c\uddf4\ud83c\uddfb\ud83c\uddea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":362,"friends_count":762,"listed_count":0,"created_at":"Wed - Feb 08 22:43:52 +0000 2012","favourites_count":155807,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13683,"lang":null,"status":{"created_at":"Thu - Mar 24 19:32:14 +0000 2022","id":1507077851987980288,"id_str":"1507077851987980288","text":"RT - @slater_jona: Just trying to help https:\/\/t.co\/SNnqahhijU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"slater_jona","name":"jonathan - slater","id":1326229862022049793,"id_str":"1326229862022049793","indices":[3,15]}],"urls":[],"media":[{"id":1506427224249012237,"id_str":"1506427224249012237","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","url":"https:\/\/t.co\/SNnqahhijU","display_url":"pic.twitter.com\/SNnqahhijU","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1506427339579838469\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506427339579838469,"source_status_id_str":"1506427339579838469","source_user_id":1326229862022049793,"source_user_id_str":"1326229862022049793"}]},"extended_entities":{"media":[{"id":1506427224249012237,"id_str":"1506427224249012237","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","url":"https:\/\/t.co\/SNnqahhijU","display_url":"pic.twitter.com\/SNnqahhijU","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1506427339579838469\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1506427339579838469,"source_status_id_str":"1506427339579838469","source_user_id":1326229862022049793,"source_user_id_str":"1326229862022049793","video_info":{"aspect_ratio":[9,16],"duration_millis":39966,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/320x568\/Vd96wVTvezQ5YSMP.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/pl\/CNAcxPGkoVqmvL-A.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/480x852\/Fy4PyCVV6pnhBnql.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/720x1280\/mgMwZVE2TedzlAqI.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 00:27:20 +0000 2022","id":1506427339579838469,"id_str":"1506427339579838469","text":"Just - trying to help https:\/\/t.co\/SNnqahhijU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506427224249012237,"id_str":"1506427224249012237","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","url":"https:\/\/t.co\/SNnqahhijU","display_url":"pic.twitter.com\/SNnqahhijU","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1506427339579838469\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506427224249012237,"id_str":"1506427224249012237","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506427224249012237\/pu\/img\/XkJOrrERLxFyVTVs.jpg","url":"https:\/\/t.co\/SNnqahhijU","display_url":"pic.twitter.com\/SNnqahhijU","expanded_url":"https:\/\/twitter.com\/slater_jona\/status\/1506427339579838469\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":39966,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/320x568\/Vd96wVTvezQ5YSMP.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/pl\/CNAcxPGkoVqmvL-A.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/480x852\/Fy4PyCVV6pnhBnql.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506427224249012237\/pu\/vid\/720x1280\/mgMwZVE2TedzlAqI.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":64278,"favorite_count":288326,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":64278,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1434882271941627911\/dlI3VOEq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1434882271941627911\/dlI3VOEq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487025468\/1612238185","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3014981189,"id_str":"3014981189","name":"Dilip - Sawale","screen_name":"sawaleka","location":"Kasare","description":"male","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":348,"listed_count":1,"created_at":"Tue - Feb 03 18:29:34 +0000 2015","favourites_count":5729,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1855,"lang":null,"status":{"created_at":"Wed - Mar 16 17:51:39 +0000 2022","id":1504153437260644354,"id_str":"1504153437260644354","text":"RT - @tarksahitya: \u0939\u092e \u0916\u093c\u0941\u0926 \u0915\u094b \u0928\u0939\u0940\u0902 - \u0938\u092e\u093e\u091c \u0915\u094b \u0916\u093c\u0941\u0936 \u0915\u0930\u0928\u0947 - \u092e\u0947\u0902 \u0939\u0940 \u0905\u092a\u0928\u0940 \u090f\u0915\u092e\u093e\u0924\u094d\u0930 - \u091c\u093c\u093f\u0902\u0926\u0917\u0940 \u0917\u0941\u091c\u093c\u093e\u0930 - \u0926\u0947\u0924\u0947 \u0939\u0948\u0902\u0964\n\n ~ \u0921\u0949. \u0905\u092c\u0930\u093e\u0930 - \u092e\u0941\u0932\u094d\u0924\u093e\u0928\u0940","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tarksahitya","name":"\u0924\u0930\u094d\u0915 - \u0938\u093e\u0939\u093f\u0924\u094d\u092f","id":1400787206541774856,"id_str":"1400787206541774856","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 11:13:38 +0000 2022","id":1502966108231372802,"id_str":"1502966108231372802","text":"\u0939\u092e - \u0916\u093c\u0941\u0926 \u0915\u094b \u0928\u0939\u0940\u0902 \u0938\u092e\u093e\u091c - \u0915\u094b \u0916\u093c\u0941\u0936 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 - \u0939\u0940 \u0905\u092a\u0928\u0940 \u090f\u0915\u092e\u093e\u0924\u094d\u0930 - \u091c\u093c\u093f\u0902\u0926\u0917\u0940 \u0917\u0941\u091c\u093c\u093e\u0930 - \u0926\u0947\u0924\u0947 \u0939\u0948\u0902\u0964\n\n ~ \u0921\u0949. \u0905\u092c\u0930\u093e\u0930 - \u092e\u0941\u0932\u094d\u0924\u093e\u0928\u0940","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":215,"favorite_count":1935,"favorited":false,"retweeted":false,"lang":"hi"},"is_quote_status":false,"retweet_count":215,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/675883996144730114\/E2CzQqV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/675883996144730114\/E2CzQqV-_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1248810353766600704,"id_str":"1248810353766600704","name":"Christoph - Humphrey","screen_name":"Humphreys_9","location":"Accra, Ghana","description":"Jesus!","url":"https:\/\/t.co\/sAtKiv7ZPQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sAtKiv7ZPQ","expanded_url":"https:\/\/twitter.com","display_url":"twitter.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":229,"friends_count":379,"listed_count":1,"created_at":"Sat - Apr 11 03:09:35 +0000 2020","favourites_count":9756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15733,"lang":null,"status":{"created_at":"Fri - Mar 25 16:33:15 +0000 2022","id":1507395194823581708,"id_str":"1507395194823581708","text":"RT - @MuiAddai: Great things he has done, greater things he will do.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MuiAddai","name":"Mui","id":231977270,"id_str":"231977270","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 16:22:43 +0000 2022","id":1507392543411126274,"id_str":"1507392543411126274","text":"Great - things he has done, greater things he will do.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483188572320632835\/Dp-N_2uL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483188572320632835\/Dp-N_2uL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248810353766600704\/1586575019","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269279117071060992,"id_str":"1269279117071060992","name":"Vishnoo - Mal","screen_name":"VishnooMal","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5319,"friends_count":4143,"listed_count":0,"created_at":"Sat - Jun 06 14:48:24 +0000 2020","favourites_count":14548,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16152,"lang":null,"status":{"created_at":"Fri - Mar 25 14:19:15 +0000 2022","id":1507361473013690411,"id_str":"1507361473013690411","text":"RT - @mramzanwk: \u0639\u0645\u0631\u06a9\u0648\u0679 \u06a9\u0627 \u0627\u0645\u0646 - \u062e\u0631\u0627\u0628 \u06c1\u0648\u062a\u0627 \u062c\u0627 \u0631\u06c1\u0627 - \u06c1\u06d2 \u0622\u062c \u0627\u06cc\u06a9 \u06c1\u0646\u062f\u0648 \u0644\u0691\u06a9\u0627 - \u0634\u0646\u06a9\u0631 \u0645\u0627\u0644\u06c1\u06cc \u0627\u067e\u0646\u06d2 - \u062f\u06a9\u0627\u0646 \u067e\u0631 \u0628\u06cc\u0679\u06be\u0627 \u06c1\u0648\u0627 - \u062a\u06be\u0627 \u06a9\u0633\u06d2 \u0646\u0627\u0645\u0639\u0644\u0648\u0645 - \u0644\u0648\u06af\u0648\u06ba \u0646\u06d2 \u0633\u0631 \u0639\u0627\u0645 - \u0634\u0646\u06a9\u0631 \u0645\u0627\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mramzanwk","name":"M.Ramzan - Wahocho","id":1014116024520728577,"id_str":"1014116024520728577","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:13:42 +0000 2022","id":1507360077468119054,"id_str":"1507360077468119054","text":"\u0639\u0645\u0631\u06a9\u0648\u0679 - \u06a9\u0627 \u0627\u0645\u0646 \u062e\u0631\u0627\u0628 \u06c1\u0648\u062a\u0627 - \u062c\u0627 \u0631\u06c1\u0627 \u06c1\u06d2 \u0622\u062c \u0627\u06cc\u06a9 - \u06c1\u0646\u062f\u0648 \u0644\u0691\u06a9\u0627 \u0634\u0646\u06a9\u0631 - \u0645\u0627\u0644\u06c1\u06cc \u0627\u067e\u0646\u06d2 \u062f\u06a9\u0627\u0646 - \u067e\u0631 \u0628\u06cc\u0679\u06be\u0627 \u06c1\u0648\u0627 \u062a\u06be\u0627 - \u06a9\u0633\u06d2 \u0646\u0627\u0645\u0639\u0644\u0648\u0645 \u0644\u0648\u06af\u0648\u06ba - \u0646\u06d2 \u0633\u0631 \u0639\u0627\u2026 https:\/\/t.co\/pOLPSK52Zf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pOLPSK52Zf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507360077468119054","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ur"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269280396828651521\/oRrhULUR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269280396828651521\/oRrhULUR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269279117071060992\/1591456709","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":76043044,"id_str":"76043044","name":"Ian - Mumford","screen_name":"ianottawa","location":"Ottawa Canada","description":"Retired - Executive","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":295,"listed_count":0,"created_at":"Mon - Sep 21 14:42:56 +0000 2009","favourites_count":272,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sun - Oct 31 21:35:59 +0000 2021","id":1454925139397775363,"id_str":"1454925139397775363","text":"@escayoLaw - @ottawacity @cmckenney @JimWatsonOttawa Hopefully this plan won\u2019t \u201cgo - off the rails\u201d like some others!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"escayoLaw","name":"Rod - Escayola \ud83c\udde8\ud83c\udde6\ud83c\udf3b","id":2562067547,"id_str":"2562067547","indices":[0,10]},{"screen_name":"ottawacity","name":"City - of Ottawa","id":17897698,"id_str":"17897698","indices":[11,22]},{"screen_name":"cmckenney","name":"Catherine - McKenney \ud83c\uddfa\ud83c\udde6 (they\/them)","id":16785360,"id_str":"16785360","indices":[23,33]},{"screen_name":"JimWatsonOttawa","name":"Jim - Watson","id":60597469,"id_str":"60597469","indices":[34,50]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1454583135593697284,"in_reply_to_status_id_str":"1454583135593697284","in_reply_to_user_id":2562067547,"in_reply_to_user_id_str":"2562067547","in_reply_to_screen_name":"escayoLaw","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3191372447,"id_str":"3191372447","name":"Nicole - Caldwell","screen_name":"NicoleMCaldwell","location":"Redwood, NY","description":"Managing - Editor at Stacker. Journalist, author, and first-gen farmer.","url":"https:\/\/t.co\/dNXvxmiyuh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dNXvxmiyuh","expanded_url":"http:\/\/www.nicolecaldwellwrites.com","display_url":"nicolecaldwellwrites.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":370,"friends_count":1445,"listed_count":7,"created_at":"Tue - Apr 21 16:15:38 +0000 2015","favourites_count":32269,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1546,"lang":null,"status":{"created_at":"Wed - Mar 23 13:38:20 +0000 2022","id":1506626399762853902,"id_str":"1506626399762853902","text":"@travisakers - That\u2019s a llama","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"travisakers","name":"Travis - Akers, MPA","id":101005636,"id_str":"101005636","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506330134520999940,"in_reply_to_status_id_str":"1506330134520999940","in_reply_to_user_id":101005636,"in_reply_to_user_id_str":"101005636","in_reply_to_screen_name":"travisakers","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590549775252115456\/0VXnaAje_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590549775252115456\/0VXnaAje_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191372447\/1515614465","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":329600238,"id_str":"329600238","name":"M@soud - Firouzi","screen_name":"MasoudFirouzi","location":"Lovely Dubai & Vancouver","description":"\uf8ff - Mobile Development Manager @Avanade | #iOS | #Swift | #Xamarin | #CSharp | - #Entrepreneur | #Traveler","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6344,"friends_count":3357,"listed_count":40,"created_at":"Tue - Jul 05 10:25:56 +0000 2011","favourites_count":28367,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11332,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1464285137143619592\/vxwisKJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1464285137143619592\/vxwisKJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329600238\/1647395419","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298798757929156608,"id_str":"1298798757929156608","name":"robert - d mcmullen","screen_name":"McmullenD","location":"United States","description":"I - am a father to three of the most wonderful children ever. I am a pastor, liberal, - progressive, democrat. I stand against the lies of Trump and Republicans.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":270,"listed_count":0,"created_at":"Thu - Aug 27 01:46:06 +0000 2020","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":669,"lang":null,"status":{"created_at":"Mon - Feb 28 08:41:18 +0000 2022","id":1498216729645920256,"id_str":"1498216729645920256","text":"RT - @KyivIndependent: \u26a1\ufe0fRussian Central Bank raises borrowing rates - from 9.5% to 20%.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KyivIndependent","name":"The - Kyiv Independent","id":1462548977367359490,"id_str":"1462548977367359490","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 28 07:36:43 +0000 2022","id":1498200475551866880,"id_str":"1498200475551866880","text":"\u26a1\ufe0fRussian - Central Bank raises borrowing rates from 9.5% to 20%.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4075,"favorite_count":28770,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4075,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298799047747215360\/s0uE4NTa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298799047747215360\/s0uE4NTa_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1182341157117943809,"id_str":"1182341157117943809","name":"Joanna - Bradley","screen_name":"JoannaB19300468","location":"Allen, TX","description":"Professional - Commercial Photographer Who Specializes in Corporate Branding & Fine Art \/ - Blacklisted Heir to the British \/ Italian-Sicilian Crowns","url":"https:\/\/t.co\/Xe2WrFgc1B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Xe2WrFgc1B","expanded_url":"http:\/\/linkedin.com\/pulse\/joanna-bradley-commercial-fine-art-photographer-who-branding-bradley-1e\/","display_url":"linkedin.com\/pulse\/joanna-b\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":4989,"listed_count":1,"created_at":"Thu - Oct 10 17:05:00 +0000 2019","favourites_count":1328,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13289,"lang":null,"status":{"created_at":"Fri - Mar 25 22:23:51 +0000 2022","id":1507483429096591361,"id_str":"1507483429096591361","text":"RT - @thehill: Kremlin official says West has declared ''total war'' on Russia - https:\/\/t.co\/khE8SzFzSQ https:\/\/t.co\/7ovFDlFxrA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/khE8SzFzSQ","expanded_url":"http:\/\/hill.cm\/ZeoIL2a","display_url":"hill.cm\/ZeoIL2a","indices":[75,98]}],"media":[{"id":1507482741251661825,"id_str":"1507482741251661825","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","url":"https:\/\/t.co\/7ovFDlFxrA","display_url":"pic.twitter.com\/7ovFDlFxrA","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507482742820331521\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":551,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":551,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}},"source_status_id":1507482742820331521,"source_status_id_str":"1507482742820331521","source_user_id":1917731,"source_user_id_str":"1917731"}]},"extended_entities":{"media":[{"id":1507482741251661825,"id_str":"1507482741251661825","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","url":"https:\/\/t.co\/7ovFDlFxrA","display_url":"pic.twitter.com\/7ovFDlFxrA","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507482742820331521\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":551,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":551,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}},"source_status_id":1507482742820331521,"source_status_id_str":"1507482742820331521","source_user_id":1917731,"source_user_id_str":"1917731"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:21:08 +0000 2022","id":1507482742820331521,"id_str":"1507482742820331521","text":"Kremlin - official says West has declared ''total war'' on Russia https:\/\/t.co\/khE8SzFzSQ - https:\/\/t.co\/7ovFDlFxrA","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/khE8SzFzSQ","expanded_url":"http:\/\/hill.cm\/ZeoIL2a","display_url":"hill.cm\/ZeoIL2a","indices":[62,85]}],"media":[{"id":1507482741251661825,"id_str":"1507482741251661825","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","url":"https:\/\/t.co\/7ovFDlFxrA","display_url":"pic.twitter.com\/7ovFDlFxrA","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507482742820331521\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":551,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":551,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507482741251661825,"id_str":"1507482741251661825","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOunkPFWYAEWI9F.jpg","url":"https:\/\/t.co\/7ovFDlFxrA","display_url":"pic.twitter.com\/7ovFDlFxrA","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1507482742820331521\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":551,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":980,"h":551,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":37,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":16,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269294750693314562\/QqsO7UQu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269294750693314562\/QqsO7UQu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235636056633905152,"id_str":"1235636056633905152","name":"Mid - Atlantic Technology Loans","screen_name":"MidLoans","location":"","description":"Welcome - to our Twitter page, we look forward to interacting and doing business with - you guys.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":14,"listed_count":0,"created_at":"Thu - Mar 05 18:39:35 +0000 2020","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Fri - Mar 05 07:57:51 +0000 2021","id":1367746162082545665,"id_str":"1367746162082545665","text":"https:\/\/t.co\/MmhXBSczzv\nCheck - thus article out\n#martinsburg \n#WestVirginia","truncated":false,"entities":{"hashtags":[{"text":"martinsburg","indices":[47,59]},{"text":"WestVirginia","indices":[61,74]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/MmhXBSczzv","expanded_url":"https:\/\/naturalcosmeticcompany.net\/a-beautiful-martinsburg\/","display_url":"naturalcosmeticcompany.net\/a-beautiful-ma\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1235636155833409536\/HGWqLI0d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1235636155833409536\/HGWqLI0d_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":500114530,"id_str":"500114530","name":"Johannes - Chimpo","screen_name":"percandidate","location":"Milf Island","description":"I - like cars and cats and gigantic asses.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":164,"friends_count":512,"listed_count":1,"created_at":"Wed - Feb 22 20:26:51 +0000 2012","favourites_count":11894,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9450,"lang":null,"status":{"created_at":"Fri - Mar 25 03:52:38 +0000 2022","id":1507203782173728768,"id_str":"1507203782173728768","text":"Lol - no he won\u2019t https:\/\/t.co\/fy6wz9M8ux","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fy6wz9M8ux","expanded_url":"https:\/\/twitter.com\/cherijacobus\/status\/1507135701174960137","display_url":"twitter.com\/cherijacobus\/s\u2026","indices":[16,39]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507135701174960137,"quoted_status_id_str":"1507135701174960137","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490821071943127050\/5MAyninD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490821071943127050\/5MAyninD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/500114530\/1644274373","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":560865317,"id_str":"560865317","name":"Rhea - \ud83c\udf4a","screen_name":"rheajgurung","location":"Kathmandu\/Bengaluru - ","description":"WARM MILK ON COOL NIGHTS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":1292,"listed_count":0,"created_at":"Mon - Apr 23 06:00:09 +0000 2012","favourites_count":23113,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2713,"lang":null,"status":{"created_at":"Tue - Mar 22 08:15:47 +0000 2022","id":1506182841855787009,"id_str":"1506182841855787009","text":"RT - @camfassett: the unstoppable force (anxiety) meets the immovable object (anxiety - also)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"camfassett","name":"\u2727\uff65\uff9f: - * camille \u2727: *\u2727","id":776847925758439425,"id_str":"776847925758439425","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 18:02:41 +0000 2022","id":1505968149744611331,"id_str":"1505968149744611331","text":"the - unstoppable force (anxiety) meets the immovable object (anxiety also)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":410,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":88,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325009061998309376\/VzonA5Vw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325009061998309376\/VzonA5Vw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560865317\/1543161166","profile_link_color":"72B9BF","profile_sidebar_border_color":"A0EEF5","profile_sidebar_fill_color":"1A3F57","profile_text_color":"9DDD95","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1101757416746700800,"id_str":"1101757416746700800","name":"Tyrone - Nixon","screen_name":"TyroneNixon4","location":"Norfolk Virginia","description":"Sixteen - years army veteran and proud of it","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":374,"friends_count":1235,"listed_count":0,"created_at":"Sat - Mar 02 08:13:32 +0000 2019","favourites_count":2816,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4123,"lang":null,"status":{"created_at":"Fri - May 21 17:42:31 +0000 2021","id":1395797166644469764,"id_str":"1395797166644469764","text":"He - gave up his stimulus check for that in your guts fucking https:\/\/t.co\/9U85L4tGwY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9U85L4tGwY","expanded_url":"https:\/\/twitter.com\/XratedFreakz\/status\/1381363740403240964","display_url":"twitter.com\/XratedFreakz\/s\u2026","indices":[60,83]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1381363740403240964,"quoted_status_id_str":"1381363740403240964","retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1019641822648438786,"id_str":"1019641822648438786","name":"Dimoree - Pace \ud83e\udd17 Sunshine 3","screen_name":"PaceDimoree","location":"Joshua - Tree California","description":"Resist \ud83d\udca5Obama forever \nPresident - Biden will heal this country \ud83c\udfdb\ufe0f\ud83e\udd47\ud83c\uddfa\ud83c\uddf8\n\n\n - \u2764\ufe0f\ud83d\udc9b\ud83d\udc9a\n \ud83d\udc99\ud83d\udc9c\ud83d\udda4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":884,"friends_count":984,"listed_count":0,"created_at":"Wed - Jul 18 17:55:29 +0000 2018","favourites_count":2611,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13219,"lang":null,"status":{"created_at":"Mon - Feb 07 03:27:29 +0000 2022","id":1490527609372876800,"id_str":"1490527609372876800","text":"RT - @cwebbonline: Reality check:\n\nNumber of children killed by guns in 2022 - so far = 137\n\nNumber of children killed by books = 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cwebbonline","name":"Christopher - Webb \ud83c\uddfa\ud83c\uddf8","id":399178595,"id_str":"399178595","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 05 16:58:24 +0000 2022","id":1490006909251842048,"id_str":"1490006909251842048","text":"Reality - check:\n\nNumber of children killed by guns in 2022 so far = 137\n\nNumber - of children killed by books = 0","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5629,"favorite_count":22573,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5629,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370571917149704194\/FTp19Z4h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370571917149704194\/FTp19Z4h_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1175268475482173441,"id_str":"1175268475482173441","name":"simonbertbell","screen_name":"simonbertbell2","location":"","description":"easy - going","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":48,"listed_count":0,"created_at":"Sat - Sep 21 04:40:32 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Fri - Jan 22 00:39:35 +0000 2021","id":1352415579869601797,"id_str":"1352415579869601797","text":"The - addams family real life \ud83e\udd23\ud83e\udd23\ud83e\udd23 https:\/\/t.co\/SKx7FCYoKc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SKx7FCYoKc","expanded_url":"https:\/\/twitter.com\/ABC\/status\/1352389533539692545","display_url":"twitter.com\/ABC\/status\/135\u2026","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1352389533539692545,"quoted_status_id_str":"1352389533539692545","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304165735485247488,"id_str":"1304165735485247488","name":"JOchetti","screen_name":"OchettiJ","location":"","description":"Real - live Psychologist and advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":185,"listed_count":0,"created_at":"Thu - Sep 10 21:12:16 +0000 2020","favourites_count":15380,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3547,"lang":null,"status":{"created_at":"Fri - Mar 25 22:50:24 +0000 2022","id":1507490110589194240,"id_str":"1507490110589194240","text":"RT - @DearAuntCrabby: What about this @HawleyMO?? https:\/\/t.co\/wGoUb5k5uJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DearAuntCrabby","name":"\ud83d\udd95\ud83c\udffbAunt - Crabby Calls Bullshit \ud83d\udd95\ud83c\udffb","id":1216789842,"id_str":"1216789842","indices":[3,18]},{"screen_name":"HawleyMO","name":"Josh - Hawley","id":2352629311,"id_str":"2352629311","indices":[36,45]}],"urls":[{"url":"https:\/\/t.co\/wGoUb5k5uJ","expanded_url":"https:\/\/www.nationalmemo.com\/hawley-prosecutor-sex-abuse","display_url":"nationalmemo.com\/hawley-prosecu\u2026","indices":[48,71]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:38:40 +0000 2022","id":1507426759662256155,"id_str":"1507426759662256155","text":"What - about this @HawleyMO?? https:\/\/t.co\/wGoUb5k5uJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HawleyMO","name":"Josh - Hawley","id":2352629311,"id_str":"2352629311","indices":[16,25]}],"urls":[{"url":"https:\/\/t.co\/wGoUb5k5uJ","expanded_url":"https:\/\/www.nationalmemo.com\/hawley-prosecutor-sex-abuse","display_url":"nationalmemo.com\/hawley-prosecu\u2026","indices":[28,51]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":294,"favorite_count":597,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":294,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1167429857195757568,"id_str":"1167429857195757568","name":"Dr. - Latisha Ellis","screen_name":"DrLatishaEllis1","location":"","description":"Life - long learner and in love with my life! #lifeisforliving","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":121,"listed_count":1,"created_at":"Fri - Aug 30 13:33:04 +0000 2019","favourites_count":2055,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":439,"lang":null,"status":{"created_at":"Fri - Mar 25 12:28:41 +0000 2022","id":1507333647791280135,"id_str":"1507333647791280135","text":"\u2764\ufe0f\ud83d\udda4\ud83d\udc9a - https:\/\/t.co\/qVZg6TSzIm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507333642292498435,"id_str":"1507333642292498435","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsf9iLXEAMmw5l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsf9iLXEAMmw5l.jpg","url":"https:\/\/t.co\/qVZg6TSzIm","display_url":"pic.twitter.com\/qVZg6TSzIm","expanded_url":"https:\/\/twitter.com\/DrLatishaEllis1\/status\/1507333647791280135\/photo\/1","type":"photo","sizes":{"medium":{"w":1199,"h":1200,"resize":"fit"},"small":{"w":679,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1285,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507333642292498435,"id_str":"1507333642292498435","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsf9iLXEAMmw5l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsf9iLXEAMmw5l.jpg","url":"https:\/\/t.co\/qVZg6TSzIm","display_url":"pic.twitter.com\/qVZg6TSzIm","expanded_url":"https:\/\/twitter.com\/DrLatishaEllis1\/status\/1507333647791280135\/photo\/1","type":"photo","sizes":{"medium":{"w":1199,"h":1200,"resize":"fit"},"small":{"w":679,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1284,"h":1285,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498816418338463751\/EALPkdkr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498816418338463751\/EALPkdkr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218198225351585796,"id_str":"1218198225351585796","name":"USA\ud83c\uddfa\ud83c\uddf8 - In God We Trust","screen_name":"USAINGodWeTrus1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":1020,"listed_count":0,"created_at":"Fri - Jan 17 15:51:12 +0000 2020","favourites_count":1645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":325,"lang":null,"status":{"created_at":"Sun - Mar 06 17:06:37 +0000 2022","id":1500518224496140290,"id_str":"1500518224496140290","text":"How - in the world are we going to stop this madman?? Dear God, he is slaughtering - the innocent!!! Pray people, pray for Divine Intervention.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218209524173148161\/dKs9oT7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218209524173148161\/dKs9oT7o_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":594499240,"id_str":"594499240","name":"Edmund - Bach","screen_name":"Edmund_Bach","location":"Reynoldsville, PA","description":"United - Methodist Local Pastor and Goodwill eCommerce manager in Pennsylvania.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":1062,"listed_count":2,"created_at":"Wed - May 30 10:39:22 +0000 2012","favourites_count":1639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Sun - Jul 11 09:38:07 +0000 2021","id":1414157041988472834,"id_str":"1414157041988472834","text":"@TheAmberPicota - Ouch.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheAmberPicota","name":"Irreverent - Reverend \u270a\ud83c\udffc\ud83d\ude4f\ud83c\udffc","id":1548440341,"id_str":"1548440341","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1414156978226569218,"in_reply_to_status_id_str":"1414156978226569218","in_reply_to_user_id":594499240,"in_reply_to_user_id_str":"594499240","in_reply_to_screen_name":"Edmund_Bach","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/749937394875445248\/1bvAPZbh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/749937394875445248\/1bvAPZbh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594499240\/1551530432","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1225787203525189634,"id_str":"1225787203525189634","name":"sammybgood - \ud83c\uddfa\ud83c\uddf2\ud83d\udc36\ud83c\udfdd\ud83c\udf0a","screen_name":"Barbara35164921","location":"michigan","description":"#Resister - NEVER A TRUMPER. love golf, reading, decorating. #voteblue #RidinWithBiden - NO Dms not here for dating\n say yes to organ donation","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":38,"friends_count":186,"listed_count":0,"created_at":"Fri - Feb 07 14:24:29 +0000 2020","favourites_count":25591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14245,"lang":null,"status":{"created_at":"Sat - Mar 26 02:38:02 +0000 2022","id":1507547395386757123,"id_str":"1507547395386757123","text":"RT - @joncoopertweets: BREAKING: Former President Donald Trump and his two adult - sons have been subpoenaed to testify as part of a class-acti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:03:04 +0000 2022","id":1507493297899679750,"id_str":"1507493297899679750","text":"BREAKING: - Former President Donald Trump and his two adult sons have been subpoenaed - to testify as part of a class-a\u2026 https:\/\/t.co\/KupviZcM56","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KupviZcM56","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507493297899679750","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5693,"favorite_count":32284,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5693,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225787661341937664\/a-_EqaR9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225787661341937664\/a-_EqaR9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1225787203525189634\/1596299937","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1029617274,"id_str":"1029617274","name":"shari - olson","screen_name":"shari_olson","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":818,"listed_count":0,"created_at":"Sun - Dec 23 01:40:28 +0000 2012","favourites_count":384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":166,"lang":null,"status":{"created_at":"Fri - Mar 18 21:49:00 +0000 2022","id":1504937943319908352,"id_str":"1504937943319908352","text":"RT - @Schwarzenegger: I love the Russian people. That is why I have to tell you - the truth. Please watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schwarzenegger","name":"Arnold","id":12044602,"id_str":"12044602","indices":[3,18]}],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 11:58:05 +0000 2022","id":1504426844199669762,"id_str":"1504426844199669762","text":"I - love the Russian people. That is why I have to tell you the truth. Please - watch and share. https:\/\/t.co\/6gyVRhgpFV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621"}]},"extended_entities":{"media":[{"id":1504330511660949507,"id_str":"1504330511660949507","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/amplify_video_thumb\/1504330511660949507\/img\/OuYPHXrT4eVLxHDd.jpg","url":"https:\/\/t.co\/6gyVRhgpFV","display_url":"pic.twitter.com\/6gyVRhgpFV","expanded_url":"https:\/\/twitter.com\/attn\/status\/1504423551717163008\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1504423551717163008,"source_status_id_str":"1504423551717163008","source_user_id":214112621,"source_user_id_str":"214112621","video_info":{"aspect_ratio":[1,1],"duration_millis":556245,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/540x540\/JimouJBfR9P96-rM.mp4?tag=14"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/pl\/9bjKf9QUvDC50PY8.m3u8?tag=14&container=fmp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/720x720\/-lO8ctrJTStc7e2f.mp4?tag=14"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1504330511660949507\/vid\/320x320\/4hH4lt1iK0aLG1h7.mp4?tag=14"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":433164,"favorite_count":1329201,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":433164,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1029797136416874498\/vcJfh6Wi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1029797136416874498\/vcJfh6Wi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029617274\/1534373259","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1048636227442941952,"id_str":"1048636227442941952","name":"Joanna - Banana \ud83c\udf4c","screen_name":"JojoDillon2","location":"Belfast, Northern - Ireland","description":"Gamer\/crazy cat lady\/vegan foodie \ud83d\ude38\ud83e\udd66 - she\/her\/they \u262f\ufe0f\u262e\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":858,"listed_count":1,"created_at":"Sat - Oct 06 18:08:54 +0000 2018","favourites_count":15992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1593,"lang":null,"status":{"created_at":"Fri - Mar 25 20:11:00 +0000 2022","id":1507449994307112975,"id_str":"1507449994307112975","text":"RT - @mitskiIeaks: mitski makes music for gay people who play legend of zelda","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mitskiIeaks","name":"fake","id":1320764262789255175,"id_str":"1320764262789255175","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:32:59 +0000 2022","id":1507213936864550918,"id_str":"1507213936864550918","text":"mitski - makes music for gay people who play legend of zelda","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":734,"favorite_count":5580,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":734,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417951457526042624\/ujBT30PD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417951457526042624\/ujBT30PD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048636227442941952\/1593935594","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":388445369,"id_str":"388445369","name":"Willem","screen_name":"willemsheetz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":254,"friends_count":977,"listed_count":0,"created_at":"Mon - Oct 10 19:14:04 +0000 2011","favourites_count":5774,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3451,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1316998801111060481\/ofMUjgvz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1316998801111060481\/ofMUjgvz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/388445369\/1644417100","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301578070340456453,"id_str":"1301578070340456453","name":"Rashi - Singh","screen_name":"l_Rashi_l","location":"","description":"Bitch,you are - my soulmate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":34,"listed_count":0,"created_at":"Thu - Sep 03 17:49:46 +0000 2020","favourites_count":469,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1499637359511752705\/qXWes2mX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1499637359511752705\/qXWes2mX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1301578070340456453\/1646376426","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":823877729078611972,"id_str":"823877729078611972","name":"Anne - Bradshaw","screen_name":"annebradshaw54","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":980,"listed_count":0,"created_at":"Tue - Jan 24 12:58:52 +0000 2017","favourites_count":99384,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6575,"lang":null,"status":{"created_at":"Sun - Mar 06 22:08:04 +0000 2022","id":1500594086839001093,"id_str":"1500594086839001093","text":"RT - @Joeiscool1981: On this day in 1993, Roman complained that John was still - in his kid\u2019s lives and was mad that Shawn and Caroline treated\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Joeiscool1981","name":"\ud83d\udd25\ud83d\ude08Daysfan\ud83d\udd25\ud83d\ude08","id":780395842721157120,"id_str":"780395842721157120","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 20:42:32 +0000 2022","id":1500210173545263107,"id_str":"1500210173545263107","text":"On - this day in 1993, Roman complained that John was still in his kid\u2019s lives - and was mad that Shawn and Caroline tr\u2026 https:\/\/t.co\/CTyrvuNxGq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CTyrvuNxGq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500210173545263107","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":70,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1126492861757673472,"id_str":"1126492861757673472","name":"Turnbul","screen_name":"Turnbul3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":118,"listed_count":0,"created_at":"Thu - May 09 14:23:22 +0000 2019","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":219,"lang":null,"status":{"created_at":"Tue - Apr 14 16:27:13 +0000 2020","id":1250098291439800320,"id_str":"1250098291439800320","text":"RT - @BarackObama: I\u2019m proud to endorse my friend @JoeBiden for President - of the United States. Let''s go: https:\/\/t.co\/maHVGRozkX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BarackObama","name":"Barack - Obama","id":813286,"id_str":"813286","indices":[3,15]},{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/maHVGRozkX","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1PlJQmrlRMzJE","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Apr 14 15:47:23 +0000 2020","id":1250088269502709762,"id_str":"1250088269502709762","text":"I\u2019m - proud to endorse my friend @JoeBiden for President of the United States. Let''s - go: https:\/\/t.co\/maHVGRozkX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[31,40]}],"urls":[{"url":"https:\/\/t.co\/maHVGRozkX","expanded_url":"https:\/\/twitter.com\/i\/broadcasts\/1PlJQmrlRMzJE","display_url":"twitter.com\/i\/broadcasts\/1\u2026","indices":[87,110]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":149232,"favorite_count":531827,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":149232,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":97279211,"id_str":"97279211","name":"Ken - Awuondo","screen_name":"kawuondo","location":"Sierra Leone","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":403,"listed_count":0,"created_at":"Wed - Dec 16 20:07:30 +0000 2009","favourites_count":78,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":451,"lang":null,"status":{"created_at":"Mon - Nov 16 08:47:10 +0000 2020","id":1328258298605416450,"id_str":"1328258298605416450","text":"@TheStarKenya - It\u2019s not a surprise that Kirinyaga County office is closed due to COVID-19. - Look at this photo no one\u2026 https:\/\/t.co\/HDHTsD5BSi","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheStarKenya","name":"TheStarKenya","id":343326011,"id_str":"343326011","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/HDHTsD5BSi","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1328258298605416450","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1328252204659175424,"in_reply_to_status_id_str":"1328252204659175424","in_reply_to_user_id":343326011,"in_reply_to_user_id_str":"343326011","in_reply_to_screen_name":"TheStarKenya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":919264849,"id_str":"919264849","name":"Krupal - Swami","screen_name":"Krupalswami","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":330,"listed_count":0,"created_at":"Thu - Nov 01 15:35:26 +0000 2012","favourites_count":675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2802113987\/da14bc2e2c1e325ad0ab72bf34e296fa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2802113987\/da14bc2e2c1e325ad0ab72bf34e296fa_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1191254496,"id_str":"1191254496","name":"Kimberlee - Campbell","screen_name":"KimberleeCamp20","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":27,"friends_count":388,"listed_count":2,"created_at":"Sun - Feb 17 21:52:59 +0000 2013","favourites_count":6109,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1298,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1294826454627364865\/R7p0dCaC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1294826454627364865\/R7p0dCaC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191254496\/1597545658","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1269582944550522880,"id_str":"1269582944550522880","name":"Mahamud","screen_name":"mdmahamudbiswas","location":"City - of London, London","description":"This is the Mahamudbiswas officel twitter - https:\/\/t.co\/OOvbh4rXZI of all first family''s https:\/\/t.co\/aMhNQOHauS - cricket & https:\/\/t.co\/lwEK5PJ4Ke of #JeffBezos, #BillGreat,","url":"https:\/\/t.co\/S5D6UkpY5j","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5D6UkpY5j","expanded_url":"http:\/\/mahamudbiswas.com\/instragram.com","display_url":"mahamudbiswas.com\/instragram.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/OOvbh4rXZI","expanded_url":"http:\/\/acount.Like","display_url":"acount.Like","indices":[42,65]},{"url":"https:\/\/t.co\/aMhNQOHauS","expanded_url":"http:\/\/mambers.Play","display_url":"mambers.Play","indices":[88,111]},{"url":"https:\/\/t.co\/lwEK5PJ4Ke","expanded_url":"http:\/\/football.Love","display_url":"football.Love","indices":[122,145]}]}},"protected":false,"followers_count":62,"friends_count":4987,"listed_count":1,"created_at":"Sun - Jun 07 10:52:53 +0000 2020","favourites_count":2344,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":110,"lang":null,"status":{"created_at":"Sat - Jun 26 02:31:51 +0000 2021","id":1408613953618411520,"id_str":"1408613953618411520","text":"RT - @archillect: https:\/\/t.co\/vVjYch9uvb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"archillect","name":"Archillect","id":2907774137,"id_str":"2907774137","indices":[3,14]}],"urls":[],"media":[{"id":1408247188250112007,"id_str":"1408247188250112007","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","url":"https:\/\/t.co\/vVjYch9uvb","display_url":"pic.twitter.com\/vVjYch9uvb","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1408247191081295872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":590,"resize":"fit"},"large":{"w":1153,"h":1000,"resize":"fit"},"medium":{"w":1153,"h":1000,"resize":"fit"}},"source_status_id":1408247191081295872,"source_status_id_str":"1408247191081295872","source_user_id":2907774137,"source_user_id_str":"2907774137"}]},"extended_entities":{"media":[{"id":1408247188250112007,"id_str":"1408247188250112007","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","url":"https:\/\/t.co\/vVjYch9uvb","display_url":"pic.twitter.com\/vVjYch9uvb","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1408247191081295872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":590,"resize":"fit"},"large":{"w":1153,"h":1000,"resize":"fit"},"medium":{"w":1153,"h":1000,"resize":"fit"}},"source_status_id":1408247191081295872,"source_status_id_str":"1408247191081295872","source_user_id":2907774137,"source_user_id_str":"2907774137"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jun 25 02:14:28 +0000 2021","id":1408247191081295872,"id_str":"1408247191081295872","text":"https:\/\/t.co\/vVjYch9uvb","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1408247188250112007,"id_str":"1408247188250112007","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","url":"https:\/\/t.co\/vVjYch9uvb","display_url":"pic.twitter.com\/vVjYch9uvb","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1408247191081295872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":590,"resize":"fit"},"large":{"w":1153,"h":1000,"resize":"fit"},"medium":{"w":1153,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1408247188250112007,"id_str":"1408247188250112007","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E4sZW0OXMAc74ZC.jpg","url":"https:\/\/t.co\/vVjYch9uvb","display_url":"pic.twitter.com\/vVjYch9uvb","expanded_url":"https:\/\/twitter.com\/archillect\/status\/1408247191081295872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":590,"resize":"fit"},"large":{"w":1153,"h":1000,"resize":"fit"},"medium":{"w":1153,"h":1000,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/machinu.net\" rel=\"nofollow\"\u003eArchillect\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4819,"favorite_count":59957,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":4819,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1269588691380387842\/ETdUrfQ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1269588691380387842\/ETdUrfQ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269582944550522880\/1605026909","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1617808592,"id_str":"1617808592","name":"Sajjad - Iranmanesh","screen_name":"s_iranmanesh","location":"","description":"https:\/\/t.co\/kGSnVrpYEw","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/kGSnVrpYEw","expanded_url":"http:\/\/Iranmanesh.me","display_url":"Iranmanesh.me","indices":[0,23]}]}},"protected":true,"followers_count":115,"friends_count":3580,"listed_count":0,"created_at":"Wed - Jul 24 13:43:43 +0000 2013","favourites_count":1624,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/951607225063301121\/i0ckm4hm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/951607225063301121\/i0ckm4hm_normal.jpg","profile_link_color":"32809C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":322792860,"id_str":"322792860","name":"\ud835\ude70\ud835\ude7b\ud835\ude74\ud835\ude87 - \ud83e\udd13","screen_name":"alexboian","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":3362,"listed_count":8,"created_at":"Thu - Jun 23 19:10:42 +0000 2011","favourites_count":3350,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1141,"lang":null,"status":{"created_at":"Wed - Mar 23 23:29:15 +0000 2022","id":1506775110165753856,"id_str":"1506775110165753856","text":"RT - @COPoliticsBot: Colorado would be such a better state if Joe Neguse were overlord - of Erie","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"COPoliticsBot","name":"Colorado - Political Hot Takes Bot","id":1340896201701470208,"id_str":"1340896201701470208","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 23:21:15 +0000 2022","id":1506773098560823299,"id_str":"1506773098560823299","text":"Colorado - would be such a better state if Joe Neguse were overlord of Erie","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/cheapbotsdonequick.com\" rel=\"nofollow\"\u003eCheap Bots, - Done Quick!\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477787402886209537\/yqwCt9BK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477787402886209537\/yqwCt9BK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322792860\/1526244721","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2739558960,"id_str":"2739558960","name":"peter - ruderman","screen_name":"LITTLESTEVEN2","location":"","description":"Always - interested in something new","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":1495,"listed_count":1,"created_at":"Sun - Aug 17 12:12:57 +0000 2014","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33,"lang":null,"status":{"created_at":"Mon - Feb 17 22:51:05 +0000 2020","id":1229538786998202369,"id_str":"1229538786998202369","text":"RT - @ShannonFreshour: My Republican opponent Jim Jordan would be very upset if - you all stepped to wish him a happy birthday by retweeting th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShannonFreshour","name":"Shannon - in Ohio 4","id":1152385955187298304,"id_str":"1152385955187298304","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 17 21:40:12 +0000 2020","id":1229520951907356673,"id_str":"1229520951907356673","text":"My - Republican opponent Jim Jordan would be very upset if you all stepped to wish - him a happy birthday by retweeting\u2026 https:\/\/t.co\/2WBdACa60K","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2WBdACa60K","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1229520951907356673","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4942,"favorite_count":7472,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4942,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1279011197040427008,"id_str":"1279011197040427008","name":"themasteralchemist","screen_name":"themasteralche1","location":"","description":"Business - man , ARSENAL FAN (GUNNER)loves nature and humanity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":666,"listed_count":0,"created_at":"Fri - Jul 03 11:17:27 +0000 2020","favourites_count":922,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":null,"status":{"created_at":"Sun - Nov 28 20:44:20 +0000 2021","id":1465059001578762256,"id_str":"1465059001578762256","text":"@CasaJoya - @TheAfricaCenter Sad \ud83d\ude22","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CasaJoya","name":"Casa - Joya ApartHotel Restaurant","id":861667580,"id_str":"861667580","indices":[0,9]},{"screen_name":"TheAfricaCenter","name":"TheAfricaCenter","id":18028386,"id_str":"18028386","indices":[10,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1465052887642476544,"in_reply_to_status_id_str":"1465052887642476544","in_reply_to_user_id":861667580,"in_reply_to_user_id_str":"861667580","in_reply_to_screen_name":"CasaJoya","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390759121247428614\/iWSf2nT0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390759121247428614\/iWSf2nT0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":128052682,"id_str":"128052682","name":"cheryl - kepaa","screen_name":"kepaa41","location":"San Antonio, TX","description":"widow","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1038,"friends_count":2675,"listed_count":18,"created_at":"Tue - Mar 30 23:55:01 +0000 2010","favourites_count":6958,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37954,"lang":null,"status":{"created_at":"Mon - Feb 21 22:43:03 +0000 2022","id":1495891845884305409,"id_str":"1495891845884305409","text":"RT - @NathanMackBrown: BREAKING: Native American tribes in North Dakota sue over - \u2018sickening\u2019 Republican gerrymandering.\n\nRetweet if you stand\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NathanMackBrown","name":"Nathan - Mackenzie Brown \ud83c\uddfa\ud83c\uddf8 \ud83c\uddfa\ud83c\udde6","id":993137216309383169,"id_str":"993137216309383169","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Feb 21 22:06:33 +0000 2022","id":1495882661012901888,"id_str":"1495882661012901888","text":"BREAKING: - Native American tribes in North Dakota sue over \u2018sickening\u2019 Republican - gerrymandering.\n\nRetweet if you st\u2026 https:\/\/t.co\/EU8p3Y5nQy","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EU8p3Y5nQy","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1495882661012901888","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11035,"favorite_count":27705,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11035,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206327922585407490\/IuSXm-GH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206327922585407490\/IuSXm-GH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128052682\/1469287319","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32905835,"id_str":"32905835","name":"Dorothy - Williams","screen_name":"anzed","location":"Ga sometimes, NY sometimes","description":"love - to travel...Trump will never be my president","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":1159,"listed_count":19,"created_at":"Sat - Apr 18 15:00:31 +0000 2009","favourites_count":166,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":56430,"lang":null,"status":{"created_at":"Mon - Mar 21 09:33:51 +0000 2022","id":1505840101317873668,"id_str":"1505840101317873668","text":"Ukraine: - US condemns \u2018unconscionable\u2019 forced deportations of civilians from - Mariupol #NewsBreak https:\/\/t.co\/CsHIKEQlkx","truncated":false,"entities":{"hashtags":[{"text":"NewsBreak","indices":[85,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/CsHIKEQlkx","expanded_url":"https:\/\/www.newsbreakapp.com\/n\/0ekZJspH?pd=00NVEW5g&lang=en_US&s=i2","display_url":"newsbreakapp.com\/n\/0ekZJspH?pd=\u2026","indices":[96,119]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/825042675695022083\/X1JBljCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/825042675695022083\/X1JBljCk_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1296089722691842049,"id_str":"1296089722691842049","name":"ROME","screen_name":"RomeMarC4","location":"","description":"sweet - and simple","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":432,"listed_count":0,"created_at":"Wed - Aug 19 14:21:31 +0000 2020","favourites_count":126696,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36700,"lang":null,"status":{"created_at":"Thu - Jan 13 04:58:29 +0000 2022","id":1481490812047589377,"id_str":"1481490812047589377","text":"RT - @MsLeaSalonga: Sigh\u2026 I didn\u2019t make it. The bloodbath was real, everything - sold out in less than 1 minute!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MsLeaSalonga","name":"Lea - Salonga","id":31685653,"id_str":"31685653","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jan 11 02:06:20 +0000 2022","id":1480722716500328451,"id_str":"1480722716500328451","text":"Sigh\u2026 - I didn\u2019t make it. The bloodbath was real, everything sold out in less - than 1 minute!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4308,"favorite_count":32381,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4308,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403943355990429697\/xQHirAhB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403943355990429697\/xQHirAhB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1296089722691842049\/1631615383","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":844217270515785729,"id_str":"844217270515785729","name":"Fizzy - Genesis \ud83d\udc99\ud83d\udc9b\u270a\ufe0f","screen_name":"lisa_szafranski","location":"Rockford, - IL","description":"Lover of Games \ud83c\udfae, Politics \ud83c\uddfa\ud83c\uddf2, - Dogs \ud83d\udc15, Sci Fi \ud83d\udc7d, Books \ud83d\udcda, Films \ud83c\udfa5, - T.V. \ud83d\udcfa, NO DMs","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":961,"friends_count":3397,"listed_count":0,"created_at":"Tue - Mar 21 16:00:56 +0000 2017","favourites_count":128854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16678,"lang":null,"status":{"created_at":"Sat - Mar 26 03:11:00 +0000 2022","id":1507555692844044293,"id_str":"1507555692844044293","text":"@sara_carrion_ - Sugar","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sara_carrion_","name":"Sassy - Sara \ud83d\udc99","id":1109357946671153152,"id_str":"1109357946671153152","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507454550684405784,"in_reply_to_status_id_str":"1507454550684405784","in_reply_to_user_id":1109357946671153152,"in_reply_to_user_id_str":"1109357946671153152","in_reply_to_screen_name":"sara_carrion_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1507140736503926787\/rct15W2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1507140736503926787\/rct15W2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/844217270515785729\/1645891379","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3124726042,"id_str":"3124726042","name":"Rita - Larkin","screen_name":"rita_larkin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":370,"listed_count":0,"created_at":"Sat - Mar 28 19:57:39 +0000 2015","favourites_count":3756,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"status":{"created_at":"Fri - Mar 25 21:12:35 +0000 2022","id":1507465492017168394,"id_str":"1507465492017168394","text":"@Clijsterskim - @andyroddick Players could of course be made to play with a broken racket - \u2026 might help them think twice.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Clijsterskim","name":"Kim - Clijsters","id":61804151,"id_str":"61804151","indices":[0,13]},{"screen_name":"andyroddick","name":"andyroddick","id":13838562,"id_str":"13838562","indices":[14,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507422211329699845,"in_reply_to_status_id_str":"1507422211329699845","in_reply_to_user_id":61804151,"in_reply_to_user_id_str":"61804151","in_reply_to_screen_name":"Clijsterskim","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463468136011902979\/JZ94Z0jH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463468136011902979\/JZ94Z0jH_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1121804965067014148,"id_str":"1121804965067014148","name":"PapaDboy","screen_name":"DboyPapa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":471,"listed_count":0,"created_at":"Fri - Apr 26 15:55:20 +0000 2019","favourites_count":24758,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1356,"lang":null,"status":{"created_at":"Thu - Mar 24 21:50:52 +0000 2022","id":1507112740493705236,"id_str":"1507112740493705236","text":"@FoxNews - @tedcruz @jesseprimetime Great performance acting today, Teddy! Once this - politics thing is over, I\u2019m thin\u2026 https:\/\/t.co\/2eS592Z0MO","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FoxNews","name":"Fox - News","id":1367531,"id_str":"1367531","indices":[0,8]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[9,17]},{"screen_name":"jesseprimetime","name":"Jesse - Watters Primetime","id":819334191624101888,"id_str":"819334191624101888","indices":[18,33]}],"urls":[{"url":"https:\/\/t.co\/2eS592Z0MO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507112740493705236","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507070241838444547,"in_reply_to_status_id_str":"1507070241838444547","in_reply_to_user_id":1367531,"in_reply_to_user_id_str":"1367531","in_reply_to_screen_name":"FoxNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":859196772920545281,"id_str":"859196772920545281","name":"K","screen_name":"KareyHagen","location":"United - States","description":"love to travel, dance and read.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":1129,"listed_count":1,"created_at":"Tue - May 02 00:04:08 +0000 2017","favourites_count":19906,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23810,"lang":null,"status":{"created_at":"Sat - Mar 26 10:45:37 +0000 2022","id":1507670097753788421,"id_str":"1507670097753788421","text":"@thehill - Oh, look, Putin\u2019s using Tucker Carlson\u2019s, Ron DeSantis,\u2019 and - the overall GOP sound bite. How cute.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507665185762336770,"in_reply_to_status_id_str":"1507665185762336770","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1036973971479179264\/yQ6fP5N0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1036973971479179264\/yQ6fP5N0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":839514211063644161,"id_str":"839514211063644161","name":"RACHEL - LeBlanc","screen_name":"prsgaleblanc77","location":"Nacogdoches, TX","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":337,"listed_count":0,"created_at":"Wed - Mar 08 16:32:40 +0000 2017","favourites_count":1409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":206,"lang":null,"status":{"created_at":"Wed - Mar 17 13:44:28 +0000 2021","id":1372182046492274692,"id_str":"1372182046492274692","text":"RT - @John_Krueger: The Cushing Bearkats were on fire Tuesday night, as they rolled - to a 23-0 win over @ChirenoISD in county baseball action.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"John_Krueger","name":"John - Krueger","id":44790516,"id_str":"44790516","indices":[3,16]},{"screen_name":"ChirenoISD","name":"Chireno - ISD","id":762851961905352705,"id_str":"762851961905352705","indices":[101,112]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 17 06:02:14 +0000 2021","id":1372065721904168960,"id_str":"1372065721904168960","text":"The - Cushing Bearkats were on fire Tuesday night, as they rolled to a 23-0 win - over @ChirenoISD in county baseball a\u2026 https:\/\/t.co\/w3BcE05Aey","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChirenoISD","name":"Chireno - ISD","id":762851961905352705,"id_str":"762851961905352705","indices":[83,94]}],"urls":[{"url":"https:\/\/t.co\/w3BcE05Aey","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1372065721904168960","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1211765999130882053\/96ba6LuY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1211765999130882053\/96ba6LuY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839514211063644161\/1577742550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":902963415353831436,"id_str":"902963415353831436","name":"Patrick Maina - G","screen_name":"PatrickMainaG1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":270,"listed_count":0,"created_at":"Wed - Aug 30 18:37:09 +0000 2017","favourites_count":94,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31,"lang":null,"status":{"created_at":"Tue - Mar 15 15:44:39 +0000 2022","id":1503759086118182923,"id_str":"1503759086118182923","text":"@Kenyans - 20%","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kenyans","name":"Kenyans.co.ke","id":38737371,"id_str":"38737371","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1502520526098554880,"in_reply_to_status_id_str":"1502520526098554880","in_reply_to_user_id":38737371,"in_reply_to_user_id_str":"38737371","in_reply_to_screen_name":"Kenyans","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":483336103,"id_str":"483336103","name":"donna - nicholson","screen_name":"donnanicholson4","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":126,"listed_count":0,"created_at":"Sat - Feb 04 22:15:57 +0000 2012","favourites_count":3513,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1343,"lang":null,"status":{"created_at":"Sat - Mar 26 09:32:36 +0000 2022","id":1507651722059124739,"id_str":"1507651722059124739","text":"RT - @AvengerResister: Ashli Babbit\u2019s blood is on the hands of Ginni and Clarence - Thomas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AvengerResister","name":"Avenger - Resister","id":1334688905929613312,"id_str":"1334688905929613312","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 03:20:42 +0000 2022","id":1507558131689299969,"id_str":"1507558131689299969","text":"Ashli - Babbit\u2019s blood is on the hands of Ginni and Clarence Thomas.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":323,"favorite_count":1426,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":323,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465724964166905862\/04LVLJX8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465724964166905862\/04LVLJX8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":855338651949056000,"id_str":"855338651949056000","name":"buhr","screen_name":"_farzuu","location":"","description":"few - verses in a sonnet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":368,"friends_count":130,"listed_count":0,"created_at":"Fri - Apr 21 08:33:20 +0000 2017","favourites_count":24823,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9905,"lang":null,"status":{"created_at":"Sat - Mar 26 08:20:45 +0000 2022","id":1507633644185473027,"id_str":"1507633644185473027","text":"tbh - i don''t have time to argue against bb\/m supporters, i don''t have energy - to even prove how foolish it is to vote\u2026 https:\/\/t.co\/apURknLiQa","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/apURknLiQa","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507633644185473027","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505333422553976834\/XAZKNreY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505333422553976834\/XAZKNreY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/855338651949056000\/1620527103","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":410974184,"id_str":"410974184","name":"Debra - Zulli","screen_name":"alpacaholic","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":86,"friends_count":877,"listed_count":0,"created_at":"Sat - Nov 12 20:40:50 +0000 2011","favourites_count":75788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Sat - Aug 22 03:42:13 +0000 2020","id":1297016197440065541,"id_str":"1297016197440065541","text":"RT - @B52Malmet: This is what\u2019s happening in #NYC right now. #MarchForTheDead","truncated":false,"entities":{"hashtags":[{"text":"NYC","indices":[43,47]},{"text":"MarchForTheDead","indices":[59,75]}],"symbols":[],"user_mentions":[{"screen_name":"B52Malmet","name":"Barbara - Malmet","id":2876041031,"id_str":"2876041031","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Aug 22 00:51:04 +0000 2020","id":1296973128111988743,"id_str":"1296973128111988743","text":"This - is what\u2019s happening in #NYC right now. #MarchForTheDead https:\/\/t.co\/qJ57wwlrQt","truncated":false,"entities":{"hashtags":[{"text":"NYC","indices":[28,32]},{"text":"MarchForTheDead","indices":[44,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qJ57wwlrQt","expanded_url":"https:\/\/twitter.com\/justinhendrix\/status\/1296960963695050753","display_url":"twitter.com\/justinhendrix\/\u2026","indices":[61,84]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1296960963695050753,"quoted_status_id_str":"1296960963695050753","retweet_count":2659,"favorite_count":4523,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1296960963695050753,"quoted_status_id_str":"1296960963695050753","retweet_count":2659,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495155477576445953\/vTT0CGIl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495155477576445953\/vTT0CGIl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/410974184\/1403230831","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304186947963846656,"id_str":"1304186947963846656","name":"Sue","screen_name":"Sue81391511","location":"Indiana, - USA","description":"cashier","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":370,"listed_count":0,"created_at":"Thu - Sep 10 22:37:26 +0000 2020","favourites_count":1338,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Sep 29 15:23:52 +0000 2020","id":1310963511040892929,"id_str":"1310963511040892929","text":"RT - @sramacn: @pdellin @McAdooGordon https:\/\/t.co\/LBHNGKl0LE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sramacn","name":"Carol - MacNeil","id":2570866100,"id_str":"2570866100","indices":[3,11]},{"screen_name":"pdellin","name":"Phil - from NJ","id":598537886,"id_str":"598537886","indices":[13,21]},{"screen_name":"McAdooGordon","name":"Leslie - McAdoo Gordon","id":858877958089568256,"id_str":"858877958089568256","indices":[22,35]}],"urls":[{"url":"https:\/\/t.co\/LBHNGKl0LE","expanded_url":"https:\/\/www.pscp.tv\/TweetWordz\/1vAxRrBMoeZxl?t=9m46s","display_url":"pscp.tv\/TweetWordz\/1vA\u2026","indices":[36,59]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Sep 29 15:08:46 +0000 2020","id":1310959714130423808,"id_str":"1310959714130423808","text":"@pdellin - @McAdooGordon https:\/\/t.co\/LBHNGKl0LE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pdellin","name":"Phil - from NJ","id":598537886,"id_str":"598537886","indices":[0,8]},{"screen_name":"McAdooGordon","name":"Leslie - McAdoo Gordon","id":858877958089568256,"id_str":"858877958089568256","indices":[9,22]}],"urls":[{"url":"https:\/\/t.co\/LBHNGKl0LE","expanded_url":"https:\/\/www.pscp.tv\/TweetWordz\/1vAxRrBMoeZxl?t=9m46s","display_url":"pscp.tv\/TweetWordz\/1vA\u2026","indices":[23,46]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1310958800996835328,"in_reply_to_status_id_str":"1310958800996835328","in_reply_to_user_id":598537886,"in_reply_to_user_id_str":"598537886","in_reply_to_screen_name":"pdellin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304208248443228161\/dCGOj9ta_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304208248443228161\/dCGOj9ta_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304186947963846656\/1599782561","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1144226999944089602,"id_str":"1144226999944089602","name":"vianney - jo","screen_name":"tovilianney","location":"","description":"aspiring advocate - \ud83c\uddf5\ud83c\udded | dlsu economics ''24 \ud83c\udff9 \/ pshs ''21 | - \u271d\ufe0f\u2764\ufe0f\u200d\ud83d\udd25\ud83d\udd4a","url":"https:\/\/t.co\/xnBn0LguOM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xnBn0LguOM","expanded_url":"https:\/\/bit.ly\/VolunteerForLeni","display_url":"bit.ly\/VolunteerForLe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":529,"listed_count":0,"created_at":"Thu - Jun 27 12:52:30 +0000 2019","favourites_count":15633,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1180,"lang":null,"status":{"created_at":"Wed - Mar 23 12:48:42 +0000 2022","id":1506613911973691394,"id_str":"1506613911973691394","text":"RT - @c4rlomng: \ud83d\uddfa\ufe0f\ud83d\udd25 nearest Pisay campus to every point - in the PH \ud83c\uddf5\ud83c\udded\n\n(geographic distance)\n\nMade in #QGIS - using Voronoi Polygons. Pisay camp\u2026","truncated":false,"entities":{"hashtags":[{"text":"QGIS","indices":[99,104]}],"symbols":[],"user_mentions":[{"screen_name":"c4rlomng","name":"carlo","id":729589167533920256,"id_str":"729589167533920256","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 08:00:14 +0000 2022","id":1506178927307661312,"id_str":"1506178927307661312","text":"\ud83d\uddfa\ufe0f\ud83d\udd25 - nearest Pisay campus to every point in the PH \ud83c\uddf5\ud83c\udded\n\n(geographic - distance)\n\nMade in #QGIS using Voronoi Polygons.\u2026 https:\/\/t.co\/WlHMjK0QHp","truncated":true,"entities":{"hashtags":[{"text":"QGIS","indices":[85,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WlHMjK0QHp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506178927307661312","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":371,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":57,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1447086965774454789\/EOapZt6a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1447086965774454789\/EOapZt6a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1144226999944089602\/1564122897","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":777941041269858305,"id_str":"777941041269858305","name":"Bob - Omusi","screen_name":"bobjanyando","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":921,"listed_count":0,"created_at":"Mon - Sep 19 18:42:52 +0000 2016","favourites_count":2400,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":27,"lang":null,"status":{"created_at":"Sat - Oct 10 14:17:28 +0000 2020","id":1314933069003075584,"id_str":"1314933069003075584","text":"https:\/\/t.co\/Be4rvlYrHc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1314933042620903424,"id_str":"1314933042620903424","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Ej-UoqzXsAA5eHA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ej-UoqzXsAA5eHA.jpg","url":"https:\/\/t.co\/Be4rvlYrHc","display_url":"pic.twitter.com\/Be4rvlYrHc","expanded_url":"https:\/\/twitter.com\/bobjanyando\/status\/1314933069003075584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1040,"h":780,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1040,"h":780,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1314933042620903424,"id_str":"1314933042620903424","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Ej-UoqzXsAA5eHA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Ej-UoqzXsAA5eHA.jpg","url":"https:\/\/t.co\/Be4rvlYrHc","display_url":"pic.twitter.com\/Be4rvlYrHc","expanded_url":"https:\/\/twitter.com\/bobjanyando\/status\/1314933069003075584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1040,"h":780,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1040,"h":780,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225765719046049794\/U7ntDKh8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225765719046049794\/U7ntDKh8_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2414632982,"id_str":"2414632982","name":"nancy - connor","screen_name":"nancon123","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":414,"listed_count":0,"created_at":"Thu - Mar 27 16:45:26 +0000 2014","favourites_count":6661,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":234,"lang":null,"status":{"created_at":"Tue - Mar 15 19:09:16 +0000 2022","id":1503810581635256329,"id_str":"1503810581635256329","text":"RT - @OccupyDemocrats: BREAKING: Eric Trump pathetically claims that Vladimir Putin - \"could tell\" that his dad is a \"very strong person\" becau\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 01:42:46 +0000 2022","id":1503547220196356100,"id_str":"1503547220196356100","text":"BREAKING: - Eric Trump pathetically claims that Vladimir Putin \"could tell\" that his - dad is a \"very strong person\" be\u2026 https:\/\/t.co\/BzzHIO9ekJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BzzHIO9ekJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503547220196356100","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4061,"favorite_count":9449,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4061,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459544720531668994\/oj7Y7OrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459544720531668994\/oj7Y7OrM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":731892301006557184,"id_str":"731892301006557184","name":"\ud835\udcf9\ud835\udcfb\ud835\udcf2\ud835\udcf7\ud835\udcec\ud835\udcee - \ud835\udcd0\ud835\udcfb\ud835\udcf2\ud835\udd02\ud835\udcea","screen_name":"ariya_ehsani","location":"Tehran, - Iran","description":"PhD in Business Administration, Sharif University","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":277,"friends_count":3706,"listed_count":0,"created_at":"Sun - May 15 17:01:37 +0000 2016","favourites_count":20357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":689,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454164137207111681\/GWeUuD49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454164137207111681\/GWeUuD49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731892301006557184\/1607201643","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":831833887,"id_str":"831833887","name":"Darilyn - Listort","screen_name":"DarilynListort","location":"","description":"wife - and mother of two grown children; retired to South Florida five years ago - after a 35 year career in education in Newburgh, New York; avid reader","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":423,"listed_count":0,"created_at":"Tue - Sep 18 20:32:07 +0000 2012","favourites_count":14227,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":148,"lang":null,"status":{"created_at":"Fri - Mar 25 17:25:23 +0000 2022","id":1507408315160088578,"id_str":"1507408315160088578","text":"A - Supreme Court nominee. A popular dog breed. A shocking retirement. What do - you remember from the week that was? https:\/\/t.co\/adbt9Cf936","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/adbt9Cf936","expanded_url":"https:\/\/www.cnn.com\/interactive\/2022\/03\/us\/cnn-5-things-news-quiz-march-25-sec\/","display_url":"cnn.com\/interactive\/20\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":81871315,"id_str":"81871315","name":"Raymond - G Jones","screen_name":"rjones1326","location":"Medford, Ma","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":1094,"listed_count":0,"created_at":"Mon - Oct 12 15:49:09 +0000 2009","favourites_count":420,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19144,"lang":null,"status":{"created_at":"Thu - Mar 17 00:47:03 +0000 2022","id":1504257975741030410,"id_str":"1504257975741030410","text":"https:\/\/t.co\/lNibSCqLN2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504257971441872897,"id_str":"1504257971441872897","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOAyp7ZXsAE4vK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOAyp7ZXsAE4vK0.jpg","url":"https:\/\/t.co\/lNibSCqLN2","display_url":"pic.twitter.com\/lNibSCqLN2","expanded_url":"https:\/\/twitter.com\/rjones1326\/status\/1504257975741030410\/photo\/1","type":"photo","sizes":{"small":{"w":679,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1126,"resize":"fit"},"medium":{"w":1125,"h":1126,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504257971441872897,"id_str":"1504257971441872897","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOAyp7ZXsAE4vK0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOAyp7ZXsAE4vK0.jpg","url":"https:\/\/t.co\/lNibSCqLN2","display_url":"pic.twitter.com\/lNibSCqLN2","expanded_url":"https:\/\/twitter.com\/rjones1326\/status\/1504257975741030410\/photo\/1","type":"photo","sizes":{"small":{"w":679,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":1126,"resize":"fit"},"medium":{"w":1125,"h":1126,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/833231740999237633\/D5PBEzzp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/833231740999237633\/D5PBEzzp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30765469,"id_str":"30765469","name":"william - murphy","screen_name":"eirelandforever","location":"Abuja Nigeria ","description":"COVID - are White Walkers, vaccinated people are dragon glass. now we need a duck - dynasty analogy to stop this shit.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":960,"listed_count":0,"created_at":"Mon - Apr 13 00:56:11 +0000 2009","favourites_count":502,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":979,"lang":null,"status":{"created_at":"Tue - Aug 24 19:08:28 +0000 2021","id":1430245643352748035,"id_str":"1430245643352748035","text":"@TheAtlantic - \ud83e\udd37\ud83c\udffc\u200d\u2642\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheAtlantic","name":"The - Atlantic","id":35773039,"id_str":"35773039","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1430221111942336523,"in_reply_to_status_id_str":"1430221111942336523","in_reply_to_user_id":35773039,"in_reply_to_user_id_str":"35773039","in_reply_to_screen_name":"TheAtlantic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353245784821657600\/ifeqTnYY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353245784821657600\/ifeqTnYY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30765469\/1601576816","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313627052931772416,"id_str":"1313627052931772416","name":"chen","screen_name":"chen62025229","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":166,"listed_count":0,"created_at":"Tue - Oct 06 23:48:03 +0000 2020","favourites_count":1246,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26364713,"id_str":"26364713","name":"Khamal - Ethan Georges","screen_name":"khamal","location":"Port of Spain","description":"Lead - Editor News Gathering - Guardian Media, Freelance writer for AFP (Agence France - Presse) Former VP Media Association of Trinidad & Tobago.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14371,"friends_count":1089,"listed_count":102,"created_at":"Tue - Mar 24 23:59:27 +0000 2009","favourites_count":7838,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11808,"lang":null,"status":{"created_at":"Wed - Mar 23 03:22:13 +0000 2022","id":1506471350361276420,"id_str":"1506471350361276420","text":"@joelajulien - @KejanHaynes There are no words!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joelajulien","name":"joel - anthony julien","id":761987031278952448,"id_str":"761987031278952448","indices":[0,12]},{"screen_name":"KejanHaynes","name":"Kejan - Haynes","id":194962896,"id_str":"194962896","indices":[13,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506459723008204800,"in_reply_to_status_id_str":"1506459723008204800","in_reply_to_user_id":761987031278952448,"in_reply_to_user_id_str":"761987031278952448","in_reply_to_screen_name":"joelajulien","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1138798900998004742\/QLVSmtMA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1138798900998004742\/QLVSmtMA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26364713\/1433291156","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2409676370,"id_str":"2409676370","name":"Lisa - Padovani","screen_name":"lisapadovani1","location":"New York, USA","description":"Costume - Designer","url":"https:\/\/t.co\/OxugKD09D6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OxugKD09D6","expanded_url":"http:\/\/lisapadovanicostumes.com","display_url":"lisapadovanicostumes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":537,"friends_count":1039,"listed_count":8,"created_at":"Mon - Mar 24 23:06:20 +0000 2014","favourites_count":10100,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7186,"lang":null,"status":{"created_at":"Thu - Mar 24 18:02:06 +0000 2022","id":1507055169103613966,"id_str":"1507055169103613966","text":"@palomapoetry - @joncoopertweets @DrOz So effervescent!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"palomapoetry","name":"Paloma_Wear - A Damn Mask \ud83d\ude37 \ud83d\udd4a\ufe0f #StandWithUkraine","id":934181338793562112,"id_str":"934181338793562112","indices":[0,13]},{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[14,30]},{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[31,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506797408784629766,"in_reply_to_status_id_str":"1506797408784629766","in_reply_to_user_id":934181338793562112,"in_reply_to_user_id_str":"934181338793562112","in_reply_to_screen_name":"palomapoetry","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593063977879494656\/G_O5G32u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593063977879494656\/G_O5G32u_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":727043898,"id_str":"727043898","name":"marisa - mckee","screen_name":"marisara2012","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":90,"friends_count":1693,"listed_count":5,"created_at":"Mon - Jul 30 23:07:41 +0000 2012","favourites_count":41669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12944,"lang":null,"status":{"created_at":"Thu - Mar 24 16:22:23 +0000 2022","id":1507030073035173890,"id_str":"1507030073035173890","text":"RT - @FINALLEVEL: I was robbed at a gas station in NJ last night. After my hands - stopped trembling..I managed to call the cops and they were\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FINALLEVEL","name":"ICE - T","id":28420827,"id_str":"28420827","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 14:16:30 +0000 2022","id":1506998392328794117,"id_str":"1506998392328794117","text":"I - was robbed at a gas station in NJ last night. After my hands stopped trembling..I - managed to call the cops and th\u2026 https:\/\/t.co\/0UPKVIUQcl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0UPKVIUQcl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506998392328794117","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130562,"favorite_count":974998,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":130562,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624261347442851840\/S02OyKOc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624261347442851840\/S02OyKOc_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2913311911,"id_str":"2913311911","name":"John - Villarreal","screen_name":"villarreal7002","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":1067,"listed_count":0,"created_at":"Sat - Nov 29 03:58:45 +0000 2014","favourites_count":726,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":336,"lang":null,"status":{"created_at":"Tue - Mar 22 13:44:35 +0000 2022","id":1506265584778022915,"id_str":"1506265584778022915","text":"RT - @OccupyDemocrats: BREAKING NEWS: A brave Texas librarian is fired after refusing - to remove dozens of banned books from her library, decl\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 00:30:02 +0000 2022","id":1506065630759370753,"id_str":"1506065630759370753","text":"BREAKING - NEWS: A brave Texas librarian is fired after refusing to remove dozens of - banned books from her library, d\u2026 https:\/\/t.co\/KtfmQ5cgaQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KtfmQ5cgaQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506065630759370753","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22038,"favorite_count":70659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":22038,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538542717605646336\/-SQLMIvF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538542717605646336\/-SQLMIvF_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19346090,"id_str":"19346090","name":"Kritter","screen_name":"Ken_Ritter","location":"Enfield, - CT","description":"Anti-trump angry Snowflake, Mildly interesting 70''s rabble - rouser.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":918,"listed_count":0,"created_at":"Thu - Jan 22 16:30:10 +0000 2009","favourites_count":632,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1202,"lang":null,"status":{"created_at":"Sat - Mar 19 11:35:50 +0000 2022","id":1505146022523199488,"id_str":"1505146022523199488","text":"@RepGwenMoore - sounds like something that can be used as an excuse. I will sue you because - you didnt hire me. must be my hair","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepGwenMoore","name":"Rep. - Gwen Moore","id":22669526,"id_str":"22669526","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504905921369100290,"in_reply_to_status_id_str":"1504905921369100290","in_reply_to_user_id":22669526,"in_reply_to_user_id_str":"22669526","in_reply_to_screen_name":"RepGwenMoore","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233833700649054208\/f3JxUGGT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233833700649054208\/f3JxUGGT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19346090\/1489162209","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243952567392010241,"id_str":"1243952567392010241","name":"Gabriel - said","screen_name":"Gabriel34957076","location":"","description":"Simple - man with leftist principles","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":1411,"listed_count":0,"created_at":"Sat - Mar 28 17:26:32 +0000 2020","favourites_count":142,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Tue - Aug 11 12:50:16 +0000 2020","id":1293167853307396097,"id_str":"1293167853307396097","text":"@MwauraIsaac1 - when you who is nominated senator distinctly vowed over others verbally talking - of northerners who ar\u2026 https:\/\/t.co\/TYqUvjohxr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MwauraIsaac1","name":"Isaac - Mwaura CBS MP","id":726904350,"id_str":"726904350","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/TYqUvjohxr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1293167853307396097","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":726904350,"in_reply_to_user_id_str":"726904350","in_reply_to_screen_name":"MwauraIsaac1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1243952991427846145\/XUH6ddrF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1243952991427846145\/XUH6ddrF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243952567392010241\/1586406572","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280278322086391813,"id_str":"1280278322086391813","name":"Lana - Goldston","screen_name":"LanaGoldston","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":372,"listed_count":0,"created_at":"Mon - Jul 06 23:12:05 +0000 2020","favourites_count":9542,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46,"lang":null,"status":{"created_at":"Wed - Sep 29 21:28:53 +0000 2021","id":1443326944720850945,"id_str":"1443326944720850945","text":"@inty_news - Disgraceful punk !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1443254791526780930,"in_reply_to_status_id_str":"1443254791526780930","in_reply_to_user_id":1441806131022557190,"in_reply_to_user_id_str":"1441806131022557190","in_reply_to_screen_name":"TrendingsForYou","geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, - USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":39519670,"id_str":"39519670","name":"Dr. - Heidi Richards","screen_name":"ledgi","location":"South Florida","description":"Current - @LSNPartnersLLC | Former @BrowardInfo @BrowardCounty @FTLCityNews @BrowardCollege - @FIU | AKA | Jr. League | @TempleUniv Alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":409,"friends_count":1054,"listed_count":12,"created_at":"Tue - May 12 15:15:56 +0000 2009","favourites_count":10036,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12194,"lang":null,"status":{"created_at":"Sat - Mar 19 01:05:49 +0000 2022","id":1504987472073265155,"id_str":"1504987472073265155","text":"@adjoabasamoah - @TempleAlumni lol SAC is like a mini Neiman\u2019s now. they no longer need - us \ud83e\udd37\ud83c\udffb\u200d\u2640\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"adjoabasamoah","name":"ADJOA - B. ASAMOAH","id":1180221140238786563,"id_str":"1180221140238786563","indices":[0,14]},{"screen_name":"TempleAlumni","name":"Temple - Alumni","id":262304830,"id_str":"262304830","indices":[15,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504975721223139328,"in_reply_to_status_id_str":"1504975721223139328","in_reply_to_user_id":1180221140238786563,"in_reply_to_user_id_str":"1180221140238786563","in_reply_to_screen_name":"adjoabasamoah","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427828537763975170\/srQ4kiZG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427828537763975170\/srQ4kiZG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39519670\/1627404864","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":224188761,"id_str":"224188761","name":"Ad\u00e9m\u00fal\u00e8y\u00e1 - Stephen","screen_name":"Ademuleya","location":"Here!","description":"Son. - Brother. Friend. Uncle. Husband. Father. Accidental Chartered Accountant. - Aspiring farmer. \n\nRTs \u2260 endorsements. Just a sign of interest.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":775,"friends_count":2105,"listed_count":13,"created_at":"Wed - Dec 08 11:09:11 +0000 2010","favourites_count":1686,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23984,"lang":null,"status":{"created_at":"Fri - Mar 25 15:44:34 +0000 2022","id":1507382945161617424,"id_str":"1507382945161617424","text":"@Sports_Doctor2 - 8:30PM Nigerian time.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Sports_Doctor2","name":"SportsDokita - (Odogwu\u261d\ufe0f)","id":752140837614678016,"id_str":"752140837614678016","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507376223609139206,"in_reply_to_status_id_str":"1507376223609139206","in_reply_to_user_id":752140837614678016,"in_reply_to_user_id_str":"752140837614678016","in_reply_to_screen_name":"Sports_Doctor2","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1467212680398262276\/0PyGtE49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1467212680398262276\/0PyGtE49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224188761\/1466277167","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156030722202841088,"id_str":"1156030722202841088","name":"parvizbismil","screen_name":"parvizbismil","location":"Afghanistan","description":"Love - each other","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":1605,"listed_count":1,"created_at":"Tue - Jul 30 02:36:16 +0000 2019","favourites_count":258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":71,"lang":null,"status":{"created_at":"Thu - Apr 29 01:56:16 +0000 2021","id":1387586499248590850,"id_str":"1387586499248590850","text":"@MarwaAfghan7 - +93\u00a070\u00a0063\u00a00808","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarwaAfghan7","name":"Marwa - Sediqi Afghan","id":1324630299247026176,"id_str":"1324630299247026176","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1387540507958595595,"in_reply_to_status_id_str":"1387540507958595595","in_reply_to_user_id":1324630299247026176,"in_reply_to_user_id_str":"1324630299247026176","in_reply_to_screen_name":"MarwaAfghan7","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302596685747703811\/ZIAtCwWU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302596685747703811\/ZIAtCwWU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":476898852,"id_str":"476898852","name":"Julienne - De Wachter","screen_name":"JulienneDe","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":789,"listed_count":0,"created_at":"Sat - Jan 28 16:25:37 +0000 2012","favourites_count":4288,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":123,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2592584007,"id_str":"2592584007","name":"Taabu - M. Ogunyo","screen_name":"taabumichael","location":"","description":"The connoisseur","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":993,"listed_count":0,"created_at":"Sun - Jun 08 17:20:43 +0000 2014","favourites_count":219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Sat - Jul 10 16:25:49 +0000 2021","id":1413897256877625345,"id_str":"1413897256877625345","text":"@AIRTEL_KE - @JeiKiarie Tell us when the network connectivity is going to be efficient. - Give us timelines. You''re con\u2026 https:\/\/t.co\/HlOzSPz510","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AIRTEL_KE","name":"Airtel - Kenya","id":191765987,"id_str":"191765987","indices":[0,10]},{"screen_name":"JeiKiarie","name":"Kiarie - Kagure","id":106072645,"id_str":"106072645","indices":[11,21]}],"urls":[{"url":"https:\/\/t.co\/HlOzSPz510","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1413897256877625345","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1413764969687093250,"in_reply_to_status_id_str":"1413764969687093250","in_reply_to_user_id":191765987,"in_reply_to_user_id_str":"191765987","in_reply_to_screen_name":"AIRTEL_KE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321846992620933120\/vHZZSgzC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321846992620933120\/vHZZSgzC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592584007\/1428805941","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1230158342749814784,"id_str":"1230158342749814784","name":"Willi - Morgenthaler","screen_name":"WilliMorgentha1","location":"Zurich, Switzerland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":87,"listed_count":0,"created_at":"Wed - Feb 19 15:53:20 +0000 2020","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Sat - Feb 19 14:43:48 +0000 2022","id":1495046464258691073,"id_str":"1495046464258691073","text":"@VP - Do it Now dont just talk about it. It might help to stop hin.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VP","name":"Vice - President Kamala Harris","id":803694179079458816,"id_str":"803694179079458816","indices":[0,3]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495000963886682113,"in_reply_to_status_id_str":"1495000963886682113","in_reply_to_user_id":803694179079458816,"in_reply_to_user_id_str":"803694179079458816","in_reply_to_screen_name":"VP","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371006720697307136\/Py0ODwaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371006720697307136\/Py0ODwaw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1444246927,"id_str":"1444246927","name":"JOEDINCO","screen_name":"AleguJoseph","location":"port - harcourt nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":468,"friends_count":4745,"listed_count":7,"created_at":"Mon - May 20 16:44:42 +0000 2013","favourites_count":5154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2327,"lang":null,"status":{"created_at":"Thu - Mar 24 19:47:57 +0000 2022","id":1507081808088817677,"id_str":"1507081808088817677","text":"RT - @Muhd_AlkaliAY: 2023 Presidency\n\nLike for Yemi Osinbajo \nRt for Peter Obi - https:\/\/t.co\/zyiiPko0sa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Muhd_AlkaliAY","name":"Muhammad - Yahaya Abubakar","id":416525632,"id_str":"416525632","indices":[3,17]}],"urls":[],"media":[{"id":1506617243362377730,"id_str":"1506617243362377730","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506617260420567049,"source_status_id_str":"1506617260420567049","source_user_id":416525632,"source_user_id_str":"416525632"}]},"extended_entities":{"media":[{"id":1506617243362377730,"id_str":"1506617243362377730","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"source_status_id":1506617260420567049,"source_status_id_str":"1506617260420567049","source_user_id":416525632,"source_user_id_str":"416525632"},{"id":1506617253881602057,"id_str":"1506617253881602057","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUaPYWYAkrQuV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUaPYWYAkrQuV.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1080,"resize":"fit"},"medium":{"w":720,"h":1080,"resize":"fit"}},"source_status_id":1506617260420567049,"source_status_id_str":"1506617260420567049","source_user_id":416525632,"source_user_id_str":"416525632"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 13:02:01 +0000 2022","id":1506617260420567049,"id_str":"1506617260420567049","text":"2023 - Presidency\n\nLike for Yemi Osinbajo \nRt for Peter Obi https:\/\/t.co\/zyiiPko0sa","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506617243362377730,"id_str":"1506617243362377730","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506617243362377730,"id_str":"1506617243362377730","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUZoMXwAIm4lm.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}},{"id":1506617253881602057,"id_str":"1506617253881602057","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/FOiUaPYWYAkrQuV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOiUaPYWYAkrQuV.jpg","url":"https:\/\/t.co\/zyiiPko0sa","display_url":"pic.twitter.com\/zyiiPko0sa","expanded_url":"https:\/\/twitter.com\/Muhd_AlkaliAY\/status\/1506617260420567049\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1080,"resize":"fit"},"medium":{"w":720,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"07d9e7819cc86003","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9e7819cc86003.json","place_type":"poi","name":"Abuja - shopping mall, wuse","full_name":"Abuja shopping mall, wuse","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[7.471351800967202,9.06033296239396],[7.471351800967202,9.06033296239396],[7.471351800967202,9.06033296239396],[7.471351800967202,9.06033296239396]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":110,"favorite_count":53,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":110,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608930080618856448\/Gb_pctj7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608930080618856448\/Gb_pctj7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1444246927\/1547374759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18255221,"id_str":"18255221","name":"artgrowden","screen_name":"artgrowden","location":"Murfreesboro","description":"Be - a good human.","url":"https:\/\/t.co\/6XLpyAq9Qn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6XLpyAq9Qn","expanded_url":"http:\/\/www.artgrowden.com","display_url":"artgrowden.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":711,"listed_count":5,"created_at":"Fri - Dec 19 23:04:29 +0000 2008","favourites_count":401,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2333,"lang":null,"status":{"created_at":"Sat - Oct 16 12:59:18 +0000 2021","id":1449359295133495304,"id_str":"1449359295133495304","text":"This - is how you America Great Again. Kindness. https:\/\/t.co\/g3h2cRFiJV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/g3h2cRFiJV","expanded_url":"https:\/\/twitter.com\/funder\/status\/1449106064985759753","display_url":"twitter.com\/funder\/status\/\u2026","indices":[47,70]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1449106064985759753,"quoted_status_id_str":"1449106064985759753","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E4E2E2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298941986838384642\/FfTayTHr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298941986838384642\/FfTayTHr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18255221\/1574961306","profile_link_color":"9E9E9E","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"CCCBCB","profile_text_color":"D1D0D0","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235919410075967488,"id_str":"1235919410075967488","name":"@kingsley","screen_name":"eaglebrother11","location":"","description":"photographer!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":137,"friends_count":1840,"listed_count":1,"created_at":"Fri - Mar 06 13:26:05 +0000 2020","favourites_count":22757,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11603,"lang":null,"status":{"created_at":"Sat - Mar 26 04:16:44 +0000 2022","id":1507572235447541761,"id_str":"1507572235447541761","text":"RT - @halleberry: 20 years ago, this week, I walked through that door. I will never - get over this moment! Thank you @TheAcademy, @Lionsgate,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"halleberry","name":"Halle - Berry","id":3111553475,"id_str":"3111553475","indices":[3,14]},{"screen_name":"TheAcademy","name":"The - Academy","id":200163448,"id_str":"200163448","indices":[114,125]},{"screen_name":"Lionsgate","name":"Lionsgate","id":20727819,"id_str":"20727819","indices":[127,137]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:25:40 +0000 2022","id":1507498985296211978,"id_str":"1507498985296211978","text":"20 - years ago, this week, I walked through that door. I will never get over this - moment! Thank you @TheAcademy,\u2026 https:\/\/t.co\/X4YZe6r3fo","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheAcademy","name":"The - Academy","id":200163448,"id_str":"200163448","indices":[98,109]}],"urls":[{"url":"https:\/\/t.co\/X4YZe6r3fo","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507498985296211978","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":794,"favorite_count":8394,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":794,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481510169523671043\/Fcvf9Wge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481510169523671043\/Fcvf9Wge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1235919410075967488\/1588145394","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19427548,"id_str":"19427548","name":"Eleanor - McKee","screen_name":"eleanormckee","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":6,"friends_count":362,"listed_count":1,"created_at":"Sat - Jan 24 01:59:16 +0000 2009","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36493412,"id_str":"36493412","name":"Rev. - Marvin Silver","screen_name":"PastorSilver","location":"Maryland","description":"Man - of God, Husband, Dad, Associate Conference Minister of @CAC_UCC, Architect - of @JWActionNetwork, Home-Chef, Sports Fan, Gardener & Lover of Life.","url":"https:\/\/t.co\/fTUUy8DqMJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fTUUy8DqMJ","expanded_url":"http:\/\/www.cacucc.org","display_url":"cacucc.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":499,"friends_count":1681,"listed_count":15,"created_at":"Wed - Apr 29 21:50:41 +0000 2009","favourites_count":865,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3396,"lang":null,"status":{"created_at":"Sat - Mar 26 03:52:53 +0000 2022","id":1507566233570455553,"id_str":"1507566233570455553","text":"Caleb - Love won this game for @UNC_Basketball #EliteEight Lets go #Tarheels","truncated":false,"entities":{"hashtags":[{"text":"EliteEight","indices":[45,56]},{"text":"Tarheels","indices":[65,74]}],"symbols":[],"user_mentions":[{"screen_name":"UNC_Basketball","name":"Carolina - Basketball","id":45575375,"id_str":"45575375","indices":[29,44]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356677461388460034\/lkLLH62l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356677461388460034\/lkLLH62l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36493412\/1591095246","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":49178021,"id_str":"49178021","name":"Bob - Corredine","screen_name":"BobC602","location":"Webster, NY","description":"Retired - Teacher and Coach","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":453,"listed_count":0,"created_at":"Sun - Jun 21 00:55:50 +0000 2009","favourites_count":1416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1311,"lang":null,"status":{"created_at":"Sat - Mar 19 16:43:57 +0000 2022","id":1505223561329446919,"id_str":"1505223561329446919","text":"Was - not a big Frank Martin fan when he was coaching at K State, but I sure am - now. https:\/\/t.co\/3EtJKRQYh9","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3EtJKRQYh9","expanded_url":"https:\/\/twitter.com\/RexChapman\/status\/1505019217040523269","display_url":"twitter.com\/RexChapman\/sta\u2026","indices":[83,106]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1505019217040523269,"quoted_status_id_str":"1505019217040523269","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1072854405161078789\/hnF6kWHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1072854405161078789\/hnF6kWHs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":970509872881192960,"id_str":"970509872881192960","name":"william - fawaz","screen_name":"fawaz_william","location":"Lincoln Park, MI","description":"NFL - Politics NBA NHL MLB MLB Celebrity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":127,"friends_count":1370,"listed_count":0,"created_at":"Mon - Mar 05 04:02:39 +0000 2018","favourites_count":12724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1018,"lang":null,"status":{"created_at":"Sun - Mar 28 18:44:16 +0000 2021","id":1376243759801851910,"id_str":"1376243759801851910","text":"@GOPLeader - Kevin McCarthy for President 2024 go Trumpers he is our man!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOPLeader","name":"Kevin - McCarthy","id":19739126,"id_str":"19739126","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1376169420909862914,"in_reply_to_status_id_str":"1376169420909862914","in_reply_to_user_id":19739126,"in_reply_to_user_id_str":"19739126","in_reply_to_screen_name":"GOPLeader","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1370711667282153477\/A8zrXYH5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1370711667282153477\/A8zrXYH5_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":741312469,"id_str":"741312469","name":"ATOM","screen_name":"atmphantom","location":"Lagos, - Nigeria","description":"Mass Communicator\/Animal lover","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":447,"friends_count":1185,"listed_count":1,"created_at":"Mon - Aug 06 19:52:30 +0000 2012","favourites_count":5063,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3295,"lang":null,"status":{"created_at":"Thu - Mar 24 14:08:11 +0000 2022","id":1506996301636022276,"id_str":"1506996301636022276","text":"@PulseNigeria247 - \ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PulseNigeria247","name":"Pulse - Nigeria","id":374999591,"id_str":"374999591","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506994759818174466,"in_reply_to_status_id_str":"1506994759818174466","in_reply_to_user_id":374999591,"in_reply_to_user_id_str":"374999591","in_reply_to_screen_name":"PulseNigeria247","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466799155486105606\/4TDogFr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466799155486105606\/4TDogFr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/741312469\/1575355029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128071154470617088,"id_str":"1128071154470617088","name":"Dollar","screen_name":"Dollar20879178","location":"Earth","description":"Null","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":2542,"listed_count":6,"created_at":"Mon - May 13 22:54:56 +0000 2019","favourites_count":1043,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1390,"lang":null,"status":{"created_at":"Fri - Mar 25 14:32:39 +0000 2022","id":1507364846903439365,"id_str":"1507364846903439365","text":"@seifsharbatly - \u0648\u0647\u064a\u0627 \u062c\u0645\u0639\u062a \u0628\u064a\u0646 \u0627\u0644\u0627\u062b\u0646\u064a\u0646.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"seifsharbatly","name":"Seifallah - Sharbatly \u0633\u064a\u0641 \u0627\u0644\u0644\u0647 \u0634\u0631\u0628\u062a\u0644\u064a","id":482116131,"id_str":"482116131","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507335309478055936,"in_reply_to_status_id_str":"1507335309478055936","in_reply_to_user_id":482116131,"in_reply_to_user_id_str":"482116131","in_reply_to_screen_name":"seifsharbatly","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347305588708016129\/kMQQiGX-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347305588708016129\/kMQQiGX-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128071154470617088\/1557874273","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16168631,"id_str":"16168631","name":"epitree","screen_name":"epitree","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":532,"listed_count":0,"created_at":"Sun - Sep 07 12:38:00 +0000 2008","favourites_count":49,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":433,"lang":null,"status":{"created_at":"Sat - Feb 26 17:33:46 +0000 2022","id":1497625954348417028,"id_str":"1497625954348417028","text":"@benshapiro - I thought it was 3 days?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"benshapiro","name":"Ben - Shapiro","id":17995040,"id_str":"17995040","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497205126485790725,"in_reply_to_status_id_str":"1497205126485790725","in_reply_to_user_id":17995040,"in_reply_to_user_id_str":"17995040","in_reply_to_screen_name":"benshapiro","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1215707622948687874,"id_str":"1215707622948687874","name":"garance:)","screen_name":"wgarancew","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":150,"listed_count":0,"created_at":"Fri - Jan 10 18:51:09 +0000 2020","favourites_count":6794,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Fri - Mar 25 13:13:26 +0000 2022","id":1507344912152510464,"id_str":"1507344912152510464","text":"RT - @visuaIanimes: Ghibli Houses \ud83c\udfe0 https:\/\/t.co\/5p9WIc9Zhh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"visuaIanimes","name":"animes - aesthetics","id":1106568713514483712,"id_str":"1106568713514483712","indices":[3,16]}],"urls":[],"media":[{"id":1507024043299512320,"id_str":"1507024043299512320","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","url":"https:\/\/t.co\/5p9WIc9Zhh","display_url":"pic.twitter.com\/5p9WIc9Zhh","expanded_url":"https:\/\/twitter.com\/visuaIanimes\/status\/1507024083443138570\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1507024083443138570,"source_status_id_str":"1507024083443138570","source_user_id":1106568713514483712,"source_user_id_str":"1106568713514483712"}]},"extended_entities":{"media":[{"id":1507024043299512320,"id_str":"1507024043299512320","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","url":"https:\/\/t.co\/5p9WIc9Zhh","display_url":"pic.twitter.com\/5p9WIc9Zhh","expanded_url":"https:\/\/twitter.com\/visuaIanimes\/status\/1507024083443138570\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"source_status_id":1507024083443138570,"source_status_id_str":"1507024083443138570","source_user_id":1106568713514483712,"source_user_id_str":"1106568713514483712"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 15:58:35 +0000 2022","id":1507024083443138570,"id_str":"1507024083443138570","text":"Ghibli - Houses \ud83c\udfe0 https:\/\/t.co\/5p9WIc9Zhh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507024043299512320,"id_str":"1507024043299512320","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","url":"https:\/\/t.co\/5p9WIc9Zhh","display_url":"pic.twitter.com\/5p9WIc9Zhh","expanded_url":"https:\/\/twitter.com\/visuaIanimes\/status\/1507024083443138570\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507024043299512320,"id_str":"1507024043299512320","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOoGYgDXIAAFK2J.jpg","url":"https:\/\/t.co\/5p9WIc9Zhh","display_url":"pic.twitter.com\/5p9WIc9Zhh","expanded_url":"https:\/\/twitter.com\/visuaIanimes\/status\/1507024083443138570\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4798,"favorite_count":29077,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4798,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320101295165001730\/gSDUKaAe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320101295165001730\/gSDUKaAe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215707622948687874\/1603571867","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1288298643401764864,"id_str":"1288298643401764864","name":"Miles - Armor","screen_name":"MilesArmor1","location":"Los Angeles","description":"Everything - has begun !","url":"https:\/\/t.co\/wgCA4glBxz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wgCA4glBxz","expanded_url":"https:\/\/gettr.com","display_url":"gettr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":34,"friends_count":158,"listed_count":0,"created_at":"Wed - Jul 29 02:22:26 +0000 2020","favourites_count":5939,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6107,"lang":null,"status":{"created_at":"Sat - Mar 26 09:46:31 +0000 2022","id":1507655228421640196,"id_str":"1507655228421640196","text":"@visegrad24 - Notification of emergency assistance for Ukraine from the New Chinese Federation - and the Rule of Law!Th\u2026 https:\/\/t.co\/f5CE3lHCRb","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"visegrad24","name":"Visegr\u00e1d - 24","id":1222773302441148416,"id_str":"1222773302441148416","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/f5CE3lHCRb","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507655228421640196","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507442012508897281,"in_reply_to_status_id_str":"1507442012508897281","in_reply_to_user_id":1222773302441148416,"in_reply_to_user_id_str":"1222773302441148416","in_reply_to_screen_name":"visegrad24","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1411491588321153025\/I7iYBsTb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1411491588321153025\/I7iYBsTb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1288298643401764864\/1625360794","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277285045590507521,"id_str":"1277285045590507521","name":"Malek - Diab","screen_name":"Malek_Diab0","location":"New York, USA","description":"MA - in International Affairs - King''s College London","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":606,"listed_count":0,"created_at":"Sun - Jun 28 16:58:00 +0000 2020","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492701023265300482\/Y4pLSXyO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492701023265300482\/Y4pLSXyO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277285045590507521\/1633223740","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":318069756,"id_str":"318069756","name":"RihanStan","screen_name":"RihanStan","location":"Astroworld - by way of Wakanda","description":"#RIHANNANAVY!","url":"https:\/\/t.co\/4xfQIblrCX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4xfQIblrCX","expanded_url":"http:\/\/www.nuttedonherfacehernewnicknameisbabyface.com","display_url":"\u2026onherfacehernewnicknameisbabyface.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":377,"friends_count":4100,"listed_count":1,"created_at":"Wed - Jun 15 22:38:01 +0000 2011","favourites_count":7657,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2226,"lang":null,"status":{"created_at":"Fri - Mar 25 00:15:31 +0000 2022","id":1507149141054566402,"id_str":"1507149141054566402","text":"RT - @iamcardib: Keep it a buck \u2026.Do social media have you feeling like you - ain\u2019t doing enough? Or no pressure you know you got this ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iamcardib","name":"Cardi - B","id":866953267,"id_str":"866953267","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 20:36:14 +0000 2022","id":1507093955657154581,"id_str":"1507093955657154581","text":"Keep - it a buck \u2026.Do social media have you feeling like you ain\u2019t doing - enough? Or no pressure you know you got this ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1546,"favorite_count":22452,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1546,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318363627590746112\/omGspMOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318363627590746112\/omGspMOM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318069756\/1603157361","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":730080540209065989,"id_str":"730080540209065989","name":"Ezgis\ud83d\udc3e","screen_name":"kayaezgis","location":"Hygge","description":"\u201cars - longa, vita brevis\u201d","url":"https:\/\/t.co\/j6cABD2K4B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j6cABD2K4B","expanded_url":"https:\/\/www.onesongtogo.com","display_url":"onesongtogo.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":501,"listed_count":0,"created_at":"Tue - May 10 17:02:19 +0000 2016","favourites_count":4333,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":101,"lang":null,"status":{"created_at":"Fri - Jan 07 19:49:38 +0000 2022","id":1479540753374326786,"id_str":"1479540753374326786","text":"\ud83e\udde1\u2728\ud83d\udd4a - https:\/\/t.co\/3VoJWyxei7","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3VoJWyxei7","expanded_url":"https:\/\/twitter.com\/feyzi_ercin\/status\/1479513166740692998","display_url":"twitter.com\/feyzi_ercin\/st\u2026","indices":[4,27]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1479513166740692998,"quoted_status_id_str":"1479513166740692998","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336033148858195971\/Hp1gU4as_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336033148858195971\/Hp1gU4as_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/730080540209065989\/1612466131","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1917407418,"id_str":"1917407418","name":"biptly","screen_name":"biptly","location":"Moscow, - Russia","description":"\u043c\u043d\u0435 \u043f\u043e\u0445\u0443\u0439","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":854,"friends_count":742,"listed_count":0,"created_at":"Sun - Sep 29 15:42:48 +0000 2013","favourites_count":1296,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1225,"lang":null,"status":{"created_at":"Thu - Nov 11 10:06:05 +0000 2021","id":1458737787235147778,"id_str":"1458737787235147778","text":"Haha - \ud83d\ude02 @steven https:\/\/t.co\/mAQF7iZNqQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steven","name":"Steven - Liu","id":163792579,"id_str":"163792579","indices":[7,14]}],"urls":[{"url":"https:\/\/t.co\/mAQF7iZNqQ","expanded_url":"https:\/\/twitter.com\/forbesmujuru\/status\/1458716843443589122","display_url":"twitter.com\/forbesmujuru\/s\u2026","indices":[15,38]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1458716843443589122,"quoted_status_id_str":"1458716843443589122","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1375398753738317824\/evE2Lg0M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1375398753738317824\/evE2Lg0M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917407418\/1477271552","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":840876478501945344,"id_str":"840876478501945344","name":"Neil - Jarman","screen_name":"Wolvowalrus61","location":"Wolverhampton, England","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":535,"listed_count":0,"created_at":"Sun - Mar 12 10:45:49 +0000 2017","favourites_count":2014,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":148076942,"id_str":"148076942","name":"Sean - Whelan","screen_name":"wheeler2010","location":"Dublin, Ireland ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":598,"listed_count":0,"created_at":"Tue - May 25 19:45:09 +0000 2010","favourites_count":204,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477238117425893376\/3x_jNGpE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477238117425893376\/3x_jNGpE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148076942\/1384646360","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":863783848701607941,"id_str":"863783848701607941","name":"ahte - shamul tushar","screen_name":"AhteTushar","location":"Mymensingh, Bangladesh","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":1477,"listed_count":0,"created_at":"Sun - May 14 15:51:32 +0000 2017","favourites_count":1178,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Fri - Sep 18 05:13:39 +0000 2020","id":1306823677845975040,"id_str":"1306823677845975040","text":"#RainyDay - https:\/\/t.co\/mNuO7K6ZEt","truncated":false,"entities":{"hashtags":[{"text":"RainyDay","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1306823485138690048,"id_str":"1306823485138690048","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EiLFCS_UYAAhULh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EiLFCS_UYAAhULh.jpg","url":"https:\/\/t.co\/mNuO7K6ZEt","display_url":"pic.twitter.com\/mNuO7K6ZEt","expanded_url":"https:\/\/twitter.com\/AhteTushar\/status\/1306823677845975040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":792,"h":612,"resize":"fit"},"large":{"w":792,"h":612,"resize":"fit"},"small":{"w":680,"h":525,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1306823485138690048,"id_str":"1306823485138690048","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EiLFCS_UYAAhULh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EiLFCS_UYAAhULh.jpg","url":"https:\/\/t.co\/mNuO7K6ZEt","display_url":"pic.twitter.com\/mNuO7K6ZEt","expanded_url":"https:\/\/twitter.com\/AhteTushar\/status\/1306823677845975040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":792,"h":612,"resize":"fit"},"large":{"w":792,"h":612,"resize":"fit"},"small":{"w":680,"h":525,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017957338320273408\/3xKPM1O7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017957338320273408\/3xKPM1O7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/863783848701607941\/1627844124","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":883658285840302081,"id_str":"883658285840302081","name":"Jorge - Gomez Magenti","screen_name":"jgmagenti","location":"Cambridge, England","description":"PhD - in chemistry. Doing (responsible) Research Impact Evaluation at @AlzResearchUK. - Here to learn about research, politics and social issues. Views my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":203,"friends_count":494,"listed_count":2,"created_at":"Sat - Jul 08 12:05:27 +0000 2017","favourites_count":1886,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":596,"lang":null,"status":{"created_at":"Fri - Mar 25 18:12:22 +0000 2022","id":1507420140899549214,"id_str":"1507420140899549214","text":"RT - @WomeninNeuro_UK: \ud83d\udce3 Please RT:\n\nA new platform to support female - neuroscientists is emerging: WiN UK! \ud83e\udde0\n\nWe\u2019re looking for - enthusiastic\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WomeninNeuro_UK","name":"WiN - UK: Women in Neuroscience UK \ud83e\udde0","id":1486180290204684294,"id_str":"1486180290204684294","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 20:17:55 +0000 2022","id":1505277406491332610,"id_str":"1505277406491332610","text":"\ud83d\udce3 - Please RT:\n\nA new platform to support female neuroscientists is emerging: - WiN UK! \ud83e\udde0\n\nWe\u2019re looking for enthusiast\u2026 https:\/\/t.co\/E5LovAmwrU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/E5LovAmwrU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505277406491332610","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":19,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1362146651192909830\/CbKlq2p7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1362146651192909830\/CbKlq2p7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/883658285840302081\/1557048641","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2492135088,"id_str":"2492135088","name":"Melvin - Cain","screen_name":"CainMelcn","location":"Sacramento, CA","description":"Hard - working in the relentless pursuit of success.....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":326,"friends_count":1017,"listed_count":2,"created_at":"Tue - May 13 00:16:01 +0000 2014","favourites_count":105258,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55729,"lang":null,"status":{"created_at":"Sat - Mar 26 10:39:39 +0000 2022","id":1507668599212630016,"id_str":"1507668599212630016","text":"RT - @CNN: A Florida man has died after crashing his car into an 11-foot alligator - https:\/\/t.co\/pAOWHIX11b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]}],"urls":[{"url":"https:\/\/t.co\/pAOWHIX11b","expanded_url":"https:\/\/cnn.it\/3iFyO8G","display_url":"cnn.it\/3iFyO8G","indices":[81,104]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 10:34:51 +0000 2022","id":1507667388405325826,"id_str":"1507667388405325826","text":"A - Florida man has died after crashing his car into an 11-foot alligator https:\/\/t.co\/pAOWHIX11b","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pAOWHIX11b","expanded_url":"https:\/\/cnn.it\/3iFyO8G","display_url":"cnn.it\/3iFyO8G","indices":[72,95]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":123,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":47,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":243582537,"id_str":"243582537","name":"creativefactory","screen_name":"drahmadmunir","location":"Kuala - Lumpur City, Kuala Lumpu","description":"Publication mood","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":1389,"listed_count":0,"created_at":"Thu - Jan 27 11:00:06 +0000 2011","favourites_count":7409,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4097,"lang":null,"status":{"created_at":"Fri - Sep 17 06:11:14 +0000 2021","id":1438747353939283971,"id_str":"1438747353939283971","text":"Cartoon - image of Jack O''Lantern. https:\/\/t.co\/0LQabh87gI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0LQabh87gI","expanded_url":"https:\/\/publicdomainvectors.org\/","display_url":"publicdomainvectors.org","indices":[33,56]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1244805220581826560\/hgIAnKvC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1244805220581826560\/hgIAnKvC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243582537\/1534245590","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1243671940247760902,"id_str":"1243671940247760902","name":"ch.anwar","screen_name":"chanwar43386934","location":"","description":"Akun - ke4 \u00ae\nAMAR MA''RUF NAHI MUNKAR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1396,"friends_count":4997,"listed_count":0,"created_at":"Fri - Mar 27 22:51:58 +0000 2020","favourites_count":6836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":417,"lang":null,"status":{"created_at":"Fri - Mar 25 00:45:48 +0000 2022","id":1507156761090076676,"id_str":"1507156761090076676","text":"RT - @ShamsiAli2: Jangan salah paham. Saya mendukung vaksin, bahkan booster. Tapi - jgn aturan dibuat hanya ketika ada kaitan dg agama (Islam).\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ShamsiAli2","name":"Imam - Shamsi Ali","id":380347823,"id_str":"380347823","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 11:20:43 +0000 2022","id":1506954156808060929,"id_str":"1506954156808060929","text":"Jangan - salah paham. Saya mendukung vaksin, bahkan booster. Tapi jgn aturan dibuat - hanya ketika ada kaitan dg agama\u2026 https:\/\/t.co\/ZKEVlBUpns","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ZKEVlBUpns","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506954156808060929","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2050,"favorite_count":7787,"favorited":false,"retweeted":false,"lang":"in"},"is_quote_status":false,"retweet_count":2050,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264717618256076801\/FR6kTAn1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264717618256076801\/FR6kTAn1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243671940247760902\/1622974428","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1267778330893443073,"id_str":"1267778330893443073","name":"shokimdk@gmail.com","screen_name":"shokimdk","location":"Accra - Ghana","description":"humble and kind!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2219,"friends_count":4986,"listed_count":3,"created_at":"Tue - Jun 02 11:21:54 +0000 2020","favourites_count":142836,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":214,"lang":null,"status":{"created_at":"Fri - Mar 25 23:55:09 +0000 2022","id":1507506404898361348,"id_str":"1507506404898361348","text":"@KojoLionel - @BongoIdeas You don''t know the rules of the game bro.When you are falling - and the ball hits the hand yo\u2026 https:\/\/t.co\/uN1foVU8ly","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KojoLionel","name":"Kojo - Lionel","id":1332790742427832323,"id_str":"1332790742427832323","indices":[0,11]},{"screen_name":"BongoIdeas","name":"Albert - Nat Hyde","id":3407203995,"id_str":"3407203995","indices":[12,23]}],"urls":[{"url":"https:\/\/t.co\/uN1foVU8ly","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507506404898361348","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507471980895027205,"in_reply_to_status_id_str":"1507471980895027205","in_reply_to_user_id":1332790742427832323,"in_reply_to_user_id_str":"1332790742427832323","in_reply_to_screen_name":"KojoLionel","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408375373193166855\/zsEuxxE6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408375373193166855\/zsEuxxE6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":219747931,"id_str":"219747931","name":"Amr - Allam","screen_name":"A_A_Allam","location":"Cairo, Egypt","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":730,"listed_count":0,"created_at":"Thu - Nov 25 19:18:46 +0000 2010","favourites_count":166,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Mon - Aug 30 09:17:34 +0000 2021","id":1432271266061373440,"id_str":"1432271266061373440","text":"RT - @mrtq4: \u201c \u0639\u0627\u0645\u0644 \u0627\u0644\u0646\u0627\u0633 \u0643\u0645\u0627 - \u062a\u062d\u0628 \u0623\u0646 \u062a\u064f\u0639\u0627\u0645\u0644 \ud83d\udc4c\ud83c\udffb\u2764\ufe0f\u201c\n- - \u0642\u0627\u0639\u062f\u0647 \u062c\u0645\u064a\u0644\u0647 \u062c\u062f\u0627\u064b - https:\/\/t.co\/oo28oddUwk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrtq4","name":"\u0627\u0642\u062a\u0628\u0627\u0633\u0627\u062a - \u0634\u0639\u0631\u064a\u0647 |","id":3642410293,"id_str":"3642410293","indices":[3,9]}],"urls":[],"media":[{"id":1432121872104280069,"id_str":"1432121872104280069","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","url":"https:\/\/t.co\/oo28oddUwk","display_url":"pic.twitter.com\/oo28oddUwk","expanded_url":"https:\/\/twitter.com\/mrtq4\/status\/1432121930568585216\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1432121930568585216,"source_status_id_str":"1432121930568585216","source_user_id":3642410293,"source_user_id_str":"3642410293"}]},"extended_entities":{"media":[{"id":1432121872104280069,"id_str":"1432121872104280069","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","url":"https:\/\/t.co\/oo28oddUwk","display_url":"pic.twitter.com\/oo28oddUwk","expanded_url":"https:\/\/twitter.com\/mrtq4\/status\/1432121930568585216\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"source_status_id":1432121930568585216,"source_status_id_str":"1432121930568585216","source_user_id":3642410293,"source_user_id_str":"3642410293","video_info":{"aspect_ratio":[16,9],"duration_millis":44940,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/pl\/dJV6l4RmY5jtR8-W.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/vid\/480x270\/Jl7VAuEONM4n7iNj.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/vid\/640x360\/-1YCCEKNxsoJRSuk.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Aug 29 23:24:10 +0000 2021","id":1432121930568585216,"id_str":"1432121930568585216","text":"\u201c - \u0639\u0627\u0645\u0644 \u0627\u0644\u0646\u0627\u0633 \u0643\u0645\u0627 - \u062a\u062d\u0628 \u0623\u0646 \u062a\u064f\u0639\u0627\u0645\u0644 \ud83d\udc4c\ud83c\udffb\u2764\ufe0f\u201c\n- - \u0642\u0627\u0639\u062f\u0647 \u062c\u0645\u064a\u0644\u0647 \u062c\u062f\u0627\u064b - https:\/\/t.co\/oo28oddUwk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1432121872104280069,"id_str":"1432121872104280069","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","url":"https:\/\/t.co\/oo28oddUwk","display_url":"pic.twitter.com\/oo28oddUwk","expanded_url":"https:\/\/twitter.com\/mrtq4\/status\/1432121930568585216\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1432121872104280069,"id_str":"1432121872104280069","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1432121872104280069\/pu\/img\/nsJhS07gPGHWKl3t.jpg","url":"https:\/\/t.co\/oo28oddUwk","display_url":"pic.twitter.com\/oo28oddUwk","expanded_url":"https:\/\/twitter.com\/mrtq4\/status\/1432121930568585216\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":44940,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/pl\/dJV6l4RmY5jtR8-W.m3u8?tag=12&container=fmp4"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/vid\/480x270\/Jl7VAuEONM4n7iNj.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1432121872104280069\/pu\/vid\/640x360\/-1YCCEKNxsoJRSuk.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":919,"favorite_count":2388,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"is_quote_status":false,"retweet_count":919,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314925766069678081\/xwkWMDcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314925766069678081\/xwkWMDcR_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":762740491259613184,"id_str":"762740491259613184","name":"Ashley","screen_name":"ashleynatoos","location":"Cape - Town, South Africa","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":347,"listed_count":0,"created_at":"Mon - Aug 08 20:01:19 +0000 2016","favourites_count":7032,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":158,"lang":null,"status":{"created_at":"Thu - Mar 24 11:33:29 +0000 2022","id":1506957370047479817,"id_str":"1506957370047479817","text":"RT - @OccupyDemocrats: In this powerful photo, Judge Ketanji Brown Jackson gets - a kiss from her husband after being subjected to a barrage of\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 02:05:19 +0000 2022","id":1506814387826446337,"id_str":"1506814387826446337","text":"In - this powerful photo, Judge Ketanji Brown Jackson gets a kiss from her husband - after being subjected to a barrage\u2026 https:\/\/t.co\/uouxjoSqv9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uouxjoSqv9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506814387826446337","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11373,"favorite_count":46585,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11373,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/762742737267462144\/zWfPj4mE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/762742737267462144\/zWfPj4mE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311897185961746432,"id_str":"1311897185961746432","name":"Khalid - Muhammad","screen_name":"NOIGlobalAffair","location":"Beverly Hills, CA","description":"CEO - of Majestic Chauffeured International \ud83c\udf0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":508,"listed_count":0,"created_at":"Fri - Oct 02 05:14:09 +0000 2020","favourites_count":422,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":289,"lang":null,"status":{"created_at":"Tue - Mar 15 09:30:15 +0000 2022","id":1503664866027966466,"id_str":"1503664866027966466","text":"Good - Morning \u2600\ufe0f https:\/\/t.co\/dgeqJ7CoQz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1503664862370545666,"id_str":"1503664862370545666","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FN4XOb7VQAI3e7J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN4XOb7VQAI3e7J.jpg","url":"https:\/\/t.co\/dgeqJ7CoQz","display_url":"pic.twitter.com\/dgeqJ7CoQz","expanded_url":"https:\/\/twitter.com\/NOIGlobalAffair\/status\/1503664866027966466\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"medium":{"w":1200,"h":1186,"resize":"fit"},"large":{"w":1242,"h":1228,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1503664862370545666,"id_str":"1503664862370545666","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FN4XOb7VQAI3e7J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FN4XOb7VQAI3e7J.jpg","url":"https:\/\/t.co\/dgeqJ7CoQz","display_url":"pic.twitter.com\/dgeqJ7CoQz","expanded_url":"https:\/\/twitter.com\/NOIGlobalAffair\/status\/1503664866027966466\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"medium":{"w":1200,"h":1186,"resize":"fit"},"large":{"w":1242,"h":1228,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352764342299553793\/DF2YL7F0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352764342299553793\/DF2YL7F0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311897185961746432\/1627454449","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":908791908230684673,"id_str":"908791908230684673","name":"victor - Jonathan","screen_name":"Victorjkeyz","location":"","description":"A musical - addict song writer and keyboardist, academician","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":771,"listed_count":1,"created_at":"Fri - Sep 15 20:37:30 +0000 2017","favourites_count":60,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Mon - Mar 21 11:53:09 +0000 2022","id":1505875153984671750,"id_str":"1505875153984671750","text":"@IAMJHUD - How I love this lady","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAMJHUD","name":"Jennifer - Hudson","id":33990291,"id_str":"33990291","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505578508692697088,"in_reply_to_status_id_str":"1505578508692697088","in_reply_to_user_id":33990291,"in_reply_to_user_id_str":"33990291","in_reply_to_screen_name":"IAMJHUD","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310562696941760515\/KhzAIXT0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310562696941760515\/KhzAIXT0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":98672218,"id_str":"98672218","name":"Amha - Bulcha","screen_name":"zewdie1","location":"Boynton Beach, Fl","description":"Watch - your thoughts, become your words; watch your words, become your actions; - watch your actions, become your habits; watch your habits, become your destiny.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":109,"friends_count":4822,"listed_count":0,"created_at":"Tue - Dec 22 16:45:52 +0000 2009","favourites_count":3911,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216043576368328704\/Den58Yv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216043576368328704\/Den58Yv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98672218\/1605657682","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293417367523880960,"id_str":"1293417367523880960","name":"jalexelle","screen_name":"jalexelle1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":58,"listed_count":0,"created_at":"Wed - Aug 12 05:21:58 +0000 2020","favourites_count":3426,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":526,"lang":null,"status":{"created_at":"Fri - Mar 25 04:53:49 +0000 2022","id":1507219177173491714,"id_str":"1507219177173491714","text":"RT - @donlemon: Renowned @chefjoseandres is feeding millions of refugees fleeing - #Ukraine. Hear his story from the ground tonight at 10 PM ET\u2026","truncated":false,"entities":{"hashtags":[{"text":"Ukraine","indices":[79,87]}],"symbols":[],"user_mentions":[{"screen_name":"donlemon","name":"Don - Lemon","id":16051471,"id_str":"16051471","indices":[3,12]},{"screen_name":"chefjoseandres","name":"Jos\u00e9 - Andr\u00e9s","id":73206956,"id_str":"73206956","indices":[23,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 01:33:45 +0000 2022","id":1507168827662082058,"id_str":"1507168827662082058","text":"Renowned - @chefjoseandres is feeding millions of refugees fleeing #Ukraine. Hear his - story from the ground tonight a\u2026 https:\/\/t.co\/BMOSnnYfuT","truncated":true,"entities":{"hashtags":[{"text":"Ukraine","indices":[65,73]}],"symbols":[],"user_mentions":[{"screen_name":"chefjoseandres","name":"Jos\u00e9 - Andr\u00e9s","id":73206956,"id_str":"73206956","indices":[9,24]}],"urls":[{"url":"https:\/\/t.co\/BMOSnnYfuT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507168827662082058","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":1308,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":62,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293417901412646913\/hXmajidl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293417901412646913\/hXmajidl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1198312637282607109,"id_str":"1198312637282607109","name":"Ba\u015fak - B\u00fcy\u00fckk\u00f6\u015fker","screen_name":"BBuyukkosker","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":650,"listed_count":0,"created_at":"Sat - Nov 23 18:49:42 +0000 2019","favourites_count":2186,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21882069,"id_str":"21882069","name":"Charmaine - CSingh","screen_name":"Charmcroll","location":"Maryland, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":325,"listed_count":0,"created_at":"Wed - Feb 25 16:19:03 +0000 2009","favourites_count":115,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168039683391139840\/sERQzwBV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168039683391139840\/sERQzwBV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1274248108386418690,"id_str":"1274248108386418690","name":"Antony - Mwai","screen_name":"AntonyM15282586","location":"","description":"a wonderful - man","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":415,"friends_count":3625,"listed_count":0,"created_at":"Sat - Jun 20 07:50:35 +0000 2020","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Tue - Nov 17 11:28:41 +0000 2020","id":1328661331747205121,"id_str":"1328661331747205121","text":"@emjhayacosta_ - have how are you","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":957239860665831424,"in_reply_to_user_id_str":"957239860665831424","in_reply_to_screen_name":"mylajoy_acosta","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1274308870249353223\/_fEuCeqQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1274308870249353223\/_fEuCeqQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":924021569608810497,"id_str":"924021569608810497","name":"Jennifer - Wooley","screen_name":"jennifer_wooley","location":"Reedsport, OR","description":"What - a wonderful thought it is that some of the best days of our lives haven\u2019t - happened yet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":1824,"listed_count":0,"created_at":"Fri - Oct 27 21:14:44 +0000 2017","favourites_count":591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Tue - Nov 02 06:41:21 +0000 2021","id":1455424775203917830,"id_str":"1455424775203917830","text":"#voicecomebackhailey","truncated":false,"entities":{"hashtags":[{"text":"voicecomebackhailey","indices":[0,20]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924037206955585537\/ytyvEzlf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924037206955585537\/ytyvEzlf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/924021569608810497\/1509142361","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1129867039382937600,"id_str":"1129867039382937600","name":"Diana - Ingrid","screen_name":"DianaIngrid18","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":569,"listed_count":0,"created_at":"Sat - May 18 21:51:08 +0000 2019","favourites_count":4496,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Tue - Feb 16 06:29:43 +0000 2021","id":1361563390536257536,"id_str":"1361563390536257536","text":"@KayeEllen17 - I am sending my love and prayers from Cairo, Egypt.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KayeEllen17","name":"THIS - IS NOT KAYE!!","id":1371985222384902144,"id_str":"1371985222384902144","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1361518230741819394,"in_reply_to_status_id_str":"1361518230741819394","in_reply_to_user_id":956266072440635392,"in_reply_to_user_id_str":"956266072440635392","in_reply_to_screen_name":"KayeSteinsapir","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2967315873,"id_str":"2967315873","name":"Michele - Almeida","screen_name":"AlmeidaQuill325","location":"Massachusetts, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":355,"listed_count":0,"created_at":"Thu - Jan 08 06:33:04 +0000 2015","favourites_count":39383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6216,"lang":null,"status":{"created_at":"Sat - Mar 26 03:56:11 +0000 2022","id":1507567062146760712,"id_str":"1507567062146760712","text":"RT - @dkcsh1: @PaulCogan @colonelclark I\u2019m in shock and awe! Who would have - thought that republicons were liars! Glad the American Bar Asso\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dkcsh1","name":"Diana - H","id":839251735583449088,"id_str":"839251735583449088","indices":[3,10]},{"screen_name":"PaulCogan","name":"Paul - Cogan","id":110194870,"id_str":"110194870","indices":[12,22]},{"screen_name":"colonelclark","name":"Resident - of the Pale Blue Dot!","id":374004664,"id_str":"374004664","indices":[23,36]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 18:02:14 +0000 2022","id":1507417587834970119,"id_str":"1507417587834970119","text":"@PaulCogan - @colonelclark I\u2019m in shock and awe! Who would have thought that republicons - were liars! Glad the Ameri\u2026 https:\/\/t.co\/xrDg4AkOVE","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulCogan","name":"Paul - Cogan","id":110194870,"id_str":"110194870","indices":[0,10]},{"screen_name":"colonelclark","name":"Resident - of the Pale Blue Dot!","id":374004664,"id_str":"374004664","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/xrDg4AkOVE","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507417587834970119","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507388317150683145,"in_reply_to_status_id_str":"1507388317150683145","in_reply_to_user_id":110194870,"in_reply_to_user_id_str":"110194870","in_reply_to_screen_name":"PaulCogan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":660,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":62,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1376947002521616391\/YkurbGV7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1376947002521616391\/YkurbGV7_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2291978179,"id_str":"2291978179","name":"Terri - Thibado","screen_name":"TThibado","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":1296,"listed_count":1,"created_at":"Wed - Jan 15 01:45:05 +0000 2014","favourites_count":3120,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":472,"lang":null,"status":{"created_at":"Mon - Mar 14 13:55:48 +0000 2022","id":1503369305467101190,"id_str":"1503369305467101190","text":"@PopCrave - \ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PopCrave","name":"Pop - Crave","id":4429003533,"id_str":"4429003533","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1502537123265716224,"in_reply_to_status_id_str":"1502537123265716224","in_reply_to_user_id":4429003533,"in_reply_to_user_id_str":"4429003533","in_reply_to_screen_name":"PopCrave","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1005836020556947460\/-Pvlyg3B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1005836020556947460\/-Pvlyg3B_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":981497589156712448,"id_str":"981497589156712448","name":"Stylish - Digital Agency","screen_name":"stylish_agency","location":"Cape Town, South - Africa","description":"\ud83d\ude01","url":"https:\/\/t.co\/NI2vD8yU1i","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NI2vD8yU1i","expanded_url":"http:\/\/www.stylishdigitalagency.com","display_url":"stylishdigitalagency.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":247,"friends_count":1693,"listed_count":0,"created_at":"Wed - Apr 04 11:43:55 +0000 2018","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Sat - Dec 25 14:06:34 +0000 2021","id":1474743372279656448,"id_str":"1474743372279656448","text":"Joyeux - Noel et Bonne Ann\u00e9e 2022 https:\/\/t.co\/pMXkxCdVBx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1474743245078937604,"id_str":"1474743245078937604","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FHdXKvnWQAQPEqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHdXKvnWQAQPEqT.jpg","url":"https:\/\/t.co\/pMXkxCdVBx","display_url":"pic.twitter.com\/pMXkxCdVBx","expanded_url":"https:\/\/twitter.com\/stylish_agency\/status\/1474743372279656448\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1179,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":691,"resize":"fit"},"small":{"w":680,"h":392,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1474743245078937604,"id_str":"1474743245078937604","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/FHdXKvnWQAQPEqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHdXKvnWQAQPEqT.jpg","url":"https:\/\/t.co\/pMXkxCdVBx","display_url":"pic.twitter.com\/pMXkxCdVBx","expanded_url":"https:\/\/twitter.com\/stylish_agency\/status\/1474743372279656448\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1179,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":691,"resize":"fit"},"small":{"w":680,"h":392,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"fr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239699141632106502\/hlovaWci_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239699141632106502\/hlovaWci_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/981497589156712448\/1584402207","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1245651326370902016,"id_str":"1245651326370902016","name":"Aijaz - khoso","screen_name":"IjazBal09751567","location":"Kazi Ahmed Sindh","description":"Member - of Central Community\n @SSCSindh | Students\n Of Philosophy @USindh | Gmist - | Writer","url":"https:\/\/t.co\/I3VlGaC7XO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/I3VlGaC7XO","expanded_url":"https:\/\/www.facebook.com\/profile.php?id=100008860328521","display_url":"facebook.com\/profile.php?id\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":358,"friends_count":243,"listed_count":0,"created_at":"Thu - Apr 02 09:56:52 +0000 2020","favourites_count":1527,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1989,"lang":null,"status":{"created_at":"Fri - Mar 25 15:05:00 +0000 2022","id":1507372988508815362,"id_str":"1507372988508815362","text":"\ud83d\ude02 - https:\/\/t.co\/apPQvOGNYO","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/apPQvOGNYO","expanded_url":"https:\/\/twitter.com\/JAMunghani\/status\/1507018606776827904","display_url":"twitter.com\/JAMunghani\/sta\u2026","indices":[2,25]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507018606776827904,"quoted_status_id_str":"1507018606776827904","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502900517688729602\/hugEtK1M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502900517688729602\/hugEtK1M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245651326370902016\/1636266252","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4172917041,"id_str":"4172917041","name":"Nessa","screen_name":"vnesshoney","location":"","description":"In - life there\u2019s people who genuinely cares ...... while on the other hand there\u2019s - some of them pushes you in the wrong direction with a straight face.","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":680,"listed_count":0,"created_at":"Thu - Nov 12 17:54:42 +0000 2015","favourites_count":26669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7754,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/664865234566389760\/wHjtVwuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/664865234566389760\/wHjtVwuQ_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1255887964833558533,"id_str":"1255887964833558533","name":"Alfred - Oluwagbemiga","screen_name":"AlfredOluwagbe4","location":"","description":"I - am a cool headed and easy going fellow. Give me a trial","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":372,"listed_count":0,"created_at":"Thu - Apr 30 15:53:41 +0000 2020","favourites_count":889,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":68,"lang":null,"status":{"created_at":"Fri - Oct 30 07:19:32 +0000 2020","id":1322075648190566401,"id_str":"1322075648190566401","text":"@TONTOLET - #SparkleApp if I''m fortunate to be credited, I will use it to pay my six - month house rent that has been d\u2026 https:\/\/t.co\/A9j8l5PBYw","truncated":true,"entities":{"hashtags":[{"text":"SparkleApp","indices":[10,21]}],"symbols":[],"user_mentions":[{"screen_name":"TONTOLET","name":"AMB. - KING TONTO","id":102117124,"id_str":"102117124","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/A9j8l5PBYw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1322075648190566401","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1322065167509848064,"in_reply_to_status_id_str":"1322065167509848064","in_reply_to_user_id":102117124,"in_reply_to_user_id_str":"102117124","in_reply_to_screen_name":"TONTOLET","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255888792172576768\/GcVzLZd0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255888792172576768\/GcVzLZd0_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1180863137735757826,"id_str":"1180863137735757826","name":"allyroooo98","screen_name":"allyroooo98","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":123,"listed_count":0,"created_at":"Sun - Oct 06 15:11:39 +0000 2019","favourites_count":660,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":41,"lang":null,"status":{"created_at":"Wed - Mar 23 22:19:53 +0000 2022","id":1506757651782381585,"id_str":"1506757651782381585","text":"@SenTedCruz - She did answer. You didn\u2019t like the answer.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SenTedCruz","name":"Senator - Ted Cruz","id":1074480192,"id_str":"1074480192","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506751904491134981,"in_reply_to_status_id_str":"1506751904491134981","in_reply_to_user_id":1074480192,"in_reply_to_user_id_str":"1074480192","in_reply_to_screen_name":"SenTedCruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1180863417667719168\/YeMyDNQE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1180863417667719168\/YeMyDNQE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4173395909,"id_str":"4173395909","name":"Olusegun - Isola","screen_name":"beldicosegun33","location":"Lagos, Nigeria","description":"I - focus on making life easy and enjoyable for others.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1338,"listed_count":0,"created_at":"Thu - Nov 12 19:12:44 +0000 2015","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":59,"lang":null,"status":{"created_at":"Wed - Apr 07 13:41:22 +0000 2021","id":1379791410497523714,"id_str":"1379791410497523714","text":"@Spectranet_NG - Which internet method do I need to connect my CCTV DVR","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Spectranet_NG","name":"SPECTRANET - LIMITED\u00ae","id":1901265578,"id_str":"1901265578","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1283774855171710977,"in_reply_to_status_id_str":"1283774855171710977","in_reply_to_user_id":1901265578,"in_reply_to_user_id_str":"1901265578","in_reply_to_screen_name":"Spectranet_NG","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022853757724504065\/WeQ_u4BL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022853757724504065\/WeQ_u4BL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4173395909\/1532702311","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1064157856461713410,"id_str":"1064157856461713410","name":"Agatha","screen_name":"Agathabossy19","location":"Thika, - Kenya","description":"DO WHAT MAKES YOU HAPPY","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":560,"friends_count":982,"listed_count":0,"created_at":"Sun - Nov 18 14:06:18 +0000 2018","favourites_count":1564,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":61,"lang":null,"status":{"created_at":"Mon - Sep 07 13:36:34 +0000 2020","id":1302963975353761792,"id_str":"1302963975353761792","text":"@black_bhoy_ - \ud83d\udc0d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"black_bhoy_","name":"MAKANAKI","id":1092349647094534144,"id_str":"1092349647094534144","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1302881351109091328,"in_reply_to_status_id_str":"1302881351109091328","in_reply_to_user_id":1092349647094534144,"in_reply_to_user_id_str":"1092349647094534144","in_reply_to_screen_name":"black_bhoy_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1217694052587646977\/c5RdtvVY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1217694052587646977\/c5RdtvVY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1064157856461713410\/1579155903","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1300646993841262592,"id_str":"1300646993841262592","name":"Arveen - Vinzant","screen_name":"arveen_vinzant","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":27,"listed_count":0,"created_at":"Tue - Sep 01 04:10:07 +0000 2020","favourites_count":42,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":112,"lang":null,"status":{"created_at":"Sun - Apr 11 20:39:52 +0000 2021","id":1381346280350310404,"id_str":"1381346280350310404","text":"We - will never get rid of the virus as long as people are let in our country at - the border so why should we be vaccinated","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1262840310230667272,"id_str":"1262840310230667272","name":"Mwambu","screen_name":"a_mwambu","location":"Uganda","description":"Stoic - | Liberal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":134,"listed_count":0,"created_at":"Tue - May 19 20:19:43 +0000 2020","favourites_count":552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82,"lang":null,"status":{"created_at":"Fri - Mar 18 16:22:11 +0000 2022","id":1504855696805924874,"id_str":"1504855696805924874","text":"RT - @KhoaVuUmn: 1st year PhD student searching for research idea be like https:\/\/t.co\/LOvwfRaXc5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KhoaVuUmn","name":"Khoa - Vu","id":926299277588123649,"id_str":"926299277588123649","indices":[3,13]}],"urls":[],"media":[{"id":1504600560800272385,"id_str":"1504600560800272385","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","url":"https:\/\/t.co\/LOvwfRaXc5","display_url":"pic.twitter.com\/LOvwfRaXc5","expanded_url":"https:\/\/twitter.com\/KhoaVuUmn\/status\/1504600640617558021\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1504600640617558021,"source_status_id_str":"1504600640617558021","source_user_id":926299277588123649,"source_user_id_str":"926299277588123649"}]},"extended_entities":{"media":[{"id":1504600560800272385,"id_str":"1504600560800272385","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","url":"https:\/\/t.co\/LOvwfRaXc5","display_url":"pic.twitter.com\/LOvwfRaXc5","expanded_url":"https:\/\/twitter.com\/KhoaVuUmn\/status\/1504600640617558021\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1504600640617558021,"source_status_id_str":"1504600640617558021","source_user_id":926299277588123649,"source_user_id_str":"926299277588123649","video_info":{"aspect_ratio":[9,16],"duration_millis":23591,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/576x1024\/BSM01gIJhf9Fb9Jd.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/480x852\/JyiLP3Bj_N5lnwV3.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/320x568\/wBFKbP0ZBtF7jhm7.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/pl\/XDU9l_teK35OliD9.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 23:28:41 +0000 2022","id":1504600640617558021,"id_str":"1504600640617558021","text":"1st - year PhD student searching for research idea be like https:\/\/t.co\/LOvwfRaXc5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1504600560800272385,"id_str":"1504600560800272385","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","url":"https:\/\/t.co\/LOvwfRaXc5","display_url":"pic.twitter.com\/LOvwfRaXc5","expanded_url":"https:\/\/twitter.com\/KhoaVuUmn\/status\/1504600640617558021\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504600560800272385,"id_str":"1504600560800272385","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1504600560800272385\/pu\/img\/r6PIXlI6EyGlRMfX.jpg","url":"https:\/\/t.co\/LOvwfRaXc5","display_url":"pic.twitter.com\/LOvwfRaXc5","expanded_url":"https:\/\/twitter.com\/KhoaVuUmn\/status\/1504600640617558021\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":23591,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/576x1024\/BSM01gIJhf9Fb9Jd.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/480x852\/JyiLP3Bj_N5lnwV3.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/vid\/320x568\/wBFKbP0ZBtF7jhm7.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1504600560800272385\/pu\/pl\/XDU9l_teK35OliD9.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":214,"favorite_count":2040,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":214,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497572475345018886\/-EmIhg9v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497572475345018886\/-EmIhg9v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1262840310230667272\/1607463441","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796821021097660416,"id_str":"796821021097660416","name":"Stephanie - J","screen_name":"stephdjacobson","location":"San Marcos, CA","description":"Acute - care speech-language pathologist","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":19,"friends_count":1261,"listed_count":0,"created_at":"Thu - Nov 10 21:05:10 +0000 2016","favourites_count":4895,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/924272178912051200\/H8mBqeAJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/924272178912051200\/H8mBqeAJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796821021097660416\/1494663265","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":481623208,"id_str":"481623208","name":"Saxon - Slade","screen_name":"SaxonSlade","location":"","description":"I have the - mysterious power to cloud men''s minds.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1521,"friends_count":4290,"listed_count":3,"created_at":"Fri - Feb 03 00:22:42 +0000 2012","favourites_count":1440,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9222,"lang":null,"status":{"created_at":"Sat - Mar 19 18:11:34 +0000 2022","id":1505245610915545106,"id_str":"1505245610915545106","text":"@tedcruz - @robertthedeuce Every word? What he said about your wife has been proven true? - Man, Ted....","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[0,8]},{"screen_name":"robertthedeuce","name":"Rob","id":221034430,"id_str":"221034430","indices":[9,24]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504892537181401088,"in_reply_to_status_id_str":"1504892537181401088","in_reply_to_user_id":23022687,"in_reply_to_user_id_str":"23022687","in_reply_to_screen_name":"tedcruz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1087858133022765057\/vu11SvRm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1087858133022765057\/vu11SvRm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481623208\/1606178542","profile_link_color":"000000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":827595613160214528,"id_str":"827595613160214528","name":"Laith - M.Al-Hajiat","screen_name":"Laith75692644","location":"Baghdad","description":"General - Manager of Arab well logging company belong to Organizations of Arab countries - for exporting oil","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":125,"listed_count":0,"created_at":"Fri - Feb 03 19:12:24 +0000 2017","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Wed - Jan 13 10:20:44 +0000 2021","id":1349300338407460865,"id_str":"1349300338407460865","text":"@AlarabyTV - 3","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlarabyTV","name":"\u0627\u0644\u062a\u0644\u0641\u0632\u064a\u0648\u0646 - \u0627\u0644\u0639\u0631\u0628\u064a","id":2443666806,"id_str":"2443666806","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1349251692034977792,"in_reply_to_status_id_str":"1349251692034977792","in_reply_to_user_id":2443666806,"in_reply_to_user_id_str":"2443666806","in_reply_to_screen_name":"AlarabyTV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/827623733129011200\/lMeuposN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/827623733129011200\/lMeuposN_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":159502860,"id_str":"159502860","name":"Katie","screen_name":"ktcalks","location":"Baltimore, - MD","description":"artist; retired photography teacher at Patapsco High School - and Center for the Arts, Baltimore County","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":35,"friends_count":960,"listed_count":0,"created_at":"Fri - Jun 25 15:16:30 +0000 2010","favourites_count":1683,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":211,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229491857\/photoofme_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229491857\/photoofme_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1002356721677946880,"id_str":"1002356721677946880","name":"Liccoln80","screen_name":"liccoln80","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":526,"listed_count":0,"created_at":"Fri - Jun 01 01:10:40 +0000 2018","favourites_count":2181,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Jan 24 08:06:30 +0000 2020","id":1220618865404674049,"id_str":"1220618865404674049","text":"RT - @RepAdamSchiff: Donald Trump must be convicted and removed from office.\n\nBecause - he will always choose his own personal interest over ou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepAdamSchiff","name":"Adam - Schiff","id":29501253,"id_str":"29501253","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Jan 24 04:10:06 +0000 2020","id":1220559375938609152,"id_str":"1220559375938609152","text":"Donald - Trump must be convicted and removed from office.\n\nBecause he will always - choose his own personal interest ov\u2026 https:\/\/t.co\/fg1VHrLcS5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fg1VHrLcS5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1220559375938609152","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69742,"favorite_count":220184,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":69742,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":877950937859600385,"id_str":"877950937859600385","name":"William - boyle","screen_name":"William06265998","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":190,"listed_count":0,"created_at":"Thu - Jun 22 18:06:29 +0000 2017","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306969813839998977,"id_str":"1306969813839998977","name":"Pastor - Chibuikem Joshua","screen_name":"ChibuikemPastor","location":"","description":"Making - heaven by all means","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":401,"listed_count":0,"created_at":"Fri - Sep 18 14:55:10 +0000 2020","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18,"lang":null,"status":{"created_at":"Tue - Apr 06 05:15:52 +0000 2021","id":1379301811060899842,"id_str":"1379301811060899842","text":"@APCUKingdom - @NGRPresident @MBuhari @OfficialAPCNg @apcyouthomoodua @apcghanachapter @GarShehu - @IsmaeelAhmedB\u2026 https:\/\/t.co\/paj3fMvHpI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"APCUKingdom","name":"APC - United Kingdom","id":962213876,"id_str":"962213876","indices":[0,12]},{"screen_name":"NGRPresident","name":"Presidency - Nigeria","id":2964950313,"id_str":"2964950313","indices":[13,26]},{"screen_name":"MBuhari","name":"Muhammadu - Buhari","id":2936714848,"id_str":"2936714848","indices":[27,35]},{"screen_name":"OfficialAPCNg","name":"APC - Nigeria","id":981286914811682817,"id_str":"981286914811682817","indices":[36,50]},{"screen_name":"apcyouthomoodua","name":"APCYF - South West","id":1695778105,"id_str":"1695778105","indices":[51,67]},{"screen_name":"apcghanachapter","name":"APC - GHANA CHAPTER \ud83c\uddf3\ud83c\uddec\ud83c\uddec\ud83c\udded","id":2383776464,"id_str":"2383776464","indices":[68,84]},{"screen_name":"GarShehu","name":"Garba - Shehu","id":3198193409,"id_str":"3198193409","indices":[85,94]},{"screen_name":"IsmaeelAhmedB","name":"\ud835\udc70\ud835\udc94\ud835\udc8e\ud835\udc82\ud835\udc86\ud835\udc86\ud835\udc8d","id":219915520,"id_str":"219915520","indices":[95,109]}],"urls":[{"url":"https:\/\/t.co\/paj3fMvHpI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1379301811060899842","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1379163180816072717,"in_reply_to_status_id_str":"1379163180816072717","in_reply_to_user_id":962213876,"in_reply_to_user_id_str":"962213876","in_reply_to_screen_name":"APCUKingdom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306970662955888640\/qwHpN6vv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306970662955888640\/qwHpN6vv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1135266224961540097,"id_str":"1135266224961540097","name":"martina - vs. the world","screen_name":"walmartina","location":"south phx","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":96,"friends_count":211,"listed_count":0,"created_at":"Sun - Jun 02 19:25:35 +0000 2019","favourites_count":14346,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5497,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1431849764304265219\/kkM53Hie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1431849764304265219\/kkM53Hie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135266224961540097\/1625467936","profile_link_color":"904522","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":903178822169780224,"id_str":"903178822169780224","name":"Donald - Rusan","screen_name":"DonaldRusan","location":"","description":"MGM Grand - Detroit Casino Engineer 62yrs.old Democrat liberal Progressive for the people - by the people may true Democracy stand","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1597,"friends_count":4980,"listed_count":2,"created_at":"Thu - Aug 31 08:53:06 +0000 2017","favourites_count":84940,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31121,"lang":null,"status":{"created_at":"Sat - Mar 26 06:17:21 +0000 2022","id":1507602587415162880,"id_str":"1507602587415162880","text":"You''re - beautiful Queen Missy https:\/\/t.co\/cQwNlLU4lZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cQwNlLU4lZ","expanded_url":"https:\/\/twitter.com\/BrightsidesWife\/status\/1506993873956270080","display_url":"twitter.com\/BrightsidesWif\u2026","indices":[29,52]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506993873956270080,"quoted_status_id_str":"1506993873956270080","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1140746782244265984\/3tsCPVsx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1140746782244265984\/3tsCPVsx_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241140775884333058,"id_str":"1241140775884333058","name":"Ghalielbashir07","screen_name":"Don_Ghali7","location":"","description":"Am - simple to Understand","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":169,"listed_count":0,"created_at":"Fri - Mar 20 23:13:52 +0000 2020","favourites_count":108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Feb 05 19:23:46 +0000 2021","id":1357771919861366787,"id_str":"1357771919861366787","text":"Congrats\nTo - me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241141626149515265\/pv45zsmi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241141626149515265\/pv45zsmi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2471824728,"id_str":"2471824728","name":"Natalie - Hoback","screen_name":"goco_u","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":757,"listed_count":0,"created_at":"Thu - May 01 02:51:01 +0000 2014","favourites_count":9450,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39,"lang":null,"status":{"created_at":"Wed - Mar 09 20:16:30 +0000 2022","id":1501653175035518980,"id_str":"1501653175035518980","text":"@DangeRussWilson - You will be missed!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DangeRussWilson","name":"Russell - Wilson","id":512613427,"id_str":"512613427","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501604769592401920,"in_reply_to_status_id_str":"1501604769592401920","in_reply_to_user_id":512613427,"in_reply_to_user_id_str":"512613427","in_reply_to_screen_name":"DangeRussWilson","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":840820206272356352,"id_str":"840820206272356352","name":"Monica","screen_name":"bonnegoods","location":"Los - Angeles","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":534,"listed_count":1,"created_at":"Sun - Mar 12 07:02:13 +0000 2017","favourites_count":10029,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":407,"lang":null,"status":{"created_at":"Sun - Mar 06 04:26:38 +0000 2022","id":1500326966095872002,"id_str":"1500326966095872002","text":"RT - @StephenKing: What kind of dinosaur writes romance novels?\nA Bronte-saurus.\nThank - you, ladies and gentlemen.\nThank you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenKing","name":"Stephen - King","id":2233154425,"id_str":"2233154425","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 01:57:31 +0000 2022","id":1500289441109360648,"id_str":"1500289441109360648","text":"What - kind of dinosaur writes romance novels?\nA Bronte-saurus.\nThank you, ladies - and gentlemen.\nThank you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7628,"favorite_count":95177,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7628,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311026055130480640\/06Uff-pS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311026055130480640\/06Uff-pS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/840820206272356352\/1601407944","profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":380718597,"id_str":"380718597","name":"smolderblue","screen_name":"smolderblue","location":"","description":"Italian - Girl. Jersey Girl. Litigator= Trifecta","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":702,"listed_count":0,"created_at":"Tue - Sep 27 03:28:08 +0000 2011","favourites_count":16854,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2920,"lang":null,"status":{"created_at":"Wed - Mar 23 04:15:21 +0000 2022","id":1506484720514867204,"id_str":"1506484720514867204","text":"RT - @GaryGage13: @MSchroeder58 Know what\u2019s missing from Ketanij Brown Jackson\u2019s - background? A $92k country club balance, $200k in credit car\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GaryGage13","name":"LadyGhost","id":1406359448545902604,"id_str":"1406359448545902604","indices":[3,14]},{"screen_name":"MSchroeder58","name":"Jackrabbit - Slim \ud83e\uddc0","id":1132178602571784195,"id_str":"1132178602571784195","indices":[16,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:12:49 +0000 2022","id":1506378389141217281,"id_str":"1506378389141217281","text":"@MSchroeder58 - Know what\u2019s missing from Ketanij Brown Jackson\u2019s background? A $92k - country club balance, $200k in cr\u2026 https:\/\/t.co\/AXv7HgwTuS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSchroeder58","name":"Jackrabbit - Slim \ud83e\uddc0","id":1132178602571784195,"id_str":"1132178602571784195","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/AXv7HgwTuS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506378389141217281","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506310591903932417,"in_reply_to_status_id_str":"1506310591903932417","in_reply_to_user_id":1132178602571784195,"in_reply_to_user_id_str":"1132178602571784195","in_reply_to_screen_name":"MSchroeder58","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":758,"favorite_count":3795,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":758,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/897299718803423232\/vkR76g-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/897299718803423232\/vkR76g-0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380718597\/1552524287","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":29584789,"id_str":"29584789","name":"David - Pierce \ud83c\udde8\ud83c\uddf4","screen_name":"TheDahv","location":"Seattle, - WA","description":"Technical product manager. Human pillow for @micalinepierce. - Proud papi to Porter, Isaac, & Wesley. \nTweets: software, SEO, startups, - and dad jokes.","url":"https:\/\/t.co\/JNIn0KXFeB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JNIn0KXFeB","expanded_url":"http:\/\/www.thedahv.com","display_url":"thedahv.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":734,"friends_count":458,"listed_count":59,"created_at":"Wed - Apr 08 00:04:01 +0000 2009","favourites_count":1416,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7287,"lang":null,"status":{"created_at":"Sat - Mar 26 02:18:03 +0000 2022","id":1507542367418531842,"id_str":"1507542367418531842","text":"Just - posted a photo https:\/\/t.co\/hvbxP87RKL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hvbxP87RKL","expanded_url":"https:\/\/www.instagram.com\/p\/CbjMwZTLAlf\/?utm_medium=twitter","display_url":"instagram.com\/p\/CbjMwZTLAlf\/\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1358847914064318466\/cerBULpZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1358847914064318466\/cerBULpZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29584789\/1474565464","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3815357534,"id_str":"3815357534","name":"Birdloverrn","screen_name":"KarenYankus","location":"Colorado, - USA","description":"Vaccinated X3, retired RN, Animal lover, earth lover and - educator. Resisting for many, many years. Not that Karen! #Biden\/Harris #Denverzoo - #dmns","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1304,"friends_count":2824,"listed_count":1,"created_at":"Wed - Oct 07 15:00:30 +0000 2015","favourites_count":69064,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6506,"lang":null,"status":{"created_at":"Sun - Mar 20 14:24:48 +0000 2022","id":1505550932720848896,"id_str":"1505550932720848896","text":"@CHIMPSINSOCKS - Donkey.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CHIMPSINSOCKS","name":"Amanda - Abbington","id":1110190452,"id_str":"1110190452","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505239082015801351,"in_reply_to_status_id_str":"1505239082015801351","in_reply_to_user_id":1110190452,"in_reply_to_user_id_str":"1110190452","in_reply_to_screen_name":"CHIMPSINSOCKS","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496118706786684928\/8Tv4lD2Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496118706786684928\/8Tv4lD2Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3815357534\/1645537506","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957281445076123648,"id_str":"957281445076123648","name":"Infinity","screen_name":"jjt1018","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":644,"listed_count":0,"created_at":"Sat - Jan 27 15:57:36 +0000 2018","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Jan 27 16:27:30 +0000 2018","id":957288969489666048,"id_str":"957288969489666048","text":"Just - setting up my Twitter. #myfirstTweet","truncated":false,"entities":{"hashtags":[{"text":"myfirstTweet","indices":[28,41]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/957287860448604161\/RATo7Qrw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/957287860448604161\/RATo7Qrw_normal.jpg","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313860525869207552,"id_str":"1313860525869207552","name":"Binky","screen_name":"MrBinkyboy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":361,"listed_count":0,"created_at":"Wed - Oct 07 15:15:47 +0000 2020","favourites_count":8663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":366,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476391385922215936\/d1XJlsVD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476391385922215936\/d1XJlsVD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":288183944,"id_str":"288183944","name":"Fred - Sternfeld","screen_name":"FredSternfeld","location":"Bainbridge Township, - Ohio","description":"Husband, Father, Grandfather, Theatre Director & Educator, - Broadway Producer, Former Co-Owner & CEO of Research Organics, Inc - a biochemical - manufacturer.","url":"http:\/\/t.co\/d1efbuwzsI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/d1efbuwzsI","expanded_url":"http:\/\/www.fredsternfeld.com\/","display_url":"fredsternfeld.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":544,"friends_count":1142,"listed_count":5,"created_at":"Tue - Apr 26 11:44:54 +0000 2011","favourites_count":16636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":806,"lang":null,"status":{"created_at":"Fri - Mar 25 03:25:46 +0000 2022","id":1507197021534441478,"id_str":"1507197021534441478","text":"@mdnij34 - Absolutely","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mdnij34","name":"Political - Poet","id":558180233,"id_str":"558180233","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507031076627259393,"in_reply_to_status_id_str":"1507031076627259393","in_reply_to_user_id":558180233,"in_reply_to_user_id_str":"558180233","in_reply_to_screen_name":"mdnij34","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326184522\/fredheadshot_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326184522\/fredheadshot_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288183944\/1550679191","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2608322029,"id_str":"2608322029","name":"Larry","screen_name":"blakeaz1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":174,"listed_count":0,"created_at":"Sun - Jul 06 20:44:08 +0000 2014","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Nov 10 21:58:36 +0000 2020","id":1326283141523271681,"id_str":"1326283141523271681","text":"@TheMasters - He won\u2019t forget that shot.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheMasters","name":"The - Masters","id":23505298,"id_str":"23505298","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1326232433373704194,"in_reply_to_status_id_str":"1326232433373704194","in_reply_to_user_id":23505298,"in_reply_to_user_id_str":"23505298","in_reply_to_screen_name":"TheMasters","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":957695451465240576,"id_str":"957695451465240576","name":"Pri - Est","screen_name":"Stephenmondo051","location":"Luanshya ","description":"Managing - director\/ Graphic designer\/ Entrepreneur\/ Owner @ Kodak Designers \ud83d\ude0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1228,"friends_count":3212,"listed_count":0,"created_at":"Sun - Jan 28 19:22:43 +0000 2018","favourites_count":1706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":708,"lang":null,"status":{"created_at":"Fri - Mar 25 07:15:34 +0000 2022","id":1507254852040151079,"id_str":"1507254852040151079","text":"@justinakmulenga - dnt 4get to put that elasticated plastic on it","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"justinakmulenga","name":"Justina\ud83e\udd2d","id":1254872364636155905,"id_str":"1254872364636155905","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507096430565117960,"in_reply_to_status_id_str":"1507096430565117960","in_reply_to_user_id":1254872364636155905,"in_reply_to_user_id_str":"1254872364636155905","in_reply_to_screen_name":"justinakmulenga","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498355981377581062\/B-vKEyg7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498355981377581062\/B-vKEyg7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957695451465240576\/1633612571","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":501459767,"id_str":"501459767","name":"Brenda Braun","screen_name":"brendabraun_","location":"Shoals, - Indiana","description":"I''m interested in politics, animal care, & Yankee - baseball.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":2742,"listed_count":0,"created_at":"Fri - Feb 24 04:54:41 +0000 2012","favourites_count":54176,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1926,"lang":null,"status":{"created_at":"Tue - Mar 22 15:31:39 +0000 2022","id":1506292530085826564,"id_str":"1506292530085826564","text":"RT - @AngelaBelcamino: RETWEET if you loathe Jim Jordan cuz I want to follow you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AngelaBelcamino","name":"Angela - Belcamino","id":1685873604,"id_str":"1685873604","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 23:45:19 +0000 2022","id":1506054379685691398,"id_str":"1506054379685691398","text":"RETWEET - if you loathe Jim Jordan cuz I want to follow you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8764,"favorite_count":16130,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8764,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524689923937275904\/cCwcV0rI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524689923937275904\/cCwcV0rI_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308442297839747072,"id_str":"1308442297839747072","name":"sekhon","screen_name":"sekhon26026829","location":"","description":"\u0a16\u0a47\u0a24\u0a40 - \u0a15\u0a30\u0a2e\u0a3e\u0a02 \u0a38\u0a47\u0a24\u0a40\ud83d\udc4d\ud83c\udffc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":170,"listed_count":0,"created_at":"Tue - Sep 22 16:25:41 +0000 2020","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44,"lang":null,"status":{"created_at":"Wed - Aug 04 15:40:47 +0000 2021","id":1422945619555934209,"id_str":"1422945619555934209","text":"#Panauti - \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[{"text":"Panauti","indices":[0,8]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308442543395225600\/wEYLqbk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308442543395225600\/wEYLqbk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308442297839747072\/1600877541","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2908373928,"id_str":"2908373928","name":"edeh - wisdom","screen_name":"edehwisdom84","location":"Anambra, Nigeria","description":"SIMPLICITY","url":"https:\/\/t.co\/diuUsMXPCa","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/diuUsMXPCa","expanded_url":"https:\/\/www.instagram.com\/obiajuluedeh?r=nametag","display_url":"instagram.com\/obiajuluedeh?r\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1547,"friends_count":2800,"listed_count":8,"created_at":"Sun - Nov 23 18:53:39 +0000 2014","favourites_count":7849,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2414,"lang":null,"status":{"created_at":"Tue - Mar 22 20:26:47 +0000 2022","id":1506366803995410441,"id_str":"1506366803995410441","text":"RT - @kalafrorock: Every Black person should tweet and post #FreeBiafra","truncated":false,"entities":{"hashtags":[{"text":"FreeBiafra","indices":[58,69]}],"symbols":[],"user_mentions":[{"screen_name":"kalafrorock","name":"Kal - Afrorock","id":1320862341840408578,"id_str":"1320862341840408578","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 19:10:42 +0000 2022","id":1506347654502039558,"id_str":"1506347654502039558","text":"Every - Black person should tweet and post #FreeBiafra","truncated":false,"entities":{"hashtags":[{"text":"FreeBiafra","indices":[41,52]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":976,"favorite_count":1072,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":976,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/861018445885952000\/q6jc4mgm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/861018445885952000\/q6jc4mgm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908373928\/1566772622","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310109758205112320,"id_str":"1310109758205112320","name":"Vlado","screen_name":"VladoLoukanov","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":125,"listed_count":0,"created_at":"Sun - Sep 27 06:51:52 +0000 2020","favourites_count":4201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sat - Nov 07 17:15:12 +0000 2020","id":1325124657486262274,"id_str":"1325124657486262274","text":"Thank - you @JoeBiden! https:\/\/t.co\/jXVqVW13bK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe - Biden","id":939091,"id_str":"939091","indices":[10,19]}],"urls":[{"url":"https:\/\/t.co\/jXVqVW13bK","expanded_url":"https:\/\/twitter.com\/VladoLoukanov\/status\/1325123530694955015","display_url":"twitter.com\/VladoLoukanov\/\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1325123530694955015,"quoted_status_id_str":"1325123530694955015","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1306632580599607298,"id_str":"1306632580599607298","name":"James - Pate\ud83d\udc9b","screen_name":"JamesPa6211929","location":"Arkansas, USA","description":"Out - and Proud,married for 26yrs to same sex partner, veteran(army), love my country - and will still give my life for it. out going, fun,loving individual.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":411,"listed_count":0,"created_at":"Thu - Sep 17 16:36:14 +0000 2020","favourites_count":22141,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6300,"lang":null,"status":{"created_at":"Sat - Mar 26 05:40:30 +0000 2022","id":1507593312223510529,"id_str":"1507593312223510529","text":"RT - @donwinslow: Ben Sasse is the type of a guy that wants you to like him while - he abuses you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 23:24:37 +0000 2022","id":1507498719922442243,"id_str":"1507498719922442243","text":"Ben - Sasse is the type of a guy that wants you to like him while he abuses you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2454,"favorite_count":15901,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2454,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310090470991769600\/Iaiga4Ko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310090470991769600\/Iaiga4Ko_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308682052187967488,"id_str":"1308682052187967488","name":"jinjujube","screen_name":"jinjujube","location":"no - \u2764\ufe0f","description":"1.5 gen korean american child of immigrant parents, - student of linguistics and languages, lover of memes (current fav: frogs)","url":"https:\/\/t.co\/pYjUZt9emV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pYjUZt9emV","expanded_url":"https:\/\/blacklivesmatter.carrd.co","display_url":"blacklivesmatter.carrd.co","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":192,"listed_count":0,"created_at":"Wed - Sep 23 08:18:20 +0000 2020","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Wed - Nov 04 06:38:47 +0000 2020","id":1323877333443448833,"id_str":"1323877333443448833","text":"RT - @joshuachenault1: Trump won Ohio and Texas, I\u2019m going to bed. Wake me - up when Biden is president, if he\u2019s not then don\u2019t #ElectionNight\u2026","truncated":false,"entities":{"hashtags":[{"text":"ElectionNight","indices":[124,138]}],"symbols":[],"user_mentions":[{"screen_name":"joshuachenault1","name":"Joshua - Chenault","id":1700029182,"id_str":"1700029182","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Nov 04 05:13:12 +0000 2020","id":1323855797063962626,"id_str":"1323855797063962626","text":"Trump - won Ohio and Texas, I\u2019m going to bed. Wake me up when Biden is president, - if he\u2019s not then don\u2019t\u2026 https:\/\/t.co\/c8d9qCpAfU","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c8d9qCpAfU","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1323855797063962626","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":394,"favorite_count":4128,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":394,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310647083070873602\/ivIWekRd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310647083070873602\/ivIWekRd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1308682052187967488\/1601317590","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1118500136,"id_str":"1118500136","name":"Tita - Evans-Santini","screen_name":"SantiniTita","location":"","description":"Immigrant,US - Citizen,mother,wife, friend,spiritual,spirited, movie buff,TCM, Sinatra, hopeful.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":391,"listed_count":1,"created_at":"Fri - Jan 25 05:31:33 +0000 2013","favourites_count":6394,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2385,"lang":null,"status":{"created_at":"Fri - Mar 25 15:24:00 +0000 2022","id":1507377767775539201,"id_str":"1507377767775539201","text":"RT - @waveshark: @DrOz https:\/\/t.co\/eMhg4T77eP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"waveshark","name":"Mike - Bea","id":299888048,"id_str":"299888048","indices":[3,13]},{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[15,20]}],"urls":[],"media":[{"id":1507062371910504458,"id_str":"1507062371910504458","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","url":"https:\/\/t.co\/eMhg4T77eP","display_url":"pic.twitter.com\/eMhg4T77eP","expanded_url":"https:\/\/twitter.com\/waveshark\/status\/1507062375513419776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":640,"h":1136,"resize":"fit"}},"source_status_id":1507062375513419776,"source_status_id_str":"1507062375513419776","source_user_id":299888048,"source_user_id_str":"299888048"}]},"extended_entities":{"media":[{"id":1507062371910504458,"id_str":"1507062371910504458","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","url":"https:\/\/t.co\/eMhg4T77eP","display_url":"pic.twitter.com\/eMhg4T77eP","expanded_url":"https:\/\/twitter.com\/waveshark\/status\/1507062375513419776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":640,"h":1136,"resize":"fit"}},"source_status_id":1507062375513419776,"source_status_id_str":"1507062375513419776","source_user_id":299888048,"source_user_id_str":"299888048"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 18:30:44 +0000 2022","id":1507062375513419776,"id_str":"1507062375513419776","text":"@DrOz - https:\/\/t.co\/eMhg4T77eP","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]}],"urls":[],"media":[{"id":1507062371910504458,"id_str":"1507062371910504458","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","url":"https:\/\/t.co\/eMhg4T77eP","display_url":"pic.twitter.com\/eMhg4T77eP","expanded_url":"https:\/\/twitter.com\/waveshark\/status\/1507062375513419776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":640,"h":1136,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507062371910504458,"id_str":"1507062371910504458","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOopPhQVUAom_q5.jpg","url":"https:\/\/t.co\/eMhg4T77eP","display_url":"pic.twitter.com\/eMhg4T77eP","expanded_url":"https:\/\/twitter.com\/waveshark\/status\/1507062375513419776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":1136,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":640,"h":1136,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507058117934297096,"in_reply_to_status_id_str":"1507058117934297096","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":140,"favorite_count":617,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":140,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325997851143368704\/cjk2AxZj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325997851143368704\/cjk2AxZj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1118500136\/1591800609","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1044782191601889280,"id_str":"1044782191601889280","name":"toadwatcher","screen_name":"toadwatcher1","location":"","description":"\ud83d\ude80","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":1053,"listed_count":1,"created_at":"Wed - Sep 26 02:54:20 +0000 2018","favourites_count":10369,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3631,"lang":null,"status":{"created_at":"Fri - Mar 25 16:56:04 +0000 2022","id":1507400937546997762,"id_str":"1507400937546997762","text":"@evamcmillan333 - @elonmusk Historically a ''55 Chevy fills that role.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"evamcmillan333","name":"Eva - McMillan","id":1380163392422486017,"id_str":"1380163392422486017","indices":[0,15]},{"screen_name":"elonmusk","name":"Elon - Musk","id":44196397,"id_str":"44196397","indices":[16,25]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507108841422532609,"in_reply_to_status_id_str":"1507108841422532609","in_reply_to_user_id":1380163392422486017,"in_reply_to_user_id_str":"1380163392422486017","in_reply_to_screen_name":"evamcmillan333","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":36716832,"id_str":"36716832","name":"Gloria - Chin (she\/her\/ella) \ud83d\ude37\ud83c\udff3\ufe0f\u200d\ud83c\udf08\ud83d\ude37","screen_name":"GloriaDChin","location":"where - ever the sweets are","description":"Comms @NYCMayor . Former spox @RegionalPlan - , @MayorAdler , @NYCDCA , @NYC_DOT , @NYC_Buildings , @nyphospital. Former - TV News hack, Bx girl.","url":"https:\/\/t.co\/qz54CPUAVG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qz54CPUAVG","expanded_url":"http:\/\/bit.ly\/2PGJ4ya","display_url":"bit.ly\/2PGJ4ya","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":751,"friends_count":705,"listed_count":16,"created_at":"Thu - Apr 30 17:19:51 +0000 2009","favourites_count":11397,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25190,"lang":null,"status":{"created_at":"Thu - Mar 24 15:31:06 +0000 2022","id":1507017168747040787,"id_str":"1507017168747040787","text":"Cosigning - on @sarodriiiguez '' words. Grateful to have worked with @Slimongi over the - years & now just steps away. A\u2026 https:\/\/t.co\/BykboM7psX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"sarodriiiguez","name":"Sara - Rodriguez","id":1238180280172773377,"id_str":"1238180280172773377","indices":[13,27]},{"screen_name":"Slimongi","name":"Shirley - ''Vaxxxed & Totally Relaxed'' Limongi","id":8287382,"id_str":"8287382","indices":[66,75]}],"urls":[{"url":"https:\/\/t.co\/BykboM7psX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507017168747040787","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507012200078012420,"quoted_status_id_str":"1507012200078012420","retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461101291497832458\/Qxgzo_hE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461101291497832458\/Qxgzo_hE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36716832\/1532620427","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298059530299822081,"id_str":"1298059530299822081","name":"LD","screen_name":"Lildoge88","location":"Denver, - CO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":347,"listed_count":0,"created_at":"Tue - Aug 25 00:48:15 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":55763975,"id_str":"55763975","name":"Kikidan","screen_name":"kikidan","location":"","description":"nobody","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":689,"listed_count":1,"created_at":"Sat - Jul 11 05:09:39 +0000 2009","favourites_count":7969,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3080,"lang":null,"status":{"created_at":"Sun - Mar 20 03:12:21 +0000 2022","id":1505381702495084547,"id_str":"1505381702495084547","text":"@LennyDykstra - He\u2019s a very talented artist !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LennyDykstra","name":"Lenny - Dykstra","id":720373269803589632,"id_str":"720373269803589632","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1505381239754211330,"in_reply_to_status_id_str":"1505381239754211330","in_reply_to_user_id":720373269803589632,"in_reply_to_user_id_str":"720373269803589632","in_reply_to_screen_name":"LennyDykstra","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896092301268848641\/Q_dBeNAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896092301268848641\/Q_dBeNAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55763975\/1502480113","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1040126541143973888,"id_str":"1040126541143973888","name":"\u12a5\u1235\u122b\u12a4\u120d - \ud83c\uddea\ud83c\uddf9","screen_name":"israel_mamo","location":"Virginia","description":"Ethiopian - | Pan-Africanist | World Citizen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":434,"listed_count":0,"created_at":"Thu - Sep 13 06:34:26 +0000 2018","favourites_count":17869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2624,"lang":null,"status":{"created_at":"Sat - Mar 26 02:56:44 +0000 2022","id":1507552100703780867,"id_str":"1507552100703780867","text":"RT - @HermelaTV: MONDAY in WASHINGTON DC! Hope you can make it. #nomore","truncated":false,"entities":{"hashtags":[{"text":"nomore","indices":[62,69]}],"symbols":[],"user_mentions":[{"screen_name":"HermelaTV","name":"hermela - aregawi","id":377723508,"id_str":"377723508","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 02:28:25 +0000 2022","id":1507544974233022464,"id_str":"1507544974233022464","text":"MONDAY - in WASHINGTON DC! Hope you can make it. #nomore https:\/\/t.co\/2XbexFPpdF","truncated":false,"entities":{"hashtags":[{"text":"nomore","indices":[47,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2XbexFPpdF","expanded_url":"https:\/\/twitter.com\/hermelatv\/status\/1506440314730426368","display_url":"twitter.com\/hermelatv\/stat\u2026","indices":[55,78]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506440314730426368,"quoted_status_id_str":"1506440314730426368","retweet_count":284,"favorite_count":401,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506440314730426368,"quoted_status_id_str":"1506440314730426368","retweet_count":284,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473636996547493894\/ZFYcu7ij_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473636996547493894\/ZFYcu7ij_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1040126541143973888\/1640177488","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":73187317,"id_str":"73187317","name":"ADAM - PIVNICK","screen_name":"ADAMPIVNICK","location":"TORONTO","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":15,"friends_count":638,"listed_count":0,"created_at":"Thu - Sep 10 18:40:34 +0000 2009","favourites_count":131,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1573138373\/rO0ABXQAXmZ7aHR0cDovL2JldGEuaW1hZ2VzLnRoZWdsb2JlYW5kbWFpbC5jb20vYXJjaGl2ZS8wMTMyNi9XRUItdHZmZWF0dXJlLXdfMTMyNjUwMWNsLTguanBnfWYwZjQ0MHQ_3D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1573138373\/rO0ABXQAXmZ7aHR0cDovL2JldGEuaW1hZ2VzLnRoZWdsb2JlYW5kbWFpbC5jb20vYXJjaGl2ZS8wMTMyNi9XRUItdHZmZWF0dXJlLXdfMTMyNjUwMWNsLTguanBnfWYwZjQ0MHQ_3D_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":78520083,"id_str":"78520083","name":"Kautilya","screen_name":"vmth78","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":968,"listed_count":0,"created_at":"Wed - Sep 30 05:11:05 +0000 2009","favourites_count":946,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":657,"lang":null,"status":{"created_at":"Fri - Mar 25 02:03:15 +0000 2022","id":1507176255111811075,"id_str":"1507176255111811075","text":"@JLozanoA - @bereaguilarv @PartidoMorenaMx No tarda en decepcionarlo Sr.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JLozanoA","name":"\ud835\udc09\ud835\udc1a\ud835\udc2f\ud835\udc22\ud835\udc1e\ud835\udc2b - \ud835\udc0b\ud835\udc28\ud835\udc33\ud835\udc1a\ud835\udc27\ud835\udc28 \ud835\udc00.","id":142004355,"id_str":"142004355","indices":[0,9]},{"screen_name":"bereaguilarv","name":"Bere - Aguilar","id":316622465,"id_str":"316622465","indices":[10,23]},{"screen_name":"PartidoMorenaMx","name":"Morena","id":889466488117235712,"id_str":"889466488117235712","indices":[24,40]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1507150307050070020,"in_reply_to_status_id_str":"1507150307050070020","in_reply_to_user_id":142004355,"in_reply_to_user_id_str":"142004355","in_reply_to_screen_name":"JLozanoA","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396912059342802947\/ndLkTGsJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396912059342802947\/ndLkTGsJ_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45627176,"id_str":"45627176","name":"Ephraim - R.","screen_name":"walkerFL","location":"Florida, USA","description":"Husband, - Dad, Grandfather. Enjoying a peaceful life. Presence. Following Christ. \u2626\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":271,"friends_count":2390,"listed_count":5,"created_at":"Mon - Jun 08 18:06:20 +0000 2009","favourites_count":252,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55,"lang":null,"status":{"created_at":"Wed - Jan 05 15:18:53 +0000 2022","id":1478747841652740101,"id_str":"1478747841652740101","text":"@thompsonb2569 - Yes! No questions about it. All Glory and praise to him, Lord Jesus Christ.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thompsonb2569","name":"Sword\u2694\ufe0f&Torch\ud83d\udd26of - God\ud83e\udd3a\ud83d\udee1\ufe0f\ud83d\udcd6\ud83d\udc1e","id":1036747858215620608,"id_str":"1036747858215620608","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1478665610775121921,"in_reply_to_status_id_str":"1478665610775121921","in_reply_to_user_id":1036747858215620608,"in_reply_to_user_id_str":"1036747858215620608","in_reply_to_screen_name":"thompsonb2569","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468380532589449222\/1cActzW__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468380532589449222\/1cActzW__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45627176\/1459210448","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238122684870995973,"id_str":"1238122684870995973","name":"Adji","screen_name":"Adji92589789","location":"","description":"Compassion, - self-confidence, determination","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":228,"listed_count":0,"created_at":"Thu - Mar 12 15:20:49 +0000 2020","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"status":{"created_at":"Sat - Nov 14 06:15:01 +0000 2020","id":1327495230640230400,"id_str":"1327495230640230400","text":"@abbydphillip - @katierosman I admire you so much!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"abbydphillip","name":"Abby - D. Phillip","id":126722715,"id_str":"126722715","indices":[0,13]},{"screen_name":"katierosman","name":"katie - rosman","id":18083797,"id_str":"18083797","indices":[14,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1327227613006491648,"in_reply_to_status_id_str":"1327227613006491648","in_reply_to_user_id":126722715,"in_reply_to_user_id_str":"126722715","in_reply_to_screen_name":"abbydphillip","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238123117584793600\/Rcg1HjNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238123117584793600\/Rcg1HjNp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":862645158793314304,"id_str":"862645158793314304","name":"DiosEnzo","screen_name":"NadirEnzoDiaz","location":"United - States","description":"Gaming account only \nFaithfully trust me when I say - I''m Jesus Christ son \ud83d\ude4f\u2764 hard to believe, pero \ud83d\ude2a Nadie - sube mi secreto how I was his","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":252,"listed_count":0,"created_at":"Thu - May 11 12:26:47 +0000 2017","favourites_count":378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Sun - Jan 10 20:57:00 +0000 2021","id":1348373298283950090,"id_str":"1348373298283950090","text":"RT - @ZoxbePerfect: \ud83c\udf1fMagic dust cleaning mud Available. Clean those - tiny holes rags cannot penetrate...\ud83d\udc4dAbsorbs dirt and dust even - in the mos\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZoxbePerfect","name":"Zoxbe - Perfect","id":1321013253036634113,"id_str":"1321013253036634113","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 30 14:22:29 +0000 2020","id":1344287746567720960,"id_str":"1344287746567720960","text":"\ud83c\udf1fMagic - dust cleaning mud Available. Clean those tiny holes rags cannot penetrate...\ud83d\udc4dAbsorbs - dirt and dust even in t\u2026 https:\/\/t.co\/YNbowdyQ9l","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YNbowdyQ9l","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1344287746567720960","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8035,"favorite_count":67178,"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"lang":"en"},"is_quote_status":false,"retweet_count":8035,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057720818275368960\/wV8KLCjs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057720818275368960\/wV8KLCjs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862645158793314304\/1593964979","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21916375,"id_str":"21916375","name":"Rebecca - Halpern","screen_name":"Rebecca_Halpern","location":"","description":"director - | writer | producer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":545,"friends_count":758,"listed_count":13,"created_at":"Wed - Feb 25 20:46:54 +0000 2009","favourites_count":2636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3274,"lang":null,"status":{"created_at":"Thu - Mar 17 02:00:49 +0000 2022","id":1504276538866364419,"id_str":"1504276538866364419","text":"Thrilled - to screen Love, Charlie: The Rise and Fall of Chef Charlie Trotter @FloridaFilmFest! - https:\/\/t.co\/jc1eJpx6Yv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FloridaFilmFest","name":"Florida - Film Festival","id":16468758,"id_str":"16468758","indices":[76,92]}],"urls":[{"url":"https:\/\/t.co\/jc1eJpx6Yv","expanded_url":"https:\/\/www.floridafilmfestival.com\/films\/love-charlie-the-rise-and-fall-of-chef-charlie-trotter\/","display_url":"floridafilmfestival.com\/films\/love-cha\u2026","indices":[94,117]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBECED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562015353103220736\/mrr0nhtv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562015353103220736\/mrr0nhtv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21916375\/1633838621","profile_link_color":"AA8B50","profile_sidebar_border_color":"292725","profile_sidebar_fill_color":"F5F7F2","profile_text_color":"163610","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2615514107,"id_str":"2615514107","name":"James - Thomas","screen_name":"jimmyjthomas","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":114,"listed_count":0,"created_at":"Mon - Jun 16 22:55:46 +0000 2014","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Mar 11 16:17:03 +0000 2021","id":1370046117333794816,"id_str":"1370046117333794816","text":"RT - @JohnPalminteri: A HAIL OF A TIME was enjoyed in Santa Barbara tonight. From - the Eastside to the Westside and into the heart of downtown\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JohnPalminteri","name":"John - Palminteri","id":1259979349,"id_str":"1259979349","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 11 07:30:25 +0000 2021","id":1369913587842519040,"id_str":"1369913587842519040","text":"A - HAIL OF A TIME was enjoyed in Santa Barbara tonight. From the Eastside to - the Westside and into the heart of down\u2026 https:\/\/t.co\/Bg4HGxNFRM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Bg4HGxNFRM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1369913587842519040","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":95,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":20,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":18041266,"id_str":"18041266","name":"Ted - Lord","screen_name":"tedlord","location":"Seattle","description":"poet; dad; - philanthropic consultant; more into Pinterest than Twitter","url":"http:\/\/t.co\/CdMsvDXi89","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CdMsvDXi89","expanded_url":"http:\/\/www.philanthropynw.org","display_url":"philanthropynw.org","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":172,"listed_count":7,"created_at":"Thu - Dec 11 04:59:17 +0000 2008","favourites_count":119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Wed - Nov 11 02:29:03 +0000 2020","id":1326351203249254400,"id_str":"1326351203249254400","text":"Lost - Gloves are always pointing somewhere","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614700244450672640\/IAx2Otwu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614700244450672640\/IAx2Otwu_normal.jpg","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1268364779770413056,"id_str":"1268364779770413056","name":"Shauna","screen_name":"Shauna23026146","location":"Ocean - Park, WA","description":"Emergency room RN Works part time animal lover, grandmother - to 4 Democrat union member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":192,"friends_count":914,"listed_count":0,"created_at":"Thu - Jun 04 02:11:57 +0000 2020","favourites_count":41831,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18732,"lang":null,"status":{"created_at":"Wed - Dec 15 06:04:26 +0000 2021","id":1470998162672218114,"id_str":"1470998162672218114","text":"@NathanMackBrown - All members of my family, friends,coworkers and myself are all fully vaccinated. - Mask wearing always.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NathanMackBrown","name":"Nathan - Mackenzie Brown \ud83c\uddfa\ud83c\uddf8 \ud83c\uddfa\ud83c\udde6","id":993137216309383169,"id_str":"993137216309383169","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1470980314340249605,"in_reply_to_status_id_str":"1470980314340249605","in_reply_to_user_id":993137216309383169,"in_reply_to_user_id_str":"993137216309383169","in_reply_to_screen_name":"NathanMackBrown","geo":null,"coordinates":null,"place":{"id":"c48e094c5a8560de","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c48e094c5a8560de.json","place_type":"city","name":"Ocean - Park","full_name":"Ocean Park, WA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-124.059741,46.433773],[-124.028872,46.433773],[-124.028872,46.560505],[-124.059741,46.560505]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1335471741494124544\/vJvFmpjQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1335471741494124544\/vJvFmpjQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268364779770413056\/1600994914","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14718990,"id_str":"14718990","name":"Fronza","screen_name":"fronza","location":"Oregon, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":274,"listed_count":5,"created_at":"Fri - May 09 22:43:35 +0000 2008","favourites_count":746,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4159,"lang":null,"status":{"created_at":"Thu - Feb 03 14:13:30 +0000 2022","id":1489240633168437249,"id_str":"1489240633168437249","text":"@andydiacetis - I thought I had it in 2, but it faked me out https:\/\/t.co\/0MgVZWiFSU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"andydiacetis","name":"Andy - Diacetis","id":22855956,"id_str":"22855956","indices":[0,13]}],"urls":[],"media":[{"id":1489240630408609794,"id_str":"1489240630408609794","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/FKrYdoiVgAIZitd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKrYdoiVgAIZitd.jpg","url":"https:\/\/t.co\/0MgVZWiFSU","display_url":"pic.twitter.com\/0MgVZWiFSU","expanded_url":"https:\/\/twitter.com\/fronza\/status\/1489240633168437249\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":472,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":472,"resize":"fit"},"small":{"w":680,"h":285,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1489240630408609794,"id_str":"1489240630408609794","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/FKrYdoiVgAIZitd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKrYdoiVgAIZitd.jpg","url":"https:\/\/t.co\/0MgVZWiFSU","display_url":"pic.twitter.com\/0MgVZWiFSU","expanded_url":"https:\/\/twitter.com\/fronza\/status\/1489240633168437249\/photo\/1","type":"photo","sizes":{"medium":{"w":1125,"h":472,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":472,"resize":"fit"},"small":{"w":680,"h":285,"resize":"fit"}}}]},"source":"\u003ca + string: '{"users":[{"id":2784003177,"id_str":"2784003177","name":"Raffaele La + Ciura","screen_name":"LaCiuraRaffaele","location":"","description":"Socializza + senza stressare il prossimo tuo!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2710,"friends_count":1921,"listed_count":4,"created_at":"Thu + Sep 25 18:21:33 +0000 2014","favourites_count":241620,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":163888,"lang":null,"status":{"created_at":"Wed + Jul 20 14:43:06 +0000 2022","id":1549766854826233861,"id_str":"1549766854826233861","text":"RT + @DeShindig: Vedo che molti non hanno capito che il regista dell''operazione + crisi governo Draghi non \u00e8 pi\u00f9 Conte (poverino, non saprebbe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeShindig","name":"Costantino + De Blasi \ud83c\uddfa\ud83c\udde6\ud83c\uddea\ud83c\uddfa","id":294236862,"id_str":"294236862","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jul 20 14:40:31 +0000 2022","id":1549766206265204736,"id_str":"1549766206265204736","text":"Vedo + che molti non hanno capito che il regista dell''operazione crisi governo Draghi + non \u00e8 pi\u00f9 Conte (poverino, non\u2026 https:\/\/t.co\/FZgxQN3Dgh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FZgxQN3Dgh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549766206265204736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":301,"favorited":false,"retweeted":false,"lang":"it"},"is_quote_status":false,"retweet_count":37,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"it"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050659632794886147\/PLfHe8cv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050659632794886147\/PLfHe8cv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2784003177\/1514462168","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1546659588023394304,"id_str":"1546659588023394304","name":"HS + SPORTS SANCHEZ","screen_name":"sports_sanchez","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":98,"friends_count":2208,"listed_count":0,"created_at":"Tue + Jul 12 00:56:12 +0000 2022","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4717,"lang":null,"status":{"created_at":"Wed + Jul 20 07:56:22 +0000 2022","id":1549664497702404097,"id_str":"1549664497702404097","text":"RT + @BenRaby31: Wonder how Davey Martinez got to LA. Davey is obviously not a + player, but there should be some universal arrangement league-\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BenRaby31","name":"Ben + Raby","id":101617189,"id_str":"101617189","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jul 20 03:01:06 +0000 2022","id":1549590191672885251,"id_str":"1549590191672885251","text":"Wonder + how Davey Martinez got to LA. Davey is obviously not a player, but there should + be some universal arrangemen\u2026 https:\/\/t.co\/SePdsmTAn5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SePdsmTAn5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549590191672885251","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1489236068637581314,"in_reply_to_status_id_str":"1489236068637581314","in_reply_to_user_id":22855956,"in_reply_to_user_id_str":"22855956","in_reply_to_screen_name":"andydiacetis","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291251611851829248\/rxL0YQD0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291251611851829248\/rxL0YQD0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14718990\/1596693391","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":704456419,"id_str":"704456419","name":"Stu - Laperle","screen_name":"stulaperle","location":"New York, NY","description":"Segment - Producer, The News with Shepard Smith on @CNBC","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":707,"listed_count":0,"created_at":"Thu - Jul 19 05:52:54 +0000 2012","favourites_count":515,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":389,"lang":null,"status":{"created_at":"Fri - Mar 25 02:46:13 +0000 2022","id":1507187066274263043,"id_str":"1507187066274263043","text":"RT - @thenewsoncnbc: \"He''s always been a hard worker in the gym, tough, gritty - kid. His personality is -- that''s just Dougie. Dougie is a lit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thenewsoncnbc","name":"The - News with Shepard Smith","id":366629301,"id_str":"366629301","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:11:33 +0000 2022","id":1507148143011504128,"id_str":"1507148143011504128","text":"\"He''s - always been a hard worker in the gym, tough, gritty kid. His personality is - -- that''s just Dougie. Dougie is\u2026 https:\/\/t.co\/YBZwEcuEJ5","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YBZwEcuEJ5","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507148143011504128","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/wildmoka.com\" rel=\"nofollow\"\u003eWildmoka\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839992834740518912\/etTvbekD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839992834740518912\/etTvbekD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704456419\/1486926551","profile_link_color":"1B95E0","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":634647333,"id_str":"634647333","name":"K","screen_name":"accompstress","location":"Florida","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":52,"friends_count":172,"listed_count":0,"created_at":"Fri - Jul 13 13:18:47 +0000 2012","favourites_count":4128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":594,"lang":null,"status":{"created_at":"Thu - Jan 27 11:41:08 +0000 2022","id":1486665574075797510,"id_str":"1486665574075797510","text":"@CalltoActivism - I already have.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalltoActivism","name":"CALL - TO ACTIVISM","id":819994707061248001,"id_str":"819994707061248001","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486514922162819076,"in_reply_to_status_id_str":"1486514922162819076","in_reply_to_user_id":819994707061248001,"in_reply_to_user_id_str":"819994707061248001","in_reply_to_screen_name":"CalltoActivism","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1248669783131897863\/obLoXrNs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1248669783131897863\/obLoXrNs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1162547960174919680,"id_str":"1162547960174919680","name":"Marlene","screen_name":"Marlene22512127","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":698,"listed_count":0,"created_at":"Sat - Aug 17 02:14:01 +0000 2019","favourites_count":5240,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Wed - Mar 02 06:12:06 +0000 2022","id":1498903957548138499,"id_str":"1498903957548138499","text":"RT - @BetteMidler: https:\/\/t.co\/3BqME5MVgN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BetteMidler","name":"bettemidler","id":139823781,"id_str":"139823781","indices":[3,15]}],"urls":[],"media":[{"id":1498763049104068608,"id_str":"1498763049104068608","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","url":"https:\/\/t.co\/3BqME5MVgN","display_url":"pic.twitter.com\/3BqME5MVgN","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1498763052098801664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":509,"resize":"fit"},"large":{"w":640,"h":509,"resize":"fit"},"medium":{"w":640,"h":509,"resize":"fit"}},"source_status_id":1498763052098801664,"source_status_id_str":"1498763052098801664","source_user_id":139823781,"source_user_id_str":"139823781"}]},"extended_entities":{"media":[{"id":1498763049104068608,"id_str":"1498763049104068608","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","url":"https:\/\/t.co\/3BqME5MVgN","display_url":"pic.twitter.com\/3BqME5MVgN","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1498763052098801664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":509,"resize":"fit"},"large":{"w":640,"h":509,"resize":"fit"},"medium":{"w":640,"h":509,"resize":"fit"}},"source_status_id":1498763052098801664,"source_status_id_str":"1498763052098801664","source_user_id":139823781,"source_user_id_str":"139823781"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 20:52:11 +0000 2022","id":1498763052098801664,"id_str":"1498763052098801664","text":"https:\/\/t.co\/3BqME5MVgN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1498763049104068608,"id_str":"1498763049104068608","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","url":"https:\/\/t.co\/3BqME5MVgN","display_url":"pic.twitter.com\/3BqME5MVgN","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1498763052098801664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":509,"resize":"fit"},"large":{"w":640,"h":509,"resize":"fit"},"medium":{"w":640,"h":509,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1498763049104068608,"id_str":"1498763049104068608","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMytDWhUUAA3WGS.jpg","url":"https:\/\/t.co\/3BqME5MVgN","display_url":"pic.twitter.com\/3BqME5MVgN","expanded_url":"https:\/\/twitter.com\/BetteMidler\/status\/1498763052098801664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":509,"resize":"fit"},"large":{"w":640,"h":509,"resize":"fit"},"medium":{"w":640,"h":509,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7634,"favorite_count":62988,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":7634,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1306298661010206720\/ZlF2UQR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1306298661010206720\/ZlF2UQR6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1195123859143483392,"id_str":"1195123859143483392","name":"Darci - Flynn","screen_name":"chi_darci","location":"Chicago, IL","description":"Twin - Mama \ud83d\udc76\ud83d\udc76. Social worker \u270c\ufe0f fighting for human - rights, justice and equity \u262e\ufe0f\ud83d\udcaa. Tweets are mine and mine - alone.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":870,"listed_count":0,"created_at":"Thu - Nov 14 23:38:35 +0000 2019","favourites_count":779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":757,"lang":null,"status":{"created_at":"Thu - Mar 24 00:46:42 +0000 2022","id":1506794601465716737,"id_str":"1506794601465716737","text":"RT - @ChiFamSupport: The city is taking a whole-of-government approach to addressing - violence. We''re all doing our part, & DFSS is announcing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChiFamSupport","name":"Chicago - Department of Family & Support Services","id":158455108,"id_str":"158455108","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 23:42:00 +0000 2022","id":1506778317885739016,"id_str":"1506778317885739016","text":"The - city is taking a whole-of-government approach to addressing violence. We''re - all doing our part, & DFSS is annou\u2026 https:\/\/t.co\/m6DT0QMb3w","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m6DT0QMb3w","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506778317885739016","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453406386650419206\/bK6knUvg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453406386650419206\/bK6knUvg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1195123859143483392\/1635354089","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1240750605666258945,"id_str":"1240750605666258945","name":"SouthernCross","screen_name":"ScottRo64990122","location":"NJ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":89,"friends_count":652,"listed_count":2,"created_at":"Thu - Mar 19 21:22:59 +0000 2020","favourites_count":17079,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9830,"lang":null,"status":{"created_at":"Sat - Mar 26 00:04:54 +0000 2022","id":1507508856515092485,"id_str":"1507508856515092485","text":"@bburrill1 - @Catherinemonks3 @simulflow @NastyJ49 @ClaudetteGGibs1 Twice? Was I on glue - or did he not lead the Execu\u2026 https:\/\/t.co\/G1YKpMqpQB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bburrill1","name":"Barbara - (Barbie) Burrill","id":96433277,"id_str":"96433277","indices":[0,10]},{"screen_name":"Catherinemonks3","name":"Catherine - the Great","id":1475990778015096833,"id_str":"1475990778015096833","indices":[11,27]},{"screen_name":"simulflow","name":"Karen - \uc21c\uc218 Hardie","id":26863220,"id_str":"26863220","indices":[28,38]},{"screen_name":"NastyJ49","name":"J. - Nasty, Flaming Queer","id":306293377,"id_str":"306293377","indices":[39,48]},{"screen_name":"ClaudetteGGibs1","name":"Nurses - Against Dick Pics. \ud83c\uddfa\ud83c\udde6","id":1134152253353447424,"id_str":"1134152253353447424","indices":[49,65]}],"urls":[{"url":"https:\/\/t.co\/G1YKpMqpQB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507508856515092485","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507508300048437252,"in_reply_to_status_id_str":"1507508300048437252","in_reply_to_user_id":96433277,"in_reply_to_user_id_str":"96433277","in_reply_to_screen_name":"bburrill1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304050859593129986\/i6i29ZwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304050859593129986\/i6i29ZwF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":533409328,"id_str":"533409328","name":"wayne - hicks","screen_name":"waynehicks3","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":567,"listed_count":0,"created_at":"Thu - Mar 22 19:21:43 +0000 2012","favourites_count":1428,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Sun - Jun 13 19:20:45 +0000 2021","id":1404156805710811141,"id_str":"1404156805710811141","text":"@AdamChodak - Yes these are gypsy moths and they are bad news for our trees.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdamChodak","name":"Adam - Chodak","id":139478841,"id_str":"139478841","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1404082396891435008,"in_reply_to_status_id_str":"1404082396891435008","in_reply_to_user_id":139478841,"in_reply_to_user_id_str":"139478841","in_reply_to_screen_name":"AdamChodak","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265189473567956992,"id_str":"1265189473567956992","name":"Dilli - Raj Khanal","screen_name":"DilliRajKhanal3","location":"","description":"Tea - \n\n\nTeaching. Research. Social service.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":179,"friends_count":172,"listed_count":1,"created_at":"Tue - May 26 07:57:25 +0000 2020","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":65,"lang":null,"status":{"created_at":"Mon - Feb 28 09:06:31 +0000 2022","id":1498223074247774217,"id_str":"1498223074247774217","text":"@brb1954 - Get well soon","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"brb1954","name":"Baburam - Bhattarai","id":1105470817,"id_str":"1105470817","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1363327665210466307,"in_reply_to_status_id_str":"1363327665210466307","in_reply_to_user_id":1105470817,"in_reply_to_user_id_str":"1105470817","in_reply_to_screen_name":"brb1954","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265190490154000385\/KjPIhTn6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265190490154000385\/KjPIhTn6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1308973166728040450,"id_str":"1308973166728040450","name":"EMMA - ROBERTS","screen_name":"EMMAROB59325710","location":"","description":"GREAT - TO B AN AMERICAN","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":161,"listed_count":0,"created_at":"Thu - Sep 24 03:36:47 +0000 2020","favourites_count":1081,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":315,"lang":null,"status":{"created_at":"Mon - Feb 15 06:41:33 +0000 2021","id":1361203982279057410,"id_str":"1361203982279057410","text":"https:\/\/t.co\/F0IfNTI1vW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/F0IfNTI1vW","expanded_url":"https:\/\/m.facebook.com\/DonaldJTrumpJr\/videos\/425736561979350\/?refsrc=http%3A%2F%2Ft.co%2FbUcOPFtVVH&_rdr","display_url":"m.facebook.com\/DonaldJTrumpJr\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308973862051352578\/Gt5T6i7s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308973862051352578\/Gt5T6i7s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3184667389,"id_str":"3184667389","name":"Teresa - Nichols ","screen_name":"TeresaTeezeenic","location":"Jacksonville Beach, - FL","description":"Mama, feminist, roller girl","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":329,"listed_count":0,"created_at":"Mon - May 04 00:53:57 +0000 2015","favourites_count":18150,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"status":{"created_at":"Wed - Mar 23 00:48:00 +0000 2022","id":1506432539036164097,"id_str":"1506432539036164097","text":"RT - @NicholsCherokee: Super excited to announce that next year I will be attending - The University of North Florida! Thank you to Coach Marti\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NicholsCherokee","name":"Cherokee - Nichols","id":770066381190684673,"id_str":"770066381190684673","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 22:39:14 +0000 2022","id":1506400136896954380,"id_str":"1506400136896954380","text":"Super - excited to announce that next year I will be attending The University of North - Florida! Thank you to Coach Ma\u2026 https:\/\/t.co\/tQqdl33Zog","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tQqdl33Zog","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506400136896954380","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":391,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":50,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152035364896460800\/tV22yNCe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152035364896460800\/tV22yNCe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184667389\/1563501610","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1246092138301001728,"id_str":"1246092138301001728","name":"Mark - Marek","screen_name":"MarkMarek8","location":"","description":"US Army (ret) - - 30 years Military Police, CID & Intel - RT\/Follow not necessarily agree\/endorse. - (FYI: I''m NOT the Canadian, the actor, or the graphic artist)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":99,"friends_count":1548,"listed_count":1,"created_at":"Fri - Apr 03 15:08:23 +0000 2020","favourites_count":26597,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4121,"lang":null,"status":{"created_at":"Sat - Mar 26 00:55:20 +0000 2022","id":1507521549867311104,"id_str":"1507521549867311104","text":"Poland - \ud83c\uddf5\ud83c\uddf1 https:\/\/t.co\/tA0Srm2is1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tA0Srm2is1","expanded_url":"https:\/\/twitter.com\/hopkohanna\/status\/1507409529088135168","display_url":"twitter.com\/hopkohanna\/sta\u2026","indices":[10,33]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507409529088135168,"quoted_status_id_str":"1507409529088135168","retweet_count":23,"favorite_count":66,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314959682973372420\/hggXVxcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314959682973372420\/hggXVxcg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":699282718153003009,"id_str":"699282718153003009","name":"Krystin - Mengon-Lee","screen_name":"MengonKrystin","location":"Butte, MT","description":"Master - teacher\u2022Decent mom\u2022Union leader\u2022Retired coach\u2022Liberal - & proud","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":322,"friends_count":1239,"listed_count":1,"created_at":"Mon - Feb 15 17:22:46 +0000 2016","favourites_count":3114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1420,"lang":null,"status":{"created_at":"Fri - Mar 25 04:22:54 +0000 2022","id":1507211396412424195,"id_str":"1507211396412424195","text":"RT - @caslernoel: If you think the Thomas\u2019 story is bad wait until we find - out who paid-off Brett Kavanaugh\u2019s gambling debts.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caslernoel","name":"NoelCaslerComedy","id":1073047860260814848,"id_str":"1073047860260814848","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 23:38:29 +0000 2022","id":1507139823584395273,"id_str":"1507139823584395273","text":"If - you think the Thomas\u2019 story is bad wait until we find out who paid-off - Brett Kavanaugh\u2019s gambling debts.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11096,"favorite_count":70734,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11096,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1353395839981346822\/xicH8QIq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1353395839981346822\/xicH8QIq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/699282718153003009\/1611509691","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19046583,"id_str":"19046583","name":"Linda - Vogler","screen_name":"cheflinda","location":"Maryland, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":58,"friends_count":762,"listed_count":0,"created_at":"Fri - Jan 16 00:11:12 +0000 2009","favourites_count":5914,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14753,"lang":null,"status":{"created_at":"Fri - Mar 25 19:21:36 +0000 2022","id":1507437562050359298,"id_str":"1507437562050359298","text":"@AkilahObviously - Ice cream","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AkilahObviously","name":"Akilah - Hughes","id":61371461,"id_str":"61371461","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507436185970376704,"in_reply_to_status_id_str":"1507436185970376704","in_reply_to_user_id":61371461,"in_reply_to_user_id_str":"61371461","in_reply_to_screen_name":"AkilahObviously","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820304183551262720\/sMGahcBf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820304183551262720\/sMGahcBf_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1053525314,"id_str":"1053525314","name":"Maggie - Varona","screen_name":"magsvar","location":"Arlington, VA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":222,"listed_count":0,"created_at":"Tue - Jan 01 21:30:57 +0000 2013","favourites_count":594,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"status":{"created_at":"Thu - Oct 28 02:08:12 +0000 2021","id":1453544096178507782,"id_str":"1453544096178507782","text":"RT - @arborview_cap: Big news from Soli Organic: a financing arrangement w\/ @DecennialGroup - will support new farms in key geographies.\n\u00a0\nThe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arborview_cap","name":"Arborview - Capital","id":435945489,"id_str":"435945489","indices":[3,17]},{"screen_name":"DecennialGroup","name":"Decennial - Group","id":1112831885577777152,"id_str":"1112831885577777152","indices":[74,89]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 27 12:47:04 +0000 2021","id":1453342481320452102,"id_str":"1453342481320452102","text":"Big - news from Soli Organic: a financing arrangement w\/ @DecennialGroup will support - new farms in key geographies.\n\u00a0\u2026 https:\/\/t.co\/ppDosmGXbq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DecennialGroup","name":"Decennial - Group","id":1112831885577777152,"id_str":"1112831885577777152","indices":[55,70]}],"urls":[{"url":"https:\/\/t.co\/ppDosmGXbq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1453342481320452102","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220397671933976576\/V_7Jf2kV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220397671933976576\/V_7Jf2kV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14402929,"id_str":"14402929","name":"Gwen - Morse PhD, RN","screen_name":"drgwen","location":"Santa Barbara, California","description":"Professor, - RN, Naturalist, World Traveler, Grammy","url":"https:\/\/t.co\/4irCgxYkgL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4irCgxYkgL","expanded_url":"https:\/\/www.drgwen.org","display_url":"drgwen.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":542,"friends_count":970,"listed_count":27,"created_at":"Wed - Apr 16 00:47:59 +0000 2008","favourites_count":1477,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":917,"lang":null,"status":{"created_at":"Thu - Mar 24 03:59:18 +0000 2022","id":1506843070092181505,"id_str":"1506843070092181505","text":"RT - @mariashriver: So moving.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mariashriver","name":"Maria - Shriver","id":19362341,"id_str":"19362341","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 03:16:27 +0000 2022","id":1506832288738263044,"id_str":"1506832288738263044","text":"So - moving. https:\/\/t.co\/D5LxLjE5Du","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/D5LxLjE5Du","expanded_url":"https:\/\/twitter.com\/occupydemocrats\/status\/1506814387826446337","display_url":"twitter.com\/occupydemocrat\u2026","indices":[11,34]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506814387826446337,"quoted_status_id_str":"1506814387826446337","retweet_count":209,"favorite_count":1725,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506814387826446337,"quoted_status_id_str":"1506814387826446337","retweet_count":209,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227739482373230592\/8mcqZ-mj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227739482373230592\/8mcqZ-mj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14402929\/1581550366","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":14097197,"id_str":"14097197","name":"Peoples'' - Tribune","screen_name":"shawnml2","location":"Massachusetts","description":"Democratic - Socialist, Bernie fan, history professor, and cynic. (Personal Acc\u2019t)","url":"https:\/\/t.co\/G5BY7DbjVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/G5BY7DbjVH","expanded_url":"https:\/\/betterelectionsnow.org\/","display_url":"betterelectionsnow.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":973,"listed_count":7,"created_at":"Fri - Mar 07 20:52:45 +0000 2008","favourites_count":4900,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30014,"lang":null,"status":{"created_at":"Fri - Mar 25 18:38:48 +0000 2022","id":1507426790263898171,"id_str":"1507426790263898171","text":"RT - @SimonWDC: It will be very hard to write an accurate history of early 21st - century America without a long discussion of how the tossing\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SimonWDC","name":"Simon - Rosenberg","id":37738073,"id_str":"37738073","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 09:00:51 +0000 2022","id":1507281346372288524,"id_str":"1507281346372288524","text":"It - will be very hard to write an accurate history of early 21st century America - without a long discussion of how th\u2026 https:\/\/t.co\/OesrXLBbuM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OesrXLBbuM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507281346372288524","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":2669,"favorite_count":7566,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507109512863494149,"quoted_status_id_str":"1507109512863494149","retweet_count":2669,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2326533578\/i447215mfgw9hbmw6tpm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2326533578\/i447215mfgw9hbmw6tpm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14097197\/1603213232","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":828000482677268480,"id_str":"828000482677268480","name":"EnoughAlready","screen_name":"purple_granma","location":"PNW-yes, - it rains a lot","description":"Retired telecom professional. Worried about - our democracy under DJT. Eternal vigilance is the price of liberty. Love - a good snark.\nNo lists, please.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2183,"friends_count":4677,"listed_count":1,"created_at":"Sat - Feb 04 22:01:13 +0000 2017","favourites_count":72169,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18856,"lang":null,"status":{"created_at":"Fri - Mar 25 03:40:25 +0000 2022","id":1507200707287343110,"id_str":"1507200707287343110","text":"RT - @OccupyDemocrats: BREAKING NEWS: Georgia voters file a lawsuit to block Trumper - Congresswoman Marjorie Taylor Green from running reelect\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 02:24:46 +0000 2022","id":1507181668989349896,"id_str":"1507181668989349896","text":"BREAKING - NEWS: Georgia voters file a lawsuit to block Trumper Congresswoman Marjorie - Taylor Green from running reel\u2026 https:\/\/t.co\/4IOaQ2uj7F","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/4IOaQ2uj7F","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507181668989349896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16216,"favorite_count":51473,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":16216,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/840424284073918464\/CXJIVRS8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/840424284073918464\/CXJIVRS8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/828000482677268480\/1609467771","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":777016789,"id_str":"777016789","name":"Julie - Namy","screen_name":"NamyJulie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":570,"listed_count":0,"created_at":"Thu - Aug 23 23:58:10 +0000 2012","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":114,"lang":null,"status":{"created_at":"Thu - Mar 24 15:59:08 +0000 2022","id":1507024220764704776,"id_str":"1507024220764704776","text":"@EliseStefanik - The fact that you are an elected official is pathetic! Hypocrite","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EliseStefanik","name":"Elise - Stefanik","id":109579534,"id_str":"109579534","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506745099778248709,"in_reply_to_status_id_str":"1506745099778248709","in_reply_to_user_id":109579534,"in_reply_to_user_id_str":"109579534","in_reply_to_screen_name":"EliseStefanik","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349178085485273095\/z3enOBYd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349178085485273095\/z3enOBYd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2730612380,"id_str":"2730612380","name":"Charlie","screen_name":"CharlieCshah","location":"","description":"Father. - Husband. Lawyer. Longhorn fan.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":146,"friends_count":1029,"listed_count":0,"created_at":"Thu - Aug 14 00:42:20 +0000 2014","favourites_count":3837,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1353,"lang":null,"status":{"created_at":"Mon - Mar 21 03:10:18 +0000 2022","id":1505743577548300294,"id_str":"1505743577548300294","text":"RT - @spshoot: Purdue 33 free throws. \nTexas 9 free throws. \n\nYeah \u2014 that - seems fair.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"spshoot","name":"Sammy - P","id":176731627,"id_str":"176731627","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 02:51:16 +0000 2022","id":1505738784587067397,"id_str":"1505738784587067397","text":"Purdue - 33 free throws. \nTexas 9 free throws. \n\nYeah \u2014 that seems fair.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":178,"favorite_count":1252,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":178,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/904825682307325952\/Yar8l_pY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/904825682307325952\/Yar8l_pY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2730612380\/1408027139","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":58612437,"id_str":"58612437","name":"Zach - Harris","screen_name":"ZachWHarris","location":"Milwaukee, WI","description":"Born - and Raised in Milwaukee. Music and politics are my life!Formerly:@KamalaHarris - @HFA @WisDems","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1129,"listed_count":5,"created_at":"Mon - Jul 20 22:29:12 +0000 2009","favourites_count":1543,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1197,"lang":null,"status":{"created_at":"Thu - Mar 17 21:56:09 +0000 2022","id":1504577353393000450,"id_str":"1504577353393000450","text":"@nkeller24_ - Been dead to me \ud83e\udd23\ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nkeller24_","name":"Nate - Keller","id":984673835634094085,"id_str":"984673835634094085","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504566638305333248,"in_reply_to_status_id_str":"1504566638305333248","in_reply_to_user_id":984673835634094085,"in_reply_to_user_id_str":"984673835634094085","in_reply_to_screen_name":"nkeller24_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293527453592428545\/eR8Embb4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293527453592428545\/eR8Embb4_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":830539969638830081,"id_str":"830539969638830081","name":"Parker","screen_name":"gibbspa1","location":"","description":"Retired - buyer. Seeker of truth, fairness, and justice for America.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":453,"listed_count":0,"created_at":"Sat - Feb 11 22:12:14 +0000 2017","favourites_count":56,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Thu - Feb 04 01:35:56 +0000 2021","id":1357140802334556160,"id_str":"1357140802334556160","text":"RT - @MSNBCPR: \u201cThe Rachel @Maddow Show\u201d is the #1 show in all of cable - TV in January. https:\/\/t.co\/QmJiIfBp6I https:\/\/t.co\/FHRLoBJFxT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBCPR","name":"MSNBC - Public Relations","id":107120201,"id_str":"107120201","indices":[3,11]},{"screen_name":"maddow","name":"Rachel - Maddow MSNBC","id":16129920,"id_str":"16129920","indices":[25,32]}],"urls":[{"url":"https:\/\/t.co\/QmJiIfBp6I","expanded_url":"http:\/\/bit.ly\/2MkFVa4","display_url":"bit.ly\/2MkFVa4","indices":[85,108]}],"media":[{"id":1356695635852988416,"id_str":"1356695635852988416","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","url":"https:\/\/t.co\/FHRLoBJFxT","display_url":"pic.twitter.com\/FHRLoBJFxT","expanded_url":"https:\/\/twitter.com\/MSNBCPR\/status\/1356695696523603971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}},"source_status_id":1356695696523603971,"source_status_id_str":"1356695696523603971","source_user_id":107120201,"source_user_id_str":"107120201"}]},"extended_entities":{"media":[{"id":1356695635852988416,"id_str":"1356695635852988416","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","url":"https:\/\/t.co\/FHRLoBJFxT","display_url":"pic.twitter.com\/FHRLoBJFxT","expanded_url":"https:\/\/twitter.com\/MSNBCPR\/status\/1356695696523603971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}},"source_status_id":1356695696523603971,"source_status_id_str":"1356695696523603971","source_user_id":107120201,"source_user_id_str":"107120201"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 02 20:07:14 +0000 2021","id":1356695696523603971,"id_str":"1356695696523603971","text":"\u201cThe - Rachel @Maddow Show\u201d is the #1 show in all of cable TV in January. https:\/\/t.co\/QmJiIfBp6I - https:\/\/t.co\/FHRLoBJFxT","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maddow","name":"Rachel - Maddow MSNBC","id":16129920,"id_str":"16129920","indices":[12,19]}],"urls":[{"url":"https:\/\/t.co\/QmJiIfBp6I","expanded_url":"http:\/\/bit.ly\/2MkFVa4","display_url":"bit.ly\/2MkFVa4","indices":[72,95]}],"media":[{"id":1356695635852988416,"id_str":"1356695635852988416","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","url":"https:\/\/t.co\/FHRLoBJFxT","display_url":"pic.twitter.com\/FHRLoBJFxT","expanded_url":"https:\/\/twitter.com\/MSNBCPR\/status\/1356695696523603971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1356695635852988416,"id_str":"1356695635852988416","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EtPzfiNXEAA-LY_.jpg","url":"https:\/\/t.co\/FHRLoBJFxT","display_url":"pic.twitter.com\/FHRLoBJFxT","expanded_url":"https:\/\/twitter.com\/MSNBCPR\/status\/1356695696523603971\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1920,"h":1080,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1356695465832628226,"in_reply_to_status_id_str":"1356695465832628226","in_reply_to_user_id":107120201,"in_reply_to_user_id_str":"107120201","in_reply_to_screen_name":"MSNBCPR","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":754,"favorite_count":3733,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":754,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":30572020,"id_str":"30572020","name":"Kathleen - Militello","screen_name":"Kakamilitello","location":"Sao Paulo\/BRASIL","description":"Advogada.\nSim - \u00e0 Ci\u00eancia, ao SUS, \u00e0 imprensa livre, \u00e0 dignidade da pessoa. - \nA Terra \u00e9 redonda. Racismo reverso n\u00e3o existe. Tomem vacina.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":466,"listed_count":0,"created_at":"Sun - Apr 12 01:33:32 +0000 2009","favourites_count":789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"status":{"created_at":"Thu - Sep 09 21:04:59 +0000 2021","id":1436073170902163465,"id_str":"1436073170902163465","text":"RT - @DuquesaDetax: Daqui 1h ele faz uma live e convence todos os radicais que - \u201cprecisou agir por dentro\u201d.\n\nTemos mais 1h pra rir. https:\/\/t.\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DuquesaDetax","name":"Duquesa - de Tax","id":70210431,"id_str":"70210431","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Sep 09 21:01:56 +0000 2021","id":1436072403512217614,"id_str":"1436072403512217614","text":"Daqui - 1h ele faz uma live e convence todos os radicais que \u201cprecisou agir por - dentro\u201d.\n\nTemos mais 1h pra rir. https:\/\/t.co\/udH1Kaq2IW","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1436072397812207619,"id_str":"1436072397812207619","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/E-30PLdXEAMUL5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-30PLdXEAMUL5R.jpg","url":"https:\/\/t.co\/udH1Kaq2IW","display_url":"pic.twitter.com\/udH1Kaq2IW","expanded_url":"https:\/\/twitter.com\/DuquesaDetax\/status\/1436072403512217614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":739,"h":415,"resize":"fit"},"large":{"w":739,"h":415,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1436072397812207619,"id_str":"1436072397812207619","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/E-30PLdXEAMUL5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-30PLdXEAMUL5R.jpg","url":"https:\/\/t.co\/udH1Kaq2IW","display_url":"pic.twitter.com\/udH1Kaq2IW","expanded_url":"https:\/\/twitter.com\/DuquesaDetax\/status\/1436072403512217614\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":739,"h":415,"resize":"fit"},"large":{"w":739,"h":415,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":198,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"pt"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309660967177981959\/AsQBz9l1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309660967177981959\/AsQBz9l1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":219271426,"id_str":"219271426","name":"Michael - Young","screen_name":"blkzip17","location":"United States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":396,"listed_count":0,"created_at":"Wed - Nov 24 11:58:10 +0000 2010","favourites_count":17547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":null,"status":{"created_at":"Wed - Jul 01 11:43:31 +0000 2020","id":1278293151690756098,"id_str":"1278293151690756098","text":"RT - @funder: Can you do me a favor? Can you reply to to this with #AmericaStrongerWithBiden - so we can get it trending? Thank you!","truncated":false,"entities":{"hashtags":[{"text":"AmericaStrongerWithBiden","indices":[65,90]}],"symbols":[],"user_mentions":[{"screen_name":"funder","name":"Scott - Dworkin","id":14247236,"id_str":"14247236","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Jun 30 19:31:04 +0000 2020","id":1278048427109232640,"id_str":"1278048427109232640","text":"Can - you do me a favor? Can you reply to to this with #AmericaStrongerWithBiden - so we can get it trending? Thank you!","truncated":false,"entities":{"hashtags":[{"text":"AmericaStrongerWithBiden","indices":[53,78]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11362,"favorite_count":20453,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":11362,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":32506684,"id_str":"32506684","name":"veracities.","screen_name":"citiesofstars","location":"the - lone neon lights","description":"and this is the wonder that''s keeping the - stars apart.","url":"https:\/\/t.co\/KSt9jHYVd7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KSt9jHYVd7","expanded_url":"http:\/\/citiesofstars.tumblr.com","display_url":"citiesofstars.tumblr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":76,"friends_count":743,"listed_count":3,"created_at":"Fri - Apr 17 18:16:55 +0000 2009","favourites_count":144,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458349320392028160\/Dwun0hng_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458349320392028160\/Dwun0hng_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32506684\/1348698005","profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"269DAD","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":934738830,"id_str":"934738830","name":"Anita - Tellock","screen_name":"dbunny22","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":233,"listed_count":0,"created_at":"Thu - Nov 08 15:24:54 +0000 2012","favourites_count":1407,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"status":{"created_at":"Tue - May 11 16:44:51 +0000 2021","id":1392158772945096709,"id_str":"1392158772945096709","text":"RT - @mmpadellan: Republicans would rather expel a person who says the former guy - lost the 2020 election than expel a sex trafficker, a pedop\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mmpadellan","name":"BrooklynDad_Defiant!","id":1640929196,"id_str":"1640929196","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 10 21:19:55 +0000 2021","id":1391865610477375490,"id_str":"1391865610477375490","text":"Republicans - would rather expel a person who says the former guy lost the 2020 election - than expel a sex trafficker,\u2026 https:\/\/t.co\/2mkL5nQPfM","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2mkL5nQPfM","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1391865610477375490","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5090,"favorite_count":22119,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5090,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21078750,"id_str":"21078750","name":"Laura - Perkins","screen_name":"Colonelette","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":674,"listed_count":1,"created_at":"Tue - Feb 17 10:27:26 +0000 2009","favourites_count":11235,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3398,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":171334050,"id_str":"171334050","name":"(Dr.) - Janis with an \u201cs\u201d, like Joplin","screen_name":"jancb16","location":"Florida, - USA","description":"Florida girl. Small business owner. Wife, Aunt, Great - Aunt, sister, twin. Can\u2019t believe I once called myself a Republican. - Patriot. Resister. (Go Bucs!!)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":442,"friends_count":1178,"listed_count":0,"created_at":"Tue - Jul 27 03:19:35 +0000 2010","favourites_count":38942,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2436,"lang":null,"status":{"created_at":"Sat - Mar 19 12:38:46 +0000 2022","id":1505161857484611584,"id_str":"1505161857484611584","text":"RT - @Dunigan88791694: @LorrieScott @adamdavidson Why is that SO hard to comprehend?! - https:\/\/t.co\/OcGHwwvSkN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dunigan88791694","name":"THEANTIhateRN","id":1008799915244490752,"id_str":"1008799915244490752","indices":[3,19]},{"screen_name":"LorrieScott","name":"Lorrie - Scott","id":35490263,"id_str":"35490263","indices":[21,33]},{"screen_name":"adamdavidson","name":"Adam - Davidson","id":15639774,"id_str":"15639774","indices":[34,47]}],"urls":[],"media":[{"id":1504888829907546119,"id_str":"1504888829907546119","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","url":"https:\/\/t.co\/OcGHwwvSkN","display_url":"pic.twitter.com\/OcGHwwvSkN","expanded_url":"https:\/\/twitter.com\/Dunigan88791694\/status\/1504888834215100421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":666,"h":680,"resize":"fit"},"medium":{"w":1132,"h":1155,"resize":"fit"},"large":{"w":1132,"h":1155,"resize":"fit"}},"source_status_id":1504888834215100421,"source_status_id_str":"1504888834215100421","source_user_id":1008799915244490752,"source_user_id_str":"1008799915244490752"}]},"extended_entities":{"media":[{"id":1504888829907546119,"id_str":"1504888829907546119","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","url":"https:\/\/t.co\/OcGHwwvSkN","display_url":"pic.twitter.com\/OcGHwwvSkN","expanded_url":"https:\/\/twitter.com\/Dunigan88791694\/status\/1504888834215100421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":666,"h":680,"resize":"fit"},"medium":{"w":1132,"h":1155,"resize":"fit"},"large":{"w":1132,"h":1155,"resize":"fit"}},"source_status_id":1504888834215100421,"source_status_id_str":"1504888834215100421","source_user_id":1008799915244490752,"source_user_id_str":"1008799915244490752"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 18:33:52 +0000 2022","id":1504888834215100421,"id_str":"1504888834215100421","text":"@LorrieScott - @adamdavidson Why is that SO hard to comprehend?! https:\/\/t.co\/OcGHwwvSkN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LorrieScott","name":"Lorrie - Scott","id":35490263,"id_str":"35490263","indices":[0,12]},{"screen_name":"adamdavidson","name":"Adam - Davidson","id":15639774,"id_str":"15639774","indices":[13,26]}],"urls":[],"media":[{"id":1504888829907546119,"id_str":"1504888829907546119","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","url":"https:\/\/t.co\/OcGHwwvSkN","display_url":"pic.twitter.com\/OcGHwwvSkN","expanded_url":"https:\/\/twitter.com\/Dunigan88791694\/status\/1504888834215100421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":666,"h":680,"resize":"fit"},"medium":{"w":1132,"h":1155,"resize":"fit"},"large":{"w":1132,"h":1155,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1504888829907546119,"id_str":"1504888829907546119","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOJwauUXsAckKwG.jpg","url":"https:\/\/t.co\/OcGHwwvSkN","display_url":"pic.twitter.com\/OcGHwwvSkN","expanded_url":"https:\/\/twitter.com\/Dunigan88791694\/status\/1504888834215100421\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":666,"h":680,"resize":"fit"},"medium":{"w":1132,"h":1155,"resize":"fit"},"large":{"w":1132,"h":1155,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1504832340836564993,"in_reply_to_status_id_str":"1504832340836564993","in_reply_to_user_id":35490263,"in_reply_to_user_id_str":"35490263","in_reply_to_screen_name":"LorrieScott","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":371,"favorite_count":1970,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":371,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1077984676021596161\/m7mbSsF-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1077984676021596161\/m7mbSsF-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171334050\/1607989146","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1026227882484543489,"id_str":"1026227882484543489","name":"JoAnn - Hagopian","screen_name":"HagopianJoann","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":410,"listed_count":0,"created_at":"Sun - Aug 05 22:06:08 +0000 2018","favourites_count":185,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1881,"lang":null,"status":{"created_at":"Fri - Mar 25 15:16:28 +0000 2022","id":1507375873661538309,"id_str":"1507375873661538309","text":"RT - @OccupyDemocrats: BREAKING: Justice Clarence Thomas is discharged from the - hospital right into the mouth of a growing controversy over h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 15:13:28 +0000 2022","id":1507375117520674819,"id_str":"1507375117520674819","text":"BREAKING: - Justice Clarence Thomas is discharged from the hospital right into the mouth - of a growing controversy ove\u2026 https:\/\/t.co\/k5bgeobFVF","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/k5bgeobFVF","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507375117520674819","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7287,"favorite_count":17597,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7287,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":847842911546994688,"id_str":"847842911546994688","name":"Liz - E","screen_name":"LizE60117140","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":176,"listed_count":0,"created_at":"Fri - Mar 31 16:07:57 +0000 2017","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Tue - Apr 04 18:54:43 +0000 2017","id":849334434478346242,"id_str":"849334434478346242","text":"@HillaryClinton - @LeanInOrg I admire you greatly and am glad to hear from you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HillaryClinton","name":"Hillary - Clinton","id":1339835893,"id_str":"1339835893","indices":[0,15]},{"screen_name":"LeanInOrg","name":"Lean - In","id":743585142,"id_str":"743585142","indices":[16,26]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":849276093932732417,"in_reply_to_status_id_str":"849276093932732417","in_reply_to_user_id":1339835893,"in_reply_to_user_id_str":"1339835893","in_reply_to_screen_name":"HillaryClinton","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156392074771599363,"id_str":"1156392074771599363","name":"Nimrata - Nikki lies everytime..so SAD","screen_name":"capri00172","location":"Potenza, - Basilicata","description":"rare bird","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":373,"listed_count":0,"created_at":"Wed - Jul 31 02:32:10 +0000 2019","favourites_count":5732,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1032,"lang":null,"status":{"created_at":"Fri - Aug 13 00:56:28 +0000 2021","id":1425984566909624320,"id_str":"1425984566909624320","text":"@RonSteslow - That wud be in Aug 2025 when he join hands with defeated GOP presidential - candidate DeSantis and declar\u2026 https:\/\/t.co\/uikPOsBwdR","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonSteslow","name":"Ron - Steslow \ud83c\udf3b","id":14578068,"id_str":"14578068","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/uikPOsBwdR","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1425984566909624320","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1425794958766841856,"in_reply_to_status_id_str":"1425794958766841856","in_reply_to_user_id":14578068,"in_reply_to_user_id_str":"14578068","in_reply_to_screen_name":"RonSteslow","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":25167045,"id_str":"25167045","name":"Kate - Ashley Davison","screen_name":"JustKate_36","location":"Columbus, OH","description":"Daughter - of marshall university ~sigma sigma sigma~ Ohio school teacher~\u264b\ufe0f~ - Jeremiah 29:11\u271d~free spirited","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":828,"friends_count":2611,"listed_count":15,"created_at":"Wed - Mar 18 22:05:55 +0000 2009","favourites_count":25495,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29064,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441664891991969798\/hn24f6ra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441664891991969798\/hn24f6ra_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25167045\/1632554671","profile_link_color":"FC0A93","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"ED375B","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1309661807112597504,"id_str":"1309661807112597504","name":"HoldMyLear","screen_name":"lear_my","location":"","description":"Comments - are not my own. I\u2019m being controlled against my will to tweet.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":460,"listed_count":0,"created_at":"Sat - Sep 26 01:11:37 +0000 2020","favourites_count":966,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":309,"lang":null,"status":{"created_at":"Thu - Jun 17 04:22:42 +0000 2021","id":1405380358959505410,"id_str":"1405380358959505410","text":"RT - @TarotByBronx: If this doesn\u2019t go viral, imma be mad because he KILLED - IT https:\/\/t.co\/rK8t9JGAKQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TarotByBronx","name":"Daddy - Pluto (they\/them) \ud83d\ude80\ud83d\udd38","id":1067118149106130944,"id_str":"1067118149106130944","indices":[3,16]}],"urls":[],"media":[{"id":1405236774549352456,"id_str":"1405236774549352456","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","url":"https:\/\/t.co\/rK8t9JGAKQ","display_url":"pic.twitter.com\/rK8t9JGAKQ","expanded_url":"https:\/\/twitter.com\/TarotByBronx\/status\/1405236976895381512\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1405236976895381512,"source_status_id_str":"1405236976895381512","source_user_id":1067118149106130944,"source_user_id_str":"1067118149106130944"}]},"extended_entities":{"media":[{"id":1405236774549352456,"id_str":"1405236774549352456","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","url":"https:\/\/t.co\/rK8t9JGAKQ","display_url":"pic.twitter.com\/rK8t9JGAKQ","expanded_url":"https:\/\/twitter.com\/TarotByBronx\/status\/1405236976895381512\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":1405236976895381512,"source_status_id_str":"1405236976895381512","source_user_id":1067118149106130944,"source_user_id_str":"1067118149106130944","video_info":{"aspect_ratio":[9,16],"duration_millis":62767,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/pl\/jXYO7f3XUQzhWWtU.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/480x852\/4RP0wX-ot4GC-7CK.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/576x1024\/InVM2BIGDdLP7TgJ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/320x568\/ub3xWb92OQ4QrCca.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jun 16 18:52:57 +0000 2021","id":1405236976895381512,"id_str":"1405236976895381512","text":"If - this doesn\u2019t go viral, imma be mad because he KILLED IT https:\/\/t.co\/rK8t9JGAKQ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1405236774549352456,"id_str":"1405236774549352456","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","url":"https:\/\/t.co\/rK8t9JGAKQ","display_url":"pic.twitter.com\/rK8t9JGAKQ","expanded_url":"https:\/\/twitter.com\/TarotByBronx\/status\/1405236976895381512\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1405236774549352456,"id_str":"1405236774549352456","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1405236774549352456\/pu\/img\/gwmYwwGTwHiWLm3U.jpg","url":"https:\/\/t.co\/rK8t9JGAKQ","display_url":"pic.twitter.com\/rK8t9JGAKQ","expanded_url":"https:\/\/twitter.com\/TarotByBronx\/status\/1405236976895381512\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":62767,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/pl\/jXYO7f3XUQzhWWtU.m3u8?tag=12&container=fmp4"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/480x852\/4RP0wX-ot4GC-7CK.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/576x1024\/InVM2BIGDdLP7TgJ.mp4?tag=12"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1405236774549352456\/pu\/vid\/320x568\/ub3xWb92OQ4QrCca.mp4?tag=12"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17265,"favorite_count":56359,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":17265,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310208227867611137\/MTkqP1Ym_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310208227867611137\/MTkqP1Ym_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1309661807112597504\/1601212959","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":277570649,"id_str":"277570649","name":"Morriss - Henry","screen_name":"popshenry","location":"Arkansas, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":152,"listed_count":0,"created_at":"Tue - Apr 05 16:49:16 +0000 2011","favourites_count":217,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Mon - Mar 14 22:16:26 +0000 2022","id":1503495293232459781,"id_str":"1503495293232459781","text":"@RandPaul - What about Trump and his buddy Putin ?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RandPaul","name":"Rand - Paul","id":216881337,"id_str":"216881337","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1503398049774813188,"in_reply_to_status_id_str":"1503398049774813188","in_reply_to_user_id":216881337,"in_reply_to_user_id_str":"216881337","in_reply_to_screen_name":"RandPaul","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1213846313982291968,"id_str":"1213846313982291968","name":"my - name is","screen_name":"imspeaking20","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":609,"listed_count":0,"created_at":"Sun - Jan 05 15:34:54 +0000 2020","favourites_count":776,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":56,"lang":null,"status":{"created_at":"Thu - Mar 24 03:34:29 +0000 2022","id":1506836826144845825,"id_str":"1506836826144845825","text":"@DrGJackBrown - I''ve been thinking about this tweet for a couple days now","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrGJackBrown","name":"Dr. - Jack Brown","id":212445456,"id_str":"212445456","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505277022456905728,"in_reply_to_status_id_str":"1505277022456905728","in_reply_to_user_id":212445456,"in_reply_to_user_id_str":"212445456","in_reply_to_screen_name":"DrGJackBrown","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1403863400967544844\/frGQD9yG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1403863400967544844\/frGQD9yG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1216813890,"id_str":"1216813890","name":"Paul - Starkin","screen_name":"Upastarkin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":198,"friends_count":1888,"listed_count":1,"created_at":"Sun - Feb 24 23:49:59 +0000 2013","favourites_count":1134,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8323,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3411355910\/e6a533918dc4cd371bda56e0076c4e55_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3411355910\/e6a533918dc4cd371bda56e0076c4e55_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":554948712,"id_str":"554948712","name":"that - blu shit","screen_name":"572procharged","location":"everywhere i need to b","description":"theres - a room full of tweeters what u followin me for","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":1198,"listed_count":0,"created_at":"Mon - Apr 16 04:42:58 +0000 2012","favourites_count":1524,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2955,"lang":null,"status":{"created_at":"Tue - Mar 22 23:47:27 +0000 2022","id":1506417302027264001,"id_str":"1506417302027264001","text":"RT - @CBSSports: brb watching Peter Warrick @FSUFootball highlights on repeat\n\nhttps:\/\/t.co\/LRG2P7ZRdx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBSSports","name":"CBS - Sports","id":14885860,"id_str":"14885860","indices":[3,13]},{"screen_name":"FSUFootball","name":"FSU - Football","id":21407253,"id_str":"21407253","indices":[42,54]}],"urls":[],"media":[{"id":1267902368303153156,"id_str":"1267902368303153156","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","url":"https:\/\/t.co\/LRG2P7ZRdx","display_url":"pic.twitter.com\/LRG2P7ZRdx","expanded_url":"https:\/\/twitter.com\/cbssports\/status\/1271164104003239936\/video\/1","type":"photo","sizes":{"medium":{"w":1200,"h":940,"resize":"fit"},"small":{"w":680,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1688,"h":1322,"resize":"fit"}},"source_status_id":1271164104003239936,"source_status_id_str":"1271164104003239936","source_user_id":14885860,"source_user_id_str":"14885860"}]},"extended_entities":{"media":[{"id":1267902368303153156,"id_str":"1267902368303153156","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","url":"https:\/\/t.co\/LRG2P7ZRdx","display_url":"pic.twitter.com\/LRG2P7ZRdx","expanded_url":"https:\/\/twitter.com\/cbssports\/status\/1271164104003239936\/video\/1","type":"video","sizes":{"medium":{"w":1200,"h":940,"resize":"fit"},"small":{"w":680,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1688,"h":1322,"resize":"fit"}},"source_status_id":1271164104003239936,"source_status_id_str":"1271164104003239936","source_user_id":14885860,"source_user_id_str":"14885860","video_info":{"aspect_ratio":[4,3],"duration_millis":235100,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/pl\/T8qHSAt3jjCgBfmg.m3u8?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/960x720\/ZV4kw4Nd4K0A6Dq-.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/360x270\/1Ohl29hDTFvin06_.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/480x360\/acmTadKdTJ9WrddD.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 21:26:52 +0000 2022","id":1506381923626668032,"id_str":"1506381923626668032","text":"brb - watching Peter Warrick @FSUFootball highlights on repeat\n\nhttps:\/\/t.co\/LRG2P7ZRdx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FSUFootball","name":"FSU - Football","id":21407253,"id_str":"21407253","indices":[27,39]}],"urls":[],"media":[{"id":1267902368303153156,"id_str":"1267902368303153156","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","url":"https:\/\/t.co\/LRG2P7ZRdx","display_url":"pic.twitter.com\/LRG2P7ZRdx","expanded_url":"https:\/\/twitter.com\/cbssports\/status\/1271164104003239936\/video\/1","type":"photo","sizes":{"medium":{"w":1200,"h":940,"resize":"fit"},"small":{"w":680,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1688,"h":1322,"resize":"fit"}},"source_status_id":1271164104003239936,"source_status_id_str":"1271164104003239936","source_user_id":14885860,"source_user_id_str":"14885860"}]},"extended_entities":{"media":[{"id":1267902368303153156,"id_str":"1267902368303153156","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EZiACJ5XsAExzSt.jpg","url":"https:\/\/t.co\/LRG2P7ZRdx","display_url":"pic.twitter.com\/LRG2P7ZRdx","expanded_url":"https:\/\/twitter.com\/cbssports\/status\/1271164104003239936\/video\/1","type":"video","sizes":{"medium":{"w":1200,"h":940,"resize":"fit"},"small":{"w":680,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1688,"h":1322,"resize":"fit"}},"source_status_id":1271164104003239936,"source_status_id_str":"1271164104003239936","source_user_id":14885860,"source_user_id_str":"14885860","video_info":{"aspect_ratio":[4,3],"duration_millis":235100,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/pl\/T8qHSAt3jjCgBfmg.m3u8?tag=13"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/960x720\/ZV4kw4Nd4K0A6Dq-.mp4?tag=13"},{"bitrate":288000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/360x270\/1Ohl29hDTFvin06_.mp4?tag=13"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/amplify_video\/1267902368303153156\/vid\/480x360\/acmTadKdTJ9WrddD.mp4?tag=13"}]},"additional_media_info":{"title":"","description":"","embeddable":true,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":279,"favorite_count":1357,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":279,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/748314372078870528\/tP0EBaQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/748314372078870528\/tP0EBaQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/554948712\/1378893132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1038927774273204230,"id_str":"1038927774273204230","name":"Tammy - Wood","screen_name":"tammywo81585821","location":"St Peters, MO","description":"My - favorite people call me Nana. I love Jesus, daisies, wine and coffee.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":119,"friends_count":512,"listed_count":0,"created_at":"Sun - Sep 09 23:10:58 +0000 2018","favourites_count":4719,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":437,"lang":null,"status":{"created_at":"Fri - Aug 27 19:02:45 +0000 2021","id":1431331366319312903,"id_str":"1431331366319312903","text":"@xjm716 - @BethMooreLPM Check out https:\/\/t.co\/aTgHlioIbu","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"xjm716","name":"John - Mulholland","id":14347872,"id_str":"14347872","indices":[0,7]},{"screen_name":"BethMooreLPM","name":"Beth - Moore","id":156012476,"id_str":"156012476","indices":[8,21]}],"urls":[{"url":"https:\/\/t.co\/aTgHlioIbu","expanded_url":"http:\/\/shanejwood.com","display_url":"shanejwood.com","indices":[32,55]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1431239798367342598,"in_reply_to_status_id_str":"1431239798367342598","in_reply_to_user_id":14347872,"in_reply_to_user_id_str":"14347872","in_reply_to_screen_name":"xjm716","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383183226529837061\/8TGR66nR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383183226529837061\/8TGR66nR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1038927774273204230\/1537982570","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2874055685,"id_str":"2874055685","name":"Laurie\/life - divine","screen_name":"RJButtonColin","location":"Earth","description":"Live - and let live.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":1319,"listed_count":0,"created_at":"Wed - Nov 12 18:17:11 +0000 2014","favourites_count":26020,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1024,"lang":null,"status":{"created_at":"Sat - Mar 19 07:55:49 +0000 2022","id":1505090654304714752,"id_str":"1505090654304714752","text":"@HaiderA68273469 - Miss you terribly \ud83d\ude15.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HaiderA68273469","name":"Welcome - to Nature","id":1478537001179787264,"id_str":"1478537001179787264","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1478715907627180040,"in_reply_to_status_id_str":"1478715907627180040","in_reply_to_user_id":1478537001179787264,"in_reply_to_user_id_str":"1478537001179787264","in_reply_to_screen_name":"HaiderA68273469","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532598317499547649\/TJx2V_7O_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532598317499547649\/TJx2V_7O_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1206619042041094145,"id_str":"1206619042041094145","name":"Margaret - Boxill","screen_name":"BoxillMargaret","location":"","description":"RESIST! - \u201cPray for the dead and fight like hell for the living!\u201d-Mother Jones. No - DM\u2019s!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":312,"friends_count":888,"listed_count":0,"created_at":"Mon - Dec 16 16:56:43 +0000 2019","favourites_count":10744,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7235,"lang":null,"status":{"created_at":"Tue - Dec 14 08:27:58 +0000 2021","id":1470671898228887555,"id_str":"1470671898228887555","text":"RT - @OccupyDemocrats: BREAKING: On his last day at FOX News, Chris Wallace leaves - Lyndsey Graham speechless, blasting his hypocrisy for lyin\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Dec 13 02:48:36 +0000 2021","id":1470224104267689984,"id_str":"1470224104267689984","text":"BREAKING: - On his last day at FOX News, Chris Wallace leaves Lyndsey Graham speechless, - blasting his hypocrisy for l\u2026 https:\/\/t.co\/fQTXUmP88k","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fQTXUmP88k","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1470224104267689984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14328,"favorite_count":37340,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14328,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206620042147717120\/lPzQj2ap_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206620042147717120\/lPzQj2ap_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1313950897546895362,"id_str":"1313950897546895362","name":"Carolyn","screen_name":"Carolyn79922038","location":"","description":"I - am very outgoing and enjoy being around people.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":202,"listed_count":0,"created_at":"Wed - Oct 07 21:15:10 +0000 2020","favourites_count":33,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20,"lang":null,"status":{"created_at":"Wed - Dec 09 22:48:19 +0000 2020","id":1336804899397529600,"id_str":"1336804899397529600","text":"RT - @staceyabrams: Georgia, thank you. Together, we have changed the course of - our state for the better. But our work is not done. \n\nJoin me\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"staceyabrams","name":"Stacey - Abrams","id":216065430,"id_str":"216065430","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Nov 07 00:03:35 +0000 2020","id":1324865042148421633,"id_str":"1324865042148421633","text":"Georgia, - thank you. Together, we have changed the course of our state for the better. - But our work is not done. \n\nJ\u2026 https:\/\/t.co\/XWSyZzL7vK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XWSyZzL7vK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1324865042148421633","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66078,"favorite_count":307529,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":66078,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313951240167063552\/rL2UA-Mi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313951240167063552\/rL2UA-Mi_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":217567653,"id_str":"217567653","name":"Stacy - Mish","screen_name":"stacymish","location":"Chicago, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":8,"friends_count":294,"listed_count":0,"created_at":"Fri - Nov 19 21:58:59 +0000 2010","favourites_count":8390,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1061752947560865795\/_-cCrP3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061752947560865795\/_-cCrP3F_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280668716720705539,"id_str":"1280668716720705539","name":"Kay - Schettler","screen_name":"SchettlerKay","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":109,"listed_count":0,"created_at":"Wed - Jul 08 01:03:24 +0000 2020","favourites_count":4677,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":null,"status":{"created_at":"Thu - Mar 24 18:10:22 +0000 2022","id":1507057248194936834,"id_str":"1507057248194936834","text":"@DrOz - I hear they are hiring at Mar-a-Lago.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrOz","name":"Dr. - Mehmet Oz","id":38531995,"id_str":"38531995","indices":[0,5]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506747209966133252,"in_reply_to_status_id_str":"1506747209966133252","in_reply_to_user_id":38531995,"in_reply_to_user_id_str":"38531995","in_reply_to_screen_name":"DrOz","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280669179239174145\/Pr-T9lzq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280669179239174145\/Pr-T9lzq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1298563592783093760,"id_str":"1298563592783093760","name":"Khawla - Foudeh","screen_name":"KhawlaFoudeh","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 - \u0627\u0644\u0623\u0631\u062f\u0646\u064a\u0629 \u0627\u0644\u0647\u0627\u0634\u0645\u064a\u0629\u060c\u0639\u0645\u0627\u0646","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":24,"listed_count":0,"created_at":"Wed - Aug 26 10:11:11 +0000 2020","favourites_count":420,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Tue - Nov 10 23:59:33 +0000 2020","id":1326313577339351040,"id_str":"1326313577339351040","text":"@tayseernahar - \u0641\u064a \u062c\u0646\u0651\u0627\u062a \u0627\u0644\u0646\u0639\u064a\u0645 \ud83d\ude14","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1326284572649254913,"in_reply_to_status_id_str":"1326284572649254913","in_reply_to_user_id":4888736885,"in_reply_to_user_id_str":"4888736885","in_reply_to_screen_name":"tayseeralnoaimi","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322327504489775111\/KcO0WCO__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322327504489775111\/KcO0WCO__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1298563592783093760\/1598439383","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270060979099926530,"id_str":"1270060979099926530","name":"Patricia - Monteleone","screen_name":"Patrici01957626","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":132,"listed_count":0,"created_at":"Mon - Jun 08 18:32:01 +0000 2020","favourites_count":9047,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1011,"lang":null,"status":{"created_at":"Fri - Mar 25 21:11:13 +0000 2022","id":1507465149112000513,"id_str":"1507465149112000513","text":"@SaintsForecast - I have lost confidence in Allen. Now I know why he had a losing record in - vagas","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SaintsForecast","name":"Ralph - Malbrough","id":275141842,"id_str":"275141842","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507447521035132934,"in_reply_to_status_id_str":"1507447521035132934","in_reply_to_user_id":275141842,"in_reply_to_user_id_str":"275141842","in_reply_to_screen_name":"SaintsForecast","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1465175533390544904\/HhKGYwgs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1465175533390544904\/HhKGYwgs_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":82728960,"id_str":"82728960","name":"Kevin - Crabtree","screen_name":"KevinCrabtree2","location":"Lexington, Kentucky","description":"\ud83d\udc68\ud83c\udffb\u200d\u2695\ufe0f - \ud83c\udfbc \ud83e\uddf3 \ud83c\udfc0 \ud83e\udde2 \u2708\ufe0f \ud83c\udfa5 - \ud83c\udf77 \ud83c\udf70 \ud83c\udf74","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":77,"friends_count":3176,"listed_count":1,"created_at":"Thu - Oct 15 22:24:21 +0000 2009","favourites_count":89660,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1037,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400984022302461955\/B-3XuaTL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400984022302461955\/B-3XuaTL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82728960\/1593064515","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":471525356,"id_str":"471525356","name":"Julie","screen_name":"Spiezj","location":"Earth","description":"Explorer","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":622,"listed_count":0,"created_at":"Mon - Jan 23 00:01:38 +0000 2012","favourites_count":685,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1095,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2489960873\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2489960873\/image_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":150263132,"id_str":"150263132","name":"queenie - madrid","screen_name":"queeniexxpretty","location":"Philippines","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":173,"listed_count":0,"created_at":"Mon - May 31 14:00:20 +0000 2010","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":979,"lang":null,"status":{"created_at":"Fri - Jan 01 14:03:34 +0000 2021","id":1345007763642961920,"id_str":"1345007763642961920","text":"Future - looks bright \ud83c\udf1f\ud83c\udf1f #HappyNewYear2021 https:\/\/t.co\/foHSkf3UxE","truncated":false,"entities":{"hashtags":[{"text":"HappyNewYear2021","indices":[23,40]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1345007760144879617,"id_str":"1345007760144879617","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EqptboOUUAEl70s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqptboOUUAEl70s.jpg","url":"https:\/\/t.co\/foHSkf3UxE","display_url":"pic.twitter.com\/foHSkf3UxE","expanded_url":"https:\/\/twitter.com\/queeniexxpretty\/status\/1345007763642961920\/photo\/1","type":"photo","sizes":{"small":{"w":514,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1548,"h":2048,"resize":"fit"},"medium":{"w":907,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1345007760144879617,"id_str":"1345007760144879617","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EqptboOUUAEl70s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EqptboOUUAEl70s.jpg","url":"https:\/\/t.co\/foHSkf3UxE","display_url":"pic.twitter.com\/foHSkf3UxE","expanded_url":"https:\/\/twitter.com\/queeniexxpretty\/status\/1345007763642961920\/photo\/1","type":"photo","sizes":{"small":{"w":514,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1548,"h":2048,"resize":"fit"},"medium":{"w":907,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"011a05612b6a331c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/011a05612b6a331c.json","place_type":"city","name":"Pasig - City","full_name":"Pasig City, National Capital Region","country_code":"PH","country":"Republic - of the Philippines","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[121.0518106,14.542797],[121.1128785,14.542797],[121.1128785,14.6238158],[121.0518106,14.6238158]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D4D0CC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393459604105830402\/S-5fWKcO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393459604105830402\/S-5fWKcO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150263132\/1600404975","profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1314024049169903619,"id_str":"1314024049169903619","name":"Payal - Bhujwala","screen_name":"payalbhujwala","location":"","description":"Not your - average patakha! \u2728\n\nCreative everyday. \ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":340,"listed_count":0,"created_at":"Thu - Oct 08 02:05:35 +0000 2020","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Thu - Mar 17 17:04:25 +0000 2022","id":1504503937310863366,"id_str":"1504503937310863366","text":"@AdobeCare - @AdobeXD wake me up when (and if) XD is back on again. Seriously working with - XD makes me wonder did all\u2026 https:\/\/t.co\/3oMYkYIIWA","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AdobeCare","name":"Adobe - Care","id":111054522,"id_str":"111054522","indices":[0,10]},{"screen_name":"AdobeXD","name":"Adobe - XD","id":3689838915,"id_str":"3689838915","indices":[11,19]}],"urls":[{"url":"https:\/\/t.co\/3oMYkYIIWA","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504503937310863366","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":111054522,"in_reply_to_user_id_str":"111054522","in_reply_to_screen_name":"AdobeCare","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314024555594293249\/czehP3Dp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314024555594293249\/czehP3Dp_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":42966307,"id_str":"42966307","name":"Maria - Restuccia","screen_name":"MariaRAR","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":576,"listed_count":0,"created_at":"Wed - May 27 20:54:23 +0000 2009","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42966307\/1601514472","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40109235,"id_str":"40109235","name":"stevend","screen_name":"steven5362","location":"Boynton - Beach, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":764,"listed_count":0,"created_at":"Thu - May 14 22:54:45 +0000 2009","favourites_count":869,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1570,"lang":null,"status":{"created_at":"Sat - Mar 26 00:49:20 +0000 2022","id":1507520041574666246,"id_str":"1507520041574666246","text":"@ProgSquatch - Really good album but I grew up on the Gabriel\/Hackett Genesis which I much - prefer.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ProgSquatch","name":"Anthony - Rowsick","id":2779278176,"id_str":"2779278176","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507055917933682693,"in_reply_to_status_id_str":"1507055917933682693","in_reply_to_user_id":2779278176,"in_reply_to_user_id_str":"2779278176","in_reply_to_screen_name":"ProgSquatch","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1379486670492475401\/OaxJHCxX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1379486670492475401\/OaxJHCxX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40109235\/1631049804","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277861653489434624,"id_str":"1277861653489434624","name":"bigbird","screen_name":"penguinogordito","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":23,"friends_count":376,"listed_count":0,"created_at":"Tue - Jun 30 07:09:03 +0000 2020","favourites_count":96,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"status":{"created_at":"Fri - Dec 03 01:17:42 +0000 2021","id":1466577348350726144,"id_str":"1466577348350726144","text":"RT - @rothschildmd: Lost in the crazy of doxxing the son of the president and a - major TV infotainer: TUCKER CARLSON ASKED HUNTER BIDEN TO WRI\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rothschildmd","name":"Mike - Rothschild","id":30378270,"id_str":"30378270","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Dec 03 00:22:58 +0000 2021","id":1466563575619600388,"id_str":"1466563575619600388","text":"Lost - in the crazy of doxxing the son of the president and a major TV infotainer: - TUCKER CARLSON ASKED HUNTER BIDEN\u2026 https:\/\/t.co\/u5BJkyu7o0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/u5BJkyu7o0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1466563575619600388","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1466562723236311040,"in_reply_to_status_id_str":"1466562723236311040","in_reply_to_user_id":30378270,"in_reply_to_user_id_str":"30378270","in_reply_to_screen_name":"rothschildmd","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2038,"favorite_count":9925,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2038,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1460126466004467717\/ncLudGwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1460126466004467717\/ncLudGwm_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145322542,"id_str":"145322542","name":"Adrienne - L.","screen_name":"FromCAtoNevada","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":613,"listed_count":0,"created_at":"Tue - May 18 17:43:31 +0000 2010","favourites_count":62717,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6674,"lang":null,"status":{"created_at":"Fri - Mar 25 17:00:13 +0000 2022","id":1507401982977343488,"id_str":"1507401982977343488","text":"RT - @SRuhle: ONE MORE TIME -- THE CHIEF OF STAFF TO THE PRESIDENT OF THE UNITED - STATES WHO WAS TRYING TO STAY IN POWER ILLEGALLY-PLOTTED WIT\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SRuhle","name":"Stephanie - Ruhle","id":382685028,"id_str":"382685028","indices":[3,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 05:00:23 +0000 2022","id":1507220828861214760,"id_str":"1507220828861214760","text":"ONE - MORE TIME -- THE CHIEF OF STAFF TO THE PRESIDENT OF THE UNITED STATES WHO - WAS TRYING TO STAY IN POWER ILLEGALLY\u2026 https:\/\/t.co\/wGbivCVLzu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGbivCVLzu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507220828861214760","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51500,"favorite_count":207268,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":51500,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153387882\/2af557af-86cb-47e1-aa5d-88463b307569_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153387882\/2af557af-86cb-47e1-aa5d-88463b307569_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":194435774,"id_str":"194435774","name":"Fred - Rummel","screen_name":"frumbe3","location":"Van Nuys, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":2823,"listed_count":0,"created_at":"Fri - Sep 24 03:19:52 +0000 2010","favourites_count":49954,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7,"lang":null,"status":{"created_at":"Wed - Jun 09 11:31:45 +0000 2021","id":1402589227859144706,"id_str":"1402589227859144706","text":"RT - @LawmanAbigail: RT If You wanna be my sexting buddy\ud83c\udf37#pussy #anal - #ass #linda #liveshow #hotgirls #RT #dm #babe #brazzers #shavedpussy #s\u2026","truncated":false,"entities":{"hashtags":[{"text":"pussy","indices":[55,61]},{"text":"anal","indices":[62,67]},{"text":"ass","indices":[68,72]},{"text":"linda","indices":[73,79]},{"text":"liveshow","indices":[80,89]},{"text":"hotgirls","indices":[90,99]},{"text":"RT","indices":[100,103]},{"text":"dm","indices":[104,107]},{"text":"babe","indices":[108,113]},{"text":"brazzers","indices":[114,123]},{"text":"shavedpussy","indices":[124,136]}],"symbols":[],"user_mentions":[{"screen_name":"LawmanAbigail","name":"Abigail - Lawman","id":1274350030766444550,"id_str":"1274350030766444550","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - May 31 16:10:17 +0000 2021","id":1399397833619476487,"id_str":"1399397833619476487","text":"RT - If You wanna be my sexting buddy\ud83c\udf37#pussy #anal #ass #linda #liveshow - #hotgirls #RT #dm #babe #brazzers\u2026 https:\/\/t.co\/WvZq0hpZbG","truncated":true,"entities":{"hashtags":[{"text":"pussy","indices":[36,42]},{"text":"anal","indices":[43,48]},{"text":"ass","indices":[49,53]},{"text":"linda","indices":[54,60]},{"text":"liveshow","indices":[61,70]},{"text":"hotgirls","indices":[71,80]},{"text":"RT","indices":[81,84]},{"text":"dm","indices":[85,88]},{"text":"babe","indices":[89,94]},{"text":"brazzers","indices":[95,104]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WvZq0hpZbG","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1399397833619476487","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":57,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/830668532320841728\/x6DJYQG9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/830668532320841728\/x6DJYQG9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1098010324396060672,"id_str":"1098010324396060672","name":"mj_rhatigan","screen_name":"MjRhatigan","location":"Flyover - country ","description":"Perilously retired. I''ve set aside polish and embraced - patina. Comes a time.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":145,"listed_count":0,"created_at":"Wed - Feb 20 00:03:56 +0000 2019","favourites_count":361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1075,"lang":null,"status":{"created_at":"Wed - Jan 20 17:12:38 +0000 2021","id":1351940712535883778,"id_str":"1351940712535883778","text":"@parlertakes - The number 45 doesn''t deserve this beating.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"parlertakes","name":"ParlerTakes","id":1483986734350311426,"id_str":"1483986734350311426","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1351940270409936899,"in_reply_to_status_id_str":"1351940270409936899","in_reply_to_user_id":978265628426432512,"in_reply_to_user_id_str":"978265628426432512","in_reply_to_screen_name":"patriottakes","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1288212956971335680\/f4XnEtAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1288212956971335680\/f4XnEtAV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098010324396060672\/1586874677","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":576711813,"id_str":"576711813","name":"Dennis - Y. Datsomor","screen_name":"Dennis_Datsomor","location":"Mafi-kumase","description":"I - am a gentle, calm and easy-going person.","url":"https:\/\/t.co\/IO4eaPImbt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IO4eaPImbt","expanded_url":"https:\/\/www.twitter.com","display_url":"twitter.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":30,"friends_count":568,"listed_count":0,"created_at":"Thu - May 10 22:35:48 +0000 2012","favourites_count":17,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1325882372366151681\/V2gAOD5C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1325882372366151681\/V2gAOD5C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576711813\/1406475576","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223448635947413505,"id_str":"1223448635947413505","name":"SHARI - CURTISS","screen_name":"ShariCurtiss","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":34,"listed_count":0,"created_at":"Sat - Feb 01 03:31:19 +0000 2020","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223448804101251081\/r4fKqQBM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223448804101251081\/r4fKqQBM_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":23191497,"id_str":"23191497","name":"Julie - Winicour","screen_name":"Gins40","location":"Chicago","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":495,"listed_count":0,"created_at":"Sat - Mar 07 13:23:45 +0000 2009","favourites_count":5632,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1014,"lang":null,"status":{"created_at":"Sat - Mar 26 06:16:37 +0000 2022","id":1507602403616604160,"id_str":"1507602403616604160","text":"RT - @CREWcrew: The people loudest calling for Ketanji Brown Jackson to recuse - from a case about affirmative action at Harvard are awfully si\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CREWcrew","name":"Citizens - for Ethics","id":22187085,"id_str":"22187085","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:58:21 +0000 2022","id":1507326016481644564,"id_str":"1507326016481644564","text":"The - people loudest calling for Ketanji Brown Jackson to recuse from a case about - affirmative action at Harvard are\u2026 https:\/\/t.co\/6hYWa9TFkk","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6hYWa9TFkk","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507326016481644564","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2274,"favorite_count":6883,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2274,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1225543139533971461\/kEcnimHq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1225543139533971461\/kEcnimHq_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1572436447,"id_str":"1572436447","name":"Sherry - Talbott","screen_name":"SherryT510","location":"Chesapeake, VA","description":"Proud - mother, grandmother, RN, trying to maintain my sanity while living in the - insane world of dastardly DTrump and his merry minions. #Resistance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":964,"listed_count":0,"created_at":"Sat - Jul 06 09:47:26 +0000 2013","favourites_count":11602,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1913,"lang":null,"status":{"created_at":"Tue - Mar 22 21:36:31 +0000 2022","id":1506384352825036804,"id_str":"1506384352825036804","text":"https:\/\/t.co\/gmm9tN7ftU","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506384349603799041,"id_str":"1506384349603799041","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfAlbVXoAEVjWS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfAlbVXoAEVjWS.jpg","url":"https:\/\/t.co\/gmm9tN7ftU","display_url":"pic.twitter.com\/gmm9tN7ftU","expanded_url":"https:\/\/twitter.com\/SherryT510\/status\/1506384352825036804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":622,"h":680,"resize":"fit"},"large":{"w":878,"h":960,"resize":"fit"},"medium":{"w":878,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506384349603799041,"id_str":"1506384349603799041","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOfAlbVXoAEVjWS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOfAlbVXoAEVjWS.jpg","url":"https:\/\/t.co\/gmm9tN7ftU","display_url":"pic.twitter.com\/gmm9tN7ftU","expanded_url":"https:\/\/twitter.com\/SherryT510\/status\/1506384352825036804\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":622,"h":680,"resize":"fit"},"large":{"w":878,"h":960,"resize":"fit"},"medium":{"w":878,"h":960,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1434826215647481857\/HxNvbbMV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1434826215647481857\/HxNvbbMV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1572436447\/1571306032","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1261672865180549121,"id_str":"1261672865180549121","name":"Leonard - Aragon","screen_name":"Hope_sWitness","location":"Narnia, Latinoam\u00e9rica","description":"It\u2019s - our job to raise children who will make the world a little less cruel and - heartless. \u2013 L.R. Knost","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":161,"friends_count":3829,"listed_count":0,"created_at":"Sat - May 16 15:01:31 +0000 2020","favourites_count":2634,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2947,"lang":null,"status":{"created_at":"Fri - Mar 25 19:04:00 +0000 2022","id":1507433134643687426,"id_str":"1507433134643687426","text":"RT - @yeyonet: Francia M\u00e1rquez https:\/\/t.co\/QaRHafuC02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yeyonet","name":"Caricaturas - del Yeyo","id":47912432,"id_str":"47912432","indices":[3,11]}],"urls":[],"media":[{"id":1507308714096746516,"id_str":"1507308714096746516","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","url":"https:\/\/t.co\/QaRHafuC02","display_url":"pic.twitter.com\/QaRHafuC02","expanded_url":"https:\/\/twitter.com\/yeyonet\/status\/1507308716659466261\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1040,"h":1300,"resize":"fit"}},"source_status_id":1507308716659466261,"source_status_id_str":"1507308716659466261","source_user_id":47912432,"source_user_id_str":"47912432"}]},"extended_entities":{"media":[{"id":1507308714096746516,"id_str":"1507308714096746516","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","url":"https:\/\/t.co\/QaRHafuC02","display_url":"pic.twitter.com\/QaRHafuC02","expanded_url":"https:\/\/twitter.com\/yeyonet\/status\/1507308716659466261\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1040,"h":1300,"resize":"fit"}},"source_status_id":1507308716659466261,"source_status_id_str":"1507308716659466261","source_user_id":47912432,"source_user_id_str":"47912432"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 10:49:37 +0000 2022","id":1507308716659466261,"id_str":"1507308716659466261","text":"Francia - M\u00e1rquez https:\/\/t.co\/QaRHafuC02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507308714096746516,"id_str":"1507308714096746516","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","url":"https:\/\/t.co\/QaRHafuC02","display_url":"pic.twitter.com\/QaRHafuC02","expanded_url":"https:\/\/twitter.com\/yeyonet\/status\/1507308716659466261\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1040,"h":1300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507308714096746516,"id_str":"1507308714096746516","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOsJShaWYBQ9S34.jpg","url":"https:\/\/t.co\/QaRHafuC02","display_url":"pic.twitter.com\/QaRHafuC02","expanded_url":"https:\/\/twitter.com\/yeyonet\/status\/1507308716659466261\/photo\/1","type":"photo","sizes":{"small":{"w":544,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":1200,"resize":"fit"},"large":{"w":1040,"h":1300,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":207,"favorite_count":625,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":207,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262480457121308674\/80I4taE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262480457121308674\/80I4taE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261672865180549121\/1633441688","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2538322212,"id_str":"2538322212","name":"Kathryn - Dutton","screen_name":"k8_dutton","location":"","description":"IG: @ k8.dutton. she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":103,"listed_count":0,"created_at":"Sat - May 31 23:02:17 +0000 2014","favourites_count":12543,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":981,"lang":null,"status":{"created_at":"Wed - Mar 23 04:26:04 +0000 2022","id":1506487418937090048,"id_str":"1506487418937090048","text":"RT - @warlock333333: i think Jennifer Coolidge should have been the Batman","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"warlock333333","name":"devastating - ghost","id":1377527221036941315,"id_str":"1377527221036941315","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Mar 21 18:05:40 +0000 2022","id":1505968904027484168,"id_str":"1505968904027484168","text":"i - think Jennifer Coolidge should have been the Batman","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5266,"favorite_count":37003,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5266,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251958309403463681\/l-3XTnnD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251958309403463681\/l-3XTnnD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2538322212\/1480140839","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":201873916,"id_str":"201873916","name":"Mary - Keen","screen_name":"keensie","location":"Lake Forest, IL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":419,"listed_count":0,"created_at":"Tue - Oct 12 20:29:54 +0000 2010","favourites_count":106,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1282678687490613254,"id_str":"1282678687490613254","name":"Terry - in the UK","screen_name":"TerryintheUk","location":"Chelmsford ","description":"Living - in the UK. \ud83c\uddec\ud83c\udde7\nArmy veteran. Weapons Instructor.\nFather - & Grandfather.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":156,"listed_count":0,"created_at":"Mon - Jul 13 14:10:27 +0000 2020","favourites_count":1519,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":458,"lang":null,"status":{"created_at":"Sun - Mar 20 14:38:27 +0000 2022","id":1505554364714434566,"id_str":"1505554364714434566","text":"@kenolin1 - @DonaldJTrumpJr You''ll have to explain to Donald that a Laptop is not where - you put your coffee. He is one dumb SOB.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kenolin1","name":"Ken - Olin","id":164679813,"id_str":"164679813","indices":[0,9]},{"screen_name":"DonaldJTrumpJr","name":"Donald - Trump Jr.","id":39344374,"id_str":"39344374","indices":[10,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505406983502925825,"in_reply_to_status_id_str":"1505406983502925825","in_reply_to_user_id":164679813,"in_reply_to_user_id_str":"164679813","in_reply_to_screen_name":"kenolin1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302546627991920641\/K58M4SzT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302546627991920641\/K58M4SzT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1282678687490613254\/1597419029","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1397638838,"id_str":"1397638838","name":"AnnieM","screen_name":"mypotterybliss","location":"Spokane, - WA","description":"Retired, 42 yrs married,hippie Earth Mother, writer, gardener, - potter, Grandma of 8. Climate change is real. #TrumpCrimesCommission","url":"https:\/\/t.co\/p9BQAd0MPt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p9BQAd0MPt","expanded_url":"http:\/\/mypotterybliss.com","display_url":"mypotterybliss.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2918,"friends_count":5006,"listed_count":6,"created_at":"Thu - May 02 16:53:28 +0000 2013","favourites_count":70149,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":44280,"lang":null,"status":{"created_at":"Fri - Mar 25 17:25:29 +0000 2022","id":1507408343299633152,"id_str":"1507408343299633152","text":"\ud83d\ude4b\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc4d\ud83c\udffc\ud83d\udd90\ud83e\udd1a\ud83d\udc4b\ud83d\udc46\ud83c\udffe\u270c\ud83c\udffe\u270b\ud83c\udffc\u270b\ud83c\udffc\u261d\ud83c\udffc\ud83e\udd19\ud83c\udffd\ud83d\udc4f\ud83c\udffc\ud83e\udd1b\ud83e\udd1c\ud83e\udd18\ud83e\udd1f\ud83c\udffd\ud83d\udc4a\ud83c\udffe\ud83d\udd96\ud83c\udffc\u270c\ud83c\udffc\ud83d\ude4c\ud83c\udffc\ud83d\ude4b\ud83c\udffb\u200d\u2640\ufe0f\ud83d\ude4b\ud83c\udffb\u200d\u2640\ufe0f\ud83d\ude4b\ud83c\udffb\u200d\u2640\ufe0f\ud83d\ude4b\ud83c\udffb\u200d\u2640\ufe0f - https:\/\/t.co\/I1FSEzsGaz","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/I1FSEzsGaz","expanded_url":"https:\/\/twitter.com\/chipfranklin\/status\/1507384076805672964","display_url":"twitter.com\/chipfranklin\/s\u2026","indices":[58,81]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507384076805672964,"quoted_status_id_str":"1507384076805672964","retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1483144195141296132\/P-_oeK6J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1483144195141296132\/P-_oeK6J_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":796509508927361024,"id_str":"796509508927361024","name":"Eric - Blatte","screen_name":"EricBlatte","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":102,"listed_count":1,"created_at":"Thu - Nov 10 00:27:20 +0000 2016","favourites_count":128,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":null,"status":{"created_at":"Fri - Nov 12 15:49:19 +0000 2021","id":1459186554547720198,"id_str":"1459186554547720198","text":"RT - @ScottBlatte: Policing has been one of the most salient issues around for - the past 18 months, yet there\u2019s been remarkably little change\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ScottBlatte","name":"Scott - Blatte","id":912412368839348230,"id_str":"912412368839348230","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Nov 12 15:18:28 +0000 2021","id":1459178791310438403,"id_str":"1459178791310438403","text":"Policing - has been one of the most salient issues around for the past 18 months, yet - there\u2019s been remarkably little\u2026 https:\/\/t.co\/X4Vmd9Eiw9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X4Vmd9Eiw9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1459178791310438403","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1459160007161884672,"quoted_status_id_str":"1459160007161884672","retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1459160007161884672,"quoted_status_id_str":"1459160007161884672","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/809497718141788160\/bdc_3RPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/809497718141788160\/bdc_3RPC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1527226111,"id_str":"1527226111","name":"OGUNREMI - ADEBAYO","screen_name":"ironremi","location":"Lagos, Nigeria","description":"Always - smiling","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":799,"listed_count":0,"created_at":"Tue - Jun 18 08:55:37 +0000 2013","favourites_count":9825,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6710,"lang":null,"status":{"created_at":"Wed - Mar 16 21:03:30 +0000 2022","id":1504201715368837125,"id_str":"1504201715368837125","text":"@nxwestmidlands - Very well, your insights got it working back. Thank you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nxwestmidlands","name":"NX - West Midlands","id":326283133,"id_str":"326283133","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504080707093733386,"in_reply_to_status_id_str":"1504080707093733386","in_reply_to_user_id":326283133,"in_reply_to_user_id_str":"326283133","in_reply_to_screen_name":"nxwestmidlands","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000029884407\/2577c2c4bc2bc4c85dc1f6946c1d386a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000029884407\/2577c2c4bc2bc4c85dc1f6946c1d386a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1527226111\/1371915931","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":295580243,"id_str":"295580243","name":"Huda - Kamarudin","screen_name":"huda_2601","location":"Malaysia","description":"Stuck - with @Zakwan_Khidzir \ud83d\ude04\ud83d\ude04","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":250,"friends_count":150,"listed_count":0,"created_at":"Mon - May 09 09:17:20 +0000 2011","favourites_count":4331,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":38283,"lang":null,"status":{"created_at":"Sat - Mar 26 08:02:53 +0000 2022","id":1507629147115626496,"id_str":"1507629147115626496","text":"RT - @zakwan_khidzir: Kalau di bazar Ramadan, aku gemar beli dari peniaga yang - selalu meniaga di pasar malam.\n\nMereka bukan meniaga ikut tren\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zakwan_khidzir","name":"Zakwan - Khidzir","id":39445002,"id_str":"39445002","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 08:00:37 +0000 2022","id":1507628575515881475,"id_str":"1507628575515881475","text":"Kalau - di bazar Ramadan, aku gemar beli dari peniaga yang selalu meniaga di pasar - malam.\n\nMereka bukan meniaga ikut\u2026 https:\/\/t.co\/zHO9OMXdcL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zHO9OMXdcL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507628575515881475","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507598421678759939,"quoted_status_id_str":"1507598421678759939","retweet_count":4,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},"is_quote_status":true,"quoted_status_id":1507598421678759939,"quoted_status_id_str":"1507598421678759939","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/987154883089285120\/nvi7UcfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/987154883089285120\/nvi7UcfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/295580243\/1542003439","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":104169800,"id_str":"104169800","name":"OldLadyProf","screen_name":"NBereman","location":"Wichita, - Kansas","description":"Retired Faculty, Former Republican, Fiscal Conservative, - Social Liberal.\nNo DMS!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":637,"friends_count":2090,"listed_count":9,"created_at":"Tue - Jan 12 14:00:26 +0000 2010","favourites_count":70328,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7159,"lang":null,"status":{"created_at":"Thu - Mar 24 15:30:25 +0000 2022","id":1507016995874639877,"id_str":"1507016995874639877","text":"We - should take more. https:\/\/t.co\/Enn4X4TOvZ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Enn4X4TOvZ","expanded_url":"https:\/\/twitter.com\/nathaliejacoby1\/status\/1507015752066371603","display_url":"twitter.com\/nathaliejacoby\u2026","indices":[21,44]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507015752066371603,"quoted_status_id_str":"1507015752066371603","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9E9E9E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2769094543\/17007e3fd602f7b75c603030bd2c0596_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2769094543\/17007e3fd602f7b75c603030bd2c0596_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104169800\/1610576117","profile_link_color":"2C6069","profile_sidebar_border_color":"C4FFC9","profile_sidebar_fill_color":"E0E0E0","profile_text_color":"000606","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":249007331,"id_str":"249007331","name":"Me - Angry","screen_name":"letsrocktoday","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":82,"friends_count":1028,"listed_count":1,"created_at":"Tue - Feb 08 04:46:26 +0000 2011","favourites_count":38622,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":670,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308506353128869893\/xUa5NrG6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308506353128869893\/xUa5NrG6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249007331\/1600807135","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":866151074884853761,"id_str":"866151074884853761","name":"Mile","screen_name":"Mile99629338","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":1230,"listed_count":0,"created_at":"Sun - May 21 04:38:03 +0000 2017","favourites_count":2211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47758,"lang":null,"status":{"created_at":"Mon - May 03 03:14:59 +0000 2021","id":1389055863684440065,"id_str":"1389055863684440065","text":"RT - @cyhnbzkrt: O 8,5 milyar dolar i\u00e7in verilen destek \u00fclkemize ve b\u00f6lgemize - ter\u00f6r, katliamlar, kan, g\u00f6zya\u015f\u0131, par\u00e7alanm\u0131\u015f - bir b\u00f6lge, trilyon\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"cyhnbzkrt","name":"Ceyhun - Bozkurt","id":352575362,"id_str":"352575362","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - May 02 23:34:49 +0000 2021","id":1389000453812375555,"id_str":"1389000453812375555","text":"O - 8,5 milyar dolar i\u00e7in verilen destek \u00fclkemize ve b\u00f6lgemize - ter\u00f6r, katliamlar, kan, g\u00f6zya\u015f\u0131, par\u00e7alanm\u0131\u015f - bir b\u00f6lge\u2026 https:\/\/t.co\/A2ZQXKkcRT","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A2ZQXKkcRT","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1389000453812375555","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":145,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"tr"},"is_quote_status":false,"retweet_count":37,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tr"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1266484080851501057,"id_str":"1266484080851501057","name":"RedSparrowSpunk - (education and enlightenment)","screen_name":"red_spunk","location":"Toronto, - no f_king way the USA","description":"Proud Trump Hater, BLM, exterminate - the GOP, save the environment, nature lover, right-wing Americans are stupid","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2329,"friends_count":4532,"listed_count":3,"created_at":"Fri - May 29 21:38:54 +0000 2020","favourites_count":17596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9539,"lang":null,"status":{"created_at":"Tue - Nov 24 01:01:44 +0000 2020","id":1331040271082156034,"id_str":"1331040271082156034","text":"RT - @MSignorile: What''s so beautiful is that Trump looks so weak.\n\nHe couldn\u2019t - buy or bully those GOP legislators.\n\nA right-wing judge in PA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSignorile","name":"Michelangelo - Signorile","id":18124790,"id_str":"18124790","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 24 00:53:23 +0000 2020","id":1331038169601597443,"id_str":"1331038169601597443","text":"What''s - so beautiful is that Trump looks so weak.\n\nHe couldn\u2019t buy or bully - those GOP legislators.\n\nA right-wing jud\u2026 https:\/\/t.co\/dtLVzBYlTn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dtLVzBYlTn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1331038169601597443","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":205,"favorite_count":1438,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":205,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279764584950312960\/917owBTz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279764584950312960\/917owBTz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266484080851501057\/1604415058","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":891242059,"id_str":"891242059","name":"Gayle - (Peace \ud83c\uddfa\ud83c\udde6) Wright","screen_name":"NannieTootsie","location":"Rockport, - TX","description":"Life is too short to waste it! Don''t miss a chance to - make a difference! And, be kind -- Pay it forward! Love Good Trouble! #RockportStrong","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":895,"listed_count":2,"created_at":"Fri - Oct 19 15:44:26 +0000 2012","favourites_count":9735,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2821,"lang":null,"status":{"created_at":"Mon - Mar 21 15:38:16 +0000 2022","id":1505931806272815106,"id_str":"1505931806272815106","text":"@Chrisbucfalcon - @DawnAlene64 He is totally experiencing a downhill spiral of mental health.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chrisbucfalcon","name":"Chris - \ud83c\uddfa\ud83c\udde6\ud83d\ude08\ud83d\udc15\ud83c\udfb8\ud83c\udfcb\ud83c\udffc\u200d\u2640\ufe0f\u264f\ufe0f - \ud83c\udf0a\ud83c\udfa7","id":1378296185308471297,"id_str":"1378296185308471297","indices":[0,15]},{"screen_name":"DawnAlene64","name":"Dawn - Alene \ud83c\uddfa\ud83c\uddf8\ud83c\udde8\ud83c\udde6","id":1234524502500921347,"id_str":"1234524502500921347","indices":[16,28]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1505930772234002436,"in_reply_to_status_id_str":"1505930772234002436","in_reply_to_user_id":1378296185308471297,"in_reply_to_user_id_str":"1378296185308471297","in_reply_to_screen_name":"Chrisbucfalcon","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473092250640998401\/UZ5Q0GR2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473092250640998401\/UZ5Q0GR2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891242059\/1578011863","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":279405717,"id_str":"279405717","name":"Tandem - Comm","screen_name":"TandemComm","location":"Atlanta, Georgia","description":"A - political and business development firm that is committed to providing our - clients with winning strategies and designs. RT''s do not represent endorsements.","url":"https:\/\/t.co\/q4ILvu0VXy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/q4ILvu0VXy","expanded_url":"http:\/\/tandemcommunications.com","display_url":"tandemcommunications.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":3535,"listed_count":6,"created_at":"Sat - Apr 09 06:04:11 +0000 2011","favourites_count":327,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12223,"lang":null,"status":{"created_at":"Thu - Mar 10 17:56:41 +0000 2022","id":1501980374926348291,"id_str":"1501980374926348291","text":"RT - @thehill: NEW: Trump asking supporters to fund new plane after emergency landing - https:\/\/t.co\/ocbQz1tU8M https:\/\/t.co\/sZ5twiNwrJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/ocbQz1tU8M","expanded_url":"http:\/\/hill.cm\/PIQZbzF","display_url":"hill.cm\/PIQZbzF","indices":[84,107]}],"media":[{"id":1501949280998682629,"id_str":"1501949280998682629","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","url":"https:\/\/t.co\/sZ5twiNwrJ","display_url":"pic.twitter.com\/sZ5twiNwrJ","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1501949283276316673\/photo\/1","type":"photo","sizes":{"large":{"w":645,"h":363,"resize":"fit"},"medium":{"w":645,"h":363,"resize":"fit"},"small":{"w":645,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1501949283276316673,"source_status_id_str":"1501949283276316673","source_user_id":1917731,"source_user_id_str":"1917731"}]},"extended_entities":{"media":[{"id":1501949280998682629,"id_str":"1501949280998682629","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","url":"https:\/\/t.co\/sZ5twiNwrJ","display_url":"pic.twitter.com\/sZ5twiNwrJ","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1501949283276316673\/photo\/1","type":"photo","sizes":{"large":{"w":645,"h":363,"resize":"fit"},"medium":{"w":645,"h":363,"resize":"fit"},"small":{"w":645,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1501949283276316673,"source_status_id_str":"1501949283276316673","source_user_id":1917731,"source_user_id_str":"1917731"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 15:53:08 +0000 2022","id":1501949283276316673,"id_str":"1501949283276316673","text":"NEW: - Trump asking supporters to fund new plane after emergency landing https:\/\/t.co\/ocbQz1tU8M - https:\/\/t.co\/sZ5twiNwrJ","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ocbQz1tU8M","expanded_url":"http:\/\/hill.cm\/PIQZbzF","display_url":"hill.cm\/PIQZbzF","indices":[71,94]}],"media":[{"id":1501949280998682629,"id_str":"1501949280998682629","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","url":"https:\/\/t.co\/sZ5twiNwrJ","display_url":"pic.twitter.com\/sZ5twiNwrJ","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1501949283276316673\/photo\/1","type":"photo","sizes":{"large":{"w":645,"h":363,"resize":"fit"},"medium":{"w":645,"h":363,"resize":"fit"},"small":{"w":645,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1501949280998682629,"id_str":"1501949280998682629","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNf-6dSUcAUDUVt.png","url":"https:\/\/t.co\/sZ5twiNwrJ","display_url":"pic.twitter.com\/sZ5twiNwrJ","expanded_url":"https:\/\/twitter.com\/thehill\/status\/1501949283276316673\/photo\/1","type":"photo","sizes":{"large":{"w":645,"h":363,"resize":"fit"},"medium":{"w":645,"h":363,"resize":"fit"},"small":{"w":645,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":492,"favorite_count":1633,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":492,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514145473519566848\/awutms6t_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514145473519566848\/awutms6t_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279405717\/1452051908","profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1311552874447429632,"id_str":"1311552874447429632","name":"JakeRyan","screen_name":"NavyBlu02","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":215,"listed_count":0,"created_at":"Thu - Oct 01 06:25:58 +0000 2020","favourites_count":678,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1080,"lang":null,"status":{"created_at":"Thu - Dec 24 16:49:36 +0000 2020","id":1342150443007410176,"id_str":"1342150443007410176","text":"RT - @CongressmanHice: .@realDonaldTrump has fought honorably for America. Now - it''s our time to fight for him AND America!\n\nWhy are so many u\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CongressmanHice","name":"Rep. - Jody Hice","id":2975091705,"id_str":"2975091705","indices":[3,19]},{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[22,38]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 23 13:26:56 +0000 2020","id":1341737053436977153,"id_str":"1341737053436977153","text":".@realDonaldTrump - has fought honorably for America. Now it''s our time to fight for him AND - America!\n\nWhy are so man\u2026 https:\/\/t.co\/rDm2XGKpDN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald - J. Trump","id":25073877,"id_str":"25073877","indices":[1,17]}],"urls":[{"url":"https:\/\/t.co\/rDm2XGKpDN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1341737053436977153","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1588,"favorite_count":7682,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1588,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313163707380162561\/HmNrw2C8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313163707380162561\/HmNrw2C8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1311552874447429632\/1601917634","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1355552232,"id_str":"1355552232","name":"scott - f. kauffman","screen_name":"barmankauflow","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":343,"listed_count":1,"created_at":"Mon - Apr 15 23:16:55 +0000 2013","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":147,"lang":null,"status":{"created_at":"Tue - Mar 22 18:39:38 +0000 2022","id":1506339837829214209,"id_str":"1506339837829214209","text":"RT - @Will_Bunch: Two things can be true at the same time\n\nKetanji Brown Jackson - never referred to George W. Bush and Donald Rumsfeld as \"war\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Will_Bunch","name":"Will - Bunch","id":17824099,"id_str":"17824099","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 18:02:47 +0000 2022","id":1506330564592238593,"id_str":"1506330564592238593","text":"Two - things can be true at the same time\n\nKetanji Brown Jackson never referred - to George W. Bush and Donald Rumsfeld\u2026 https:\/\/t.co\/nfdSzwoATB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nfdSzwoATB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506330564592238593","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":704,"favorite_count":3659,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":704,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596715924561924097\/x1K-doDE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596715924561924097\/x1K-doDE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":755496228272635905,"id_str":"755496228272635905","name":"Greig - Young","screen_name":"Young3Greig","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":49,"friends_count":687,"listed_count":0,"created_at":"Tue - Jul 19 20:15:12 +0000 2016","favourites_count":418,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/755513122308358144\/sT2rDpcp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/755513122308358144\/sT2rDpcp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/755496228272635905\/1470607396","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1460725532,"id_str":"1460725532","name":"Trump - for all","screen_name":"dudemanfrench","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":366,"listed_count":0,"created_at":"Sun - May 26 21:53:41 +0000 2013","favourites_count":566,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9246,"lang":null,"status":{"created_at":"Fri - Dec 17 13:37:14 +0000 2021","id":1471836890995245060,"id_str":"1471836890995245060","text":"@BernieSanders - Then move","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie - Sanders","id":216776631,"id_str":"216776631","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1470444404804501504,"in_reply_to_status_id_str":"1470444404804501504","in_reply_to_user_id":216776631,"in_reply_to_user_id_str":"216776631","in_reply_to_screen_name":"BernieSanders","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":279270528,"id_str":"279270528","name":"PC","screen_name":"thesicilian_15","location":"earth - mostly ","description":"It is time for revolution\ud83c\uddfa\ud83c\uddf8 - \ud83c\uddee\ud83c\uddf9 \u270a Music Animals Family Go Blue Rock My World - Rock and Roll Blues Jazz Trip Hop ...human resources executive crush the Nazis","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1465,"friends_count":2773,"listed_count":1,"created_at":"Fri - Apr 08 23:09:39 +0000 2011","favourites_count":31675,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16617,"lang":null,"status":{"created_at":"Thu - Dec 23 23:27:10 +0000 2021","id":1474159677013258247,"id_str":"1474159677013258247","text":"RT - @amyklobuchar: If we don\u2019t do something, the right to vote is in danger. - 13 new restrictive bills have already been pre-filed in states\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"amyklobuchar","name":"Amy - Klobuchar","id":33537967,"id_str":"33537967","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 23 17:24:02 +0000 2021","id":1474068294080602113,"id_str":"1474068294080602113","text":"If - we don\u2019t do something, the right to vote is in danger. 13 new restrictive - bills have already been pre-filed in s\u2026 https:\/\/t.co\/BQTVxew515","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BQTVxew515","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1474068294080602113","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4872,"favorite_count":21078,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4872,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271107589863092230\/_YhgLg2L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271107589863092230\/_YhgLg2L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279270528\/1606452241","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":874998633967624193,"id_str":"874998633967624193","name":"Janet - D.","screen_name":"JanetD1927","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":1,"friends_count":70,"listed_count":0,"created_at":"Wed - Jun 14 14:35:05 +0000 2017","favourites_count":52214,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":323,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424352536258129925\/-aZsysRV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424352536258129925\/-aZsysRV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874998633967624193\/1593277351","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33960051,"id_str":"33960051","name":"Bonnie - Armellini","screen_name":"bosuar","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":512,"listed_count":0,"created_at":"Tue - Apr 21 16:46:05 +0000 2009","favourites_count":96,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Fri - Jun 18 03:55:21 +0000 2021","id":1405735860151078913,"id_str":"1405735860151078913","text":"@thehill - @tedcruz You are a disgrace!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[9,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1405571028693262338,"in_reply_to_status_id_str":"1405571028693262338","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660685290168696832\/DcpfLeDG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660685290168696832\/DcpfLeDG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3686731648,"id_str":"3686731648","name":"Julia","screen_name":"jldeutsch5","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":13,"friends_count":2413,"listed_count":0,"created_at":"Thu - Sep 17 14:49:47 +0000 2015","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165323715065929729,"id_str":"1165323715065929729","name":"Larry - Lipkin","screen_name":"LarryLipkin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":357,"listed_count":0,"created_at":"Sat - Aug 24 18:03:34 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Mon - Feb 07 20:48:45 +0000 2022","id":1490789654307692545,"id_str":"1490789654307692545","text":"@SteveSchmidtSES - Oh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SteveSchmidtSES","name":"Steve - Schmidt","id":786309892990574592,"id_str":"786309892990574592","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1490709722088947719,"in_reply_to_status_id_str":"1490709722088947719","in_reply_to_user_id":786309892990574592,"in_reply_to_user_id_str":"786309892990574592","in_reply_to_screen_name":"SteveSchmidtSES","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1218545961158500354,"id_str":"1218545961158500354","name":"Juco - Basketball Guy\ud83c\udfc0\ud83c\udfc0\ud83c\udfc0\ud83c\udfc0\ud83c\udfc0\ud83c\udfc0","screen_name":"Basketb14442569","location":"","description":"Love - basketball \ud83c\udfc0Have watched Juco basketball for over 38 years!Big - supporter of Florida Southwestern Bucs one of the top Juco programs in the - country\ud83e\udd4e\u26be\ufe0f\ud83c\udfd0","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":535,"friends_count":1294,"listed_count":1,"created_at":"Sat - Jan 18 14:50:02 +0000 2020","favourites_count":40025,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46823,"lang":null,"status":{"created_at":"Sat - Mar 26 03:01:52 +0000 2022","id":1507553391408553987,"id_str":"1507553391408553987","text":"RT - @ReallyActivist: Mark Meadows cell phone is everything Republicans wish Hunter - Biden\u2019s laptop was.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallyActivist","name":"YS","id":1460296413930131457,"id_str":"1460296413930131457","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:19:29 +0000 2022","id":1507452128498921473,"id_str":"1507452128498921473","text":"Mark - Meadows cell phone is everything Republicans wish Hunter Biden\u2019s laptop - was.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7927,"favorite_count":42397,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7927,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247684734068699136\/xeqperjQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247684734068699136\/xeqperjQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218545961158500354\/1586306132","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1156455769958703104,"id_str":"1156455769958703104","name":"Ralph","screen_name":"Ralphking1987","location":"","description":"I - am a good and gentle guy","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":845,"friends_count":2555,"listed_count":0,"created_at":"Wed - Jul 31 06:45:16 +0000 2019","favourites_count":77108,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":921,"lang":null,"status":{"created_at":"Sat - Mar 19 22:37:50 +0000 2022","id":1505312621335130113,"id_str":"1505312621335130113","text":"@desmond_ibude - Me too","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"desmond_ibude","name":"MILES\u26bd\ufe0f\u26bd\ufe0fLUBANZI\ud83c\uddf3\ud83c\uddec","id":759828648488800256,"id_str":"759828648488800256","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505289447574802441,"in_reply_to_status_id_str":"1505289447574802441","in_reply_to_user_id":759828648488800256,"in_reply_to_user_id_str":"759828648488800256","in_reply_to_screen_name":"desmond_ibude","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183633339430985728\/Rpp_LgqZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183633339430985728\/Rpp_LgqZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156455769958703104\/1631521037","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1270874945590120448,"id_str":"1270874945590120448","name":"Benjamin - P Quintero","screen_name":"BenjaminPQuint1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":27,"listed_count":0,"created_at":"Thu - Jun 11 00:26:58 +0000 2020","favourites_count":64,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Sat - Mar 19 02:48:27 +0000 2022","id":1505013301972926464,"id_str":"1505013301972926464","text":"@inquirerdotnet - It Is the fact that our simple life should be given for the good of everyone. - Whether you like it n\u2026 https:\/\/t.co\/1tVpH1tNwl","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"inquirerdotnet","name":"Inquirer","id":15448383,"id_str":"15448383","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/1tVpH1tNwl","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505013301972926464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1504799028810502144,"in_reply_to_status_id_str":"1504799028810502144","in_reply_to_user_id":15448383,"in_reply_to_user_id_str":"15448383","in_reply_to_screen_name":"inquirerdotnet","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1313807109746814976\/xpsBx9ma_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1313807109746814976\/xpsBx9ma_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":825195704951808000,"id_str":"825195704951808000","name":"Awulaa - Akua Eyison","screen_name":"AwulaaE","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":738,"listed_count":0,"created_at":"Sat - Jan 28 04:16:02 +0000 2017","favourites_count":2253,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Oct 22 23:35:47 +0000 2021","id":1451693797503422467,"id_str":"1451693797503422467","text":"COVID-19: - US Embassy in Ghana shuts down temporarily via @citi973 https:\/\/t.co\/QWPtPFULGY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Citi973","name":"CitiNewsroom","id":104872280,"id_str":"104872280","indices":[57,65]}],"urls":[{"url":"https:\/\/t.co\/QWPtPFULGY","expanded_url":"https:\/\/citinewsroom.com\/2020\/03\/covid-19-us-embassy-in-ghana-shuts-down-temporarily\/","display_url":"citinewsroom.com\/2020\/03\/covid-\u2026","indices":[66,89]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1103949709016625152\/u_BYTLDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103949709016625152\/u_BYTLDr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4821078623,"id_str":"4821078623","name":"Mountbattie","screen_name":"barbara_skidgel","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":742,"friends_count":3019,"listed_count":1,"created_at":"Sun - Jan 17 13:43:34 +0000 2016","favourites_count":3638,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10885,"lang":null,"status":{"created_at":"Tue - Jan 25 16:39:21 +0000 2022","id":1486015846195548171,"id_str":"1486015846195548171","text":"Digital - Art Cat Poster for sale - 9x12 - $6.00 - Passage included https:\/\/t.co\/ObyEb73fxp","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ObyEb73fxp","expanded_url":"https:\/\/www.instagram.com\/gulfhagus\/p\/CZKPoQ1lW_s\/?utm_medium=twitter","display_url":"instagram.com\/gulfhagus\/p\/CZ\u2026","indices":[66,89]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227701106727378944\/9AxnzDz9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227701106727378944\/9AxnzDz9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4821078623\/1581542155","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2289922183,"id_str":"2289922183","name":"Lucy - Quimby","screen_name":"LucyQuimby","location":"Bangor, Maine","description":"Nature - is not a place to visit; it is home.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":403,"friends_count":1201,"listed_count":15,"created_at":"Mon - Jan 13 16:26:26 +0000 2014","favourites_count":73119,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78112,"lang":null,"status":{"created_at":"Sat - Mar 26 07:04:23 +0000 2022","id":1507614422851805187,"id_str":"1507614422851805187","text":"RT - @RBReich: Only Chief Justice John Roberts can get Clarence Thomas to recuse - himself from all cases involving Jan 6. To preserve what rem\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RBReich","name":"Robert - Reich","id":148529707,"id_str":"148529707","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 20:59:18 +0000 2022","id":1507462150364745731,"id_str":"1507462150364745731","text":"Only - Chief Justice John Roberts can get Clarence Thomas to recuse himself from - all cases involving Jan 6. To preser\u2026 https:\/\/t.co\/QtS77XIpw9","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QtS77XIpw9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507462150364745731","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4461,"favorite_count":22795,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4461,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424003860131086336\/OkgMOvWI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424003860131086336\/OkgMOvWI_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1303053058855768065,"id_str":"1303053058855768065","name":"Amy - Zenk","screen_name":"ZenkAmy","location":"Mesa, AZ","description":"Just a - gal trying to survive 2020.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":440,"listed_count":0,"created_at":"Mon - Sep 07 19:31:36 +0000 2020","favourites_count":9979,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1357,"lang":null,"status":{"created_at":"Sat - Oct 16 16:37:58 +0000 2021","id":1449414324326334469,"id_str":"1449414324326334469","text":"RT - @joelockhart: 51 Senators oppose legislation to stem the tide of climate change. Inaction - will profoundly effect the quality of life, h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joelockhart","name":"Joe - Lockhart","id":101816065,"id_str":"101816065","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Oct 16 14:08:30 +0000 2021","id":1449376710789668868,"id_str":"1449376710789668868","text":"51 - Senators oppose legislation to stem the tide of climate change. Inaction - will profoundly effect the quality of\u2026 https:\/\/t.co\/nWVSdQtuKp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nWVSdQtuKp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1449376710789668868","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":333,"favorite_count":1098,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":333,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329860877164498946\/3N1Xjbvo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329860877164498946\/3N1Xjbvo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1303053058855768065\/1602333620","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":927338865211379712,"id_str":"927338865211379712","name":"\ud83c\udf1f\u26a1\ufe0f","screen_name":"superstar_jnr","location":"\ud83c\uddf3\ud83c\uddec","description":"GOD - is the Greatest\ud83d\ude4f\ud83c\udffe","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":111,"friends_count":766,"listed_count":0,"created_at":"Mon - Nov 06 00:56:29 +0000 2017","favourites_count":8289,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":771,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502794431010783232\/ESi1-y6P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502794431010783232\/ESi1-y6P_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1385710496,"id_str":"1385710496","name":"Ron - Schoenberg","screen_name":"The_Last_Age","location":"Burien, Washington, USA","description":"","url":"https:\/\/t.co\/DC1RGvCDjw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DC1RGvCDjw","expanded_url":"http:\/\/faculty.washington.edu\/rons\/","display_url":"faculty.washington.edu\/rons\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":534,"listed_count":0,"created_at":"Sat - Apr 27 23:48:01 +0000 2013","favourites_count":10920,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8725,"lang":null,"status":{"created_at":"Sat - Mar 26 03:27:59 +0000 2022","id":1507559966923624450,"id_str":"1507559966923624450","text":"@PaulCogan - \u00c0ll Republican responses were propaganda. They really don''t believe - what they said.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulCogan","name":"Paul - Cogan","id":110194870,"id_str":"110194870","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507388317150683145,"in_reply_to_status_id_str":"1507388317150683145","in_reply_to_user_id":110194870,"in_reply_to_user_id_str":"110194870","in_reply_to_screen_name":"PaulCogan","geo":null,"coordinates":null,"place":{"id":"531b8f14eaf6c48e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/531b8f14eaf6c48e.json","place_type":"city","name":"Burien","full_name":"Burien, - WA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-122.382962,47.4308143],[-122.3116078,47.4308143],[-122.3116078,47.499304],[-122.382962,47.499304]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1385078010043191301\/UyfPH65f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1385078010043191301\/UyfPH65f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1385710496\/1608932672","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2883695008,"id_str":"2883695008","name":"MUFASA","screen_name":"kingLapalo","location":"Universe","description":"Gunners - | Gemini | 042 | 420 | OTF | | Sarcasm | #ENDSARS #keepItOn","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":650,"friends_count":4406,"listed_count":4,"created_at":"Wed - Nov 19 05:37:43 +0000 2014","favourites_count":124189,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":24691,"lang":null,"status":{"created_at":"Sat - Mar 26 08:54:55 +0000 2022","id":1507642239207493641,"id_str":"1507642239207493641","text":"RT - @itzbasito: You want to chill with the big boys? \nYou get Hot 100 top 10 - entry? \nYou get double Platinum song?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"itzbasito","name":"BASITO","id":495251347,"id_str":"495251347","indices":[3,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:41:47 +0000 2022","id":1507623835151048704,"id_str":"1507623835151048704","text":"You - want to chill with the big boys? \nYou get Hot 100 top 10 entry? \nYou get - double Platinum song?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":514,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":162,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443817853073850371\/VEMc6Cwo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443817853073850371\/VEMc6Cwo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883695008\/1645429628","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297161204109119488,"id_str":"1297161204109119488","name":"gerry - kavanagh","screen_name":"gerrykavanagh7","location":"Waterford, Ireland","description":"have - worked in retail at all levels since I was 14 interests - include travel , fitness and politics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":2411,"listed_count":2,"created_at":"Sat - Aug 22 13:18:42 +0000 2020","favourites_count":3028,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":372,"lang":null,"status":{"created_at":"Tue - Nov 30 18:50:20 +0000 2021","id":1465755091366035464,"id_str":"1465755091366035464","text":"Is - pierce Doherty from Sinn Fein serious when he said in the dail today that - the average house in donegal is 2400 s\u2026 https:\/\/t.co\/dkENHasZLc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dkENHasZLc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1465755091366035464","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297603823398260737\/TXruwbEU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297603823398260737\/TXruwbEU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1165711008394022912,"id_str":"1165711008394022912","name":"izzy","screen_name":"izzyydaviess","location":"","description":"18, - seratonin deficient. she\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":349,"listed_count":0,"created_at":"Sun - Aug 25 19:42:27 +0000 2019","favourites_count":6342,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1114,"lang":null,"status":{"created_at":"Fri - Mar 11 23:31:02 +0000 2022","id":1502426906418982922,"id_str":"1502426906418982922","text":"RT - @kamm_lester: People when People when \nBritney Spears - says Vs. Kim K says\n\u201cYou Better Work \u201cGet\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kamm_lester","name":"Kam - Lester \ud83e\ude90","id":2226007632,"id_str":"2226007632","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 10 15:21:54 +0000 2022","id":1501941421862842375,"id_str":"1501941421862842375","text":"People - when People when \nBritney Spears says Vs. Kim K - says\n\u201cYou Better Work\u2026 https:\/\/t.co\/lwCnp1qQ0d","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lwCnp1qQ0d","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1501941421862842375","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[104,127]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2007,"favorite_count":12712,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2007,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429096348096286721\/q1SNUE-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429096348096286721\/q1SNUE-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1165711008394022912\/1617726524","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280104372484128769,"id_str":"1280104372484128769","name":"Debbie - Murray","screen_name":"DebbieM34302316","location":"","description":"Handicapped - widow who is learning to be happy again","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2,"friends_count":197,"listed_count":0,"created_at":"Mon - Jul 06 11:41:03 +0000 2020","favourites_count":2450,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":180,"lang":null,"status":{"created_at":"Mon - Dec 28 17:36:41 +0000 2020","id":1343611844397854723,"id_str":"1343611844397854723","text":"RT - @JRubinBlogger: Hey, @marcorubio, @SenRickScott, @TomCottonAR @tedcruz et - al.: Why should we trust any of you ever again after enabling\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JRubinBlogger","name":"Jennifer - ''I stand with Ukraine'' Rubin \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","id":218975278,"id_str":"218975278","indices":[3,17]},{"screen_name":"marcorubio","name":"Marco - Rubio","id":15745368,"id_str":"15745368","indices":[24,35]},{"screen_name":"SenRickScott","name":"Rick - Scott","id":131546062,"id_str":"131546062","indices":[37,50]},{"screen_name":"TomCottonAR","name":"Tom - Cotton","id":343041182,"id_str":"343041182","indices":[52,64]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[66,74]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Dec 28 01:39:40 +0000 2020","id":1343371001632092161,"id_str":"1343371001632092161","text":"Hey, - @marcorubio, @SenRickScott, @TomCottonAR @tedcruz et al.: Why should we trust - any of you ever again after ena\u2026 https:\/\/t.co\/HKp9zV12UC","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marcorubio","name":"Marco - Rubio","id":15745368,"id_str":"15745368","indices":[5,16]},{"screen_name":"SenRickScott","name":"Rick - Scott","id":131546062,"id_str":"131546062","indices":[18,31]},{"screen_name":"TomCottonAR","name":"Tom - Cotton","id":343041182,"id_str":"343041182","indices":[33,45]},{"screen_name":"tedcruz","name":"Ted - Cruz","id":23022687,"id_str":"23022687","indices":[47,55]}],"urls":[{"url":"https:\/\/t.co\/HKp9zV12UC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1343371001632092161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5209,"favorite_count":31645,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5209,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":723598886535856129,"id_str":"723598886535856129","name":"Ron - Rother","screen_name":"rother_ron","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":327,"listed_count":0,"created_at":"Fri - Apr 22 19:46:33 +0000 2016","favourites_count":2460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":null,"status":{"created_at":"Thu - Dec 16 01:47:17 +0000 2021","id":1471295835170299907,"id_str":"1471295835170299907","text":"RT - @Cincinneumeyer: 2 votes per Retweet today\n\n#ProBowlVote + @Joe_MainMixon - \n#ProBowlVote + #TreyHendrickson\n#ProBowlVote + @Real10jayy__\u2026","truncated":false,"entities":{"hashtags":[{"text":"ProBowlVote","indices":[47,59]},{"text":"ProBowlVote","indices":[78,90]},{"text":"TreyHendrickson","indices":[93,109]},{"text":"ProBowlVote","indices":[110,122]}],"symbols":[],"user_mentions":[{"screen_name":"Cincinneumeyer","name":"Jack - \ud83d\udca5","id":1077584746794926081,"id_str":"1077584746794926081","indices":[3,18]},{"screen_name":"Joe_MainMixon","name":"\u26a1\ufe0fPrimetime!!!\u26a1\ufe0f","id":459973936,"id_str":"459973936","indices":[62,76]},{"screen_name":"Real10jayy__","name":"Ja\u2019MarrChase","id":2205597679,"id_str":"2205597679","indices":[125,138]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 15 16:46:38 +0000 2021","id":1471159777124360196,"id_str":"1471159777124360196","text":"2 - votes per Retweet today\n\n#ProBowlVote + @Joe_MainMixon \n#ProBowlVote + - #TreyHendrickson\n#ProBowlVote +\u2026 https:\/\/t.co\/hX88wVWyo9","truncated":true,"entities":{"hashtags":[{"text":"ProBowlVote","indices":[27,39]},{"text":"ProBowlVote","indices":[58,70]},{"text":"TreyHendrickson","indices":[73,89]},{"text":"ProBowlVote","indices":[90,102]}],"symbols":[],"user_mentions":[{"screen_name":"Joe_MainMixon","name":"\u26a1\ufe0fPrimetime!!!\u26a1\ufe0f","id":459973936,"id_str":"459973936","indices":[42,56]}],"urls":[{"url":"https:\/\/t.co\/hX88wVWyo9","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471159777124360196","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[106,129]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":184,"favorite_count":62,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":184,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1010893777,"id_str":"1010893777","name":"Sami - Siddiqui","screen_name":"mrsamiams","location":"Rancho Santa Margarita, CA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":1091,"listed_count":1,"created_at":"Fri - Dec 14 10:43:55 +0000 2012","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":120,"lang":null,"status":{"created_at":"Tue - Jan 25 03:00:06 +0000 2022","id":1485809677858324483,"id_str":"1485809677858324483","text":"@JesseKellyDC - And what kind of cognitive abilities did Trump demonstrate?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JesseKellyDC","name":"Jesse - Kelly","id":34082620,"id_str":"34082620","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1485760008465928196,"in_reply_to_status_id_str":"1485760008465928196","in_reply_to_user_id":34082620,"in_reply_to_user_id_str":"34082620","in_reply_to_screen_name":"JesseKellyDC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/785537461908754432\/5r3GkX68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/785537461908754432\/5r3GkX68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1010893777\/1597814989","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24185015,"id_str":"24185015","name":"carolyn - sumners","screen_name":"independentgal","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":287,"friends_count":1331,"listed_count":0,"created_at":"Fri - Mar 13 15:04:35 +0000 2009","favourites_count":73534,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48800,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/824316916445671424\/Zl0Nd-kV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/824316916445671424\/Zl0Nd-kV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41764820,"id_str":"41764820","name":"JOE - FIGUEROA","screen_name":"MASTERJOEYJEDI","location":"MICKEY MOUSE EAST","description":"#GOD - #STARWARS is #FAMILY , \nMAY THE FORCE BE WITH YOU, ALWAYS! #Studentloan - donations to CashApp $JediMasterJoe thank you.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":5001,"listed_count":43,"created_at":"Fri - May 22 06:08:48 +0000 2009","favourites_count":163957,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":152538,"lang":null,"status":{"created_at":"Fri - Mar 25 21:59:13 +0000 2022","id":1507477228288110593,"id_str":"1507477228288110593","text":"I''m - growing my hair so I can do the donut king loop on each ear without having - to glue actual donuts. https:\/\/t.co\/c6Lf5h1kgh","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/c6Lf5h1kgh","expanded_url":"https:\/\/twitter.com\/DexertoSW\/status\/1507451937196691460","display_url":"twitter.com\/DexertoSW\/stat\u2026","indices":[102,125]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507451937196691460,"quoted_status_id_str":"1507451937196691460","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1369885069486227456\/pWwQfy4c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1369885069486227456\/pWwQfy4c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41764820\/1628727061","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C596EB","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1056774883,"id_str":"1056774883","name":"DeeAnn","screen_name":"ddpd619","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":3509,"listed_count":0,"created_at":"Thu - Jan 03 03:28:52 +0000 2013","favourites_count":11147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1058,"lang":null,"status":{"created_at":"Fri - Feb 18 05:03:00 +0000 2022","id":1494537913815629825,"id_str":"1494537913815629825","text":"@larrycollmus - @TVG @BreedersCup @NBCSports @KYDownsRacing Love seeing you on TVG Your still - my favorite race caller \ud83d\ude18\ud83d\ude0a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"larrycollmus","name":"Larry - Collmus","id":64467795,"id_str":"64467795","indices":[0,13]},{"screen_name":"TVG","name":"TVG","id":38548256,"id_str":"38548256","indices":[14,18]},{"screen_name":"BreedersCup","name":"Breeders'' - Cup","id":29723393,"id_str":"29723393","indices":[19,31]},{"screen_name":"NBCSports","name":"NBC - Sports","id":11856342,"id_str":"11856342","indices":[32,42]},{"screen_name":"KYDownsRacing","name":"Kentucky - Downs","id":921692569,"id_str":"921692569","indices":[43,57]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1494481829159743498,"in_reply_to_status_id_str":"1494481829159743498","in_reply_to_user_id":64467795,"in_reply_to_user_id_str":"64467795","in_reply_to_screen_name":"larrycollmus","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3248634852,"id_str":"3248634852","name":"Green - Eyes","screen_name":"LBNteriorDesign","location":"Plano, TX","description":"God, - family, Interior Design is my passion and gift from God. LSU Lover, Liquid - Collagen \u2764\ufe0f , Organizing is addicting,","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":156,"friends_count":1441,"listed_count":0,"created_at":"Thu - Jun 18 12:25:44 +0000 2015","favourites_count":6986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1108751514909229058\/A5Kj9HpS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1108751514909229058\/A5Kj9HpS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248634852\/1577704151","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":240034240,"id_str":"240034240","name":"June - BD","screen_name":"joonmike","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16,"friends_count":558,"listed_count":0,"created_at":"Wed - Jan 19 00:51:58 +0000 2011","favourites_count":6284,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":235,"lang":null,"status":{"created_at":"Wed - Dec 22 22:39:48 +0000 2021","id":1473785370412212224,"id_str":"1473785370412212224","text":"RT - @OccupyDemocrats: BREAKING: Former U.S. Solicitor General reveals that Trump - is \u201cmore off the rails than usual\u201d now because Republican J\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Dec 22 05:23:27 +0000 2021","id":1473524564080611329,"id_str":"1473524564080611329","text":"BREAKING: - Former U.S. Solicitor General reveals that Trump is \u201cmore off the rails - than usual\u201d now because Republica\u2026 https:\/\/t.co\/kJdf7IVbvL","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kJdf7IVbvL","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1473524564080611329","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10783,"favorite_count":26664,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":10783,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295846759990808576,"id_str":"1295846759990808576","name":"Tamia - Smothers","screen_name":"TamiaSmothers","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":399,"listed_count":0,"created_at":"Tue - Aug 18 22:15:41 +0000 2020","favourites_count":251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":347,"lang":null,"status":{"created_at":"Wed - Feb 03 19:20:45 +0000 2021","id":1357046384373989377,"id_str":"1357046384373989377","text":"https:\/\/t.co\/uEh6GOKhEI","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uEh6GOKhEI","expanded_url":"https:\/\/www.instagram.com\/p\/CKu-dW5jATk\/?igshid=1ibd6jvzlbq2d","display_url":"instagram.com\/p\/CKu-dW5jATk\/\u2026","indices":[0,23]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1309660476176035841\/UxoHfyeF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1309660476176035841\/UxoHfyeF_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28847758,"id_str":"28847758","name":"Francine - Sadowsky","screen_name":"francine11","location":"An Island in San Francisco","description":"Computer - Geek, Mommy, & Wifey","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":511,"listed_count":0,"created_at":"Sat - Apr 04 18:53:27 +0000 2009","favourites_count":13059,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7342,"lang":null,"status":{"created_at":"Sat - Feb 26 07:53:11 +0000 2022","id":1497479842844983298,"id_str":"1497479842844983298","text":"RT - @BiddenJill: @davidfrum @UROCKlive1 And has been for along time https:\/\/t.co\/GeI493JsFX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BiddenJill","name":"\ud83c\uddfa\ud83c\uddf2\ud83c\uddfa\ud83c\udde6\ud83c\udf3bAnnie - Oakley''s Ghost","id":1370524326953422850,"id_str":"1370524326953422850","indices":[3,14]},{"screen_name":"davidfrum","name":"David - Frum","id":18686907,"id_str":"18686907","indices":[16,26]},{"screen_name":"UROCKlive1","name":"Khashoggi\u2019s - Ghost \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":87983041,"id_str":"87983041","indices":[27,38]}],"urls":[],"media":[{"id":1497325111778623490,"id_str":"1497325111778623490","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","url":"https:\/\/t.co\/GeI493JsFX","display_url":"pic.twitter.com\/GeI493JsFX","expanded_url":"https:\/\/twitter.com\/BiddenJill\/status\/1497325114261749766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1474,"resize":"fit"},"small":{"w":498,"h":680,"resize":"fit"},"medium":{"w":879,"h":1200,"resize":"fit"}},"source_status_id":1497325114261749766,"source_status_id_str":"1497325114261749766","source_user_id":1370524326953422850,"source_user_id_str":"1370524326953422850"}]},"extended_entities":{"media":[{"id":1497325111778623490,"id_str":"1497325111778623490","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","url":"https:\/\/t.co\/GeI493JsFX","display_url":"pic.twitter.com\/GeI493JsFX","expanded_url":"https:\/\/twitter.com\/BiddenJill\/status\/1497325114261749766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1474,"resize":"fit"},"small":{"w":498,"h":680,"resize":"fit"},"medium":{"w":879,"h":1200,"resize":"fit"}},"source_status_id":1497325114261749766,"source_status_id_str":"1497325114261749766","source_user_id":1370524326953422850,"source_user_id_str":"1370524326953422850"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 25 21:38:20 +0000 2022","id":1497325114261749766,"id_str":"1497325114261749766","text":"@davidfrum - @UROCKlive1 And has been for along time https:\/\/t.co\/GeI493JsFX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidfrum","name":"David - Frum","id":18686907,"id_str":"18686907","indices":[0,10]},{"screen_name":"UROCKlive1","name":"Khashoggi\u2019s - Ghost \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":87983041,"id_str":"87983041","indices":[11,22]}],"urls":[],"media":[{"id":1497325111778623490,"id_str":"1497325111778623490","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","url":"https:\/\/t.co\/GeI493JsFX","display_url":"pic.twitter.com\/GeI493JsFX","expanded_url":"https:\/\/twitter.com\/BiddenJill\/status\/1497325114261749766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1474,"resize":"fit"},"small":{"w":498,"h":680,"resize":"fit"},"medium":{"w":879,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1497325111778623490,"id_str":"1497325111778623490","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMeRQYjWQAIDmny.jpg","url":"https:\/\/t.co\/GeI493JsFX","display_url":"pic.twitter.com\/GeI493JsFX","expanded_url":"https:\/\/twitter.com\/BiddenJill\/status\/1497325114261749766\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1080,"h":1474,"resize":"fit"},"small":{"w":498,"h":680,"resize":"fit"},"medium":{"w":879,"h":1200,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1497208073181663232,"in_reply_to_status_id_str":"1497208073181663232","in_reply_to_user_id":18686907,"in_reply_to_user_id_str":"18686907","in_reply_to_screen_name":"davidfrum","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":142,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":61,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/121678695\/Fran_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/121678695\/Fran_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":201216687,"id_str":"201216687","name":"Isaac - mensah Larbi","screen_name":"Larbson","location":"Tema","description":"GREAT - IS OUR LORD GORD","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":1499,"listed_count":0,"created_at":"Mon - Oct 11 10:53:31 +0000 2010","favourites_count":500,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":242,"lang":null,"status":{"created_at":"Tue - Mar 22 22:25:53 +0000 2022","id":1506396776164593664,"id_str":"1506396776164593664","text":"@enochworlanyo - @Asempa947_FM @adom_tv @SergioManucho5 @KOBBY__STONNE Wale wale me feel wo","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"enochworlanyo","name":"prof.e.k.Wallace","id":714574991900155904,"id_str":"714574991900155904","indices":[0,14]},{"screen_name":"Asempa947_FM","name":"Asempa - 94.7FM","id":1275020006267420674,"id_str":"1275020006267420674","indices":[15,28]},{"screen_name":"adom_tv","name":"Adom - TV","id":3130656076,"id_str":"3130656076","indices":[29,37]},{"screen_name":"SergioManucho5","name":"Manucho - Gon\u010dalve\u017a","id":1242563524972470272,"id_str":"1242563524972470272","indices":[38,53]},{"screen_name":"KOBBY__STONNE","name":"KOBBY - STONNE","id":2661252706,"id_str":"2661252706","indices":[54,68]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505371244086104064,"in_reply_to_status_id_str":"1505371244086104064","in_reply_to_user_id":714574991900155904,"in_reply_to_user_id_str":"714574991900155904","in_reply_to_screen_name":"enochworlanyo","geo":null,"coordinates":null,"place":{"id":"018d4410153dc23b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/018d4410153dc23b.json","place_type":"admin","name":"Greater - Accra","full_name":"Greater Accra, Ghana","country_code":"GH","country":"Ghana","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-0.495283,5.4812804],[0.6719668,5.4812804],[0.6719668,6.1058921],[-0.495283,6.1058921]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2403023332\/erafevrigi19pppmkid7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2403023332\/erafevrigi19pppmkid7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201216687\/1423500751","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1128512102203658240,"id_str":"1128512102203658240","name":"Fernanda - Gonzalez","screen_name":"fernandaglzc1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":61,"friends_count":111,"listed_count":0,"created_at":"Wed - May 15 04:07:06 +0000 2019","favourites_count":3396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2612,"lang":null,"status":{"created_at":"Tue - Mar 22 20:50:42 +0000 2022","id":1506372823241031681,"id_str":"1506372823241031681","text":"RT - @DaveRamsey: A car lease is a rip-off. It is the most expensive way to operate - a vehicle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DaveRamsey","name":"Dave - Ramsey","id":8559342,"id_str":"8559342","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 20:02:01 +0000 2022","id":1506360568671875090,"id_str":"1506360568671875090","text":"A - car lease is a rip-off. It is the most expensive way to operate a vehicle.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/prod1.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr Publishing\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":894,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":108,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195217602928267265\/-6u-GJN4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195217602928267265\/-6u-GJN4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128512102203658240\/1557894154","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1232100539527200768,"id_str":"1232100539527200768","name":"Gwyneth - Mason","screen_name":"GwynethMason13","location":"Warr Acres, OK","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":335,"listed_count":1,"created_at":"Tue - Feb 25 00:30:51 +0000 2020","favourites_count":158,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":33028,"lang":null,"status":{"created_at":"Fri - Sep 24 08:54:05 +0000 2021","id":1441325049617649676,"id_str":"1441325049617649676","text":"RT - @CNN: James Bond star Daniel Craig was made an honorary officer of the United - Kingdom''s Royal Navy -- matching his onscreen 007 persona,\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CNN","name":"CNN","id":759251,"id_str":"759251","indices":[3,7]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Sep 24 08:49:03 +0000 2021","id":1441323787056672768,"id_str":"1441323787056672768","text":"James - Bond star Daniel Craig was made an honorary officer of the United Kingdom''s - Royal Navy -- matching his onscre\u2026 https:\/\/t.co\/FmaIErhn1B","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/FmaIErhn1B","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1441323787056672768","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":2156,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":254,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232100732733677573\/2rx7XW-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232100732733677573\/2rx7XW-S_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2722479865,"id_str":"2722479865","name":"Jeff - Big Daddy Wayne","screen_name":"JeffWayneComic","location":"Los Angeles, CA","description":"Forget - everything you know. Big Daddy is here to explain it all. The creator of the - one-man show BIG DADDY\u2019S BARBEQUE, is one of the busiest comedians today.","url":"https:\/\/t.co\/hbGAH0Fcs0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hbGAH0Fcs0","expanded_url":"http:\/\/www.jeffbigdaddywayne.com\/","display_url":"jeffbigdaddywayne.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":781,"friends_count":4726,"listed_count":4,"created_at":"Sun - Aug 10 20:49:31 +0000 2014","favourites_count":167,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":775,"lang":null,"status":{"created_at":"Thu - Mar 03 16:39:34 +0000 2022","id":1499424250846875648,"id_str":"1499424250846875648","text":"Movie - Money Confidential Feature Film Releases March 2022 https:\/\/t.co\/KzuH9dK60a","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KzuH9dK60a","expanded_url":"https:\/\/www.newswire.com\/news\/movie-money-confidential-feature-film-releases-march-2022-21645357","display_url":"newswire.com\/news\/movie-mon\u2026","indices":[58,81]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/857358571972960256\/3BFvC0dw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/857358571972960256\/3BFvC0dw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2722479865\/1408042133","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1278683620010590209,"id_str":"1278683620010590209","name":"Fah - Q \"It is what it is\" Trump","screen_name":"TrumpFahq","location":"Top of - the world","description":"ELI5","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":939,"listed_count":0,"created_at":"Thu - Jul 02 13:35:16 +0000 2020","favourites_count":8640,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2421,"lang":null,"status":{"created_at":"Wed - Jan 27 11:46:00 +0000 2021","id":1354395228963303424,"id_str":"1354395228963303424","text":"@thehill - FAH Q @RandPaul","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thehill","name":"The - Hill","id":1917731,"id_str":"1917731","indices":[0,8]},{"screen_name":"RandPaul","name":"Rand - Paul","id":216881337,"id_str":"216881337","indices":[15,24]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1354287024350650373,"in_reply_to_status_id_str":"1354287024350650373","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"in"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331571048505077767\/MJ9PEz8o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331571048505077767\/MJ9PEz8o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1278683620010590209\/1606306252","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":933755766485409792,"id_str":"933755766485409792","name":"Eva","screen_name":"EvaNell2017","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":481,"listed_count":0,"created_at":"Thu - Nov 23 17:54:57 +0000 2017","favourites_count":17763,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31152,"lang":null,"status":{"created_at":"Fri - Mar 25 20:00:25 +0000 2022","id":1507447333071425536,"id_str":"1507447333071425536","text":"@ReallyAmerican1 - Me","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507392869753102371,"in_reply_to_status_id_str":"1507392869753102371","in_reply_to_user_id":767788995962998784,"in_reply_to_user_id_str":"767788995962998784","in_reply_to_screen_name":"ReallyAmerican1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1307467066933379073,"id_str":"1307467066933379073","name":"Bertzach@verizon.net","screen_name":"Bertzachverizo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":39,"listed_count":0,"created_at":"Sat - Sep 19 23:50:30 +0000 2020","favourites_count":903,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3154164653,"id_str":"3154164653","name":"arthur - nelson benard","screen_name":"nelsoncobbinah","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":1622,"listed_count":0,"created_at":"Fri - Apr 10 17:59:49 +0000 2015","favourites_count":605,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Sat - Jul 31 18:24:40 +0000 2021","id":1421537310764638209,"id_str":"1421537310764638209","text":"RT - @_InspiredbyShay: Naa Lamile, an incoming penultimate year student @Ashesi - shares her Summer internship experience at IBS with us. \n\nWit\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ashesi","name":"Ashesi - University","id":133552941,"id_str":"133552941","indices":[70,77]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jul 31 15:05:55 +0000 2021","id":1421487293785911301,"id_str":"1421487293785911301","text":"Naa - Lamile, an incoming penultimate year student @Ashesi shares her Summer internship - experience at IBS with us.\u2026 https:\/\/t.co\/bVWPmhYjUz","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ashesi","name":"Ashesi - University","id":133552941,"id_str":"133552941","indices":[49,56]}],"urls":[{"url":"https:\/\/t.co\/bVWPmhYjUz","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1421487293785911301","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[114,137]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"1f4df2b4746ddea7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1f4df2b4746ddea7.json","place_type":"city","name":"Brampton","full_name":"Brampton, - Ontario","country_code":"CA","country":"Canada","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-79.888911,43.60222],[-79.630272,43.60222],[-79.630272,43.847722],[-79.888911,43.847722]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":183,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":50,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237173830629699585\/eODhxzOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237173830629699585\/eODhxzOg_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1057752634835243008,"id_str":"1057752634835243008","name":"John - Coniglio","screen_name":"JohnCon74706336","location":"Omaha, NE","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":44,"friends_count":1154,"listed_count":0,"created_at":"Wed - Oct 31 21:54:15 +0000 2018","favourites_count":2152,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":313418176,"id_str":"313418176","name":"Jennifer","screen_name":"rivieragirl68","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":20,"friends_count":299,"listed_count":0,"created_at":"Wed - Jun 08 16:38:23 +0000 2011","favourites_count":1619,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":489,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1854405063\/w02y8c4U_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1854405063\/w02y8c4U_normal","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":875127819512279041,"id_str":"875127819512279041","name":"Claire - Shea","screen_name":"ClaireShea52","location":"Halifax, Nova Scotia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":161,"listed_count":0,"created_at":"Wed - Jun 14 23:08:26 +0000 2017","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1320317721351999488\/amM1Smuy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1320317721351999488\/amM1Smuy_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1168977203972976641,"id_str":"1168977203972976641","name":"Sean - Doyle","screen_name":"SeanDoy01885293","location":"","description":"Segment - Producer for The Beat with Ari Melber, retweets are not endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":735,"listed_count":0,"created_at":"Tue - Sep 03 20:01:05 +0000 2019","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Fri - Mar 18 22:43:30 +0000 2022","id":1504951656647213057,"id_str":"1504951656647213057","text":"@TG22110 - heartburn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TG22110","name":"TG","id":1244795359097958401,"id_str":"1244795359097958401","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1504875249791344641,"in_reply_to_status_id_str":"1504875249791344641","in_reply_to_user_id":1244795359097958401,"in_reply_to_user_id_str":"1244795359097958401","in_reply_to_screen_name":"TG22110","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168977465609457665\/uVRrzVvW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168977465609457665\/uVRrzVvW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2805359114,"id_str":"2805359114","name":"Robin - Heins","screen_name":"rheins2","location":"Concord, NH","description":"Work - for Andover\/Merrimack Valley School Districts for 30 years.Retired 2020.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":320,"listed_count":0,"created_at":"Fri - Sep 12 10:54:17 +0000 2014","favourites_count":4866,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":225,"lang":null,"status":{"created_at":"Tue - Mar 22 09:52:24 +0000 2022","id":1506207155120226304,"id_str":"1506207155120226304","text":"@DickieV - Ringing the bell is such an emotional and significant moment. \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DickieV","name":"Dick - Vitale","id":78183672,"id_str":"78183672","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505940949377167362,"in_reply_to_status_id_str":"1505940949377167362","in_reply_to_user_id":78183672,"in_reply_to_user_id_str":"78183672","in_reply_to_screen_name":"DickieV","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":216381334,"id_str":"216381334","name":"BethL","screen_name":"Beknopf","location":"Florida, - USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":27,"friends_count":390,"listed_count":2,"created_at":"Tue - Nov 16 15:27:27 +0000 2010","favourites_count":14139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1688,"lang":null,"status":{"created_at":"Tue - Mar 22 16:53:16 +0000 2022","id":1506313070423031820,"id_str":"1506313070423031820","text":"@ErinRNapier - \ud83d\ude22","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ErinRNapier","name":"Erin - Napier","id":3585234732,"id_str":"3585234732","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1505607028777050117,"in_reply_to_status_id_str":"1505607028777050117","in_reply_to_user_id":3585234732,"in_reply_to_user_id_str":"3585234732","in_reply_to_screen_name":"ErinRNapier","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/804333532386643969\/VpWrrD3g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/804333532386643969\/VpWrrD3g_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1249785718853025792,"id_str":"1249785718853025792","name":"morag - Gates","screen_name":"GatesMorag","location":"","description":"Working for - the NHS and very proud.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":672,"listed_count":0,"created_at":"Mon - Apr 13 19:45:19 +0000 2020","favourites_count":2138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":883,"lang":null,"status":{"created_at":"Thu - Dec 16 22:01:13 +0000 2021","id":1471601334382120968,"id_str":"1471601334382120968","text":"RT - @RWT_NHS: Martha Sayao, Senior Sister on ward C14, urges people to get the - vaccine as she was redeployed to ICCU during the pandmecic. S\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RWT_NHS","name":"The - Royal Wolverhampton NHS Trust \ud83c\udfe5","id":2966254751,"id_str":"2966254751","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Dec 16 12:42:01 +0000 2021","id":1471460607434047494,"id_str":"1471460607434047494","text":"Martha - Sayao, Senior Sister on ward C14, urges people to get the vaccine as she was - redeployed to ICCU during the p\u2026 https:\/\/t.co\/PTGU37cve4","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/PTGU37cve4","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1471460607434047494","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302359140577284096,"id_str":"1302359140577284096","name":"zig","screen_name":"marxsbabydaddy","location":"","description":"they\/it - -- BLM -- ACAB -- ace\/aro -- Land Back","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":135,"listed_count":0,"created_at":"Sat - Sep 05 21:33:39 +0000 2020","favourites_count":46013,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":720,"lang":null,"status":{"created_at":"Thu - Mar 24 12:47:38 +0000 2022","id":1506976030359265287,"id_str":"1506976030359265287","text":"If - the Stranger Things hairstylist ever comes within my vicinity I will respond - to their presence with violence https:\/\/t.co\/DCRUnbhR2n","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/DCRUnbhR2n","expanded_url":"https:\/\/twitter.com\/Variety\/status\/1506628871193600006","display_url":"twitter.com\/Variety\/status\u2026","indices":[112,135]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506628871193600006,"quoted_status_id_str":"1506628871193600006","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1415749625252880384\/mukHVG89_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1415749625252880384\/mukHVG89_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":802486756201402368,"id_str":"802486756201402368","name":"Sheryar - Khan","screen_name":"docsheryar","location":"Lahore, Pakistan","description":"Doctor.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":66,"listed_count":0,"created_at":"Sat - Nov 26 12:18:46 +0000 2016","favourites_count":2820,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118,"lang":null,"status":{"created_at":"Sun - Nov 07 05:28:47 +0000 2021","id":1457218452977065985,"id_str":"1457218452977065985","text":"@mtemptymtt - Congratulations!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mtemptymtt","name":"mariam - tahir \ud83c\uddf5\ud83c\uddf0","id":209094624,"id_str":"209094624","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1457106287691452438,"in_reply_to_status_id_str":"1457106287691452438","in_reply_to_user_id":209094624,"in_reply_to_user_id_str":"209094624","in_reply_to_screen_name":"mtemptymtt","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502749973900894208\/EId1ZnHb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502749973900894208\/EId1ZnHb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/802486756201402368\/1487915109","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2610399757,"id_str":"2610399757","name":"Rhys - Atkinson","screen_name":"atkinsongatsby","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":677,"listed_count":0,"created_at":"Mon - Jul 07 20:07:14 +0000 2014","favourites_count":73058,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":501,"lang":null,"status":{"created_at":"Thu - Mar 24 05:34:01 +0000 2022","id":1506866908531871744,"id_str":"1506866908531871744","text":"RT - @CalltoActivism: If you want Judge Jackson to be confirmed NOW, then RT and - follow @TrendingLiberal who has had her back from day one!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CalltoActivism","name":"CALL - TO ACTIVISM","id":819994707061248001,"id_str":"819994707061248001","indices":[3,18]},{"screen_name":"TrendingLiberal","name":"Trending - Liberal","id":1257817367238803456,"id_str":"1257817367238803456","indices":[86,102]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 22:20:43 +0000 2022","id":1506757861443272704,"id_str":"1506757861443272704","text":"If - you want Judge Jackson to be confirmed NOW, then RT and follow @TrendingLiberal - who has had her back from day one!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TrendingLiberal","name":"Trending - Liberal","id":1257817367238803456,"id_str":"1257817367238803456","indices":[66,82]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1506754580603932674,"in_reply_to_status_id_str":"1506754580603932674","in_reply_to_user_id":819994707061248001,"in_reply_to_user_id_str":"819994707061248001","in_reply_to_screen_name":"CalltoActivism","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":502,"favorite_count":1104,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":502,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1012621344436047872,"id_str":"1012621344436047872","name":"georges - el khoury","screen_name":"georges89610942","location":"Beit misk ","description":"Always - have the ability to envision your next move","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":371,"listed_count":3,"created_at":"Fri - Jun 29 08:58:36 +0000 2018","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":146,"lang":null,"status":{"created_at":"Fri - Feb 11 09:42:58 +0000 2022","id":1492071654092066816,"id_str":"1492071654092066816","text":"RT - @faysalkarame: \u0631\u062d \u0646\u0639\u064a\u0634 \u0639\u0644\u0649 \u0627\u0644\u0634\u0645\u0639\u0629 - \u0648\u0646\u0644\u063a\u064a \u0627\u0644\u062a\u0644\u0641\u0648\u0646\u0627\u062a - \u0648\u0627\u0644\u0633\u064a\u0627\u0631\u0627\u062a \u0648\u0627\u0644\u062f\u0641\u0627\u064a\u0627\u062a - \u0648\u0646\u0634\u0631\u0628 \u0642\u0647\u0648\u0629 \u0648\u0634\u0627\u064a. - \n\u062a\u0643\u0631\u0645 \u0639\u064a\u0646\u0643 \u062f\u0648\u0644\u0629 - \u0627\u0644\u0631\u0626\u064a\u0633 \u0648\u062a\u0643\u0631\u0645 \u0639\u064a\u0648\u0646 - \u0627\u0644\u0645\u0635\u0627\u0631\u0641.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"faysalkarame","name":"Fayssal - Karame","id":4493401994,"id_str":"4493401994","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 16:47:28 +0000 2022","id":1491816096592273409,"id_str":"1491816096592273409","text":"\u0631\u062d - \u0646\u0639\u064a\u0634 \u0639\u0644\u0649 \u0627\u0644\u0634\u0645\u0639\u0629 - \u0648\u0646\u0644\u063a\u064a \u0627\u0644\u062a\u0644\u0641\u0648\u0646\u0627\u062a - \u0648\u0627\u0644\u0633\u064a\u0627\u0631\u0627\u062a \u0648\u0627\u0644\u062f\u0641\u0627\u064a\u0627\u062a - \u0648\u0646\u0634\u0631\u0628 \u0642\u0647\u0648\u0629 \u0648\u0634\u0627\u064a. - \n\u062a\u0643\u0631\u0645 \u0639\u064a\u0646\u0643 \u062f\u0648\u0644\u0629 - \u0627\u0644\u0631\u0626\u064a\u0633 \u0648\u062a\u0643\u0631\u0645 \u0639\u064a\u0648\u0646 - \u0627\u0644\u0645\u0635\u0627\u0631\u0641.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":174,"favorite_count":2957,"favorited":false,"retweeted":false,"lang":"ar"},"is_quote_status":false,"retweet_count":174,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1012623852269195266\/XcB0IR_c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1012623852269195266\/XcB0IR_c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012621344436047872\/1530263336","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2249531,"id_str":"2249531","name":"Andrew - Feinberg","screen_name":"AndrewFeinberg","location":"Here, there, everywhere","description":"White - House, Congress, DC @Independent & occasionally elsewhere | tell me secrets: - andrew-dot-feinberg @ independent-dot-co-dot-uk | dm 4 Signal\/ProtonMail","url":"https:\/\/t.co\/NivJtlEjgI","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NivJtlEjgI","expanded_url":"https:\/\/www.independent.co.uk\/author\/andrew-feinberg","display_url":"independent.co.uk\/author\/andrew-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":125638,"friends_count":8796,"listed_count":1346,"created_at":"Mon - Mar 26 03:59:32 +0000 2007","favourites_count":5539,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":68161,"lang":null,"status":{"created_at":"Fri - Mar 25 23:43:45 +0000 2022","id":1507503536963268609,"id_str":"1507503536963268609","text":"Legal - scholars and lawyers who know Justice Thomas say he can no longer ignore his - wife\u2019s activism https:\/\/t.co\/hpe44MbKvm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hpe44MbKvm","expanded_url":"https:\/\/ift.tt\/SAlsvPR","display_url":"ift.tt\/SAlsvPR","indices":[99,122]}]},"source":"\u003ca - href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":102,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1188827397073854470\/POwzzbMn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1188827397073854470\/POwzzbMn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2249531\/1601078842","profile_link_color":"273A59","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1202631131297964032,"id_str":"1202631131297964032","name":"donnaking","screen_name":"donnacherylking","location":"Camden - Town, London","description":"dancer prancer","url":"https:\/\/t.co\/RxhjaYUhDv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/RxhjaYUhDv","expanded_url":"http:\/\/donnakingstudio22.com","display_url":"donnakingstudio22.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":356,"listed_count":0,"created_at":"Thu - Dec 05 16:49:49 +0000 2019","favourites_count":4993,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":78,"lang":null,"status":{"created_at":"Fri - Feb 12 15:57:58 +0000 2021","id":1360256842253950977,"id_str":"1360256842253950977","text":"RT - @mmpadellan: Ladies and gentlemen, our POTUS, FLOTUS, Champ and Major on the - North Lawn with some Valentines Day love for the White Hous\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mmpadellan","name":"BrooklynDad_Defiant!","id":1640929196,"id_str":"1640929196","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Feb 12 15:19:12 +0000 2021","id":1360247085564645378,"id_str":"1360247085564645378","text":"Ladies - and gentlemen, our POTUS, FLOTUS, Champ and Major on the North Lawn with some - Valentines Day love for the Wh\u2026 https:\/\/t.co\/985dJXgbBS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/985dJXgbBS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1360247085564645378","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2704,"favorite_count":16429,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2704,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1312724072263024640\/tTGLu8bG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1312724072263024640\/tTGLu8bG_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3293228181,"id_str":"3293228181","name":"Renee - Mishku","screen_name":"RRmishku","location":"Worldwide ","description":"I - AM HUMAN","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":434,"listed_count":0,"created_at":"Thu - May 21 20:11:06 +0000 2015","favourites_count":6525,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":876,"lang":null,"status":{"created_at":"Wed - Nov 03 17:44:08 +0000 2021","id":1455953956715257863,"id_str":"1455953956715257863","text":"RT - @joncoopertweets: If churches are going to hold political rallies, shouldn\u2019t - they pay taxes?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"joncoopertweets","name":"Jon - Cooper","id":27493883,"id_str":"27493883","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Nov 02 17:49:48 +0000 2021","id":1455592995215089672,"id_str":"1455592995215089672","text":"If - churches are going to hold political rallies, shouldn\u2019t they pay taxes?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7784,"favorite_count":60886,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7784,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1107402256964554755\/BjHOQlB6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1107402256964554755\/BjHOQlB6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3293228181\/1552860335","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1297668103170600963,"id_str":"1297668103170600963","name":"lucas","screen_name":"lucasevrod","location":"","description":"he\/him\/his","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13,"friends_count":538,"listed_count":0,"created_at":"Sun - Aug 23 22:52:53 +0000 2020","favourites_count":7415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1847,"lang":null,"status":{"created_at":"Sat - Mar 26 06:40:37 +0000 2022","id":1507608443850571776,"id_str":"1507608443850571776","text":"RT - @ohsoyousixx: Idc how grown i am, ima watch me a Disney Movie \ud83d\ude02\ud83e\udd37\ud83c\udffd\u200d\u2642\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ohsoyousixx","name":"TaiShawna - Mon\u00e9t\ud83e\uddf8\ud83d\udc9e","id":1160899314681556992,"id_str":"1160899314681556992","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 11:57:42 +0000 2022","id":1507325850458509343,"id_str":"1507325850458509343","text":"Idc - how grown i am, ima watch me a Disney Movie \ud83d\ude02\ud83e\udd37\ud83c\udffd\u200d\u2642\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12139,"favorite_count":41430,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12139,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489432539840274435\/ulLjsVGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489432539840274435\/ulLjsVGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1297668103170600963\/1643992669","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4923835779,"id_str":"4923835779","name":"Eltayeb - Alhindi","screen_name":"EltayebAlhindi","location":"Dubai, United Arab Emirates","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":780,"listed_count":0,"created_at":"Wed - Feb 17 13:52:24 +0000 2016","favourites_count":935,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/700044449334882304\/ETVR7lY9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/700044449334882304\/ETVR7lY9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1133817197019697154,"id_str":"1133817197019697154","name":"Pat","screen_name":"Pat57_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":157,"listed_count":0,"created_at":"Wed - May 29 19:27:39 +0000 2019","favourites_count":179,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Tue - Dec 10 14:10:21 +0000 2019","id":1204402976640716801,"id_str":"1204402976640716801","text":"RT - @OwenJones84: Boris Johnson used the \"n\" word, referred to Jewish oligarchs - as controlling the media, and described Arabs as \"hook nosed\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OwenJones84","name":"Owen - Jones \ud83c\udf39","id":65045121,"id_str":"65045121","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 10 13:05:27 +0000 2019","id":1204386645941850115,"id_str":"1204386645941850115","text":"Boris - Johnson used the \"n\" word, referred to Jewish oligarchs as controlling the - media, and described Arabs as \"hoo\u2026 https:\/\/t.co\/Y33sJ65jb7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y33sJ65jb7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1204386645941850115","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2591,"favorite_count":6262,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2591,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1244059138398785537,"id_str":"1244059138398785537","name":"sue - beeman","screen_name":"beeman_sue","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":90,"listed_count":0,"created_at":"Sun - Mar 29 00:29:58 +0000 2020","favourites_count":84,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Oct 28 20:34:13 +0000 2020","id":1321550861278056450,"id_str":"1321550861278056450","text":"There - is no justice anymore. The left gets away with everything. They are exempt - from any rules or laws. https:\/\/t.co\/dRnHurB49E","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dRnHurB49E","expanded_url":"https:\/\/twitter.com\/DineshDSouza\/status\/1321539986760650752","display_url":"twitter.com\/DineshDSouza\/s\u2026","indices":[105,128]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1321539986760650752,"quoted_status_id_str":"1321539986760650752","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4021112172,"id_str":"4021112172","name":"Yarvet49","screen_name":"yarvet49","location":"Oregon - coast with my husband ","description":"Progressive liberals, voted for Biden\/Harris. - Indict Trump\nand anyone behind Jan.6th. Vaccine and masks save lives\nResisters, - animal lovers. Tax the Rich!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2679,"friends_count":4227,"listed_count":3,"created_at":"Mon - Oct 26 05:40:24 +0000 2015","favourites_count":53404,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":94886,"lang":null,"status":{"created_at":"Sat - Mar 26 03:35:55 +0000 2022","id":1507561962946785283,"id_str":"1507561962946785283","text":"RT - @droverdriver61: If MSM did its job properly, social media would still be - about recipes and family photos.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"droverdriver61","name":"An - Old Guy With Keyboard And Camera \ud83d\udc89 \ud83d\udc00 \ud83d\udc89 \ud83d\ude37 - \ud83d\udc89","id":949892499878719488,"id_str":"949892499878719488","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:00:21 +0000 2022","id":1507507710715400194,"id_str":"1507507710715400194","text":"If - MSM did its job properly, social media would still be about recipes and family - photos.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":900,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":177,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471987502424616960\/ZC2Cvltz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471987502424616960\/ZC2Cvltz_normal.jpg","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1129054815840079872,"id_str":"1129054815840079872","name":"Michele","screen_name":"Michele21953352","location":"","description":"old - age gets you","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":137,"listed_count":0,"created_at":"Thu - May 16 16:03:39 +0000 2019","favourites_count":1211,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129055888654950401\/9EY0sZrd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129055888654950401\/9EY0sZrd_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":298154473,"id_str":"298154473","name":"Shelle","screen_name":"Shelle113","location":"Atlanta, - GA ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":2335,"listed_count":0,"created_at":"Fri - May 13 20:19:18 +0000 2011","favourites_count":11237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":682,"lang":null,"status":{"created_at":"Tue - Feb 01 19:48:18 +0000 2022","id":1488600113715023877,"id_str":"1488600113715023877","text":"@Ziggy_Daddy - You''ve got this, Fellow Warrior!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ziggy_Daddy","name":"ZiggyDaddy\u2122","id":21691269,"id_str":"21691269","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1488313087992102913,"in_reply_to_status_id_str":"1488313087992102913","in_reply_to_user_id":21691269,"in_reply_to_user_id_str":"21691269","in_reply_to_screen_name":"Ziggy_Daddy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1250141156270149632,"id_str":"1250141156270149632","name":"Thomas - Roberts","screen_name":"ThomasR66931773","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":563,"friends_count":1040,"listed_count":1,"created_at":"Tue - Apr 14 19:17:53 +0000 2020","favourites_count":45188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":46417,"lang":null,"status":{"created_at":"Sat - Mar 26 00:11:22 +0000 2022","id":1507510484378943488,"id_str":"1507510484378943488","text":"RT - @jesflres: Do you personally know someone who is TRIPLE vaxxed and didn''t - have covid yet?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jesflres","name":"Jessica - Flores \ud83c\uddfa\ud83c\udde6","id":1494693992591724550,"id_str":"1494693992591724550","indices":[3,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 19:34:56 +0000 2022","id":1507440919578034181,"id_str":"1507440919578034181","text":"Do - you personally know someone who is TRIPLE vaxxed and didn''t have covid yet?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1543,"favorite_count":52813,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1543,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250141430875426816\/cZsNJkaK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250141430875426816\/cZsNJkaK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":991436783349989376,"id_str":"991436783349989376","name":"BlackRose - Group","screen_name":"blackroseadv","location":"Lafayette, LA","description":"BlackRose - Group specializes in private corporate transactions. #connectingbuyersandsellers - #MnA #mergers #acquisitions","url":"https:\/\/t.co\/OmLQwVe8NX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OmLQwVe8NX","expanded_url":"https:\/\/www.blackrosegrp.com","display_url":"blackrosegrp.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":54,"friends_count":502,"listed_count":1,"created_at":"Tue - May 01 21:58:43 +0000 2018","favourites_count":584,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1415,"lang":null,"status":{"created_at":"Sat - Feb 05 18:09:37 +0000 2022","id":1490024829642317829,"id_str":"1490024829642317829","text":"RT - @DebraMessing: WHAT THE HELL IS HAPPENING?!?!?! https:\/\/t.co\/oTgmOqsSwv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DebraMessing","name":"Debra - Messing\u270d\ud83c\udffb","id":499073990,"id_str":"499073990","indices":[3,16]}],"urls":[],"media":[{"id":1489037305641902081,"id_str":"1489037305641902081","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","url":"https:\/\/t.co\/oTgmOqsSwv","display_url":"pic.twitter.com\/oTgmOqsSwv","expanded_url":"https:\/\/twitter.com\/DebraMessing\/status\/1489037308808605696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":631,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":870,"resize":"fit"},"medium":{"w":938,"h":870,"resize":"fit"}},"source_status_id":1489037308808605696,"source_status_id_str":"1489037308808605696","source_user_id":499073990,"source_user_id_str":"499073990"}]},"extended_entities":{"media":[{"id":1489037305641902081,"id_str":"1489037305641902081","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","url":"https:\/\/t.co\/oTgmOqsSwv","display_url":"pic.twitter.com\/oTgmOqsSwv","expanded_url":"https:\/\/twitter.com\/DebraMessing\/status\/1489037308808605696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":631,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":870,"resize":"fit"},"medium":{"w":938,"h":870,"resize":"fit"}},"source_status_id":1489037308808605696,"source_status_id_str":"1489037308808605696","source_user_id":499073990,"source_user_id_str":"499073990"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 03 00:45:34 +0000 2022","id":1489037308808605696,"id_str":"1489037308808605696","text":"WHAT - THE HELL IS HAPPENING?!?!?! https:\/\/t.co\/oTgmOqsSwv","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1489037305641902081,"id_str":"1489037305641902081","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","url":"https:\/\/t.co\/oTgmOqsSwv","display_url":"pic.twitter.com\/oTgmOqsSwv","expanded_url":"https:\/\/twitter.com\/DebraMessing\/status\/1489037308808605696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":631,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":870,"resize":"fit"},"medium":{"w":938,"h":870,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1489037305641902081,"id_str":"1489037305641902081","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FKofikwXIAE00ql.jpg","url":"https:\/\/t.co\/oTgmOqsSwv","display_url":"pic.twitter.com\/oTgmOqsSwv","expanded_url":"https:\/\/twitter.com\/DebraMessing\/status\/1489037308808605696\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":631,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":870,"resize":"fit"},"medium":{"w":938,"h":870,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11412,"favorite_count":22865,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":11412,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/998580121379356673\/1F6Ab9po_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/998580121379356673\/1F6Ab9po_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991436783349989376\/1526915044","profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":968793962755608576,"id_str":"968793962755608576","name":"Royloombe","screen_name":"Royloombe2","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":117,"friends_count":2957,"listed_count":1,"created_at":"Wed - Feb 28 10:24:14 +0000 2018","favourites_count":1874,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":658,"lang":null,"status":{"created_at":"Tue - Feb 22 08:25:45 +0000 2022","id":1496038489837780993,"id_str":"1496038489837780993","text":"@AlexaBliss_WWE - You are so dam funny alexabliss","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AlexaBliss_WWE","name":"Lexi - Kaufman","id":147023972,"id_str":"147023972","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495433331642712064,"in_reply_to_status_id_str":"1495433331642712064","in_reply_to_user_id":147023972,"in_reply_to_user_id_str":"147023972","in_reply_to_screen_name":"AlexaBliss_WWE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268679102896185351\/64YMaljr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268679102896185351\/64YMaljr_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":68903148,"id_str":"68903148","name":"Andy - Shaw","screen_name":"andyshawpdx","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":87,"listed_count":1,"created_at":"Wed - Aug 26 05:02:14 +0000 2009","favourites_count":1154,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":73,"lang":null,"status":{"created_at":"Sat - Mar 05 00:04:30 +0000 2022","id":1499898613224280068,"id_str":"1499898613224280068","text":"RT - @oregonmetro: A sign of affordable housing progress. If you see this sign, you\u2019re - looking at some of the 800 homes under construction a\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"oregonmetro","name":"Metro","id":18020652,"id_str":"18020652","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 04 19:51:29 +0000 2022","id":1499834939595890694,"id_str":"1499834939595890694","text":"A - sign of affordable housing progress. If you see this sign, you\u2019re looking - at some of the 800 homes under constru\u2026 https:\/\/t.co\/Po4ECXhBCf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Po4ECXhBCf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1499834939595890694","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4570768413,"id_str":"4570768413","name":"Elisha - Dauda","screen_name":"ElishaDauda4","location":"Niger, Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":63,"friends_count":321,"listed_count":0,"created_at":"Tue - Dec 22 19:32:22 +0000 2015","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":92,"lang":null,"status":{"created_at":"Thu - Mar 24 11:46:48 +0000 2022","id":1506960722823192583,"id_str":"1506960722823192583","text":"@MoneyTradeEdge - You mean this? Hahahaha https:\/\/t.co\/ac0fe4SBBt","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MoneyTradeEdge","name":"MoneyTradeEdge - | Better Thinking Better Trading","id":1278575788900712448,"id_str":"1278575788900712448","indices":[0,15]}],"urls":[],"media":[{"id":1506960712836464640,"id_str":"1506960712836464640","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnMyLsWQAA81SH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnMyLsWQAA81SH.jpg","url":"https:\/\/t.co\/ac0fe4SBBt","display_url":"pic.twitter.com\/ac0fe4SBBt","expanded_url":"https:\/\/twitter.com\/ElishaDauda4\/status\/1506960722823192583\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":527,"h":1200,"resize":"fit"},"small":{"w":298,"h":680,"resize":"fit"},"large":{"w":899,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506960712836464640,"id_str":"1506960712836464640","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/FOnMyLsWQAA81SH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOnMyLsWQAA81SH.jpg","url":"https:\/\/t.co\/ac0fe4SBBt","display_url":"pic.twitter.com\/ac0fe4SBBt","expanded_url":"https:\/\/twitter.com\/ElishaDauda4\/status\/1506960722823192583\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":527,"h":1200,"resize":"fit"},"small":{"w":298,"h":680,"resize":"fit"},"large":{"w":899,"h":2048,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506527422002327554,"in_reply_to_status_id_str":"1506527422002327554","in_reply_to_user_id":1278575788900712448,"in_reply_to_user_id_str":"1278575788900712448","in_reply_to_screen_name":"MoneyTradeEdge","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149231469518360576\/rbjOOmCn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149231469518360576\/rbjOOmCn_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1141480342550790145,"id_str":"1141480342550790145","name":"Samantha - Miller","screen_name":"IamSamMiller","location":"","description":"Washington - native, mama of two awesome kids, runner, background\/career in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":538,"listed_count":0,"created_at":"Wed - Jun 19 22:58:16 +0000 2019","favourites_count":2875,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":null,"status":{"created_at":"Wed - Jan 13 18:14:39 +0000 2021","id":1349419603575726080,"id_str":"1349419603575726080","text":"Republicans - railing about \u201cunity,\u201d in attempt to protect the most divisive president - in history. Fucking laughable if it wasn\u2019t so tragic.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1141576474215895040\/9je3UEyp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141576474215895040\/9je3UEyp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141480342550790145\/1571778138","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1073713243854639104,"id_str":"1073713243854639104","name":"Kenneth - Niehaus","screen_name":"NiehausKenneth","location":"Delaware, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":271,"listed_count":0,"created_at":"Fri - Dec 14 22:56:00 +0000 2018","favourites_count":11400,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":341,"lang":null,"status":{"created_at":"Thu - Mar 24 23:29:55 +0000 2022","id":1507137664776028161,"id_str":"1507137664776028161","text":"@MayoIsSpicyy - And then doesn\u2019t recuse knowing his wife and Meadows were texting. How - can SCOTUS be allowed to conti\u2026 https:\/\/t.co\/aH4N6o8Kah","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MayoIsSpicyy","name":"Mayo - \ud83c\uddfa\ud83c\udde6\ud83c\udf3b","id":1323090408730062849,"id_str":"1323090408730062849","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/aH4N6o8Kah","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507137664776028161","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1507115111370035203,"in_reply_to_status_id_str":"1507115111370035203","in_reply_to_user_id":1323090408730062849,"in_reply_to_user_id_str":"1323090408730062849","in_reply_to_screen_name":"MayoIsSpicyy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080828394873475073\/shQLr591_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080828394873475073\/shQLr591_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":160450765,"id_str":"160450765","name":"MarkSkangChamp!!","screen_name":"SkangMark","location":"Lusaka!","description":"GOD''S - MESSENGER\/WINNER OF SOULS AND ON \ud83d\udd25 FOR YAHWEH!\n\ud83d\udc49\ud83c\udffeTo - GIVE\/SUPPORT https:\/\/t.co\/pG2vvgy2hh or Whatsapp +260967960996 or \ud83d\udce7Noahbill83@gmail.com!\ud83e\udd81\ud83e\udd85\ud83c\udf0d\ud83d\ude4f\ud83c\udffe","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/pG2vvgy2hh","expanded_url":"http:\/\/PayPal.me\/Markskang01","display_url":"PayPal.me\/Markskang01","indices":[71,94]}]}},"protected":false,"followers_count":819,"friends_count":4998,"listed_count":24,"created_at":"Mon - Jun 28 06:00:01 +0000 2010","favourites_count":1046,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":768,"lang":null,"status":{"created_at":"Thu - Mar 24 02:06:16 +0000 2022","id":1506814625421185025,"id_str":"1506814625421185025","text":"\ud83d\udde3\ufe0f\ud83d\udd25 - FINANCIAL BREAKTHROUGH IS LOCATING 21 INDIVIDUALS TODAY BY THE MERCY OF GOD!! - RECEIVE IT NOW IN JESUS NAME \ud83d\udd25\n\ud83d\udc49\ud83c\udffe\u2026 - https:\/\/t.co\/27L0CI59Qt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/27L0CI59Qt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506814625421185025","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1227721218050187265\/rmHwS5hl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1227721218050187265\/rmHwS5hl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160450765\/1454914869","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":934833316993347584,"id_str":"934833316993347584","name":"Ray - Lee \ud83c\udf3b","screen_name":"raysatblu","location":"","description":"Lawyer","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":305,"friends_count":2728,"listed_count":1,"created_at":"Sun - Nov 26 17:16:45 +0000 2017","favourites_count":50849,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34343,"lang":null,"status":{"created_at":"Sat - Mar 26 04:38:51 +0000 2022","id":1507577800013844480,"id_str":"1507577800013844480","text":"Breathe - out\nSo I can breathe you in\nHold you in\nAnd now\nI know you''ve always - been\nOut of your head\nOut of my head I\u2026 https:\/\/t.co\/Y0YnqYoV1z","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y0YnqYoV1z","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507577800013844480","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149742548837122048\/ipnTpFx0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149742548837122048\/ipnTpFx0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/934833316993347584\/1563063784","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3430189586,"id_str":"3430189586","name":"Valorie - Fischbach","screen_name":"valfischbach16","location":"Palm Beach Gardens, - FL","description":"FLORIDA FOODY","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":92,"friends_count":1240,"listed_count":5,"created_at":"Wed - Sep 02 22:06:33 +0000 2015","favourites_count":7877,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5430,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1443446980563324933\/8_1bedoS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1443446980563324933\/8_1bedoS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3430189586\/1632979553","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1051448706,"id_str":"1051448706","name":"Aminu - A Maigandi","screen_name":"aamaigandi","location":"Kaura-Namoda","description":"\"O - Allah, I have greatly wronged myself and no one forgive sins but You. So, - grant me forgiveness and have mercy on me. Surely, you are Forgiven Merciful\".","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":511,"friends_count":5003,"listed_count":0,"created_at":"Tue - Jan 01 00:10:00 +0000 2013","favourites_count":2742,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2414,"lang":null,"status":{"created_at":"Sun - Mar 06 06:04:01 +0000 2022","id":1500351474961895425,"id_str":"1500351474961895425","text":"RT - @DeeOneAyekooto: This is the authentic APC zoning arrangement. https:\/\/t.co\/HOb7Lltz9Q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DeeOneAyekooto","name":"Ayekooto","id":202154433,"id_str":"202154433","indices":[3,18]}],"urls":[],"media":[{"id":1500092300394913793,"id_str":"1500092300394913793","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"large":{"w":1079,"h":1270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1020,"h":1200,"resize":"fit"},"small":{"w":578,"h":680,"resize":"fit"}},"source_status_id":1500092311279124481,"source_status_id_str":"1500092311279124481","source_user_id":202154433,"source_user_id_str":"202154433"}]},"extended_entities":{"media":[{"id":1500092300394913793,"id_str":"1500092300394913793","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"large":{"w":1079,"h":1270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1020,"h":1200,"resize":"fit"},"small":{"w":578,"h":680,"resize":"fit"}},"source_status_id":1500092311279124481,"source_status_id_str":"1500092311279124481","source_user_id":202154433,"source_user_id_str":"202154433"},{"id":1500092304790536193,"id_str":"1500092304790536193","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFmAN1WQAEXXqa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFmAN1WQAEXXqa.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":571,"h":680,"resize":"fit"},"large":{"w":1079,"h":1285,"resize":"fit"},"medium":{"w":1008,"h":1200,"resize":"fit"}},"source_status_id":1500092311279124481,"source_status_id_str":"1500092311279124481","source_user_id":202154433,"source_user_id_str":"202154433"},{"id":1500092308729081866,"id_str":"1500092308729081866","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFmAcgXsAohCQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFmAcgXsAohCQF.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":588,"resize":"fit"},"large":{"w":1079,"h":933,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1079,"h":933,"resize":"fit"}},"source_status_id":1500092311279124481,"source_status_id_str":"1500092311279124481","source_user_id":202154433,"source_user_id_str":"202154433"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 12:54:12 +0000 2022","id":1500092311279124481,"id_str":"1500092311279124481","text":"This - is the authentic APC zoning arrangement. https:\/\/t.co\/HOb7Lltz9Q","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500092300394913793,"id_str":"1500092300394913793","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"large":{"w":1079,"h":1270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1020,"h":1200,"resize":"fit"},"small":{"w":578,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500092300394913793,"id_str":"1500092300394913793","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFl_9dWYAEQl1A.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"large":{"w":1079,"h":1270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1020,"h":1200,"resize":"fit"},"small":{"w":578,"h":680,"resize":"fit"}}},{"id":1500092304790536193,"id_str":"1500092304790536193","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFmAN1WQAEXXqa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFmAN1WQAEXXqa.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":571,"h":680,"resize":"fit"},"large":{"w":1079,"h":1285,"resize":"fit"},"medium":{"w":1008,"h":1200,"resize":"fit"}}},{"id":1500092308729081866,"id_str":"1500092308729081866","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FNFmAcgXsAohCQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNFmAcgXsAohCQF.jpg","url":"https:\/\/t.co\/HOb7Lltz9Q","display_url":"pic.twitter.com\/HOb7Lltz9Q","expanded_url":"https:\/\/twitter.com\/DeeOneAyekooto\/status\/1500092311279124481\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":588,"resize":"fit"},"large":{"w":1079,"h":933,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1079,"h":933,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":93,"favorite_count":224,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":93,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160901953855131649\/WaHgTqg1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160901953855131649\/WaHgTqg1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":815284105906704384,"id_str":"815284105906704384","name":"Smadar","screen_name":"mercedessol18","location":"Israel","description":"a - teacher\/ avid reader\/news junkie\/ mom \/thrillers lover\/art lover\/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":1091,"listed_count":1,"created_at":"Sat - Dec 31 19:50:52 +0000 2016","favourites_count":8755,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1704,"lang":null,"status":{"created_at":"Thu - Mar 17 14:05:29 +0000 2022","id":1504458908198481930,"id_str":"1504458908198481930","text":"RT - @edgarsrinkevics: Russian war crimes tribunal should not be held in Nuremberg - or the Hague but in Mariupol or Kharkiv, those responsible\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"edgarsrinkevics","name":"Edgars - Rink\u0113vi\u010ds","id":61454352,"id_str":"61454352","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 17 05:44:35 +0000 2022","id":1504332850157469696,"id_str":"1504332850157469696","text":"Russian - war crimes tribunal should not be held in Nuremberg or the Hague but in Mariupol - or Kharkiv, those responsi\u2026 https:\/\/t.co\/fMu2bOVvKh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fMu2bOVvKh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504332850157469696","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"1d73626cc863c69f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d73626cc863c69f.json","place_type":"city","name":"Riga","full_name":"Riga, - Latvia","country_code":"LV","country":"Latvia","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[23.9325829,56.8570671],[24.3247299,56.8570671],[24.3247299,57.0859184],[23.9325829,57.0859184]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1075,"favorite_count":4815,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1075,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1184091498301874182\/5qOxSSTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1184091498301874182\/5qOxSSTw_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":54708851,"id_str":"54708851","name":"syombua - wa nyamai","screen_name":"syombuanyamai1","location":"london","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":1557,"listed_count":0,"created_at":"Tue - Jul 07 22:51:53 +0000 2009","favourites_count":144,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":22,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541333131295752193\/WlaEkpYm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541333131295752193\/WlaEkpYm_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":127465651,"id_str":"127465651","name":"Jamilla - Camel","screen_name":"Jamillacamel","location":"Silicon Valley, California","description":"I''m - a Cat Rescue Volunteer and Cat Mom. I used to be a Beauty Blogger. \ud83d\ude38\ud83d\udc93","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":390,"friends_count":4306,"listed_count":15,"created_at":"Mon - Mar 29 08:38:40 +0000 2010","favourites_count":100280,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":119168,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497601605654364167\/nhr0ymOb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497601605654364167\/nhr0ymOb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127465651\/1532099078","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":337769897,"id_str":"337769897","name":"B - O S","screen_name":"BLibertas_","location":"Poland","description":"Irish exile - in Poland.","url":"https:\/\/t.co\/VbrhL4BjWo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VbrhL4BjWo","expanded_url":"http:\/\/research.cointelegraph.com","display_url":"research.cointelegraph.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1180,"friends_count":4625,"listed_count":4,"created_at":"Mon - Jul 18 15:13:04 +0000 2011","favourites_count":20746,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":127,"lang":null,"status":{"created_at":"Tue - Mar 22 17:33:23 +0000 2022","id":1506323165571690502,"id_str":"1506323165571690502","text":"RT - @CointelegraphCS: It comes as no surprise that all @Algorand projects didn''t - fit on one chart, so we''re back with the second part! This\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CointelegraphCS","name":"Cointelegraph - Research","id":1321136246349910016,"id_str":"1321136246349910016","indices":[3,19]},{"screen_name":"Algorand","name":"Algorand","id":927909832002277376,"id_str":"927909832002277376","indices":[54,63]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 13:32:46 +0000 2022","id":1504813062766960642,"id_str":"1504813062766960642","text":"It - comes as no surprise that all @Algorand projects didn''t fit on one chart, - so we''re back with the second part! Th\u2026 https:\/\/t.co\/qnuQmorc02","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Algorand","name":"Algorand","id":927909832002277376,"id_str":"927909832002277376","indices":[33,42]}],"urls":[{"url":"https:\/\/t.co\/qnuQmorc02","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504813062766960642","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":152,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":51,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1506321565343965194\/DZwKF2Ax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1506321565343965194\/DZwKF2Ax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337769897\/1610195039","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20584587,"id_str":"20584587","name":"Siobhan - WOMEN do it better.","screen_name":"siobhancharlie","location":"Dublin City, - Ireland","description":"Photographer, liberal, dog lover. tRump hater. Irish.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":823,"listed_count":1,"created_at":"Wed - Feb 11 11:46:24 +0000 2009","favourites_count":3650,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":801,"lang":null,"status":{"created_at":"Wed - Mar 23 19:39:19 +0000 2022","id":1506717245292093447,"id_str":"1506717245292093447","text":"RT - @Fiona_Kildare: Safe driving Siobhan. Well done to all","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Fiona_Kildare","name":"Senator - Fiona OLoughlin","id":23512243,"id_str":"23512243","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 19:31:54 +0000 2022","id":1506715381058179080,"id_str":"1506715381058179080","text":"Safe - driving Siobhan. Well done to all https:\/\/t.co\/dIA8oPyfsm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dIA8oPyfsm","expanded_url":"https:\/\/twitter.com\/siobhancharlie\/status\/1506705047652114437","display_url":"twitter.com\/siobhancharlie\u2026","indices":[39,62]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"cbd95de037c865b4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cbd95de037c865b4.json","place_type":"city","name":"Kildare","full_name":"Kildare, - Ireland","country_code":"IE","country":"Ireland","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-7.1683614,52.8577783],[-6.4623047,52.8577783],[-6.4623047,53.4518349],[-7.1683614,53.4518349]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1506705047652114437,"quoted_status_id_str":"1506705047652114437","retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506705047652114437,"quoted_status_id_str":"1506705047652114437","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1357416497535156227\/hRwYJJL2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1357416497535156227\/hRwYJJL2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20584587\/1612468288","profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1310589434195304448,"id_str":"1310589434195304448","name":"Jackie - Fielding","screen_name":"jackiefielding_","location":"New York City","description":"Fellow\/counsel - @BrennanCenter \u2022 J.D. @UofMNLawSchool \u2022 she \u2022 views mine, tweets - not endorsed, not legal advice! \u2022 BLM \u2022 Hoping my life passes the - Bechdel test","url":"https:\/\/t.co\/GhXeY5FSoG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GhXeY5FSoG","expanded_url":"https:\/\/lnk.bio\/heA7","display_url":"lnk.bio\/heA7","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":343,"friends_count":3165,"listed_count":1,"created_at":"Mon - Sep 28 14:37:44 +0000 2020","favourites_count":25601,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":232,"lang":null,"status":{"created_at":"Wed - Mar 16 12:47:18 +0000 2022","id":1504076841333706754,"id_str":"1504076841333706754","text":"RT - @lbeisen: Our new @brennancenter report analyzes recent trends in the independent - oversight of our nation\u2019s prisons and jails. Many juri\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lbeisen","name":"Lauren-Brooke - (L.B.) Eisen","id":254211582,"id_str":"254211582","indices":[3,11]},{"screen_name":"BrennanCenter","name":"Brennan - Center","id":20707070,"id_str":"20707070","indices":[21,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 15 14:48:12 +0000 2022","id":1503744880434196491,"id_str":"1503744880434196491","text":"Our - new @brennancenter report analyzes recent trends in the independent oversight - of our nation\u2019s prisons and jails\u2026 https:\/\/t.co\/cX73syvqju","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BrennanCenter","name":"Brennan - Center","id":20707070,"id_str":"20707070","indices":[8,22]}],"urls":[{"url":"https:\/\/t.co\/cX73syvqju","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1503744880434196491","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310590027789983744\/OFiIxapM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310590027789983744\/OFiIxapM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1310589434195304448\/1610389210","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1241098253153812481,"id_str":"1241098253153812481","name":"K. - Gagne","screen_name":"KGagne16","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":191,"listed_count":0,"created_at":"Fri - Mar 20 20:24:59 +0000 2020","favourites_count":8537,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Sat - Sep 26 16:40:38 +0000 2020","id":1309895668434112512,"id_str":"1309895668434112512","text":"RT - @fred_guttenberg: Wow! Without words @donwinslow.\n\nAMERICA PLEASE WATCH - THIS!!!\n\nThis video is the reason the current occupant of the W\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"fred_guttenberg","name":"Fred - Guttenberg","id":967027984426242053,"id_str":"967027984426242053","indices":[3,19]},{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[41,52]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Sep 26 13:43:43 +0000 2020","id":1309851146824097793,"id_str":"1309851146824097793","text":"Wow! Without - words @donwinslow.\n\nAMERICA PLEASE WATCH THIS!!!\n\nThis video is the reason - the current occupant of th\u2026 https:\/\/t.co\/Ww1yfui150","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"donwinslow","name":"Don - Winslow","id":255812611,"id_str":"255812611","indices":[20,31]}],"urls":[{"url":"https:\/\/t.co\/Ww1yfui150","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1309851146824097793","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1309677670620213248,"quoted_status_id_str":"1309677670620213248","retweet_count":1259,"favorite_count":1814,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1309677670620213248,"quoted_status_id_str":"1309677670620213248","retweet_count":1259,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1082137314233466880,"id_str":"1082137314233466880","name":"Juan - Lara","screen_name":"JuanLar70011577","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":832,"listed_count":0,"created_at":"Mon - Jan 07 04:50:15 +0000 2019","favourites_count":1219,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30,"lang":null,"status":{"created_at":"Wed - Mar 16 00:11:18 +0000 2022","id":1503886591231606784,"id_str":"1503886591231606784","text":"@Jim_Jordan - Dude get off his nuts.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Jim_Jordan","name":"Rep. - Jim Jordan","id":18166778,"id_str":"18166778","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1503777005283782661,"in_reply_to_status_id_str":"1503777005283782661","in_reply_to_user_id":18166778,"in_reply_to_user_id_str":"18166778","in_reply_to_screen_name":"Jim_Jordan","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324763882615828485\/3IyYcp7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324763882615828485\/3IyYcp7t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082137314233466880\/1604683406","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2394554589,"id_str":"2394554589","name":"Andrew - McGuire","screen_name":"ajmcguire1963","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":154,"friends_count":0,"listed_count":0,"created_at":"Sat - Mar 08 18:37:28 +0000 2014","favourites_count":107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":null,"status":{"created_at":"Sat - Dec 01 17:25:42 +0000 2018","id":1068919078285426688,"id_str":"1068919078285426688","text":"@curryspcworld","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1068897651721232384,"in_reply_to_status_id_str":"1068897651721232384","in_reply_to_user_id":2394554589,"in_reply_to_user_id_str":"2394554589","in_reply_to_screen_name":"ajmcguire1963","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442368856628408320\/fLFTVpgS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442368856628408320\/fLFTVpgS_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1566199140,"id_str":"1566199140","name":"Teresa - Morris","screen_name":"tmorrizzz","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6,"friends_count":380,"listed_count":0,"created_at":"Wed - Jul 03 16:58:36 +0000 2013","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Mon - Feb 10 22:24:56 +0000 2020","id":1226995491738533888,"id_str":"1226995491738533888","text":"@MSNBC I - don\u2019t understand all this discussion of Bloomberg. We are now voting - in California and he is not on the ballot.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MSNBC","name":"MSNBC","id":2836421,"id_str":"2836421","indices":[0,6]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2836421,"in_reply_to_user_id_str":"2836421","in_reply_to_screen_name":"MSNBC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1223317906274103296,"id_str":"1223317906274103296","name":"joe - naughton","screen_name":"joenaughton9","location":"Kerry, Ireland","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":106,"listed_count":0,"created_at":"Fri - Jan 31 18:52:01 +0000 2020","favourites_count":794,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Wed - Mar 09 15:39:33 +0000 2022","id":1501583476277063683,"id_str":"1501583476277063683","text":"@breakingnewsie - They would wouldn\u2019t they","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"breakingnewsie","name":"breakingnews.ie","id":15761637,"id_str":"15761637","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501583134315347968,"in_reply_to_status_id_str":"1501583134315347968","in_reply_to_user_id":15761637,"in_reply_to_user_id_str":"15761637","in_reply_to_screen_name":"breakingnewsie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302015169002958849\/3Snvgwex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302015169002958849\/3Snvgwex_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1223317906274103296\/1599259685","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1082350749823221761,"id_str":"1082350749823221761","name":"John","screen_name":"John64750804","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":134,"listed_count":0,"created_at":"Mon - Jan 07 18:58:22 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Fri - Sep 25 02:07:57 +0000 2020","id":1309313660058206208,"id_str":"1309313660058206208","text":"@RexChapman - Holy shit","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RexChapman","name":"Rex - Chapman\ud83c\udfc7\ud83c\udffc","id":324703658,"id_str":"324703658","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1309287499194404866,"in_reply_to_status_id_str":"1309287499194404866","in_reply_to_user_id":324703658,"in_reply_to_user_id_str":"324703658","in_reply_to_screen_name":"RexChapman","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":248807475,"id_str":"248807475","name":"Susan - Brassell","screen_name":"suebrassell","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":17,"friends_count":509,"listed_count":0,"created_at":"Mon - Feb 07 19:29:13 +0000 2011","favourites_count":273,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51,"lang":null,"status":{"created_at":"Mon - Mar 21 05:00:09 +0000 2022","id":1505771218821074945,"id_str":"1505771218821074945","text":"@boonbags - Happy Birthday Emily, have a great day \ud83c\udf81\ud83c\udf82\ud83c\udf39","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"boonbags","name":"Mitch","id":2152181541,"id_str":"2152181541","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505537842260422657,"in_reply_to_status_id_str":"1505537842260422657","in_reply_to_user_id":2152181541,"in_reply_to_user_id_str":"2152181541","in_reply_to_screen_name":"boonbags","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2526202519,"id_str":"2526202519","name":"Doug - Maesk","screen_name":"DougMaesk","location":"Tamarac, FL","description":"Business - owner, psychotherapist, husband to amazing guy (!), Florida resident, former - candidate for Tamarac City Commission, lifelong DEM. #Resist #springsteen","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3057,"friends_count":4660,"listed_count":4,"created_at":"Tue - May 27 00:44:10 +0000 2014","favourites_count":103776,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28999,"lang":null,"status":{"created_at":"Sat - Mar 26 05:34:08 +0000 2022","id":1507591710234271747,"id_str":"1507591710234271747","text":"RT - @TheRickWilson: Profiles in Chickenshit","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TheRickWilson","name":"Rick - Wilson","id":19084896,"id_str":"19084896","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 00:02:10 +0000 2022","id":1507508168561201157,"id_str":"1507508168561201157","text":"Profiles - in Chickenshit https:\/\/t.co\/gvXBd59SiY","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gvXBd59SiY","expanded_url":"https:\/\/twitter.com\/noliewithbtc\/status\/1507492833665728517","display_url":"twitter.com\/noliewithbtc\/s\u2026","indices":[24,47]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":1826,"favorite_count":13382,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1507492833665728517,"quoted_status_id_str":"1507492833665728517","retweet_count":1826,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/939534730944421888\/bDgbodTs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/939534730944421888\/bDgbodTs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2526202519\/1593965245","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1259694954668077058,"id_str":"1259694954668077058","name":"Kathi - McCauley","screen_name":"Kathi30897994","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":35,"friends_count":321,"listed_count":0,"created_at":"Mon - May 11 04:01:08 +0000 2020","favourites_count":344,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1096,"lang":null,"status":{"created_at":"Sun - Mar 13 18:37:58 +0000 2022","id":1503077928963170306,"id_str":"1503077928963170306","text":"RT - @thecjpearson: On his FIRST day in office, Joe Biden shut down the Keystone - Pipeline that would have created 1.1 million barrels of oil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"thecjpearson","name":"CJ - Pearson","id":2393323908,"id_str":"2393323908","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 12 21:19:54 +0000 2022","id":1502756292355571714,"id_str":"1502756292355571714","text":"On - his FIRST day in office, Joe Biden shut down the Keystone Pipeline that would - have created 1.1 million barrels o\u2026 https:\/\/t.co\/AGHyydMSis","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/AGHyydMSis","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502756292355571714","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":526,"favorite_count":2535,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":526,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1345046158419386368\/i-XXHGvz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1345046158419386368\/i-XXHGvz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1259694954668077058\/1604961200","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4870773499,"id_str":"4870773499","name":"William","screen_name":"qtxr917","location":"San - Diego, CA","description":"Add a bio to your profile","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":51,"friends_count":262,"listed_count":0,"created_at":"Sat - Feb 06 22:58:34 +0000 2016","favourites_count":3708,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":782,"lang":null,"status":{"created_at":"Wed - Mar 23 03:58:16 +0000 2022","id":1506480423244861440,"id_str":"1506480423244861440","text":"RT - @kentcdodds: The more your tests resemble the way your software is used, the - more confidence they can give you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kentcdodds","name":"Kent - C. Dodds \ud83d\udcbf","id":389681470,"id_str":"389681470","indices":[3,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 23 03:05:40 +0000 2018","id":977018512689455106,"id_str":"977018512689455106","text":"The - more your tests resemble the way your software is used, the more confidence - they can give you.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":278,"favorite_count":1002,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":278,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1289006653442908160\/7mAilTl8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1289006653442908160\/7mAilTl8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4870773499\/1611723416","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":830550028062171136,"id_str":"830550028062171136","name":"Lindy","screen_name":"cohenlindy55","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":673,"listed_count":1,"created_at":"Sat - Feb 11 22:52:12 +0000 2017","favourites_count":656,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4638,"lang":null,"status":{"created_at":"Thu - Jan 13 23:38:23 +0000 2022","id":1481772646824091651,"id_str":"1481772646824091651","text":"RT - @Schneider4IL10: I just voted to send the John R. Lewis Voting Rights Act - to the Senate. \n\nRetweet if you think the Senate should act on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Schneider4IL10","name":"Brad - Schneider","id":278005891,"id_str":"278005891","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Jan 13 17:54:31 +0000 2022","id":1481686110484922368,"id_str":"1481686110484922368","text":"I - just voted to send the John R. Lewis Voting Rights Act to the Senate. \n\nRetweet - if you think the Senate should act on this immediately.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7837,"favorite_count":22340,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":7837,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3124675143,"id_str":"3124675143","name":"Abdussalam - G Hassan","screen_name":"Shehunkurna","location":"Nigeria","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":504,"listed_count":0,"created_at":"Sat - Mar 28 20:12:37 +0000 2015","favourites_count":1082,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":168,"lang":null,"status":{"created_at":"Mon - Mar 21 09:07:13 +0000 2022","id":1505833396257406981,"id_str":"1505833396257406981","text":"@__munaaya - Sannu ta malam Bahaushe","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"__munaaya","name":"Fatima.","id":1015016781885460480,"id_str":"1015016781885460480","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1505533065623388164,"in_reply_to_status_id_str":"1505533065623388164","in_reply_to_user_id":1015016781885460480,"in_reply_to_user_id_str":"1015016781885460480","in_reply_to_screen_name":"__munaaya","geo":null,"coordinates":null,"place":{"id":"00611f1548c7bdef","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00611f1548c7bdef.json","place_type":"city","name":"Kano","full_name":"Kano, - Nigeria","country_code":"NG","country":"Nigeria","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[8.4475987,11.9296331],[8.6073347,11.9296331],[8.6073347,12.0803669],[8.4475987,12.0803669]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1315696574991917057\/pQzooVHX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1315696574991917057\/pQzooVHX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3124675143\/1602521482","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1305945336314200070,"id_str":"1305945336314200070","name":"A - \ud83d\udc11","screen_name":"lounothere","location":"Birkenhead, England","description":"This - is a piss-take","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":87,"friends_count":231,"listed_count":0,"created_at":"Tue - Sep 15 19:03:37 +0000 2020","favourites_count":2988,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":457,"lang":null,"status":{"created_at":"Sat - Jan 29 23:00:20 +0000 2022","id":1487561277652275200,"id_str":"1487561277652275200","text":"RT - @demi_jaynexx: I actually get the urge to push slow walkers over oh my fucking - god move","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"demi_jaynexx","name":"Demi - Murphy","id":1281863457055346692,"id_str":"1281863457055346692","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 29 12:37:54 +0000 2022","id":1487404636193673218,"id_str":"1487404636193673218","text":"I - actually get the urge to push slow walkers over oh my fucking god move","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1234,"favorite_count":16004,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1234,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391012472639873027\/TXgaKMOt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391012472639873027\/TXgaKMOt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1305945336314200070\/1620478209","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":987914434830974976,"id_str":"987914434830974976","name":"Willy","screen_name":"BhargavRoyy","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":1902,"listed_count":0,"created_at":"Sun - Apr 22 04:42:10 +0000 2018","favourites_count":522,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3991,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429817762201751554\/TC2w4Crd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429817762201751554\/TC2w4Crd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/987914434830974976\/1524373067","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2941489269,"id_str":"2941489269","name":"Myrna","screen_name":"MeindtMyrna","location":"Sarasota - Florida ","description":"Grandmother of nine; \r\nHappy retiree!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":102,"friends_count":416,"listed_count":0,"created_at":"Fri - Dec 26 00:29:14 +0000 2014","favourites_count":189332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":184,"lang":null,"status":{"created_at":"Sun - Feb 13 02:31:26 +0000 2022","id":1492687832443494406,"id_str":"1492687832443494406","text":"@RadioFreeTom - I\u2019m a Buzzy Cohen fan. He\u2019s snazzy !","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RadioFreeTom","name":"Tom - Nichols","id":459872442,"id_str":"459872442","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1492570778822402052,"in_reply_to_status_id_str":"1492570778822402052","in_reply_to_user_id":459872442,"in_reply_to_user_id_str":"459872442","in_reply_to_screen_name":"RadioFreeTom","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":706075000902705152,"id_str":"706075000902705152","name":"Carl","screen_name":"niicarl28","location":"Accra - Ghana","description":"sports journalist . presenter , football lover, MC ,and - product of school of common sense .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":404,"friends_count":5001,"listed_count":2,"created_at":"Sat - Mar 05 11:12:53 +0000 2016","favourites_count":9029,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":290,"lang":null,"status":{"created_at":"Tue - Feb 22 19:16:54 +0000 2022","id":1496202355599159302,"id_str":"1496202355599159302","text":"RT - @UsherKomugisha: Class is permanent! \ud83d\ude0e\n\nSenegalese \ud83c\uddf8\ud83c\uddf3 - legends warm up in the dressing room before they take on the African Legends - at th\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UsherKomugisha","name":"Usher - Komugisha","id":289968217,"id_str":"289968217","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 22 18:51:13 +0000 2022","id":1496195894131179525,"id_str":"1496195894131179525","text":"Class - is permanent! \ud83d\ude0e\n\nSenegalese \ud83c\uddf8\ud83c\uddf3 legends - warm up in the dressing room before they take on the African Legends a\u2026 - https:\/\/t.co\/JIJVLvmQlr","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JIJVLvmQlr","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496195894131179525","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"84f644e036f3dcb0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/84f644e036f3dcb0.json","place_type":"country","name":"Rwanda","full_name":"Rwanda","country_code":"RW","country":"Rwanda","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[28.8617568,-2.8387274],[30.8993559,-2.8387274],[30.8993559,-1.0474785],[28.8617568,-1.0474785]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":496,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":98,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986377949258702848\/SXq48jjY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986377949258702848\/SXq48jjY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/706075000902705152\/1524780975","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":45370415,"id_str":"45370415","name":"Shahin","screen_name":"Shahin_HF","location":"Toronto","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":116,"friends_count":1030,"listed_count":3,"created_at":"Sun - Jun 07 16:40:35 +0000 2009","favourites_count":128183,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2702,"lang":null,"status":{"created_at":"Tue - Nov 30 15:08:04 +0000 2021","id":1465699156022816775,"id_str":"1465699156022816775","text":"@ServiceOntario - First one says customer not available and second number gets a fax machine","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ServiceOntario","name":"ServiceOntario","id":17984769,"id_str":"17984769","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1465685226617724934,"in_reply_to_status_id_str":"1465685226617724934","in_reply_to_user_id":17984769,"in_reply_to_user_id_str":"17984769","in_reply_to_screen_name":"ServiceOntario","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677292626639368192\/llQBKBH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677292626639368192\/llQBKBH2_normal.jpg","profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1373688074,"id_str":"1373688074","name":"Denise - Freschi","screen_name":"denisefreschi","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":520,"listed_count":0,"created_at":"Tue - Apr 23 03:18:45 +0000 2013","favourites_count":34360,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":247,"lang":null,"status":{"created_at":"Sun - Mar 20 22:35:25 +0000 2022","id":1505674400191823874,"id_str":"1505674400191823874","text":"@MISSION_is_life - Take it off and cough. Scare the idiot\ud83e\udd17","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MISSION_is_life","name":"Popeye","id":828797269029724164,"id_str":"828797269029724164","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1505551482791231490,"in_reply_to_status_id_str":"1505551482791231490","in_reply_to_user_id":828797269029724164,"in_reply_to_user_id_str":"828797269029724164","in_reply_to_screen_name":"MISSION_is_life","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1304934769,"id_str":"1304934769","name":"Ki. - \ud83e\uddda\ud83c\udffd","screen_name":"DiosaKayy","location":"Illinois, - USA","description":"unapologetically me. | 22. BSN,RN | DLB\ud83d\udc9e | - 1908","url":"https:\/\/t.co\/VO8Kc7xJAl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VO8Kc7xJAl","expanded_url":"http:\/\/Instagram.com\/diosakay","display_url":"Instagram.com\/diosakay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1057,"friends_count":610,"listed_count":0,"created_at":"Tue - Mar 26 17:09:47 +0000 2013","favourites_count":9770,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":39153,"lang":null,"status":{"created_at":"Sat - Mar 26 00:17:29 +0000 2022","id":1507512023407546381,"id_str":"1507512023407546381","text":"I\u2019ve - been craving so many foods recently \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501699866925350912\/yiAeKB4N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501699866925350912\/yiAeKB4N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304934769\/1646868138","profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":435044969,"id_str":"435044969","name":"Sasa - Obradovic","screen_name":"SasaObradovic1","location":"Belgrade","description":"Omnia - Ad Maiorem Dei Gloriam","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":422,"friends_count":5005,"listed_count":1,"created_at":"Mon - Dec 12 16:22:44 +0000 2011","favourites_count":26946,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4126,"lang":null,"status":{"created_at":"Fri - Mar 25 19:40:39 +0000 2022","id":1507442355443576832,"id_str":"1507442355443576832","text":"@Brufenka - Tu sam Ljubavi. Volim te i dalje i vi\u0161e i ja\u010de. \u010cuvaj se","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Brufenka","name":"Brufenka","id":761814872753639424,"id_str":"761814872753639424","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507434580042780687,"in_reply_to_status_id_str":"1507434580042780687","in_reply_to_user_id":761814872753639424,"in_reply_to_user_id_str":"761814872753639424","in_reply_to_screen_name":"Brufenka","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1265907546117849088,"id_str":"1265907546117849088","name":"Ajay","screen_name":"Ajay_2988","location":"","description":"ONEarth","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":377,"listed_count":0,"created_at":"Thu - May 28 07:28:43 +0000 2020","favourites_count":3477,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1452505923478384640\/QzEI6Seu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1452505923478384640\/QzEI6Seu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1181223319523201024,"id_str":"1181223319523201024","name":"Auwal - Musa","screen_name":"AuwalMu83170600","location":"","description":"I don''t - pretend","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":269,"listed_count":0,"created_at":"Mon - Oct 07 15:02:55 +0000 2019","favourites_count":6097,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":23,"lang":null,"status":{"created_at":"Tue - May 04 17:03:31 +0000 2021","id":1389626757763026948,"id_str":"1389626757763026948","text":"@mattarraxxzzee - @ZaynerbuAbu Qaryata walla","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mattarraxxzzee","name":"THIS - IS MATTARRAXXZZEE","id":328826963,"id_str":"328826963","indices":[0,15]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1389130975951663106,"in_reply_to_status_id_str":"1389130975951663106","in_reply_to_user_id":328826963,"in_reply_to_user_id_str":"328826963","in_reply_to_screen_name":"mattarraxxzzee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"hi"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181223935360282625\/agBU1kn__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181223935360282625\/agBU1kn__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1905464682,"id_str":"1905464682","name":"Loren - Fox","screen_name":"LiveThePSLife","location":"Palm Springs California ","description":"Loren - Fox ~ EXP Realty Sand to Sea Real Estate \nPalm Springs to North Shore San - Diego \nhttps:\/\/t.co\/DldUj6ZVMv","url":"https:\/\/t.co\/quaW9v6rEp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/quaW9v6rEp","expanded_url":"https:\/\/lorenfox.famrealtygroup.com\/","display_url":"lorenfox.famrealtygroup.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/DldUj6ZVMv","expanded_url":"http:\/\/lorenfox.famrealtygroup.com","display_url":"lorenfox.famrealtygroup.com","indices":[88,111]}]}},"protected":false,"followers_count":1424,"friends_count":5001,"listed_count":4,"created_at":"Wed - Sep 25 21:47:08 +0000 2013","favourites_count":25460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45184,"lang":null,"status":{"created_at":"Sat - Mar 26 07:34:01 +0000 2022","id":1507621880852717573,"id_str":"1507621880852717573","text":"RT - @TomthunkitsMind: Donald Trump Jr FaceTimed this weekend while he was high\u2026 - https:\/\/t.co\/YnPI3SpoLn 03","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"TomthunkitsMind","name":"Tomthunkit\u2122","id":289118612,"id_str":"289118612","indices":[3,19]}],"urls":[],"media":[{"id":1485940847103426564,"id_str":"1485940847103426564","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","url":"https:\/\/t.co\/YnPI3SpoLn","display_url":"pic.twitter.com\/YnPI3SpoLn","expanded_url":"https:\/\/twitter.com\/TomthunkitsMind\/status\/1485940993744637956\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":402,"h":680,"resize":"fit"},"large":{"w":756,"h":1280,"resize":"fit"},"medium":{"w":709,"h":1200,"resize":"fit"}},"source_status_id":1485940993744637956,"source_status_id_str":"1485940993744637956","source_user_id":289118612,"source_user_id_str":"289118612"}]},"extended_entities":{"media":[{"id":1485940847103426564,"id_str":"1485940847103426564","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","url":"https:\/\/t.co\/YnPI3SpoLn","display_url":"pic.twitter.com\/YnPI3SpoLn","expanded_url":"https:\/\/twitter.com\/TomthunkitsMind\/status\/1485940993744637956\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":402,"h":680,"resize":"fit"},"large":{"w":756,"h":1280,"resize":"fit"},"medium":{"w":709,"h":1200,"resize":"fit"}},"source_status_id":1485940993744637956,"source_status_id_str":"1485940993744637956","source_user_id":289118612,"source_user_id_str":"289118612","video_info":{"aspect_ratio":[189,320],"duration_millis":54836,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/320x540\/cznzYxI9d9Xohd4c.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/480x812\/QcLSmKAT3fBb2XSr.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/720x1218\/dSN3m9m6BOFXW-pF.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/pl\/2qVU_NsBwo7qUTgZ.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 26 07:27:21 +0000 2022","id":1507620202925727747,"id_str":"1507620202925727747","text":"Donald - Trump Jr FaceTimed this weekend while he was high\u2026 https:\/\/t.co\/YnPI3SpoLn - 03","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1485940847103426564,"id_str":"1485940847103426564","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","url":"https:\/\/t.co\/YnPI3SpoLn","display_url":"pic.twitter.com\/YnPI3SpoLn","expanded_url":"https:\/\/twitter.com\/TomthunkitsMind\/status\/1485940993744637956\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":402,"h":680,"resize":"fit"},"large":{"w":756,"h":1280,"resize":"fit"},"medium":{"w":709,"h":1200,"resize":"fit"}},"source_status_id":1485940993744637956,"source_status_id_str":"1485940993744637956","source_user_id":289118612,"source_user_id_str":"289118612"}]},"extended_entities":{"media":[{"id":1485940847103426564,"id_str":"1485940847103426564","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1485940847103426564\/pu\/img\/Ej8hOCcpB1KJGNde.jpg","url":"https:\/\/t.co\/YnPI3SpoLn","display_url":"pic.twitter.com\/YnPI3SpoLn","expanded_url":"https:\/\/twitter.com\/TomthunkitsMind\/status\/1485940993744637956\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":402,"h":680,"resize":"fit"},"large":{"w":756,"h":1280,"resize":"fit"},"medium":{"w":709,"h":1200,"resize":"fit"}},"source_status_id":1485940993744637956,"source_status_id_str":"1485940993744637956","source_user_id":289118612,"source_user_id_str":"289118612","video_info":{"aspect_ratio":[189,320],"duration_millis":54836,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/320x540\/cznzYxI9d9Xohd4c.mp4?tag=12"},{"bitrate":950000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/480x812\/QcLSmKAT3fBb2XSr.mp4?tag=12"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/vid\/720x1218\/dSN3m9m6BOFXW-pF.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1485940847103426564\/pu\/pl\/2qVU_NsBwo7qUTgZ.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/www.socialjukebox.com\" rel=\"nofollow\"\u003eThe Social - Jukebox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1347411942994890753\/yDuqSw0X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1347411942994890753\/yDuqSw0X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1905464682\/1635640212","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1158680030362427394,"id_str":"1158680030362427394","name":"IZOBA''IREMBO","screen_name":"IremboNorman","location":"Uganda","description":"FATHER - | FARMER | ENTREPRENEUR | ADVENTURER AND AN ADMIRER OF GOD''S CREATIONS.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":205,"friends_count":1968,"listed_count":0,"created_at":"Tue - Aug 06 10:03:41 +0000 2019","favourites_count":4478,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2643,"lang":null,"status":{"created_at":"Sat - Mar 26 09:41:48 +0000 2022","id":1507654038116081665,"id_str":"1507654038116081665","text":"@kisanaconsults - Let me use Namagunga as the yardstick for traditional schools;u can''t compromise - an alumni from thi\u2026 https:\/\/t.co\/tCMtpKcD2L","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kisanaconsults","name":"Nick - Twinamatsiko","id":516915554,"id_str":"516915554","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/tCMtpKcD2L","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507654038116081665","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507616215359016963,"in_reply_to_status_id_str":"1507616215359016963","in_reply_to_user_id":516915554,"in_reply_to_user_id_str":"516915554","in_reply_to_screen_name":"kisanaconsults","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1297098718211186692\/4YXCt2sM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1297098718211186692\/4YXCt2sM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158680030362427394\/1600592551","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1276394695862767617,"id_str":"1276394695862767617","name":"Mike - Kadzuwa","screen_name":"KadzuwaMike","location":"Blantyre Malawi","description":"Education - Planning & Policy Analyst|GIS Consultant| Farmer |","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":202,"listed_count":0,"created_at":"Fri - Jun 26 06:00:22 +0000 2020","favourites_count":3536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":923,"lang":null,"status":{"created_at":"Thu - Mar 24 13:07:24 +0000 2022","id":1506981003721646097,"id_str":"1506981003721646097","text":"@MikoziNetwork - Civil engineering??? Kusowa ntchito? May be!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MikoziNetwork","name":"Mikozi - Network","id":348321982,"id_str":"348321982","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1506892235572498433,"in_reply_to_status_id_str":"1506892235572498433","in_reply_to_user_id":348321982,"in_reply_to_user_id_str":"348321982","in_reply_to_screen_name":"MikoziNetwork","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"tl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342360403234484230\/WNYJXU8w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342360403234484230\/WNYJXU8w_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":226674495,"id_str":"226674495","name":"Tr\u00ec\u015bh\ud83c\udde6\ud83c\uddfa\ud83c\uddfa\ud83c\uddf8\ud83d\udd2f\ud83c\udf0a\ud83c\udf0f\ud83d\udc15\ud83d\udd34\ud83d\udfe1\u26ab\ufe0f","screen_name":"TrishTbell","location":"Yuin - & Dharawal Country, NSW","description":"HS Principal DMs - only by request \u2026 thank you \ud83c\udf38","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":585,"friends_count":1115,"listed_count":0,"created_at":"Tue - Dec 14 19:44:08 +0000 2010","favourites_count":32855,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1609,"lang":null,"status":{"created_at":"Sun - Mar 06 16:01:30 +0000 2022","id":1500501834951114757,"id_str":"1500501834951114757","text":"RT - @DrMayaAngelou: \"Hate, it has caused a lot of problems in the world, but - has not solved one yet.\" #MayaAngelou https:\/\/t.co\/WSXvSwSZE5","truncated":false,"entities":{"hashtags":[{"text":"MayaAngelou","indices":[101,113]}],"symbols":[],"user_mentions":[{"screen_name":"DrMayaAngelou","name":"Maya - Angelou","id":146099195,"id_str":"146099195","indices":[3,17]}],"urls":[],"media":[{"id":1500501366632034304,"id_str":"1500501366632034304","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","url":"https:\/\/t.co\/WSXvSwSZE5","display_url":"pic.twitter.com\/WSXvSwSZE5","expanded_url":"https:\/\/twitter.com\/DrMayaAngelou\/status\/1500501488443002883\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":411,"resize":"fit"},"small":{"w":600,"h":411,"resize":"fit"},"large":{"w":600,"h":411,"resize":"fit"}},"source_status_id":1500501488443002883,"source_status_id_str":"1500501488443002883","source_user_id":146099195,"source_user_id_str":"146099195"}]},"extended_entities":{"media":[{"id":1500501366632034304,"id_str":"1500501366632034304","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","url":"https:\/\/t.co\/WSXvSwSZE5","display_url":"pic.twitter.com\/WSXvSwSZE5","expanded_url":"https:\/\/twitter.com\/DrMayaAngelou\/status\/1500501488443002883\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":411,"resize":"fit"},"small":{"w":600,"h":411,"resize":"fit"},"large":{"w":600,"h":411,"resize":"fit"}},"source_status_id":1500501488443002883,"source_status_id_str":"1500501488443002883","source_user_id":146099195,"source_user_id_str":"146099195"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 06 16:00:07 +0000 2022","id":1500501488443002883,"id_str":"1500501488443002883","text":"\"Hate, - it has caused a lot of problems in the world, but has not solved one yet.\" - #MayaAngelou https:\/\/t.co\/WSXvSwSZE5","truncated":false,"entities":{"hashtags":[{"text":"MayaAngelou","indices":[82,94]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1500501366632034304,"id_str":"1500501366632034304","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","url":"https:\/\/t.co\/WSXvSwSZE5","display_url":"pic.twitter.com\/WSXvSwSZE5","expanded_url":"https:\/\/twitter.com\/DrMayaAngelou\/status\/1500501488443002883\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":411,"resize":"fit"},"small":{"w":600,"h":411,"resize":"fit"},"large":{"w":600,"h":411,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1500501366632034304,"id_str":"1500501366632034304","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FNLaCv8XMAAkIbI.jpg","url":"https:\/\/t.co\/WSXvSwSZE5","display_url":"pic.twitter.com\/WSXvSwSZE5","expanded_url":"https:\/\/twitter.com\/DrMayaAngelou\/status\/1500501488443002883\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":411,"resize":"fit"},"small":{"w":600,"h":411,"resize":"fit"},"large":{"w":600,"h":411,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":604,"favorite_count":2320,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":604,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1473018823129239556\/6H7tfoZn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1473018823129239556\/6H7tfoZn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226674495\/1640030030","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1235450002350190593,"id_str":"1235450002350190593","name":"Zeeshan - Mehsud","screen_name":"MehsudZeeshan","location":"","description":"Student - Of Law.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":135,"friends_count":2021,"listed_count":0,"created_at":"Thu - Mar 05 06:20:34 +0000 2020","favourites_count":3079,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":42,"lang":null,"status":{"created_at":"Wed - Feb 23 10:15:19 +0000 2022","id":1496428451565387780,"id_str":"1496428451565387780","text":"RT - @Nazranausufzai: \u062e\u062f\u0627 \u06a9\u0631\u06d2 \u06a9\u06c1 \u062a\u0645\u06c1\u0627\u0631\u0627 - \u0628\u06be\u06cc \u06a9\u0648\u0626\u06cc \u06cc\u0648\u0633\u0641 \u06c1\u0648\n\u062e\u062f\u0627 - \u06a9\u0631\u06d2 \u062a\u0645\u06c1\u06cc\u06ba \u0627\u0633 \u06a9\u06cc - \u0642\u0645\u06cc\u0636 \u062a\u06a9 \u0646\u06c1 \u0645\u0644\u06d2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Nazranausufzai","name":"Nazrana - Yousufzai","id":122656426,"id_str":"122656426","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Feb 23 03:54:05 +0000 2022","id":1496332511437336577,"id_str":"1496332511437336577","text":"\u062e\u062f\u0627 - \u06a9\u0631\u06d2 \u06a9\u06c1 \u062a\u0645\u06c1\u0627\u0631\u0627 \u0628\u06be\u06cc - \u06a9\u0648\u0626\u06cc \u06cc\u0648\u0633\u0641 \u06c1\u0648\n\u062e\u062f\u0627 - \u06a9\u0631\u06d2 \u062a\u0645\u06c1\u06cc\u06ba \u0627\u0633 \u06a9\u06cc - \u0642\u0645\u06cc\u0636 \u062a\u06a9 \u0646\u06c1 \u0645\u0644\u06d2","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":616,"favorited":false,"retweeted":false,"lang":"ur"},"is_quote_status":false,"retweet_count":50,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ur"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381814530699841537\/3kCh0-A7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381814530699841537\/3kCh0-A7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1235450002350190593\/1607455130","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":507455006,"id_str":"507455006","name":"S - Robertson Women''s Rights ARE Human Rights\ud83c\udf0a","screen_name":"shereades","location":"Casa - Grande, AZ","description":"Fulltime RVer \ud83c\udf35AZ is our base #Resist - #MeToo\n\ud83c\udf0aGOOD TROUBLE \ud83c\uddfa\ud83c\udde6 #STANDWITHUKRAINE\n#WeAreStrongerTogether - \ud83c\udf0a#VoteBlue2022\ud83c\udf0a\n\ud83d\udce2Protect Our Native Americans - NoDM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16145,"friends_count":17736,"listed_count":15,"created_at":"Tue - Feb 28 14:37:32 +0000 2012","favourites_count":144361,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":46707,"lang":null,"status":{"created_at":"Fri - Mar 25 23:38:56 +0000 2022","id":1507502321969754115,"id_str":"1507502321969754115","text":"RT - @triinhertmann: Estonia (pop. 1,3m) has donated 220MEUR worth of military - equipment to UKR. That is 3rd largest donation after US (pop 3\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"triinhertmann","name":"Triin - Hertmann","id":1392092087571599364,"id_str":"1392092087571599364","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 07:55:14 +0000 2022","id":1507264832457912322,"id_str":"1507264832457912322","text":"Estonia - (pop. 1,3m) has donated 220MEUR worth of military equipment to UKR. That is - 3rd largest donation after US (\u2026 https:\/\/t.co\/JpVCTkeim0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/JpVCTkeim0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507264832457912322","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3926,"favorite_count":22336,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3926,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1147366380762566656\/XkrrBKZh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1147366380762566656\/XkrrBKZh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/507455006\/1571330002","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1193978808304570368,"id_str":"1193978808304570368","name":"Nicole - veronesi","screen_name":"Nicoleveronesi3","location":"","description":"Born - in Romania but lived in Italy for 20 years. Now studying Marketing mangment - at the Hanzehogeschool GRONINGEN ( Netherlands ) \nPhotography as hobby","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49,"friends_count":510,"listed_count":0,"created_at":"Mon - Nov 11 19:48:33 +0000 2019","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"status":{"created_at":"Fri - Mar 11 10:44:15 +0000 2022","id":1502233936612802561,"id_str":"1502233936612802561","text":"@ReynaldNeron - @nikita_mazepin Think also about how this effects Russian people not only - Ukrainian","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ReynaldNeron","name":"Reynald - N\u00e9ron","id":1477998631554895877,"id_str":"1477998631554895877","indices":[0,13]},{"screen_name":"nikita_mazepin","name":"Nikita - Mazepin","id":322593965,"id_str":"322593965","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1501520939195981832,"in_reply_to_status_id_str":"1501520939195981832","in_reply_to_user_id":1477998631554895877,"in_reply_to_user_id_str":"1477998631554895877","in_reply_to_screen_name":"ReynaldNeron","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1193979082767306752\/IwTxIg3f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1193979082767306752\/IwTxIg3f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1193978808304570368\/1573503877","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2542063235,"id_str":"2542063235","name":"Matthew - Gnabasik \ud83c\udf3b\ud83c\uddfa\ud83c\udde6","screen_name":"mattryansongs","location":"Chicago, - IL","description":"Gina\u2019s main squeeze, Sofia\u2019s dad, writer, musician, - runner\u2026All people are created equal - T. Jefferson, \u201cThe past is - never dead. It''s not even past.\u201dFaulkner","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":5,"friends_count":1331,"listed_count":0,"created_at":"Mon - May 12 00:22:40 +0000 2014","favourites_count":13046,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":706,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1497181649611726849\/W8F_Ivk2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1497181649611726849\/W8F_Ivk2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542063235\/1645871527","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1295682204480286720,"id_str":"1295682204480286720","name":"Sdzoldak8","screen_name":"sdzoldak8","location":"United - States","description":"Not all of us can do great things. But we can do small - things with great love.. Mother Teresa.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":974,"listed_count":0,"created_at":"Tue - Aug 18 11:21:33 +0000 2020","favourites_count":11318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":623,"lang":null,"status":{"created_at":"Mon - Mar 14 15:54:01 +0000 2022","id":1503399056298676229,"id_str":"1503399056298676229","text":"@DefNotDorothy - Beautiful!!! Will be there in two weeks!!!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DefNotDorothy","name":"Nasty - Woman","id":1267175549153218563,"id_str":"1267175549153218563","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1503368761621028865,"in_reply_to_status_id_str":"1503368761621028865","in_reply_to_user_id":1267175549153218563,"in_reply_to_user_id_str":"1267175549153218563","in_reply_to_screen_name":"DefNotDorothy","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303125877648166914\/6DkPtHTf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303125877648166914\/6DkPtHTf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295682204480286720\/1604330759","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":374182864,"id_str":"374182864","name":"lex - holmes","screen_name":"lex_holmes","location":"","description":"United States - Army, Chief Warrant Officer 3, (RET).","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":1858,"listed_count":0,"created_at":"Thu - Sep 15 21:13:26 +0000 2011","favourites_count":1709,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5291,"lang":null,"status":{"created_at":"Fri - Mar 25 00:30:37 +0000 2022","id":1507152942973038594,"id_str":"1507152942973038594","text":"RT - @lex_holmes: https:\/\/t.co\/mvkj5TI3fn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lex_holmes","name":"lex - holmes","id":374182864,"id_str":"374182864","indices":[3,14]}],"urls":[],"media":[{"id":1507152266687565828,"id_str":"1507152266687565828","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","url":"https:\/\/t.co\/mvkj5TI3fn","display_url":"pic.twitter.com\/mvkj5TI3fn","expanded_url":"https:\/\/twitter.com\/lex_holmes\/status\/1507152270114398208\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":838,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}},"source_status_id":1507152270114398208,"source_status_id_str":"1507152270114398208","source_user_id":374182864,"source_user_id_str":"374182864"}]},"extended_entities":{"media":[{"id":1507152266687565828,"id_str":"1507152266687565828","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","url":"https:\/\/t.co\/mvkj5TI3fn","display_url":"pic.twitter.com\/mvkj5TI3fn","expanded_url":"https:\/\/twitter.com\/lex_holmes\/status\/1507152270114398208\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":838,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}},"source_status_id":1507152270114398208,"source_status_id_str":"1507152270114398208","source_user_id":374182864,"source_user_id_str":"374182864"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 00:27:57 +0000 2022","id":1507152270114398208,"id_str":"1507152270114398208","text":"https:\/\/t.co\/mvkj5TI3fn","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507152266687565828,"id_str":"1507152266687565828","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","url":"https:\/\/t.co\/mvkj5TI3fn","display_url":"pic.twitter.com\/mvkj5TI3fn","expanded_url":"https:\/\/twitter.com\/lex_holmes\/status\/1507152270114398208\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":838,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507152266687565828,"id_str":"1507152266687565828","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOp7AFZWUAQRdgo.jpg","url":"https:\/\/t.co\/mvkj5TI3fn","display_url":"pic.twitter.com\/mvkj5TI3fn","expanded_url":"https:\/\/twitter.com\/lex_holmes\/status\/1507152270114398208\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":838,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1456230008758968325\/0_xiCTnm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1456230008758968325\/0_xiCTnm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374182864\/1606004818","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":923597048611524609,"id_str":"923597048611524609","name":"She - ?","screen_name":"she_her0","location":"Swaziland","description":"\ud83e\udd84","url":"https:\/\/t.co\/THdlZZXttv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/THdlZZXttv","expanded_url":"http:\/\/nv.fr","display_url":"nv.fr","indices":[0,23]}]},"description":{"urls":[]}},"protected":true,"followers_count":68,"friends_count":14,"listed_count":0,"created_at":"Thu - Oct 26 17:07:50 +0000 2017","favourites_count":6072,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1426355374068752384\/HqiiF55P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1426355374068752384\/HqiiF55P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/923597048611524609\/1623691182","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301871293550047232,"id_str":"1301871293550047232","name":"Mikki - Chaturvedi","screen_name":"MikkiChaturved5","location":"","description":"25 - \u091c\u0942\u0928 1960","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":853,"friends_count":2548,"listed_count":0,"created_at":"Fri - Sep 04 13:15:09 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"status":{"created_at":"Thu - Nov 12 12:36:37 +0000 2020","id":1326866488200896512,"id_str":"1326866488200896512","text":"https:\/\/t.co\/jNldBWZvWj","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1326866485122195458,"id_str":"1326866485122195458","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Emn6CcYUYAItr4K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Emn6CcYUYAItr4K.jpg","url":"https:\/\/t.co\/jNldBWZvWj","display_url":"pic.twitter.com\/jNldBWZvWj","expanded_url":"https:\/\/twitter.com\/MikkiChaturved5\/status\/1326866488200896512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1326866485122195458,"id_str":"1326866485122195458","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/Emn6CcYUYAItr4K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Emn6CcYUYAItr4K.jpg","url":"https:\/\/t.co\/jNldBWZvWj","display_url":"pic.twitter.com\/jNldBWZvWj","expanded_url":"https:\/\/twitter.com\/MikkiChaturved5\/status\/1326866488200896512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301872304369008640\/oZ3z_rZ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301872304369008640\/oZ3z_rZ3_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":836483831964307457,"id_str":"836483831964307457","name":"Maya","screen_name":"balerina17mpf","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":819,"friends_count":1082,"listed_count":0,"created_at":"Tue - Feb 28 07:51:01 +0000 2017","favourites_count":85585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25473,"lang":null,"status":{"created_at":"Thu - Mar 03 22:26:43 +0000 2022","id":1499511617754734592,"id_str":"1499511617754734592","text":"@MPaskaljevic - \ud83d\ude02\ud83d\ude02\ud83d\ude02","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MPaskaljevic","name":"Miroslav - Paskaljevic","id":1229934339867185153,"id_str":"1229934339867185153","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1498597363660775425,"in_reply_to_status_id_str":"1498597363660775425","in_reply_to_user_id":1229934339867185153,"in_reply_to_user_id_str":"1229934339867185153","in_reply_to_screen_name":"MPaskaljevic","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368185218314760195\/ZNEiUd96_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368185218314760195\/ZNEiUd96_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836483831964307457\/1612519341","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1273464659987910657,"id_str":"1273464659987910657","name":"Darnell","screen_name":"Darnell0654","location":"","description":"Reading - Tweets is \ud83d\udd11","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":220,"friends_count":3452,"listed_count":2,"created_at":"Thu - Jun 18 03:57:15 +0000 2020","favourites_count":16673,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273695780591804417\/wmSwF2pv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273695780591804417\/wmSwF2pv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":280749128,"id_str":"280749128","name":"T.Anthony - Marotta","screen_name":"TheNakedMasks","location":"Atlanta, GA - United States","description":"Devised - mask, puppet, & object performances that provoke audiences to ask questions - & imagine possibilities. Founded in 2011 by T.Anthony Marotta.","url":"http:\/\/t.co\/gSlfUQkt3i","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/gSlfUQkt3i","expanded_url":"http:\/\/www.tanthonymarotta.com\/nakedmasks","display_url":"tanthonymarotta.com\/nakedmasks","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":62,"friends_count":736,"listed_count":1,"created_at":"Mon - Apr 11 23:28:30 +0000 2011","favourites_count":16228,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":85,"lang":null,"status":{"created_at":"Fri - Apr 10 02:59:20 +0000 2020","id":1248445431744475137,"id_str":"1248445431744475137","text":"RT - @StephenAtHome: Congrats to the phrase \"we all wear masks\" for making the - leap from insightful metaphor to bleak reality.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"StephenAtHome","name":"Stephen - Colbert","id":16303106,"id_str":"16303106","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Apr 10 02:56:46 +0000 2020","id":1248444787197444096,"id_str":"1248444787197444096","text":"Congrats - to the phrase \"we all wear masks\" for making the leap from insightful metaphor - to bleak reality.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4086,"favorite_count":36346,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4086,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612007241923760128\/Jjxk7Zqe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612007241923760128\/Jjxk7Zqe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280749128\/1440872695","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":8268882,"id_str":"8268882","name":"alex","screen_name":"AlexBeattie","location":"Thousand - Oaks, CA","description":"Web Developer\/Photographer\/Programmer","url":"https:\/\/t.co\/jfiiAaPOJv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jfiiAaPOJv","expanded_url":"http:\/\/artisanbranding.com","display_url":"artisanbranding.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":674,"friends_count":1747,"listed_count":56,"created_at":"Sat - Aug 18 17:17:30 +0000 2007","favourites_count":11210,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8621,"lang":null,"status":{"created_at":"Sat - Mar 19 03:37:45 +0000 2022","id":1505025708007075845,"id_str":"1505025708007075845","text":"\ud83d\udcf7 - Beautiful day off of Fern Dell this afternoon (at Griffith Observatory) https:\/\/t.co\/yZ5eXUSsvn - https:\/\/t.co\/uBJnVkxTEN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yZ5eXUSsvn","expanded_url":"https:\/\/www.instagram.com\/p\/CbRUTwJuaOc\/?utm_medium=tumblr","display_url":"instagram.com\/p\/CbRUTwJuaOc\/\u2026","indices":[74,97]},{"url":"https:\/\/t.co\/uBJnVkxTEN","expanded_url":"https:\/\/tmblr.co\/ZlofRybikRb6qy00","display_url":"tmblr.co\/ZlofRybikRb6qy\u2026","indices":[98,121]}]},"source":"\u003ca - href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1487047039993012242\/rUeff3wu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1487047039993012242\/rUeff3wu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8268882\/1643374617","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":41118525,"id_str":"41118525","name":"Saphian - Salleh","screen_name":"saphian","location":"Malaysia","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":31,"friends_count":428,"listed_count":1,"created_at":"Tue - May 19 13:49:55 +0000 2009","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1035,"lang":null,"status":{"created_at":"Fri - Mar 18 20:19:49 +0000 2022","id":1504915500215640064,"id_str":"1504915500215640064","text":"RT - @NVIDIAGeForce: The most powerful key press in gaming... \ud83d\udc40\n\nWe''ve - got hundreds of these to give away to the GeForce community! \n\nWant on\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NVIDIAGeForce","name":"NVIDIA - GeForce","id":86395621,"id_str":"86395621","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 18 20:06:33 +0000 2022","id":1504912160102621184,"id_str":"1504912160102621184","text":"The - most powerful key press in gaming... \ud83d\udc40\n\nWe''ve got hundreds of - these to give away to the GeForce community! \n\nWa\u2026 https:\/\/t.co\/evmiAvhoU6","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/evmiAvhoU6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504912160102621184","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5877,"favorite_count":7134,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5877,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1171461997453631488,"id_str":"1171461997453631488","name":"Blake - C delCarmen","screen_name":"BlakeDelcarmen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":1134,"listed_count":2,"created_at":"Tue - Sep 10 16:34:47 +0000 2019","favourites_count":1761,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":448,"lang":null,"status":{"created_at":"Tue - Mar 22 21:08:05 +0000 2022","id":1506377195865915392,"id_str":"1506377195865915392","text":"RT - @DiehardsAlabama: \u201cIf you want to be good? You don\u2019t really have - a lot of choices because it takes what it takes\u201d - Nick Saban \ud83d\udc10\ud83d\udd25 - https:\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DiehardsAlabama","name":"Alabama - DieHards","id":1422579413896638475,"id_str":"1422579413896638475","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:47:23 +0000 2022","id":1506281390190563339,"id_str":"1506281390190563339","text":"\u201cIf - you want to be good? You don\u2019t really have a lot of choices because it - takes what it takes\u201d - Nick Saban \ud83d\udc10\ud83d\udd25 https:\/\/t.co\/pb9ghjnem5","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506281360985673729,"id_str":"1506281360985673729","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506281360985673729\/pu\/img\/rJ8c0Vurb6EdAZ-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506281360985673729\/pu\/img\/rJ8c0Vurb6EdAZ-p.jpg","url":"https:\/\/t.co\/pb9ghjnem5","display_url":"pic.twitter.com\/pb9ghjnem5","expanded_url":"https:\/\/twitter.com\/DiehardsAlabama\/status\/1506281390190563339\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506281360985673729,"id_str":"1506281360985673729","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506281360985673729\/pu\/img\/rJ8c0Vurb6EdAZ-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1506281360985673729\/pu\/img\/rJ8c0Vurb6EdAZ-p.jpg","url":"https:\/\/t.co\/pb9ghjnem5","display_url":"pic.twitter.com\/pb9ghjnem5","expanded_url":"https:\/\/twitter.com\/DiehardsAlabama\/status\/1506281390190563339\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":720,"h":720,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":32100,"variants":[{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506281360985673729\/pu\/vid\/320x320\/8VCBDQeVf0VR0KHc.mp4?tag=12"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506281360985673729\/pu\/vid\/540x540\/ckttNA25mvyHxKJf.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506281360985673729\/pu\/vid\/720x720\/obBWTbgKLJ-AVMD2.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1506281360985673729\/pu\/pl\/bYefYgx0Ajfihh9V.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":356,"favorite_count":1397,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":356,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171834908635009027\/jnM8TEsi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171834908635009027\/jnM8TEsi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171461997453631488\/1568222602","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2350632040,"id_str":"2350632040","name":"Russell - Emiko","screen_name":"emiko_russell","location":"Asaba, Nigeria","description":"Delta - State University, Abraka\nUniversity of Nigeria, Nsukka\nBusiness School Netherlands","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":1463,"listed_count":0,"created_at":"Tue - Feb 18 13:39:43 +0000 2014","favourites_count":10697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5781,"lang":null,"status":{"created_at":"Sun - Jan 23 21:04:52 +0000 2022","id":1485357892295344131,"id_str":"1485357892295344131","text":"@maereeam - @emiko_russell","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"maereeam","name":"\u265b","id":1126963966486487040,"id_str":"1126963966486487040","indices":[0,9]},{"screen_name":"emiko_russell","name":"Russell - Emiko","id":2350632040,"id_str":"2350632040","indices":[10,24]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1485356865672253440,"in_reply_to_status_id_str":"1485356865672253440","in_reply_to_user_id":1126963966486487040,"in_reply_to_user_id_str":"1126963966486487040","in_reply_to_screen_name":"maereeam","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435773030858780673\/XftBVyes_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435773030858780673\/XftBVyes_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083364597397143552,"id_str":"1083364597397143552","name":"ElmCityDomer","screen_name":"ElmCityDomer","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":188,"friends_count":375,"listed_count":0,"created_at":"Thu - Jan 10 14:07:02 +0000 2019","favourites_count":1292,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":471,"lang":null,"status":{"created_at":"Fri - Mar 25 01:06:00 +0000 2022","id":1507161846041751554,"id_str":"1507161846041751554","text":"@NDHockey - Puck don\u2019t lie!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NDHockey","name":"Notre - Dame Hockey","id":334124454,"id_str":"334124454","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507161097429823494,"in_reply_to_status_id_str":"1507161097429823494","in_reply_to_user_id":334124454,"in_reply_to_user_id_str":"334124454","in_reply_to_screen_name":"NDHockey","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1084085329412456449\/ZiUG_JV6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1084085329412456449\/ZiUG_JV6_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2878905275,"id_str":"2878905275","name":"\ud83c\udf3bKathy - Warren\ud83c\udf3b","screen_name":"mimiwarrenjab","location":"North Carolina, - USA","description":"\ud83c\udf3b\u263a\ud83c\udf3bFought Forced Annexation - in NC and got it outlawed. You can fight City Hall. Retired & very married. - My blood runs Blue\ud83c\udf0a\u262e\ud83c\udf08\u262e\ud83c\udf0a NO DM''s - period!!!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4084,"friends_count":5003,"listed_count":6,"created_at":"Sun - Nov 16 01:23:36 +0000 2014","favourites_count":84982,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":31031,"lang":null,"status":{"created_at":"Thu - Mar 24 22:57:52 +0000 2022","id":1507129601767755779,"id_str":"1507129601767755779","text":"RT - @rebel19: The way that a Black woman in America can be as highly, hyper educated, - intelligent, elegant, skilled, experienced and qualifi\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rebel19","name":"Rebecca - Carroll","id":11954462,"id_str":"11954462","indices":[3,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 16:22:35 +0000 2022","id":1506667735572529158,"id_str":"1506667735572529158","text":"The - way that a Black woman in America can be as highly, hyper educated, intelligent, - elegant, skilled, experienced\u2026 https:\/\/t.co\/VuQqN9sgmh","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VuQqN9sgmh","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506667735572529158","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30536,"favorite_count":172608,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":30536,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470202092447051778\/R47Vsj3N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470202092447051778\/R47Vsj3N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2878905275\/1608296530","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1220704452467994624,"id_str":"1220704452467994624","name":"Omondi - Simon Peter","screen_name":"OmondiSimonPet1","location":"Bunga, Uganda","description":"am - simple and down to earth #united forever@LA Lakers","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":438,"friends_count":3141,"listed_count":0,"created_at":"Fri - Jan 24 13:48:13 +0000 2020","favourites_count":14329,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1287,"lang":null,"status":{"created_at":"Sat - Mar 26 05:51:50 +0000 2022","id":1507596166841700354,"id_str":"1507596166841700354","text":"RT - @KakwenzaRukira: I also want to be gathered into her warm youthful chest, - and feel the bleached hand around my waist. And whisper someth\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KakwenzaRukira","name":"Kakwenza - Rukirabashaija","id":1076402943686033408,"id_str":"1076402943686033408","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 14:11:35 +0000 2022","id":1507359543138922513,"id_str":"1507359543138922513","text":"I - also want to be gathered into her warm youthful chest, and feel the bleached - hand around my waist. And whisper so\u2026 https:\/\/t.co\/f30z1RN0tS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/f30z1RN0tS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507359543138922513","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":1321,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":138,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1231978624250761217\/r_eweXKB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1231978624250761217\/r_eweXKB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220704452467994624\/1579949284","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1042760173767536640,"id_str":"1042760173767536640","name":"Tim - Thompson","screen_name":"TimThom24547609","location":"Irwin, PA","description":"Proud - Democrat, Retired Union member, End Child Hunger, Be a better person, Never - Trumper","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":430,"listed_count":1,"created_at":"Thu - Sep 20 12:59:33 +0000 2018","favourites_count":8990,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":230,"lang":null,"status":{"created_at":"Wed - Jul 07 16:31:45 +0000 2021","id":1412811584519524352,"id_str":"1412811584519524352","text":"RT - @RepKinzinger: Today marks six months since the insurrection at the @uscapitol. - It saddens me that so many have refused to speak up abou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepKinzinger","name":"Adam - Kinzinger","id":219429281,"id_str":"219429281","indices":[3,16]},{"screen_name":"uscapitol","name":"Architect - of the Capitol","id":17539497,"id_str":"17539497","indices":[71,81]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Jul 07 02:40:58 +0000 2021","id":1412602511870074885,"id_str":"1412602511870074885","text":"Today - marks six months since the insurrection at the @uscapitol. It saddens me that - so many have refused to speak u\u2026 https:\/\/t.co\/pG43t8mYqS","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"uscapitol","name":"Architect - of the Capitol","id":17539497,"id_str":"17539497","indices":[53,63]}],"urls":[{"url":"https:\/\/t.co\/pG43t8mYqS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1412602511870074885","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1412569550256738314,"quoted_status_id_str":"1412569550256738314","retweet_count":1893,"favorite_count":12433,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1412569550256738314,"quoted_status_id_str":"1412569550256738314","retweet_count":1893,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1361058449497407489\/UrmYhv4s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1361058449497407489\/UrmYhv4s_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":858699597887262721,"id_str":"858699597887262721","name":"Wolfhound","screen_name":"Wolfhound2765","location":"Fitchburg, - MA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":142,"listed_count":0,"created_at":"Sun - Apr 30 15:08:32 +0000 2017","favourites_count":5660,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":418,"lang":null,"status":{"created_at":"Mon - Jan 03 03:23:08 +0000 2022","id":1477842938298306561,"id_str":"1477842938298306561","text":"@chipfranklin - Sick","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chipfranklin","name":"Chip - Franklin.com","id":48325671,"id_str":"48325671","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1477806154315149312,"in_reply_to_status_id_str":"1477806154315149312","in_reply_to_user_id":48325671,"in_reply_to_user_id_str":"48325671","in_reply_to_screen_name":"chipfranklin","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2838701353,"id_str":"2838701353","name":"Matthew - Goletz Music","screen_name":"matthewgoletz","location":"austin, tx","description":"Guitar - folkie\/rocker @ Matthew Goletz Music https:\/\/t.co\/R4ta6VosvU","url":"https:\/\/t.co\/1iSTKEh0lK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1iSTKEh0lK","expanded_url":"https:\/\/open.spotify.com\/artist\/2EAwDCSBG8QTdguXnIc9Kg?si=UreETYsKQ1WjS5lbBrAKgg","display_url":"open.spotify.com\/artist\/2EAwDCS\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/R4ta6VosvU","expanded_url":"http:\/\/matthewgoletz.bandcamp.com","display_url":"matthewgoletz.bandcamp.com","indices":[44,67]}]}},"protected":false,"followers_count":331,"friends_count":1749,"listed_count":9,"created_at":"Fri - Oct 03 04:41:07 +0000 2014","favourites_count":851,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":743,"lang":null,"status":{"created_at":"Wed - Feb 09 00:41:26 +0000 2022","id":1491210599258550275,"id_str":"1491210599258550275","text":"RT - @MissMargoPrice: metamodern sounds in country music > the metaverse","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MissMargoPrice","name":"Margo - Price","id":236153428,"id_str":"236153428","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 08 21:58:17 +0000 2022","id":1491169540465905665,"id_str":"1491169540465905665","text":"metamodern - sounds in country music > the metaverse","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":296,"favorite_count":3360,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":296,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517897538456653824\/SsVbW3z1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517897538456653824\/SsVbW3z1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838701353\/1487956112","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":35878814,"id_str":"35878814","name":"Craig - Corbitt","screen_name":"cccorbitt","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":1539,"listed_count":0,"created_at":"Mon - Apr 27 22:08:37 +0000 2009","favourites_count":755,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":null,"status":{"created_at":"Sat - Feb 26 03:41:43 +0000 2022","id":1497416562080247809,"id_str":"1497416562080247809","text":"RT - @davidmweissman: Draft dodger Patriot https:\/\/t.co\/Z1VM0d9KcM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidmweissman","name":"David - Weissman","id":880018682,"id_str":"880018682","indices":[3,18]}],"urls":[],"media":[{"id":1497403839221272579,"id_str":"1497403839221272579","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1193,"resize":"fit"},"large":{"w":1364,"h":1356,"resize":"fit"}},"source_status_id":1497403843369390085,"source_status_id_str":"1497403843369390085","source_user_id":880018682,"source_user_id_str":"880018682"}]},"extended_entities":{"media":[{"id":1497403839221272579,"id_str":"1497403839221272579","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1193,"resize":"fit"},"large":{"w":1364,"h":1356,"resize":"fit"}},"source_status_id":1497403843369390085,"source_status_id_str":"1497403843369390085","source_user_id":880018682,"source_user_id_str":"880018682"},{"id":1497403839217025025,"id_str":"1497403839217025025","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27HWQAEKQ8J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27HWQAEKQ8J.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":622,"h":696,"resize":"fit"},"medium":{"w":622,"h":696,"resize":"fit"},"small":{"w":608,"h":680,"resize":"fit"}},"source_status_id":1497403843369390085,"source_status_id_str":"1497403843369390085","source_user_id":880018682,"source_user_id_str":"880018682"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Feb 26 02:51:11 +0000 2022","id":1497403843369390085,"id_str":"1497403843369390085","text":"Draft - dodger Patriot https:\/\/t.co\/Z1VM0d9KcM","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1497403839221272579,"id_str":"1497403839221272579","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1193,"resize":"fit"},"large":{"w":1364,"h":1356,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1497403839221272579,"id_str":"1497403839221272579","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27IXEAM0OSD.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1193,"resize":"fit"},"large":{"w":1364,"h":1356,"resize":"fit"}}},{"id":1497403839217025025,"id_str":"1497403839217025025","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/FMfY27HWQAEKQ8J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FMfY27HWQAEKQ8J.jpg","url":"https:\/\/t.co\/Z1VM0d9KcM","display_url":"pic.twitter.com\/Z1VM0d9KcM","expanded_url":"https:\/\/twitter.com\/davidmweissman\/status\/1497403843369390085\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":622,"h":696,"resize":"fit"},"medium":{"w":622,"h":696,"resize":"fit"},"small":{"w":608,"h":680,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8969,"favorite_count":42054,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8969,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":95216944,"id_str":"95216944","name":"Bobby - Ray Cordill","screen_name":"Bobbyray1971","location":"San Antonio, TX","description":"Veteran - of US Army","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":2260,"listed_count":1,"created_at":"Mon - Dec 07 15:07:45 +0000 2009","favourites_count":11936,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10642,"lang":null,"status":{"created_at":"Wed - Feb 02 13:16:18 +0000 2022","id":1488863852003475456,"id_str":"1488863852003475456","text":"RT - @MarshaBlackburn: Biden had an opportunity to stand up to Vladimir Putin. - Instead, he backed down.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarshaBlackburn","name":"Sen. - Marsha Blackburn","id":278145569,"id_str":"278145569","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Feb 01 16:13:55 +0000 2022","id":1488546161724203015,"id_str":"1488546161724203015","text":"Biden - had an opportunity to stand up to Vladimir Putin. Instead, he backed down.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":495,"favorite_count":3442,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":495,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1103082840282091524\/Y_2eR1gl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103082840282091524\/Y_2eR1gl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":71898822,"id_str":"71898822","name":"Donna","screen_name":"Hawkfan242","location":"Des - Moines, Iowa","description":"Iowa State Patrol retiree & a Criminal Justice - Instructor at a community college. Love my dogs, Cubbies and Iowa Hawkeyes.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":178,"friends_count":1134,"listed_count":13,"created_at":"Sat - Sep 05 21:45:56 +0000 2009","favourites_count":172,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6517,"lang":null,"status":{"created_at":"Thu - Feb 24 21:57:40 +0000 2022","id":1496967588240367618,"id_str":"1496967588240367618","text":"YES!\nRT - @IAStartingLine: \u201cAm I misleading people by saying what I saw on Fox - News?\u201d Grassley asks while telling his\u2026 https:\/\/t.co\/C2EajnW5uJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IAStartingLine","name":"Iowa - Starting Line","id":2940964728,"id_str":"2940964728","indices":[8,23]}],"urls":[{"url":"https:\/\/t.co\/C2EajnW5uJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1496967588240367618","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/848636512216522753\/blH0Ase2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/848636512216522753\/blH0Ase2_normal.jpg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":328724682,"id_str":"328724682","name":"Kay - Drew #saveZoeysPlaylist #ZoeysPlaylist","screen_name":"Kay__Drew","location":"Indiana","description":"Liberal - Dem riding the blue wave. #JoeBiden2020. Allergic to gluten. Bisexual on the - autism spectrum. Has a lot of cats, 3 dogs, & a Meyers gray parrot.","url":"https:\/\/t.co\/7B4omKIcjo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7B4omKIcjo","expanded_url":"http:\/\/kaydrew.blogspot.com\/","display_url":"kaydrew.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":761,"listed_count":5,"created_at":"Sun - Jul 03 22:34:42 +0000 2011","favourites_count":4353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6027,"lang":null,"status":{"created_at":"Sat - Mar 26 05:20:11 +0000 2022","id":1507588202634395648,"id_str":"1507588202634395648","text":"@zoeysheartsongs - @TheRokuChannel All of these pictures are terrifying.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"zoeysheartsongs","name":"emily - \ud83e\udd92 #RenewZoeysPlaylist","id":1045262259725979648,"id_str":"1045262259725979648","indices":[0,16]},{"screen_name":"TheRokuChannel","name":"The - Roku Channel","id":1050122704202788864,"id_str":"1050122704202788864","indices":[17,32]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1507503449545617409,"in_reply_to_status_id_str":"1507503449545617409","in_reply_to_user_id":1045262259725979648,"in_reply_to_user_id_str":"1045262259725979648","in_reply_to_screen_name":"zoeysheartsongs","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/982309214457663489\/YqRXf5Tf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/982309214457663489\/YqRXf5Tf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328724682\/1623338415","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":786227857,"id_str":"786227857","name":"ponchcosmetics","screen_name":"ponchcosmetics","location":"Houston, - Texas","description":"Clean Beauty Brand, Beauty Tweets, and Clean Beauty - Inspiration!","url":"https:\/\/t.co\/7TIrma3VrW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7TIrma3VrW","expanded_url":"http:\/\/www.ponchcosmetics.com","display_url":"ponchcosmetics.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":646,"friends_count":3247,"listed_count":9,"created_at":"Tue - Aug 28 04:58:11 +0000 2012","favourites_count":1905,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3903,"lang":null,"status":{"created_at":"Fri - Mar 25 19:22:10 +0000 2022","id":1507437707118759941,"id_str":"1507437707118759941","text":"The - face is all we see! \ud83d\ude4c Great skin matters! Makes the makeup look - even better! #latto https:\/\/t.co\/U6cBGRBwAw","truncated":false,"entities":{"hashtags":[{"text":"latto","indices":[81,87]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1507437703377346562,"id_str":"1507437703377346562","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOt-mr7WYAIFxz2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOt-mr7WYAIFxz2.jpg","url":"https:\/\/t.co\/U6cBGRBwAw","display_url":"pic.twitter.com\/U6cBGRBwAw","expanded_url":"https:\/\/twitter.com\/ponchcosmetics\/status\/1507437707118759941\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":803,"resize":"fit"},"small":{"w":680,"h":659,"resize":"fit"},"medium":{"w":828,"h":803,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1507437703377346562,"id_str":"1507437703377346562","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/FOt-mr7WYAIFxz2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOt-mr7WYAIFxz2.jpg","url":"https:\/\/t.co\/U6cBGRBwAw","display_url":"pic.twitter.com\/U6cBGRBwAw","expanded_url":"https:\/\/twitter.com\/ponchcosmetics\/status\/1507437707118759941\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":803,"resize":"fit"},"small":{"w":680,"h":659,"resize":"fit"},"medium":{"w":828,"h":803,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1430870907661193219\/TXQW5q_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1430870907661193219\/TXQW5q_l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/786227857\/1643267790","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":56219278,"id_str":"56219278","name":"dunning-kruger - virus is real","screen_name":"Yazzster","location":"Cincinnati, OH","description":"\ud83d\udeabNo - Trump, RN, \ud83c\udf0dExplorer (76 nations) , Philosophy, Interfaith Mysticism, - Sufism, RE Investor, \ud83d\udeeb\/\ud83c\udf0d Photographer, Cleveland \ud83c\udfc8\u26be\ufe0f\ud83c\udfc0 - Liverpool \u26bd\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3478,"friends_count":3863,"listed_count":7,"created_at":"Sun - Jul 12 23:11:54 +0000 2009","favourites_count":1286,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2072,"lang":null,"status":{"created_at":"Wed - Mar 02 03:39:57 +0000 2022","id":1498865669521215496,"id_str":"1498865669521215496","text":"RT - @dkaleniuk: Just had a chance to ask a question to @BorisJohnson","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dkaleniuk","name":"Daria - Kaleniuk","id":57937201,"id_str":"57937201","indices":[3,13]},{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[54,67]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 01 11:51:34 +0000 2022","id":1498627001141403648,"id_str":"1498627001141403648","text":"Just - had a chance to ask a question to @BorisJohnson https:\/\/t.co\/4ee6eXJj6g","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BorisJohnson","name":"Boris - Johnson","id":3131144855,"id_str":"3131144855","indices":[39,52]}],"urls":[{"url":"https:\/\/t.co\/4ee6eXJj6g","expanded_url":"https:\/\/twitter.com\/SebastianEPayne\/status\/1498620035111305218","display_url":"twitter.com\/SebastianEPayn\u2026","indices":[53,76]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1498620035111305218,"quoted_status_id_str":"1498620035111305218","retweet_count":18772,"favorite_count":94622,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1498620035111305218,"quoted_status_id_str":"1498620035111305218","retweet_count":18772,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491175380190965770\/EtKck4yE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491175380190965770\/EtKck4yE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56219278\/1606584642","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":460736337,"id_str":"460736337","name":"Kayla - Ermanni","screen_name":"KaylaErmanni","location":"Washington, DC","description":"think - tanker | formerly @BerlinRosen | @umich","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":207,"friends_count":1234,"listed_count":0,"created_at":"Wed - Jan 11 02:23:47 +0000 2012","favourites_count":1913,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":813,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/806318848194576388\/9kDG4g7r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/806318848194576388\/9kDG4g7r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460736337\/1402598156","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1328004878,"id_str":"1328004878","name":"nicholas - zaveloff","screen_name":"nickz4159","location":"Columbus, OH","description":"Ohio - born and raised. Buckeye till the day I die.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":255,"listed_count":0,"created_at":"Thu - Apr 04 23:25:42 +0000 2013","favourites_count":23641,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7935,"lang":null,"status":{"created_at":"Fri - Mar 25 06:37:21 +0000 2022","id":1507245234903732243,"id_str":"1507245234903732243","text":"@CawthornforNC - Complete moron I think we can all agree on","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CawthornforNC","name":"Madison - Cawthorn","id":1207874097251639296,"id_str":"1207874097251639296","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507007532643934229,"in_reply_to_status_id_str":"1507007532643934229","in_reply_to_user_id":1207874097251639296,"in_reply_to_user_id_str":"1207874097251639296","in_reply_to_screen_name":"CawthornforNC","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467517019785822208\/MwRAhCkb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467517019785822208\/MwRAhCkb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1328004878\/1365120099","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2543510021,"id_str":"2543510021","name":"tom - little","screen_name":"coloradosowntom","location":"Bayfield, colorado","description":"From - Arvada, Denver, gunnison, Thornton, Avon, Durango, grand junction, clifton, - delta & Bayfield","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":172,"listed_count":1,"created_at":"Mon - May 12 18:45:08 +0000 2014","favourites_count":403,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":98,"lang":null,"status":{"created_at":"Fri - Feb 19 20:11:49 +0000 2021","id":1362857440941858823,"id_str":"1362857440941858823","text":"@NationalTheatre - He shined the knob so carefully that now he is the captain of the Queen''s - Navy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NationalTheatre","name":"National - Theatre","id":23056885,"id_str":"23056885","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1362719075609108481,"in_reply_to_status_id_str":"1362719075609108481","in_reply_to_user_id":23056885,"in_reply_to_user_id_str":"23056885","in_reply_to_screen_name":"NationalTheatre","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465931614824845312\/JsjZOqt8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465931614824845312\/JsjZOqt8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2543510021\/1399921828","profile_link_color":"09B300","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1196174489916080128,"id_str":"1196174489916080128","name":"Judith - Rudow","screen_name":"JudithRudow","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":445,"listed_count":0,"created_at":"Sun - Nov 17 21:13:41 +0000 2019","favourites_count":912,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Mar 24 20:41:22 +0000 2021","id":1374823679419355141,"id_str":"1374823679419355141","text":"RT - @FeelingEuphoric: @EtymousPlough lotta people seem to have a good time with - it so by all means!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FeelingEuphoric","name":"Meep","id":1439250862728220672,"id_str":"1439250862728220672","indices":[3,19]},{"screen_name":"EtymousPlough","name":"The - Captain & Schlemiel","id":100656615,"id_str":"100656615","indices":[21,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 24 01:44:40 +0000 2021","id":1374537617405009922,"id_str":"1374537617405009922","text":"@EtymousPlough - lotta people seem to have a good time with it so by all means!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EtymousPlough","name":"The - Captain & Schlemiel","id":100656615,"id_str":"100656615","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1374537409073795074,"in_reply_to_status_id_str":"1374537409073795074","in_reply_to_user_id":100656615,"in_reply_to_user_id_str":"100656615","in_reply_to_screen_name":"EtymousPlough","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":297529049,"id_str":"297529049","name":"Foxylorn","screen_name":"Foxylorn","location":"New - York, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":341,"listed_count":0,"created_at":"Thu - May 12 17:20:50 +0000 2011","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1856,"lang":null,"status":{"created_at":"Fri - Mar 25 18:45:43 +0000 2022","id":1507428532590465030,"id_str":"1507428532590465030","text":"@RonFilipkowski - It\u2019s extremely dangerous when we have people like this traitor who wakes - up each day & make stateme\u2026 https:\/\/t.co\/CtgAdzPTlc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RonFilipkowski","name":"Ron - Filipkowski \ud83c\uddfa\ud83c\udde6","id":1298372735383605249,"id_str":"1298372735383605249","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/CtgAdzPTlc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507428532590465030","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507379219503923203,"in_reply_to_status_id_str":"1507379219503923203","in_reply_to_user_id":1298372735383605249,"in_reply_to_user_id_str":"1298372735383605249","in_reply_to_screen_name":"RonFilipkowski","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1382497928489668614\/0kEUPBDe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1382497928489668614\/0kEUPBDe_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1126975539846115328,"id_str":"1126975539846115328","name":"J - Hung","screen_name":"JHung38347836","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":220,"listed_count":0,"created_at":"Fri - May 10 22:21:21 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2285669839,"id_str":"2285669839","name":"mmb","screen_name":"c59412","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":2037,"listed_count":0,"created_at":"Fri - Jan 10 21:28:37 +0000 2014","favourites_count":137603,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/896564899287097345\/ixA6Xdhc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/896564899287097345\/ixA6Xdhc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285669839\/1502592705","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":889078106199396352,"id_str":"889078106199396352","name":"Margaret - mccabe","screen_name":"Megmcc2000","location":"","description":"Group CEO - & founder of DebateMate education revolution barrister","url":"https:\/\/t.co\/7xwcMFjfAZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7xwcMFjfAZ","expanded_url":"http:\/\/www.debatemate.com","display_url":"debatemate.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":216,"friends_count":1980,"listed_count":5,"created_at":"Sun - Jul 23 11:01:53 +0000 2017","favourites_count":3679,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11765,"lang":null,"status":{"created_at":"Sat - Mar 26 10:35:52 +0000 2022","id":1507667646384386051,"id_str":"1507667646384386051","text":"#codswallop - https:\/\/t.co\/szFFNiNz1O","truncated":false,"entities":{"hashtags":[{"text":"codswallop","indices":[0,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/szFFNiNz1O","expanded_url":"https:\/\/twitter.com\/alexandruc4\/status\/1507473089952718851","display_url":"twitter.com\/alexandruc4\/st\u2026","indices":[12,35]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507473089952718851,"quoted_status_id_str":"1507473089952718851","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/936780944094007296\/eUBuwIkv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/936780944094007296\/eUBuwIkv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":745748345596018690,"id_str":"745748345596018690","name":"Ken - Newton","screen_name":"KenNewton11","location":"","description":"Humanitarian - by nature. Speech Pathologist by profession. Be kind to one another and one - moment at a time. \ud83c\udff3\ufe0f\u200d\ud83c\udf08","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":131,"friends_count":972,"listed_count":5,"created_at":"Wed - Jun 22 22:40:35 +0000 2016","favourites_count":12734,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2821,"lang":null,"status":{"created_at":"Wed - Jan 05 17:03:36 +0000 2022","id":1478774193831522304,"id_str":"1478774193831522304","text":"@JerasIkehorn - I had none.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JerasIkehorn","name":"Jeras - Ikehorn","id":936788589622435842,"id_str":"936788589622435842","indices":[0,13]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1478501630593040388,"in_reply_to_status_id_str":"1478501630593040388","in_reply_to_user_id":936788589622435842,"in_reply_to_user_id_str":"936788589622435842","in_reply_to_screen_name":"JerasIkehorn","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/797089381597245440\/wZGRkCNv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/797089381597245440\/wZGRkCNv_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":967925172,"id_str":"967925172","name":"too - early for this","screen_name":"jacreekoe","location":"Maryland, USA","description":"They - killed Cornbread!","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":53,"friends_count":1264,"listed_count":1,"created_at":"Sat - Nov 24 12:26:34 +0000 2012","favourites_count":4200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2165,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259525135222165511\/5WFsqiRs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259525135222165511\/5WFsqiRs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967925172\/1598631010","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":990331607537082368,"id_str":"990331607537082368","name":"candylee3","screen_name":"candylee1126","location":"","description":"Proud - Democrat\/ ##TheResistance\/#blueTsunami #indivisible","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7925,"friends_count":5638,"listed_count":4,"created_at":"Sat - Apr 28 20:47:09 +0000 2018","favourites_count":6471,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29209,"lang":null,"status":{"created_at":"Fri - Mar 25 22:30:30 +0000 2022","id":1507485102414221313,"id_str":"1507485102414221313","text":"happy - Friday to you https:\/\/t.co\/98CM4yhe21","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/98CM4yhe21","expanded_url":"https:\/\/twitter.com\/MikeResists1969\/status\/1507390087801282585","display_url":"twitter.com\/MikeResists196\u2026","indices":[20,43]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507390087801282585,"quoted_status_id_str":"1507390087801282585","retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1264280864298618885\/rO7PeeCB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1264280864298618885\/rO7PeeCB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990331607537082368\/1528836885","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1277099605101096965,"id_str":"1277099605101096965","name":"Jess","screen_name":"Jessica28887141","location":"Hampton - Roads, VA","description":"Pass.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":253,"listed_count":1,"created_at":"Sun - Jun 28 04:40:57 +0000 2020","favourites_count":2651,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1511,"lang":null,"status":{"created_at":"Fri - Jul 16 08:25:11 +0000 2021","id":1415950627704868866,"id_str":"1415950627704868866","text":"@mtgreenee - Boy your parents really fucked you up, love...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mtgreenee","name":"Marjorie - Taylor Greene \ud83c\uddfa\ud83c\uddf8","id":826065164504006657,"id_str":"826065164504006657","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1415801728813846528,"in_reply_to_status_id_str":"1415801728813846528","in_reply_to_user_id":826065164504006657,"in_reply_to_user_id_str":"826065164504006657","in_reply_to_screen_name":"mtgreenee","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351316036163956736\/j25qY5nH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351316036163956736\/j25qY5nH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277099605101096965\/1610723507","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":17299412,"id_str":"17299412","name":"Samantha - James","screen_name":"samjamesftw","location":"Philadelphia, PA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":29,"friends_count":298,"listed_count":0,"created_at":"Tue - Nov 11 00:52:09 +0000 2008","favourites_count":1205,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":82,"lang":null,"status":{"created_at":"Fri - Mar 04 11:52:39 +0000 2022","id":1499714434784235524,"id_str":"1499714434784235524","text":"@PPDChapFrank - @billy_penn Flout.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PPDChapFrank","name":"Minister - Frank","id":621964287,"id_str":"621964287","indices":[0,13]},{"screen_name":"billy_penn","name":"Billy - Penn","id":2699092074,"id_str":"2699092074","indices":[14,25]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1499373919639416832,"in_reply_to_status_id_str":"1499373919639416832","in_reply_to_user_id":621964287,"in_reply_to_user_id_str":"621964287","in_reply_to_screen_name":"PPDChapFrank","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2645976235\/cba29c2561aeb56952ad84e9a5d4ea2a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2645976235\/cba29c2561aeb56952ad84e9a5d4ea2a_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":635460369,"id_str":"635460369","name":"Rob - Loewy","screen_name":"RobLsensible","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":346,"listed_count":0,"created_at":"Sat - Jul 14 13:25:06 +0000 2012","favourites_count":25,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54,"lang":null,"status":{"created_at":"Wed - Mar 09 14:56:24 +0000 2022","id":1501572619090468871,"id_str":"1501572619090468871","text":"@davidallengreen - Never wrong, never wrong ...","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"davidallengreen","name":"davidallengreen","id":33315010,"id_str":"33315010","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1501570964215287809,"in_reply_to_status_id_str":"1501570964215287809","in_reply_to_user_id":33315010,"in_reply_to_user_id_str":"33315010","in_reply_to_screen_name":"davidallengreen","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":121636980,"id_str":"121636980","name":"Patrick - Cuddihy","screen_name":"PatrickCuddihy","location":"Co. Clare","description":"Here - be a Dragon.\nJack of all trades, master of some.\nProfessional soldier.\nProfessional - Driver.\nProfessional Photographer.\nProfessional OAP.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":452,"listed_count":1,"created_at":"Wed - Mar 10 03:38:09 +0000 2010","favourites_count":1508,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9704,"lang":null,"status":{"created_at":"Tue - Mar 22 17:56:41 +0000 2022","id":1506329027778420746,"id_str":"1506329027778420746","text":"RT - @MaryLouMcDonald: An apology","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MaryLouMcDonald","name":"Mary - Lou McDonald","id":148872468,"id_str":"148872468","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 14:55:30 +0000 2022","id":1506283434683027461,"id_str":"1506283434683027461","text":"An - apology https:\/\/t.co\/gDs0leO5jD","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gDs0leO5jD","expanded_url":"https:\/\/twitter.com\/ReginaDo\/status\/1506228686999232515","display_url":"twitter.com\/ReginaDo\/statu\u2026","indices":[11,34]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506228686999232515,"quoted_status_id_str":"1506228686999232515","retweet_count":125,"favorite_count":968,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506228686999232515,"quoted_status_id_str":"1506228686999232515","retweet_count":125,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314316435167105024\/ng-6g9vN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314316435167105024\/ng-6g9vN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121636980\/1596100600","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":138856755,"id_str":"138856755","name":"Monica - Jamila","screen_name":"MonicaJamila","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":58,"listed_count":0,"created_at":"Fri - Apr 30 20:26:33 +0000 2010","favourites_count":21272,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":88,"lang":null,"status":{"created_at":"Sat - Feb 05 23:22:23 +0000 2022","id":1490103542505676801,"id_str":"1490103542505676801","text":"@JoyAnnReid - Obama was a great President. \u2764\ufe0f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JoyAnnReid","name":"Joy-Ann - (Pro-Democracy) Reid \ud83d\ude37","id":49698134,"id_str":"49698134","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1489801705529266177,"in_reply_to_status_id_str":"1489801705529266177","in_reply_to_user_id":49698134,"in_reply_to_user_id_str":"49698134","in_reply_to_screen_name":"JoyAnnReid","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1432510143535751170\/98O0Qh01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1432510143535751170\/98O0Qh01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138856755\/1626193312","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":218645995,"id_str":"218645995","name":"Craig - K","screen_name":"Keavenec","location":"Roselle Park, NJ","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":9,"friends_count":327,"listed_count":0,"created_at":"Mon - Nov 22 22:09:01 +0000 2010","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122318402796888064\/AsbV2DUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122318402796888064\/AsbV2DUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218645995\/1556416619","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":21610261,"id_str":"21610261","name":"Daniel - Gregory","screen_name":"dandig39","location":"Boston, MA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":471,"friends_count":5001,"listed_count":13,"created_at":"Sun - Feb 22 23:24:10 +0000 2009","favourites_count":34394,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":28427,"lang":null,"status":{"created_at":"Sat - Mar 12 01:44:16 +0000 2022","id":1502460434393219080,"id_str":"1502460434393219080","text":"RT - @QasimRashid: I don\u2019t like paying higher gas prices either but it\u2019s - incredible that people will buy GOP outrage on gas that\u2019s $5 instead\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"QasimRashid","name":"Qasim - Rashid, Esq.","id":85583894,"id_str":"85583894","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 11 21:12:49 +0000 2022","id":1502392121055141890,"id_str":"1502392121055141890","text":"I - don\u2019t like paying higher gas prices either but it\u2019s incredible that - people will buy GOP outrage on gas that\u2019s $5\u2026 https:\/\/t.co\/XEpNt6Ndx1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XEpNt6Ndx1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502392121055141890","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27337,"favorite_count":105714,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":27337,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/820700088561438720\/MxNQRxN__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/820700088561438720\/MxNQRxN__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21610261\/1441303369","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":28798198,"id_str":"28798198","name":"Julia - Vallati","screen_name":"judalval","location":"Connecticut, USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":275,"friends_count":1384,"listed_count":1,"created_at":"Sat - Apr 04 14:08:26 +0000 2009","favourites_count":72741,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14484,"lang":null,"status":{"created_at":"Wed - Mar 23 18:42:28 +0000 2022","id":1506702940169547777,"id_str":"1506702940169547777","text":"RT - @donnabrazile: Rest In Peace #MadamSecretaryAlbright.","truncated":false,"entities":{"hashtags":[{"text":"MadamSecretaryAlbright","indices":[32,55]}],"symbols":[],"user_mentions":[{"screen_name":"donnabrazile","name":"Donna - Brazile","id":60919240,"id_str":"60919240","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 18:38:27 +0000 2022","id":1506701926989189123,"id_str":"1506701926989189123","text":"Rest - In Peace #MadamSecretaryAlbright.","truncated":false,"entities":{"hashtags":[{"text":"MadamSecretaryAlbright","indices":[14,37]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":264,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":34,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633629154580107264\/RmYLOnH1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633629154580107264\/RmYLOnH1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28798198\/1506609376","profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":735770449,"id_str":"735770449","name":"Argo","screen_name":"ARGOBaa","location":"Atlanta, - Georgia in Midtown","description":"Urban Cat . believe in people.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":48,"friends_count":467,"listed_count":0,"created_at":"Sat - Aug 04 00:14:03 +0000 2012","favourites_count":5266,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5804,"lang":null,"status":{"created_at":"Fri - Mar 25 14:13:32 +0000 2022","id":1507360035147595778,"id_str":"1507360035147595778","text":"RT - @PoliticusSarah: Clarence Thomas cannot sit on the court after his wife\u2019s - text messages show that he voted to protect his own interests\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PoliticusSarah","name":"Sarah - Reese Jones","id":63013144,"id_str":"63013144","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Mar 24 22:27:18 +0000 2022","id":1507121909858807814,"id_str":"1507121909858807814","text":"Clarence - Thomas cannot sit on the court after his wife\u2019s text messages show that - he voted to protect his own intere\u2026 https:\/\/t.co\/UQkcHkkCOQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UQkcHkkCOQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507121909858807814","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8680,"favorite_count":43687,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8680,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/979782214555787264\/usI2BhlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/979782214555787264\/usI2BhlL_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1252373111162286080,"id_str":"1252373111162286080","name":"A.J.","screen_name":"AJ39670741","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":275,"listed_count":0,"created_at":"Mon - Apr 20 23:06:44 +0000 2020","favourites_count":6187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21,"lang":null,"status":{"created_at":"Tue - Mar 23 17:43:56 +0000 2021","id":1374416636065681417,"id_str":"1374416636065681417","text":"@NPRextra - https:\/\/t.co\/r0I43Lglcq","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NPRextra","name":"nprextra","id":14062180,"id_str":"14062180","indices":[0,9]}],"urls":[],"media":[{"id":1374416632592801792,"id_str":"1374416632592801792","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/ExLopTcVIAA0e1M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExLopTcVIAA0e1M.jpg","url":"https:\/\/t.co\/r0I43Lglcq","display_url":"pic.twitter.com\/r0I43Lglcq","expanded_url":"https:\/\/twitter.com\/AJ39670741\/status\/1374416636065681417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1374416632592801792,"id_str":"1374416632592801792","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/ExLopTcVIAA0e1M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/ExLopTcVIAA0e1M.jpg","url":"https:\/\/t.co\/r0I43Lglcq","display_url":"pic.twitter.com\/r0I43Lglcq","expanded_url":"https:\/\/twitter.com\/AJ39670741\/status\/1374416636065681417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1374344175869587467,"in_reply_to_status_id_str":"1374344175869587467","in_reply_to_user_id":14062180,"in_reply_to_user_id_str":"14062180","in_reply_to_screen_name":"NPRextra","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1252373391165648900\/4lzAHUMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1252373391165648900\/4lzAHUMD_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":959342626725027840,"id_str":"959342626725027840","name":"NUWAGABA - PREZO","screen_name":"PrezoNuwagaba","location":"Kampala, Uganda","description":"Medical - Student. Scientist. Researcher. Theoretical Physicist. Economist. Football - pundit","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":867,"listed_count":0,"created_at":"Fri - Feb 02 08:28:00 +0000 2018","favourites_count":14780,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":null,"status":{"created_at":"Wed - Aug 18 05:38:29 +0000 2021","id":1427867476566724611,"id_str":"1427867476566724611","text":"@NobelPrize - Albert Einstein","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NobelPrize","name":"The - Nobel Prize","id":16465385,"id_str":"16465385","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1427670814904705032,"in_reply_to_status_id_str":"1427670814904705032","in_reply_to_user_id":16465385,"in_reply_to_user_id_str":"16465385","in_reply_to_screen_name":"NobelPrize","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"de"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250149440494669824\/9eQJxhUS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250149440494669824\/9eQJxhUS_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":135293480,"id_str":"135293480","name":"Mark - Veltena","screen_name":"mc2v","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":454,"listed_count":0,"created_at":"Tue - Apr 20 22:21:59 +0000 2010","favourites_count":956,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":49,"lang":null,"status":{"created_at":"Sat - Mar 05 19:25:39 +0000 2022","id":1500190825443213320,"id_str":"1500190825443213320","text":"RT - @petervantriet: Als onze volksvertegenwoordiging de klimaat-, natuur- en #milieulobby - de wind niet uit de zeilen neemt, dan moeten we da\u2026","truncated":false,"entities":{"hashtags":[{"text":"milieulobby","indices":[76,88]}],"symbols":[],"user_mentions":[{"screen_name":"petervantriet","name":"Peter - van ''t Riet","id":201780003,"id_str":"201780003","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 05 11:15:34 +0000 2022","id":1500067492525481984,"id_str":"1500067492525481984","text":"Als - onze volksvertegenwoordiging de klimaat-, natuur- en #milieulobby de wind - niet uit de zeilen neemt, dan moeten\u2026 https:\/\/t.co\/jNQwXQsJrP","truncated":true,"entities":{"hashtags":[{"text":"milieulobby","indices":[57,69]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jNQwXQsJrP","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1500067492525481984","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1500058722562887682,"quoted_status_id_str":"1500058722562887682","retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"nl"},"is_quote_status":true,"quoted_status_id":1500058722562887682,"quoted_status_id_str":"1500058722562887682","retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"nl"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113514820\/Zomer2007_169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113514820\/Zomer2007_169_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1321113539822735361,"id_str":"1321113539822735361","name":"social - media monitor","screen_name":"election_butv","location":"Agincourt, France","description":"monitoring - social media for the election","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":46,"listed_count":0,"created_at":"Tue - Oct 27 15:36:48 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321115196102946816\/K4IqZbQ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321115196102946816\/K4IqZbQ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1321113539822735361\/1603813430","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2935669441,"id_str":"2935669441","name":"Elaine - Pollock","screen_name":"EleniPollock","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":379,"listed_count":0,"created_at":"Fri - Dec 19 04:04:06 +0000 2014","favourites_count":19901,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":518632747,"id_str":"518632747","name":"Brett - Warner","screen_name":"mhsjvbaseball","location":"Edmonds, WA","description":"#jvforlife","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":949,"listed_count":0,"created_at":"Thu - Mar 08 16:11:39 +0000 2012","favourites_count":2241,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":727,"lang":null,"status":{"created_at":"Wed - Mar 23 21:46:44 +0000 2022","id":1506749310418923523,"id_str":"1506749310418923523","text":"RT - @RobertMaguire_: And of course, even when they do find cases, they''re not - part of a vast left-wing conspiracy https:\/\/t.co\/e9v0KP7del","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RobertMaguire_","name":"Robert - Maguire","id":1398759560,"id_str":"1398759560","indices":[3,18]}],"urls":[],"media":[{"id":1506723989581877261,"id_str":"1506723989581877261","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","url":"https:\/\/t.co\/e9v0KP7del","display_url":"pic.twitter.com\/e9v0KP7del","expanded_url":"https:\/\/twitter.com\/RobertMaguire_\/status\/1506724138848866304\/photo\/1","type":"photo","sizes":{"small":{"w":655,"h":271,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":655,"h":271,"resize":"fit"},"medium":{"w":655,"h":271,"resize":"fit"}},"source_status_id":1506724138848866304,"source_status_id_str":"1506724138848866304","source_user_id":1398759560,"source_user_id_str":"1398759560"}]},"extended_entities":{"media":[{"id":1506723989581877261,"id_str":"1506723989581877261","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","url":"https:\/\/t.co\/e9v0KP7del","display_url":"pic.twitter.com\/e9v0KP7del","expanded_url":"https:\/\/twitter.com\/RobertMaguire_\/status\/1506724138848866304\/photo\/1","type":"photo","sizes":{"small":{"w":655,"h":271,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":655,"h":271,"resize":"fit"},"medium":{"w":655,"h":271,"resize":"fit"}},"source_status_id":1506724138848866304,"source_status_id_str":"1506724138848866304","source_user_id":1398759560,"source_user_id_str":"1398759560"}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 20:06:42 +0000 2022","id":1506724138848866304,"id_str":"1506724138848866304","text":"And - of course, even when they do find cases, they''re not part of a vast left-wing - conspiracy https:\/\/t.co\/e9v0KP7del","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1506723989581877261,"id_str":"1506723989581877261","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","url":"https:\/\/t.co\/e9v0KP7del","display_url":"pic.twitter.com\/e9v0KP7del","expanded_url":"https:\/\/twitter.com\/RobertMaguire_\/status\/1506724138848866304\/photo\/1","type":"photo","sizes":{"small":{"w":655,"h":271,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":655,"h":271,"resize":"fit"},"medium":{"w":655,"h":271,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1506723989581877261,"id_str":"1506723989581877261","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/FOj1fE2WUA0yPBz.png","url":"https:\/\/t.co\/e9v0KP7del","display_url":"pic.twitter.com\/e9v0KP7del","expanded_url":"https:\/\/twitter.com\/RobertMaguire_\/status\/1506724138848866304\/photo\/1","type":"photo","sizes":{"small":{"w":655,"h":271,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":655,"h":271,"resize":"fit"},"medium":{"w":655,"h":271,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1506723425997541376,"in_reply_to_status_id_str":"1506723425997541376","in_reply_to_user_id":1398759560,"in_reply_to_user_id_str":"1398759560","in_reply_to_screen_name":"RobertMaguire_","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/669785896938373120\/tblDE9d9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/669785896938373120\/tblDE9d9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/518632747\/1435952493","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":813847494001987584,"id_str":"813847494001987584","name":"Mleonard57","screen_name":"Mleonar0","location":"","description":"Antitrump - to the core","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":403,"friends_count":731,"listed_count":0,"created_at":"Tue - Dec 27 20:42:17 +0000 2016","favourites_count":72022,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":28910,"lang":null,"status":{"created_at":"Fri - Mar 25 16:31:11 +0000 2022","id":1507394676420132870,"id_str":"1507394676420132870","text":"RT - @steve_vladeck: Under 28 U.S.C. \u00a7 455, a #SCOTUS Justice is required - to recuse from a case not just if they know that their spouse has \u201c\u2026","truncated":false,"entities":{"hashtags":[{"text":"SCOTUS","indices":[44,51]}],"symbols":[],"user_mentions":[{"screen_name":"steve_vladeck","name":"Steve - Vladeck","id":380268462,"id_str":"380268462","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 03:31:03 +0000 2022","id":1507198348767514625,"id_str":"1507198348767514625","text":"Under - 28 U.S.C. \u00a7 455, a #SCOTUS Justice is required to recuse from a case - not just if they know that their spouse\u2026 https:\/\/t.co\/qiTfthvoMD","truncated":true,"entities":{"hashtags":[{"text":"SCOTUS","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qiTfthvoMD","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507198348767514625","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1724,"favorite_count":5025,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1724,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":40967238,"id_str":"40967238","name":"Nate","screen_name":"natemauch","location":"","description":"Dad. - Husband. Technology implementor. Sailor. Cyclist. \ud83c\uddfa\ud83c\uddf8\ud83c\uddec\ud83c\udde7\ud83c\uddeb\ud83c\uddf7","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":55,"friends_count":996,"listed_count":0,"created_at":"Mon - May 18 21:02:02 +0000 2009","favourites_count":18381,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":504,"lang":null,"status":{"created_at":"Sat - Mar 26 10:44:45 +0000 2022","id":1507669882699190276,"id_str":"1507669882699190276","text":"@OakCityCRE - I\u2019m more of a reader than a listener.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OakCityCRE","name":"Jed - | OakCityCRE","id":820325606458060800,"id_str":"820325606458060800","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507664711487299587,"in_reply_to_status_id_str":"1507664711487299587","in_reply_to_user_id":820325606458060800,"in_reply_to_user_id_str":"820325606458060800","in_reply_to_screen_name":"OakCityCRE","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502984943353409536\/T3-90zPO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502984943353409536\/T3-90zPO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40967238\/1600123619","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":16086718,"id_str":"16086718","name":"Arif - Alikhan","screen_name":"TripleDM3","location":"Los Angeles","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":63,"friends_count":916,"listed_count":5,"created_at":"Mon - Sep 01 19:31:32 +0000 2008","favourites_count":299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1087242114453237760\/93t1jWcz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1087242114453237760\/93t1jWcz_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1302678924820975616,"id_str":"1302678924820975616","name":"Joyce","screen_name":"Joyce01567289","location":"","description":"I\u2019m - 30 years old, single with no kids and never been married before...looking - for God fearing man to settle down and make family with","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":206,"listed_count":0,"created_at":"Sun - Sep 06 18:44:07 +0000 2020","favourites_count":303,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"status":{"created_at":"Fri - Oct 23 02:28:51 +0000 2020","id":1319465781550370822,"id_str":"1319465781550370822","text":"@johnearlclark - Hi there handsome","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"johnearlclark","name":"John - E Clark","id":54627053,"id_str":"54627053","indices":[0,14]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1319458569171968000,"in_reply_to_status_id_str":"1319458569171968000","in_reply_to_user_id":54627053,"in_reply_to_user_id_str":"54627053","in_reply_to_screen_name":"johnearlclark","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302679078600925189\/yI6ZrnC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302679078600925189\/yI6ZrnC1_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1247481763489857537,"id_str":"1247481763489857537","name":"Owolabi - Stephen","screen_name":"Stephen_170","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":25,"friends_count":154,"listed_count":0,"created_at":"Tue - Apr 07 11:10:26 +0000 2020","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"status":{"created_at":"Wed - Apr 15 04:24:42 +0000 2020","id":1250278854339383297,"id_str":"1250278854339383297","text":"@NBCNews - Need to be psychiatrically examined.what kind of a talk is that?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NBCNews","name":"NBC - News","id":14173315,"id_str":"14173315","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1250275496933261321,"in_reply_to_status_id_str":"1250275496933261321","in_reply_to_user_id":14173315,"in_reply_to_user_id_str":"14173315","in_reply_to_screen_name":"NBCNews","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1247482645849804801\/EtM5R16r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1247482645849804801\/EtM5R16r_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2520069250,"id_str":"2520069250","name":"cam - hale","screen_name":"rexreds","location":"Huntington, WV","description":"Retired.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":743,"listed_count":0,"created_at":"Wed - Apr 30 23:48:24 +0000 2014","favourites_count":74014,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":397,"lang":null,"status":{"created_at":"Fri - Mar 25 23:58:13 +0000 2022","id":1507507174016180226,"id_str":"1507507174016180226","text":"RT - @Chris_Meloni: Never thought I\u2019d see Palin out-stupided","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chris_Meloni","name":"Chris - Meloni","id":222185665,"id_str":"222185665","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 17:50:26 +0000 2022","id":1507414618267959298,"id_str":"1507414618267959298","text":"Never - thought I\u2019d see Palin out-stupided https:\/\/t.co\/A8YvlA4wbF","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/A8YvlA4wbF","expanded_url":"https:\/\/twitter.com\/laurenboebert\/status\/1506690371421671426","display_url":"twitter.com\/laurenboebert\/\u2026","indices":[41,64]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1506690371421671426,"quoted_status_id_str":"1506690371421671426","retweet_count":108,"favorite_count":1161,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1506690371421671426,"quoted_status_id_str":"1506690371421671426","retweet_count":108,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1102724046192549888\/enn-fVtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1102724046192549888\/enn-fVtU_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1280984324783968257,"id_str":"1280984324783968257","name":"JH","screen_name":"hembling_john","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":411,"listed_count":0,"created_at":"Wed - Jul 08 21:57:24 +0000 2020","favourites_count":949,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":143,"lang":null,"status":{"created_at":"Thu - Jan 27 16:20:00 +0000 2022","id":1486735752948076549,"id_str":"1486735752948076549","text":"@propublica - I''ve been a monthly donor for a couple of years now... I would love a mug!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"propublica","name":"ProPublica","id":14606079,"id_str":"14606079","indices":[0,11]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1486720862422114309,"in_reply_to_status_id_str":"1486720862422114309","in_reply_to_user_id":14606079,"in_reply_to_user_id_str":"14606079","in_reply_to_screen_name":"propublica","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280984725780336640\/Z0jydYku_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280984725780336640\/Z0jydYku_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":22114982,"id_str":"22114982","name":"Ibrahim - Adel","screen_name":"abeadel","location":"Cairo, Egypt","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":41,"friends_count":971,"listed_count":0,"created_at":"Fri - Feb 27 06:24:08 +0000 2009","favourites_count":381,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":637,"lang":null,"status":{"created_at":"Wed - Jul 14 05:16:38 +0000 2021","id":1415178402907279360,"id_str":"1415178402907279360","text":"@AirCanada - I sent you a DM.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AirCanada","name":"Air - Canada","id":54904679,"id_str":"54904679","indices":[0,10]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1414653366689480707,"in_reply_to_status_id_str":"1414653366689480707","in_reply_to_user_id":54904679,"in_reply_to_user_id_str":"54904679","in_reply_to_screen_name":"AirCanada","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2925743875\/351b70ecd9af391ba67a0fba412230e7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2925743875\/351b70ecd9af391ba67a0fba412230e7_normal.jpeg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":19009741,"id_str":"19009741","name":"Jody - Ruble","screen_name":"JodyRuble","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":41,"friends_count":169,"listed_count":1,"created_at":"Thu - Jan 15 03:50:20 +0000 2009","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":509,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491485731\/ruble-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491485731\/ruble-2_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1301647624240496645,"id_str":"1301647624240496645","name":"GK","screen_name":"gkinthetrees","location":" - Somewhere in the woods","description":"Miles to go before I sleep.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":59,"friends_count":350,"listed_count":0,"created_at":"Thu - Sep 03 22:27:40 +0000 2020","favourites_count":5880,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13034,"lang":null,"status":{"created_at":"Fri - Mar 25 22:19:45 +0000 2022","id":1507482397138247680,"id_str":"1507482397138247680","text":"RT - @taffyfantasia: @MuellerSheWrote Is anyone looking into the Trump\/Bragg relationship - from years ago to the present? Someone\u2019s on this, r\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"taffyfantasia","name":"Terese - Fantasia","id":43371657,"id_str":"43371657","indices":[3,17]},{"screen_name":"MuellerSheWrote","name":"Mueller, - She Wrote","id":926164634570067968,"id_str":"926164634570067968","indices":[19,35]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 04:02:52 +0000 2022","id":1507206357296066565,"id_str":"1507206357296066565","text":"@MuellerSheWrote - Is anyone looking into the Trump\/Bragg relationship from years ago to the - present? Someone\u2019s on this, right?","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MuellerSheWrote","name":"Mueller, - She Wrote","id":926164634570067968,"id_str":"926164634570067968","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1507204269971173379,"in_reply_to_status_id_str":"1507204269971173379","in_reply_to_user_id":926164634570067968,"in_reply_to_user_id_str":"926164634570067968","in_reply_to_screen_name":"MuellerSheWrote","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":243,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301650534026350592\/g5nGbLkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301650534026350592\/g5nGbLkX_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":115170857,"id_str":"115170857","name":"Human - Rights","screen_name":"JusticeGroup","location":"North Woodstock, USA & Nigeria","description":"Protecting - and promoting human rights, democracy, good governance & #genderequality in - Nigeria and abroad through advocacy, #training #capacitybuilding","url":"https:\/\/t.co\/Ih3xTddStM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ih3xTddStM","expanded_url":"http:\/\/www.justicegroup.org","display_url":"justicegroup.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1714,"friends_count":3019,"listed_count":41,"created_at":"Wed - Feb 17 21:01:05 +0000 2010","favourites_count":539,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4011,"lang":null,"status":{"created_at":"Wed - Mar 23 00:51:49 +0000 2022","id":1506433501427552259,"id_str":"1506433501427552259","text":"Call - for applications: Online Certificate Course on Gender and Development (GD) - - 2022 | Capacity4dev https:\/\/t.co\/6lez3L0ngN","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6lez3L0ngN","expanded_url":"https:\/\/europa.eu\/!dv84RH","display_url":"europa.eu\/!dv84RH","indices":[102,125]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BF1238","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme20\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme20\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1021757899897548800\/FOL-1fZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1021757899897548800\/FOL-1fZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115170857\/1472549791","profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":268355785,"id_str":"268355785","name":"Ellen - Mart\u00ednez","screen_name":"ellen_martinez","location":"Vienna, Austria","description":"Abogada - y diplom\u00e1tica dominicana. Esposa de Charles y madre de Charl\u00e8ne - y Alec. Eterna enamorada de mi hermosa isla y de su gente \ud83c\udde9\ud83c\uddf4","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":274,"friends_count":1406,"listed_count":0,"created_at":"Fri - Mar 18 16:12:23 +0000 2011","favourites_count":721,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":354,"lang":null,"status":{"created_at":"Wed - Mar 16 21:14:41 +0000 2022","id":1504204528488493062,"id_str":"1504204528488493062","text":"Con - el virtuoso artista dominicano Michel Camilo, quien estuvo en Viena para el - concierto Janoska Ensemble meets Mi\u2026 https:\/\/t.co\/0CW7zIKtUn","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0CW7zIKtUn","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1504204528488493062","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1201977004108767233\/X-kEMvLF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201977004108767233\/X-kEMvLF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268355785\/1566156362","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1287687182459822081,"id_str":"1287687182459822081","name":"Riee","screen_name":"Riee_STAY","location":"","description":"Stan - For Talent, Stan For SKz \ud83d\ude4c\ud83c\uddee\ud83c\uddf3\u2764\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":0,"listed_count":0,"created_at":"Mon - Jul 27 09:54:07 +0000 2020","favourites_count":4608,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"status":{"created_at":"Tue - Sep 14 07:56:19 +0000 2021","id":1437686636838481921,"id_str":"1437686636838481921","text":"RT - @skzchartdata: South Korea Twitter Trends\n\n#1 #\ud55c\uc9c0\uc131\uc774\ub780_\uc601\ud654\uc5d0_\ub108\ub294\uc8fc\uc5f0\uc774\uc5c8\ub2e4\n#2 - #OurAceHanJisung\n#3 #HappyHANday","truncated":false,"entities":{"hashtags":[{"text":"\ud55c\uc9c0\uc131\uc774\ub780_\uc601\ud654\uc5d0_\ub108\ub294\uc8fc\uc5f0\uc774\uc5c8\ub2e4","indices":[49,67]},{"text":"OurAceHanJisung","indices":[71,87]},{"text":"HappyHANday","indices":[91,103]}],"symbols":[],"user_mentions":[{"screen_name":"skzchartdata","name":"Stray - Kids Chart Data \u263b\ufe0e","id":1258635706387202054,"id_str":"1258635706387202054","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon - Sep 13 14:53:15 +0000 2021","id":1437429173153267717,"id_str":"1437429173153267717","text":"South - Korea Twitter Trends\n\n#1 #\ud55c\uc9c0\uc131\uc774\ub780_\uc601\ud654\uc5d0_\ub108\ub294\uc8fc\uc5f0\uc774\uc5c8\ub2e4\n#2 - #OurAceHanJisung\n#3 #HappyHANday","truncated":false,"entities":{"hashtags":[{"text":"\ud55c\uc9c0\uc131\uc774\ub780_\uc601\ud654\uc5d0_\ub108\ub294\uc8fc\uc5f0\uc774\uc5c8\ub2e4","indices":[31,49]},{"text":"OurAceHanJisung","indices":[53,69]},{"text":"HappyHANday","indices":[73,85]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1254,"favorite_count":4672,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1254,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428379739194937349\/J9zG9JtC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428379739194937349\/J9zG9JtC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287687182459822081\/1629111359","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1083446240,"id_str":"1083446240","name":"Barbara - Ball","screen_name":"Baba59Ball","location":"Olive Branch, MS","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":119,"listed_count":0,"created_at":"Sat - Jan 12 16:24:45 +0000 2013","favourites_count":6898,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5,"lang":null,"status":{"created_at":"Mon - Jan 31 01:22:33 +0000 2022","id":1487959455035793409,"id_str":"1487959455035793409","text":"@Ben_Baby - @FieldYates Tom Brady wantabee!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ben_Baby","name":"Ben - Baby","id":187626332,"id_str":"187626332","indices":[0,9]},{"screen_name":"FieldYates","name":"Field - Yates","id":58919137,"id_str":"58919137","indices":[10,21]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1487944910418419721,"in_reply_to_status_id_str":"1487944910418419721","in_reply_to_user_id":187626332,"in_reply_to_user_id_str":"187626332","in_reply_to_screen_name":"Ben_Baby","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496009175387111424\/oZJq2KQ9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496009175387111424\/oZJq2KQ9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083446240\/1407092782","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1091145211303116802,"id_str":"1091145211303116802","name":"Ellis - Dee","screen_name":"EllisDe77201986","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":287,"listed_count":0,"created_at":"Fri - Feb 01 01:24:25 +0000 2019","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160679849704472582\/uw1_l-Tk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160679849704472582\/uw1_l-Tk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1091145211303116802\/1565562655","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":87784218,"id_str":"87784218","name":"Elizabeth - Reidy","screen_name":"ereidy7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":7,"friends_count":305,"listed_count":0,"created_at":"Thu - Nov 05 21:12:14 +0000 2009","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1004341802671931393,"id_str":"1004341802671931393","name":"King - of Troy","screen_name":"Troy66802385","location":"South Africa","description":"Purple - heart vet, Just an Ordinary Extraordinary Lad.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":250,"listed_count":0,"created_at":"Wed - Jun 06 12:38:40 +0000 2018","favourites_count":1367,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":188,"lang":null,"status":{"created_at":"Wed - Mar 23 21:26:22 +0000 2022","id":1506744187051560966,"id_str":"1506744187051560966","text":"RT - @HussleForever: \u201cBe more fearless. All my radical moonshots have defined - me\u201d - NH https:\/\/t.co\/lL8YC7XyV1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HussleForever","name":"Long - Live Nip \ud83c\udfc1","id":904810358040342529,"id_str":"904810358040342529","indices":[3,17]}],"urls":[],"media":[{"id":1491880664895008772,"id_str":"1491880664895008772","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","url":"https:\/\/t.co\/lL8YC7XyV1","display_url":"pic.twitter.com\/lL8YC7XyV1","expanded_url":"https:\/\/twitter.com\/HussleForever\/status\/1491880754854432768\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1491880754854432768,"source_status_id_str":"1491880754854432768","source_user_id":904810358040342529,"source_user_id_str":"904810358040342529"}]},"extended_entities":{"media":[{"id":1491880664895008772,"id_str":"1491880664895008772","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","url":"https:\/\/t.co\/lL8YC7XyV1","display_url":"pic.twitter.com\/lL8YC7XyV1","expanded_url":"https:\/\/twitter.com\/HussleForever\/status\/1491880754854432768\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"source_status_id":1491880754854432768,"source_status_id_str":"1491880754854432768","source_user_id":904810358040342529,"source_user_id_str":"904810358040342529","video_info":{"aspect_ratio":[1,1],"duration_millis":67206,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/540x540\/Y7ys7VRe6erAT1YS.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/320x320\/jIrWJXzcdgc8uhKx.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/720x720\/HqNnfZorITmn2pDE.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/pl\/PurRkoegCQPMFKUe.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu - Feb 10 21:04:24 +0000 2022","id":1491880754854432768,"id_str":"1491880754854432768","text":"\u201cBe - more fearless. All my radical moonshots have defined me\u201d - NH https:\/\/t.co\/lL8YC7XyV1","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1491880664895008772,"id_str":"1491880664895008772","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","url":"https:\/\/t.co\/lL8YC7XyV1","display_url":"pic.twitter.com\/lL8YC7XyV1","expanded_url":"https:\/\/twitter.com\/HussleForever\/status\/1491880754854432768\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1491880664895008772,"id_str":"1491880664895008772","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1491880664895008772\/pu\/img\/e5AVOcc5rv7n8oK9.jpg","url":"https:\/\/t.co\/lL8YC7XyV1","display_url":"pic.twitter.com\/lL8YC7XyV1","expanded_url":"https:\/\/twitter.com\/HussleForever\/status\/1491880754854432768\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":67206,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/540x540\/Y7ys7VRe6erAT1YS.mp4?tag=12"},{"bitrate":432000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/320x320\/jIrWJXzcdgc8uhKx.mp4?tag=12"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/vid\/720x720\/HqNnfZorITmn2pDE.mp4?tag=12"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1491880664895008772\/pu\/pl\/PurRkoegCQPMFKUe.m3u8?tag=12&container=fmp4"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":968,"favorite_count":2548,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":968,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1004344443082825728\/PYe1j0v__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1004344443082825728\/PYe1j0v__normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1174760492725886976,"id_str":"1174760492725886976","name":"rflicker","screen_name":"rflicker1","location":"Connecticut","description":"NYC - born and raised. Big sports fan - Yankees, Jets, Knicks and Rangers.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":960,"listed_count":0,"created_at":"Thu - Sep 19 19:02:46 +0000 2019","favourites_count":7675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":66,"lang":null,"status":{"created_at":"Sun - Mar 20 15:14:03 +0000 2022","id":1505563324733444109,"id_str":"1505563324733444109","text":"@mig4450 - My father and I would get up before dawn and go to the gas station on Ave - Z and I think E 13th or somethin\u2026 https:\/\/t.co\/zOnyb4ckL1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mig4450","name":"TheMig4450","id":1452802668188086280,"id_str":"1452802668188086280","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/zOnyb4ckL1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505563324733444109","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1505382817995411457,"in_reply_to_status_id_str":"1505382817995411457","in_reply_to_user_id":1452802668188086280,"in_reply_to_user_id_str":"1452802668188086280","in_reply_to_screen_name":"mig4450","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1351222889534676994\/4GQ7s-Zo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1351222889534676994\/4GQ7s-Zo_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2176062120,"id_str":"2176062120","name":"Effy''s - Dad","screen_name":"jefftoscano1","location":"modesto, ca","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":206,"friends_count":1139,"listed_count":0,"created_at":"Tue - Nov 05 13:16:40 +0000 2013","favourites_count":11879,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1293,"lang":null,"status":{"created_at":"Fri - Mar 18 00:46:43 +0000 2022","id":1504620278852202496,"id_str":"1504620278852202496","text":"@DCdebbie - Nothing like that first impression\u2026\ud83e\udd23\ud83e\udd23\ud83e\udd23","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DCdebbie","name":"\ud83d\udd25Double - Dee\ud83d\udc60\ud83d\udc60","id":14266637,"id_str":"14266637","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1504613736023265281,"in_reply_to_status_id_str":"1504613736023265281","in_reply_to_user_id":14266637,"in_reply_to_user_id_str":"14266637","in_reply_to_screen_name":"DCdebbie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1026309693327593472\/U3z8DmlN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1026309693327593472\/U3z8DmlN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176062120\/1509319286","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":944403287784206336,"id_str":"944403287784206336","name":"Sue - Brandon","screen_name":"SueBrandon10","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":531,"listed_count":0,"created_at":"Sat - Dec 23 03:04:24 +0000 2017","favourites_count":187,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14,"lang":null,"status":{"created_at":"Fri - Apr 02 14:10:52 +0000 2021","id":1377986896425578499,"id_str":"1377986896425578499","text":"@atrupar - Oh you will miss her","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"atrupar","name":"Aaron - Rupar","id":288277167,"id_str":"288277167","indices":[0,8]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1377964326804410371,"in_reply_to_status_id_str":"1377964326804410371","in_reply_to_user_id":288277167,"in_reply_to_user_id_str":"288277167","in_reply_to_screen_name":"atrupar","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1322700358154674176\/uWpfgQLb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1322700358154674176\/uWpfgQLb_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1292842200569610242,"id_str":"1292842200569610242","name":"Tee","screen_name":"Tee42613547","location":"Myrtle - Beach, SC","description":"Hard working lady who is ready for retirement. Trump - hater. lives in the south.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":1505,"listed_count":0,"created_at":"Mon - Aug 10 15:16:35 +0000 2020","favourites_count":130479,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Wed - Mar 23 22:48:26 +0000 2022","id":1506764838235746313,"id_str":"1506764838235746313","text":"@ReallyAmerican1 - #CruzIsADisgrace","truncated":false,"entities":{"hashtags":[{"text":"CruzIsADisgrace","indices":[17,33]}],"symbols":[],"user_mentions":[{"screen_name":"ReallyAmerican1","name":"Really - American \ud83c\uddfa\ud83c\uddf8","id":767788995962998784,"id_str":"767788995962998784","indices":[0,16]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1506733658593542152,"in_reply_to_status_id_str":"1506733658593542152","in_reply_to_user_id":767788995962998784,"in_reply_to_user_id_str":"767788995962998784","in_reply_to_screen_name":"ReallyAmerican1","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1292842492291883008\/DXwxK2te_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1292842492291883008\/DXwxK2te_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":838417421388107776,"id_str":"838417421388107776","name":"Noor - Shams","screen_name":"Johnpolos15Noor","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":810,"listed_count":0,"created_at":"Sun - Mar 05 15:54:25 +0000 2017","favourites_count":639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6948,"lang":null,"status":{"created_at":"Mon - Oct 18 19:10:59 +0000 2021","id":1450177606486265861,"id_str":"1450177606486265861","text":"\u062d\u064a\u0646 - \u064a\u0646\u0635\u062f\u0645 \u0627\u0644\u0645\u0633\u0644\u0645 \u0628\u062d\u0642\u064a\u0642\u0629 - \u0627\u0644\u0627\u0633\u0644\u0627\u0645 https:\/\/t.co\/rKCBuxgsnQ via - @YouTube When a Muslim is shocked by the truth of Islam\u2026 https:\/\/t.co\/gnwNsMW37r","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[60,68]}],"urls":[{"url":"https:\/\/t.co\/rKCBuxgsnQ","expanded_url":"https:\/\/youtu.be\/1bfzoR7XDS8","display_url":"youtu.be\/1bfzoR7XDS8","indices":[32,55]},{"url":"https:\/\/t.co\/gnwNsMW37r","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1450177606486265861","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240074832458416128\/-PWwHryW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240074832458416128\/-PWwHryW_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":187962358,"id_str":"187962358","name":"Steven - walin","screen_name":"stevewalin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":14,"friends_count":613,"listed_count":0,"created_at":"Tue - Sep 07 15:58:36 +0000 2010","favourites_count":27,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Thu - Jan 26 03:19:14 +0000 2017","id":824456637515763714,"id_str":"824456637515763714","text":"@AmericanAir - spent almost $9Kwith you! same clothes for three days.ELAL offers $75 w\/receipts. - Pls call Iberia mgt. I am good cust. Crap svc","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AmericanAir","name":"americanair","id":22536055,"id_str":"22536055","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":824455023857917952,"in_reply_to_status_id_str":"824455023857917952","in_reply_to_user_id":22536055,"in_reply_to_user_id_str":"22536055","in_reply_to_screen_name":"AmericanAir","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":26556825,"id_str":"26556825","name":"TCBARONESS","screen_name":"TCBAFC","location":"United - States","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":211,"friends_count":1844,"listed_count":0,"created_at":"Wed - Mar 25 18:27:55 +0000 2009","favourites_count":194011,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":75852,"lang":null,"status":{"created_at":"Sun - Mar 13 02:27:52 +0000 2022","id":1502833794323263488,"id_str":"1502833794323263488","text":"RT - @Delavegalaw: We should make clear, at every turn, the extent to which Trump''s - alignment with Putin & Russia -- before, during & after h\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Delavegalaw","name":"Elizabeth - de la Vega","id":872460123125448704,"id_str":"872460123125448704","indices":[3,15]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun - Mar 13 02:26:22 +0000 2022","id":1502833416009445376,"id_str":"1502833416009445376","text":"We - should make clear, at every turn, the extent to which Trump''s alignment with - Putin & Russia -- before, during &\u2026 https:\/\/t.co\/7NI9kvxwaV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7NI9kvxwaV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1502833416009445376","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[124,147]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2633,"favorite_count":10032,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2633,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/893332351534718976\/ZT-C9ubV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/893332351534718976\/ZT-C9ubV_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20162341,"id_str":"20162341","name":"Denis - Garman","screen_name":"DPGarman","location":"Winter Garden, FL","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":38,"friends_count":709,"listed_count":0,"created_at":"Thu - Feb 05 16:40:36 +0000 2009","favourites_count":666,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":327,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/75724443\/energyu_garman_90x90_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/75724443\/energyu_garman_90x90_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":20660433,"id_str":"20660433","name":"Gary - C","screen_name":"coop1031","location":"The Villages, Florida","description":"progressive - from turning redder Florida, pro Democracy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1879,"friends_count":2056,"listed_count":0,"created_at":"Thu - Feb 12 07:31:11 +0000 2009","favourites_count":604,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3796,"lang":null,"status":{"created_at":"Tue - Mar 22 20:29:19 +0000 2022","id":1506367441030557698,"id_str":"1506367441030557698","text":"RT - @Scott_Maxwell: FPL wrote the bill that will make solar less affordable, gave - it to legislators and gave them campaign cash to boot.\nThe\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Scott_Maxwell","name":"Scott - Maxwell","id":36473948,"id_str":"36473948","indices":[3,17]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 20:27:28 +0000 2022","id":1506366976473636864,"id_str":"1506366976473636864","text":"FPL - wrote the bill that will make solar less affordable, gave it to legislators - and gave them campaign cash to boot\u2026 https:\/\/t.co\/SzPreQ8lsN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SzPreQ8lsN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506366976473636864","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":168,"favorite_count":369,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":168,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445090489129111553\/XlbMXEkK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445090489129111553\/XlbMXEkK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1293192751782047744,"id_str":"1293192751782047744","name":"Osagie","screen_name":"Osagie91101056","location":"Abeokuta, - Nigeria","description":"I was born and bred in kaduna, northern Nigeria and - yenagoa, bayelsa State, southern Nigeria. my hobbies are reading, watching - movies and listening to music.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":22,"friends_count":690,"listed_count":0,"created_at":"Tue - Aug 11 14:29:41 +0000 2020","favourites_count":3075,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Tue - Dec 08 15:51:49 +0000 2020","id":1336337696688459779,"id_str":"1336337696688459779","text":"@PeterPsquare - @zoomupyourlife Nigeria shall be great. We shall see through all these bloodshed - and catastrophe. Believe.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PeterPsquare","name":"Peter - Okoye MrP","id":47033057,"id_str":"47033057","indices":[0,13]},{"screen_name":"zoomupyourlife","name":"zoomupyourlife","id":1097517894315982855,"id_str":"1097517894315982855","indices":[14,29]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1336305180426571776,"in_reply_to_status_id_str":"1336305180426571776","in_reply_to_user_id":47033057,"in_reply_to_user_id_str":"47033057","in_reply_to_screen_name":"PeterPsquare","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1293193273763340289\/yHzyssKj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1293193273763340289\/yHzyssKj_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1238203310387032064,"id_str":"1238203310387032064","name":"onamission","screen_name":"katnmouselove","location":"Colorado - ","description":"#trader#vegan#loveanimals#semi-retired. restore sanity and - kindness to our country . be kind to one another","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":754,"listed_count":3,"created_at":"Thu - Mar 12 20:41:04 +0000 2020","favourites_count":33487,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11038,"lang":null,"status":{"created_at":"Sat - Mar 26 00:50:29 +0000 2022","id":1507520330147024896,"id_str":"1507520330147024896","text":"@GinniThomas - https:\/\/t.co\/8wda08bTZm","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GinniThomas","name":"Definitely - Ginni Thomas","id":1507509414248566793,"id_str":"1507509414248566793","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/8wda08bTZm","expanded_url":"https:\/\/twitter.com\/projectlincoln\/status\/1507518530278858752","display_url":"twitter.com\/projectlincoln\u2026","indices":[13,36]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1507509414248566793,"in_reply_to_user_id_str":"1507509414248566793","in_reply_to_screen_name":"GinniThomas","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1507518530278858752,"quoted_status_id_str":"1507518530278858752","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339754094437740545\/na2TecBW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339754094437740545\/na2TecBW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238203310387032064\/1603245010","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":780581058664292352,"id_str":"780581058664292352","name":"Kathy - Lopez","screen_name":"kathykatlin1956","location":"Tampa, FL","description":"Best - grandma. cash app $katlin1956. katlin1956@aol.com","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8,"friends_count":598,"listed_count":0,"created_at":"Tue - Sep 27 01:33:21 +0000 2016","favourites_count":596,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":369,"lang":null,"status":{"created_at":"Thu - Mar 24 14:17:46 +0000 2022","id":1506998711725002762,"id_str":"1506998711725002762","text":"RT - @Dream: I\u2019m going to give away $30,000 to 1 random person who retweets - this tweet AND follows Twitter Philanthropist @Pulte and Me!! (If\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Dream","name":"Dream","id":183905912,"id_str":"183905912","indices":[3,9]},{"screen_name":"pulte","name":"Pulte","id":25029495,"id_str":"25029495","indices":[120,126]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Mar 19 16:37:37 +0000 2022","id":1505221967464521736,"id_str":"1505221967464521736","text":"I\u2019m - going to give away $30,000 to 1 random person who retweets this tweet AND - follows Twitter Philanthropist @Pulte\u2026 https:\/\/t.co\/nIBDFXqrU0","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pulte","name":"Pulte","id":25029495,"id_str":"25029495","indices":[109,115]}],"urls":[{"url":"https:\/\/t.co\/nIBDFXqrU0","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1505221967464521736","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":235263,"favorite_count":267765,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":235263,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1242510284750716931,"id_str":"1242510284750716931","name":"Susan - Nightingale","screen_name":"snighty2020","location":"Springfield, IL","description":"No - longer a silent good person","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":448,"listed_count":0,"created_at":"Tue - Mar 24 17:56:12 +0000 2020","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":null,"status":{"created_at":"Sat - Dec 18 02:16:05 +0000 2021","id":1472027861582237699,"id_str":"1472027861582237699","text":"@ASlavitt - I meant MRNA!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ASlavitt","name":"Andy - Slavitt \ud83d\udc99\ud83d\udc9b","id":1383272101,"id_str":"1383272101","indices":[0,9]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":1472027497688707077,"in_reply_to_status_id_str":"1472027497688707077","in_reply_to_user_id":1242510284750716931,"in_reply_to_user_id_str":"1242510284750716931","in_reply_to_screen_name":"snighty2020","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":712260747221336064,"id_str":"712260747221336064","name":"Dulce - Nordelo","screen_name":"NordeloDulce","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":143,"friends_count":583,"listed_count":1,"created_at":"Tue - Mar 22 12:52:50 +0000 2016","favourites_count":34767,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":33674,"lang":null,"status":{"created_at":"Fri - Mar 25 22:46:57 +0000 2022","id":1507489239990165504,"id_str":"1507489239990165504","text":"RT - @CBSEveningNews: Pres. Biden was in Poland today preparing for what is to - be expected as a major speech tomorrow on the state of the Ukr\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CBSEveningNews","name":"CBS - Evening News","id":42958829,"id_str":"42958829","indices":[3,18]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri - Mar 25 22:37:17 +0000 2022","id":1507486808669659144,"id_str":"1507486808669659144","text":"Pres. - Biden was in Poland today preparing for what is to be expected as a major - speech tomorrow on the state of the\u2026 https:\/\/t.co\/0DDLZ2HlxJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0DDLZ2HlxJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1507486808669659144","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"http:\/\/www.snapstream.com\" rel=\"nofollow\"\u003eSnapStream TV Search\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":87,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":33350830,"id_str":"33350830","name":"Griffin - Grace","screen_name":"ahoff2000","location":"","description":"My candid photos - here https:\/\/t.co\/RcVfrAk4Ki","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/RcVfrAk4Ki","expanded_url":"http:\/\/goo.gl\/vYUHlS","display_url":"goo.gl\/vYUHlS","indices":[22,45]}]}},"protected":false,"followers_count":3,"friends_count":308,"listed_count":0,"created_at":"Mon - Apr 20 00:15:41 +0000 2009","favourites_count":434,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":null,"status":{"created_at":"Wed - Oct 20 19:40:51 +0000 2021","id":1450909900641611778,"id_str":"1450909900641611778","text":"RT - @RepMattGaetz: WATCH: Matt Gaetz RIPS J6-Obsessed Dems Targeting Steve Bannon\n\n\"Do - you really think your constituents are hoping you guy\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RepMattGaetz","name":"Rep. - Matt Gaetz","id":818948638890217473,"id_str":"818948638890217473","indices":[3,16]}],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Oct 20 18:42:07 +0000 2021","id":1450895119536857088,"id_str":"1450895119536857088","text":"WATCH: - Matt Gaetz RIPS J6-Obsessed Dems Targeting Steve Bannon\n\n\"Do you really - think your constituents are hoping y\u2026 https:\/\/t.co\/WTZRpjHCrJ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WTZRpjHCrJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1450895119536857088","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2094,"favorite_count":6602,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2094,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/788449529901244420\/Qqtdt7dl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/788449529901244420\/Qqtdt7dl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":24013423,"id_str":"24013423","name":"Mrs - L R Watt","screen_name":"queenie60409","location":"CT","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":583,"listed_count":0,"created_at":"Thu - Mar 12 19:26:36 +0000 2009","favourites_count":6497,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2617,"lang":null,"status":{"created_at":"Tue - Mar 22 20:05:44 +0000 2022","id":1506361505821990929,"id_str":"1506361505821990929","text":"RT - @OccupyDemocrats: BREAKING: Ukraine announces that a Russian soldier has turned - his military tank over to the Ukrainians in exchange for\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"OccupyDemocrats","name":"Occupy - Democrats","id":878284831,"id_str":"878284831","indices":[3,19]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Mar 22 16:44:17 +0000 2022","id":1506310810108260353,"id_str":"1506310810108260353","text":"BREAKING: - Ukraine announces that a Russian soldier has turned his military tank over - to the Ukrainians in exchange\u2026 https:\/\/t.co\/9pRqLqdg63","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9pRqLqdg63","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506310810108260353","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14980,"favorite_count":50648,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":14980,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1205238288925241353,"id_str":"1205238288925241353","name":"marilyn - brown","screen_name":"msbrown817","location":"Columbus, OH","description":"social - justice leader, former county commissioner, wife, mom, grandma.","url":"https:\/\/t.co\/SdSJ40NWef","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SdSJ40NWef","expanded_url":"http:\/\/franklincountyohio.gov","display_url":"franklincountyohio.gov","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":26,"friends_count":101,"listed_count":0,"created_at":"Thu - Dec 12 21:30:09 +0000 2019","favourites_count":879,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":361,"lang":null,"status":{"created_at":"Tue - Mar 15 11:35:13 +0000 2022","id":1503696315812925442,"id_str":"1503696315812925442","text":"@MLCorey1982 - Most definitely.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MLCorey1982","name":"Mike - Corey","id":1325329494,"id_str":"1325329494","indices":[0,12]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter - for iPad\u003c\/a\u003e","in_reply_to_status_id":1503507744573247488,"in_reply_to_status_id_str":"1503507744573247488","in_reply_to_user_id":1325329494,"in_reply_to_user_id_str":"1325329494","in_reply_to_screen_name":"MLCorey1982","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1398982959030538241\/lih0_tEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1398982959030538241\/lih0_tEu_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1094910196793704448,"id_str":"1094910196793704448","name":"Mafedha01","screen_name":"mafedha01","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":71,"friends_count":1629,"listed_count":0,"created_at":"Mon - Feb 11 10:45:08 +0000 2019","favourites_count":5908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":93,"lang":null,"status":{"created_at":"Thu - Mar 24 09:43:37 +0000 2022","id":1506929720654540802,"id_str":"1506929720654540802","text":"RT - @PSGalu: \ud83d\udea8| GIVEAWAY TIME! \n\nWin a PSG 4th shirt courtesy of - @FootballBoxes.\n\nTo enter:\n\n\u2022 Follow: @FootballBoxes and @PSGalu - \ud83e\udd1d\n\u2022 RETWEE\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PSGalu","name":"Galu","id":1017037103790809088,"id_str":"1017037103790809088","indices":[3,10]},{"screen_name":"FootballBoxes","name":"Matchday - Mystery","id":1456031786396491782,"id_str":"1456031786396491782","indices":[64,78]},{"screen_name":"FootballBoxes","name":"Matchday - Mystery","id":1456031786396491782,"id_str":"1456031786396491782","indices":[102,116]},{"screen_name":"PSGalu","name":"Galu","id":1017037103790809088,"id_str":"1017037103790809088","indices":[121,128]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed - Mar 23 15:41:18 +0000 2022","id":1506657346264584197,"id_str":"1506657346264584197","text":"\ud83d\udea8| - GIVEAWAY TIME! \n\nWin a PSG 4th shirt courtesy of @FootballBoxes.\n\nTo enter:\n\n\u2022 - Follow: @FootballBoxes and\u2026 https:\/\/t.co\/UmiFKQgq4S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FootballBoxes","name":"Matchday - Mystery","id":1456031786396491782,"id_str":"1456031786396491782","indices":[52,66]},{"screen_name":"FootballBoxes","name":"Matchday - Mystery","id":1456031786396491782,"id_str":"1456031786396491782","indices":[90,104]}],"urls":[{"url":"https:\/\/t.co\/UmiFKQgq4S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1506657346264584197","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[110,133]}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":368,"favorite_count":194,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":368,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1285170321700659201\/pFztnn_h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1285170321700659201\/pFztnn_h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1094910196793704448\/1603275073","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1035165011445014529,"id_str":"1035165011445014529","name":"bob - schipske","screen_name":"BSchipske","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":491,"listed_count":0,"created_at":"Thu - Aug 30 13:59:05 +0000 2018","favourites_count":536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":782,"lang":null,"status":{"created_at":"Tue - Sep 07 21:42:42 +0000 2021","id":1435357887661060100,"id_str":"1435357887661060100","text":"RT - @DearAuntCrabby: Save the date and join in! https:\/\/t.co\/lKC06vGyPg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DearAuntCrabby","name":"\ud83d\udd95\ud83c\udffbAunt - Crabby Calls Bullshit \ud83d\udd95\ud83c\udffb","id":1216789842,"id_str":"1216789842","indices":[3,18]}],"urls":[],"media":[{"id":1435279108192223238,"id_str":"1435279108192223238","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","url":"https:\/\/t.co\/lKC06vGyPg","display_url":"pic.twitter.com\/lKC06vGyPg","expanded_url":"https:\/\/twitter.com\/DearAuntCrabby\/status\/1435279111123918855\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":821,"h":422,"resize":"fit"},"small":{"w":680,"h":350,"resize":"fit"},"large":{"w":821,"h":422,"resize":"fit"}},"source_status_id":1435279111123918855,"source_status_id_str":"1435279111123918855","source_user_id":1216789842,"source_user_id_str":"1216789842"}]},"extended_entities":{"media":[{"id":1435279108192223238,"id_str":"1435279108192223238","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","url":"https:\/\/t.co\/lKC06vGyPg","display_url":"pic.twitter.com\/lKC06vGyPg","expanded_url":"https:\/\/twitter.com\/DearAuntCrabby\/status\/1435279111123918855\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":821,"h":422,"resize":"fit"},"small":{"w":680,"h":350,"resize":"fit"},"large":{"w":821,"h":422,"resize":"fit"}},"source_status_id":1435279111123918855,"source_status_id_str":"1435279111123918855","source_user_id":1216789842,"source_user_id_str":"1216789842"}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Sep 07 16:29:40 +0000 2021","id":1435279111123918855,"id_str":"1435279111123918855","text":"Save - the date and join in! https:\/\/t.co\/lKC06vGyPg","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1435279108192223238,"id_str":"1435279108192223238","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","url":"https:\/\/t.co\/lKC06vGyPg","display_url":"pic.twitter.com\/lKC06vGyPg","expanded_url":"https:\/\/twitter.com\/DearAuntCrabby\/status\/1435279111123918855\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":821,"h":422,"resize":"fit"},"small":{"w":680,"h":350,"resize":"fit"},"large":{"w":821,"h":422,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1435279108192223238,"id_str":"1435279108192223238","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/E-sivpVWQAYJ1EL.jpg","url":"https:\/\/t.co\/lKC06vGyPg","display_url":"pic.twitter.com\/lKC06vGyPg","expanded_url":"https:\/\/twitter.com\/DearAuntCrabby\/status\/1435279111123918855\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":821,"h":422,"resize":"fit"},"small":{"w":680,"h":350,"resize":"fit"},"large":{"w":821,"h":422,"resize":"fit"}}}]},"source":"\u003ca - href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1019,"favorite_count":1485,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1019,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":34467309,"id_str":"34467309","name":"Jim - Klaus","screen_name":"cwdjimk","location":"Richmond, Va","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":34,"friends_count":293,"listed_count":0,"created_at":"Thu - Apr 23 00:48:21 +0000 2009","favourites_count":1636,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":335,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"759195","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530372988722356224\/qQyTzAwd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530372988722356224\/qQyTzAwd_normal.jpeg","profile_link_color":"4065E2","profile_sidebar_border_color":"55A4AA","profile_sidebar_fill_color":"87BDC0","profile_text_color":"4436B5","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":931888136,"id_str":"931888136","name":"Dieter - Multhopp \ud83e\udde2","screen_name":"multhopp","location":"Beavercreek, OH","description":"\ud83e\udde2 - Recently retired Aerospace Engineer. Interested in carbon free long range - aviation and reusable access to space.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":301,"friends_count":1445,"listed_count":0,"created_at":"Wed - Nov 07 11:58:30 +0000 2012","favourites_count":43657,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1775,"lang":null,"status":{"created_at":"Mon - Feb 21 22:08:00 +0000 2022","id":1495883028484304904,"id_str":"1495883028484304904","text":"@hawkshaw11 - @603Freeman @tyler_whetstone No he was very bad.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hawkshaw11","name":"Steve - Hawkins","id":296245667,"id_str":"296245667","indices":[0,11]},{"screen_name":"603Freeman","name":"Jason - Freeman","id":131178254,"id_str":"131178254","indices":[12,23]},{"screen_name":"tyler_whetstone","name":"Tyler - Whetstone","id":237864740,"id_str":"237864740","indices":[24,40]}],"urls":[]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":1495797896410800136,"in_reply_to_status_id_str":"1495797896410800136","in_reply_to_user_id":296245667,"in_reply_to_user_id_str":"296245667","in_reply_to_screen_name":"hawkshaw11","geo":null,"coordinates":null,"place":{"id":"e14b0f2f11823fd6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e14b0f2f11823fd6.json","place_type":"city","name":"Laurel","full_name":"Laurel, - FL","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-82.485978,27.112997],[-82.4335716,27.112997],[-82.4335716,27.175865],[-82.485978,27.175865]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1181980091506679816\/fIC1f2GE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1181980091506679816\/fIC1f2GE_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1294979289662791680,"id_str":"1294979289662791680","name":"RODRIGO - LE-FORT BONNIARD","screen_name":"RBonniard","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":563,"listed_count":0,"created_at":"Sun - Aug 16 12:48:29 +0000 2020","favourites_count":16800,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6263,"lang":null,"status":{"created_at":"Sat - Jan 16 12:00:07 +0000 2021","id":1350412512454443010,"id_str":"1350412512454443010","text":"RT - @Florencilla53: \ud83d\udd38\ufe0f\ud83d\ude0d\n\ud83c\udf40 Buenos d\u00edas - \ud83e\udd17 \u2615 \ud83c\udf70\n\ud83c\udf40 La vida es bella \u2763\n\ud83c\udf40 - #FelizSabado \ud83e\udd17\ud83d\ude18\u2763\n\n \ud83d\udc36\ud83d\udc36\u2763 - https:\/\/t.co\/pTWCPkogXE","truncated":false,"entities":{"hashtags":[{"text":"FelizSabado","indices":[66,78]}],"symbols":[],"user_mentions":[{"screen_name":"Florencilla53","name":"Florencia - \ud83c\udf37\ud83c\udf40","id":941323789614374912,"id_str":"941323789614374912","indices":[3,17]}],"urls":[],"media":[{"id":1350385505905631235,"id_str":"1350385505905631235","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","url":"https:\/\/t.co\/pTWCPkogXE","display_url":"pic.twitter.com\/pTWCPkogXE","expanded_url":"https:\/\/twitter.com\/Florencilla53\/status\/1350385516986904581\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":570,"resize":"fit"},"medium":{"w":320,"h":570,"resize":"fit"},"small":{"w":320,"h":570,"resize":"fit"}},"source_status_id":1350385516986904581,"source_status_id_str":"1350385516986904581","source_user_id":941323789614374912,"source_user_id_str":"941323789614374912"}]},"extended_entities":{"media":[{"id":1350385505905631235,"id_str":"1350385505905631235","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","url":"https:\/\/t.co\/pTWCPkogXE","display_url":"pic.twitter.com\/pTWCPkogXE","expanded_url":"https:\/\/twitter.com\/Florencilla53\/status\/1350385516986904581\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":570,"resize":"fit"},"medium":{"w":320,"h":570,"resize":"fit"},"small":{"w":320,"h":570,"resize":"fit"}},"source_status_id":1350385516986904581,"source_status_id_str":"1350385516986904581","source_user_id":941323789614374912,"source_user_id_str":"941323789614374912","video_info":{"aspect_ratio":[32,57],"duration_millis":17367,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1350385505905631235\/pu\/pl\/QQ-DDsfvrtjyTX2l.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1350385505905631235\/pu\/vid\/320x570\/BGA1SJLYBBfDUD0f.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat - Jan 16 10:12:50 +0000 2021","id":1350385516986904581,"id_str":"1350385516986904581","text":"\ud83d\udd38\ufe0f\ud83d\ude0d\n\ud83c\udf40 - Buenos d\u00edas \ud83e\udd17 \u2615 \ud83c\udf70\n\ud83c\udf40 La vida es - bella \u2763\n\ud83c\udf40 #FelizSabado \ud83e\udd17\ud83d\ude18\u2763\n\n \ud83d\udc36\ud83d\udc36\u2763 - https:\/\/t.co\/pTWCPkogXE","truncated":false,"entities":{"hashtags":[{"text":"FelizSabado","indices":[47,59]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1350385505905631235,"id_str":"1350385505905631235","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","url":"https:\/\/t.co\/pTWCPkogXE","display_url":"pic.twitter.com\/pTWCPkogXE","expanded_url":"https:\/\/twitter.com\/Florencilla53\/status\/1350385516986904581\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":570,"resize":"fit"},"medium":{"w":320,"h":570,"resize":"fit"},"small":{"w":320,"h":570,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1350385505905631235,"id_str":"1350385505905631235","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1350385505905631235\/pu\/img\/Zn_JylxIGE7NXHrW.jpg","url":"https:\/\/t.co\/pTWCPkogXE","display_url":"pic.twitter.com\/pTWCPkogXE","expanded_url":"https:\/\/twitter.com\/Florencilla53\/status\/1350385516986904581\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":570,"resize":"fit"},"medium":{"w":320,"h":570,"resize":"fit"},"small":{"w":320,"h":570,"resize":"fit"}},"video_info":{"aspect_ratio":[32,57],"duration_millis":17367,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1350385505905631235\/pu\/pl\/QQ-DDsfvrtjyTX2l.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1350385505905631235\/pu\/vid\/320x570\/BGA1SJLYBBfDUD0f.mp4?tag=10"}]},"additional_media_info":{"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter - for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":268,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":51,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294979289662791680\/1600386253","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1160549004515696640,"id_str":"1160549004515696640","name":"Leo - Pond","screen_name":"LeoRPond","location":"Vermont, USA","description":"Prev. - Dem Op @hsdems. Fellow @Senmarkey Now: Political Commentator in @vtdigger - and @mttimes.","url":"https:\/\/t.co\/AVvHyh6aVG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AVvHyh6aVG","expanded_url":"https:\/\/vtdigger.org\/tag\/leo-pond\/","display_url":"vtdigger.org\/tag\/leo-pond\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":260,"listed_count":2,"created_at":"Sun - Aug 11 13:50:19 +0000 2019","favourites_count":4486,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":19,"lang":null,"status":{"created_at":"Tue - Dec 21 16:57:28 +0000 2021","id":1473336831190175749,"id_str":"1473336831190175749","text":"RT - @NFL: \"It shifted our world.\"\n\nCarl Nassib has impacted and inspired a - generation of athletes. https:\/\/t.co\/4iLkRVEHSV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NFL","name":"NFL","id":19426551,"id_str":"19426551","indices":[3,7]}],"urls":[],"media":[{"id":1473136994632888320,"id_str":"1473136994632888320","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","url":"https:\/\/t.co\/4iLkRVEHSV","display_url":"pic.twitter.com\/4iLkRVEHSV","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1473336209359343618\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1473336209359343618,"source_status_id_str":"1473336209359343618","source_user_id":19426551,"source_user_id_str":"19426551"}]},"extended_entities":{"media":[{"id":1473136994632888320,"id_str":"1473136994632888320","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","url":"https:\/\/t.co\/4iLkRVEHSV","display_url":"pic.twitter.com\/4iLkRVEHSV","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1473336209359343618\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"source_status_id":1473336209359343618,"source_status_id_str":"1473336209359343618","source_user_id":19426551,"source_user_id_str":"19426551","additional_media_info":{"title":"","description":"","embeddable":false,"monetizable":false}}]},"source":"\u003ca - href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter - for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue - Dec 21 16:55:00 +0000 2021","id":1473336209359343618,"id_str":"1473336209359343618","text":"\"It - shifted our world.\"\n\nCarl Nassib has impacted and inspired a generation - of athletes. https:\/\/t.co\/4iLkRVEHSV","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1473136994632888320,"id_str":"1473136994632888320","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","url":"https:\/\/t.co\/4iLkRVEHSV","display_url":"pic.twitter.com\/4iLkRVEHSV","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1473336209359343618\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1473136994632888320,"id_str":"1473136994632888320","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FHGq5prVUAEoezS.jpg","url":"https:\/\/t.co\/4iLkRVEHSV","display_url":"pic.twitter.com\/4iLkRVEHSV","expanded_url":"https:\/\/twitter.com\/NFL\/status\/1473336209359343618\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1080,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"additional_media_info":{"title":"","description":"","embeddable":false,"monetizable":false}}]},"source":"\u003ca - href=\"https:\/\/studio.twitter.com\" rel=\"nofollow\"\u003eTwitter Media - Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":191,"favorite_count":1127,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":191,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470073770929004546\/nNPXmBsM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470073770929004546\/nNPXmBsM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160549004515696640\/1640021745","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2798427857,"id_str":"2798427857","name":"Ahmed","screen_name":"realAhmedHisham","location":"","description":"real","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":549,"listed_count":0,"created_at":"Wed - Oct 01 17:32:46 +0000 2014","favourites_count":1626,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"status":{"created_at":"Mon - Mar 21 12:04:27 +0000 2022","id":1505878000390266880,"id_str":"1505878000390266880","text":"\u0643\u0648\u064a\u0633 - \u0627\u0646\u064a \u0644\u062d\u0642\u062a \u0627\u062c\u064a\u0628 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 - \u0642\u0628\u0644 \u0627\u0644\u062a\u0639\u0648\u064a\u0645 \u0648\u0642\u0628\u0644 - \u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0641\u0627\u064a\u062f\u0629 - \u0643\u0627\u0646 \u0647\u064a\u062d\u0635\u0644\u064a \u062d\u0627\u062c\u0629 - \u0628\u062c\u062f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca - href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ar"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489917204187463684\/dN3xyAwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489917204187463684\/dN3xyAwC_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}],"next_cursor":1681793140792663673,"next_cursor_str":"1681793140792663673","previous_cursor":1681793140792663673,"previous_cursor_str":"1681793140792663673","total_count":null}' - recorded_at: 2022-03-26 10:49:08 GMT + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":{"id":"01fbe706f872cb32","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01fbe706f872cb32.json","place_type":"city","name":"Washington","full_name":"Washington, + DC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-77.119401,38.801826],[-76.909396,38.801826],[-76.909396,38.9953797],[-77.119401,38.9953797]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1549578601196027906,"quoted_status_id_str":"1549578601196027906","retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1549578601196027906,"quoted_status_id_str":"1549578601196027906","retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1546659656914935808\/IQZjMVIK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1546659656914935808\/IQZjMVIK_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1150458574658654208,"id_str":"1150458574658654208","name":"Avery + Reed","screen_name":"averyreed02","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":46,"friends_count":134,"listed_count":0,"created_at":"Sun + Jul 14 17:34:33 +0000 2019","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268816263754575872\/5rpcvckl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268816263754575872\/5rpcvckl_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":4516955302,"id_str":"4516955302","name":"DESERTSTUDENT","screen_name":"DESERTSUDENT","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":796,"listed_count":0,"created_at":"Thu + Dec 17 19:23:12 +0000 2015","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"status":{"created_at":"Thu + Jul 07 20:08:21 +0000 2022","id":1545137667532267523,"id_str":"1545137667532267523","text":"RT + @christogrozev: Putin says \"We haven''t even begun seriously [fighting] in + Ukraine\".\nWith up to 10 generals down and 30k+ soldiers killed\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"christogrozev","name":"Christo + Grozev","id":144611647,"id_str":"144611647","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jul 07 17:09:06 +0000 2022","id":1545092557507629063,"id_str":"1545092557507629063","text":"Putin + says \"We haven''t even begun seriously [fighting] in Ukraine\".\nWith up + to 10 generals down and 30k+ soldiers k\u2026 https:\/\/t.co\/Y1pUQCNHBu","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Y1pUQCNHBu","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1545092557507629063","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1394,"favorite_count":11936,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1394,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/677571390174846977\/yIuZK_Is_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/677571390174846977\/yIuZK_Is_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1110861764592308224,"id_str":"1110861764592308224","name":"Minni","screen_name":"minni358","location":"Helsinki, + Suomi","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":44,"listed_count":0,"created_at":"Wed + Mar 27 11:10:58 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":145597411,"id_str":"145597411","name":"\ud835\udc0c\ud835\udc22\ud835\udc33\ud835\udc2e\ud835\udc21\ud835\udc28","screen_name":"mizuho_626","location":"\ud835\udc36\u210e\ud835\udc56\ud835\udc4f\ud835\udc4e, + \ud835\udc3d\ud835\udc4e\ud835\udc5d\ud835\udc4e\ud835\udc5b","description":"Twitter\u3067\u6c17\u306b\u306a\u308b\u60c5\u5831\u306fIT\u3001\u7d4c\u6e08\u3001\u6d77\u5916\u30cb\u30e5\u30fc\u30b9\u3001\u6804\u990a\u5b66\u3001\u82b8\u8853\u3001\u8aad\u66f8\uff5c\u7f8e\u3057\u3044\u3082\u306e\u304c\u597d\u304d\uff5c\u95a2\u308f\u308a\u305f\u3044\u306e\u306f\u8aad\u89e3\u529b\u3068\u826f\u8b58\u306e\u3042\u308b\u65b9\uff5c\u30b9\u30c8\u30ec\u30f3\u30b0\u30b9\u306f\u5b66\u7fd2\u6b32\u3001\u7740\u60f3\u3001\u614e\u91cd\u3055\u3001\u6700\u4e0a\u5fd7\u5411\u3001\u5185\u7701\uff5c\u6628\u5e74\u306f\u4e2d\u56fd\u8a9e\u3001\u4eca\u5e74\u306f\u30d5\u30e9\u30f3\u30b9\u8a9e\u3092\u5b66\u3093\u3067\u3044\u307e\u3059\u2728\ud83c\uddeb\ud83c\uddf7\uff5cFP, + JC2\u7d1a\uff5c\u72ec\u5b66\u3067\u8cc7\u683c9\u500b\uff5c\u4e3b\u306b\u500b\u4eba\u7684\u306a\u8003\u3048\u3001\u6c17\u4ed8\u304d\u306b\u3064\u3044\u3066\u30c4\u30a4\u30fc\u30c8\ud83d\udd4a\ud83c\udf3f","url":"https:\/\/t.co\/zak30n5dM9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zak30n5dM9","expanded_url":"https:\/\/www.instagram.com\/mizuho_626","display_url":"instagram.com\/mizuho_626","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":323,"friends_count":103,"listed_count":2,"created_at":"Wed + May 19 10:49:07 +0000 2010","favourites_count":50245,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":20082,"lang":null,"status":{"created_at":"Wed + Jul 20 15:56:04 +0000 2022","id":1549785217204101120,"id_str":"1549785217204101120","text":"RT + @mizuho_626: \u72ec\u5b66\u5927\u5168\u306f\u7d19\u3060\u3068\u920d\u5668\u3068\u547c\u3070\u308c\u308b\u307b\u3069\u306b\u5206\u539a\u3044\u306e\u3067\u3059\u304c\u3001\n\nKindle\u306a\u3089\u554f\u984c\u306a\u3057\uff01\n\n\u7279\u306b\u5fc3\u306b\u97ff\u3044\u305f\u306e\u306f\u3053\u306e\u7b87\u6240\u3002\n\n\u52c9\u5f37\u5acc\u3044\u306e\u65b9\u306b\u90aa\u9b54\u3055\u308c\u305f\u7d4c\u9a13\u3082\u3042\u308b\u3057\u3001\n\n\u300c\u52c9\u5f37\uff1f\u30d0\u30ab\u3058\u3083\u306a\u3044\u306e\uff1f\u3084\u3060\u30fc\u3001\u7b11\u300d\n\n\u304f\u3089\u3044\u306b\u8a00\u308f\u308c\u305f\u3053\u3068\u3082\u3002\n\n\u7406\u89e3\u529b\u306e\u9ad8\u3044\u65b9\u304c\u4e00\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mizuho_626","name":"\ud835\udc0c\ud835\udc22\ud835\udc33\ud835\udc2e\ud835\udc21\ud835\udc28","id":145597411,"id_str":"145597411","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jun 30 03:18:41 +0000 2021","id":1410075289728602114,"id_str":"1410075289728602114","text":"\u72ec\u5b66\u5927\u5168\u306f\u7d19\u3060\u3068\u920d\u5668\u3068\u547c\u3070\u308c\u308b\u307b\u3069\u306b\u5206\u539a\u3044\u306e\u3067\u3059\u304c\u3001\n\nKindle\u306a\u3089\u554f\u984c\u306a\u3057\uff01\n\n\u7279\u306b\u5fc3\u306b\u97ff\u3044\u305f\u306e\u306f\u3053\u306e\u7b87\u6240\u3002\n\n\u52c9\u5f37\u5acc\u3044\u306e\u65b9\u306b\u90aa\u9b54\u3055\u308c\u305f\u7d4c\u9a13\u3082\u3042\u308b\u3057\u3001\n\n\u300c\u52c9\u5f37\uff1f\u30d0\u30ab\u3058\u3083\u306a\u3044\u306e\uff1f\u3084\u3060\u30fc\u3001\u7b11\u300d\n\n\u304f\u3089\u3044\u306b\u8a00\u308f\u308c\u305f\u3053\u3068\u3082\u3002\n\n\u7406\u2026 + https:\/\/t.co\/pjD5kjcfz2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pjD5kjcfz2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1410075289728602114","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1410073954853683211,"in_reply_to_status_id_str":"1410073954853683211","in_reply_to_user_id":145597411,"in_reply_to_user_id_str":"145597411","in_reply_to_screen_name":"mizuho_626","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FAA5A5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520085496768364545\/oHPncgWT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520085496768364545\/oHPncgWT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145597411\/1658018447","profile_link_color":"258C6D","profile_sidebar_border_color":"571813","profile_sidebar_fill_color":"F5E8D7","profile_text_color":"143254","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1435616006471311370,"id_str":"1435616006471311370","name":"Vis + \u00e0 Vis","screen_name":"vavppcanada","location":"","description":"Pizza. + Pasta. Calzone\n\ud83d\udd25Hand-Tossed & Stone Baked\n\ud83d\udd25Halal & + Gluten Free Options\n\ud83d\udd25Tag us to be featured\nOrder online, save + 10% use code VAV10\ud83d\udc47","url":"https:\/\/t.co\/K7qhiEtxyy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/K7qhiEtxyy","expanded_url":"http:\/\/www.vavpp.ca\/","display_url":"vavpp.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1635,"friends_count":2745,"listed_count":1,"created_at":"Wed + Sep 08 14:49:09 +0000 2021","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":215,"lang":null,"status":{"created_at":"Wed + Jul 20 13:57:45 +0000 2022","id":1549755443970330625,"id_str":"1549755443970330625","text":"Vis-\u00e0-vis + offers the best of #Italian cuisines and deserts. Our exotic #pizza range + attracts hundreds of customers\u2026 https:\/\/t.co\/ifbcchqrmt","truncated":true,"entities":{"hashtags":[{"text":"Italian","indices":[29,37]},{"text":"pizza","indices":[71,77]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ifbcchqrmt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549755443970330625","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1445346948714692610\/RPZD1kll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1445346948714692610\/RPZD1kll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1435616006471311370\/1633432884","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3327726698,"id_str":"3327726698","name":"|","screen_name":"fanuidhol982","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":0,"friends_count":3131,"listed_count":0,"created_at":"Mon + Aug 24 02:58:01 +0000 2015","favourites_count":555,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635648277522739200\/T3SXPCS4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635648277522739200\/T3SXPCS4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3327726698\/1442181917","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1539922831588397056,"id_str":"1539922831588397056","name":"PRICEN + HERM\u00c8S","screen_name":"PricenHermes","location":"","description":"CAPITALS + BIG \nFANS","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":0,"listed_count":3,"created_at":"Thu + Jun 23 10:47:05 +0000 2022","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":947,"lang":null,"status":{"created_at":"Fri + Jul 08 04:25:12 +0000 2022","id":1545262700908912641,"id_str":"1545262700908912641","text":"RT + @etgoch: Going to reiterate again that what this coaching staff has done to + these pitchers is going to be noticed by the league. Baltimo\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"etgoch","name":"Ethan + Gochnour","id":244999650,"id_str":"244999650","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jul 07 02:23:12 +0000 2022","id":1544869612839440386,"id_str":"1544869612839440386","text":"Going + to reiterate again that what this coaching staff has done to these pitchers + is going to be noticed by the lea\u2026 https:\/\/t.co\/hrlerF3baX","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hrlerF3baX","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1544869612839440386","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1543240425246494722,"quoted_status_id_str":"1543240425246494722","retweet_count":0,"favorite_count":54,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1543240425246494722,"quoted_status_id_str":"1543240425246494722","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1545078125230440451\/O1UejT5t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1545078125230440451\/O1UejT5t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1539922831588397056\/1657210328","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1486586651551965186,"id_str":"1486586651551965186","name":"Robert + A Ireland Walking With The Universe","screen_name":"Particleclouds","location":"\u5730\u7403 + \ud83c\udf31 \u3059\u3066\u304d\u306a\u4e00\u65e5\u3092","description":"Walking + with clouds \u96f2\u3068\u4e00\u7dd2\u306b\u6b69\u304f\u306e\u306f\u3059\u3054\u3044 + \u2601\ufe0f Where The Universe Meets Earth \ud83c\udf0e \u2b50 mind-blow\u00b7ing + #mindblowing mind blowing interesting reality","url":"https:\/\/t.co\/mqdjL1WTgp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mqdjL1WTgp","expanded_url":"https:\/\/WalkingWithTheUniverse.com","display_url":"WalkingWithTheUniverse.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1113,"friends_count":4017,"listed_count":2,"created_at":"Thu + Jan 27 06:28:37 +0000 2022","favourites_count":1153,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1176,"lang":null,"status":{"created_at":"Tue + Jul 19 16:35:23 +0000 2022","id":1549432724821270530,"id_str":"1549432724821270530","text":"#\u5730\u7403 + #\u7a7a #\u96f2 #\u5199\u771f\u64ae\u5f71 #\u98a8\u666f #\u5929\u6c17 #\u592a\u967d + #\u7f8e\u3057\u3044 #\u65e5 #\u81ea\u7136 #\u30a6\u30a7\u30b6\u30fc\u30af\u30e9\u30a6\u30c9 + #\u5730\u5e73\u7dda #\u30a6\u30a9\u30fc\u30ad\u30f3\u30b0 #\u30cf\u30a4\u30e9\u30f3\u30c9 + #\u30af\u30e9\u30a6\u30c9\u30b9\u30dd\u30c3\u30c6\u30a3\u30f3\u30b0 #\u30e9\u30a4\u30c8 + #\u5f71\u306e\u591a\u3044 #\u30de\u30a4\u30f3\u30c9\u30d5\u30eb\u30cd\u30b9 + #\u81ea\u7136\u5199\u771f\u2026 https:\/\/t.co\/qzrYYFzDbS","truncated":true,"entities":{"hashtags":[{"text":"\u5730\u7403","indices":[0,3]},{"text":"\u7a7a","indices":[4,6]},{"text":"\u96f2","indices":[7,9]},{"text":"\u5199\u771f\u64ae\u5f71","indices":[10,15]},{"text":"\u98a8\u666f","indices":[16,19]},{"text":"\u5929\u6c17","indices":[20,23]},{"text":"\u592a\u967d","indices":[24,27]},{"text":"\u7f8e\u3057\u3044","indices":[28,32]},{"text":"\u65e5","indices":[33,35]},{"text":"\u81ea\u7136","indices":[36,39]},{"text":"\u30a6\u30a7\u30b6\u30fc\u30af\u30e9\u30a6\u30c9","indices":[40,49]},{"text":"\u5730\u5e73\u7dda","indices":[50,54]},{"text":"\u30a6\u30a9\u30fc\u30ad\u30f3\u30b0","indices":[55,62]},{"text":"\u30cf\u30a4\u30e9\u30f3\u30c9","indices":[63,69]},{"text":"\u30af\u30e9\u30a6\u30c9\u30b9\u30dd\u30c3\u30c6\u30a3\u30f3\u30b0","indices":[70,82]},{"text":"\u30e9\u30a4\u30c8","indices":[83,87]},{"text":"\u5f71\u306e\u591a\u3044","indices":[88,93]},{"text":"\u30de\u30a4\u30f3\u30c9\u30d5\u30eb\u30cd\u30b9","indices":[94,103]},{"text":"\u81ea\u7136\u5199\u771f","indices":[104,109]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qzrYYFzDbS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549432724821270530","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[111,134]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1531486922203332609\/E83uXfAF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1531486922203332609\/E83uXfAF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1486586651551965186\/1651849769","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":90731659,"id_str":"90731659","name":"Kirsty + Hickey","screen_name":"KirstyHickey","location":"Leigh-on-Sea","description":"@SkyNews + specialist business producer, love earl grey tea\u2615\ufe0f all things theatrical\ud83c\udfad, + business\ud83d\udcb0and politics\ud83d\uddf3 views my own obvs.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1478,"friends_count":732,"listed_count":35,"created_at":"Tue + Nov 17 22:06:00 +0000 2009","favourites_count":11022,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":22888,"lang":null,"status":{"created_at":"Wed + Jul 20 14:15:00 +0000 2022","id":1549759786228617221,"id_str":"1549759786228617221","text":"RT + @BruceReuters: Some new forecasts in today for \ud83c\uddec\ud83c\udde7 inflation + peak in October:\n\n11.9% - Oxford Economics\n12.6% - Bank of America\n11.4% + - J\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"BruceReuters","name":"Andy + Bruce","id":849109190,"id_str":"849109190","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jul 20 14:09:35 +0000 2022","id":1549758423637671938,"id_str":"1549758423637671938","text":"Some + new forecasts in today for \ud83c\uddec\ud83c\udde7 inflation peak in October:\n\n11.9% + - Oxford Economics\n12.6% - Bank of America\n11.4% - JP Morgan","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDE2D6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520172662047350784\/ItXO587L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520172662047350784\/ItXO587L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90731659\/1649629058","profile_link_color":"D9BABA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"regular","withheld_in_countries":[]},{"id":1369645632516984836,"id_str":"1369645632516984836","name":"\u0645\u062c\u062a\u0628\u06cc + \u06a9\u0631\u0645\u06cc","screen_name":"karamisoft2","location":"shiraz","description":"\u00ab + \u0648\u064e \u06a9\u064e\u0641\u06cc \u0628\u0650\u0631\u064e\u0628\u064e\u0651\u0643\u064e + \u0648\u064e\u06a9\u06cc\u0644\u0627 \u00bb | \u0646\u0647\u0627\u0646 \u06a9\u0650\u06cc + \u0645\u0627\u0646\u064e\u062f \u0622\u0646 \u0631\u0627\u0632\u06cc\u060c + \u06a9\u0632\u0648 \u0633\u0627\u0632\u0646\u062f \u0645\u062d\u0641\u0644 + \u0647\u0627 !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":1146,"listed_count":1,"created_at":"Wed + Mar 10 13:45:53 +0000 2021","favourites_count":8042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":832,"lang":null,"status":{"created_at":"Wed + Jul 20 08:44:18 +0000 2022","id":1549676562223595522,"id_str":"1549676562223595522","text":"@jedaaal + \u0642\u062f\u0631\u062a \u0627\u0648\u0644 \u0646\u0638\u0627\u0645\u06cc + \u0645\u0646\u0637\u0642\u0647\u061f \n\u0686\u06cc \u0645\u06cc\u0632\u0646\u06cc + \u062c\u062f\u0627 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647\u061f","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jedaaal","name":"Ali + Alizadeh","id":1588420616,"id_str":"1588420616","indices":[0,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1549674419622117376,"in_reply_to_status_id_str":"1549674419622117376","in_reply_to_user_id":1588420616,"in_reply_to_user_id_str":"1588420616","in_reply_to_screen_name":"jedaaal","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"fa"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1545410233660588035\/o_ZxiMGe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1545410233660588035\/o_ZxiMGe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1369645632516984836\/1657205554","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":3403472020,"id_str":"3403472020","name":"Nick","screen_name":"snoopyfan02","location":"North + America","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":139,"friends_count":78,"listed_count":0,"created_at":"Tue + Aug 04 23:06:39 +0000 2015","favourites_count":4523,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1270,"lang":null,"status":{"created_at":"Mon + Jul 18 05:03:03 +0000 2022","id":1548896107538808832,"id_str":"1548896107538808832","text":"@iamrollingray + Hills have eyes","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"iamrollingray","name":"joshua","id":1329950917349793796,"id_str":"1329950917349793796","indices":[0,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1548895290480099328,"in_reply_to_status_id_str":"1548895290480099328","in_reply_to_user_id":1329950917349793796,"in_reply_to_user_id_str":"1329950917349793796","in_reply_to_screen_name":"iamrollingray","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1539306896137633793\/FFUNJhkn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1539306896137633793\/FFUNJhkn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3403472020\/1649028026","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":2955356551,"id_str":"2955356551","name":"Dr. + Kathleen Hall","screen_name":"yankeekathall","location":"Paso Robles, CA","description":"Science, + cooking, wine, politics and Mazatl\u00e1n are my loves. Trump, conspiracy + theories are my hates. DM me for Mazatl\u00e1n or Paso wine rental or see + website.","url":"https:\/\/t.co\/zoFRVWWiIj","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zoFRVWWiIj","expanded_url":"http:\/\/www.mazatlanbeach.com","display_url":"mazatlanbeach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":14239,"friends_count":14737,"listed_count":8,"created_at":"Thu + Jan 01 22:56:52 +0000 2015","favourites_count":5294,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6753,"lang":null,"status":{"created_at":"Wed + Jul 20 14:25:55 +0000 2022","id":1549762533975699457,"id_str":"1549762533975699457","text":"RT + @newscientist: This red dot is the oldest galaxy we''ve ever seen! \n\nThe + latest data from the James Webb Space Telescope has helped astro\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"newscientist","name":"New + Scientist","id":19658826,"id_str":"19658826","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jul 20 10:56:04 +0000 2022","id":1549709722432978944,"id_str":"1549709722432978944","text":"This + red dot is the oldest galaxy we''ve ever seen! \n\nThe latest data from the + James Webb Space Telescope has helped\u2026 https:\/\/t.co\/6xL5QkdOvq","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/6xL5QkdOvq","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549709722432978944","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/www.echobox.com\" rel=\"nofollow\"\u003eEchobox\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3221,"favorite_count":11110,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3221,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550788669611970561\/UODZhaUg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550788669611970561\/UODZhaUg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955356551\/1647435666","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":963915216684748800,"id_str":"963915216684748800","name":"Russell + Cooper","screen_name":"PackagingSci","location":"Houston, TX","description":"\ud83e\uddc3\ud83d\udc68\u200d\ud83d\udd2c + A Packaging Scientist. Tweets about the structural, visual, functional and + sustainable aspects of CPG Packaging. Here to connect on related topics. \ud83d\udce8","url":"https:\/\/t.co\/72Fjvcfs4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/72Fjvcfs4K","expanded_url":"https:\/\/solo.to\/pkgsci","display_url":"solo.to\/pkgsci","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1071,"friends_count":931,"listed_count":15,"created_at":"Wed + Feb 14 23:17:51 +0000 2018","favourites_count":6140,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1720,"lang":null,"status":{"created_at":"Wed + Jul 20 01:03:25 +0000 2022","id":1549560576795344896,"id_str":"1549560576795344896","text":"@kdlafrance + @mrsharma @kaleighf @tclarkmedia @moizali @kurtinc @cpgwire @itsJoanneCoffey + @oliver__b1\u2026 https:\/\/t.co\/lLcUTzSexQ","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kdlafrance","name":"Kristen + LaFrance","id":314787708,"id_str":"314787708","indices":[0,11]},{"screen_name":"mrsharma","name":"Nik + Sharma","id":629844555,"id_str":"629844555","indices":[12,21]},{"screen_name":"kaleighf","name":"Kaleigh + Moore","id":29044361,"id_str":"29044361","indices":[22,31]},{"screen_name":"tclarkmedia","name":"Tommy + Clark \ud83d\udc33","id":1168242166726086656,"id_str":"1168242166726086656","indices":[32,44]},{"screen_name":"moizali","name":"Moiz + Ali","id":15858300,"id_str":"15858300","indices":[45,53]},{"screen_name":"kurtinc","name":"Kurt + Elster","id":930543576,"id_str":"930543576","indices":[54,62]},{"screen_name":"cpgwire","name":"CPG + WIRE","id":1429526427754549248,"id_str":"1429526427754549248","indices":[63,71]},{"screen_name":"itsJoanneCoffey","name":"Joanne + Coffey","id":1383058685908373504,"id_str":"1383058685908373504","indices":[72,88]},{"screen_name":"oliver__b1","name":"oliverb + || i sell sex chocolate","id":1341921320183988225,"id_str":"1341921320183988225","indices":[89,100]}],"urls":[{"url":"https:\/\/t.co\/lLcUTzSexQ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1549560576795344896","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[102,125]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1549517287165755392,"in_reply_to_status_id_str":"1549517287165755392","in_reply_to_user_id":314787708,"in_reply_to_user_id_str":"314787708","in_reply_to_screen_name":"kdlafrance","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429175392515117061\/dPjuS79L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429175392515117061\/dPjuS79L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963915216684748800\/1629577516","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1275858871,"id_str":"1275858871","name":"Filippo + Scotti","screen_name":"FilippoScotti95","location":"Data Engineer","description":"Computer + Science & Marketing","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":172,"listed_count":0,"created_at":"Sun + Mar 17 19:50:30 +0000 2013","favourites_count":666,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":135,"lang":null,"status":{"created_at":"Wed + Jul 20 12:09:31 +0000 2022","id":1549728206269435905,"id_str":"1549728206269435905","text":"RT + @ujjwalscript: 1. Data Structures and Algorithms \n\nhttps:\/\/t.co\/qoct8l7xsE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ujjwalscript","name":"Ujjwal + Chadha","id":339661350,"id_str":"339661350","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/qoct8l7xsE","expanded_url":"https:\/\/www.youtube.com\/watch?v=8hly31xKli0","display_url":"youtube.com\/watch?v=8hly31\u2026","indices":[54,77]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jul 20 03:00:11 +0000 2022","id":1549589961334071296,"id_str":"1549589961334071296","text":"1. + Data Structures and Algorithms \n\nhttps:\/\/t.co\/qoct8l7xsE","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qoct8l7xsE","expanded_url":"https:\/\/www.youtube.com\/watch?v=8hly31xKli0","display_url":"youtube.com\/watch?v=8hly31\u2026","indices":[36,59]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1549589959220215808,"in_reply_to_status_id_str":"1549589959220215808","in_reply_to_user_id":339661350,"in_reply_to_user_id_str":"339661350","in_reply_to_screen_name":"ujjwalscript","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":136,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":22,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492408780092497922\/VHxTbLm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492408780092497922\/VHxTbLm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275858871\/1644652986","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1431868050102317057,"id_str":"1431868050102317057","name":"Yothin + bank","screen_name":"yothined","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":4,"friends_count":1,"listed_count":0,"created_at":"Sun + Aug 29 06:35:46 +0000 2021","favourites_count":4414,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4549,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1529467046266048512\/ASvFeYp2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1529467046266048512\/ASvFeYp2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1431868050102317057\/1653488208","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":47093985,"id_str":"47093985","name":"Insung + Oh","screen_name":"Insungoh","location":"St. Paul, Minnesota","description":"(Post)Neoliberalism. + Inequality. Public Sphere. Free Market, FoE, & Democracy. LPE. Net Delusion. + Cultural Politics. Korean Press(Fr Editor & Publisher)","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":400,"friends_count":1683,"listed_count":28,"created_at":"Sun + Jun 14 13:47:45 +0000 2009","favourites_count":37841,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11026,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C1EBE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518536254949707776\/g0DwjAnZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518536254949707776\/g0DwjAnZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47093985\/1650882231","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1381342377839841280,"id_str":"1381342377839841280","name":"Mariana","screen_name":"Mariana53494696","location":"","description":"Minha + bio","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":18,"listed_count":0,"created_at":"Sun + Apr 11 20:24:40 +0000 2021","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6,"lang":null,"status":{"created_at":"Wed + Jun 29 17:51:42 +0000 2022","id":1542204175311949824,"id_str":"1542204175311949824","text":"Isto + \u00e9 um exemplo de Tweet #\u00c9oqueest\u00e1Acontecendo","truncated":false,"entities":{"hashtags":[{"text":"\u00c9oqueest\u00e1Acontecendo","indices":[27,48]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"pt"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1381342639694417921\/-hbzNbSB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1381342639694417921\/-hbzNbSB_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]},{"id":1229630633082679296,"id_str":"1229630633082679296","name":"savio","screen_name":"savio48323795","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":40,"listed_count":0,"created_at":"Tue + Feb 18 04:56:10 +0000 2020","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}],"next_cursor":1733234094208788576,"next_cursor_str":"1733234094208788576","previous_cursor":1733234094208788576,"previous_cursor_str":"1733234094208788576","total_count":null}' + recorded_at: 2022-07-20 16:12:13 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/lists_subscriptions1.yml b/tests/fixtures/lists_subscriptions1.yml index 00a44797..76c24430 100644 --- a/tests/fixtures/lists_subscriptions1.yml +++ b/tests/fixtures/lists_subscriptions1.yml @@ -1,7 +1,7 @@ http_interactions: - request: method: get - uri: https://api.twitter.com/1.1/lists/subscriptions.json?count=1000&cursor=-1&screen_name=kearneymw + uri: https://api.twitter.com/1.1/lists/subscriptions.json?count=20&cursor=-1&screen_name=kearneymw body: encoding: '' string: '' @@ -15,39 +15,38 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - date: Sat, 19 Mar 2022 12:36:09 GMT + date: Wed, 20 Jul 2022 16:12:13 GMT pragma: no-cache server: tsa_f status: 200 OK expires: Tue, 31 Mar 1981 05:00:00 GMT content-type: application/json;charset=utf-8 cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 - last-modified: Sat, 19 Mar 2022 12:36:09 GMT - x-transaction: cee40ca8d83d3aa4 - content-length: '1025' + last-modified: Wed, 20 Jul 2022 16:12:13 GMT + x-transaction: 2f11f69bba98a72c + content-length: '965' x-access-level: read-write-directmessages x-frame-options: SAMEORIGIN content-encoding: gzip x-xss-protection: '0' x-rate-limit-limit: '15' - x-rate-limit-reset: '1647694269' + x-rate-limit-reset: '1658334433' content-disposition: attachment; filename=json.json x-content-type-options: nosniff x-rate-limit-remaining: '14' x-twitter-response-tags: BouncerCompliant strict-transport-security: max-age=631138519 - x-response-time: '209' - x-connection-hash: d9efa132ad6e9c5596438635df95279d79c235738a8a1caf6046bf8c75f1eb50 + x-response-time: '160' + x-connection-hash: ccfb34807bdcd0d758d735abe84ced3ffae3ce919302a587df991c730124e514 body: encoding: UTF-8 file: no - string: '{"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":1378399759992512516,"id_str":"1378399759992512516","name":"Ukraine","uri":"\/gavinsblog\/lists\/ukraine-70187","subscriber_count":25225,"member_count":301,"mode":"public","description":"Ukr - gov, journos, orgs, foreign journos, & OSINT. Treat info with care \/ *graphic - content warning*","slug":"ukraine-70187","full_name":"@gavinsblog\/ukraine-70187","created_at":"Sat - Apr 03 17:31:26 +0000 2021","following":false,"user":{"id":15908631,"id_str":"15908631","name":"Gavin - Sheridan","screen_name":"gavinsblog","location":"Cork ","description":"CEO - @Vizlegal | Co-founder @righttoknowie | #FOIA, #legaltech, journalism, data, - OSINT, futurism | Fmr Innovation Dir @Storyful | Substack sub \ud83d\udc47","url":"https:\/\/t.co\/aWGHDAo15Y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/aWGHDAo15Y","expanded_url":"https:\/\/gav.substack.com","display_url":"gav.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":36458,"friends_count":9921,"listed_count":996,"created_at":"Tue - Aug 19 19:51:23 +0000 2008","favourites_count":15751,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":112089,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1414353036047175684\/Z-ku3TiA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1414353036047175684\/Z-ku3TiA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15908631\/1583101274","profile_link_color":"1B95E0","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}}]}' - recorded_at: 2022-03-19 12:36:09 GMT + string: '{"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","lists":[{"id":1006233134751473664,"id_str":"1006233134751473664","name":"Suns + Twitter","uri":"\/warnerben\/lists\/suns-twitter","subscriber_count":47,"member_count":24,"mode":"public","description":"","slug":"suns-twitter","full_name":"@warnerben\/suns-twitter","created_at":"Mon + Jun 11 17:54:08 +0000 2018","following":false,"user":{"id":24436360,"id_str":"24436360","name":"Ben + Warner","screen_name":"warnerben","location":"Columbia, MO","description":"Political + communication researcher, progressive point of view on politics, Suns\/Jayhawks\/KC + sports fan. Tweets are just my thoughts. Let me know when I''m wrong.","url":"https:\/\/t.co\/xY0YUsb2kp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xY0YUsb2kp","expanded_url":"http:\/\/pci.missouri.edu\/","display_url":"pci.missouri.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":723,"friends_count":760,"listed_count":28,"created_at":"Sat + Mar 14 21:51:39 +0000 2009","favourites_count":4268,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6707,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1540822587516788738\/5K0w-rC7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1540822587516788738\/5K0w-rC7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24436360\/1506131345","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"translator_type":"none","withheld_in_countries":[]}}]}' + recorded_at: 2022-07-20 16:12:13 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/testthat/test-lists_subscribers.R b/tests/testthat/test-lists_subscribers.R index 7d4c197e..378bdcbe 100644 --- a/tests/testthat/test-lists_subscribers.R +++ b/tests/testthat/test-lists_subscribers.R @@ -4,10 +4,10 @@ test_that("lists_subscribers returns users data frame", { x <- lists_subscribers( slug = "new-york-times-politics", owner_user = "nytpolitics", - n = 200 + n = 20 ) }) expect_true(is.data.frame(x)) expect_true("description" %in% names(x)) - expect_gt(nrow(x), 50) + expect_gt(nrow(x), 10) })